blob: 20c8a7609711930322a2c3577db1042a4e7f3e2e [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{
Antonio Nino Diaz79662212018-09-24 17:15:46 +010076 struct marvell_bl31_params *params_from_bl2 =
77 (struct marvell_bl31_params *)from_bl2;
78
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +030079 /* Initialize the console to provide early debug support */
80 console_init(PLAT_MARVELL_BOOT_UART_BASE,
81 PLAT_MARVELL_BOOT_UART_CLK_IN_HZ,
82 MARVELL_CONSOLE_BAUDRATE);
83
84#if RESET_TO_BL31
85 /* There are no parameters from BL2 if BL31 is a reset vector */
86 assert(from_bl2 == NULL);
87 assert(plat_params_from_bl2 == NULL);
88
89#ifdef BL32_BASE
90 /* Populate entry point information for BL32 */
91 SET_PARAM_HEAD(&bl32_image_ep_info,
92 PARAM_EP,
93 VERSION_1,
94 0);
95 SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
96 bl32_image_ep_info.pc = BL32_BASE;
97 bl32_image_ep_info.spsr = marvell_get_spsr_for_bl32_entry();
98#endif /* BL32_BASE */
99
100 /* Populate entry point information for BL33 */
101 SET_PARAM_HEAD(&bl33_image_ep_info,
102 PARAM_EP,
103 VERSION_1,
104 0);
105 /*
106 * Tell BL31 where the non-trusted software image
107 * is located and the entry state information
108 */
109 bl33_image_ep_info.pc = plat_get_ns_image_entrypoint();
110 bl33_image_ep_info.spsr = marvell_get_spsr_for_bl33_entry();
111 SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
112
113#else
114 /*
115 * Check params passed from BL2 should not be NULL,
116 */
117 assert(from_bl2 != NULL);
118 assert(from_bl2->h.type == PARAM_BL31);
119 assert(from_bl2->h.version >= VERSION_1);
120 /*
121 * In debug builds, we pass a special value in 'plat_params_from_bl2'
122 * to verify platform parameters from BL2 to BL31.
123 * In release builds, it's not used.
124 */
125 assert(((unsigned long long)plat_params_from_bl2) ==
126 MARVELL_BL31_PLAT_PARAM_VAL);
127
128 /*
129 * Copy BL32 (if populated by BL2) and BL33 entry point information.
130 * They are stored in Secure RAM, in BL2's address space.
131 */
Antonio Nino Diaz79662212018-09-24 17:15:46 +0100132 if (params_from_bl2->bl32_ep_info)
133 bl32_image_ep_info = *params_from_bl2->bl32_ep_info;
134 bl33_image_ep_info = *params_from_bl2->bl33_ep_info;
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300135#endif
136}
137
Konstantin Porotchkinacb1dc12018-08-19 10:07:35 +0300138void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
139 u_register_t arg2, u_register_t arg3)
140
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300141{
Konstantin Porotchkinacb1dc12018-08-19 10:07:35 +0300142 marvell_bl31_early_platform_setup((void *)arg0, arg1, arg2,
143 (void *)arg3);
Konstantin Porotchkinf69ec582018-06-07 18:31:14 +0300144
145#ifdef USE_CCI
146 /*
147 * Initialize CCI for this cluster during cold boot.
148 * No need for locks as no other CPU is active.
149 */
150 plat_marvell_interconnect_init();
151
152 /*
153 * Enable CCI coherency for the primary CPU's cluster.
154 * Platform specific PSCI code will enable coherency for other
155 * clusters.
156 */
157 plat_marvell_interconnect_enter_coherency();
158#endif
159}
160
161/*****************************************************************************
162 * Perform any BL31 platform setup common to ARM standard platforms
163 *****************************************************************************
164 */
165void marvell_bl31_platform_setup(void)
166{
167 /* Initialize the GIC driver, cpu and distributor interfaces */
168 plat_marvell_gic_driver_init();
169 plat_marvell_gic_init();
170
171 /* For Armada-8k-plus family, the SoC includes more than
172 * a single AP die, but the default die that boots is AP #0.
173 * For other families there is only one die (#0).
174 * Initialize psci arch from die 0
175 */
176 marvell_psci_arch_init(0);
177}
178
179/*****************************************************************************
180 * Perform any BL31 platform runtime setup prior to BL31 exit common to ARM
181 * standard platforms
182 *****************************************************************************
183 */
184void marvell_bl31_plat_runtime_setup(void)
185{
186 /* Initialize the runtime console */
187 console_init(PLAT_MARVELL_BL31_RUN_UART_BASE,
188 PLAT_MARVELL_BL31_RUN_UART_CLK_IN_HZ,
189 MARVELL_CONSOLE_BAUDRATE);
190}
191
192void bl31_platform_setup(void)
193{
194 marvell_bl31_platform_setup();
195}
196
197void bl31_plat_runtime_setup(void)
198{
199 marvell_bl31_plat_runtime_setup();
200}
201
202/*****************************************************************************
203 * Perform the very early platform specific architectural setup shared between
204 * ARM standard platforms. This only does basic initialization. Later
205 * architectural setup (bl31_arch_setup()) does not do anything platform
206 * specific.
207 *****************************************************************************
208 */
209void marvell_bl31_plat_arch_setup(void)
210{
211 marvell_setup_page_tables(BL31_BASE,
212 BL31_END - BL31_BASE,
213 BL_CODE_BASE,
214 BL_CODE_END,
215 BL_RO_DATA_BASE,
216 BL_RO_DATA_END
217#if USE_COHERENT_MEM
218 , BL_COHERENT_RAM_BASE,
219 BL_COHERENT_RAM_END
220#endif
221 );
222
223#if BL31_CACHE_DISABLE
224 enable_mmu_el3(DISABLE_DCACHE);
225 INFO("Cache is disabled in BL3\n");
226#else
227 enable_mmu_el3(0);
228#endif
229}
230
231void bl31_plat_arch_setup(void)
232{
233 marvell_bl31_plat_arch_setup();
234}
235
236unsigned int plat_get_syscnt_freq2(void)
237{
238 return PLAT_REF_CLK_IN_HZ;
239}