mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 10:34:19 +00:00

Add platform specific Makefile to add UUIDs and command options for the Arm(R) Ethos(TM)-N NPU firmware binary and certificate data to the FIP so that the TF-A's BL2 can later be used to load the Arm(R) Ethos(TM)-N NPU firmware binary into memory and verify its integrity. Add separate driver specific include header file for the Arm(R) Ethos(TM)-N NPU images containing UUIDs and command options to make it easy to port the FIP support to other platforms. Signed-off-by: Daniele Castro <daniele.castro@arm.com> Signed-off-by: Rob Hughes <robert.hughes@arm.com> Signed-off-by: Mikael Olsson <mikael.olsson@arm.com> Change-Id: I8cd64fb20d58f8bd539facb085606213d6cead05
25 lines
452 B
C
25 lines
452 B
C
/*
|
|
* Copyright (c) 2023, Arm Limited. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <firmware_image_package.h>
|
|
#include <tbbr_config.h>
|
|
|
|
#include "plat_def_fip_uuid.h"
|
|
|
|
toc_entry_t plat_def_toc_entries[] = {
|
|
#ifdef ARM_ETHOSN_NPU_TZMP1
|
|
ETHOSN_FW_KEY_CERTIFICATE_DEF,
|
|
ETHOSN_FW_CONTENT_CERTIFICATE_DEF,
|
|
ETHOSN_FW_DEF,
|
|
#endif
|
|
{
|
|
.name = NULL,
|
|
.uuid = { { 0 } },
|
|
.cmdline_name = NULL,
|
|
}
|
|
};
|