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 | |
| 31 | #ifndef __ARCH_H__ |
| 32 | #define __ARCH_H__ |
| 33 | |
| 34 | #include <bl_common.h> |
| 35 | |
| 36 | /******************************************************************************* |
| 37 | * MIDR bit definitions |
| 38 | ******************************************************************************/ |
| 39 | #define MIDR_PN_MASK 0xfff |
| 40 | #define MIDR_PN_SHIFT 0x4 |
| 41 | #define MIDR_PN_AEM 0xd0f |
| 42 | #define MIDR_PN_A57 0xd07 |
| 43 | #define MIDR_PN_A53 0xd03 |
| 44 | |
| 45 | /******************************************************************************* |
| 46 | * MPIDR macros |
| 47 | ******************************************************************************/ |
| 48 | #define MPIDR_CPU_MASK MPIDR_AFFLVL_MASK |
| 49 | #define MPIDR_CLUSTER_MASK MPIDR_AFFLVL_MASK << MPIDR_AFFINITY_BITS |
| 50 | #define MPIDR_AFFINITY_BITS 8 |
| 51 | #define MPIDR_AFFLVL_MASK 0xff |
| 52 | #define MPIDR_AFF0_SHIFT 0 |
| 53 | #define MPIDR_AFF1_SHIFT 8 |
| 54 | #define MPIDR_AFF2_SHIFT 16 |
| 55 | #define MPIDR_AFF3_SHIFT 32 |
| 56 | #define MPIDR_AFFINITY_MASK 0xff00ffffff |
| 57 | #define MPIDR_AFFLVL_SHIFT 3 |
| 58 | #define MPIDR_AFFLVL0 0 |
| 59 | #define MPIDR_AFFLVL1 1 |
| 60 | #define MPIDR_AFFLVL2 2 |
| 61 | #define MPIDR_AFFLVL3 3 |
| 62 | /* TODO: Support only the first 3 affinity levels for now */ |
| 63 | #define MPIDR_MAX_AFFLVL 2 |
| 64 | |
| 65 | /* Constant to highlight the assumption that MPIDR allocation starts from 0 */ |
| 66 | #define FIRST_MPIDR 0 |
| 67 | |
| 68 | /******************************************************************************* |
| 69 | * Implementation defined sysreg encodings |
| 70 | ******************************************************************************/ |
| 71 | #define CPUECTLR_EL1 S3_1_C15_C2_1 |
| 72 | |
| 73 | /******************************************************************************* |
Achin Gupta | c2b43af | 2013-10-31 11:27:43 +0000 | [diff] [blame] | 74 | * Generic timer memory mapped registers & offsets |
| 75 | ******************************************************************************/ |
| 76 | #define CNTCR_OFF 0x000 |
| 77 | #define CNTFID_OFF 0x020 |
| 78 | |
| 79 | #define CNTCR_EN (1 << 0) |
| 80 | #define CNTCR_HDBG (1 << 1) |
| 81 | #define CNTCR_FCREQ(x) (1 << (8 + (x))) |
| 82 | |
| 83 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 84 | * System register bit definitions |
| 85 | ******************************************************************************/ |
| 86 | /* CLIDR definitions */ |
| 87 | #define LOUIS_SHIFT 21 |
| 88 | #define LOC_SHIFT 24 |
| 89 | #define CLIDR_FIELD_WIDTH 3 |
| 90 | |
| 91 | /* CSSELR definitions */ |
| 92 | #define LEVEL_SHIFT 1 |
| 93 | |
| 94 | /* D$ set/way op type defines */ |
| 95 | #define DCISW 0x0 |
| 96 | #define DCCISW 0x1 |
| 97 | #define DCCSW 0x2 |
| 98 | |
| 99 | /* ID_AA64PFR0_EL1 definitions */ |
| 100 | #define ID_AA64PFR0_EL0_SHIFT 0 |
| 101 | #define ID_AA64PFR0_EL1_SHIFT 4 |
| 102 | #define ID_AA64PFR0_EL2_SHIFT 8 |
| 103 | #define ID_AA64PFR0_EL3_SHIFT 12 |
| 104 | #define ID_AA64PFR0_ELX_MASK 0xf |
| 105 | |
| 106 | /* ID_PFR1_EL1 definitions */ |
| 107 | #define ID_PFR1_VIRTEXT_SHIFT 12 |
| 108 | #define ID_PFR1_VIRTEXT_MASK 0xf |
| 109 | #define GET_VIRT_EXT(id) ((id >> ID_PFR1_VIRTEXT_SHIFT) \ |
| 110 | & ID_PFR1_VIRTEXT_MASK) |
| 111 | |
| 112 | /* SCTLR definitions */ |
| 113 | #define SCTLR_EL2_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \ |
| 114 | (1 << 18) | (1 << 16) | (1 << 11) | (1 << 5) | \ |
| 115 | (1 << 4)) |
| 116 | |
| 117 | #define SCTLR_EL1_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \ |
| 118 | (1 << 11)) |
| 119 | #define SCTLR_M_BIT (1 << 0) |
| 120 | #define SCTLR_A_BIT (1 << 1) |
| 121 | #define SCTLR_C_BIT (1 << 2) |
| 122 | #define SCTLR_SA_BIT (1 << 3) |
| 123 | #define SCTLR_B_BIT (1 << 7) |
| 124 | #define SCTLR_Z_BIT (1 << 11) |
| 125 | #define SCTLR_I_BIT (1 << 12) |
| 126 | #define SCTLR_WXN_BIT (1 << 19) |
| 127 | #define SCTLR_EXCEPTION_BITS (0x3 << 6) |
| 128 | #define SCTLR_EE_BIT (1 << 25) |
| 129 | |
| 130 | /* CPUECTLR definitions */ |
| 131 | #define CPUECTLR_SMP_BIT (1 << 6) |
| 132 | |
| 133 | /* CPACR_El1 definitions */ |
| 134 | #define CPACR_EL1_FPEN(x) (x << 20) |
| 135 | #define CPACR_EL1_FP_TRAP_EL0 0x1 |
| 136 | #define CPACR_EL1_FP_TRAP_ALL 0x2 |
| 137 | #define CPACR_EL1_FP_TRAP_NONE 0x3 |
| 138 | |
| 139 | /* SCR definitions */ |
| 140 | #define SCR_RES1_BITS ((1 << 4) | (1 << 5)) |
| 141 | #define SCR_TWE_BIT (1 << 13) |
| 142 | #define SCR_TWI_BIT (1 << 12) |
| 143 | #define SCR_ST_BIT (1 << 11) |
| 144 | #define SCR_RW_BIT (1 << 10) |
| 145 | #define SCR_SIF_BIT (1 << 9) |
| 146 | #define SCR_HCE_BIT (1 << 8) |
| 147 | #define SCR_SMD_BIT (1 << 7) |
| 148 | #define SCR_EA_BIT (1 << 3) |
| 149 | #define SCR_FIQ_BIT (1 << 2) |
| 150 | #define SCR_IRQ_BIT (1 << 1) |
| 151 | #define SCR_NS_BIT (1 << 0) |
| 152 | |
| 153 | /* HCR definitions */ |
| 154 | #define HCR_RW_BIT (1ull << 31) |
| 155 | #define HCR_AMO_BIT (1 << 5) |
| 156 | #define HCR_IMO_BIT (1 << 4) |
| 157 | #define HCR_FMO_BIT (1 << 3) |
| 158 | |
| 159 | /* CNTHCTL_EL2 definitions */ |
| 160 | #define EL1PCEN_BIT (1 << 1) |
| 161 | #define EL1PCTEN_BIT (1 << 0) |
| 162 | |
| 163 | /* CNTKCTL_EL1 definitions */ |
| 164 | #define EL0PTEN_BIT (1 << 9) |
| 165 | #define EL0VTEN_BIT (1 << 8) |
| 166 | #define EL0PCTEN_BIT (1 << 0) |
| 167 | #define EL0VCTEN_BIT (1 << 1) |
| 168 | |
| 169 | /* CPTR_EL3 definitions */ |
Harry Liebel | 4f60368 | 2014-01-14 18:11:48 +0000 | [diff] [blame] | 170 | #define TCPAC_BIT (1 << 31) |
| 171 | #define TTA_BIT (1 << 20) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 172 | #define TFP_BIT (1 << 10) |
| 173 | |
| 174 | /* CPSR/SPSR definitions */ |
| 175 | #define DAIF_FIQ_BIT (1 << 0) |
| 176 | #define DAIF_IRQ_BIT (1 << 1) |
| 177 | #define DAIF_ABT_BIT (1 << 2) |
| 178 | #define DAIF_DBG_BIT (1 << 3) |
| 179 | #define PSR_DAIF_SHIFT 0x6 |
| 180 | |
| 181 | /* |
| 182 | * TCR defintions |
| 183 | */ |
| 184 | #define TCR_EL3_RES1 ((1UL << 31) | (1UL << 23)) |
| 185 | |
| 186 | #define TCR_T0SZ_4GB 32 |
| 187 | |
| 188 | #define TCR_RGN_INNER_NC (0x0 << 8) |
| 189 | #define TCR_RGN_INNER_WBA (0x1 << 8) |
| 190 | #define TCR_RGN_INNER_WT (0x2 << 8) |
| 191 | #define TCR_RGN_INNER_WBNA (0x3 << 8) |
| 192 | |
| 193 | #define TCR_RGN_OUTER_NC (0x0 << 10) |
| 194 | #define TCR_RGN_OUTER_WBA (0x1 << 10) |
| 195 | #define TCR_RGN_OUTER_WT (0x2 << 10) |
| 196 | #define TCR_RGN_OUTER_WBNA (0x3 << 10) |
| 197 | |
| 198 | #define TCR_SH_NON_SHAREABLE (0x0 << 12) |
| 199 | #define TCR_SH_OUTER_SHAREABLE (0x2 << 12) |
| 200 | #define TCR_SH_INNER_SHAREABLE (0x3 << 12) |
| 201 | |
| 202 | #define MODE_RW_64 0x0 |
| 203 | #define MODE_RW_32 0x1 |
| 204 | #define MODE_SP_EL0 0x0 |
| 205 | #define MODE_SP_ELX 0x1 |
| 206 | #define MODE_EL3 0x3 |
| 207 | #define MODE_EL2 0x2 |
| 208 | #define MODE_EL1 0x1 |
| 209 | #define MODE_EL0 0x0 |
| 210 | |
| 211 | #define MODE_RW_SHIFT 0x4 |
| 212 | #define MODE_EL_SHIFT 0x2 |
| 213 | #define MODE_SP_SHIFT 0x0 |
| 214 | |
| 215 | #define GET_RW(mode) ((mode >> MODE_RW_SHIFT) & 0x1) |
| 216 | #define GET_EL(mode) ((mode >> MODE_EL_SHIFT) & 0x3) |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 217 | #define PSR_MODE(rw, el, sp) (rw << MODE_RW_SHIFT | el << MODE_EL_SHIFT \ |
| 218 | | sp << MODE_SP_SHIFT) |
| 219 | |
| 220 | #define SPSR32_EE_BIT (1 << 9) |
| 221 | #define SPSR32_T_BIT (1 << 5) |
| 222 | |
| 223 | #define AARCH32_MODE_SVC 0x13 |
| 224 | #define AARCH32_MODE_HYP 0x1a |
| 225 | |
| 226 | /* Miscellaneous MMU related constants */ |
| 227 | #define NUM_2MB_IN_GB (1 << 9) |
| 228 | #define NUM_4K_IN_2MB (1 << 9) |
| 229 | |
| 230 | #define TWO_MB_SHIFT 21 |
| 231 | #define ONE_GB_SHIFT 30 |
| 232 | #define FOUR_KB_SHIFT 12 |
| 233 | |
| 234 | #define ONE_GB_INDEX(x) ((x) >> ONE_GB_SHIFT) |
| 235 | #define TWO_MB_INDEX(x) ((x) >> TWO_MB_SHIFT) |
| 236 | #define FOUR_KB_INDEX(x) ((x) >> FOUR_KB_SHIFT) |
| 237 | |
| 238 | #define INVALID_DESC 0x0 |
| 239 | #define BLOCK_DESC 0x1 |
| 240 | #define TABLE_DESC 0x3 |
| 241 | |
| 242 | #define FIRST_LEVEL_DESC_N ONE_GB_SHIFT |
| 243 | #define SECOND_LEVEL_DESC_N TWO_MB_SHIFT |
| 244 | #define THIRD_LEVEL_DESC_N FOUR_KB_SHIFT |
| 245 | |
| 246 | #define LEVEL1 1 |
| 247 | #define LEVEL2 2 |
| 248 | #define LEVEL3 3 |
| 249 | |
| 250 | #define XN (1ull << 2) |
| 251 | #define PXN (1ull << 1) |
| 252 | #define CONT_HINT (1ull << 0) |
| 253 | |
| 254 | #define UPPER_ATTRS(x) (x & 0x7) << 52 |
| 255 | #define NON_GLOBAL (1 << 9) |
| 256 | #define ACCESS_FLAG (1 << 8) |
| 257 | #define NSH (0x0 << 6) |
| 258 | #define OSH (0x2 << 6) |
| 259 | #define ISH (0x3 << 6) |
| 260 | |
Sandrine Bailleux | 8d69a03 | 2013-11-27 09:38:52 +0000 | [diff] [blame] | 261 | #define IS_PAGE_ALIGNED(addr) (((addr) & 0xFFF) == 0) |
| 262 | |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 263 | /* |
| 264 | * AP[1] bit is ignored by hardware and is |
| 265 | * treated as if it is One in EL2/EL3 |
| 266 | */ |
| 267 | #define AP_RO (0x1 << 5) |
| 268 | #define AP_RW (0x0 << 5) |
| 269 | |
| 270 | #define NS (0x1 << 3) |
| 271 | #define ATTR_SO_INDEX 0x2 |
| 272 | #define ATTR_DEVICE_INDEX 0x1 |
| 273 | #define ATTR_IWBWA_OWBWA_NTR_INDEX 0x0 |
| 274 | #define LOWER_ATTRS(x) (((x) & 0xfff) << 2) |
| 275 | #define ATTR_SO (0x0) |
| 276 | #define ATTR_DEVICE (0x4) |
| 277 | #define ATTR_IWBWA_OWBWA_NTR (0xff) |
| 278 | #define MAIR_ATTR_SET(attr, index) (attr << (index << 3)) |
| 279 | |
| 280 | /* Exception Syndrome register bits and bobs */ |
| 281 | #define ESR_EC_SHIFT 26 |
| 282 | #define ESR_EC_MASK 0x3f |
| 283 | #define ESR_EC_LENGTH 6 |
| 284 | #define EC_UNKNOWN 0x0 |
| 285 | #define EC_WFE_WFI 0x1 |
| 286 | #define EC_AARCH32_CP15_MRC_MCR 0x3 |
| 287 | #define EC_AARCH32_CP15_MRRC_MCRR 0x4 |
| 288 | #define EC_AARCH32_CP14_MRC_MCR 0x5 |
| 289 | #define EC_AARCH32_CP14_LDC_STC 0x6 |
| 290 | #define EC_FP_SIMD 0x7 |
| 291 | #define EC_AARCH32_CP10_MRC 0x8 |
| 292 | #define EC_AARCH32_CP14_MRRC_MCRR 0xc |
| 293 | #define EC_ILLEGAL 0xe |
| 294 | #define EC_AARCH32_SVC 0x11 |
| 295 | #define EC_AARCH32_HVC 0x12 |
| 296 | #define EC_AARCH32_SMC 0x13 |
| 297 | #define EC_AARCH64_SVC 0x15 |
| 298 | #define EC_AARCH64_HVC 0x16 |
| 299 | #define EC_AARCH64_SMC 0x17 |
| 300 | #define EC_AARCH64_SYS 0x18 |
| 301 | #define EC_IABORT_LOWER_EL 0x20 |
| 302 | #define EC_IABORT_CUR_EL 0x21 |
| 303 | #define EC_PC_ALIGN 0x22 |
| 304 | #define EC_DABORT_LOWER_EL 0x24 |
| 305 | #define EC_DABORT_CUR_EL 0x25 |
| 306 | #define EC_SP_ALIGN 0x26 |
| 307 | #define EC_AARCH32_FP 0x28 |
| 308 | #define EC_AARCH64_FP 0x2c |
| 309 | #define EC_SERROR 0x2f |
| 310 | |
| 311 | #define EC_BITS(x) (x >> ESR_EC_SHIFT) & ESR_EC_MASK |
| 312 | |
| 313 | #ifndef __ASSEMBLY__ |
Achin Gupta | a59caa4 | 2013-12-05 14:21:04 +0000 | [diff] [blame] | 314 | /******************************************************************************* |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 315 | * Function prototypes |
| 316 | ******************************************************************************/ |
| 317 | |
| 318 | extern void early_exceptions(void); |
| 319 | extern void runtime_exceptions(void); |
| 320 | extern void bl1_arch_setup(void); |
| 321 | extern void bl2_arch_setup(void); |
| 322 | extern void bl31_arch_setup(void); |
Jeenu Viswambharan | caa8493 | 2014-02-06 10:36:15 +0000 | [diff] [blame] | 323 | extern void bl31_arch_next_el_setup(void); |
Achin Gupta | 4f6ad66 | 2013-10-25 09:08:21 +0100 | [diff] [blame] | 324 | #endif /*__ASSEMBLY__*/ |
| 325 | |
| 326 | #endif /* __ARCH_H__ */ |