mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
bf411ea9f1
This patch add support for gpimage format as a preparatory patch for porting u-boot for keystone2 devices and is based on omapimage format. It re-uses gph header to store the size and loadaddr as done in omapimage.c Signed-off-by: Vitaly Andrianov <vitalya@ti.com> Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Acked-by: Tom Rini <trini@ti.com>
29 lines
514 B
C
29 lines
514 B
C
/*
|
|
* (C) Copyright 2010
|
|
* Linaro LTD, www.linaro.org
|
|
* Author John Rigby <john.rigby@linaro.org>
|
|
* Based on TI's signGP.c
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _OMAPIMAGE_H_
|
|
#define _OMAPIMAGE_H_
|
|
|
|
struct ch_toc {
|
|
uint32_t section_offset;
|
|
uint32_t section_size;
|
|
uint8_t unused[12];
|
|
uint8_t section_name[12];
|
|
};
|
|
|
|
struct ch_settings {
|
|
uint32_t section_key;
|
|
uint8_t valid;
|
|
uint8_t version;
|
|
uint16_t reserved;
|
|
uint32_t flags;
|
|
};
|
|
|
|
#define KEY_CHSETTINGS 0xC0C0C0C1
|
|
#endif /* _OMAPIMAGE_H_ */
|