blob: 0bbb940f63bc711d69bf86f0e43f7438a8b2b699 [file] [log] [blame]
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +03001/*
2 * Copyright (C) 2018 Marvell International Ltd.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 * https://spdx.org/licenses
6 */
7
8#include <arch.h>
9#include <assert.h>
10#include <console.h>
11#include <debug.h>
12#include <marvell_def.h>
13#include <marvell_plat_priv.h>
14#include <plat_marvell.h>
15#include <platform.h>
16
17#ifdef USE_CCI
18#include <cci.h>
19#endif
20
21/*
22 * The next 3 constants identify the extents of the code, RO data region and the
23 * limit of the BL31 image. These addresses are used by the MMU setup code and
24 * therefore they must be page-aligned. It is the responsibility of the linker
25 * script to ensure that __RO_START__, __RO_END__ & __BL31_END__ linker symbols
26 * refer to page-aligned addresses.
27 */
28#define BL31_END (unsigned long)(&__BL31_END__)
29
30/*
31 * Placeholder variables for copying the arguments that have been passed to
32 * BL31 from BL2.
33 */
34static entry_point_info_t bl32_image_ep_info;
35static entry_point_info_t bl33_image_ep_info;
36
37/* Weak definitions may be overridden in specific ARM standard platform */
Konstantin Porotchkinacb1dc12018-08-19 10:07:35 +030038#pragma weak bl31_early_platform_setup2
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +030039#pragma weak bl31_platform_setup
40#pragma weak bl31_plat_arch_setup
41#pragma weak bl31_plat_get_next_image_ep_info
42#pragma weak plat_get_syscnt_freq2
43
44/*****************************************************************************
45 * Return a pointer to the 'entry_point_info' structure of the next image for
46 * the security state specified. BL33 corresponds to the non-secure image type
47 * while BL32 corresponds to the secure image type. A NULL pointer is returned
48 * if the image does not exist.
49 *****************************************************************************
50 */
51entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
52{
53 entry_point_info_t *next_image_info;
54
55 assert(sec_state_is_valid(type));
56 next_image_info = (type == NON_SECURE)
57 ? &bl33_image_ep_info : &bl32_image_ep_info;
58
59 return next_image_info;
60}
61
62/*****************************************************************************
63 * Perform any BL31 early platform setup common to ARM standard platforms.
64 * Here is an opportunity to copy parameters passed by the calling EL (S-EL1
65 * in BL2 & S-EL3 in BL1) before they are lost (potentially). This needs to be
66 * done before the MMU is initialized so that the memory layout can be used
67 * while creating page tables. BL2 has flushed this information to memory, so
68 * we are guaranteed to pick up good data.
69 *****************************************************************************
70 */
Antonio Nino Diaz79662212018-09-24 17:15:46 +010071void marvell_bl31_early_platform_setup(void *from_bl2,
Konstantin Porotchkinacb1dc12018-08-19 10:07:35 +030072 uintptr_t soc_fw_config,
73 uintptr_t hw_config,
74 void *plat_params_from_bl2)
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +030075{
76 /* Initialize the console to provide early debug support */
77 console_init(PLAT_MARVELL_BOOT_UART_BASE,
78 PLAT_MARVELL_BOOT_UART_CLK_IN_HZ,
79 MARVELL_CONSOLE_BAUDRATE);
80
81#if RESET_TO_BL31
82 /* There are no parameters from BL2 if BL31 is a reset vector */
83 assert(from_bl2 == NULL);
84 assert(plat_params_from_bl2 == NULL);
85
86#ifdef BL32_BASE
87 /* Populate entry point information for BL32 */
88 SET_PARAM_HEAD(&bl32_image_ep_info,
89 PARAM_EP,
90 VERSION_1,
91 0);
92 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
93 bl32_image_ep_info.pc = BL32_BASE;
94 bl32_image_ep_info.spsr = marvell_get_spsr_for_bl32_entry();
95#endif /* BL32_BASE */
96
97 /* Populate entry point information for BL33 */
98 SET_PARAM_HEAD(&bl33_image_ep_info,
99 PARAM_EP,
100 VERSION_1,
101 0);
102 /*
103 * Tell BL31 where the non-trusted software image
104 * is located and the entry state information
105 */
106 bl33_image_ep_info.pc = plat_get_ns_image_entrypoint();
107 bl33_image_ep_info.spsr = marvell_get_spsr_for_bl33_entry();
108 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
109
110#else
111 /*
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300112 * In debug builds, we pass a special value in 'plat_params_from_bl2'
113 * to verify platform parameters from BL2 to BL31.
114 * In release builds, it's not used.
115 */
116 assert(((unsigned long long)plat_params_from_bl2) ==
117 MARVELL_BL31_PLAT_PARAM_VAL);
118
119 /*
Konstantin Porotchkind973c032018-10-02 17:45:15 +0300120 * Check params passed from BL2 should not be NULL,
121 */
122 bl_params_t *params_from_bl2 = (bl_params_t *)from_bl2;
123 assert(params_from_bl2 != NULL);
124 assert(params_from_bl2->h.type == PARAM_BL_PARAMS);
125 assert(params_from_bl2->h.version >= VERSION_2);
126
127 bl_params_node_t *bl_params = params_from_bl2->head;
128
129 /*
130 * Copy BL33 and BL32 (if present), entry point information.
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300131 * They are stored in Secure RAM, in BL2's address space.
132 */
Konstantin Porotchkind973c032018-10-02 17:45:15 +0300133 while (bl_params != NULL) {
134 if (bl_params->image_id == BL32_IMAGE_ID)
135 bl32_image_ep_info = *bl_params->ep_info;
136
137 if (bl_params->image_id == BL33_IMAGE_ID)
138 bl33_image_ep_info = *bl_params->ep_info;
139
140 bl_params = bl_params->next_params_info;
141 }
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300142#endif
143}
144
Konstantin Porotchkinacb1dc12018-08-19 10:07:35 +0300145void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
146 u_register_t arg2, u_register_t arg3)
147
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300148{
Konstantin Porotchkinacb1dc12018-08-19 10:07:35 +0300149 marvell_bl31_early_platform_setup((void *)arg0, arg1, arg2,
150 (void *)arg3);
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300151
152#ifdef USE_CCI
153 /*
154 * Initialize CCI for this cluster during cold boot.
155 * No need for locks as no other CPU is active.
156 */
157 plat_marvell_interconnect_init();
158
159 /*
160 * Enable CCI coherency for the primary CPU's cluster.
161 * Platform specific PSCI code will enable coherency for other
162 * clusters.
163 */
164 plat_marvell_interconnect_enter_coherency();
165#endif
166}
167
168/*****************************************************************************
169 * Perform any BL31 platform setup common to ARM standard platforms
170 *****************************************************************************
171 */
172void marvell_bl31_platform_setup(void)
173{
174 /* Initialize the GIC driver, cpu and distributor interfaces */
175 plat_marvell_gic_driver_init();
176 plat_marvell_gic_init();
177
178 /* For Armada-8k-plus family, the SoC includes more than
179 * a single AP die, but the default die that boots is AP #0.
180 * For other families there is only one die (#0).
181 * Initialize psci arch from die 0
182 */
183 marvell_psci_arch_init(0);
184}
185
186/*****************************************************************************
187 * Perform any BL31 platform runtime setup prior to BL31 exit common to ARM
188 * standard platforms
189 *****************************************************************************
190 */
191void marvell_bl31_plat_runtime_setup(void)
192{
193 /* Initialize the runtime console */
194 console_init(PLAT_MARVELL_BL31_RUN_UART_BASE,
195 PLAT_MARVELL_BL31_RUN_UART_CLK_IN_HZ,
196 MARVELL_CONSOLE_BAUDRATE);
197}
198
199void bl31_platform_setup(void)
200{
201 marvell_bl31_platform_setup();
202}
203
204void bl31_plat_runtime_setup(void)
205{
206 marvell_bl31_plat_runtime_setup();
207}
208
209/*****************************************************************************
210 * Perform the very early platform specific architectural setup shared between
211 * ARM standard platforms. This only does basic initialization. Later
212 * architectural setup (bl31_arch_setup()) does not do anything platform
213 * specific.
214 *****************************************************************************
215 */
216void marvell_bl31_plat_arch_setup(void)
217{
218 marvell_setup_page_tables(BL31_BASE,
219 BL31_END - BL31_BASE,
220 BL_CODE_BASE,
221 BL_CODE_END,
222 BL_RO_DATA_BASE,
223 BL_RO_DATA_END
224#if USE_COHERENT_MEM
225 , BL_COHERENT_RAM_BASE,
226 BL_COHERENT_RAM_END
227#endif
228 );
229
230#if BL31_CACHE_DISABLE
231 enable_mmu_el3(DISABLE_DCACHE);
232 INFO("Cache is disabled in BL3\n");
233#else
234 enable_mmu_el3(0);
235#endif
236}
237
238void bl31_plat_arch_setup(void)
239{
240 marvell_bl31_plat_arch_setup();
241}
242
243unsigned int plat_get_syscnt_freq2(void)
244{
245 return PLAT_REF_CLK_IN_HZ;
246}