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

Also increase add PLAT_ARM_SP_MAX_SIZE to override the default ARM_SP_MAX_SIZE to support Trusty image and move OPTEE_SP_FW_CONFIG documentation to build-internals.rst as it's not externally set-able. Signed-off-by: Arunachalam Ganapathy <arunachalam.ganapathy@arm.com> Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com> Change-Id: Ief90ae9113d32265ee2200f35f3e517b7b9a4bea
38 lines
915 B
C
38 lines
915 B
C
/*
|
|
* Copyright (c) 2020-2024, Arm Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef FCONF_ARM_SP_GETTER_H
|
|
#define FCONF_ARM_SP_GETTER_H
|
|
|
|
#include <common/tbbr/tbbr_img_def.h>
|
|
#include <lib/fconf/fconf.h>
|
|
#include <platform_def.h>
|
|
#include <tools_share/uuid.h>
|
|
|
|
/* arm_sp getter */
|
|
#define arm__sp_getter(prop) arm_sp.prop
|
|
|
|
#ifdef PLAT_ARM_SP_MAX_SIZE
|
|
#define ARM_SP_MAX_SIZE PLAT_ARM_SP_MAX_SIZE
|
|
#else
|
|
#define ARM_SP_MAX_SIZE U(0xb0000)
|
|
#endif /* PLAT_ARM_SP_MAX_SIZE */
|
|
#define ARM_SP_OWNER_NAME_LEN U(8)
|
|
|
|
struct arm_sp_t {
|
|
unsigned int number_of_sp;
|
|
union uuid_helper_t uuids[MAX_SP_IDS];
|
|
uintptr_t load_addr[MAX_SP_IDS];
|
|
char owner[MAX_SP_IDS][ARM_SP_OWNER_NAME_LEN];
|
|
};
|
|
|
|
int fconf_populate_arm_sp(uintptr_t config);
|
|
|
|
extern struct arm_sp_t arm_sp;
|
|
|
|
extern bl_mem_params_node_t sp_mem_params_descs[MAX_SP_IDS];
|
|
|
|
#endif /* FCONF_ARM_SP_GETTER_H */
|