15f0cdb05SDan Handley /* 224a4a0a5SArvind Ram Prakash * Copyright (c) 2013-2024, Arm Limited and Contributors. All rights reserved. 35f0cdb05SDan Handley * 482cb2c1aSdp-arm * SPDX-License-Identifier: BSD-3-Clause 55f0cdb05SDan Handley */ 65f0cdb05SDan Handley 72bc3dba9SAntonio Nino Diaz #ifndef PLATFORM_H 82bc3dba9SAntonio Nino Diaz #define PLATFORM_H 95f0cdb05SDan Handley 105f0cdb05SDan Handley #include <stdint.h> 115f0cdb05SDan Handley 1209d40e0eSAntonio Nino Diaz #include <lib/psci/psci.h> 130cb64d01SAchin Gupta #if defined(SPD_spmd) 140cb64d01SAchin Gupta #include <services/spm_core_manifest.h> 150cb64d01SAchin Gupta #endif 161d0ca40eSJavier Almansa Sobrino #if ENABLE_RME 171d0ca40eSJavier Almansa Sobrino #include <services/rmm_core_manifest.h> 181d0ca40eSJavier Almansa Sobrino #endif 190b22e591SJayanth Dodderi Chidanand #include <drivers/fwu/fwu_metadata.h> 207dfb9911SJimmy Brisson #if TRNG_SUPPORT 217dfb9911SJimmy Brisson #include "plat_trng.h" 220b22e591SJayanth Dodderi Chidanand #endif /* TRNG_SUPPORT */ 23d72c486bSLucian Paul-Trifu #if DRTM_SUPPORT 24d72c486bSLucian Paul-Trifu #include "plat_drtm.h" 25d72c486bSLucian Paul-Trifu #endif /* DRTM_SUPPORT */ 2609d40e0eSAntonio Nino Diaz 275f0cdb05SDan Handley /******************************************************************************* 285f0cdb05SDan Handley * Forward declarations 295f0cdb05SDan Handley ******************************************************************************/ 30d35dee23Sdp-arm struct auth_img_desc_s; 315f0cdb05SDan Handley struct meminfo; 325f0cdb05SDan Handley struct image_info; 335f0cdb05SDan Handley struct entry_point_info; 347baff11fSYatharth Kochar struct image_desc; 3572600226SYatharth Kochar struct bl_load_info; 3672600226SYatharth Kochar struct bl_params; 372fccb228SAntonio Nino Diaz struct mmap_region; 38aeaa225cSPaul Beesley struct spm_mm_boot_info; 39e458302bSAntonio Nino Diaz struct sp_res_desc; 40a97bfa5fSAlexeiFedorov struct rmm_manifest; 412be57b86SSumit Garg enum fw_enc_status_t; 425f0cdb05SDan Handley 435f0cdb05SDan Handley /******************************************************************************* 4495cfd4adSJuan Castillo * plat_get_rotpk_info() flags 4595cfd4adSJuan Castillo ******************************************************************************/ 4695cfd4adSJuan Castillo #define ROTPK_IS_HASH (1 << 0) 47f1e693a7SManish V Badarkhe 4804943d33SSoby Mathew /* Flag used to skip verification of the certificate ROTPK while the platform 4904943d33SSoby Mathew ROTPK is not deployed */ 5004943d33SSoby Mathew #define ROTPK_NOT_DEPLOYED (1 << 1) 5195cfd4adSJuan Castillo 52f1e693a7SManish V Badarkhe static inline bool is_rotpk_flags_valid(unsigned int flags) 53f1e693a7SManish V Badarkhe { 54f1e693a7SManish V Badarkhe unsigned int valid_flags = ROTPK_IS_HASH; 55f1e693a7SManish V Badarkhe return (flags == ROTPK_NOT_DEPLOYED) || ((flags & ~valid_flags) == 0); 56f1e693a7SManish V Badarkhe } 57f1e693a7SManish V Badarkhe 5895cfd4adSJuan Castillo /******************************************************************************* 597cda17bbSSumit Garg * plat_get_enc_key_info() flags 607cda17bbSSumit Garg ******************************************************************************/ 617cda17bbSSumit Garg /* 627cda17bbSSumit Garg * Flag used to notify caller that information provided in key buffer is an 637cda17bbSSumit Garg * identifier rather than an actual key. 647cda17bbSSumit Garg */ 657cda17bbSSumit Garg #define ENC_KEY_IS_IDENTIFIER (1 << 0) 667cda17bbSSumit Garg 677cda17bbSSumit Garg /******************************************************************************* 68dec5e0d1SDan Handley * Function declarations 695f0cdb05SDan Handley ******************************************************************************/ 70dec5e0d1SDan Handley /******************************************************************************* 71dec5e0d1SDan Handley * Mandatory common functions 72dec5e0d1SDan Handley ******************************************************************************/ 73d4486391SAntonio Nino Diaz unsigned int plat_get_syscnt_freq2(void); 74d4486391SAntonio Nino Diaz 7516948ae1SJuan Castillo int plat_get_image_source(unsigned int image_id, 76dec5e0d1SDan Handley uintptr_t *dev_handle, 77dec5e0d1SDan Handley uintptr_t *image_spec); 78a0ad6019SSoby Mathew uintptr_t plat_get_ns_image_entrypoint(void); 7967487846SSoby Mathew unsigned int plat_my_core_pos(void); 8067487846SSoby Mathew int plat_core_pos_by_mpidr(u_register_t mpidr); 812374ab17SAmbroise Vincent int plat_get_mbedtls_heap(void **heap_addr, size_t *heap_size); 82dec5e0d1SDan Handley 83e60c1847SManish Pandey /******************************************************************************* 84e60c1847SManish Pandey * Simple routine to determine whether a mpidr is valid or not. 85e60c1847SManish Pandey ******************************************************************************/ 86e60c1847SManish Pandey static inline bool is_valid_mpidr(u_register_t mpidr) 87e60c1847SManish Pandey { 88e60c1847SManish Pandey int pos = plat_core_pos_by_mpidr(mpidr); 89e60c1847SManish Pandey 90e60c1847SManish Pandey if ((pos < 0) || ((unsigned int)pos >= PLATFORM_CORE_COUNT)) { 91e60c1847SManish Pandey return false; 92e60c1847SManish Pandey } 93e60c1847SManish Pandey 94e60c1847SManish Pandey return true; 95e60c1847SManish Pandey } 96e60c1847SManish Pandey 9751faada7SDouglas Raillard #if STACK_PROTECTOR_ENABLED 9851faada7SDouglas Raillard /* 9951faada7SDouglas Raillard * Return a new value to be used for the stack protection's canary. 10051faada7SDouglas Raillard * 10151faada7SDouglas Raillard * Ideally, this value is a random number that is impossible to predict by an 10251faada7SDouglas Raillard * attacker. 10351faada7SDouglas Raillard */ 10451faada7SDouglas Raillard u_register_t plat_get_stack_protector_canary(void); 10551faada7SDouglas Raillard #endif /* STACK_PROTECTOR_ENABLED */ 10651faada7SDouglas Raillard 107dec5e0d1SDan Handley /******************************************************************************* 108dec5e0d1SDan Handley * Mandatory interrupt management functions 109dec5e0d1SDan Handley ******************************************************************************/ 1109865ac15SDan Handley uint32_t plat_ic_get_pending_interrupt_id(void); 1119865ac15SDan Handley uint32_t plat_ic_get_pending_interrupt_type(void); 1129865ac15SDan Handley uint32_t plat_ic_acknowledge_interrupt(void); 1139865ac15SDan Handley uint32_t plat_ic_get_interrupt_type(uint32_t id); 1149865ac15SDan Handley void plat_ic_end_of_interrupt(uint32_t id); 1155f0cdb05SDan Handley uint32_t plat_interrupt_type_to_line(uint32_t type, 1165f0cdb05SDan Handley uint32_t security_state); 1175f0cdb05SDan Handley 118dec5e0d1SDan Handley /******************************************************************************* 119eb68ea9bSJeenu Viswambharan * Optional interrupt management functions, depending on chosen EL3 components. 120eb68ea9bSJeenu Viswambharan ******************************************************************************/ 121eb68ea9bSJeenu Viswambharan unsigned int plat_ic_get_running_priority(void); 122ca43b55dSJeenu Viswambharan int plat_ic_is_spi(unsigned int id); 123ca43b55dSJeenu Viswambharan int plat_ic_is_ppi(unsigned int id); 124ca43b55dSJeenu Viswambharan int plat_ic_is_sgi(unsigned int id); 125cbd3f370SJeenu Viswambharan unsigned int plat_ic_get_interrupt_active(unsigned int id); 126979225f4SJeenu Viswambharan void plat_ic_disable_interrupt(unsigned int id); 127979225f4SJeenu Viswambharan void plat_ic_enable_interrupt(unsigned int id); 1281f6bb41dSMadhukar Pappireddy bool plat_ic_has_interrupt_type(unsigned int type); 12974dce7faSJeenu Viswambharan void plat_ic_set_interrupt_type(unsigned int id, unsigned int type); 130f3a86600SJeenu Viswambharan void plat_ic_set_interrupt_priority(unsigned int id, unsigned int priority); 1318db978b5SJeenu Viswambharan void plat_ic_raise_el3_sgi(int sgi_num, u_register_t target); 132dcb31ff7SFlorian Lugou void plat_ic_raise_ns_sgi(int sgi_num, u_register_t target); 133dcb31ff7SFlorian Lugou void plat_ic_raise_s_el1_sgi(int sgi_num, u_register_t target); 134fc529feeSJeenu Viswambharan void plat_ic_set_spi_routing(unsigned int id, unsigned int routing_mode, 135fc529feeSJeenu Viswambharan u_register_t mpidr); 136a2816a16SJeenu Viswambharan void plat_ic_set_interrupt_pending(unsigned int id); 137a2816a16SJeenu Viswambharan void plat_ic_clear_interrupt_pending(unsigned int id); 138d55a4450SJeenu Viswambharan unsigned int plat_ic_set_priority_mask(unsigned int mask); 13924a4a0a5SArvind Ram Prakash unsigned int plat_ic_deactivate_priority(unsigned int mask); 1404ee8d0beSJeenu Viswambharan unsigned int plat_ic_get_interrupt_id(unsigned int raw); 141eb68ea9bSJeenu Viswambharan 142eb68ea9bSJeenu Viswambharan /******************************************************************************* 143dec5e0d1SDan Handley * Optional common functions (may be overridden) 144dec5e0d1SDan Handley ******************************************************************************/ 1454c0d0390SSoby Mathew uintptr_t plat_get_my_stack(void); 1461a0a3f06SYatharth Kochar void plat_report_exception(unsigned int exception_type); 1476dc5979aSYann Gautier void plat_report_prefetch_abort(unsigned int fault_address); 1486dc5979aSYann Gautier void plat_report_data_abort(unsigned int fault_address); 14944804252SSandrine Bailleux int plat_crash_console_init(void); 150c67b09bdSSoby Mathew int plat_crash_console_putc(int c); 151831b0e98SJimmy Brisson void plat_crash_console_flush(void); 15240fc6cd1SJuan Castillo void plat_error_handler(int err) __dead2; 1531c3ea103SAntonio Nino Diaz void plat_panic_handler(void) __dead2; 154586f60ccSManish V Badarkhe void plat_system_reset(void) __dead2; 1557f56e9a3SSoby Mathew const char *plat_log_get_prefix(unsigned int log_level); 15601f62b6dSRoberto Vargas void bl2_plat_preload_setup(void); 15701f62b6dSRoberto Vargas int plat_try_next_boot_source(void); 158dec5e0d1SDan Handley 15948ba0345SManish V Badarkhe #if MEASURED_BOOT 16048ba0345SManish V Badarkhe int plat_mboot_measure_image(unsigned int image_id, image_info_t *image_data); 161cf21064eSManish V Badarkhe int plat_mboot_measure_critical_data(unsigned int critical_data_id, 162cf21064eSManish V Badarkhe const void *base, 163cf21064eSManish V Badarkhe size_t size); 1642971bad8SManish V Badarkhe int plat_mboot_measure_key(const void *pk_oid, const void *pk_ptr, 1652971bad8SManish V Badarkhe size_t pk_len); 16648ba0345SManish V Badarkhe #else 16748ba0345SManish V Badarkhe static inline int plat_mboot_measure_image(unsigned int image_id __unused, 16848ba0345SManish V Badarkhe image_info_t *image_data __unused) 16948ba0345SManish V Badarkhe { 17048ba0345SManish V Badarkhe return 0; 17148ba0345SManish V Badarkhe } 172cf21064eSManish V Badarkhe static inline int plat_mboot_measure_critical_data( 173cf21064eSManish V Badarkhe unsigned int critical_data_id __unused, 174cf21064eSManish V Badarkhe const void *base __unused, 175cf21064eSManish V Badarkhe size_t size __unused) 176cf21064eSManish V Badarkhe { 177cf21064eSManish V Badarkhe return 0; 178cf21064eSManish V Badarkhe } 1792971bad8SManish V Badarkhe static inline int plat_mboot_measure_key(const void *pk_oid __unused, 1802971bad8SManish V Badarkhe const void *pk_ptr __unused, 1812971bad8SManish V Badarkhe size_t pk_len __unused) 1822971bad8SManish V Badarkhe { 1832971bad8SManish V Badarkhe return 0; 1842971bad8SManish V Badarkhe } 18548ba0345SManish V Badarkhe #endif /* MEASURED_BOOT */ 18648ba0345SManish V Badarkhe 187*ae770fedSYann Gautier #if EARLY_CONSOLE 188*ae770fedSYann Gautier void plat_setup_early_console(void); 189*ae770fedSYann Gautier #else 190*ae770fedSYann Gautier static inline void plat_setup_early_console(void) 191*ae770fedSYann Gautier { 192*ae770fedSYann Gautier } 193*ae770fedSYann Gautier #endif /* EARLY_CONSOLE */ 194*ae770fedSYann Gautier 195dec5e0d1SDan Handley /******************************************************************************* 196dec5e0d1SDan Handley * Mandatory BL1 functions 197dec5e0d1SDan Handley ******************************************************************************/ 1985a06bb7eSDan Handley void bl1_early_platform_setup(void); 199dec5e0d1SDan Handley void bl1_plat_arch_setup(void); 200dec5e0d1SDan Handley void bl1_platform_setup(void); 201dec5e0d1SDan Handley struct meminfo *bl1_plat_sec_mem_layout(void); 2025f0cdb05SDan Handley 203b7cb133eSJeenu Viswambharan /******************************************************************************* 204b7cb133eSJeenu Viswambharan * Optional EL3 component functions in BL31 205b7cb133eSJeenu Viswambharan ******************************************************************************/ 206b7cb133eSJeenu Viswambharan 207b7cb133eSJeenu Viswambharan /* SDEI platform functions */ 208b7cb133eSJeenu Viswambharan #if SDEI_SUPPORT 209cbf9e84aSBalint Dobszay void plat_sdei_setup(void); 210b7cb133eSJeenu Viswambharan int plat_sdei_validate_entry_point(uintptr_t ep, unsigned int client_mode); 211b7cb133eSJeenu Viswambharan void plat_sdei_handle_masked_trigger(uint64_t mpidr, unsigned int intr); 212b7cb133eSJeenu Viswambharan #endif 213b7cb133eSJeenu Viswambharan 21430e8fa7eSPali Rohár void plat_default_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie, 21530e8fa7eSPali Rohár void *handle, uint64_t flags); 21676454abfSJeenu Viswambharan void plat_ea_handler(unsigned int ea_reason, uint64_t syndrome, void *cookie, 21776454abfSJeenu Viswambharan void *handle, uint64_t flags); 21876454abfSJeenu Viswambharan 21948bfb88eSYatharth Kochar /* 22048bfb88eSYatharth Kochar * The following function is mandatory when the 22148bfb88eSYatharth Kochar * firmware update feature is used. 22248bfb88eSYatharth Kochar */ 22348bfb88eSYatharth Kochar int bl1_plat_mem_check(uintptr_t mem_base, unsigned int mem_size, 22448bfb88eSYatharth Kochar unsigned int flags); 22548bfb88eSYatharth Kochar 226dec5e0d1SDan Handley /******************************************************************************* 227dec5e0d1SDan Handley * Optional BL1 functions (may be overridden) 228dec5e0d1SDan Handley ******************************************************************************/ 2297baff11fSYatharth Kochar /* 2307baff11fSYatharth Kochar * The following functions are used for image loading process in BL1. 2317baff11fSYatharth Kochar */ 2327baff11fSYatharth Kochar void bl1_plat_set_ep_info(unsigned int image_id, 2337baff11fSYatharth Kochar struct entry_point_info *ep_info); 23448bfb88eSYatharth Kochar /* 23548bfb88eSYatharth Kochar * The following functions are mandatory when firmware update 23648bfb88eSYatharth Kochar * feature is used and optional otherwise. 23748bfb88eSYatharth Kochar */ 2387baff11fSYatharth Kochar unsigned int bl1_plat_get_next_image_id(void); 2397baff11fSYatharth Kochar struct image_desc *bl1_plat_get_image_desc(unsigned int image_id); 240dec5e0d1SDan Handley 24148bfb88eSYatharth Kochar /* 24248bfb88eSYatharth Kochar * The following functions are used by firmware update 24348bfb88eSYatharth Kochar * feature and may optionally be overridden. 24448bfb88eSYatharth Kochar */ 2451f37b944SDan Handley __dead2 void bl1_plat_fwu_done(void *client_cookie, void *reserved); 24648bfb88eSYatharth Kochar 24711f001cbSMasahiro Yamada /* 248566034fcSSoby Mathew * This BL1 function can be used by the platforms to update/use image 249566034fcSSoby Mathew * information for a given `image_id`. 25011f001cbSMasahiro Yamada */ 251566034fcSSoby Mathew int bl1_plat_handle_pre_image_load(unsigned int image_id); 252566034fcSSoby Mathew int bl1_plat_handle_post_image_load(unsigned int image_id); 25348bfb88eSYatharth Kochar 254e7f1181fSTamas Ban #if (MEASURED_BOOT || DICE_PROTECTION_ENVIRONMENT) 25548ba0345SManish V Badarkhe void bl1_plat_mboot_init(void); 25648ba0345SManish V Badarkhe void bl1_plat_mboot_finish(void); 25748ba0345SManish V Badarkhe #else 25848ba0345SManish V Badarkhe static inline void bl1_plat_mboot_init(void) 25948ba0345SManish V Badarkhe { 26048ba0345SManish V Badarkhe } 26148ba0345SManish V Badarkhe static inline void bl1_plat_mboot_finish(void) 26248ba0345SManish V Badarkhe { 26348ba0345SManish V Badarkhe } 264e7f1181fSTamas Ban #endif /* MEASURED_BOOT || DICE_PROTECTION_ENVIRONMENT */ 26548ba0345SManish V Badarkhe 266dec5e0d1SDan Handley /******************************************************************************* 267dec5e0d1SDan Handley * Mandatory BL2 functions 268dec5e0d1SDan Handley ******************************************************************************/ 269a6f340feSSoby Mathew void bl2_early_platform_setup2(u_register_t arg0, u_register_t arg1, u_register_t arg2, u_register_t arg3); 270dec5e0d1SDan Handley void bl2_plat_arch_setup(void); 271dec5e0d1SDan Handley void bl2_platform_setup(void); 272dec5e0d1SDan Handley struct meminfo *bl2_plat_sec_mem_layout(void); 273dec5e0d1SDan Handley 27472600226SYatharth Kochar /* 27572600226SYatharth Kochar * This function can be used by the platforms to update/use image 27672600226SYatharth Kochar * information for given `image_id`. 27772600226SYatharth Kochar */ 278ba68ef55SMasahiro Yamada int bl2_plat_handle_pre_image_load(unsigned int image_id); 27972600226SYatharth Kochar int bl2_plat_handle_post_image_load(unsigned int image_id); 28072600226SYatharth Kochar 28193d81d64SSandrine Bailleux /******************************************************************************* 282dec5e0d1SDan Handley * Optional BL2 functions (may be overridden) 283dec5e0d1SDan Handley ******************************************************************************/ 284e7f1181fSTamas Ban #if (MEASURED_BOOT || DICE_PROTECTION_ENVIRONMENT) 28547bf3ac3SManish V Badarkhe void bl2_plat_mboot_init(void); 28647bf3ac3SManish V Badarkhe void bl2_plat_mboot_finish(void); 28747bf3ac3SManish V Badarkhe #else 28847bf3ac3SManish V Badarkhe static inline void bl2_plat_mboot_init(void) 28947bf3ac3SManish V Badarkhe { 29047bf3ac3SManish V Badarkhe } 29147bf3ac3SManish V Badarkhe static inline void bl2_plat_mboot_finish(void) 29247bf3ac3SManish V Badarkhe { 29347bf3ac3SManish V Badarkhe } 294e7f1181fSTamas Ban #endif /* MEASURED_BOOT || DICE_PROTECTION_ENVIRONMENTs */ 295b1d27b48SRoberto Vargas 296b1d27b48SRoberto Vargas /******************************************************************************* 29742d4d3baSArvind Ram Prakash * Mandatory BL2 at EL3 functions: Must be implemented 29842d4d3baSArvind Ram Prakash * if RESET_TO_BL2 image is supported 299b1d27b48SRoberto Vargas ******************************************************************************/ 300b1d27b48SRoberto Vargas void bl2_el3_early_platform_setup(u_register_t arg0, u_register_t arg1, 301b1d27b48SRoberto Vargas u_register_t arg2, u_register_t arg3); 302b1d27b48SRoberto Vargas void bl2_el3_plat_arch_setup(void); 303b1d27b48SRoberto Vargas 304b1d27b48SRoberto Vargas /******************************************************************************* 305b1d27b48SRoberto Vargas * Optional BL2 at EL3 functions (may be overridden) 306b1d27b48SRoberto Vargas ******************************************************************************/ 307b1d27b48SRoberto Vargas void bl2_el3_plat_prepare_exit(void); 308b1d27b48SRoberto Vargas 309dec5e0d1SDan Handley /******************************************************************************* 3109003fa0bSYatharth Kochar * Mandatory BL2U functions. 3119003fa0bSYatharth Kochar ******************************************************************************/ 3129003fa0bSYatharth Kochar void bl2u_early_platform_setup(struct meminfo *mem_layout, 3139003fa0bSYatharth Kochar void *plat_info); 3149003fa0bSYatharth Kochar void bl2u_plat_arch_setup(void); 3159003fa0bSYatharth Kochar void bl2u_platform_setup(void); 3169003fa0bSYatharth Kochar 3179003fa0bSYatharth Kochar /******************************************************************************* 3189003fa0bSYatharth Kochar * Conditionally mandatory BL2U functions for CSS platforms. 3199003fa0bSYatharth Kochar ******************************************************************************/ 3209003fa0bSYatharth Kochar /* 3219003fa0bSYatharth Kochar * This function is used to perform any platform-specific actions required to 3229003fa0bSYatharth Kochar * handle the BL2U_SCP firmware. 3239003fa0bSYatharth Kochar */ 3249003fa0bSYatharth Kochar int bl2u_plat_handle_scp_bl2u(void); 3259003fa0bSYatharth Kochar 3269003fa0bSYatharth Kochar /******************************************************************************* 327d178637dSJuan Castillo * Mandatory BL31 functions 328dec5e0d1SDan Handley ******************************************************************************/ 329a6f340feSSoby Mathew void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1, 330a6f340feSSoby Mathew u_register_t arg2, u_register_t arg3); 331dec5e0d1SDan Handley void bl31_plat_arch_setup(void); 332dec5e0d1SDan Handley void bl31_platform_setup(void); 33378e61613SSoby Mathew void bl31_plat_runtime_setup(void); 3349865ac15SDan Handley struct entry_point_info *bl31_plat_get_next_image_ep_info(uint32_t type); 335dec5e0d1SDan Handley 336dec5e0d1SDan Handley /******************************************************************************* 337d178637dSJuan Castillo * Mandatory PSCI functions (BL31) 338dec5e0d1SDan Handley ******************************************************************************/ 33967487846SSoby Mathew int plat_setup_psci_ops(uintptr_t sec_entrypoint, 3409fb8af33SRoberto Vargas const struct plat_psci_ops **psci_ops); 34167487846SSoby Mathew const unsigned char *plat_get_power_domain_tree_desc(void); 34267487846SSoby Mathew 34367487846SSoby Mathew /******************************************************************************* 344d178637dSJuan Castillo * Optional PSCI functions (BL31). 34567487846SSoby Mathew ******************************************************************************/ 34604c1db1eSdp-arm void plat_psci_stat_accounting_start(const psci_power_state_t *state_info); 34704c1db1eSdp-arm void plat_psci_stat_accounting_stop(const psci_power_state_t *state_info); 34804c1db1eSdp-arm u_register_t plat_psci_stat_get_residency(unsigned int lvl, 34904c1db1eSdp-arm const psci_power_state_t *state_info, 3505b33ad17SDeepika Bhavnani unsigned int last_cpu_idx); 35167487846SSoby Mathew plat_local_state_t plat_get_target_pwr_state(unsigned int lvl, 35267487846SSoby Mathew const plat_local_state_t *states, 35367487846SSoby Mathew unsigned int ncpu); 354dec5e0d1SDan Handley 355dec5e0d1SDan Handley /******************************************************************************* 3560f9159b7SSoby Mathew * Mandatory BL31 functions when ENABLE_RME=1 3570f9159b7SSoby Mathew ******************************************************************************/ 3581d0ca40eSJavier Almansa Sobrino #if ENABLE_RME 3598c980a4aSJavier Almansa Sobrino int plat_rmmd_get_cca_attest_token(uintptr_t buf, size_t *len, 3600f9159b7SSoby Mathew uintptr_t hash, size_t hash_size); 3618c980a4aSJavier Almansa Sobrino int plat_rmmd_get_cca_realm_attest_key(uintptr_t buf, size_t *len, 362a0435105SSoby Mathew unsigned int type); 3638c980a4aSJavier Almansa Sobrino size_t plat_rmmd_get_el3_rmm_shared_mem(uintptr_t *shared); 364a97bfa5fSAlexeiFedorov int plat_rmmd_load_manifest(struct rmm_manifest *manifest); 3651d0ca40eSJavier Almansa Sobrino #endif 3661d0ca40eSJavier Almansa Sobrino 3670f9159b7SSoby Mathew /******************************************************************************* 368d178637dSJuan Castillo * Optional BL31 functions (may be overridden) 369dff8e47aSDan Handley ******************************************************************************/ 370afff8cbdSAchin Gupta void bl31_plat_enable_mmu(uint32_t flags); 371dff8e47aSDan Handley 372dff8e47aSDan Handley /******************************************************************************* 373d178637dSJuan Castillo * Optional BL32 functions (may be overridden) 374dff8e47aSDan Handley ******************************************************************************/ 375afff8cbdSAchin Gupta void bl32_plat_enable_mmu(uint32_t flags); 376dff8e47aSDan Handley 3776eadf762SJuan Castillo /******************************************************************************* 37895cfd4adSJuan Castillo * Trusted Board Boot functions 3796eadf762SJuan Castillo ******************************************************************************/ 38095cfd4adSJuan Castillo int plat_get_rotpk_info(void *cookie, void **key_ptr, unsigned int *key_len, 38195cfd4adSJuan Castillo unsigned int *flags); 38248279d52SJuan Castillo int plat_get_nv_ctr(void *cookie, unsigned int *nv_ctr); 38348279d52SJuan Castillo int plat_set_nv_ctr(void *cookie, unsigned int nv_ctr); 384d35dee23Sdp-arm int plat_set_nv_ctr2(void *cookie, const struct auth_img_desc_s *img_desc, 385d35dee23Sdp-arm unsigned int nv_ctr); 3862374ab17SAmbroise Vincent int get_mbedtls_heap_helper(void **heap_addr, size_t *heap_size); 3872be57b86SSumit Garg int plat_get_enc_key_info(enum fw_enc_status_t fw_enc_status, uint8_t *key, 3882be57b86SSumit Garg size_t *key_len, unsigned int *flags, 3892be57b86SSumit Garg const uint8_t *img_id, size_t img_id_len); 3906eadf762SJuan Castillo 3912fccb228SAntonio Nino Diaz /******************************************************************************* 3922fccb228SAntonio Nino Diaz * Secure Partitions functions 3932fccb228SAntonio Nino Diaz ******************************************************************************/ 3942fccb228SAntonio Nino Diaz const struct mmap_region *plat_get_secure_partition_mmap(void *cookie); 395aeaa225cSPaul Beesley const struct spm_mm_boot_info *plat_get_secure_partition_boot_info( 3962fccb228SAntonio Nino Diaz void *cookie); 397e458302bSAntonio Nino Diaz int plat_spm_sp_rd_load(struct sp_res_desc *rd, const void *ptr, size_t size); 398680389a6SAntonio Nino Diaz int plat_spm_sp_get_next_address(void **sp_base, size_t *sp_size, 399680389a6SAntonio Nino Diaz void **rd_base, size_t *rd_size); 4000cb64d01SAchin Gupta #if defined(SPD_spmd) 40152696946SOlivier Deprez int plat_spm_core_manifest_load(spmc_manifest_attribute_t *manifest, 40223d5ba86SOlivier Deprez const void *pm_addr); 4030cb64d01SAchin Gupta #endif 4046a0788bcSMarc Bonnici #if defined(SPMC_AT_EL3) 4056a0788bcSMarc Bonnici int plat_spmc_shmem_datastore_get(uint8_t **datastore, size_t *size); 4066a0788bcSMarc Bonnici #endif 4076a0788bcSMarc Bonnici 40872600226SYatharth Kochar /******************************************************************************* 40972600226SYatharth Kochar * Mandatory BL image load functions(may be overridden). 41072600226SYatharth Kochar ******************************************************************************/ 41172600226SYatharth Kochar /* 41272600226SYatharth Kochar * This function returns pointer to the list of images that the 41372600226SYatharth Kochar * platform has populated to load. 41472600226SYatharth Kochar */ 41572600226SYatharth Kochar struct bl_load_info *plat_get_bl_image_load_info(void); 41672600226SYatharth Kochar 41772600226SYatharth Kochar /* 41872600226SYatharth Kochar * This function returns a pointer to the shared memory that the 41972600226SYatharth Kochar * platform has kept aside to pass trusted firmware related 42072600226SYatharth Kochar * information that next BL image could need. 42172600226SYatharth Kochar */ 42272600226SYatharth Kochar struct bl_params *plat_get_next_bl_params(void); 42372600226SYatharth Kochar 42472600226SYatharth Kochar /* 42572600226SYatharth Kochar * This function flushes to main memory all the params that are 42672600226SYatharth Kochar * passed to next image. 42772600226SYatharth Kochar */ 42872600226SYatharth Kochar void plat_flush_next_bl_params(void); 42972600226SYatharth Kochar 4305c8babcdSSoby Mathew /* 4315c8babcdSSoby Mathew * The below function enable Trusted Firmware components like SPDs which 4325c8babcdSSoby Mathew * haven't migrated to the new platform API to compile on platforms which 4335c8babcdSSoby Mathew * have the compatibility layer disabled. 4345c8babcdSSoby Mathew */ 4357fabe1a8SRoberto Vargas unsigned int platform_core_pos_helper(unsigned long mpidr); 43651faada7SDouglas Raillard 4370e753437SManish V Badarkhe /* 4380e753437SManish V Badarkhe * Optional function to get SOC version 4390e753437SManish V Badarkhe */ 4400e753437SManish V Badarkhe int32_t plat_get_soc_version(void); 4410e753437SManish V Badarkhe 4420e753437SManish V Badarkhe /* 4430e753437SManish V Badarkhe * Optional function to get SOC revision 4440e753437SManish V Badarkhe */ 4450e753437SManish V Badarkhe int32_t plat_get_soc_revision(void); 4460e753437SManish V Badarkhe 4476f0a2f04SManish V Badarkhe /* 4486f0a2f04SManish V Badarkhe * Optional function to check for SMCCC function availability for platform 4496f0a2f04SManish V Badarkhe */ 4506f0a2f04SManish V Badarkhe int32_t plat_is_smccc_feature_available(u_register_t fid); 4516f0a2f04SManish V Badarkhe 452efb2ced2SManish V Badarkhe /******************************************************************************* 453efb2ced2SManish V Badarkhe * FWU platform specific functions 454efb2ced2SManish V Badarkhe ******************************************************************************/ 455efb2ced2SManish V Badarkhe int plat_fwu_set_metadata_image_source(unsigned int image_id, 456efb2ced2SManish V Badarkhe uintptr_t *dev_handle, 457efb2ced2SManish V Badarkhe uintptr_t *image_spec); 4586aaf257dSSughosh Ganu void plat_fwu_set_images_source(const struct fwu_metadata *metadata); 45940c175e7SSughosh Ganu uint32_t plat_fwu_get_boot_idx(void); 460efb2ced2SManish V Badarkhe 46178fbb0ecSChannagoud kadabi /* 46278fbb0ecSChannagoud kadabi * Optional function to indicate if cache management operations can be 46378fbb0ecSChannagoud kadabi * performed. 46478fbb0ecSChannagoud kadabi */ 46578fbb0ecSChannagoud kadabi #if CONDITIONAL_CMO 46678fbb0ecSChannagoud kadabi uint64_t plat_can_cmo(void); 46778fbb0ecSChannagoud kadabi #else 46878fbb0ecSChannagoud kadabi static inline uint64_t plat_can_cmo(void) 46978fbb0ecSChannagoud kadabi { 47078fbb0ecSChannagoud kadabi return 1; 47178fbb0ecSChannagoud kadabi } 47278fbb0ecSChannagoud kadabi #endif /* CONDITIONAL_CMO */ 47378fbb0ecSChannagoud kadabi 4742bc3dba9SAntonio Nino Diaz #endif /* PLATFORM_H */ 475