1 /*- 2 * Copyright (c) 2013, 2014 Andrew Turner 3 * Copyright (c) 2015 The FreeBSD Foundation 4 * All rights reserved. 5 * 6 * This software was developed by Andrew Turner under 7 * sponsorship from the FreeBSD Foundation. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 2. Redistributions in binary form must reproduce the above copyright 15 * notice, this list of conditions and the following disclaimer in the 16 * documentation and/or other materials provided with the distribution. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * 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 AUTHOR OR CONTRIBUTORS BE LIABLE 22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 * $FreeBSD$ 31 */ 32 33 #ifndef _MACHINE_ARMREG_H_ 34 #define _MACHINE_ARMREG_H_ 35 36 #define READ_SPECIALREG(reg) \ 37 ({ uint64_t val; \ 38 __asm __volatile("mrs %0, " __STRING(reg) : "=&r" (val)); \ 39 val; \ 40 }) 41 #define WRITE_SPECIALREG(reg, val) \ 42 __asm __volatile("msr " __STRING(reg) ", %0" : : "r"((uint64_t)val)) 43 44 /* CPACR_EL1 */ 45 #define CPACR_FPEN_MASK (0x3 << 20) 46 #define CPACR_FPEN_TRAP_ALL1 (0x0 << 20) /* Traps from EL0 and EL1 */ 47 #define CPACR_FPEN_TRAP_EL0 (0x1 << 20) /* Traps from EL0 */ 48 #define CPACR_FPEN_TRAP_ALL2 (0x2 << 20) /* Traps from EL0 and EL1 */ 49 #define CPACR_FPEN_TRAP_NONE (0x3 << 20) /* No traps */ 50 #define CPACR_TTA (0x1 << 28) 51 52 /* CTR_EL0 - Cache Type Register */ 53 #define CTR_DLINE_SHIFT 16 54 #define CTR_DLINE_MASK (0xf << CTR_DLINE_SHIFT) 55 #define CTR_DLINE_SIZE(reg) (((reg) & CTR_DLINE_MASK) >> CTR_DLINE_SHIFT) 56 #define CTR_ILINE_SHIFT 0 57 #define CTR_ILINE_MASK (0xf << CTR_ILINE_SHIFT) 58 #define CTR_ILINE_SIZE(reg) (((reg) & CTR_ILINE_MASK) >> CTR_ILINE_SHIFT) 59 60 /* ESR_ELx */ 61 #define ESR_ELx_ISS_MASK 0x00ffffff 62 #define ISS_INSN_FnV (0x01 << 10) 63 #define ISS_INSN_EA (0x01 << 9) 64 #define ISS_INSN_S1PTW (0x01 << 7) 65 #define ISS_INSN_IFSC_MASK (0x1f << 0) 66 #define ISS_DATA_ISV (0x01 << 24) 67 #define ISS_DATA_SAS_MASK (0x03 << 22) 68 #define ISS_DATA_SSE (0x01 << 21) 69 #define ISS_DATA_SRT_MASK (0x1f << 16) 70 #define ISS_DATA_SF (0x01 << 15) 71 #define ISS_DATA_AR (0x01 << 14) 72 #define ISS_DATA_FnV (0x01 << 10) 73 #define ISS_DATa_EA (0x01 << 9) 74 #define ISS_DATa_CM (0x01 << 8) 75 #define ISS_INSN_S1PTW (0x01 << 7) 76 #define ISS_DATa_WnR (0x01 << 6) 77 #define ISS_DATA_DFSC_MASK (0x1f << 0) 78 #define ESR_ELx_IL (0x01 << 25) 79 #define ESR_ELx_EC_SHIFT 26 80 #define ESR_ELx_EC_MASK (0x3f << 26) 81 #define ESR_ELx_EXCEPTION(esr) (((esr) & ESR_ELx_EC_MASK) >> ESR_ELx_EC_SHIFT) 82 #define EXCP_UNKNOWN 0x00 /* Unkwn exception */ 83 #define EXCP_FP_SIMD 0x07 /* VFP/SIMD trap */ 84 #define EXCP_ILL_STATE 0x0e /* Illegal execution state */ 85 #define EXCP_SVC 0x15 /* SVC trap */ 86 #define EXCP_MSR 0x18 /* MSR/MRS trap */ 87 #define EXCP_INSN_ABORT_L 0x20 /* Instruction abort, from lower EL */ 88 #define EXCP_INSN_ABORT 0x21 /* Instruction abort, from same EL */ 89 #define EXCP_PC_ALIGN 0x22 /* PC alignment fault */ 90 #define EXCP_DATA_ABORT_L 0x24 /* Data abort, from lower EL */ 91 #define EXCP_DATA_ABORT 0x25 /* Data abort, from same EL */ 92 #define EXCP_SP_ALIGN 0x26 /* SP slignment fault */ 93 #define EXCP_TRAP_FP 0x2c /* Trapped FP exception */ 94 #define EXCP_SERROR 0x2f /* SError interrupt */ 95 #define EXCP_SOFTSTP_EL1 0x33 /* Software Step, from same EL */ 96 #define EXCP_WATCHPT_EL1 0x35 /* Watchpoint, from same EL */ 97 #define EXCP_BRK 0x3c /* Breakpoint */ 98 99 /* ID_AA64PFR0_EL1 */ 100 #define ID_AA64PFR0_EL0_MASK (0xf << 0) 101 #define ID_AA64PFR0_EL1_MASK (0xf << 4) 102 #define ID_AA64PFR0_EL2_MASK (0xf << 8) 103 #define ID_AA64PFR0_EL3_MASK (0xf << 12) 104 #define ID_AA64PFR0_FP_MASK (0xf << 16) 105 #define ID_AA64PFR0_FP_IMPL (0x0 << 16) /* Floating-point implemented */ 106 #define ID_AA64PFR0_FP_NONE (0xf << 16) /* Floating-point not implemented */ 107 #define ID_AA64PFR0_ADV_SIMD_MASK (0xf << 20) 108 #define ID_AA64PFR0_GIC_MASK (0xf << 24) 109 110 /* MAIR_EL1 - Memory Attribute Indirection Register */ 111 #define MAIR_ATTR_MASK(idx) (0xff << ((n)* 8)) 112 #define MAIR_ATTR(attr, idx) ((attr) << ((idx) * 8)) 113 114 /* SCTLR_EL1 - System Control Register */ 115 #define SCTLR_RES0 0xc8222400 /* Reserved, write 0 */ 116 #define SCTLR_RES1 0x30d00800 /* Reserved, write 1 */ 117 118 #define SCTLR_M 0x00000001 119 #define SCTLR_A 0x00000002 120 #define SCTLR_C 0x00000004 121 #define SCTLR_SA 0x00000008 122 #define SCTLR_SA0 0x00000010 123 #define SCTLR_CP15BEN 0x00000020 124 #define SCTLR_THEE 0x00000040 125 #define SCTLR_ITD 0x00000080 126 #define SCTLR_SED 0x00000100 127 #define SCTLR_UMA 0x00000200 128 #define SCTLR_I 0x00001000 129 #define SCTLR_DZE 0x00004000 130 #define SCTLR_UCT 0x00008000 131 #define SCTLR_nTWI 0x00010000 132 #define SCTLR_nTWE 0x00040000 133 #define SCTLR_WXN 0x00080000 134 #define SCTLR_EOE 0x01000000 135 #define SCTLR_EE 0x02000000 136 #define SCTLR_UCI 0x04000000 137 138 /* SPSR_EL1 */ 139 /* 140 * When the exception is taken in AArch64: 141 * M[4] is 0 for AArch64 mode 142 * M[3:2] is the exception level 143 * M[1] is unused 144 * M[0] is the SP select: 145 * 0: always SP0 146 * 1: current ELs SP 147 */ 148 #define PSR_M_EL0t 0x00000000 149 #define PSR_M_EL1t 0x00000004 150 #define PSR_M_EL1h 0x00000005 151 #define PSR_M_EL2t 0x00000008 152 #define PSR_M_EL2h 0x00000009 153 #define PSR_M_MASK 0x0000001f 154 155 #define PSR_F 0x00000040 156 #define PSR_I 0x00000080 157 #define PSR_A 0x00000100 158 #define PSR_D 0x00000200 159 #define PSR_IL 0x00100000 160 #define PSR_SS 0x00200000 161 #define PSR_V 0x10000000 162 #define PSR_C 0x20000000 163 #define PSR_Z 0x40000000 164 #define PSR_N 0x80000000 165 166 /* TCR_EL1 - Translation Control Register */ 167 #define TCR_ASID_16 (1 << 36) 168 169 #define TCR_IPS_SHIFT 32 170 #define TCR_IPS_32BIT (0 << TCR_IPS_SHIFT) 171 #define TCR_IPS_36BIT (1 << TCR_IPS_SHIFT) 172 #define TCR_IPS_40BIT (2 << TCR_IPS_SHIFT) 173 #define TCR_IPS_42BIT (3 << TCR_IPS_SHIFT) 174 #define TCR_IPS_44BIT (4 << TCR_IPS_SHIFT) 175 #define TCR_IPS_48BIT (5 << TCR_IPS_SHIFT) 176 177 #define TCR_TG1_SHIFT 30 178 #define TCR_TG1_16K (1 << TCR_TG1_SHIFT) 179 #define TCR_TG1_4K (2 << TCR_TG1_SHIFT) 180 #define TCR_TG1_64K (3 << TCR_TG1_SHIFT) 181 182 #define TCR_T1SZ_SHIFT 16 183 #define TCR_T0SZ_SHIFT 0 184 #define TCR_TxSZ(x) (((x) << TCR_T1SZ_SHIFT) | ((x) << TCR_T0SZ_SHIFT)) 185 186 /* Saved Program Status Register */ 187 #define DBG_SPSR_SS (0x1 << 21) 188 189 /* Monitor Debug System Control Register */ 190 #define DBG_MDSCR_SS (0x1 << 0) 191 #define DBG_MDSCR_KDE (0x1 << 13) 192 #define DBG_MDSCR_MDE (0x1 << 15) 193 194 #endif /* !_MACHINE_ARMREG_H_ */ 195