blob: acfb75287ee89238031067894790da0c5c8640be [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Dan Handleye83b0ca2014-01-14 18:17:09 +00002 * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
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
Dan Handley2bd4ef22014-04-09 13:14:54 +010031#include <arch.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010032#include <arch_helpers.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010033#include <assert.h>
34#include <bl_common.h>
Vikram Kanigiri96377452014-04-24 11:02:16 +010035#include <cci400.h>
Dan Handley714a0d22014-04-09 13:13:04 +010036#include <debug.h>
Dan Handley2bd4ef22014-04-09 13:14:54 +010037#include <mmio.h>
Jon Medhurstb1eb0932014-02-26 16:27:53 +000038#include <platform.h>
39#include <xlat_tables.h>
Dan Handleyed6ff952014-05-14 17:44:19 +010040#include "../fvp_def.h"
Achin Gupta4f6ad662013-10-25 09:08:21 +010041
Achin Gupta4f6ad662013-10-25 09:08:21 +010042/*******************************************************************************
43 * This array holds the characteristics of the differences between the three
44 * FVP platforms (Base, A53_A57 & Foundation). It will be populated during cold
45 * boot at each boot stage by the primary before enabling the MMU (to allow cci
46 * configuration) & used thereafter. Each BL will have its own copy to allow
47 * independent operation.
48 ******************************************************************************/
Dan Handleyea451572014-05-15 14:53:30 +010049static unsigned long fvp_config[CONFIG_LIMIT];
Achin Gupta4f6ad662013-10-25 09:08:21 +010050
51/*******************************************************************************
Sandrine Bailleux74a62b32014-05-09 11:35:36 +010052 * Macro generating the code for the function enabling the MMU in the given
53 * exception level, assuming that the pagetables have already been created.
54 *
55 * _el: Exception level at which the function will run
56 * _tcr_extra: Extra bits to set in the TCR register. This mask will
57 * be OR'ed with the default TCR value.
58 * _tlbi_fct: Function to invalidate the TLBs at the current
59 * exception level
60 ******************************************************************************/
61#define DEFINE_ENABLE_MMU_EL(_el, _tcr_extra, _tlbi_fct) \
62 void enable_mmu_el##_el(void) \
63 { \
64 uint64_t mair, tcr, ttbr; \
65 uint32_t sctlr; \
66 \
67 assert(IS_IN_EL(_el)); \
68 assert((read_sctlr_el##_el() & SCTLR_M_BIT) == 0); \
69 \
70 /* Set attributes in the right indices of the MAIR */ \
71 mair = MAIR_ATTR_SET(ATTR_DEVICE, ATTR_DEVICE_INDEX); \
72 mair |= MAIR_ATTR_SET(ATTR_IWBWA_OWBWA_NTR, \
73 ATTR_IWBWA_OWBWA_NTR_INDEX); \
74 write_mair_el##_el(mair); \
75 \
76 /* Invalidate TLBs at the current exception level */ \
77 _tlbi_fct(); \
78 \
79 /* Set TCR bits as well. */ \
80 /* Inner & outer WBWA & shareable + T0SZ = 32 */ \
81 tcr = TCR_SH_INNER_SHAREABLE | TCR_RGN_OUTER_WBA | \
82 TCR_RGN_INNER_WBA | TCR_T0SZ_4GB; \
83 tcr |= _tcr_extra; \
84 write_tcr_el##_el(tcr); \
85 \
86 /* Set TTBR bits as well */ \
87 ttbr = (uint64_t) l1_xlation_table; \
88 write_ttbr0_el##_el(ttbr); \
89 \
90 /* Ensure all translation table writes have drained */ \
91 /* into memory, the TLB invalidation is complete, */ \
92 /* and translation register writes are committed */ \
93 /* before enabling the MMU */ \
94 dsb(); \
95 isb(); \
96 \
97 sctlr = read_sctlr_el##_el(); \
98 sctlr |= SCTLR_WXN_BIT | SCTLR_M_BIT | SCTLR_I_BIT; \
99 sctlr |= SCTLR_A_BIT | SCTLR_C_BIT; \
100 write_sctlr_el##_el(sctlr); \
101 \
102 /* Ensure the MMU enable takes effect immediately */ \
103 isb(); \
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +0000104 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100105
Sandrine Bailleux74a62b32014-05-09 11:35:36 +0100106/* Define EL1 and EL3 variants of the function enabling the MMU */
107DEFINE_ENABLE_MMU_EL(1, 0, tlbivmalle1)
108DEFINE_ENABLE_MMU_EL(3, TCR_EL3_RES1, tlbialle3)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100109
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000110/*
111 * Table of regions to map using the MMU.
Sandrine Bailleux74a62b32014-05-09 11:35:36 +0100112 * This doesn't include TZRAM as the 'mem_layout' argument passed to
113 * configure_mmu_elx() will give the available subset of that,
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000114 */
Dan Handleye2712bc2014-04-10 15:37:22 +0100115const mmap_region_t fvp_mmap[] = {
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000116 { TZROM_BASE, TZROM_SIZE, MT_MEMORY | MT_RO | MT_SECURE },
117 { TZDRAM_BASE, TZDRAM_SIZE, MT_MEMORY | MT_RW | MT_SECURE },
118 { FLASH0_BASE, FLASH0_SIZE, MT_MEMORY | MT_RO | MT_SECURE },
119 { FLASH1_BASE, FLASH1_SIZE, MT_MEMORY | MT_RO | MT_SECURE },
120 { VRAM_BASE, VRAM_SIZE, MT_MEMORY | MT_RW | MT_SECURE },
121 { DEVICE0_BASE, DEVICE0_SIZE, MT_DEVICE | MT_RW | MT_SECURE },
122 { NSRAM_BASE, NSRAM_SIZE, MT_MEMORY | MT_RW | MT_NS },
123 { DEVICE1_BASE, DEVICE1_SIZE, MT_DEVICE | MT_RW | MT_SECURE },
124 /* 2nd GB as device for now...*/
125 { 0x40000000, 0x40000000, MT_DEVICE | MT_RW | MT_SECURE },
Juan Castillo7055ca42014-05-16 15:33:15 +0100126 { DRAM1_BASE, DRAM1_SIZE, MT_MEMORY | MT_RW | MT_NS },
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000127 {0}
128};
129
Achin Gupta4f6ad662013-10-25 09:08:21 +0100130/*******************************************************************************
Sandrine Bailleux74a62b32014-05-09 11:35:36 +0100131 * Macro generating the code for the function setting up the pagetables as per
132 * the platform memory map & initialize the mmu, for the given exception level
133 ******************************************************************************/
134#define DEFINE_CONFIGURE_MMU_EL(_el) \
Dan Handleyea451572014-05-15 14:53:30 +0100135 void fvp_configure_mmu_el##_el(unsigned long total_base, \
Vikram Kanigirid8c9d262014-05-16 18:48:12 +0100136 unsigned long total_size, \
Sandrine Bailleux74a62b32014-05-09 11:35:36 +0100137 unsigned long ro_start, \
138 unsigned long ro_limit, \
139 unsigned long coh_start, \
140 unsigned long coh_limit) \
141 { \
Vikram Kanigirid8c9d262014-05-16 18:48:12 +0100142 mmap_add_region(total_base, \
143 total_size, \
Sandrine Bailleux74a62b32014-05-09 11:35:36 +0100144 MT_MEMORY | MT_RW | MT_SECURE); \
145 mmap_add_region(ro_start, ro_limit - ro_start, \
146 MT_MEMORY | MT_RO | MT_SECURE); \
147 mmap_add_region(coh_start, coh_limit - coh_start, \
148 MT_DEVICE | MT_RW | MT_SECURE); \
149 mmap_add(fvp_mmap); \
150 init_xlat_tables(); \
151 \
152 enable_mmu_el##_el(); \
153 }
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000154
Sandrine Bailleux74a62b32014-05-09 11:35:36 +0100155/* Define EL1 and EL3 variants of the function initialising the MMU */
156DEFINE_CONFIGURE_MMU_EL(1)
157DEFINE_CONFIGURE_MMU_EL(3)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100158
159/* Simple routine which returns a configuration variable value */
Dan Handleyea451572014-05-15 14:53:30 +0100160unsigned long fvp_get_cfgvar(unsigned int var_id)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100161{
162 assert(var_id < CONFIG_LIMIT);
Dan Handleyea451572014-05-15 14:53:30 +0100163 return fvp_config[var_id];
Achin Gupta4f6ad662013-10-25 09:08:21 +0100164}
165
166/*******************************************************************************
167 * A single boot loader stack is expected to work on both the Foundation FVP
168 * models and the two flavours of the Base FVP models (AEMv8 & Cortex). The
169 * SYS_ID register provides a mechanism for detecting the differences between
170 * these platforms. This information is stored in a per-BL array to allow the
171 * code to take the correct path.Per BL platform configuration.
172 ******************************************************************************/
Dan Handleyea451572014-05-15 14:53:30 +0100173int fvp_config_setup(void)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100174{
175 unsigned int rev, hbi, bld, arch, sys_id, midr_pn;
176
177 sys_id = mmio_read_32(VE_SYSREGS_BASE + V2M_SYS_ID);
178 rev = (sys_id >> SYS_ID_REV_SHIFT) & SYS_ID_REV_MASK;
179 hbi = (sys_id >> SYS_ID_HBI_SHIFT) & SYS_ID_HBI_MASK;
180 bld = (sys_id >> SYS_ID_BLD_SHIFT) & SYS_ID_BLD_MASK;
181 arch = (sys_id >> SYS_ID_ARCH_SHIFT) & SYS_ID_ARCH_MASK;
182
James Morrissey40a6f642014-02-10 14:24:36 +0000183 if ((rev != REV_FVP) || (arch != ARCH_MODEL))
184 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100185
186 /*
187 * The build field in the SYS_ID tells which variant of the GIC
188 * memory is implemented by the model.
189 */
190 switch (bld) {
191 case BLD_GIC_VE_MMAP:
Dan Handleyea451572014-05-15 14:53:30 +0100192 fvp_config[CONFIG_GICD_ADDR] = VE_GICD_BASE;
193 fvp_config[CONFIG_GICC_ADDR] = VE_GICC_BASE;
194 fvp_config[CONFIG_GICH_ADDR] = VE_GICH_BASE;
195 fvp_config[CONFIG_GICV_ADDR] = VE_GICV_BASE;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100196 break;
197 case BLD_GIC_A53A57_MMAP:
Dan Handleyea451572014-05-15 14:53:30 +0100198 fvp_config[CONFIG_GICD_ADDR] = BASE_GICD_BASE;
199 fvp_config[CONFIG_GICC_ADDR] = BASE_GICC_BASE;
200 fvp_config[CONFIG_GICH_ADDR] = BASE_GICH_BASE;
201 fvp_config[CONFIG_GICV_ADDR] = BASE_GICV_BASE;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100202 break;
203 default:
204 assert(0);
205 }
206
207 /*
208 * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010
209 * for the Foundation FVP.
210 */
211 switch (hbi) {
212 case HBI_FOUNDATION:
Dan Handleyea451572014-05-15 14:53:30 +0100213 fvp_config[CONFIG_MAX_AFF0] = 4;
214 fvp_config[CONFIG_MAX_AFF1] = 1;
215 fvp_config[CONFIG_CPU_SETUP] = 0;
216 fvp_config[CONFIG_BASE_MMAP] = 0;
217 fvp_config[CONFIG_HAS_CCI] = 0;
218 fvp_config[CONFIG_HAS_TZC] = 0;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100219 break;
220 case HBI_FVP_BASE:
221 midr_pn = (read_midr() >> MIDR_PN_SHIFT) & MIDR_PN_MASK;
222 if ((midr_pn == MIDR_PN_A57) || (midr_pn == MIDR_PN_A53))
Dan Handleyea451572014-05-15 14:53:30 +0100223 fvp_config[CONFIG_CPU_SETUP] = 1;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100224 else
Dan Handleyea451572014-05-15 14:53:30 +0100225 fvp_config[CONFIG_CPU_SETUP] = 0;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100226
Dan Handleyea451572014-05-15 14:53:30 +0100227 fvp_config[CONFIG_MAX_AFF0] = 4;
228 fvp_config[CONFIG_MAX_AFF1] = 2;
229 fvp_config[CONFIG_BASE_MMAP] = 1;
230 fvp_config[CONFIG_HAS_CCI] = 1;
231 fvp_config[CONFIG_HAS_TZC] = 1;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100232 break;
233 default:
234 assert(0);
235 }
236
237 return 0;
238}
239
Ian Spray84687392014-01-02 16:57:12 +0000240unsigned long plat_get_ns_image_entrypoint(void)
241{
Achin Gupta4f6ad662013-10-25 09:08:21 +0100242 return NS_IMAGE_OFFSET;
243}
Sandrine Bailleux3fa98472014-03-31 11:25:18 +0100244
245uint64_t plat_get_syscnt_freq(void)
246{
247 uint64_t counter_base_frequency;
248
249 /* Read the frequency from Frequency modes table */
250 counter_base_frequency = mmio_read_32(SYS_CNTCTL_BASE + CNTFID_OFF);
251
252 /* The first entry of the frequency modes table must not be 0 */
253 assert(counter_base_frequency != 0);
254
255 return counter_base_frequency;
256}
Vikram Kanigiri96377452014-04-24 11:02:16 +0100257
258void fvp_cci_setup(void)
259{
260 unsigned long cci_setup;
261
262 /*
263 * Enable CCI-400 for this cluster. No need
264 * for locks as no other cpu is active at the
265 * moment
266 */
Dan Handleyea451572014-05-15 14:53:30 +0100267 cci_setup = fvp_get_cfgvar(CONFIG_HAS_CCI);
Vikram Kanigiri96377452014-04-24 11:02:16 +0100268 if (cci_setup)
269 cci_enable_coherency(read_mpidr());
270}
271
272
273/*******************************************************************************
274 * Set SPSR and secure state for BL32 image
275 ******************************************************************************/
276void fvp_set_bl32_ep_info(entry_point_info_t *bl32_ep_info)
277{
278 SET_SECURITY_STATE(bl32_ep_info->h.attr, SECURE);
279 /*
280 * The Secure Payload Dispatcher service is responsible for
281 * setting the SPSR prior to entry into the BL32 image.
282 */
283 bl32_ep_info->spsr = 0;
284}
285
286/*******************************************************************************
287 * Set SPSR and secure state for BL33 image
288 ******************************************************************************/
289void fvp_set_bl33_ep_info(entry_point_info_t *bl33_ep_info)
290{
291 unsigned long el_status;
292 unsigned int mode;
293
294 /* Figure out what mode we enter the non-secure world in */
295 el_status = read_id_aa64pfr0_el1() >> ID_AA64PFR0_EL2_SHIFT;
296 el_status &= ID_AA64PFR0_ELX_MASK;
297
298 if (el_status)
299 mode = MODE_EL2;
300 else
301 mode = MODE_EL1;
302
303 /*
304 * TODO: Consider the possibility of specifying the SPSR in
305 * the FIP ToC and allowing the platform to have a say as
306 * well.
307 */
308 bl33_ep_info->spsr = SPSR_64(mode, MODE_SP_ELX, DISABLE_ALL_EXCEPTIONS);
309 SET_SECURITY_STATE(bl33_ep_info->h.attr, NON_SECURE);
310}