mb/google/brya/var/uldrenite: Generate RAM ID and SPD file
[coreboot2.git] / src / arch / arm64 / include / bl31.h
blobbb99fcde718e6f2da0da218bc2faf50e9c12b142
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef __BL31_H__
4 #define __BL31_H__
6 #include <types.h>
8 #include <arm-trusted-firmware/include/export/lib/bl_aux_params/bl_aux_params_exp.h>
10 /* Load and enter BL31, set it up to exit to payload according to arguments. */
11 void run_bl31(u64 payload_entry, u64 payload_arg0, u64 payload_spsr);
13 /* Return platform-specific bl31_plat_params. SoCs should avoid overriding this
14 and stick with the default BL aux parameter framework if possible. */
15 void *soc_get_bl31_plat_params(void);
17 /* Add a BL aux parameter to the list to be passed to BL31. Only works for SoCs
18 that use the default soc_get_bl31_plat_params() implementation. */
19 void register_bl31_aux_param(struct bl_aux_param_header *param);
21 #endif /* __BL31_H__ */