blob: 8744ae7a2de7969227edec35aa6652006c03b07d [file] [log] [blame]
John Rigby3decb142011-07-21 09:10:30 -04001/*
2 * (C) Copyright 2010
3 * Linaro LTD, www.linaro.org
4 * Author John Rigby <john.rigby@linaro.org>
5 * Based on TI's signGP.c
6 *
Wolfgang Denk3765b3e2013-10-07 13:07:26 +02007 * SPDX-License-Identifier: GPL-2.0+
John Rigby3decb142011-07-21 09:10:30 -04008 */
9
10#ifndef _OMAPIMAGE_H_
11#define _OMAPIMAGE_H_
12
13struct ch_toc {
14 uint32_t section_offset;
15 uint32_t section_size;
16 uint8_t unused[12];
17 uint8_t section_name[12];
18};
19
20struct ch_settings {
21 uint32_t section_key;
22 uint8_t valid;
23 uint8_t version;
24 uint16_t reserved;
25 uint32_t flags;
26};
27
John Rigby3decb142011-07-21 09:10:30 -040028#define KEY_CHSETTINGS 0xC0C0C0C1
29#endif /* _OMAPIMAGE_H_ */