blob: 16adcf767d3ac003879c3f0f9bcf9df0ef021926 [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +00002 * Copyright (c) 2013-2017, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
7#ifndef __ARCH_H__
8#define __ARCH_H__
9
Scott Brandenbf404c02017-04-10 11:45:52 -070010#include <utils_def.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010011
12/*******************************************************************************
13 * MIDR bit definitions
14 ******************************************************************************/
Soby Mathewc704cbc2014-08-14 11:33:56 +010015#define MIDR_IMPL_MASK 0xff
16#define MIDR_IMPL_SHIFT 0x18
Soby Mathew802f8652014-08-14 16:19:29 +010017#define MIDR_VAR_SHIFT 20
Soby Mathewc0884332014-09-22 12:11:36 +010018#define MIDR_VAR_BITS 4
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000019#define MIDR_VAR_MASK 0xf
Soby Mathew802f8652014-08-14 16:19:29 +010020#define MIDR_REV_SHIFT 0
Soby Mathewc0884332014-09-22 12:11:36 +010021#define MIDR_REV_BITS 4
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000022#define MIDR_REV_MASK 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +010023#define MIDR_PN_MASK 0xfff
24#define MIDR_PN_SHIFT 0x4
Achin Gupta4f6ad662013-10-25 09:08:21 +010025
26/*******************************************************************************
27 * MPIDR macros
28 ******************************************************************************/
Summer Qin93c812f2017-02-28 16:46:17 +000029#define MPIDR_MT_MASK (1 << 24)
Achin Gupta4f6ad662013-10-25 09:08:21 +010030#define MPIDR_CPU_MASK MPIDR_AFFLVL_MASK
31#define MPIDR_CLUSTER_MASK MPIDR_AFFLVL_MASK << MPIDR_AFFINITY_BITS
32#define MPIDR_AFFINITY_BITS 8
33#define MPIDR_AFFLVL_MASK 0xff
34#define MPIDR_AFF0_SHIFT 0
35#define MPIDR_AFF1_SHIFT 8
36#define MPIDR_AFF2_SHIFT 16
37#define MPIDR_AFF3_SHIFT 32
38#define MPIDR_AFFINITY_MASK 0xff00ffffff
39#define MPIDR_AFFLVL_SHIFT 3
40#define MPIDR_AFFLVL0 0
41#define MPIDR_AFFLVL1 1
42#define MPIDR_AFFLVL2 2
43#define MPIDR_AFFLVL3 3
Vikram Kanigiri4e97e542015-02-26 15:25:58 +000044#define MPIDR_AFFLVL0_VAL(mpidr) \
45 ((mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK)
46#define MPIDR_AFFLVL1_VAL(mpidr) \
47 ((mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK)
48#define MPIDR_AFFLVL2_VAL(mpidr) \
49 ((mpidr >> MPIDR_AFF2_SHIFT) & MPIDR_AFFLVL_MASK)
50#define MPIDR_AFFLVL3_VAL(mpidr) \
51 ((mpidr >> MPIDR_AFF3_SHIFT) & MPIDR_AFFLVL_MASK)
Soby Mathewe2b2d8f2014-12-04 14:14:12 +000052/*
53 * The MPIDR_MAX_AFFLVL count starts from 0. Take care to
54 * add one while using this macro to define array sizes.
55 * TODO: Support only the first 3 affinity levels for now.
56 */
Achin Gupta4f6ad662013-10-25 09:08:21 +010057#define MPIDR_MAX_AFFLVL 2
58
59/* Constant to highlight the assumption that MPIDR allocation starts from 0 */
60#define FIRST_MPIDR 0
61
62/*******************************************************************************
Andrew Thoelke3f78dc32014-06-02 15:44:43 +010063 * Definitions for CPU system register interface to GICv3
64 ******************************************************************************/
65#define ICC_SRE_EL1 S3_0_C12_C12_5
66#define ICC_SRE_EL2 S3_4_C12_C9_5
67#define ICC_SRE_EL3 S3_6_C12_C12_5
68#define ICC_CTLR_EL1 S3_0_C12_C12_4
69#define ICC_CTLR_EL3 S3_6_C12_C12_4
70#define ICC_PMR_EL1 S3_0_C4_C6_0
Achin Gupta92712a52015-09-03 14:18:02 +010071#define ICC_IGRPEN1_EL3 S3_6_c12_c12_7
72#define ICC_IGRPEN0_EL1 S3_0_c12_c12_6
73#define ICC_HPPIR0_EL1 S3_0_c12_c8_2
74#define ICC_HPPIR1_EL1 S3_0_c12_c12_2
75#define ICC_IAR0_EL1 S3_0_c12_c8_0
76#define ICC_IAR1_EL1 S3_0_c12_c12_0
77#define ICC_EOIR0_EL1 S3_0_c12_c8_1
78#define ICC_EOIR1_EL1 S3_0_c12_c12_1
Andrew Thoelke3f78dc32014-06-02 15:44:43 +010079
80/*******************************************************************************
Achin Guptac2b43af2013-10-31 11:27:43 +000081 * Generic timer memory mapped registers & offsets
82 ******************************************************************************/
83#define CNTCR_OFF 0x000
84#define CNTFID_OFF 0x020
85
86#define CNTCR_EN (1 << 0)
87#define CNTCR_HDBG (1 << 1)
Sandrine Bailleux3fa98472014-03-31 11:25:18 +010088#define CNTCR_FCREQ(x) ((x) << 8)
Achin Guptac2b43af2013-10-31 11:27:43 +000089
90/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +010091 * System register bit definitions
92 ******************************************************************************/
93/* CLIDR definitions */
94#define LOUIS_SHIFT 21
95#define LOC_SHIFT 24
96#define CLIDR_FIELD_WIDTH 3
97
98/* CSSELR definitions */
99#define LEVEL_SHIFT 1
100
101/* D$ set/way op type defines */
102#define DCISW 0x0
103#define DCCISW 0x1
104#define DCCSW 0x2
105
106/* ID_AA64PFR0_EL1 definitions */
107#define ID_AA64PFR0_EL0_SHIFT 0
108#define ID_AA64PFR0_EL1_SHIFT 4
109#define ID_AA64PFR0_EL2_SHIFT 8
110#define ID_AA64PFR0_EL3_SHIFT 12
111#define ID_AA64PFR0_ELX_MASK 0xf
112
Jeenu Viswambharan2a9b8822017-02-21 14:40:44 +0000113#define EL_IMPL_NONE 0
114#define EL_IMPL_A64ONLY 1
115#define EL_IMPL_A64_A32 2
116
Achin Gupta92712a52015-09-03 14:18:02 +0100117#define ID_AA64PFR0_GIC_SHIFT 24
118#define ID_AA64PFR0_GIC_WIDTH 4
119#define ID_AA64PFR0_GIC_MASK ((1 << ID_AA64PFR0_GIC_WIDTH) - 1)
120
Antonio Nino Diazd1beee22016-12-13 15:28:54 +0000121/* ID_AA64MMFR0_EL1 definitions */
122#define ID_AA64MMFR0_EL1_PARANGE_MASK 0xf
123
124#define PARANGE_0000 32
125#define PARANGE_0001 36
126#define PARANGE_0010 40
127#define PARANGE_0011 42
128#define PARANGE_0100 44
129#define PARANGE_0101 48
130
Achin Gupta4f6ad662013-10-25 09:08:21 +0100131/* ID_PFR1_EL1 definitions */
132#define ID_PFR1_VIRTEXT_SHIFT 12
133#define ID_PFR1_VIRTEXT_MASK 0xf
134#define GET_VIRT_EXT(id) ((id >> ID_PFR1_VIRTEXT_SHIFT) \
135 & ID_PFR1_VIRTEXT_MASK)
136
137/* SCTLR definitions */
138#define SCTLR_EL2_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \
139 (1 << 18) | (1 << 16) | (1 << 11) | (1 << 5) | \
140 (1 << 4))
141
142#define SCTLR_EL1_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \
Vikram Kanigiri94efd1f2015-07-22 11:53:52 +0100143 (1 << 20) | (1 << 11))
Jens Wiklanderc93c9df2014-09-04 10:23:27 +0200144#define SCTLR_AARCH32_EL1_RES1 \
145 ((1 << 23) | (1 << 22) | (1 << 11) | (1 << 4) | \
146 (1 << 3))
147
Achin Gupta4f6ad662013-10-25 09:08:21 +0100148#define SCTLR_M_BIT (1 << 0)
149#define SCTLR_A_BIT (1 << 1)
150#define SCTLR_C_BIT (1 << 2)
151#define SCTLR_SA_BIT (1 << 3)
Soby Mathewa993c422016-09-29 14:15:57 +0100152#define SCTLR_CP15BEN_BIT (1 << 5)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100153#define SCTLR_I_BIT (1 << 12)
Soby Mathewa993c422016-09-29 14:15:57 +0100154#define SCTLR_NTWI_BIT (1 << 16)
155#define SCTLR_NTWE_BIT (1 << 18)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100156#define SCTLR_WXN_BIT (1 << 19)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100157#define SCTLR_EE_BIT (1 << 25)
158
Achin Gupta4f6ad662013-10-25 09:08:21 +0100159/* CPACR_El1 definitions */
160#define CPACR_EL1_FPEN(x) (x << 20)
161#define CPACR_EL1_FP_TRAP_EL0 0x1
162#define CPACR_EL1_FP_TRAP_ALL 0x2
163#define CPACR_EL1_FP_TRAP_NONE 0x3
164
165/* SCR definitions */
166#define SCR_RES1_BITS ((1 << 4) | (1 << 5))
167#define SCR_TWE_BIT (1 << 13)
168#define SCR_TWI_BIT (1 << 12)
169#define SCR_ST_BIT (1 << 11)
170#define SCR_RW_BIT (1 << 10)
171#define SCR_SIF_BIT (1 << 9)
172#define SCR_HCE_BIT (1 << 8)
173#define SCR_SMD_BIT (1 << 7)
174#define SCR_EA_BIT (1 << 3)
175#define SCR_FIQ_BIT (1 << 2)
176#define SCR_IRQ_BIT (1 << 1)
177#define SCR_NS_BIT (1 << 0)
Achin Gupta27b895e2014-05-04 18:38:28 +0100178#define SCR_VALID_BIT_MASK 0x2f8f
Achin Gupta4f6ad662013-10-25 09:08:21 +0100179
dp-arm595d0d52017-02-08 11:51:50 +0000180/* MDCR definitions */
181#define MDCR_SPD32(x) ((x) << 14)
182#define MDCR_SPD32_LEGACY 0x0
183#define MDCR_SPD32_DISABLE 0x2
184#define MDCR_SPD32_ENABLE 0x3
185#define MDCR_SDD_BIT (1 << 16)
186
187#define MDCR_DEF_VAL (MDCR_SDD_BIT | MDCR_SPD32(MDCR_SPD32_DISABLE))
188
Achin Gupta4f6ad662013-10-25 09:08:21 +0100189/* HCR definitions */
Jeenu Viswambharanbc1a9292017-02-16 14:55:15 +0000190#define HCR_RW_SHIFT 31
191#define HCR_RW_BIT (1ull << HCR_RW_SHIFT)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100192#define HCR_AMO_BIT (1 << 5)
193#define HCR_IMO_BIT (1 << 4)
194#define HCR_FMO_BIT (1 << 3)
195
Gerald Lejeune851dc7e2016-03-22 11:11:46 +0100196/* ISR definitions */
197#define ISR_A_SHIFT 8
198#define ISR_I_SHIFT 7
199#define ISR_F_SHIFT 6
200
Achin Gupta4f6ad662013-10-25 09:08:21 +0100201/* CNTHCTL_EL2 definitions */
Andrew Thoelke4e126072014-06-04 21:10:52 +0100202#define EVNTEN_BIT (1 << 2)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100203#define EL1PCEN_BIT (1 << 1)
204#define EL1PCTEN_BIT (1 << 0)
205
206/* CNTKCTL_EL1 definitions */
207#define EL0PTEN_BIT (1 << 9)
208#define EL0VTEN_BIT (1 << 8)
209#define EL0PCTEN_BIT (1 << 0)
210#define EL0VCTEN_BIT (1 << 1)
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100211#define EVNTEN_BIT (1 << 2)
212#define EVNTDIR_BIT (1 << 3)
213#define EVNTI_SHIFT 4
214#define EVNTI_MASK 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +0100215
216/* CPTR_EL3 definitions */
Harry Liebel4f603682014-01-14 18:11:48 +0000217#define TCPAC_BIT (1 << 31)
218#define TTA_BIT (1 << 20)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100219#define TFP_BIT (1 << 10)
220
221/* CPSR/SPSR definitions */
222#define DAIF_FIQ_BIT (1 << 0)
223#define DAIF_IRQ_BIT (1 << 1)
224#define DAIF_ABT_BIT (1 << 2)
225#define DAIF_DBG_BIT (1 << 3)
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100226#define SPSR_DAIF_SHIFT 6
227#define SPSR_DAIF_MASK 0xf
228
229#define SPSR_AIF_SHIFT 6
230#define SPSR_AIF_MASK 0x7
231
232#define SPSR_E_SHIFT 9
233#define SPSR_E_MASK 0x1
234#define SPSR_E_LITTLE 0x0
235#define SPSR_E_BIG 0x1
236
237#define SPSR_T_SHIFT 5
238#define SPSR_T_MASK 0x1
239#define SPSR_T_ARM 0x0
240#define SPSR_T_THUMB 0x1
241
242#define DISABLE_ALL_EXCEPTIONS \
243 (DAIF_FIQ_BIT | DAIF_IRQ_BIT | DAIF_ABT_BIT | DAIF_DBG_BIT)
244
Yatharth Kocharede39cb2016-11-14 12:01:04 +0000245/*
246 * RMR_EL3 definitions
247 */
248#define RMR_EL3_RR_BIT (1 << 1)
249#define RMR_EL3_AA64_BIT (1 << 0)
250
251/*
252 * HI-VECTOR address for AArch32 state
253 */
254#define HI_VECTOR_BASE (0xFFFF0000)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100255
256/*
257 * TCR defintions
258 */
259#define TCR_EL3_RES1 ((1UL << 31) | (1UL << 23))
Lin Ma741a3822014-06-27 16:56:30 -0700260#define TCR_EL1_IPS_SHIFT 32
261#define TCR_EL3_PS_SHIFT 16
262
Antonio Nino Diazd48ae612016-08-02 09:21:41 +0100263#define TCR_TxSZ_MIN 16
264#define TCR_TxSZ_MAX 39
265
Lin Ma741a3822014-06-27 16:56:30 -0700266/* (internal) physical address size bits in EL3/EL1 */
267#define TCR_PS_BITS_4GB (0x0)
268#define TCR_PS_BITS_64GB (0x1)
269#define TCR_PS_BITS_1TB (0x2)
270#define TCR_PS_BITS_4TB (0x3)
271#define TCR_PS_BITS_16TB (0x4)
272#define TCR_PS_BITS_256TB (0x5)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100273
Lin Ma741a3822014-06-27 16:56:30 -0700274#define ADDR_MASK_48_TO_63 0xFFFF000000000000UL
275#define ADDR_MASK_44_TO_47 0x0000F00000000000UL
276#define ADDR_MASK_42_TO_43 0x00000C0000000000UL
277#define ADDR_MASK_40_TO_41 0x0000030000000000UL
278#define ADDR_MASK_36_TO_39 0x000000F000000000UL
279#define ADDR_MASK_32_TO_35 0x0000000F00000000UL
Achin Gupta4f6ad662013-10-25 09:08:21 +0100280
281#define TCR_RGN_INNER_NC (0x0 << 8)
282#define TCR_RGN_INNER_WBA (0x1 << 8)
283#define TCR_RGN_INNER_WT (0x2 << 8)
284#define TCR_RGN_INNER_WBNA (0x3 << 8)
285
286#define TCR_RGN_OUTER_NC (0x0 << 10)
287#define TCR_RGN_OUTER_WBA (0x1 << 10)
288#define TCR_RGN_OUTER_WT (0x2 << 10)
289#define TCR_RGN_OUTER_WBNA (0x3 << 10)
290
291#define TCR_SH_NON_SHAREABLE (0x0 << 12)
292#define TCR_SH_OUTER_SHAREABLE (0x2 << 12)
293#define TCR_SH_INNER_SHAREABLE (0x3 << 12)
294
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100295#define MODE_SP_SHIFT 0x0
296#define MODE_SP_MASK 0x1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100297#define MODE_SP_EL0 0x0
298#define MODE_SP_ELX 0x1
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100299
300#define MODE_RW_SHIFT 0x4
301#define MODE_RW_MASK 0x1
302#define MODE_RW_64 0x0
303#define MODE_RW_32 0x1
304
305#define MODE_EL_SHIFT 0x2
306#define MODE_EL_MASK 0x3
Achin Gupta4f6ad662013-10-25 09:08:21 +0100307#define MODE_EL3 0x3
308#define MODE_EL2 0x2
309#define MODE_EL1 0x1
310#define MODE_EL0 0x0
311
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100312#define MODE32_SHIFT 0
313#define MODE32_MASK 0xf
314#define MODE32_usr 0x0
315#define MODE32_fiq 0x1
316#define MODE32_irq 0x2
317#define MODE32_svc 0x3
318#define MODE32_mon 0x6
319#define MODE32_abt 0x7
320#define MODE32_hyp 0xa
321#define MODE32_und 0xb
322#define MODE32_sys 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +0100323
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100324#define GET_RW(mode) (((mode) >> MODE_RW_SHIFT) & MODE_RW_MASK)
325#define GET_EL(mode) (((mode) >> MODE_EL_SHIFT) & MODE_EL_MASK)
326#define GET_SP(mode) (((mode) >> MODE_SP_SHIFT) & MODE_SP_MASK)
327#define GET_M32(mode) (((mode) >> MODE32_SHIFT) & MODE32_MASK)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100328
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100329#define SPSR_64(el, sp, daif) \
330 (MODE_RW_64 << MODE_RW_SHIFT | \
331 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
332 ((sp) & MODE_SP_MASK) << MODE_SP_SHIFT | \
333 ((daif) & SPSR_DAIF_MASK) << SPSR_DAIF_SHIFT)
334
335#define SPSR_MODE32(mode, isa, endian, aif) \
336 (MODE_RW_32 << MODE_RW_SHIFT | \
337 ((mode) & MODE32_MASK) << MODE32_SHIFT | \
338 ((isa) & SPSR_T_MASK) << SPSR_T_SHIFT | \
339 ((endian) & SPSR_E_MASK) << SPSR_E_SHIFT | \
340 ((aif) & SPSR_AIF_MASK) << SPSR_AIF_SHIFT)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100341
Dan Handley0cdebbd2015-03-30 17:15:16 +0100342/*
343 * CTR_EL0 definitions
344 */
345#define CTR_CWG_SHIFT 24
346#define CTR_CWG_MASK 0xf
347#define CTR_ERG_SHIFT 20
348#define CTR_ERG_MASK 0xf
349#define CTR_DMINLINE_SHIFT 16
350#define CTR_DMINLINE_MASK 0xf
351#define CTR_L1IP_SHIFT 14
352#define CTR_L1IP_MASK 0x3
353#define CTR_IMINLINE_SHIFT 0
354#define CTR_IMINLINE_MASK 0xf
355
356#define MAX_CACHE_LINE_SIZE 0x800 /* 2KB */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100357
Achin Gupta405406d2014-05-09 12:00:17 +0100358/* Physical timer control register bit fields shifts and masks */
359#define CNTP_CTL_ENABLE_SHIFT 0
360#define CNTP_CTL_IMASK_SHIFT 1
361#define CNTP_CTL_ISTATUS_SHIFT 2
362
363#define CNTP_CTL_ENABLE_MASK 1
364#define CNTP_CTL_IMASK_MASK 1
365#define CNTP_CTL_ISTATUS_MASK 1
366
367#define get_cntp_ctl_enable(x) ((x >> CNTP_CTL_ENABLE_SHIFT) & \
368 CNTP_CTL_ENABLE_MASK)
369#define get_cntp_ctl_imask(x) ((x >> CNTP_CTL_IMASK_SHIFT) & \
370 CNTP_CTL_IMASK_MASK)
371#define get_cntp_ctl_istatus(x) ((x >> CNTP_CTL_ISTATUS_SHIFT) & \
372 CNTP_CTL_ISTATUS_MASK)
373
374#define set_cntp_ctl_enable(x) (x |= 1 << CNTP_CTL_ENABLE_SHIFT)
375#define set_cntp_ctl_imask(x) (x |= 1 << CNTP_CTL_IMASK_SHIFT)
376
377#define clr_cntp_ctl_enable(x) (x &= ~(1 << CNTP_CTL_ENABLE_SHIFT))
378#define clr_cntp_ctl_imask(x) (x &= ~(1 << CNTP_CTL_IMASK_SHIFT))
379
Achin Gupta4f6ad662013-10-25 09:08:21 +0100380/* Exception Syndrome register bits and bobs */
381#define ESR_EC_SHIFT 26
382#define ESR_EC_MASK 0x3f
383#define ESR_EC_LENGTH 6
384#define EC_UNKNOWN 0x0
385#define EC_WFE_WFI 0x1
386#define EC_AARCH32_CP15_MRC_MCR 0x3
387#define EC_AARCH32_CP15_MRRC_MCRR 0x4
388#define EC_AARCH32_CP14_MRC_MCR 0x5
389#define EC_AARCH32_CP14_LDC_STC 0x6
390#define EC_FP_SIMD 0x7
391#define EC_AARCH32_CP10_MRC 0x8
392#define EC_AARCH32_CP14_MRRC_MCRR 0xc
393#define EC_ILLEGAL 0xe
394#define EC_AARCH32_SVC 0x11
395#define EC_AARCH32_HVC 0x12
396#define EC_AARCH32_SMC 0x13
397#define EC_AARCH64_SVC 0x15
398#define EC_AARCH64_HVC 0x16
399#define EC_AARCH64_SMC 0x17
400#define EC_AARCH64_SYS 0x18
401#define EC_IABORT_LOWER_EL 0x20
402#define EC_IABORT_CUR_EL 0x21
403#define EC_PC_ALIGN 0x22
404#define EC_DABORT_LOWER_EL 0x24
405#define EC_DABORT_CUR_EL 0x25
406#define EC_SP_ALIGN 0x26
407#define EC_AARCH32_FP 0x28
408#define EC_AARCH64_FP 0x2c
409#define EC_SERROR 0x2f
410
411#define EC_BITS(x) (x >> ESR_EC_SHIFT) & ESR_EC_MASK
412
Vignesh Radhakrishnanb4a72942017-03-03 10:58:05 -0800413/* Reset bit inside the Reset management register for EL3 (RMR_EL3) */
414#define RMR_RESET_REQUEST_SHIFT 0x1u
415#define RMR_WARM_RESET_CPU (1u << RMR_RESET_REQUEST_SHIFT)
416
Dan Handleyed6ff952014-05-14 17:44:19 +0100417/*******************************************************************************
Antonio Nino Diazac998032017-02-27 17:23:54 +0000418 * Definitions of register offsets, fields and macros for CPU system
419 * instructions.
420 ******************************************************************************/
421
422#define TLBI_ADDR_SHIFT 12
423#define TLBI_ADDR_MASK ULL(0x00000FFFFFFFFFFF)
424#define TLBI_ADDR(x) (((x) >> TLBI_ADDR_SHIFT) & TLBI_ADDR_MASK)
425
426/*******************************************************************************
Dan Handleyed6ff952014-05-14 17:44:19 +0100427 * Definitions of register offsets and fields in the CNTCTLBase Frame of the
428 * system level implementation of the Generic Timer.
429 ******************************************************************************/
430#define CNTNSAR 0x4
431#define CNTNSAR_NS_SHIFT(x) x
432
433#define CNTACR_BASE(x) (0x40 + (x << 2))
434#define CNTACR_RPCT_SHIFT 0x0
435#define CNTACR_RVCT_SHIFT 0x1
436#define CNTACR_RFRQ_SHIFT 0x2
437#define CNTACR_RVOFF_SHIFT 0x3
438#define CNTACR_RWVT_SHIFT 0x4
439#define CNTACR_RWPT_SHIFT 0x5
440
David Cunado5f55e282016-10-31 17:37:34 +0000441/* PMCR_EL0 definitions */
442#define PMCR_EL0_N_SHIFT 11
443#define PMCR_EL0_N_MASK 0x1f
444#define PMCR_EL0_N_BITS (PMCR_EL0_N_MASK << PMCR_EL0_N_SHIFT)
445
Achin Gupta4f6ad662013-10-25 09:08:21 +0100446#endif /* __ARCH_H__ */