blob: dd362f0d32c9911074c6bced6329a0744f527e9a [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
Achin Gupta4f6ad662013-10-25 09:08:21 +010031#include <assert.h>
32#include <arch_helpers.h>
James Morrissey40a6f642014-02-10 14:24:36 +000033#include "debug.h"
Jon Medhurstb1eb0932014-02-26 16:27:53 +000034#include <platform.h>
35#include <xlat_tables.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010036
Achin Gupta4f6ad662013-10-25 09:08:21 +010037/*******************************************************************************
38 * This array holds the characteristics of the differences between the three
39 * FVP platforms (Base, A53_A57 & Foundation). It will be populated during cold
40 * boot at each boot stage by the primary before enabling the MMU (to allow cci
41 * configuration) & used thereafter. Each BL will have its own copy to allow
42 * independent operation.
43 ******************************************************************************/
44static unsigned long platform_config[CONFIG_LIMIT];
45
46/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010047 * Enable the MMU assuming that the pagetables have already been created
48 *******************************************************************************/
49void enable_mmu()
50{
51 unsigned long mair, tcr, ttbr, sctlr;
52 unsigned long current_el = read_current_el();
53
54 /* Set the attributes in the right indices of the MAIR */
55 mair = MAIR_ATTR_SET(ATTR_DEVICE, ATTR_DEVICE_INDEX);
56 mair |= MAIR_ATTR_SET(ATTR_IWBWA_OWBWA_NTR,
57 ATTR_IWBWA_OWBWA_NTR_INDEX);
Achin Gupta4f6ad662013-10-25 09:08:21 +010058
59 /*
60 * Set TCR bits as well. Inner & outer WBWA & shareable + T0SZ = 32
61 */
62 tcr = TCR_SH_INNER_SHAREABLE | TCR_RGN_OUTER_WBA |
63 TCR_RGN_INNER_WBA | TCR_T0SZ_4GB;
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +000064
65 /* Set TTBR bits as well */
66 ttbr = (unsigned long) l1_xlation_table;
67
Achin Gupta4f6ad662013-10-25 09:08:21 +010068 if (GET_EL(current_el) == MODE_EL3) {
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +000069 write_mair_el3(mair);
Achin Gupta4f6ad662013-10-25 09:08:21 +010070 tcr |= TCR_EL3_RES1;
Sandrine Bailleux295538b2013-11-15 14:46:44 +000071 /* Invalidate EL3 TLBs */
Achin Gupta4f6ad662013-10-25 09:08:21 +010072 tlbialle3();
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +000073
74 write_tcr_el3(tcr);
75 write_ttbr0_el3(ttbr);
76
77 sctlr = read_sctlr_el3();
78 sctlr |= SCTLR_WXN_BIT | SCTLR_M_BIT | SCTLR_I_BIT;
79 sctlr |= SCTLR_A_BIT | SCTLR_C_BIT;
80 write_sctlr_el3(sctlr);
Achin Gupta4f6ad662013-10-25 09:08:21 +010081 } else {
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +000082
83 write_mair_el1(mair);
Achin Gupta4f6ad662013-10-25 09:08:21 +010084 /* Invalidate EL1 TLBs */
85 tlbivmalle1();
Achin Gupta4f6ad662013-10-25 09:08:21 +010086
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +000087 write_tcr_el1(tcr);
88 write_ttbr0_el1(ttbr);
Achin Gupta4f6ad662013-10-25 09:08:21 +010089
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +000090 sctlr = read_sctlr_el1();
91 sctlr |= SCTLR_WXN_BIT | SCTLR_M_BIT | SCTLR_I_BIT;
92 sctlr |= SCTLR_A_BIT | SCTLR_C_BIT;
93 write_sctlr_el1(sctlr);
94 }
Achin Gupta4f6ad662013-10-25 09:08:21 +010095
96 return;
97}
98
99void disable_mmu(void)
100{
Vikram Kanigirica0aeb72014-03-20 12:23:21 +0000101 unsigned long sctlr;
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +0000102 unsigned long current_el = read_current_el();
Vikram Kanigirica0aeb72014-03-20 12:23:21 +0000103
Vikram Kanigiri78a6e0c2014-03-11 17:41:00 +0000104 if (GET_EL(current_el) == MODE_EL3) {
105 sctlr = read_sctlr_el3();
106 sctlr = sctlr & ~(SCTLR_M_BIT | SCTLR_C_BIT);
107 write_sctlr_el3(sctlr);
108 } else {
109 sctlr = read_sctlr_el1();
110 sctlr = sctlr & ~(SCTLR_M_BIT | SCTLR_C_BIT);
111 write_sctlr_el1(sctlr);
112 }
Achin Gupta4f6ad662013-10-25 09:08:21 +0100113
Achin Gupta4f6ad662013-10-25 09:08:21 +0100114 /* Flush the caches */
115 dcsw_op_all(DCCISW);
116
117 return;
118}
119
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000120/*
121 * Table of regions to map using the MMU.
122 * This doesn't include TZRAM as the 'mem_layout' argument passed to to
123 * configure_mmu() will give the available subset of that,
124 */
Dan Handley43f56792014-04-15 10:38:02 +0100125const mmap_region fvp_mmap[] = {
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000126 { TZROM_BASE, TZROM_SIZE, MT_MEMORY | MT_RO | MT_SECURE },
127 { TZDRAM_BASE, TZDRAM_SIZE, MT_MEMORY | MT_RW | MT_SECURE },
128 { FLASH0_BASE, FLASH0_SIZE, MT_MEMORY | MT_RO | MT_SECURE },
129 { FLASH1_BASE, FLASH1_SIZE, MT_MEMORY | MT_RO | MT_SECURE },
130 { VRAM_BASE, VRAM_SIZE, MT_MEMORY | MT_RW | MT_SECURE },
131 { DEVICE0_BASE, DEVICE0_SIZE, MT_DEVICE | MT_RW | MT_SECURE },
132 { NSRAM_BASE, NSRAM_SIZE, MT_MEMORY | MT_RW | MT_NS },
133 { DEVICE1_BASE, DEVICE1_SIZE, MT_DEVICE | MT_RW | MT_SECURE },
134 /* 2nd GB as device for now...*/
135 { 0x40000000, 0x40000000, MT_DEVICE | MT_RW | MT_SECURE },
136 { DRAM_BASE, DRAM_SIZE, MT_MEMORY | MT_RW | MT_NS },
137 {0}
138};
139
Achin Gupta4f6ad662013-10-25 09:08:21 +0100140/*******************************************************************************
141 * Setup the pagetables as per the platform memory map & initialize the mmu
142 *******************************************************************************/
143void configure_mmu(meminfo *mem_layout,
144 unsigned long ro_start,
145 unsigned long ro_limit,
146 unsigned long coh_start,
147 unsigned long coh_limit)
148{
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000149 mmap_add_region(mem_layout->total_base, mem_layout->total_size,
150 MT_MEMORY | MT_RW | MT_SECURE);
151 mmap_add_region(ro_start, ro_limit - ro_start,
152 MT_MEMORY | MT_RO | MT_SECURE);
153 mmap_add_region(coh_start, coh_limit - coh_start,
154 MT_DEVICE | MT_RW | MT_SECURE);
155
Dan Handley43f56792014-04-15 10:38:02 +0100156 mmap_add(fvp_mmap);
Jon Medhurstb1eb0932014-02-26 16:27:53 +0000157
158 init_xlat_tables();
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000159
Achin Gupta4f6ad662013-10-25 09:08:21 +0100160 enable_mmu();
161 return;
162}
163
164/* Simple routine which returns a configuration variable value */
165unsigned long platform_get_cfgvar(unsigned int var_id)
166{
167 assert(var_id < CONFIG_LIMIT);
168 return platform_config[var_id];
169}
170
171/*******************************************************************************
172 * A single boot loader stack is expected to work on both the Foundation FVP
173 * models and the two flavours of the Base FVP models (AEMv8 & Cortex). The
174 * SYS_ID register provides a mechanism for detecting the differences between
175 * these platforms. This information is stored in a per-BL array to allow the
176 * code to take the correct path.Per BL platform configuration.
177 ******************************************************************************/
178int platform_config_setup(void)
179{
180 unsigned int rev, hbi, bld, arch, sys_id, midr_pn;
181
182 sys_id = mmio_read_32(VE_SYSREGS_BASE + V2M_SYS_ID);
183 rev = (sys_id >> SYS_ID_REV_SHIFT) & SYS_ID_REV_MASK;
184 hbi = (sys_id >> SYS_ID_HBI_SHIFT) & SYS_ID_HBI_MASK;
185 bld = (sys_id >> SYS_ID_BLD_SHIFT) & SYS_ID_BLD_MASK;
186 arch = (sys_id >> SYS_ID_ARCH_SHIFT) & SYS_ID_ARCH_MASK;
187
James Morrissey40a6f642014-02-10 14:24:36 +0000188 if ((rev != REV_FVP) || (arch != ARCH_MODEL))
189 panic();
Achin Gupta4f6ad662013-10-25 09:08:21 +0100190
191 /*
192 * The build field in the SYS_ID tells which variant of the GIC
193 * memory is implemented by the model.
194 */
195 switch (bld) {
196 case BLD_GIC_VE_MMAP:
197 platform_config[CONFIG_GICD_ADDR] = VE_GICD_BASE;
198 platform_config[CONFIG_GICC_ADDR] = VE_GICC_BASE;
199 platform_config[CONFIG_GICH_ADDR] = VE_GICH_BASE;
200 platform_config[CONFIG_GICV_ADDR] = VE_GICV_BASE;
201 break;
202 case BLD_GIC_A53A57_MMAP:
203 platform_config[CONFIG_GICD_ADDR] = BASE_GICD_BASE;
204 platform_config[CONFIG_GICC_ADDR] = BASE_GICC_BASE;
205 platform_config[CONFIG_GICH_ADDR] = BASE_GICH_BASE;
206 platform_config[CONFIG_GICV_ADDR] = BASE_GICV_BASE;
207 break;
208 default:
209 assert(0);
210 }
211
212 /*
213 * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010
214 * for the Foundation FVP.
215 */
216 switch (hbi) {
217 case HBI_FOUNDATION:
218 platform_config[CONFIG_MAX_AFF0] = 4;
219 platform_config[CONFIG_MAX_AFF1] = 1;
220 platform_config[CONFIG_CPU_SETUP] = 0;
221 platform_config[CONFIG_BASE_MMAP] = 0;
Harry Liebel30affd52013-10-30 17:41:48 +0000222 platform_config[CONFIG_HAS_CCI] = 0;
Harry Liebelcef93392014-04-01 19:27:38 +0100223 platform_config[CONFIG_HAS_TZC] = 0;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100224 break;
225 case HBI_FVP_BASE:
226 midr_pn = (read_midr() >> MIDR_PN_SHIFT) & MIDR_PN_MASK;
227 if ((midr_pn == MIDR_PN_A57) || (midr_pn == MIDR_PN_A53))
228 platform_config[CONFIG_CPU_SETUP] = 1;
229 else
230 platform_config[CONFIG_CPU_SETUP] = 0;
231
232 platform_config[CONFIG_MAX_AFF0] = 4;
233 platform_config[CONFIG_MAX_AFF1] = 2;
234 platform_config[CONFIG_BASE_MMAP] = 1;
Harry Liebel30affd52013-10-30 17:41:48 +0000235 platform_config[CONFIG_HAS_CCI] = 1;
Harry Liebelcef93392014-04-01 19:27:38 +0100236 platform_config[CONFIG_HAS_TZC] = 1;
Achin Gupta4f6ad662013-10-25 09:08:21 +0100237 break;
238 default:
239 assert(0);
240 }
241
242 return 0;
243}
244
Ian Spray84687392014-01-02 16:57:12 +0000245unsigned long plat_get_ns_image_entrypoint(void)
246{
Achin Gupta4f6ad662013-10-25 09:08:21 +0100247 return NS_IMAGE_OFFSET;
248}
Sandrine Bailleux3fa98472014-03-31 11:25:18 +0100249
250uint64_t plat_get_syscnt_freq(void)
251{
252 uint64_t counter_base_frequency;
253
254 /* Read the frequency from Frequency modes table */
255 counter_base_frequency = mmio_read_32(SYS_CNTCTL_BASE + CNTFID_OFF);
256
257 /* The first entry of the frequency modes table must not be 0 */
258 assert(counter_base_frequency != 0);
259
260 return counter_base_frequency;
261}