blob: f1ad9bb421b04b623ff3ceb7c5607f7e6bd24e3c [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 *
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
Antonio Nino Diazac998032017-02-27 17:23:54 +000034#include <utils.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010035
36/*******************************************************************************
37 * MIDR bit definitions
38 ******************************************************************************/
Soby Mathewc704cbc2014-08-14 11:33:56 +010039#define MIDR_IMPL_MASK 0xff
40#define MIDR_IMPL_SHIFT 0x18
Soby Mathew802f8652014-08-14 16:19:29 +010041#define MIDR_VAR_SHIFT 20
Soby Mathewc0884332014-09-22 12:11:36 +010042#define MIDR_VAR_BITS 4
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000043#define MIDR_VAR_MASK 0xf
Soby Mathew802f8652014-08-14 16:19:29 +010044#define MIDR_REV_SHIFT 0
Soby Mathewc0884332014-09-22 12:11:36 +010045#define MIDR_REV_BITS 4
Jeenu Viswambharand5ec3672017-01-03 11:01:51 +000046#define MIDR_REV_MASK 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +010047#define MIDR_PN_MASK 0xfff
48#define MIDR_PN_SHIFT 0x4
Achin Gupta4f6ad662013-10-25 09:08:21 +010049
50/*******************************************************************************
51 * MPIDR macros
52 ******************************************************************************/
53#define MPIDR_CPU_MASK MPIDR_AFFLVL_MASK
54#define MPIDR_CLUSTER_MASK MPIDR_AFFLVL_MASK << MPIDR_AFFINITY_BITS
55#define MPIDR_AFFINITY_BITS 8
56#define MPIDR_AFFLVL_MASK 0xff
57#define MPIDR_AFF0_SHIFT 0
58#define MPIDR_AFF1_SHIFT 8
59#define MPIDR_AFF2_SHIFT 16
60#define MPIDR_AFF3_SHIFT 32
61#define MPIDR_AFFINITY_MASK 0xff00ffffff
62#define MPIDR_AFFLVL_SHIFT 3
63#define MPIDR_AFFLVL0 0
64#define MPIDR_AFFLVL1 1
65#define MPIDR_AFFLVL2 2
66#define MPIDR_AFFLVL3 3
Vikram Kanigiri4e97e542015-02-26 15:25:58 +000067#define MPIDR_AFFLVL0_VAL(mpidr) \
68 ((mpidr >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK)
69#define MPIDR_AFFLVL1_VAL(mpidr) \
70 ((mpidr >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK)
71#define MPIDR_AFFLVL2_VAL(mpidr) \
72 ((mpidr >> MPIDR_AFF2_SHIFT) & MPIDR_AFFLVL_MASK)
73#define MPIDR_AFFLVL3_VAL(mpidr) \
74 ((mpidr >> MPIDR_AFF3_SHIFT) & MPIDR_AFFLVL_MASK)
Soby Mathewe2b2d8f2014-12-04 14:14:12 +000075/*
76 * The MPIDR_MAX_AFFLVL count starts from 0. Take care to
77 * add one while using this macro to define array sizes.
78 * TODO: Support only the first 3 affinity levels for now.
79 */
Achin Gupta4f6ad662013-10-25 09:08:21 +010080#define MPIDR_MAX_AFFLVL 2
81
82/* Constant to highlight the assumption that MPIDR allocation starts from 0 */
83#define FIRST_MPIDR 0
84
85/*******************************************************************************
Andrew Thoelke3f78dc32014-06-02 15:44:43 +010086 * Definitions for CPU system register interface to GICv3
87 ******************************************************************************/
88#define ICC_SRE_EL1 S3_0_C12_C12_5
89#define ICC_SRE_EL2 S3_4_C12_C9_5
90#define ICC_SRE_EL3 S3_6_C12_C12_5
91#define ICC_CTLR_EL1 S3_0_C12_C12_4
92#define ICC_CTLR_EL3 S3_6_C12_C12_4
93#define ICC_PMR_EL1 S3_0_C4_C6_0
Achin Gupta92712a52015-09-03 14:18:02 +010094#define ICC_IGRPEN1_EL3 S3_6_c12_c12_7
95#define ICC_IGRPEN0_EL1 S3_0_c12_c12_6
96#define ICC_HPPIR0_EL1 S3_0_c12_c8_2
97#define ICC_HPPIR1_EL1 S3_0_c12_c12_2
98#define ICC_IAR0_EL1 S3_0_c12_c8_0
99#define ICC_IAR1_EL1 S3_0_c12_c12_0
100#define ICC_EOIR0_EL1 S3_0_c12_c8_1
101#define ICC_EOIR1_EL1 S3_0_c12_c12_1
Andrew Thoelke3f78dc32014-06-02 15:44:43 +0100102
103/*******************************************************************************
Achin Guptac2b43af2013-10-31 11:27:43 +0000104 * Generic timer memory mapped registers & offsets
105 ******************************************************************************/
106#define CNTCR_OFF 0x000
107#define CNTFID_OFF 0x020
108
109#define CNTCR_EN (1 << 0)
110#define CNTCR_HDBG (1 << 1)
Sandrine Bailleux3fa98472014-03-31 11:25:18 +0100111#define CNTCR_FCREQ(x) ((x) << 8)
Achin Guptac2b43af2013-10-31 11:27:43 +0000112
113/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100114 * System register bit definitions
115 ******************************************************************************/
116/* CLIDR definitions */
117#define LOUIS_SHIFT 21
118#define LOC_SHIFT 24
119#define CLIDR_FIELD_WIDTH 3
120
121/* CSSELR definitions */
122#define LEVEL_SHIFT 1
123
124/* D$ set/way op type defines */
125#define DCISW 0x0
126#define DCCISW 0x1
127#define DCCSW 0x2
128
129/* ID_AA64PFR0_EL1 definitions */
130#define ID_AA64PFR0_EL0_SHIFT 0
131#define ID_AA64PFR0_EL1_SHIFT 4
132#define ID_AA64PFR0_EL2_SHIFT 8
133#define ID_AA64PFR0_EL3_SHIFT 12
134#define ID_AA64PFR0_ELX_MASK 0xf
135
Achin Gupta92712a52015-09-03 14:18:02 +0100136#define ID_AA64PFR0_GIC_SHIFT 24
137#define ID_AA64PFR0_GIC_WIDTH 4
138#define ID_AA64PFR0_GIC_MASK ((1 << ID_AA64PFR0_GIC_WIDTH) - 1)
139
Antonio Nino Diazd1beee22016-12-13 15:28:54 +0000140/* ID_AA64MMFR0_EL1 definitions */
141#define ID_AA64MMFR0_EL1_PARANGE_MASK 0xf
142
143#define PARANGE_0000 32
144#define PARANGE_0001 36
145#define PARANGE_0010 40
146#define PARANGE_0011 42
147#define PARANGE_0100 44
148#define PARANGE_0101 48
149
Achin Gupta4f6ad662013-10-25 09:08:21 +0100150/* ID_PFR1_EL1 definitions */
151#define ID_PFR1_VIRTEXT_SHIFT 12
152#define ID_PFR1_VIRTEXT_MASK 0xf
153#define GET_VIRT_EXT(id) ((id >> ID_PFR1_VIRTEXT_SHIFT) \
154 & ID_PFR1_VIRTEXT_MASK)
155
156/* SCTLR definitions */
157#define SCTLR_EL2_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \
158 (1 << 18) | (1 << 16) | (1 << 11) | (1 << 5) | \
159 (1 << 4))
160
161#define SCTLR_EL1_RES1 ((1 << 29) | (1 << 28) | (1 << 23) | (1 << 22) | \
Vikram Kanigiri94efd1f2015-07-22 11:53:52 +0100162 (1 << 20) | (1 << 11))
Jens Wiklanderc93c9df2014-09-04 10:23:27 +0200163#define SCTLR_AARCH32_EL1_RES1 \
164 ((1 << 23) | (1 << 22) | (1 << 11) | (1 << 4) | \
165 (1 << 3))
166
Achin Gupta4f6ad662013-10-25 09:08:21 +0100167#define SCTLR_M_BIT (1 << 0)
168#define SCTLR_A_BIT (1 << 1)
169#define SCTLR_C_BIT (1 << 2)
170#define SCTLR_SA_BIT (1 << 3)
Soby Mathewa993c422016-09-29 14:15:57 +0100171#define SCTLR_CP15BEN_BIT (1 << 5)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100172#define SCTLR_I_BIT (1 << 12)
Soby Mathewa993c422016-09-29 14:15:57 +0100173#define SCTLR_NTWI_BIT (1 << 16)
174#define SCTLR_NTWE_BIT (1 << 18)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100175#define SCTLR_WXN_BIT (1 << 19)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100176#define SCTLR_EE_BIT (1 << 25)
177
Achin Gupta4f6ad662013-10-25 09:08:21 +0100178/* CPACR_El1 definitions */
179#define CPACR_EL1_FPEN(x) (x << 20)
180#define CPACR_EL1_FP_TRAP_EL0 0x1
181#define CPACR_EL1_FP_TRAP_ALL 0x2
182#define CPACR_EL1_FP_TRAP_NONE 0x3
183
184/* SCR definitions */
185#define SCR_RES1_BITS ((1 << 4) | (1 << 5))
186#define SCR_TWE_BIT (1 << 13)
187#define SCR_TWI_BIT (1 << 12)
188#define SCR_ST_BIT (1 << 11)
189#define SCR_RW_BIT (1 << 10)
190#define SCR_SIF_BIT (1 << 9)
191#define SCR_HCE_BIT (1 << 8)
192#define SCR_SMD_BIT (1 << 7)
193#define SCR_EA_BIT (1 << 3)
194#define SCR_FIQ_BIT (1 << 2)
195#define SCR_IRQ_BIT (1 << 1)
196#define SCR_NS_BIT (1 << 0)
Achin Gupta27b895e2014-05-04 18:38:28 +0100197#define SCR_VALID_BIT_MASK 0x2f8f
Achin Gupta4f6ad662013-10-25 09:08:21 +0100198
dp-arm595d0d52017-02-08 11:51:50 +0000199/* MDCR definitions */
200#define MDCR_SPD32(x) ((x) << 14)
201#define MDCR_SPD32_LEGACY 0x0
202#define MDCR_SPD32_DISABLE 0x2
203#define MDCR_SPD32_ENABLE 0x3
204#define MDCR_SDD_BIT (1 << 16)
205
206#define MDCR_DEF_VAL (MDCR_SDD_BIT | MDCR_SPD32(MDCR_SPD32_DISABLE))
207
Achin Gupta4f6ad662013-10-25 09:08:21 +0100208/* HCR definitions */
209#define HCR_RW_BIT (1ull << 31)
210#define HCR_AMO_BIT (1 << 5)
211#define HCR_IMO_BIT (1 << 4)
212#define HCR_FMO_BIT (1 << 3)
213
Gerald Lejeune851dc7e2016-03-22 11:11:46 +0100214/* ISR definitions */
215#define ISR_A_SHIFT 8
216#define ISR_I_SHIFT 7
217#define ISR_F_SHIFT 6
218
Achin Gupta4f6ad662013-10-25 09:08:21 +0100219/* CNTHCTL_EL2 definitions */
Andrew Thoelke4e126072014-06-04 21:10:52 +0100220#define EVNTEN_BIT (1 << 2)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100221#define EL1PCEN_BIT (1 << 1)
222#define EL1PCTEN_BIT (1 << 0)
223
224/* CNTKCTL_EL1 definitions */
225#define EL0PTEN_BIT (1 << 9)
226#define EL0VTEN_BIT (1 << 8)
227#define EL0PCTEN_BIT (1 << 0)
228#define EL0VCTEN_BIT (1 << 1)
Sandrine Bailleux798140d2014-07-17 16:06:39 +0100229#define EVNTEN_BIT (1 << 2)
230#define EVNTDIR_BIT (1 << 3)
231#define EVNTI_SHIFT 4
232#define EVNTI_MASK 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +0100233
234/* CPTR_EL3 definitions */
Harry Liebel4f603682014-01-14 18:11:48 +0000235#define TCPAC_BIT (1 << 31)
236#define TTA_BIT (1 << 20)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100237#define TFP_BIT (1 << 10)
238
239/* CPSR/SPSR definitions */
240#define DAIF_FIQ_BIT (1 << 0)
241#define DAIF_IRQ_BIT (1 << 1)
242#define DAIF_ABT_BIT (1 << 2)
243#define DAIF_DBG_BIT (1 << 3)
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100244#define SPSR_DAIF_SHIFT 6
245#define SPSR_DAIF_MASK 0xf
246
247#define SPSR_AIF_SHIFT 6
248#define SPSR_AIF_MASK 0x7
249
250#define SPSR_E_SHIFT 9
251#define SPSR_E_MASK 0x1
252#define SPSR_E_LITTLE 0x0
253#define SPSR_E_BIG 0x1
254
255#define SPSR_T_SHIFT 5
256#define SPSR_T_MASK 0x1
257#define SPSR_T_ARM 0x0
258#define SPSR_T_THUMB 0x1
259
260#define DISABLE_ALL_EXCEPTIONS \
261 (DAIF_FIQ_BIT | DAIF_IRQ_BIT | DAIF_ABT_BIT | DAIF_DBG_BIT)
262
Achin Gupta4f6ad662013-10-25 09:08:21 +0100263
264/*
265 * TCR defintions
266 */
267#define TCR_EL3_RES1 ((1UL << 31) | (1UL << 23))
Lin Ma741a3822014-06-27 16:56:30 -0700268#define TCR_EL1_IPS_SHIFT 32
269#define TCR_EL3_PS_SHIFT 16
270
Antonio Nino Diazd48ae612016-08-02 09:21:41 +0100271#define TCR_TxSZ_MIN 16
272#define TCR_TxSZ_MAX 39
273
Lin Ma741a3822014-06-27 16:56:30 -0700274/* (internal) physical address size bits in EL3/EL1 */
275#define TCR_PS_BITS_4GB (0x0)
276#define TCR_PS_BITS_64GB (0x1)
277#define TCR_PS_BITS_1TB (0x2)
278#define TCR_PS_BITS_4TB (0x3)
279#define TCR_PS_BITS_16TB (0x4)
280#define TCR_PS_BITS_256TB (0x5)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100281
Lin Ma741a3822014-06-27 16:56:30 -0700282#define ADDR_MASK_48_TO_63 0xFFFF000000000000UL
283#define ADDR_MASK_44_TO_47 0x0000F00000000000UL
284#define ADDR_MASK_42_TO_43 0x00000C0000000000UL
285#define ADDR_MASK_40_TO_41 0x0000030000000000UL
286#define ADDR_MASK_36_TO_39 0x000000F000000000UL
287#define ADDR_MASK_32_TO_35 0x0000000F00000000UL
Achin Gupta4f6ad662013-10-25 09:08:21 +0100288
289#define TCR_RGN_INNER_NC (0x0 << 8)
290#define TCR_RGN_INNER_WBA (0x1 << 8)
291#define TCR_RGN_INNER_WT (0x2 << 8)
292#define TCR_RGN_INNER_WBNA (0x3 << 8)
293
294#define TCR_RGN_OUTER_NC (0x0 << 10)
295#define TCR_RGN_OUTER_WBA (0x1 << 10)
296#define TCR_RGN_OUTER_WT (0x2 << 10)
297#define TCR_RGN_OUTER_WBNA (0x3 << 10)
298
299#define TCR_SH_NON_SHAREABLE (0x0 << 12)
300#define TCR_SH_OUTER_SHAREABLE (0x2 << 12)
301#define TCR_SH_INNER_SHAREABLE (0x3 << 12)
302
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100303#define MODE_SP_SHIFT 0x0
304#define MODE_SP_MASK 0x1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100305#define MODE_SP_EL0 0x0
306#define MODE_SP_ELX 0x1
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100307
308#define MODE_RW_SHIFT 0x4
309#define MODE_RW_MASK 0x1
310#define MODE_RW_64 0x0
311#define MODE_RW_32 0x1
312
313#define MODE_EL_SHIFT 0x2
314#define MODE_EL_MASK 0x3
Achin Gupta4f6ad662013-10-25 09:08:21 +0100315#define MODE_EL3 0x3
316#define MODE_EL2 0x2
317#define MODE_EL1 0x1
318#define MODE_EL0 0x0
319
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100320#define MODE32_SHIFT 0
321#define MODE32_MASK 0xf
322#define MODE32_usr 0x0
323#define MODE32_fiq 0x1
324#define MODE32_irq 0x2
325#define MODE32_svc 0x3
326#define MODE32_mon 0x6
327#define MODE32_abt 0x7
328#define MODE32_hyp 0xa
329#define MODE32_und 0xb
330#define MODE32_sys 0xf
Achin Gupta4f6ad662013-10-25 09:08:21 +0100331
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100332#define GET_RW(mode) (((mode) >> MODE_RW_SHIFT) & MODE_RW_MASK)
333#define GET_EL(mode) (((mode) >> MODE_EL_SHIFT) & MODE_EL_MASK)
334#define GET_SP(mode) (((mode) >> MODE_SP_SHIFT) & MODE_SP_MASK)
335#define GET_M32(mode) (((mode) >> MODE32_SHIFT) & MODE32_MASK)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100336
Vikram Kanigiri9851e422014-05-13 14:42:08 +0100337#define SPSR_64(el, sp, daif) \
338 (MODE_RW_64 << MODE_RW_SHIFT | \
339 ((el) & MODE_EL_MASK) << MODE_EL_SHIFT | \
340 ((sp) & MODE_SP_MASK) << MODE_SP_SHIFT | \
341 ((daif) & SPSR_DAIF_MASK) << SPSR_DAIF_SHIFT)
342
343#define SPSR_MODE32(mode, isa, endian, aif) \
344 (MODE_RW_32 << MODE_RW_SHIFT | \
345 ((mode) & MODE32_MASK) << MODE32_SHIFT | \
346 ((isa) & SPSR_T_MASK) << SPSR_T_SHIFT | \
347 ((endian) & SPSR_E_MASK) << SPSR_E_SHIFT | \
348 ((aif) & SPSR_AIF_MASK) << SPSR_AIF_SHIFT)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100349
Dan Handley0cdebbd2015-03-30 17:15:16 +0100350/*
351 * CTR_EL0 definitions
352 */
353#define CTR_CWG_SHIFT 24
354#define CTR_CWG_MASK 0xf
355#define CTR_ERG_SHIFT 20
356#define CTR_ERG_MASK 0xf
357#define CTR_DMINLINE_SHIFT 16
358#define CTR_DMINLINE_MASK 0xf
359#define CTR_L1IP_SHIFT 14
360#define CTR_L1IP_MASK 0x3
361#define CTR_IMINLINE_SHIFT 0
362#define CTR_IMINLINE_MASK 0xf
363
364#define MAX_CACHE_LINE_SIZE 0x800 /* 2KB */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100365
Achin Gupta405406d2014-05-09 12:00:17 +0100366/* Physical timer control register bit fields shifts and masks */
367#define CNTP_CTL_ENABLE_SHIFT 0
368#define CNTP_CTL_IMASK_SHIFT 1
369#define CNTP_CTL_ISTATUS_SHIFT 2
370
371#define CNTP_CTL_ENABLE_MASK 1
372#define CNTP_CTL_IMASK_MASK 1
373#define CNTP_CTL_ISTATUS_MASK 1
374
375#define get_cntp_ctl_enable(x) ((x >> CNTP_CTL_ENABLE_SHIFT) & \
376 CNTP_CTL_ENABLE_MASK)
377#define get_cntp_ctl_imask(x) ((x >> CNTP_CTL_IMASK_SHIFT) & \
378 CNTP_CTL_IMASK_MASK)
379#define get_cntp_ctl_istatus(x) ((x >> CNTP_CTL_ISTATUS_SHIFT) & \
380 CNTP_CTL_ISTATUS_MASK)
381
382#define set_cntp_ctl_enable(x) (x |= 1 << CNTP_CTL_ENABLE_SHIFT)
383#define set_cntp_ctl_imask(x) (x |= 1 << CNTP_CTL_IMASK_SHIFT)
384
385#define clr_cntp_ctl_enable(x) (x &= ~(1 << CNTP_CTL_ENABLE_SHIFT))
386#define clr_cntp_ctl_imask(x) (x &= ~(1 << CNTP_CTL_IMASK_SHIFT))
387
Achin Gupta4f6ad662013-10-25 09:08:21 +0100388/* Exception Syndrome register bits and bobs */
389#define ESR_EC_SHIFT 26
390#define ESR_EC_MASK 0x3f
391#define ESR_EC_LENGTH 6
392#define EC_UNKNOWN 0x0
393#define EC_WFE_WFI 0x1
394#define EC_AARCH32_CP15_MRC_MCR 0x3
395#define EC_AARCH32_CP15_MRRC_MCRR 0x4
396#define EC_AARCH32_CP14_MRC_MCR 0x5
397#define EC_AARCH32_CP14_LDC_STC 0x6
398#define EC_FP_SIMD 0x7
399#define EC_AARCH32_CP10_MRC 0x8
400#define EC_AARCH32_CP14_MRRC_MCRR 0xc
401#define EC_ILLEGAL 0xe
402#define EC_AARCH32_SVC 0x11
403#define EC_AARCH32_HVC 0x12
404#define EC_AARCH32_SMC 0x13
405#define EC_AARCH64_SVC 0x15
406#define EC_AARCH64_HVC 0x16
407#define EC_AARCH64_SMC 0x17
408#define EC_AARCH64_SYS 0x18
409#define EC_IABORT_LOWER_EL 0x20
410#define EC_IABORT_CUR_EL 0x21
411#define EC_PC_ALIGN 0x22
412#define EC_DABORT_LOWER_EL 0x24
413#define EC_DABORT_CUR_EL 0x25
414#define EC_SP_ALIGN 0x26
415#define EC_AARCH32_FP 0x28
416#define EC_AARCH64_FP 0x2c
417#define EC_SERROR 0x2f
418
419#define EC_BITS(x) (x >> ESR_EC_SHIFT) & ESR_EC_MASK
420
Dan Handleyed6ff952014-05-14 17:44:19 +0100421/*******************************************************************************
Antonio Nino Diazac998032017-02-27 17:23:54 +0000422 * Definitions of register offsets, fields and macros for CPU system
423 * instructions.
424 ******************************************************************************/
425
426#define TLBI_ADDR_SHIFT 12
427#define TLBI_ADDR_MASK ULL(0x00000FFFFFFFFFFF)
428#define TLBI_ADDR(x) (((x) >> TLBI_ADDR_SHIFT) & TLBI_ADDR_MASK)
429
430/*******************************************************************************
Dan Handleyed6ff952014-05-14 17:44:19 +0100431 * Definitions of register offsets and fields in the CNTCTLBase Frame of the
432 * system level implementation of the Generic Timer.
433 ******************************************************************************/
434#define CNTNSAR 0x4
435#define CNTNSAR_NS_SHIFT(x) x
436
437#define CNTACR_BASE(x) (0x40 + (x << 2))
438#define CNTACR_RPCT_SHIFT 0x0
439#define CNTACR_RVCT_SHIFT 0x1
440#define CNTACR_RFRQ_SHIFT 0x2
441#define CNTACR_RVOFF_SHIFT 0x3
442#define CNTACR_RWVT_SHIFT 0x4
443#define CNTACR_RWPT_SHIFT 0x5
444
David Cunado5f55e282016-10-31 17:37:34 +0000445/* PMCR_EL0 definitions */
446#define PMCR_EL0_N_SHIFT 11
447#define PMCR_EL0_N_MASK 0x1f
448#define PMCR_EL0_N_BITS (PMCR_EL0_N_MASK << PMCR_EL0_N_SHIFT)
449
Achin Gupta4f6ad662013-10-25 09:08:21 +0100450#endif /* __ARCH_H__ */