xref: /rk3399_ARM-atf/plat/arm/common/arm_bl1_setup.c (revision 51faada71a219a8b94cd8d8e423f0f22e9da4d8f)
1 /*
2  * Copyright (c) 2015-2017, ARM Limited and Contributors. All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  * Redistributions of source code must retain the above copyright notice, this
8  * list of conditions and the following disclaimer.
9  *
10  * Redistributions in binary form must reproduce the above copyright notice,
11  * this list of conditions and the following disclaimer in the documentation
12  * and/or other materials provided with the distribution.
13  *
14  * Neither the name of ARM nor the names of its contributors may be used
15  * to endorse or promote products derived from this software without specific
16  * prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 #include <arch.h>
32 #include <arm_def.h>
33 #include <bl_common.h>
34 #include <console.h>
35 #include <platform_def.h>
36 #include <plat_arm.h>
37 #include <sp805.h>
38 #include <utils.h>
39 #include <xlat_tables_v2.h>
40 #include "../../../bl1/bl1_private.h"
41 
42 /* Weak definitions may be overridden in specific ARM standard platform */
43 #pragma weak bl1_early_platform_setup
44 #pragma weak bl1_plat_arch_setup
45 #pragma weak bl1_platform_setup
46 #pragma weak bl1_plat_sec_mem_layout
47 
48 
49 /* Data structure which holds the extents of the trusted SRAM for BL1*/
50 static meminfo_t bl1_tzram_layout;
51 
52 meminfo_t *bl1_plat_sec_mem_layout(void)
53 {
54 	return &bl1_tzram_layout;
55 }
56 
57 /*******************************************************************************
58  * BL1 specific platform actions shared between ARM standard platforms.
59  ******************************************************************************/
60 void arm_bl1_early_platform_setup(void)
61 {
62 
63 #if !ARM_DISABLE_TRUSTED_WDOG
64 	/* Enable watchdog */
65 	sp805_start(ARM_SP805_TWDG_BASE, ARM_TWDG_LOAD_VAL);
66 #endif
67 
68 	/* Initialize the console to provide early debug support */
69 	console_init(PLAT_ARM_BOOT_UART_BASE, PLAT_ARM_BOOT_UART_CLK_IN_HZ,
70 			ARM_CONSOLE_BAUDRATE);
71 
72 	/* Allow BL1 to see the whole Trusted RAM */
73 	bl1_tzram_layout.total_base = ARM_BL_RAM_BASE;
74 	bl1_tzram_layout.total_size = ARM_BL_RAM_SIZE;
75 
76 #if !LOAD_IMAGE_V2
77 	/* Calculate how much RAM BL1 is using and how much remains free */
78 	bl1_tzram_layout.free_base = ARM_BL_RAM_BASE;
79 	bl1_tzram_layout.free_size = ARM_BL_RAM_SIZE;
80 	reserve_mem(&bl1_tzram_layout.free_base,
81 		    &bl1_tzram_layout.free_size,
82 		    BL1_RAM_BASE,
83 		    BL1_RAM_LIMIT - BL1_RAM_BASE);
84 #endif /* LOAD_IMAGE_V2 */
85 }
86 
87 void bl1_early_platform_setup(void)
88 {
89 	arm_bl1_early_platform_setup();
90 
91 	/*
92 	 * Initialize Interconnect for this cluster during cold boot.
93 	 * No need for locks as no other CPU is active.
94 	 */
95 	plat_arm_interconnect_init();
96 	/*
97 	 * Enable Interconnect coherency for the primary CPU's cluster.
98 	 */
99 	plat_arm_interconnect_enter_coherency();
100 }
101 
102 /******************************************************************************
103  * Perform the very early platform specific architecture setup shared between
104  * ARM standard platforms. This only does basic initialization. Later
105  * architectural setup (bl1_arch_setup()) does not do anything platform
106  * specific.
107  *****************************************************************************/
108 void arm_bl1_plat_arch_setup(void)
109 {
110 	arm_setup_page_tables(bl1_tzram_layout.total_base,
111 			      bl1_tzram_layout.total_size,
112 			      BL_CODE_BASE,
113 			      BL1_CODE_END,
114 			      BL1_RO_DATA_BASE,
115 			      BL1_RO_DATA_END
116 #if USE_COHERENT_MEM
117 			      , BL_COHERENT_RAM_BASE,
118 			      BL_COHERENT_RAM_END
119 #endif
120 			     );
121 #ifdef AARCH32
122 	enable_mmu_secure(0);
123 #else
124 	enable_mmu_el3(0);
125 #endif /* AARCH32 */
126 }
127 
128 void bl1_plat_arch_setup(void)
129 {
130 	arm_bl1_plat_arch_setup();
131 }
132 
133 /*
134  * Perform the platform specific architecture setup shared between
135  * ARM standard platforms.
136  */
137 void arm_bl1_platform_setup(void)
138 {
139 	/* Initialise the IO layer and register platform IO devices */
140 	plat_arm_io_setup();
141 }
142 
143 void bl1_platform_setup(void)
144 {
145 	arm_bl1_platform_setup();
146 }
147 
148 void bl1_plat_prepare_exit(entry_point_info_t *ep_info)
149 {
150 #if !ARM_DISABLE_TRUSTED_WDOG
151 	/* Disable watchdog before leaving BL1 */
152 	sp805_stop(ARM_SP805_TWDG_BASE);
153 #endif
154 
155 #ifdef EL3_PAYLOAD_BASE
156 	/*
157 	 * Program the EL3 payload's entry point address into the CPUs mailbox
158 	 * in order to release secondary CPUs from their holding pen and make
159 	 * them jump there.
160 	 */
161 	arm_program_trusted_mailbox(ep_info->pc);
162 	dsbsy();
163 	sev();
164 #endif
165 }
166