]> Git Repo - J-u-boot.git/blame - tools/pblimage.h
dtoc: Hide the test options unless test code is available
[J-u-boot.git] / tools / pblimage.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
5d898a00
SX
2/*
3 * Copyright 2012 Freescale Semiconductor, Inc.
5d898a00
SX
4 */
5
6#ifndef PBLIMAGE_H
7#define PBLIMAGE_H
8
9#define RCW_BYTES 64
10#define RCW_PREAMBLE 0xaa55aa55
2058967d
HZ
11#define RCW_ARM_HEADER 0x01ee0100
12#define RCW_PPC_HEADER 0x010e0100
5d898a00
SX
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 */
This page took 0.350606 seconds and 4 git commands to generate.