blob: d89b4fe9db4bbefcc996a3dd8dbfe58450e2d4ff [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
31#ifndef __ARCH_H__
32#define __ARCH_H__
33
Achin Gupta4f6ad662013-10-25 09:08:21 +010034
35/*******************************************************************************
36 * MIDR bit definitions
37 ******************************************************************************/
38#define MIDR_PN_MASK 0xfff
39#define MIDR_PN_SHIFT 0x4
40#define MIDR_PN_AEM 0xd0f
41#define MIDR_PN_A57 0xd07
42#define MIDR_PN_A53 0xd03
43
44/*******************************************************************************
45 * MPIDR macros
46 ******************************************************************************/
47#define MPIDR_CPU_MASK MPIDR_AFFLVL_MASK
48#define MPIDR_CLUSTER_MASK MPIDR_AFFLVL_MASK << MPIDR_AFFINITY_BITS
49#define MPIDR_AFFINITY_BITS 8
50#define MPIDR_AFFLVL_MASK 0xff
51#define MPIDR_AFF0_SHIFT 0
52#define MPIDR_AFF1_SHIFT 8
53#define MPIDR_AFF2_SHIFT 16
54#define MPIDR_AFF3_SHIFT 32
55#define MPIDR_AFFINITY_MASK 0xff00ffffff
56#define MPIDR_AFFLVL_SHIFT 3
57#define MPIDR_AFFLVL0 0
58#define MPIDR_AFFLVL1 1
59#define MPIDR_AFFLVL2 2
60#define MPIDR_AFFLVL3 3
61/* TODO: Support only the first 3 affinity levels for now */
62#define MPIDR_MAX_AFFLVL 2
63
64/* Constant to highlight the assumption that MPIDR allocation starts from 0 */
65#define FIRST_MPIDR 0
66
67/*******************************************************************************
68 * Implementation defined sysreg encodings
69 ******************************************************************************/
70#define CPUECTLR_EL1 S3_1_C15_C2_1
71
72/*******************************************************************************
Achin Guptac2b43af2013-10-31 11:27:43 +000073 * Generic timer memory mapped registers & offsets
74 ******************************************************************************/
75#define CNTCR_OFF 0x000
76#define CNTFID_OFF 0x020
77
78#define CNTCR_EN (1 << 0)
79#define CNTCR_HDBG (1 << 1)
Sandrine Bailleux9e864902014-03-31 11:25:18 +010080#define CNTCR_FCREQ(x) ((x) << 8)
Achin Guptac2b43af2013-10-31 11:27:43 +000081
82/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010083 * System register bit definitions
84 ******************************************************************************/
85/* CLIDR definitions */
86#define LOUIS_SHIFT 21
87#define LOC_SHIFT 24
88#define CLIDR_FIELD_WIDTH 3
89
90/* CSSELR definitions */
91#define LEVEL_SHIFT 1
92
93/* D$ set/way op type defines */
94#define DCISW 0x0
95#define DCCISW 0x1
96#define DCCSW 0x2
97
98/* ID_AA64PFR0_EL1 definitions */
99#define ID_AA64PFR0_EL0_SHIFT 0
100#define ID_AA64PFR0_EL1_SHIFT 4
101#define ID_AA64PFR0_EL2_SHIFT 8
102#define ID_AA64PFR0_EL3_SHIFT 12
103#define ID_AA64PFR0_ELX_MASK 0xf
104
105/* ID_PFR1_EL1 definitions */
106#define ID_PFR1_VIRTEXT_SHIFT 12
107#define ID_PFR1_VIRTEXT_MASK 0xf
108#define GET_VIRT_EXT(id) ((id >> ID_PFR1_VIRTEXT_SHIFT) \
109 & ID_PFR1_VIRTEXT_MASK)
110
111/* SCTLR definitions */
112#define SCTLR_EL2_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \
113 (1 << 18) | (1 << 16) | (1 << 11) | (1 << 5) | \
114 (1 << 4))
115
116#define SCTLR_EL1_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \
117 (1 << 11))
118#define SCTLR_M_BIT (1 << 0)
119#define SCTLR_A_BIT (1 << 1)
120#define SCTLR_C_BIT (1 << 2)
121#define SCTLR_SA_BIT (1 << 3)
122#define SCTLR_B_BIT (1 << 7)
123#define SCTLR_Z_BIT (1 << 11)
124#define SCTLR_I_BIT (1 << 12)
125#define SCTLR_WXN_BIT (1 << 19)
126#define SCTLR_EXCEPTION_BITS (0x3 << 6)
127#define SCTLR_EE_BIT (1 << 25)
128
129/* CPUECTLR definitions */
130#define CPUECTLR_SMP_BIT (1 << 6)
131
132/* CPACR_El1 definitions */
133#define CPACR_EL1_FPEN(x) (x << 20)
134#define CPACR_EL1_FP_TRAP_EL0 0x1
135#define CPACR_EL1_FP_TRAP_ALL 0x2
136#define CPACR_EL1_FP_TRAP_NONE 0x3
137
138/* SCR definitions */
139#define SCR_RES1_BITS ((1 << 4) | (1 << 5))
140#define SCR_TWE_BIT (1 << 13)
141#define SCR_TWI_BIT (1 << 12)
142#define SCR_ST_BIT (1 << 11)
143#define SCR_RW_BIT (1 << 10)
144#define SCR_SIF_BIT (1 << 9)
145#define SCR_HCE_BIT (1 << 8)
146#define SCR_SMD_BIT (1 << 7)
147#define SCR_EA_BIT (1 << 3)
148#define SCR_FIQ_BIT (1 << 2)
149#define SCR_IRQ_BIT (1 << 1)
150#define SCR_NS_BIT (1 << 0)
Achin Guptac429b5e2014-05-04 18:38:28 +0100151#define SCR_VALID_BIT_MASK 0x2f8f
Achin Gupta4f6ad662013-10-25 09:08:21 +0100152
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 Liebel4f603682014-01-14 18:11:48 +0000170#define TCPAC_BIT (1 << 31)
171#define TTA_BIT (1 << 20)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100172#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)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100179#define SPSR_DAIF_SHIFT 6
180#define SPSR_DAIF_MASK 0xf
181
182#define SPSR_AIF_SHIFT 6
183#define SPSR_AIF_MASK 0x7
184
185#define SPSR_E_SHIFT 9
186#define SPSR_E_MASK 0x1
187#define SPSR_E_LITTLE 0x0
188#define SPSR_E_BIG 0x1
189
190#define SPSR_T_SHIFT 5
191#define SPSR_T_MASK 0x1
192#define SPSR_T_ARM 0x0
193#define SPSR_T_THUMB 0x1
194
195#define DISABLE_ALL_EXCEPTIONS \
196 (DAIF_FIQ_BIT | DAIF_IRQ_BIT | DAIF_ABT_BIT | DAIF_DBG_BIT)
197
Achin Gupta4f6ad662013-10-25 09:08:21 +0100198
199/*
200 * TCR defintions
201 */
202#define TCR_EL3_RES1 ((1UL << 31) | (1UL << 23))
203
204#define TCR_T0SZ_4GB 32
205
206#define TCR_RGN_INNER_NC (0x0 << 8)
207#define TCR_RGN_INNER_WBA (0x1 << 8)
208#define TCR_RGN_INNER_WT (0x2 << 8)
209#define TCR_RGN_INNER_WBNA (0x3 << 8)
210
211#define TCR_RGN_OUTER_NC (0x0 << 10)
212#define TCR_RGN_OUTER_WBA (0x1 << 10)
213#define TCR_RGN_OUTER_WT (0x2 << 10)
214#define TCR_RGN_OUTER_WBNA (0x3 << 10)
215
216#define TCR_SH_NON_SHAREABLE (0x0 << 12)
217#define TCR_SH_OUTER_SHAREABLE (0x2 << 12)
218#define TCR_SH_INNER_SHAREABLE (0x3 << 12)
219
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100220#define MODE_SP_SHIFT 0x0
221#define MODE_SP_MASK 0x1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100222#define MODE_SP_EL0 0x0
223#define MODE_SP_ELX 0x1
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100224
225#define MODE_RW_SHIFT 0x4
226#define MODE_RW_MASK 0x1
227#define MODE_RW_64 0x0
228#define MODE_RW_32 0x1
229
230#define MODE_EL_SHIFT 0x2
231#define MODE_EL_MASK 0x3
Achin Gupta4f6ad662013-10-25 09:08:21 +0100232#define MODE_EL3 0x3
233#define MODE_EL2 0x2
234#define MODE_EL1 0x1
235#define MODE_EL0 0x0
236
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100237#define MODE32_SHIFT 0
238#define MODE32_MASK 0xf
239#define MODE32_usr 0x0
240#define MODE32_fiq 0x1
241#define MODE32_irq 0x2
242#define MODE32_svc 0x3
243#define MODE32_mon 0x6
244#define MODE32_abt 0x7
245#define MODE32_hyp 0xa
246#define MODE32_und 0xb
247#define MODE32_sys 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +0100248
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100249#define GET_RW(mode) (((mode) >> MODE_RW_SHIFT) & MODE_RW_MASK)
250#define GET_EL(mode) (((mode) >> MODE_EL_SHIFT) & MODE_EL_MASK)
251#define GET_SP(mode) (((mode) >> MODE_SP_SHIFT) & MODE_SP_MASK)
252#define GET_M32(mode) (((mode) >> MODE32_SHIFT) & MODE32_MASK)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100253
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100254#define SPSR_64(el, sp, daif) \
255 (MODE_RW_64 << MODE_RW_SHIFT | \
256 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
257 ((sp) & MODE_SP_MASK) << MODE_SP_SHIFT | \
258 ((daif) & SPSR_DAIF_MASK) << SPSR_DAIF_SHIFT)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100259
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100260#define SPSR_MODE32(mode, isa, endian, aif) \
261 (MODE_RW_32 << MODE_RW_SHIFT | \
262 ((mode) & MODE32_MASK) << MODE32_SHIFT | \
263 ((isa) & SPSR_T_MASK) << SPSR_T_SHIFT | \
264 ((endian) & SPSR_E_MASK) << SPSR_E_SHIFT | \
265 ((aif) & SPSR_AIF_MASK) << SPSR_AIF_SHIFT)
266
Achin Gupta4f6ad662013-10-25 09:08:21 +0100267
Achin Guptafa9c08b2014-05-09 12:00:17 +0100268/* Physical timer control register bit fields shifts and masks */
269#define CNTP_CTL_ENABLE_SHIFT 0
270#define CNTP_CTL_IMASK_SHIFT 1
271#define CNTP_CTL_ISTATUS_SHIFT 2
272
273#define CNTP_CTL_ENABLE_MASK 1
274#define CNTP_CTL_IMASK_MASK 1
275#define CNTP_CTL_ISTATUS_MASK 1
276
277#define get_cntp_ctl_enable(x) ((x >> CNTP_CTL_ENABLE_SHIFT) & \
278 CNTP_CTL_ENABLE_MASK)
279#define get_cntp_ctl_imask(x) ((x >> CNTP_CTL_IMASK_SHIFT) & \
280 CNTP_CTL_IMASK_MASK)
281#define get_cntp_ctl_istatus(x) ((x >> CNTP_CTL_ISTATUS_SHIFT) & \
282 CNTP_CTL_ISTATUS_MASK)
283
284#define set_cntp_ctl_enable(x) (x |= 1 << CNTP_CTL_ENABLE_SHIFT)
285#define set_cntp_ctl_imask(x) (x |= 1 << CNTP_CTL_IMASK_SHIFT)
286
287#define clr_cntp_ctl_enable(x) (x &= ~(1 << CNTP_CTL_ENABLE_SHIFT))
288#define clr_cntp_ctl_imask(x) (x &= ~(1 << CNTP_CTL_IMASK_SHIFT))
289
Achin Gupta4f6ad662013-10-25 09:08:21 +0100290/* Miscellaneous MMU related constants */
291#define NUM_2MB_IN_GB (1 << 9)
292#define NUM_4K_IN_2MB (1 << 9)
Achin Guptaa0cd9892014-02-09 13:30:38 +0000293#define NUM_GB_IN_4GB (1 << 2)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100294
295#define TWO_MB_SHIFT 21
296#define ONE_GB_SHIFT 30
297#define FOUR_KB_SHIFT 12
298
299#define ONE_GB_INDEX(x) ((x) >> ONE_GB_SHIFT)
300#define TWO_MB_INDEX(x) ((x) >> TWO_MB_SHIFT)
301#define FOUR_KB_INDEX(x) ((x) >> FOUR_KB_SHIFT)
302
303#define INVALID_DESC 0x0
304#define BLOCK_DESC 0x1
305#define TABLE_DESC 0x3
306
307#define FIRST_LEVEL_DESC_N ONE_GB_SHIFT
308#define SECOND_LEVEL_DESC_N TWO_MB_SHIFT
309#define THIRD_LEVEL_DESC_N FOUR_KB_SHIFT
310
311#define LEVEL1 1
312#define LEVEL2 2
313#define LEVEL3 3
314
315#define XN (1ull << 2)
316#define PXN (1ull << 1)
317#define CONT_HINT (1ull << 0)
318
319#define UPPER_ATTRS(x) (x & 0x7) << 52
320#define NON_GLOBAL (1 << 9)
321#define ACCESS_FLAG (1 << 8)
322#define NSH (0x0 << 6)
323#define OSH (0x2 << 6)
324#define ISH (0x3 << 6)
325
Jon Medhurstc481c262014-01-24 15:41:33 +0000326#define PAGE_SIZE_SHIFT FOUR_KB_SHIFT
327#define PAGE_SIZE (1 << PAGE_SIZE_SHIFT)
328#define PAGE_SIZE_MASK (PAGE_SIZE - 1)
329#define IS_PAGE_ALIGNED(addr) (((addr) & PAGE_SIZE_MASK) == 0)
330
331#define XLAT_ENTRY_SIZE_SHIFT 3 /* Each MMU table entry is 8 bytes (1 << 3) */
332#define XLAT_ENTRY_SIZE (1 << XLAT_ENTRY_SIZE_SHIFT)
333
334#define XLAT_TABLE_SIZE_SHIFT PAGE_SIZE_SHIFT
335#define XLAT_TABLE_SIZE (1 << XLAT_TABLE_SIZE_SHIFT)
336
337/* Values for number of entries in each MMU translation table */
338#define XLAT_TABLE_ENTRIES_SHIFT (XLAT_TABLE_SIZE_SHIFT - XLAT_ENTRY_SIZE_SHIFT)
339#define XLAT_TABLE_ENTRIES (1 << XLAT_TABLE_ENTRIES_SHIFT)
340#define XLAT_TABLE_ENTRIES_MASK (XLAT_TABLE_ENTRIES - 1)
341
342/* Values to convert a memory address to an index into a translation table */
343#define L3_XLAT_ADDRESS_SHIFT PAGE_SIZE_SHIFT
344#define L2_XLAT_ADDRESS_SHIFT (L3_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
345#define L1_XLAT_ADDRESS_SHIFT (L2_XLAT_ADDRESS_SHIFT + XLAT_TABLE_ENTRIES_SHIFT)
Sandrine Bailleux8d69a032013-11-27 09:38:52 +0000346
Achin Gupta4f6ad662013-10-25 09:08:21 +0100347/*
348 * AP[1] bit is ignored by hardware and is
349 * treated as if it is One in EL2/EL3
350 */
351#define AP_RO (0x1 << 5)
352#define AP_RW (0x0 << 5)
353
354#define NS (0x1 << 3)
355#define ATTR_SO_INDEX 0x2
356#define ATTR_DEVICE_INDEX 0x1
357#define ATTR_IWBWA_OWBWA_NTR_INDEX 0x0
358#define LOWER_ATTRS(x) (((x) & 0xfff) << 2)
359#define ATTR_SO (0x0)
360#define ATTR_DEVICE (0x4)
361#define ATTR_IWBWA_OWBWA_NTR (0xff)
362#define MAIR_ATTR_SET(attr, index) (attr << (index << 3))
363
364/* Exception Syndrome register bits and bobs */
365#define ESR_EC_SHIFT 26
366#define ESR_EC_MASK 0x3f
367#define ESR_EC_LENGTH 6
368#define EC_UNKNOWN 0x0
369#define EC_WFE_WFI 0x1
370#define EC_AARCH32_CP15_MRC_MCR 0x3
371#define EC_AARCH32_CP15_MRRC_MCRR 0x4
372#define EC_AARCH32_CP14_MRC_MCR 0x5
373#define EC_AARCH32_CP14_LDC_STC 0x6
374#define EC_FP_SIMD 0x7
375#define EC_AARCH32_CP10_MRC 0x8
376#define EC_AARCH32_CP14_MRRC_MCRR 0xc
377#define EC_ILLEGAL 0xe
378#define EC_AARCH32_SVC 0x11
379#define EC_AARCH32_HVC 0x12
380#define EC_AARCH32_SMC 0x13
381#define EC_AARCH64_SVC 0x15
382#define EC_AARCH64_HVC 0x16
383#define EC_AARCH64_SMC 0x17
384#define EC_AARCH64_SYS 0x18
385#define EC_IABORT_LOWER_EL 0x20
386#define EC_IABORT_CUR_EL 0x21
387#define EC_PC_ALIGN 0x22
388#define EC_DABORT_LOWER_EL 0x24
389#define EC_DABORT_CUR_EL 0x25
390#define EC_SP_ALIGN 0x26
391#define EC_AARCH32_FP 0x28
392#define EC_AARCH64_FP 0x2c
393#define EC_SERROR 0x2f
394
395#define EC_BITS(x) (x >> ESR_EC_SHIFT) & ESR_EC_MASK
396
Dan Handley5f0cdb02014-05-14 17:44:19 +0100397/*******************************************************************************
398 * Definitions of register offsets and fields in the CNTCTLBase Frame of the
399 * system level implementation of the Generic Timer.
400 ******************************************************************************/
401#define CNTNSAR 0x4
402#define CNTNSAR_NS_SHIFT(x) x
403
404#define CNTACR_BASE(x) (0x40 + (x << 2))
405#define CNTACR_RPCT_SHIFT 0x0
406#define CNTACR_RVCT_SHIFT 0x1
407#define CNTACR_RFRQ_SHIFT 0x2
408#define CNTACR_RVOFF_SHIFT 0x3
409#define CNTACR_RWVT_SHIFT 0x4
410#define CNTACR_RWPT_SHIFT 0x5
411
Achin Gupta4f6ad662013-10-25 09:08:21 +0100412#endif /* __ARCH_H__ */