]> git.ipfire.org Git - people/ms/u-boot.git/blame - tools/pblimage.h
usb: add support for generic EHCI devices
[people/ms/u-boot.git] / tools / pblimage.h
CommitLineData
5d898a00
SX
1/*
2 * Copyright 2012 Freescale Semiconductor, Inc.
3 *
3765b3e7 4 * SPDX-License-Identifier: GPL-2.0+
5d898a00
SX
5 */
6
7#ifndef PBLIMAGE_H
8#define PBLIMAGE_H
9
10#define RCW_BYTES 64
11#define RCW_PREAMBLE 0xaa55aa55
12#define RCW_HEADER 0x010e0100
13
14struct pbl_header {
15 uint32_t preamble;
16 uint32_t rcwheader;
17 uint8_t rcw_data[RCW_BYTES];
18};
19
20#endif /* PBLIMAGE_H */