mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-08 05:43:53 +00:00

Generic framework is added to include platform defined UUID. This framework is added for the following: - All NXP SoC based platforms needed additional fip-fuse.bin - NXP SoC lx2160a based platforms requires additional fip-ddr.bin Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com> Change-Id: Ibe05d9c596256e34077287a490dfcd5b731ef2cf
28 lines
513 B
C
28 lines
513 B
C
/*
|
|
* Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef TBBR_CONFIG_H
|
|
#define TBBR_CONFIG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <uuid.h>
|
|
|
|
#define TOC_HEADER_SERIAL_NUMBER 0x12345678
|
|
|
|
typedef struct toc_entry {
|
|
char *name;
|
|
uuid_t uuid;
|
|
char *cmdline_name;
|
|
} toc_entry_t;
|
|
|
|
extern toc_entry_t toc_entries[];
|
|
|
|
#ifdef PLAT_DEF_FIP_UUID
|
|
extern toc_entry_t plat_def_toc_entries[];
|
|
#endif
|
|
|
|
#endif /* TBBR_CONFIG_H */
|