xref: /rk3399_ARM-atf/plat/arm/common/arm_bl1_setup.c (revision d6dcbcad1897fcb2ca3c6c56c034f44f0274a5bf)
1b4315306SDan Handley /*
23b5ea741SLouis Mayencourt  * Copyright (c) 2015-2020, ARM Limited and Contributors. All rights reserved.
3b4315306SDan Handley  *
482cb2c1aSdp-arm  * SPDX-License-Identifier: BSD-3-Clause
5b4315306SDan Handley  */
6b4315306SDan Handley 
7d323af9eSDaniel Boulby #include <assert.h>
809d40e0eSAntonio Nino Diaz 
94adb10c1SIsla Mitchell #include <platform_def.h>
1009d40e0eSAntonio Nino Diaz 
1109d40e0eSAntonio Nino Diaz #include <arch.h>
1209d40e0eSAntonio Nino Diaz #include <bl1/bl1.h>
1309d40e0eSAntonio Nino Diaz #include <common/bl_common.h>
143b5ea741SLouis Mayencourt #include <lib/fconf/fconf.h>
1509d40e0eSAntonio Nino Diaz #include <lib/utils.h>
1609d40e0eSAntonio Nino Diaz #include <lib/xlat_tables/xlat_tables_compat.h>
17bd9344f6SAntonio Nino Diaz #include <plat/arm/common/plat_arm.h>
1809d40e0eSAntonio Nino Diaz #include <plat/common/platform.h>
1909d40e0eSAntonio Nino Diaz 
20b4315306SDan Handley /* Weak definitions may be overridden in specific ARM standard platform */
21b4315306SDan Handley #pragma weak bl1_early_platform_setup
22b4315306SDan Handley #pragma weak bl1_plat_arch_setup
23b4315306SDan Handley #pragma weak bl1_plat_sec_mem_layout
2407570d59SYatharth Kochar #pragma weak bl1_plat_prepare_exit
254da6f6cdSSathees Balya #pragma weak bl1_plat_get_next_image_id
264da6f6cdSSathees Balya #pragma weak plat_arm_bl1_fwu_needed
27b4315306SDan Handley 
28d323af9eSDaniel Boulby #define MAP_BL1_TOTAL		MAP_REGION_FLAT(			\
29d323af9eSDaniel Boulby 					bl1_tzram_layout.total_base,	\
30d323af9eSDaniel Boulby 					bl1_tzram_layout.total_size,	\
31d323af9eSDaniel Boulby 					MT_MEMORY | MT_RW | MT_SECURE)
322ecaafd2SDaniel Boulby /*
332ecaafd2SDaniel Boulby  * If SEPARATE_CODE_AND_RODATA=1 we define a region for each section
342ecaafd2SDaniel Boulby  * otherwise one region is defined containing both
352ecaafd2SDaniel Boulby  */
362ecaafd2SDaniel Boulby #if SEPARATE_CODE_AND_RODATA
372ecaafd2SDaniel Boulby #define MAP_BL1_RO		MAP_REGION_FLAT(			\
38d323af9eSDaniel Boulby 					BL_CODE_BASE,			\
39d323af9eSDaniel Boulby 					BL1_CODE_END - BL_CODE_BASE,	\
402ecaafd2SDaniel Boulby 					MT_CODE | MT_SECURE),		\
412ecaafd2SDaniel Boulby 				MAP_REGION_FLAT(			\
42d323af9eSDaniel Boulby 					BL1_RO_DATA_BASE,		\
43d323af9eSDaniel Boulby 					BL1_RO_DATA_END			\
44d323af9eSDaniel Boulby 						- BL_RO_DATA_BASE,	\
45d323af9eSDaniel Boulby 					MT_RO_DATA | MT_SECURE)
462ecaafd2SDaniel Boulby #else
472ecaafd2SDaniel Boulby #define MAP_BL1_RO		MAP_REGION_FLAT(			\
482ecaafd2SDaniel Boulby 					BL_CODE_BASE,			\
492ecaafd2SDaniel Boulby 					BL1_CODE_END - BL_CODE_BASE,	\
502ecaafd2SDaniel Boulby 					MT_CODE | MT_SECURE)
512ecaafd2SDaniel Boulby #endif
52b4315306SDan Handley 
53b4315306SDan Handley /* Data structure which holds the extents of the trusted SRAM for BL1*/
54b4315306SDan Handley static meminfo_t bl1_tzram_layout;
55b4315306SDan Handley 
566c77e749SSandrine Bailleux struct meminfo *bl1_plat_sec_mem_layout(void)
57b4315306SDan Handley {
58b4315306SDan Handley 	return &bl1_tzram_layout;
59b4315306SDan Handley }
60b4315306SDan Handley 
61b4315306SDan Handley /*******************************************************************************
62b4315306SDan Handley  * BL1 specific platform actions shared between ARM standard platforms.
63b4315306SDan Handley  ******************************************************************************/
64b4315306SDan Handley void arm_bl1_early_platform_setup(void)
65b4315306SDan Handley {
66b4315306SDan Handley 
677b4c1405SJuan Castillo #if !ARM_DISABLE_TRUSTED_WDOG
687b4c1405SJuan Castillo 	/* Enable watchdog */
69b0c97dafSAditya Angadi 	plat_arm_secure_wdt_start();
707b4c1405SJuan Castillo #endif
717b4c1405SJuan Castillo 
72b4315306SDan Handley 	/* Initialize the console to provide early debug support */
7388a0523eSAntonio Nino Diaz 	arm_console_boot_init();
74b4315306SDan Handley 
75b4315306SDan Handley 	/* Allow BL1 to see the whole Trusted RAM */
76b4315306SDan Handley 	bl1_tzram_layout.total_base = ARM_BL_RAM_BASE;
77b4315306SDan Handley 	bl1_tzram_layout.total_size = ARM_BL_RAM_SIZE;
78b4315306SDan Handley }
79b4315306SDan Handley 
80b4315306SDan Handley void bl1_early_platform_setup(void)
81b4315306SDan Handley {
82b4315306SDan Handley 	arm_bl1_early_platform_setup();
83b4315306SDan Handley 
84b4315306SDan Handley 	/*
856355f234SVikram Kanigiri 	 * Initialize Interconnect for this cluster during cold boot.
86b4315306SDan Handley 	 * No need for locks as no other CPU is active.
87b4315306SDan Handley 	 */
886355f234SVikram Kanigiri 	plat_arm_interconnect_init();
89b4315306SDan Handley 	/*
906355f234SVikram Kanigiri 	 * Enable Interconnect coherency for the primary CPU's cluster.
91b4315306SDan Handley 	 */
926355f234SVikram Kanigiri 	plat_arm_interconnect_enter_coherency();
93b4315306SDan Handley }
94b4315306SDan Handley 
95b4315306SDan Handley /******************************************************************************
96b4315306SDan Handley  * Perform the very early platform specific architecture setup shared between
97b4315306SDan Handley  * ARM standard platforms. This only does basic initialization. Later
98b4315306SDan Handley  * architectural setup (bl1_arch_setup()) does not do anything platform
99b4315306SDan Handley  * specific.
100b4315306SDan Handley  *****************************************************************************/
101b4315306SDan Handley void arm_bl1_plat_arch_setup(void)
102b4315306SDan Handley {
103943bb7f8SSoby Mathew #if USE_COHERENT_MEM && !ARM_CRYPTOCELL_INTEG
104943bb7f8SSoby Mathew 	/*
105943bb7f8SSoby Mathew 	 * Ensure ARM platforms don't use coherent memory in BL1 unless
106943bb7f8SSoby Mathew 	 * cryptocell integration is enabled.
107943bb7f8SSoby Mathew 	 */
108d323af9eSDaniel Boulby 	assert((BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE) == 0U);
109b4315306SDan Handley #endif
110d323af9eSDaniel Boulby 
111d323af9eSDaniel Boulby 	const mmap_region_t bl_regions[] = {
112d323af9eSDaniel Boulby 		MAP_BL1_TOTAL,
1132ecaafd2SDaniel Boulby 		MAP_BL1_RO,
1141eb735d7SRoberto Vargas #if USE_ROMLIB
1151eb735d7SRoberto Vargas 		ARM_MAP_ROMLIB_CODE,
1161eb735d7SRoberto Vargas 		ARM_MAP_ROMLIB_DATA,
1171eb735d7SRoberto Vargas #endif
118943bb7f8SSoby Mathew #if ARM_CRYPTOCELL_INTEG
119943bb7f8SSoby Mathew 		ARM_MAP_BL_COHERENT_RAM,
120943bb7f8SSoby Mathew #endif
121d323af9eSDaniel Boulby 		{0}
122d323af9eSDaniel Boulby 	};
123d323af9eSDaniel Boulby 
1240916c38dSRoberto Vargas 	setup_page_tables(bl_regions, plat_arm_get_mmap());
125402b3cf8SJulius Werner #ifdef __aarch64__
126b5fa6563SSandrine Bailleux 	enable_mmu_el3(0);
127402b3cf8SJulius Werner #else
128402b3cf8SJulius Werner 	enable_mmu_svc_mon(0);
129402b3cf8SJulius Werner #endif /* __aarch64__ */
1301eb735d7SRoberto Vargas 
1311eb735d7SRoberto Vargas 	arm_setup_romlib();
132b4315306SDan Handley }
133b4315306SDan Handley 
134b4315306SDan Handley void bl1_plat_arch_setup(void)
135b4315306SDan Handley {
136b4315306SDan Handley 	arm_bl1_plat_arch_setup();
137b4315306SDan Handley }
138b4315306SDan Handley 
139b4315306SDan Handley /*
140b4315306SDan Handley  * Perform the platform specific architecture setup shared between
141b4315306SDan Handley  * ARM standard platforms.
142b4315306SDan Handley  */
143b4315306SDan Handley void arm_bl1_platform_setup(void)
144b4315306SDan Handley {
145b4315306SDan Handley 	/* Initialise the IO layer and register platform IO devices */
146b4315306SDan Handley 	plat_arm_io_setup();
1473b5ea741SLouis Mayencourt 
1483b5ea741SLouis Mayencourt 	/* Load fw config */
1493b5ea741SLouis Mayencourt 	fconf_load_config();
1503b5ea741SLouis Mayencourt 
151ba597da7SJohn Tsichritzis #if TRUSTED_BOARD_BOOT
152ba597da7SJohn Tsichritzis 	/* Share the Mbed TLS heap info with other images */
153ba597da7SJohn Tsichritzis 	arm_bl1_set_mbedtls_heap();
154ba597da7SJohn Tsichritzis #endif /* TRUSTED_BOARD_BOOT */
15560e19f57SAntonio Nino Diaz 
1563208edcdSSoby Mathew 	/*
1573208edcdSSoby Mathew 	 * Allow access to the System counter timer module and program
1583208edcdSSoby Mathew 	 * counter frequency for non secure images during FWU
1593208edcdSSoby Mathew 	 */
1606393c787SUsama Arif #ifdef ARM_SYS_TIMCTL_BASE
1613208edcdSSoby Mathew 	arm_configure_sys_timer();
1626393c787SUsama Arif #endif
1638f73663bSUsama Arif #if (ARM_ARCH_MAJOR > 7) || defined(ARMV7_SUPPORTS_GENERIC_TIMER)
1643208edcdSSoby Mathew 	write_cntfrq_el0(plat_get_syscnt_freq2());
1658f73663bSUsama Arif #endif
166b4315306SDan Handley }
167b4315306SDan Handley 
1684c117f6cSSandrine Bailleux void bl1_plat_prepare_exit(entry_point_info_t *ep_info)
1694c117f6cSSandrine Bailleux {
1707b4c1405SJuan Castillo #if !ARM_DISABLE_TRUSTED_WDOG
1717b4c1405SJuan Castillo 	/* Disable watchdog before leaving BL1 */
172b0c97dafSAditya Angadi 	plat_arm_secure_wdt_stop();
1737b4c1405SJuan Castillo #endif
1747b4c1405SJuan Castillo 
1754c117f6cSSandrine Bailleux #ifdef EL3_PAYLOAD_BASE
1764c117f6cSSandrine Bailleux 	/*
1774c117f6cSSandrine Bailleux 	 * Program the EL3 payload's entry point address into the CPUs mailbox
1784c117f6cSSandrine Bailleux 	 * in order to release secondary CPUs from their holding pen and make
1794c117f6cSSandrine Bailleux 	 * them jump there.
1804c117f6cSSandrine Bailleux 	 */
1812a246d2eSDimitris Papastamos 	plat_arm_program_trusted_mailbox(ep_info->pc);
1824c117f6cSSandrine Bailleux 	dsbsy();
1834c117f6cSSandrine Bailleux 	sev();
1844c117f6cSSandrine Bailleux #endif
1854c117f6cSSandrine Bailleux }
1867b56928aSSoby Mathew 
1874da6f6cdSSathees Balya /*
1884da6f6cdSSathees Balya  * On Arm platforms, the FWU process is triggered when the FIP image has
1894da6f6cdSSathees Balya  * been tampered with.
1904da6f6cdSSathees Balya  */
191*d6dcbcadSLouis Mayencourt bool plat_arm_bl1_fwu_needed(void)
1924da6f6cdSSathees Balya {
193*d6dcbcadSLouis Mayencourt 	return !arm_io_is_toc_valid();
1944da6f6cdSSathees Balya }
1954da6f6cdSSathees Balya 
1967b56928aSSoby Mathew /*******************************************************************************
1977b56928aSSoby Mathew  * The following function checks if Firmware update is needed,
1987b56928aSSoby Mathew  * by checking if TOC in FIP image is valid or not.
1997b56928aSSoby Mathew  ******************************************************************************/
2007b56928aSSoby Mathew unsigned int bl1_plat_get_next_image_id(void)
2017b56928aSSoby Mathew {
202*d6dcbcadSLouis Mayencourt 	return plat_arm_bl1_fwu_needed() ? NS_BL1U_IMAGE_ID : BL2_IMAGE_ID;
2037b56928aSSoby Mathew }
204