mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
f1dd4cadd2
The FSL Primary Protected Application (PPA) is a software component loaded during boot which runs in TrustZone and remains resident after boot. Use the secure firmware framework to integrate FSL PPA into U-Boot. Signed-off-by: Hou Zhiqiang <Zhiqiang.Hou@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
16 lines
285 B
C
16 lines
285 B
C
/*
|
|
* Copyright 2016 NXP Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef __FSL_PPA_H_
|
|
#define __FSL_PPA_H_
|
|
|
|
#define SEC_FIRMWARE_FIT_IMAGE "firmware"
|
|
#define SEC_FIRMEWARE_FIT_CNF_NAME "config@1"
|
|
#define SEC_FIRMWARE_TARGET_EL 2
|
|
|
|
int ppa_init(void);
|
|
|
|
#endif
|