xref: /rk3399_ARM-atf/include/plat/arm/common/plat_arm.h (revision 0ed8c00174f8c2bd7917fafa5c72a038f944b07b)
1b4315306SDan Handley /*
20c306cc0SSoby Mathew  * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
3b4315306SDan Handley  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
5b4315306SDan Handley  */
6b4315306SDan Handley #ifndef __PLAT_ARM_H__
7b4315306SDan Handley #define __PLAT_ARM_H__
8b4315306SDan Handley 
93b211ff5SAntonio Nino Diaz #include <arm_xlat_tables.h>
10b4315306SDan Handley #include <bakery_lock.h>
11b4315306SDan Handley #include <cassert.h>
12b4315306SDan Handley #include <cpu_data.h>
13b4315306SDan Handley #include <stdint.h>
1453d9c9c8SScott Branden #include <utils_def.h>
15b4315306SDan Handley 
16afc931f5SSandrine Bailleux /*******************************************************************************
17afc931f5SSandrine Bailleux  * Forward declarations
18afc931f5SSandrine Bailleux  ******************************************************************************/
19afc931f5SSandrine Bailleux struct bl31_params;
20afc931f5SSandrine Bailleux struct meminfo;
21a8aa7fecSYatharth Kochar struct image_info;
22cab0b5b0SSoby Mathew struct bl_params;
23afc931f5SSandrine Bailleux 
24b4315306SDan Handley #define ARM_CASSERT_MMAP						\
25b4315306SDan Handley 	CASSERT((ARRAY_SIZE(plat_arm_mmap) + ARM_BL_REGIONS)		\
26b4315306SDan Handley 		<= MAX_MMAP_REGIONS,					\
27b4315306SDan Handley 		assert_max_mmap_regions);
28b4315306SDan Handley 
29b4315306SDan Handley /*
30b4315306SDan Handley  * Utility functions common to ARM standard platforms
31b4315306SDan Handley  */
324c0d0390SSoby Mathew void arm_setup_page_tables(uintptr_t total_base,
334c0d0390SSoby Mathew 			size_t total_size,
344c0d0390SSoby Mathew 			uintptr_t code_start,
354c0d0390SSoby Mathew 			uintptr_t code_limit,
364c0d0390SSoby Mathew 			uintptr_t rodata_start,
374c0d0390SSoby Mathew 			uintptr_t rodata_limit
38b4315306SDan Handley #if USE_COHERENT_MEM
394c0d0390SSoby Mathew 			, uintptr_t coh_start,
404c0d0390SSoby Mathew 			uintptr_t coh_limit
41b4315306SDan Handley #endif
42b4315306SDan Handley );
43b4315306SDan Handley 
44e40e075fSSoby Mathew #if defined(IMAGE_BL31) || (defined(AARCH32) && defined(IMAGE_BL32))
45b4315306SDan Handley /*
46b4315306SDan Handley  * Use this macro to instantiate lock before it is used in below
47b4315306SDan Handley  * arm_lock_xxx() macros
48b4315306SDan Handley  */
4919583169SJeenu Viswambharan #define ARM_INSTANTIATE_LOCK	DEFINE_BAKERY_LOCK(arm_lock)
50c04a3b6cSSoby Mathew #define ARM_LOCK_GET_INSTANCE	(&arm_lock)
51b4315306SDan Handley /*
52b4315306SDan Handley  * These are wrapper macros to the Coherent Memory Bakery Lock API.
53b4315306SDan Handley  */
54b4315306SDan Handley #define arm_lock_init()		bakery_lock_init(&arm_lock)
55b4315306SDan Handley #define arm_lock_get()		bakery_lock_get(&arm_lock)
56b4315306SDan Handley #define arm_lock_release()	bakery_lock_release(&arm_lock)
57b4315306SDan Handley 
58b4315306SDan Handley #else
59b4315306SDan Handley 
60b4315306SDan Handley /*
616f249345SYatharth Kochar  * Empty macros for all other BL stages other than BL31 and BL32
62b4315306SDan Handley  */
6319583169SJeenu Viswambharan #define ARM_INSTANTIATE_LOCK	static int arm_lock __unused
64c04a3b6cSSoby Mathew #define ARM_LOCK_GET_INSTANCE	0
65b4315306SDan Handley #define arm_lock_init()
66b4315306SDan Handley #define arm_lock_get()
67b4315306SDan Handley #define arm_lock_release()
68b4315306SDan Handley 
69e40e075fSSoby Mathew #endif /* defined(IMAGE_BL31) || (defined(AARCH32) && defined(IMAGE_BL32)) */
70b4315306SDan Handley 
712204afdeSSoby Mathew #if ARM_RECOM_STATE_ID_ENC
722204afdeSSoby Mathew /*
732204afdeSSoby Mathew  * Macros used to parse state information from State-ID if it is using the
742204afdeSSoby Mathew  * recommended encoding for State-ID.
752204afdeSSoby Mathew  */
762204afdeSSoby Mathew #define ARM_LOCAL_PSTATE_WIDTH		4
772204afdeSSoby Mathew #define ARM_LOCAL_PSTATE_MASK		((1 << ARM_LOCAL_PSTATE_WIDTH) - 1)
782204afdeSSoby Mathew 
792204afdeSSoby Mathew /* Macros to construct the composite power state */
802204afdeSSoby Mathew 
812204afdeSSoby Mathew /* Make composite power state parameter till power level 0 */
822204afdeSSoby Mathew #if PSCI_EXTENDED_STATE_ID
832204afdeSSoby Mathew 
842204afdeSSoby Mathew #define arm_make_pwrstate_lvl0(lvl0_state, pwr_lvl, type) \
852204afdeSSoby Mathew 		(((lvl0_state) << PSTATE_ID_SHIFT) | ((type) << PSTATE_TYPE_SHIFT))
862204afdeSSoby Mathew #else
872204afdeSSoby Mathew #define arm_make_pwrstate_lvl0(lvl0_state, pwr_lvl, type) \
882204afdeSSoby Mathew 		(((lvl0_state) << PSTATE_ID_SHIFT) | \
892204afdeSSoby Mathew 		((pwr_lvl) << PSTATE_PWR_LVL_SHIFT) | \
902204afdeSSoby Mathew 		((type) << PSTATE_TYPE_SHIFT))
912204afdeSSoby Mathew #endif /* __PSCI_EXTENDED_STATE_ID__ */
922204afdeSSoby Mathew 
932204afdeSSoby Mathew /* Make composite power state parameter till power level 1 */
942204afdeSSoby Mathew #define arm_make_pwrstate_lvl1(lvl1_state, lvl0_state, pwr_lvl, type) \
952204afdeSSoby Mathew 		(((lvl1_state) << ARM_LOCAL_PSTATE_WIDTH) | \
962204afdeSSoby Mathew 		arm_make_pwrstate_lvl0(lvl0_state, pwr_lvl, type))
972204afdeSSoby Mathew 
985f3a6030SSoby Mathew /* Make composite power state parameter till power level 2 */
995f3a6030SSoby Mathew #define arm_make_pwrstate_lvl2(lvl2_state, lvl1_state, lvl0_state, pwr_lvl, type) \
1005f3a6030SSoby Mathew 		(((lvl2_state) << (ARM_LOCAL_PSTATE_WIDTH * 2)) | \
1015f3a6030SSoby Mathew 		arm_make_pwrstate_lvl1(lvl1_state, lvl0_state, pwr_lvl, type))
1025f3a6030SSoby Mathew 
1032204afdeSSoby Mathew #endif /* __ARM_RECOM_STATE_ID_ENC__ */
1042204afdeSSoby Mathew 
105b10d4499SJeenu Viswambharan /* ARM State switch error codes */
106b10d4499SJeenu Viswambharan #define STATE_SW_E_PARAM		(-2)
107b10d4499SJeenu Viswambharan #define STATE_SW_E_DENIED		(-3)
108b4315306SDan Handley 
109b4315306SDan Handley /* IO storage utility functions */
110b4315306SDan Handley void arm_io_setup(void);
111b4315306SDan Handley 
112b4315306SDan Handley /* Security utility functions */
11357f78201SSoby Mathew void arm_tzc400_setup(void);
114618f0feeSVikram Kanigiri struct tzc_dmc500_driver_data;
115618f0feeSVikram Kanigiri void arm_tzc_dmc500_setup(struct tzc_dmc500_driver_data *plat_driver_data);
116b4315306SDan Handley 
117c1bb8a05SSoby Mathew /* Systimer utility function */
118c1bb8a05SSoby Mathew void arm_configure_sys_timer(void);
119c1bb8a05SSoby Mathew 
120b4315306SDan Handley /* PM utility functions */
12138dce70fSSoby Mathew int arm_validate_power_state(unsigned int power_state,
12238dce70fSSoby Mathew 			    psci_power_state_t *req_state);
12371e7a4e5SJeenu Viswambharan int arm_validate_psci_entrypoint(uintptr_t entrypoint);
124f9e858b1SSoby Mathew int arm_validate_ns_entrypoint(uintptr_t entrypoint);
125e35a3fb5SSoby Mathew void arm_system_pwr_domain_save(void);
126c1bb8a05SSoby Mathew void arm_system_pwr_domain_resume(void);
1274c117f6cSSandrine Bailleux void arm_program_trusted_mailbox(uintptr_t address);
128dc6aad2eSRoberto Vargas int arm_psci_read_mem_protect(int *enabled);
129f145403cSRoberto Vargas int arm_nor_psci_write_mem_protect(int val);
130f145403cSRoberto Vargas void arm_nor_psci_do_mem_protect(void);
131f145403cSRoberto Vargas int arm_psci_mem_protect_chk(uintptr_t base, u_register_t length);
13238dce70fSSoby Mathew 
13338dce70fSSoby Mathew /* Topology utility function */
13438dce70fSSoby Mathew int arm_check_mpidr(u_register_t mpidr);
135b4315306SDan Handley 
136b4315306SDan Handley /* BL1 utility functions */
137b4315306SDan Handley void arm_bl1_early_platform_setup(void);
138b4315306SDan Handley void arm_bl1_platform_setup(void);
139b4315306SDan Handley void arm_bl1_plat_arch_setup(void);
140b4315306SDan Handley 
141b4315306SDan Handley /* BL2 utility functions */
142cab0b5b0SSoby Mathew void arm_bl2_early_platform_setup(uintptr_t tb_fw_config, struct meminfo *mem_layout);
143b4315306SDan Handley void arm_bl2_platform_setup(void);
144b4315306SDan Handley void arm_bl2_plat_arch_setup(void);
145b4315306SDan Handley uint32_t arm_get_spsr_for_bl32_entry(void);
146b4315306SDan Handley uint32_t arm_get_spsr_for_bl33_entry(void);
14707570d59SYatharth Kochar int arm_bl2_handle_post_image_load(unsigned int image_id);
148b4315306SDan Handley 
14981528dbcSRoberto Vargas /* BL2 at EL3 functions */
15081528dbcSRoberto Vargas void arm_bl2_el3_early_platform_setup(void);
15181528dbcSRoberto Vargas void arm_bl2_el3_plat_arch_setup(void);
15281528dbcSRoberto Vargas 
153dcda29f6SYatharth Kochar /* BL2U utility functions */
154dcda29f6SYatharth Kochar void arm_bl2u_early_platform_setup(struct meminfo *mem_layout,
155dcda29f6SYatharth Kochar 				void *plat_info);
156dcda29f6SYatharth Kochar void arm_bl2u_platform_setup(void);
157dcda29f6SYatharth Kochar void arm_bl2u_plat_arch_setup(void);
158dcda29f6SYatharth Kochar 
159d178637dSJuan Castillo /* BL31 utility functions */
160a8aa7fecSYatharth Kochar #if LOAD_IMAGE_V2
1610c306cc0SSoby Mathew void arm_bl31_early_platform_setup(void *from_bl2, uintptr_t soc_fw_config,
1620c306cc0SSoby Mathew 				uintptr_t hw_config, void *plat_params_from_bl2);
163a8aa7fecSYatharth Kochar #else
1640c306cc0SSoby Mathew void arm_bl31_early_platform_setup(struct bl31_params *from_bl2, uintptr_t soc_fw_config,
1650c306cc0SSoby Mathew 				uintptr_t hw_config, void *plat_params_from_bl2);
166a8aa7fecSYatharth Kochar #endif /* LOAD_IMAGE_V2 */
167b4315306SDan Handley void arm_bl31_platform_setup(void);
168080225daSSoby Mathew void arm_bl31_plat_runtime_setup(void);
169b4315306SDan Handley void arm_bl31_plat_arch_setup(void);
170b4315306SDan Handley 
171b4315306SDan Handley /* TSP utility functions */
172b4315306SDan Handley void arm_tsp_early_platform_setup(void);
173b4315306SDan Handley 
174181bbd41SSoby Mathew /* SP_MIN utility functions */
1750c306cc0SSoby Mathew void arm_sp_min_early_platform_setup(void *from_bl2, uintptr_t tos_fw_config,
1760c306cc0SSoby Mathew 				uintptr_t hw_config, void *plat_params_from_bl2);
17721568304SDimitris Papastamos void arm_sp_min_plat_runtime_setup(void);
178181bbd41SSoby Mathew 
179436223deSYatharth Kochar /* FIP TOC validity check */
180436223deSYatharth Kochar int arm_io_is_toc_valid(void);
181b4315306SDan Handley 
182c228956aSSoby Mathew /* Utility functions for Dynamic Config */
183c228956aSSoby Mathew void arm_load_tb_fw_config(void);
184cab0b5b0SSoby Mathew void arm_bl2_set_tb_cfg_addr(void *dtb);
185cab0b5b0SSoby Mathew void arm_bl2_dyn_cfg_init(void);
186c228956aSSoby Mathew 
187b4315306SDan Handley /*
188b4315306SDan Handley  * Mandatory functions required in ARM standard platforms
189b4315306SDan Handley  */
1900108047aSSoby Mathew unsigned int plat_arm_get_cluster_core_count(u_register_t mpidr);
19127573c59SAchin Gupta void plat_arm_gic_driver_init(void);
192b4315306SDan Handley void plat_arm_gic_init(void);
19327573c59SAchin Gupta void plat_arm_gic_cpuif_enable(void);
19427573c59SAchin Gupta void plat_arm_gic_cpuif_disable(void);
195d17b953aSJeenu Viswambharan void plat_arm_gic_redistif_on(void);
196d17b953aSJeenu Viswambharan void plat_arm_gic_redistif_off(void);
19727573c59SAchin Gupta void plat_arm_gic_pcpu_init(void);
198e35a3fb5SSoby Mathew void plat_arm_gic_save(void);
199e35a3fb5SSoby Mathew void plat_arm_gic_resume(void);
200b4315306SDan Handley void plat_arm_security_setup(void);
201b4315306SDan Handley void plat_arm_pwrc_setup(void);
2026355f234SVikram Kanigiri void plat_arm_interconnect_init(void);
2036355f234SVikram Kanigiri void plat_arm_interconnect_enter_coherency(void);
2046355f234SVikram Kanigiri void plat_arm_interconnect_exit_coherency(void);
205b4315306SDan Handley 
206d8d6cf24SSummer Qin #if ARM_PLAT_MT
207d8d6cf24SSummer Qin unsigned int plat_arm_get_cpu_pe_count(u_register_t mpidr);
208d8d6cf24SSummer Qin #endif
209d8d6cf24SSummer Qin 
210a8aa7fecSYatharth Kochar #if LOAD_IMAGE_V2
211a8aa7fecSYatharth Kochar /*
212a8aa7fecSYatharth Kochar  * This function is called after loading SCP_BL2 image and it is used to perform
213a8aa7fecSYatharth Kochar  * any platform-specific actions required to handle the SCP firmware.
214a8aa7fecSYatharth Kochar  */
215a8aa7fecSYatharth Kochar int plat_arm_bl2_handle_scp_bl2(struct image_info *scp_bl2_image_info);
216a8aa7fecSYatharth Kochar #endif
217a8aa7fecSYatharth Kochar 
218b4315306SDan Handley /*
219b4315306SDan Handley  * Optional functions required in ARM standard platforms
220b4315306SDan Handley  */
221b4315306SDan Handley void plat_arm_io_setup(void);
222b4315306SDan Handley int plat_arm_get_alt_image_source(
22316948ae1SJuan Castillo 	unsigned int image_id,
22416948ae1SJuan Castillo 	uintptr_t *dev_handle,
22516948ae1SJuan Castillo 	uintptr_t *image_spec);
22638dce70fSSoby Mathew unsigned int plat_arm_calc_core_pos(u_register_t mpidr);
22765cb1c4cSVikram Kanigiri const mmap_region_t *plat_arm_get_mmap(void);
228b4315306SDan Handley 
2295486a965SSoby Mathew /* Allow platform to override psci_pm_ops during runtime */
2305486a965SSoby Mathew const plat_psci_ops_t *plat_arm_psci_override_pm_ops(plat_psci_ops_t *ops);
2315486a965SSoby Mathew 
232b10d4499SJeenu Viswambharan /* Execution state switch in ARM platforms */
233b10d4499SJeenu Viswambharan int arm_execution_state_switch(unsigned int smc_fid,
234b10d4499SJeenu Viswambharan 		uint32_t pc_hi,
235b10d4499SJeenu Viswambharan 		uint32_t pc_lo,
236b10d4499SJeenu Viswambharan 		uint32_t cookie_hi,
237b10d4499SJeenu Viswambharan 		uint32_t cookie_lo,
238b10d4499SJeenu Viswambharan 		void *handle);
239b10d4499SJeenu Viswambharan 
240*0ed8c001SSoby Mathew /* Optional functions for SP_MIN */
241*0ed8c001SSoby Mathew void plat_arm_sp_min_early_platform_setup(u_register_t arg0, u_register_t arg1,
242*0ed8c001SSoby Mathew 			u_register_t arg2, u_register_t arg3);
243*0ed8c001SSoby Mathew 
2441af540efSRoberto Vargas /* global variables */
2451af540efSRoberto Vargas extern plat_psci_ops_t plat_arm_psci_pm_ops;
2461af540efSRoberto Vargas extern const mmap_region_t plat_arm_mmap[];
2471af540efSRoberto Vargas 
248b4315306SDan Handley #endif /* __PLAT_ARM_H__ */
249