Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 1 | /* |
Dan Handley | e83b0ca | 2014-01-14 18:17:09 +0000 | [diff] [blame] | 2 | * Copyright (c) 2013-2014, ARM Limited and Contributors. All rights reserved. |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 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 | |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 31 | #include <arch.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 32 | #include <arch_helpers.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 33 | #include <assert.h> |
| 34 | #include <bl_common.h> |
Dan Handley | 714a0d2 | 2014-04-09 13:13:04 +0100 | [diff] [blame] | 35 | #include <debug.h> |
Dan Handley | 2bd4ef2 | 2014-04-09 13:14:54 +0100 | [diff] [blame] | 36 | #include <mmio.h> |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 37 | #include <platform.h> |
| 38 | #include <xlat_tables.h> |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 39 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 40 | /******************************************************************************* |
| 41 | * This array holds the characteristics of the differences between the three |
| 42 | * FVP platforms (Base, A53_A57 & Foundation). It will be populated during cold |
| 43 | * boot at each boot stage by the primary before enabling the MMU (to allow cci |
| 44 | * configuration) & used thereafter. Each BL will have its own copy to allow |
| 45 | * independent operation. |
| 46 | ******************************************************************************/ |
| 47 | static unsigned long platform_config[CONFIG_LIMIT]; |
| 48 | |
| 49 | /******************************************************************************* |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame^] | 50 | * Macro generating the code for the function enabling the MMU in the given |
| 51 | * exception level, assuming that the pagetables have already been created. |
| 52 | * |
| 53 | * _el: Exception level at which the function will run |
| 54 | * _tcr_extra: Extra bits to set in the TCR register. This mask will |
| 55 | * be OR'ed with the default TCR value. |
| 56 | * _tlbi_fct: Function to invalidate the TLBs at the current |
| 57 | * exception level |
| 58 | ******************************************************************************/ |
| 59 | #define DEFINE_ENABLE_MMU_EL(_el, _tcr_extra, _tlbi_fct) \ |
| 60 | void enable_mmu_el##_el(void) \ |
| 61 | { \ |
| 62 | uint64_t mair, tcr, ttbr; \ |
| 63 | uint32_t sctlr; \ |
| 64 | \ |
| 65 | assert(IS_IN_EL(_el)); \ |
| 66 | assert((read_sctlr_el##_el() & SCTLR_M_BIT) == 0); \ |
| 67 | \ |
| 68 | /* Set attributes in the right indices of the MAIR */ \ |
| 69 | mair = MAIR_ATTR_SET(ATTR_DEVICE, ATTR_DEVICE_INDEX); \ |
| 70 | mair |= MAIR_ATTR_SET(ATTR_IWBWA_OWBWA_NTR, \ |
| 71 | ATTR_IWBWA_OWBWA_NTR_INDEX); \ |
| 72 | write_mair_el##_el(mair); \ |
| 73 | \ |
| 74 | /* Invalidate TLBs at the current exception level */ \ |
| 75 | _tlbi_fct(); \ |
| 76 | \ |
| 77 | /* Set TCR bits as well. */ \ |
| 78 | /* Inner & outer WBWA & shareable + T0SZ = 32 */ \ |
| 79 | tcr = TCR_SH_INNER_SHAREABLE | TCR_RGN_OUTER_WBA | \ |
| 80 | TCR_RGN_INNER_WBA | TCR_T0SZ_4GB; \ |
| 81 | tcr |= _tcr_extra; \ |
| 82 | write_tcr_el##_el(tcr); \ |
| 83 | \ |
| 84 | /* Set TTBR bits as well */ \ |
| 85 | ttbr = (uint64_t) l1_xlation_table; \ |
| 86 | write_ttbr0_el##_el(ttbr); \ |
| 87 | \ |
| 88 | /* Ensure all translation table writes have drained */ \ |
| 89 | /* into memory, the TLB invalidation is complete, */ \ |
| 90 | /* and translation register writes are committed */ \ |
| 91 | /* before enabling the MMU */ \ |
| 92 | dsb(); \ |
| 93 | isb(); \ |
| 94 | \ |
| 95 | sctlr = read_sctlr_el##_el(); \ |
| 96 | sctlr |= SCTLR_WXN_BIT | SCTLR_M_BIT | SCTLR_I_BIT; \ |
| 97 | sctlr |= SCTLR_A_BIT | SCTLR_C_BIT; \ |
| 98 | write_sctlr_el##_el(sctlr); \ |
| 99 | \ |
| 100 | /* Ensure the MMU enable takes effect immediately */ \ |
| 101 | isb(); \ |
Vikram Kanigiri | 78a6e0c | 2014-03-11 17:41:00 +0000 | [diff] [blame] | 102 | } |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 103 | |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame^] | 104 | /* Define EL1 and EL3 variants of the function enabling the MMU */ |
| 105 | DEFINE_ENABLE_MMU_EL(1, 0, tlbivmalle1) |
| 106 | DEFINE_ENABLE_MMU_EL(3, TCR_EL3_RES1, tlbialle3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 107 | |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 108 | /* |
| 109 | * Table of regions to map using the MMU. |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame^] | 110 | * This doesn't include TZRAM as the 'mem_layout' argument passed to |
| 111 | * configure_mmu_elx() will give the available subset of that, |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 112 | */ |
Dan Handley | e2712bc | 2014-04-10 15:37:22 +0100 | [diff] [blame] | 113 | const mmap_region_t fvp_mmap[] = { |
Jon Medhurst | b1eb093 | 2014-02-26 16:27:53 +0000 | [diff] [blame] | 114 | { TZROM_BASE, TZROM_SIZE, MT_MEMORY | MT_RO | MT_SECURE }, |
| 115 | { TZDRAM_BASE, TZDRAM_SIZE, MT_MEMORY | MT_RW | MT_SECURE }, |
| 116 | { FLASH0_BASE, FLASH0_SIZE, MT_MEMORY | MT_RO | MT_SECURE }, |
| 117 | { FLASH1_BASE, FLASH1_SIZE, MT_MEMORY | MT_RO | MT_SECURE }, |
| 118 | { VRAM_BASE, VRAM_SIZE, MT_MEMORY | MT_RW | MT_SECURE }, |
| 119 | { DEVICE0_BASE, DEVICE0_SIZE, MT_DEVICE | MT_RW | MT_SECURE }, |
| 120 | { NSRAM_BASE, NSRAM_SIZE, MT_MEMORY | MT_RW | MT_NS }, |
| 121 | { DEVICE1_BASE, DEVICE1_SIZE, MT_DEVICE | MT_RW | MT_SECURE }, |
| 122 | /* 2nd GB as device for now...*/ |
| 123 | { 0x40000000, 0x40000000, MT_DEVICE | MT_RW | MT_SECURE }, |
| 124 | { DRAM_BASE, DRAM_SIZE, MT_MEMORY | MT_RW | MT_NS }, |
| 125 | {0} |
| 126 | }; |
| 127 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 128 | /******************************************************************************* |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame^] | 129 | * Macro generating the code for the function setting up the pagetables as per |
| 130 | * the platform memory map & initialize the mmu, for the given exception level |
| 131 | ******************************************************************************/ |
| 132 | #define DEFINE_CONFIGURE_MMU_EL(_el) \ |
| 133 | void configure_mmu_el##_el(meminfo_t *mem_layout, \ |
| 134 | unsigned long ro_start, \ |
| 135 | unsigned long ro_limit, \ |
| 136 | unsigned long coh_start, \ |
| 137 | unsigned long coh_limit) \ |
| 138 | { \ |
| 139 | mmap_add_region(mem_layout->total_base, \ |
| 140 | mem_layout->total_size, \ |
| 141 | MT_MEMORY | MT_RW | MT_SECURE); \ |
| 142 | mmap_add_region(ro_start, ro_limit - ro_start, \ |
| 143 | MT_MEMORY | MT_RO | MT_SECURE); \ |
| 144 | mmap_add_region(coh_start, coh_limit - coh_start, \ |
| 145 | MT_DEVICE | MT_RW | MT_SECURE); \ |
| 146 | mmap_add(fvp_mmap); \ |
| 147 | init_xlat_tables(); \ |
| 148 | \ |
| 149 | enable_mmu_el##_el(); \ |
| 150 | } |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 151 | |
Sandrine Bailleux | 74a62b3 | 2014-05-09 11:35:36 +0100 | [diff] [blame^] | 152 | /* Define EL1 and EL3 variants of the function initialising the MMU */ |
| 153 | DEFINE_CONFIGURE_MMU_EL(1) |
| 154 | DEFINE_CONFIGURE_MMU_EL(3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 155 | |
| 156 | /* Simple routine which returns a configuration variable value */ |
| 157 | unsigned long platform_get_cfgvar(unsigned int var_id) |
| 158 | { |
| 159 | assert(var_id < CONFIG_LIMIT); |
| 160 | return platform_config[var_id]; |
| 161 | } |
| 162 | |
| 163 | /******************************************************************************* |
| 164 | * A single boot loader stack is expected to work on both the Foundation FVP |
| 165 | * models and the two flavours of the Base FVP models (AEMv8 & Cortex). The |
| 166 | * SYS_ID register provides a mechanism for detecting the differences between |
| 167 | * these platforms. This information is stored in a per-BL array to allow the |
| 168 | * code to take the correct path.Per BL platform configuration. |
| 169 | ******************************************************************************/ |
| 170 | int platform_config_setup(void) |
| 171 | { |
| 172 | unsigned int rev, hbi, bld, arch, sys_id, midr_pn; |
| 173 | |
| 174 | sys_id = mmio_read_32(VE_SYSREGS_BASE + V2M_SYS_ID); |
| 175 | rev = (sys_id >> SYS_ID_REV_SHIFT) & SYS_ID_REV_MASK; |
| 176 | hbi = (sys_id >> SYS_ID_HBI_SHIFT) & SYS_ID_HBI_MASK; |
| 177 | bld = (sys_id >> SYS_ID_BLD_SHIFT) & SYS_ID_BLD_MASK; |
| 178 | arch = (sys_id >> SYS_ID_ARCH_SHIFT) & SYS_ID_ARCH_MASK; |
| 179 | |
James Morrissey | 40a6f64 | 2014-02-10 14:24:36 +0000 | [diff] [blame] | 180 | if ((rev != REV_FVP) || (arch != ARCH_MODEL)) |
| 181 | panic(); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 182 | |
| 183 | /* |
| 184 | * The build field in the SYS_ID tells which variant of the GIC |
| 185 | * memory is implemented by the model. |
| 186 | */ |
| 187 | switch (bld) { |
| 188 | case BLD_GIC_VE_MMAP: |
| 189 | platform_config[CONFIG_GICD_ADDR] = VE_GICD_BASE; |
| 190 | platform_config[CONFIG_GICC_ADDR] = VE_GICC_BASE; |
| 191 | platform_config[CONFIG_GICH_ADDR] = VE_GICH_BASE; |
| 192 | platform_config[CONFIG_GICV_ADDR] = VE_GICV_BASE; |
| 193 | break; |
| 194 | case BLD_GIC_A53A57_MMAP: |
| 195 | platform_config[CONFIG_GICD_ADDR] = BASE_GICD_BASE; |
| 196 | platform_config[CONFIG_GICC_ADDR] = BASE_GICC_BASE; |
| 197 | platform_config[CONFIG_GICH_ADDR] = BASE_GICH_BASE; |
| 198 | platform_config[CONFIG_GICV_ADDR] = BASE_GICV_BASE; |
| 199 | break; |
| 200 | default: |
| 201 | assert(0); |
| 202 | } |
| 203 | |
| 204 | /* |
| 205 | * The hbi field in the SYS_ID is 0x020 for the Base FVP & 0x010 |
| 206 | * for the Foundation FVP. |
| 207 | */ |
| 208 | switch (hbi) { |
| 209 | case HBI_FOUNDATION: |
| 210 | platform_config[CONFIG_MAX_AFF0] = 4; |
| 211 | platform_config[CONFIG_MAX_AFF1] = 1; |
| 212 | platform_config[CONFIG_CPU_SETUP] = 0; |
| 213 | platform_config[CONFIG_BASE_MMAP] = 0; |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 214 | platform_config[CONFIG_HAS_CCI] = 0; |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 215 | platform_config[CONFIG_HAS_TZC] = 0; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 216 | break; |
| 217 | case HBI_FVP_BASE: |
| 218 | midr_pn = (read_midr() >> MIDR_PN_SHIFT) & MIDR_PN_MASK; |
| 219 | if ((midr_pn == MIDR_PN_A57) || (midr_pn == MIDR_PN_A53)) |
| 220 | platform_config[CONFIG_CPU_SETUP] = 1; |
| 221 | else |
| 222 | platform_config[CONFIG_CPU_SETUP] = 0; |
| 223 | |
| 224 | platform_config[CONFIG_MAX_AFF0] = 4; |
| 225 | platform_config[CONFIG_MAX_AFF1] = 2; |
| 226 | platform_config[CONFIG_BASE_MMAP] = 1; |
Harry Liebel | 30affd5 | 2013-10-30 17:41:48 +0000 | [diff] [blame] | 227 | platform_config[CONFIG_HAS_CCI] = 1; |
Harry Liebel | cef9339 | 2014-04-01 19:27:38 +0100 | [diff] [blame] | 228 | platform_config[CONFIG_HAS_TZC] = 1; |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 229 | break; |
| 230 | default: |
| 231 | assert(0); |
| 232 | } |
| 233 | |
| 234 | return 0; |
| 235 | } |
| 236 | |
Ian Spray | 8468739 | 2014-01-02 16:57:12 +0000 | [diff] [blame] | 237 | unsigned long plat_get_ns_image_entrypoint(void) |
| 238 | { |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 239 | return NS_IMAGE_OFFSET; |
| 240 | } |
Sandrine Bailleux | 3fa9847 | 2014-03-31 11:25:18 +0100 | [diff] [blame] | 241 | |
| 242 | uint64_t plat_get_syscnt_freq(void) |
| 243 | { |
| 244 | uint64_t counter_base_frequency; |
| 245 | |
| 246 | /* Read the frequency from Frequency modes table */ |
| 247 | counter_base_frequency = mmio_read_32(SYS_CNTCTL_BASE + CNTFID_OFF); |
| 248 | |
| 249 | /* The first entry of the frequency modes table must not be 0 */ |
| 250 | assert(counter_base_frequency != 0); |
| 251 | |
| 252 | return counter_base_frequency; |
| 253 | } |