blob: 1053006a91bef61dcff123b3ceeabf7d5e8f5e0e [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
johpow01873d4242020-10-02 13:41:11 -05002 * Copyright (c) 2013-2021, ARM Limited and Contributors. All rights reserved.
Varun Wadekardd4f0882018-06-18 16:15:51 -07003 * Copyright (c) 2020, NVIDIA Corporation. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01004 *
dp-arm82cb2c12017-05-03 09:38:09 +01005 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01006 */
7
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +01008#ifndef ARCH_H
9#define ARCH_H
Achin Gupta4f6ad662013-10-25 09:08:21 +010010
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +000011#include <lib/utils_def.h>
Achin Gupta4f6ad662013-10-25 09:08:21 +010012
13/*******************************************************************************
14 * MIDR bit definitions
15 ******************************************************************************/
Varun Wadekar030567e2017-05-25 18:04:48 -070016#define MIDR_IMPL_MASK U(0xff)
17#define MIDR_IMPL_SHIFT U(0x18)
18#define MIDR_VAR_SHIFT U(20)
19#define MIDR_VAR_BITS U(4)
20#define MIDR_VAR_MASK U(0xf)
21#define MIDR_REV_SHIFT U(0)
22#define MIDR_REV_BITS U(4)
23#define MIDR_REV_MASK U(0xf)
24#define MIDR_PN_MASK U(0xfff)
25#define MIDR_PN_SHIFT U(0x4)
Achin Gupta4f6ad662013-10-25 09:08:21 +010026
27/*******************************************************************************
28 * MPIDR macros
29 ******************************************************************************/
Antonio Nino Diaz30399882018-07-12 13:23:59 +010030#define MPIDR_MT_MASK (ULL(1) << 24)
Achin Gupta4f6ad662013-10-25 09:08:21 +010031#define MPIDR_CPU_MASK MPIDR_AFFLVL_MASK
Varun Wadekar030567e2017-05-25 18:04:48 -070032#define MPIDR_CLUSTER_MASK (MPIDR_AFFLVL_MASK << MPIDR_AFFINITY_BITS)
33#define MPIDR_AFFINITY_BITS U(8)
Antonio Nino Diaz30399882018-07-12 13:23:59 +010034#define MPIDR_AFFLVL_MASK ULL(0xff)
Varun Wadekar030567e2017-05-25 18:04:48 -070035#define MPIDR_AFF0_SHIFT U(0)
36#define MPIDR_AFF1_SHIFT U(8)
37#define MPIDR_AFF2_SHIFT U(16)
38#define MPIDR_AFF3_SHIFT U(32)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +000039#define MPIDR_AFF_SHIFT(_n) MPIDR_AFF##_n##_SHIFT
Antonio Nino Diaz30399882018-07-12 13:23:59 +010040#define MPIDR_AFFINITY_MASK ULL(0xff00ffffff)
Varun Wadekar030567e2017-05-25 18:04:48 -070041#define MPIDR_AFFLVL_SHIFT U(3)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +000042#define MPIDR_AFFLVL0 ULL(0x0)
43#define MPIDR_AFFLVL1 ULL(0x1)
44#define MPIDR_AFFLVL2 ULL(0x2)
45#define MPIDR_AFFLVL3 ULL(0x3)
46#define MPIDR_AFFLVL(_n) MPIDR_AFFLVL##_n
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +000047#define MPIDR_AFFLVL0_VAL(mpidr) \
Antonio Nino Diaz0107aa42018-07-11 16:45:49 +010048 (((mpidr) >> MPIDR_AFF0_SHIFT) & MPIDR_AFFLVL_MASK)
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +000049#define MPIDR_AFFLVL1_VAL(mpidr) \
Antonio Nino Diaz0107aa42018-07-11 16:45:49 +010050 (((mpidr) >> MPIDR_AFF1_SHIFT) & MPIDR_AFFLVL_MASK)
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +000051#define MPIDR_AFFLVL2_VAL(mpidr) \
Antonio Nino Diaz0107aa42018-07-11 16:45:49 +010052 (((mpidr) >> MPIDR_AFF2_SHIFT) & MPIDR_AFFLVL_MASK)
Vikram Kanigiri4991ecd2015-02-26 15:25:58 +000053#define MPIDR_AFFLVL3_VAL(mpidr) \
Antonio Nino Diaz0107aa42018-07-11 16:45:49 +010054 (((mpidr) >> MPIDR_AFF3_SHIFT) & MPIDR_AFFLVL_MASK)
Soby Mathew235585b2014-12-04 14:14:12 +000055/*
56 * The MPIDR_MAX_AFFLVL count starts from 0. Take care to
57 * add one while using this macro to define array sizes.
58 * TODO: Support only the first 3 affinity levels for now.
59 */
Varun Wadekar030567e2017-05-25 18:04:48 -070060#define MPIDR_MAX_AFFLVL U(2)
Achin Gupta4f6ad662013-10-25 09:08:21 +010061
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +000062#define MPID_MASK (MPIDR_MT_MASK | \
63 (MPIDR_AFFLVL_MASK << MPIDR_AFF3_SHIFT) | \
64 (MPIDR_AFFLVL_MASK << MPIDR_AFF2_SHIFT) | \
65 (MPIDR_AFFLVL_MASK << MPIDR_AFF1_SHIFT) | \
66 (MPIDR_AFFLVL_MASK << MPIDR_AFF0_SHIFT))
67
68#define MPIDR_AFF_ID(mpid, n) \
69 (((mpid) >> MPIDR_AFF_SHIFT(n)) & MPIDR_AFFLVL_MASK)
70
71/*
72 * An invalid MPID. This value can be used by functions that return an MPID to
73 * indicate an error.
74 */
75#define INVALID_MPID U(0xFFFFFFFF)
Achin Gupta4f6ad662013-10-25 09:08:21 +010076
77/*******************************************************************************
Andrew Thoelke5c3272a2014-06-02 15:44:43 +010078 * Definitions for CPU system register interface to GICv3
79 ******************************************************************************/
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +000080#define ICC_IGRPEN1_EL1 S3_0_C12_C12_7
81#define ICC_SGI1R S3_0_C12_C11_5
82#define ICC_SRE_EL1 S3_0_C12_C12_5
83#define ICC_SRE_EL2 S3_4_C12_C9_5
84#define ICC_SRE_EL3 S3_6_C12_C12_5
85#define ICC_CTLR_EL1 S3_0_C12_C12_4
86#define ICC_CTLR_EL3 S3_6_C12_C12_4
87#define ICC_PMR_EL1 S3_0_C4_C6_0
88#define ICC_RPR_EL1 S3_0_C12_C11_3
89#define ICC_IGRPEN1_EL3 S3_6_c12_c12_7
90#define ICC_IGRPEN0_EL1 S3_0_c12_c12_6
91#define ICC_HPPIR0_EL1 S3_0_c12_c8_2
92#define ICC_HPPIR1_EL1 S3_0_c12_c12_2
93#define ICC_IAR0_EL1 S3_0_c12_c8_0
94#define ICC_IAR1_EL1 S3_0_c12_c12_0
95#define ICC_EOIR0_EL1 S3_0_c12_c8_1
96#define ICC_EOIR1_EL1 S3_0_c12_c12_1
97#define ICC_SGI0R_EL1 S3_0_c12_c11_7
Andrew Thoelke5c3272a2014-06-02 15:44:43 +010098
99/*******************************************************************************
Max Shvetsov28f39f02020-02-25 13:56:19 +0000100 * Definitions for EL2 system registers for save/restore routine
101 ******************************************************************************/
102
103#define CNTPOFF_EL2 S3_4_C14_C0_6
104#define HAFGRTR_EL2 S3_4_C3_C1_6
105#define HDFGRTR_EL2 S3_4_C3_C1_4
106#define HDFGWTR_EL2 S3_4_C3_C1_5
107#define HFGITR_EL2 S3_4_C1_C1_6
108#define HFGRTR_EL2 S3_4_C1_C1_4
109#define HFGWTR_EL2 S3_4_C1_C1_5
Max Shvetsov28f39f02020-02-25 13:56:19 +0000110#define ICH_HCR_EL2 S3_4_C12_C11_0
Max Shvetsov28f39f02020-02-25 13:56:19 +0000111#define ICH_VMCR_EL2 S3_4_C12_C11_7
Max Shvetsov28f39f02020-02-25 13:56:19 +0000112#define MPAMVPM0_EL2 S3_4_C10_C5_0
113#define MPAMVPM1_EL2 S3_4_C10_C5_1
114#define MPAMVPM2_EL2 S3_4_C10_C5_2
115#define MPAMVPM3_EL2 S3_4_C10_C5_3
116#define MPAMVPM4_EL2 S3_4_C10_C5_4
117#define MPAMVPM5_EL2 S3_4_C10_C5_5
118#define MPAMVPM6_EL2 S3_4_C10_C5_6
119#define MPAMVPM7_EL2 S3_4_C10_C5_7
120#define MPAMVPMV_EL2 S3_4_C10_C4_1
Max Shvetsov28259462020-02-17 16:15:47 +0000121#define TRFCR_EL2 S3_4_C1_C2_1
122#define PMSCR_EL2 S3_4_C9_C9_0
123#define TFSR_EL2 S3_4_C5_C6_0
Max Shvetsov28f39f02020-02-25 13:56:19 +0000124
125/*******************************************************************************
Achin Guptac2b43af2013-10-31 11:27:43 +0000126 * Generic timer memory mapped registers & offsets
127 ******************************************************************************/
Varun Wadekar030567e2017-05-25 18:04:48 -0700128#define CNTCR_OFF U(0x000)
Yann Gautiere1abd562019-04-17 13:47:07 +0200129#define CNTCV_OFF U(0x008)
Varun Wadekar030567e2017-05-25 18:04:48 -0700130#define CNTFID_OFF U(0x020)
Achin Guptac2b43af2013-10-31 11:27:43 +0000131
Varun Wadekar030567e2017-05-25 18:04:48 -0700132#define CNTCR_EN (U(1) << 0)
133#define CNTCR_HDBG (U(1) << 1)
Sandrine Bailleux9e864902014-03-31 11:25:18 +0100134#define CNTCR_FCREQ(x) ((x) << 8)
Achin Guptac2b43af2013-10-31 11:27:43 +0000135
136/*******************************************************************************
Achin Gupta4f6ad662013-10-25 09:08:21 +0100137 * System register bit definitions
138 ******************************************************************************/
139/* CLIDR definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700140#define LOUIS_SHIFT U(21)
141#define LOC_SHIFT U(24)
Alexei Fedorovef430ff2019-07-29 17:22:53 +0100142#define CTYPE_SHIFT(n) U(3 * (n - 1))
Varun Wadekar030567e2017-05-25 18:04:48 -0700143#define CLIDR_FIELD_WIDTH U(3)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100144
145/* CSSELR definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700146#define LEVEL_SHIFT U(1)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100147
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100148/* Data cache set/way op type defines */
Varun Wadekar030567e2017-05-25 18:04:48 -0700149#define DCISW U(0x0)
150#define DCCISW U(0x1)
Ambroise Vincentbd393702019-02-21 14:16:24 +0000151#if ERRATA_A53_827319
152#define DCCSW DCCISW
153#else
Varun Wadekar030567e2017-05-25 18:04:48 -0700154#define DCCSW U(0x2)
Ambroise Vincentbd393702019-02-21 14:16:24 +0000155#endif
Achin Gupta4f6ad662013-10-25 09:08:21 +0100156
157/* ID_AA64PFR0_EL1 definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700158#define ID_AA64PFR0_EL0_SHIFT U(0)
159#define ID_AA64PFR0_EL1_SHIFT U(4)
160#define ID_AA64PFR0_EL2_SHIFT U(8)
161#define ID_AA64PFR0_EL3_SHIFT U(12)
Dimitris Papastamos380559c2017-10-12 13:02:29 +0100162#define ID_AA64PFR0_AMU_SHIFT U(44)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100163#define ID_AA64PFR0_AMU_MASK ULL(0xf)
johpow01873d4242020-10-02 13:41:11 -0500164#define ID_AA64PFR0_AMU_NOT_SUPPORTED U(0x0)
165#define ID_AA64PFR0_AMU_V1 U(0x1)
166#define ID_AA64PFR0_AMU_V1P1 U(0x2)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100167#define ID_AA64PFR0_ELX_MASK ULL(0xf)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100168#define ID_AA64PFR0_GIC_SHIFT U(24)
169#define ID_AA64PFR0_GIC_WIDTH U(4)
170#define ID_AA64PFR0_GIC_MASK ULL(0xf)
David Cunado1a853372017-10-20 11:30:57 +0100171#define ID_AA64PFR0_SVE_SHIFT U(32)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100172#define ID_AA64PFR0_SVE_MASK ULL(0xf)
Max Shvetsov0c5e7d12021-03-22 11:59:37 +0000173#define ID_AA64PFR0_SVE_LENGTH U(4)
Achin Gupta0376e7c2019-10-11 14:44:05 +0100174#define ID_AA64PFR0_SEL2_SHIFT U(36)
Artsem Artsemenkadb3ae852019-11-26 16:40:31 +0000175#define ID_AA64PFR0_SEL2_MASK ULL(0xf)
Jeenu Viswambharan5f835912018-07-31 16:13:33 +0100176#define ID_AA64PFR0_MPAM_SHIFT U(40)
177#define ID_AA64PFR0_MPAM_MASK ULL(0xf)
Sathees Balya65849aa2018-12-06 13:33:24 +0000178#define ID_AA64PFR0_DIT_SHIFT U(48)
179#define ID_AA64PFR0_DIT_MASK ULL(0xf)
180#define ID_AA64PFR0_DIT_LENGTH U(4)
181#define ID_AA64PFR0_DIT_SUPPORTED U(1)
Dimitris Papastamos780edd82018-01-02 15:53:01 +0000182#define ID_AA64PFR0_CSV2_SHIFT U(56)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100183#define ID_AA64PFR0_CSV2_MASK ULL(0xf)
Dimitris Papastamos780edd82018-01-02 15:53:01 +0000184#define ID_AA64PFR0_CSV2_LENGTH U(4)
Zelalem Aweke81c272b2021-07-08 16:51:14 -0500185#define ID_AA64PFR0_FEAT_RME_SHIFT U(52)
186#define ID_AA64PFR0_FEAT_RME_MASK ULL(0xf)
187#define ID_AA64PFR0_FEAT_RME_LENGTH U(4)
188#define ID_AA64PFR0_FEAT_RME_NOT_SUPPORTED U(0)
189#define ID_AA64PFR0_FEAT_RME_V1 U(1)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100190
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100191/* Exception level handling */
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100192#define EL_IMPL_NONE ULL(0)
193#define EL_IMPL_A64ONLY ULL(1)
194#define EL_IMPL_A64_A32 ULL(2)
Jeenu Viswambharanf4c8aa92017-02-21 14:40:44 +0000195
Manish V Badarkhe2031d612021-07-07 16:27:10 +0100196/* ID_AA64DFR0_EL1.TraceVer definitions */
197#define ID_AA64DFR0_TRACEVER_SHIFT U(4)
198#define ID_AA64DFR0_TRACEVER_MASK ULL(0xf)
199#define ID_AA64DFR0_TRACEVER_SUPPORTED ULL(1)
200#define ID_AA64DFR0_TRACEVER_LENGTH U(4)
Manish V Badarkhe5de20ec2021-07-18 02:26:27 +0100201#define ID_AA64DFR0_TRACEFILT_SHIFT U(40)
202#define ID_AA64DFR0_TRACEFILT_MASK U(0xf)
203#define ID_AA64DFR0_TRACEFILT_SUPPORTED U(1)
204#define ID_AA64DFR0_TRACEFILT_LENGTH U(4)
Manish V Badarkhe2031d612021-07-07 16:27:10 +0100205
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100206/* ID_AA64DFR0_EL1.PMS definitions (for ARMv8.2+) */
207#define ID_AA64DFR0_PMS_SHIFT U(32)
208#define ID_AA64DFR0_PMS_MASK ULL(0xf)
Achin Guptadf373732015-09-03 14:18:02 +0100209
Manish V Badarkhe813524e2021-07-02 09:10:56 +0100210/* ID_AA64DFR0_EL1.TraceBuffer definitions */
211#define ID_AA64DFR0_TRACEBUFFER_SHIFT U(44)
212#define ID_AA64DFR0_TRACEBUFFER_MASK ULL(0xf)
213#define ID_AA64DFR0_TRACEBUFFER_SUPPORTED ULL(1)
214
Javier Almansa Sobrino0063dd12020-11-23 18:38:15 +0000215/* ID_AA64DFR0_EL1.MTPMU definitions (for ARMv8.6+) */
216#define ID_AA64DFR0_MTPMU_SHIFT U(48)
217#define ID_AA64DFR0_MTPMU_MASK ULL(0xf)
218#define ID_AA64DFR0_MTPMU_SUPPORTED ULL(1)
219
Tomas Pilar7c802c72020-10-28 15:34:12 +0000220/* ID_AA64ISAR0_EL1 definitions */
221#define ID_AA64ISAR0_RNDR_SHIFT U(60)
222#define ID_AA64ISAR0_RNDR_MASK ULL(0xf)
223
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000224/* ID_AA64ISAR1_EL1 definitions */
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000225#define ID_AA64ISAR1_EL1 S3_0_C0_C6_1
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000226#define ID_AA64ISAR1_GPI_SHIFT U(28)
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000227#define ID_AA64ISAR1_GPI_MASK ULL(0xf)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000228#define ID_AA64ISAR1_GPA_SHIFT U(24)
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000229#define ID_AA64ISAR1_GPA_MASK ULL(0xf)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000230#define ID_AA64ISAR1_API_SHIFT U(8)
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000231#define ID_AA64ISAR1_API_MASK ULL(0xf)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000232#define ID_AA64ISAR1_APA_SHIFT U(4)
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000233#define ID_AA64ISAR1_APA_MASK ULL(0xf)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000234
Antonio Nino Diaz2559b2c2019-01-11 11:20:10 +0000235/* ID_AA64MMFR0_EL1 definitions */
236#define ID_AA64MMFR0_EL1_PARANGE_SHIFT U(0)
237#define ID_AA64MMFR0_EL1_PARANGE_MASK ULL(0xf)
238
Varun Wadekar030567e2017-05-25 18:04:48 -0700239#define PARANGE_0000 U(32)
240#define PARANGE_0001 U(36)
241#define PARANGE_0010 U(40)
242#define PARANGE_0011 U(42)
243#define PARANGE_0100 U(44)
244#define PARANGE_0101 U(48)
Antonio Nino Diaz6504b2c2017-11-17 09:52:53 +0000245#define PARANGE_0110 U(52)
Antonio Nino Diaz00296242016-12-13 15:28:54 +0000246
Jimmy Brisson29d0ee52020-04-16 10:48:02 -0500247#define ID_AA64MMFR0_EL1_ECV_SHIFT U(60)
248#define ID_AA64MMFR0_EL1_ECV_MASK ULL(0xf)
249#define ID_AA64MMFR0_EL1_ECV_NOT_SUPPORTED ULL(0x0)
250#define ID_AA64MMFR0_EL1_ECV_SUPPORTED ULL(0x1)
251#define ID_AA64MMFR0_EL1_ECV_SELF_SYNCH ULL(0x2)
252
Jimmy Brisson110ee432020-04-16 10:47:56 -0500253#define ID_AA64MMFR0_EL1_FGT_SHIFT U(56)
254#define ID_AA64MMFR0_EL1_FGT_MASK ULL(0xf)
255#define ID_AA64MMFR0_EL1_FGT_SUPPORTED ULL(0x1)
256#define ID_AA64MMFR0_EL1_FGT_NOT_SUPPORTED ULL(0x0)
257
Antonio Nino Diaz2fccb222017-10-24 10:07:35 +0100258#define ID_AA64MMFR0_EL1_TGRAN4_SHIFT U(28)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100259#define ID_AA64MMFR0_EL1_TGRAN4_MASK ULL(0xf)
260#define ID_AA64MMFR0_EL1_TGRAN4_SUPPORTED ULL(0x0)
261#define ID_AA64MMFR0_EL1_TGRAN4_NOT_SUPPORTED ULL(0xf)
Antonio Nino Diaz2fccb222017-10-24 10:07:35 +0100262
263#define ID_AA64MMFR0_EL1_TGRAN64_SHIFT U(24)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100264#define ID_AA64MMFR0_EL1_TGRAN64_MASK ULL(0xf)
265#define ID_AA64MMFR0_EL1_TGRAN64_SUPPORTED ULL(0x0)
266#define ID_AA64MMFR0_EL1_TGRAN64_NOT_SUPPORTED ULL(0xf)
Antonio Nino Diaz2fccb222017-10-24 10:07:35 +0100267
268#define ID_AA64MMFR0_EL1_TGRAN16_SHIFT U(20)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100269#define ID_AA64MMFR0_EL1_TGRAN16_MASK ULL(0xf)
270#define ID_AA64MMFR0_EL1_TGRAN16_SUPPORTED ULL(0x1)
271#define ID_AA64MMFR0_EL1_TGRAN16_NOT_SUPPORTED ULL(0x0)
Antonio Nino Diaz2fccb222017-10-24 10:07:35 +0100272
johpow016cac7242020-04-22 14:05:13 -0500273/* ID_AA64MMFR1_EL1 definitions */
274#define ID_AA64MMFR1_EL1_TWED_SHIFT U(32)
275#define ID_AA64MMFR1_EL1_TWED_MASK ULL(0xf)
276#define ID_AA64MMFR1_EL1_TWED_SUPPORTED ULL(0x1)
277#define ID_AA64MMFR1_EL1_TWED_NOT_SUPPORTED ULL(0x0)
278
Alexei Fedorova83103c2020-11-25 14:07:05 +0000279#define ID_AA64MMFR1_EL1_PAN_SHIFT U(20)
280#define ID_AA64MMFR1_EL1_PAN_MASK ULL(0xf)
281#define ID_AA64MMFR1_EL1_PAN_NOT_SUPPORTED ULL(0x0)
282#define ID_AA64MMFR1_EL1_PAN_SUPPORTED ULL(0x1)
283#define ID_AA64MMFR1_EL1_PAN2_SUPPORTED ULL(0x2)
284#define ID_AA64MMFR1_EL1_PAN3_SUPPORTED ULL(0x3)
285
Daniel Boulby37596fc2020-11-25 16:36:46 +0000286#define ID_AA64MMFR1_EL1_VHE_SHIFT U(8)
287#define ID_AA64MMFR1_EL1_VHE_MASK ULL(0xf)
288
johpow01cb4ec472021-08-04 19:38:18 -0500289#define ID_AA64MMFR1_EL1_HCX_SHIFT U(40)
290#define ID_AA64MMFR1_EL1_HCX_MASK ULL(0xf)
291#define ID_AA64MMFR1_EL1_HCX_SUPPORTED ULL(0x1)
292#define ID_AA64MMFR1_EL1_HCX_NOT_SUPPORTED ULL(0x0)
293
Antonio Nino Diaz2559b2c2019-01-11 11:20:10 +0000294/* ID_AA64MMFR2_EL1 definitions */
295#define ID_AA64MMFR2_EL1 S3_0_C0_C7_2
Sathees Balyacedfa042019-01-25 11:36:01 +0000296
297#define ID_AA64MMFR2_EL1_ST_SHIFT U(28)
298#define ID_AA64MMFR2_EL1_ST_MASK ULL(0xf)
299
Antonio Nino Diaz2559b2c2019-01-11 11:20:10 +0000300#define ID_AA64MMFR2_EL1_CNP_SHIFT U(0)
301#define ID_AA64MMFR2_EL1_CNP_MASK ULL(0xf)
302
Jeenu Viswambharan48e1d352018-11-15 11:38:03 +0000303/* ID_AA64PFR1_EL1 definitions */
304#define ID_AA64PFR1_EL1_SSBS_SHIFT U(4)
305#define ID_AA64PFR1_EL1_SSBS_MASK ULL(0xf)
306
307#define SSBS_UNAVAILABLE ULL(0) /* No architectural SSBS support */
308
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100309#define ID_AA64PFR1_EL1_BT_SHIFT U(0)
310#define ID_AA64PFR1_EL1_BT_MASK ULL(0xf)
311
312#define BTI_IMPLEMENTED ULL(1) /* The BTI mechanism is implemented */
313
Soby Mathewb7e398d2019-07-12 09:23:38 +0100314#define ID_AA64PFR1_EL1_MTE_SHIFT U(8)
315#define ID_AA64PFR1_EL1_MTE_MASK ULL(0xf)
316
Alexei Fedorov0563ab02020-12-01 13:22:25 +0000317/* Memory Tagging Extension is not implemented */
318#define MTE_UNIMPLEMENTED U(0)
319/* FEAT_MTE: MTE instructions accessible at EL0 are implemented */
320#define MTE_IMPLEMENTED_EL0 U(1)
321/* FEAT_MTE2: Full MTE is implemented */
322#define MTE_IMPLEMENTED_ELX U(2)
323/*
324 * FEAT_MTE3: MTE is implemented with support for
325 * asymmetric Tag Check Fault handling
326 */
327#define MTE_IMPLEMENTED_ASY U(3)
Soby Mathewb7e398d2019-07-12 09:23:38 +0100328
Alexei Fedorovdbcc44a2020-05-26 13:16:41 +0100329#define ID_AA64PFR1_MPAM_FRAC_SHIFT ULL(16)
330#define ID_AA64PFR1_MPAM_FRAC_MASK ULL(0xf)
331
Achin Gupta4f6ad662013-10-25 09:08:21 +0100332/* ID_PFR1_EL1 definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700333#define ID_PFR1_VIRTEXT_SHIFT U(12)
334#define ID_PFR1_VIRTEXT_MASK U(0xf)
Antonio Nino Diaz0107aa42018-07-11 16:45:49 +0100335#define GET_VIRT_EXT(id) (((id) >> ID_PFR1_VIRTEXT_SHIFT) \
Achin Gupta4f6ad662013-10-25 09:08:21 +0100336 & ID_PFR1_VIRTEXT_MASK)
337
338/* SCTLR definitions */
David Cunado18f2efd2017-04-13 22:38:29 +0100339#define SCTLR_EL2_RES1 ((U(1) << 29) | (U(1) << 28) | (U(1) << 23) | \
Varun Wadekar030567e2017-05-25 18:04:48 -0700340 (U(1) << 22) | (U(1) << 18) | (U(1) << 16) | \
341 (U(1) << 11) | (U(1) << 5) | (U(1) << 4))
Achin Gupta4f6ad662013-10-25 09:08:21 +0100342
John Powell3443a702020-03-20 14:21:05 -0500343#define SCTLR_EL1_RES1 ((UL(1) << 29) | (UL(1) << 28) | (UL(1) << 23) | \
344 (UL(1) << 22) | (UL(1) << 20) | (UL(1) << 11))
Alexei Fedorova83103c2020-11-25 14:07:05 +0000345
Jens Wiklanderae213ce2014-09-04 10:23:27 +0200346#define SCTLR_AARCH32_EL1_RES1 \
Varun Wadekar030567e2017-05-25 18:04:48 -0700347 ((U(1) << 23) | (U(1) << 22) | (U(1) << 11) | \
348 (U(1) << 4) | (U(1) << 3))
Jens Wiklanderae213ce2014-09-04 10:23:27 +0200349
David Cunado18f2efd2017-04-13 22:38:29 +0100350#define SCTLR_EL3_RES1 ((U(1) << 29) | (U(1) << 28) | (U(1) << 23) | \
351 (U(1) << 22) | (U(1) << 18) | (U(1) << 16) | \
352 (U(1) << 11) | (U(1) << 5) | (U(1) << 4))
353
Jeenu Viswambharan48e1d352018-11-15 11:38:03 +0000354#define SCTLR_M_BIT (ULL(1) << 0)
355#define SCTLR_A_BIT (ULL(1) << 1)
356#define SCTLR_C_BIT (ULL(1) << 2)
357#define SCTLR_SA_BIT (ULL(1) << 3)
358#define SCTLR_SA0_BIT (ULL(1) << 4)
359#define SCTLR_CP15BEN_BIT (ULL(1) << 5)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000360#define SCTLR_nAA_BIT (ULL(1) << 6)
Jeenu Viswambharan48e1d352018-11-15 11:38:03 +0000361#define SCTLR_ITD_BIT (ULL(1) << 7)
362#define SCTLR_SED_BIT (ULL(1) << 8)
363#define SCTLR_UMA_BIT (ULL(1) << 9)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000364#define SCTLR_EnRCTX_BIT (ULL(1) << 10)
365#define SCTLR_EOS_BIT (ULL(1) << 11)
Jeenu Viswambharan48e1d352018-11-15 11:38:03 +0000366#define SCTLR_I_BIT (ULL(1) << 12)
Alexei Fedorovc4655152019-07-10 10:49:12 +0100367#define SCTLR_EnDB_BIT (ULL(1) << 13)
Jeenu Viswambharan48e1d352018-11-15 11:38:03 +0000368#define SCTLR_DZE_BIT (ULL(1) << 14)
369#define SCTLR_UCT_BIT (ULL(1) << 15)
370#define SCTLR_NTWI_BIT (ULL(1) << 16)
371#define SCTLR_NTWE_BIT (ULL(1) << 18)
372#define SCTLR_WXN_BIT (ULL(1) << 19)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000373#define SCTLR_TSCXT_BIT (ULL(1) << 20)
Louis Mayencourt5f5d1ed2019-02-20 12:11:41 +0000374#define SCTLR_IESB_BIT (ULL(1) << 21)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000375#define SCTLR_EIS_BIT (ULL(1) << 22)
376#define SCTLR_SPAN_BIT (ULL(1) << 23)
Jeenu Viswambharan48e1d352018-11-15 11:38:03 +0000377#define SCTLR_E0E_BIT (ULL(1) << 24)
378#define SCTLR_EE_BIT (ULL(1) << 25)
379#define SCTLR_UCI_BIT (ULL(1) << 26)
Alexei Fedorovc4655152019-07-10 10:49:12 +0100380#define SCTLR_EnDA_BIT (ULL(1) << 27)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000381#define SCTLR_nTLSMD_BIT (ULL(1) << 28)
382#define SCTLR_LSMAOE_BIT (ULL(1) << 29)
Alexei Fedorovc4655152019-07-10 10:49:12 +0100383#define SCTLR_EnIB_BIT (ULL(1) << 30)
Antonio Nino Diaz52839622019-01-31 11:58:00 +0000384#define SCTLR_EnIA_BIT (ULL(1) << 31)
Alexei Fedorov9fc59632019-05-24 12:17:09 +0100385#define SCTLR_BT0_BIT (ULL(1) << 35)
386#define SCTLR_BT1_BIT (ULL(1) << 36)
387#define SCTLR_BT_BIT (ULL(1) << 36)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000388#define SCTLR_ITFSB_BIT (ULL(1) << 37)
389#define SCTLR_TCF0_SHIFT U(38)
390#define SCTLR_TCF0_MASK ULL(3)
391
392/* Tag Check Faults in EL0 have no effect on the PE */
393#define SCTLR_TCF0_NO_EFFECT U(0)
394/* Tag Check Faults in EL0 cause a synchronous exception */
395#define SCTLR_TCF0_SYNC U(1)
396/* Tag Check Faults in EL0 are asynchronously accumulated */
397#define SCTLR_TCF0_ASYNC U(2)
398/*
399 * Tag Check Faults in EL0 cause a synchronous exception on reads,
400 * and are asynchronously accumulated on writes
401 */
402#define SCTLR_TCF0_SYNCR_ASYNCW U(3)
403
404#define SCTLR_TCF_SHIFT U(40)
405#define SCTLR_TCF_MASK ULL(3)
406
407/* Tag Check Faults in EL1 have no effect on the PE */
408#define SCTLR_TCF_NO_EFFECT U(0)
409/* Tag Check Faults in EL1 cause a synchronous exception */
410#define SCTLR_TCF_SYNC U(1)
411/* Tag Check Faults in EL1 are asynchronously accumulated */
412#define SCTLR_TCF_ASYNC U(2)
413/*
414 * Tag Check Faults in EL1 cause a synchronous exception on reads,
415 * and are asynchronously accumulated on writes
416 */
417#define SCTLR_TCF_SYNCR_ASYNCW U(3)
418
419#define SCTLR_ATA0_BIT (ULL(1) << 42)
420#define SCTLR_ATA_BIT (ULL(1) << 43)
Daniel Boulby37596fc2020-11-25 16:36:46 +0000421#define SCTLR_DSSBS_SHIFT U(44)
422#define SCTLR_DSSBS_BIT (ULL(1) << SCTLR_DSSBS_SHIFT)
Alexei Fedorova83103c2020-11-25 14:07:05 +0000423#define SCTLR_TWEDEn_BIT (ULL(1) << 45)
424#define SCTLR_TWEDEL_SHIFT U(46)
425#define SCTLR_TWEDEL_MASK ULL(0xf)
426#define SCTLR_EnASR_BIT (ULL(1) << 54)
427#define SCTLR_EnAS0_BIT (ULL(1) << 55)
428#define SCTLR_EnALS_BIT (ULL(1) << 56)
429#define SCTLR_EPAN_BIT (ULL(1) << 57)
David Cunado18f2efd2017-04-13 22:38:29 +0100430#define SCTLR_RESET_VAL SCTLR_EL3_RES1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100431
Alexei Fedorova83103c2020-11-25 14:07:05 +0000432/* CPACR_EL1 definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700433#define CPACR_EL1_FPEN(x) ((x) << 20)
Jimmy Brissond7b5f402020-08-04 16:18:52 -0500434#define CPACR_EL1_FP_TRAP_EL0 UL(0x1)
435#define CPACR_EL1_FP_TRAP_ALL UL(0x2)
436#define CPACR_EL1_FP_TRAP_NONE UL(0x3)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100437
438/* SCR definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700439#define SCR_RES1_BITS ((U(1) << 4) | (U(1) << 5))
Zelalem Aweke81c272b2021-07-08 16:51:14 -0500440#define SCR_NSE_SHIFT U(62)
441#define SCR_NSE_BIT (ULL(1) << SCR_NSE_SHIFT)
442#define SCR_GPF_BIT (UL(1) << 48)
johpow016cac7242020-04-22 14:05:13 -0500443#define SCR_TWEDEL_SHIFT U(30)
444#define SCR_TWEDEL_MASK ULL(0xf)
johpow01cb4ec472021-08-04 19:38:18 -0500445#define SCR_HXEn_BIT (UL(1) << 38)
johpow01873d4242020-10-02 13:41:11 -0500446#define SCR_AMVOFFEN_BIT (UL(1) << 35)
johpow016cac7242020-04-22 14:05:13 -0500447#define SCR_TWEDEn_BIT (UL(1) << 29)
johpow01873d4242020-10-02 13:41:11 -0500448#define SCR_ECVEN_BIT (UL(1) << 28)
449#define SCR_FGTEN_BIT (UL(1) << 27)
Jimmy Brissond7b5f402020-08-04 16:18:52 -0500450#define SCR_ATA_BIT (UL(1) << 26)
451#define SCR_FIEN_BIT (UL(1) << 21)
452#define SCR_EEL2_BIT (UL(1) << 18)
453#define SCR_API_BIT (UL(1) << 17)
454#define SCR_APK_BIT (UL(1) << 16)
455#define SCR_TERR_BIT (UL(1) << 15)
456#define SCR_TWE_BIT (UL(1) << 13)
457#define SCR_TWI_BIT (UL(1) << 12)
458#define SCR_ST_BIT (UL(1) << 11)
459#define SCR_RW_BIT (UL(1) << 10)
460#define SCR_SIF_BIT (UL(1) << 9)
461#define SCR_HCE_BIT (UL(1) << 8)
462#define SCR_SMD_BIT (UL(1) << 7)
463#define SCR_EA_BIT (UL(1) << 3)
464#define SCR_FIQ_BIT (UL(1) << 2)
465#define SCR_IRQ_BIT (UL(1) << 1)
466#define SCR_NS_BIT (UL(1) << 0)
Varun Wadekar030567e2017-05-25 18:04:48 -0700467#define SCR_VALID_BIT_MASK U(0x2f8f)
David Cunado18f2efd2017-04-13 22:38:29 +0100468#define SCR_RESET_VAL SCR_RES1_BITS
Achin Gupta4f6ad662013-10-25 09:08:21 +0100469
David Cunado18f2efd2017-04-13 22:38:29 +0100470/* MDCR_EL3 definitions */
Alexei Fedorov12f6c062021-05-14 11:21:56 +0100471#define MDCR_EnPMSN_BIT (ULL(1) << 36)
472#define MDCR_MPMX_BIT (ULL(1) << 35)
473#define MDCR_MCCD_BIT (ULL(1) << 34)
Manish V Badarkhe40ff9072021-06-23 20:02:39 +0100474#define MDCR_NSTB(x) ((x) << 24)
475#define MDCR_NSTB_EL1 ULL(0x3)
476#define MDCR_NSTBE (ULL(1) << 26)
Javier Almansa Sobrino0063dd12020-11-23 18:38:15 +0000477#define MDCR_MTPME_BIT (ULL(1) << 28)
Alexei Fedorov12f6c062021-05-14 11:21:56 +0100478#define MDCR_TDCC_BIT (ULL(1) << 27)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100479#define MDCR_SCCD_BIT (ULL(1) << 23)
Alexei Fedorov12f6c062021-05-14 11:21:56 +0100480#define MDCR_EPMAD_BIT (ULL(1) << 21)
481#define MDCR_EDAD_BIT (ULL(1) << 20)
482#define MDCR_TTRF_BIT (ULL(1) << 19)
483#define MDCR_STE_BIT (ULL(1) << 18)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100484#define MDCR_SPME_BIT (ULL(1) << 17)
485#define MDCR_SDD_BIT (ULL(1) << 16)
dp-arm85e93ba2017-02-08 11:51:50 +0000486#define MDCR_SPD32(x) ((x) << 14)
Antonio Nino Diazed4fc6f2019-02-18 16:55:43 +0000487#define MDCR_SPD32_LEGACY ULL(0x0)
488#define MDCR_SPD32_DISABLE ULL(0x2)
489#define MDCR_SPD32_ENABLE ULL(0x3)
dp-armd832aee2017-05-23 09:32:49 +0100490#define MDCR_NSPB(x) ((x) << 12)
Antonio Nino Diazed4fc6f2019-02-18 16:55:43 +0000491#define MDCR_NSPB_EL1 ULL(0x3)
492#define MDCR_TDOSA_BIT (ULL(1) << 10)
493#define MDCR_TDA_BIT (ULL(1) << 9)
494#define MDCR_TPM_BIT (ULL(1) << 6)
Antonio Nino Diazed4fc6f2019-02-18 16:55:43 +0000495#define MDCR_EL3_RESET_VAL ULL(0x0)
dp-arm85e93ba2017-02-08 11:51:50 +0000496
David Cunado18f2efd2017-04-13 22:38:29 +0100497/* MDCR_EL2 definitions */
Javier Almansa Sobrino0063dd12020-11-23 18:38:15 +0000498#define MDCR_EL2_MTPME (U(1) << 28)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100499#define MDCR_EL2_HLP (U(1) << 26)
Manish V Badarkhe40ff9072021-06-23 20:02:39 +0100500#define MDCR_EL2_E2TB(x) ((x) << 24)
501#define MDCR_EL2_E2TB_EL1 U(0x3)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100502#define MDCR_EL2_HCCD (U(1) << 23)
503#define MDCR_EL2_TTRF (U(1) << 19)
504#define MDCR_EL2_HPMD (U(1) << 17)
dp-armd832aee2017-05-23 09:32:49 +0100505#define MDCR_EL2_TPMS (U(1) << 14)
506#define MDCR_EL2_E2PB(x) ((x) << 12)
507#define MDCR_EL2_E2PB_EL1 U(0x3)
David Cunado18f2efd2017-04-13 22:38:29 +0100508#define MDCR_EL2_TDRA_BIT (U(1) << 11)
509#define MDCR_EL2_TDOSA_BIT (U(1) << 10)
510#define MDCR_EL2_TDA_BIT (U(1) << 9)
511#define MDCR_EL2_TDE_BIT (U(1) << 8)
512#define MDCR_EL2_HPME_BIT (U(1) << 7)
513#define MDCR_EL2_TPM_BIT (U(1) << 6)
514#define MDCR_EL2_TPMCR_BIT (U(1) << 5)
515#define MDCR_EL2_RESET_VAL U(0x0)
516
517/* HSTR_EL2 definitions */
518#define HSTR_EL2_RESET_VAL U(0x0)
519#define HSTR_EL2_T_MASK U(0xff)
520
521/* CNTHP_CTL_EL2 definitions */
522#define CNTHP_CTL_ENABLE_BIT (U(1) << 0)
523#define CNTHP_CTL_RESET_VAL U(0x0)
524
525/* VTTBR_EL2 definitions */
526#define VTTBR_RESET_VAL ULL(0x0)
527#define VTTBR_VMID_MASK ULL(0xff)
528#define VTTBR_VMID_SHIFT U(48)
529#define VTTBR_BADDR_MASK ULL(0xffffffffffff)
530#define VTTBR_BADDR_SHIFT U(0)
dp-arm85e93ba2017-02-08 11:51:50 +0000531
Achin Gupta4f6ad662013-10-25 09:08:21 +0100532/* HCR definitions */
Gary Morrison5fb061e2021-01-27 13:08:47 -0600533#define HCR_RESET_VAL ULL(0x0)
johpow01873d4242020-10-02 13:41:11 -0500534#define HCR_AMVOFFEN_BIT (ULL(1) << 51)
Gary Morrison5fb061e2021-01-27 13:08:47 -0600535#define HCR_TEA_BIT (ULL(1) << 47)
Jeenu Viswambharan3ff4aaa2018-08-15 14:29:29 +0100536#define HCR_API_BIT (ULL(1) << 41)
537#define HCR_APK_BIT (ULL(1) << 40)
Manish V Badarkhe45aecff2020-04-28 04:53:32 +0100538#define HCR_E2H_BIT (ULL(1) << 34)
Gary Morrison5fb061e2021-01-27 13:08:47 -0600539#define HCR_HCD_BIT (ULL(1) << 29)
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000540#define HCR_TGE_BIT (ULL(1) << 27)
Varun Wadekar030567e2017-05-25 18:04:48 -0700541#define HCR_RW_SHIFT U(31)
542#define HCR_RW_BIT (ULL(1) << HCR_RW_SHIFT)
Gary Morrison5fb061e2021-01-27 13:08:47 -0600543#define HCR_TWE_BIT (ULL(1) << 14)
544#define HCR_TWI_BIT (ULL(1) << 13)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100545#define HCR_AMO_BIT (ULL(1) << 5)
546#define HCR_IMO_BIT (ULL(1) << 4)
547#define HCR_FMO_BIT (ULL(1) << 3)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100548
Gerald Lejeune6b836cf2016-03-22 11:11:46 +0100549/* ISR definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700550#define ISR_A_SHIFT U(8)
551#define ISR_I_SHIFT U(7)
552#define ISR_F_SHIFT U(6)
Gerald Lejeune6b836cf2016-03-22 11:11:46 +0100553
Achin Gupta4f6ad662013-10-25 09:08:21 +0100554/* CNTHCTL_EL2 definitions */
David Cunado18f2efd2017-04-13 22:38:29 +0100555#define CNTHCTL_RESET_VAL U(0x0)
Varun Wadekar030567e2017-05-25 18:04:48 -0700556#define EVNTEN_BIT (U(1) << 2)
557#define EL1PCEN_BIT (U(1) << 1)
558#define EL1PCTEN_BIT (U(1) << 0)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100559
560/* CNTKCTL_EL1 definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700561#define EL0PTEN_BIT (U(1) << 9)
562#define EL0VTEN_BIT (U(1) << 8)
563#define EL0PCTEN_BIT (U(1) << 0)
564#define EL0VCTEN_BIT (U(1) << 1)
565#define EVNTEN_BIT (U(1) << 2)
566#define EVNTDIR_BIT (U(1) << 3)
567#define EVNTI_SHIFT U(4)
568#define EVNTI_MASK U(0xf)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100569
570/* CPTR_EL3 definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700571#define TCPAC_BIT (U(1) << 31)
Dimitris Papastamos380559c2017-10-12 13:02:29 +0100572#define TAM_BIT (U(1) << 30)
Varun Wadekar030567e2017-05-25 18:04:48 -0700573#define TTA_BIT (U(1) << 20)
574#define TFP_BIT (U(1) << 10)
David Cunado1a853372017-10-20 11:30:57 +0100575#define CPTR_EZ_BIT (U(1) << 8)
Max Shvetsov0c5e7d12021-03-22 11:59:37 +0000576#define CPTR_EL3_RESET_VAL (TCPAC_BIT | TAM_BIT | TTA_BIT | TFP_BIT & ~(CPTR_EZ_BIT))
David Cunado18f2efd2017-04-13 22:38:29 +0100577
578/* CPTR_EL2 definitions */
579#define CPTR_EL2_RES1 ((U(1) << 13) | (U(1) << 12) | (U(0x3ff)))
580#define CPTR_EL2_TCPAC_BIT (U(1) << 31)
Dimitris Papastamos380559c2017-10-12 13:02:29 +0100581#define CPTR_EL2_TAM_BIT (U(1) << 30)
David Cunado18f2efd2017-04-13 22:38:29 +0100582#define CPTR_EL2_TTA_BIT (U(1) << 20)
583#define CPTR_EL2_TFP_BIT (U(1) << 10)
David Cunado1a853372017-10-20 11:30:57 +0100584#define CPTR_EL2_TZ_BIT (U(1) << 8)
David Cunado18f2efd2017-04-13 22:38:29 +0100585#define CPTR_EL2_RESET_VAL CPTR_EL2_RES1
Achin Gupta4f6ad662013-10-25 09:08:21 +0100586
587/* CPSR/SPSR definitions */
Varun Wadekar030567e2017-05-25 18:04:48 -0700588#define DAIF_FIQ_BIT (U(1) << 0)
589#define DAIF_IRQ_BIT (U(1) << 1)
590#define DAIF_ABT_BIT (U(1) << 2)
591#define DAIF_DBG_BIT (U(1) << 3)
592#define SPSR_DAIF_SHIFT U(6)
593#define SPSR_DAIF_MASK U(0xf)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100594
Varun Wadekar030567e2017-05-25 18:04:48 -0700595#define SPSR_AIF_SHIFT U(6)
596#define SPSR_AIF_MASK U(0x7)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100597
Varun Wadekar030567e2017-05-25 18:04:48 -0700598#define SPSR_E_SHIFT U(9)
599#define SPSR_E_MASK U(0x1)
600#define SPSR_E_LITTLE U(0x0)
601#define SPSR_E_BIG U(0x1)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100602
Varun Wadekar030567e2017-05-25 18:04:48 -0700603#define SPSR_T_SHIFT U(5)
604#define SPSR_T_MASK U(0x1)
605#define SPSR_T_ARM U(0x0)
606#define SPSR_T_THUMB U(0x1)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100607
Dimitris Papastamosa1781a22017-12-18 13:46:21 +0000608#define SPSR_M_SHIFT U(4)
609#define SPSR_M_MASK U(0x1)
610#define SPSR_M_AARCH64 U(0x0)
611#define SPSR_M_AARCH32 U(0x1)
612
Alexei Fedorovb4292bc2020-03-03 13:31:58 +0000613#define SPSR_EL_SHIFT U(2)
614#define SPSR_EL_WIDTH U(2)
615
Daniel Boulby37596fc2020-11-25 16:36:46 +0000616#define SPSR_SSBS_SHIFT_AARCH64 U(12)
617#define SPSR_SSBS_BIT_AARCH64 (ULL(1) << SPSR_SSBS_SHIFT_AARCH64)
618#define SPSR_SSBS_SHIFT_AARCH32 U(23)
619#define SPSR_SSBS_BIT_AARCH32 (ULL(1) << SPSR_SSBS_SHIFT_AARCH32)
620
621#define SPSR_PAN_BIT BIT_64(22)
622
623#define SPSR_DIT_BIT BIT(24)
624
625#define SPSR_TCO_BIT_AARCH64 BIT_64(25)
John Tsichritzisc250cc32019-07-23 11:12:41 +0100626
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100627#define DISABLE_ALL_EXCEPTIONS \
628 (DAIF_FIQ_BIT | DAIF_IRQ_BIT | DAIF_ABT_BIT | DAIF_DBG_BIT)
629
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000630#define DISABLE_INTERRUPTS (DAIF_FIQ_BIT | DAIF_IRQ_BIT)
631
Yatharth Kochar07570d52016-11-14 12:01:04 +0000632/*
633 * RMR_EL3 definitions
634 */
Varun Wadekar030567e2017-05-25 18:04:48 -0700635#define RMR_EL3_RR_BIT (U(1) << 1)
636#define RMR_EL3_AA64_BIT (U(1) << 0)
Yatharth Kochar07570d52016-11-14 12:01:04 +0000637
638/*
639 * HI-VECTOR address for AArch32 state
640 */
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000641#define HI_VECTOR_BASE U(0xFFFF0000)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100642
643/*
644 * TCR defintions
645 */
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000646#define TCR_EL3_RES1 ((ULL(1) << 31) | (ULL(1) << 23))
Antonio Nino Diaz1a92a0e2018-08-07 19:59:49 +0100647#define TCR_EL2_RES1 ((ULL(1) << 31) | (ULL(1) << 23))
Varun Wadekar030567e2017-05-25 18:04:48 -0700648#define TCR_EL1_IPS_SHIFT U(32)
Antonio Nino Diaz1a92a0e2018-08-07 19:59:49 +0100649#define TCR_EL2_PS_SHIFT U(16)
Varun Wadekar030567e2017-05-25 18:04:48 -0700650#define TCR_EL3_PS_SHIFT U(16)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100651
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100652#define TCR_TxSZ_MIN ULL(16)
653#define TCR_TxSZ_MAX ULL(39)
Sathees Balyacedfa042019-01-25 11:36:01 +0000654#define TCR_TxSZ_MAX_TTST ULL(48)
Antonio Nino Diaze8719552016-08-02 09:21:41 +0100655
Antonio Nino Diaz6de69652019-03-27 11:10:31 +0000656#define TCR_T0SZ_SHIFT U(0)
657#define TCR_T1SZ_SHIFT U(16)
658
Lin Ma73ad2572014-06-27 16:56:30 -0700659/* (internal) physical address size bits in EL3/EL1 */
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100660#define TCR_PS_BITS_4GB ULL(0x0)
661#define TCR_PS_BITS_64GB ULL(0x1)
662#define TCR_PS_BITS_1TB ULL(0x2)
663#define TCR_PS_BITS_4TB ULL(0x3)
664#define TCR_PS_BITS_16TB ULL(0x4)
665#define TCR_PS_BITS_256TB ULL(0x5)
Lin Ma73ad2572014-06-27 16:56:30 -0700666
Varun Wadekar030567e2017-05-25 18:04:48 -0700667#define ADDR_MASK_48_TO_63 ULL(0xFFFF000000000000)
668#define ADDR_MASK_44_TO_47 ULL(0x0000F00000000000)
669#define ADDR_MASK_42_TO_43 ULL(0x00000C0000000000)
670#define ADDR_MASK_40_TO_41 ULL(0x0000030000000000)
671#define ADDR_MASK_36_TO_39 ULL(0x000000F000000000)
672#define ADDR_MASK_32_TO_35 ULL(0x0000000F00000000)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100673
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100674#define TCR_RGN_INNER_NC (ULL(0x0) << 8)
675#define TCR_RGN_INNER_WBA (ULL(0x1) << 8)
676#define TCR_RGN_INNER_WT (ULL(0x2) << 8)
677#define TCR_RGN_INNER_WBNA (ULL(0x3) << 8)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100678
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100679#define TCR_RGN_OUTER_NC (ULL(0x0) << 10)
680#define TCR_RGN_OUTER_WBA (ULL(0x1) << 10)
681#define TCR_RGN_OUTER_WT (ULL(0x2) << 10)
682#define TCR_RGN_OUTER_WBNA (ULL(0x3) << 10)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100683
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100684#define TCR_SH_NON_SHAREABLE (ULL(0x0) << 12)
685#define TCR_SH_OUTER_SHAREABLE (ULL(0x2) << 12)
686#define TCR_SH_INNER_SHAREABLE (ULL(0x3) << 12)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100687
Antonio Nino Diaz6de69652019-03-27 11:10:31 +0000688#define TCR_RGN1_INNER_NC (ULL(0x0) << 24)
689#define TCR_RGN1_INNER_WBA (ULL(0x1) << 24)
690#define TCR_RGN1_INNER_WT (ULL(0x2) << 24)
691#define TCR_RGN1_INNER_WBNA (ULL(0x3) << 24)
692
693#define TCR_RGN1_OUTER_NC (ULL(0x0) << 26)
694#define TCR_RGN1_OUTER_WBA (ULL(0x1) << 26)
695#define TCR_RGN1_OUTER_WT (ULL(0x2) << 26)
696#define TCR_RGN1_OUTER_WBNA (ULL(0x3) << 26)
697
698#define TCR_SH1_NON_SHAREABLE (ULL(0x0) << 28)
699#define TCR_SH1_OUTER_SHAREABLE (ULL(0x2) << 28)
700#define TCR_SH1_INNER_SHAREABLE (ULL(0x3) << 28)
701
Antonio Nino Diaz2fccb222017-10-24 10:07:35 +0100702#define TCR_TG0_SHIFT U(14)
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100703#define TCR_TG0_MASK ULL(3)
Antonio Nino Diaz2fccb222017-10-24 10:07:35 +0100704#define TCR_TG0_4K (ULL(0) << TCR_TG0_SHIFT)
705#define TCR_TG0_64K (ULL(1) << TCR_TG0_SHIFT)
706#define TCR_TG0_16K (ULL(2) << TCR_TG0_SHIFT)
707
Antonio Nino Diaz6de69652019-03-27 11:10:31 +0000708#define TCR_TG1_SHIFT U(30)
709#define TCR_TG1_MASK ULL(3)
710#define TCR_TG1_16K (ULL(1) << TCR_TG1_SHIFT)
711#define TCR_TG1_4K (ULL(2) << TCR_TG1_SHIFT)
712#define TCR_TG1_64K (ULL(3) << TCR_TG1_SHIFT)
713
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100714#define TCR_EPD0_BIT (ULL(1) << 7)
715#define TCR_EPD1_BIT (ULL(1) << 23)
Antonio Nino Diaz3388b382017-09-15 10:30:34 +0100716
Varun Wadekar030567e2017-05-25 18:04:48 -0700717#define MODE_SP_SHIFT U(0x0)
718#define MODE_SP_MASK U(0x1)
719#define MODE_SP_EL0 U(0x0)
720#define MODE_SP_ELX U(0x1)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100721
Varun Wadekar030567e2017-05-25 18:04:48 -0700722#define MODE_RW_SHIFT U(0x4)
723#define MODE_RW_MASK U(0x1)
724#define MODE_RW_64 U(0x0)
725#define MODE_RW_32 U(0x1)
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100726
Varun Wadekar030567e2017-05-25 18:04:48 -0700727#define MODE_EL_SHIFT U(0x2)
728#define MODE_EL_MASK U(0x3)
Alexei Fedorovb4292bc2020-03-03 13:31:58 +0000729#define MODE_EL_WIDTH U(0x2)
Varun Wadekar030567e2017-05-25 18:04:48 -0700730#define MODE_EL3 U(0x3)
731#define MODE_EL2 U(0x2)
732#define MODE_EL1 U(0x1)
733#define MODE_EL0 U(0x0)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100734
Varun Wadekar030567e2017-05-25 18:04:48 -0700735#define MODE32_SHIFT U(0)
736#define MODE32_MASK U(0xf)
737#define MODE32_usr U(0x0)
738#define MODE32_fiq U(0x1)
739#define MODE32_irq U(0x2)
740#define MODE32_svc U(0x3)
741#define MODE32_mon U(0x6)
742#define MODE32_abt U(0x7)
743#define MODE32_hyp U(0xa)
744#define MODE32_und U(0xb)
745#define MODE32_sys U(0xf)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100746
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100747#define GET_RW(mode) (((mode) >> MODE_RW_SHIFT) & MODE_RW_MASK)
748#define GET_EL(mode) (((mode) >> MODE_EL_SHIFT) & MODE_EL_MASK)
749#define GET_SP(mode) (((mode) >> MODE_SP_SHIFT) & MODE_SP_MASK)
750#define GET_M32(mode) (((mode) >> MODE32_SHIFT) & MODE32_MASK)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100751
John Tsichritzisc250cc32019-07-23 11:12:41 +0100752#define SPSR_64(el, sp, daif) \
753 (((MODE_RW_64 << MODE_RW_SHIFT) | \
754 (((el) & MODE_EL_MASK) << MODE_EL_SHIFT) | \
755 (((sp) & MODE_SP_MASK) << MODE_SP_SHIFT) | \
756 (((daif) & SPSR_DAIF_MASK) << SPSR_DAIF_SHIFT)) & \
757 (~(SPSR_SSBS_BIT_AARCH64)))
Achin Gupta4f6ad662013-10-25 09:08:21 +0100758
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100759#define SPSR_MODE32(mode, isa, endian, aif) \
John Tsichritzisc250cc32019-07-23 11:12:41 +0100760 (((MODE_RW_32 << MODE_RW_SHIFT) | \
Varun Wadekar030567e2017-05-25 18:04:48 -0700761 (((mode) & MODE32_MASK) << MODE32_SHIFT) | \
762 (((isa) & SPSR_T_MASK) << SPSR_T_SHIFT) | \
763 (((endian) & SPSR_E_MASK) << SPSR_E_SHIFT) | \
John Tsichritzisc250cc32019-07-23 11:12:41 +0100764 (((aif) & SPSR_AIF_MASK) << SPSR_AIF_SHIFT)) & \
765 (~(SPSR_SSBS_BIT_AARCH32)))
Vikram Kanigiri23ff9ba2014-05-13 14:42:08 +0100766
Dan Handleyce4c8202015-03-30 17:15:16 +0100767/*
Isla Mitchell9fce2722017-08-07 11:20:13 +0100768 * TTBR Definitions
769 */
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100770#define TTBR_CNP_BIT ULL(0x1)
Isla Mitchell9fce2722017-08-07 11:20:13 +0100771
772/*
Dan Handleyce4c8202015-03-30 17:15:16 +0100773 * CTR_EL0 definitions
774 */
Varun Wadekar030567e2017-05-25 18:04:48 -0700775#define CTR_CWG_SHIFT U(24)
776#define CTR_CWG_MASK U(0xf)
777#define CTR_ERG_SHIFT U(20)
778#define CTR_ERG_MASK U(0xf)
779#define CTR_DMINLINE_SHIFT U(16)
780#define CTR_DMINLINE_MASK U(0xf)
781#define CTR_L1IP_SHIFT U(14)
782#define CTR_L1IP_MASK U(0x3)
783#define CTR_IMINLINE_SHIFT U(0)
784#define CTR_IMINLINE_MASK U(0xf)
Dan Handleyce4c8202015-03-30 17:15:16 +0100785
Varun Wadekar030567e2017-05-25 18:04:48 -0700786#define MAX_CACHE_LINE_SIZE U(0x800) /* 2KB */
Achin Gupta4f6ad662013-10-25 09:08:21 +0100787
Achin Guptafa9c08b2014-05-09 12:00:17 +0100788/* Physical timer control register bit fields shifts and masks */
johpow01873d4242020-10-02 13:41:11 -0500789#define CNTP_CTL_ENABLE_SHIFT U(0)
790#define CNTP_CTL_IMASK_SHIFT U(1)
791#define CNTP_CTL_ISTATUS_SHIFT U(2)
Achin Guptafa9c08b2014-05-09 12:00:17 +0100792
johpow01873d4242020-10-02 13:41:11 -0500793#define CNTP_CTL_ENABLE_MASK U(1)
794#define CNTP_CTL_IMASK_MASK U(1)
795#define CNTP_CTL_ISTATUS_MASK U(1)
Achin Guptafa9c08b2014-05-09 12:00:17 +0100796
Varun Wadekardd4f0882018-06-18 16:15:51 -0700797/* Physical timer control macros */
798#define CNTP_CTL_ENABLE_BIT (U(1) << CNTP_CTL_ENABLE_SHIFT)
799#define CNTP_CTL_IMASK_BIT (U(1) << CNTP_CTL_IMASK_SHIFT)
800
Achin Gupta4f6ad662013-10-25 09:08:21 +0100801/* Exception Syndrome register bits and bobs */
Varun Wadekar030567e2017-05-25 18:04:48 -0700802#define ESR_EC_SHIFT U(26)
803#define ESR_EC_MASK U(0x3f)
804#define ESR_EC_LENGTH U(6)
Justin Chadwell1f461972019-08-20 11:01:52 +0100805#define ESR_ISS_SHIFT U(0)
806#define ESR_ISS_LENGTH U(25)
Varun Wadekar030567e2017-05-25 18:04:48 -0700807#define EC_UNKNOWN U(0x0)
808#define EC_WFE_WFI U(0x1)
809#define EC_AARCH32_CP15_MRC_MCR U(0x3)
810#define EC_AARCH32_CP15_MRRC_MCRR U(0x4)
811#define EC_AARCH32_CP14_MRC_MCR U(0x5)
812#define EC_AARCH32_CP14_LDC_STC U(0x6)
813#define EC_FP_SIMD U(0x7)
814#define EC_AARCH32_CP10_MRC U(0x8)
815#define EC_AARCH32_CP14_MRRC_MCRR U(0xc)
816#define EC_ILLEGAL U(0xe)
817#define EC_AARCH32_SVC U(0x11)
818#define EC_AARCH32_HVC U(0x12)
819#define EC_AARCH32_SMC U(0x13)
820#define EC_AARCH64_SVC U(0x15)
821#define EC_AARCH64_HVC U(0x16)
822#define EC_AARCH64_SMC U(0x17)
823#define EC_AARCH64_SYS U(0x18)
824#define EC_IABORT_LOWER_EL U(0x20)
825#define EC_IABORT_CUR_EL U(0x21)
826#define EC_PC_ALIGN U(0x22)
827#define EC_DABORT_LOWER_EL U(0x24)
828#define EC_DABORT_CUR_EL U(0x25)
829#define EC_SP_ALIGN U(0x26)
830#define EC_AARCH32_FP U(0x28)
831#define EC_AARCH64_FP U(0x2c)
832#define EC_SERROR U(0x2f)
Justin Chadwell1f461972019-08-20 11:01:52 +0100833#define EC_BRK U(0x3c)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100834
Jeenu Viswambharan76454ab2017-11-30 12:54:15 +0000835/*
836 * External Abort bit in Instruction and Data Aborts synchronous exception
837 * syndromes.
838 */
839#define ESR_ISS_EABORT_EA_BIT U(9)
840
Varun Wadekar030567e2017-05-25 18:04:48 -0700841#define EC_BITS(x) (((x) >> ESR_EC_SHIFT) & ESR_EC_MASK)
Achin Gupta4f6ad662013-10-25 09:08:21 +0100842
Vignesh Radhakrishnana9e02602017-03-03 10:58:05 -0800843/* Reset bit inside the Reset management register for EL3 (RMR_EL3) */
Varun Wadekar030567e2017-05-25 18:04:48 -0700844#define RMR_RESET_REQUEST_SHIFT U(0x1)
845#define RMR_WARM_RESET_CPU (U(1) << RMR_RESET_REQUEST_SHIFT)
Vignesh Radhakrishnana9e02602017-03-03 10:58:05 -0800846
Dan Handley5f0cdb02014-05-14 17:44:19 +0100847/*******************************************************************************
Antonio Nino Diaz0b64f4e2017-02-27 17:23:54 +0000848 * Definitions of register offsets, fields and macros for CPU system
849 * instructions.
850 ******************************************************************************/
851
Varun Wadekar030567e2017-05-25 18:04:48 -0700852#define TLBI_ADDR_SHIFT U(12)
Antonio Nino Diaz0b64f4e2017-02-27 17:23:54 +0000853#define TLBI_ADDR_MASK ULL(0x00000FFFFFFFFFFF)
854#define TLBI_ADDR(x) (((x) >> TLBI_ADDR_SHIFT) & TLBI_ADDR_MASK)
855
856/*******************************************************************************
Dan Handley5f0cdb02014-05-14 17:44:19 +0100857 * Definitions of register offsets and fields in the CNTCTLBase Frame of the
858 * system level implementation of the Generic Timer.
859 ******************************************************************************/
Soby Mathew342d6222018-06-11 16:21:30 +0100860#define CNTCTLBASE_CNTFRQ U(0x0)
Varun Wadekar030567e2017-05-25 18:04:48 -0700861#define CNTNSAR U(0x4)
862#define CNTNSAR_NS_SHIFT(x) (x)
Dan Handley5f0cdb02014-05-14 17:44:19 +0100863
Varun Wadekar030567e2017-05-25 18:04:48 -0700864#define CNTACR_BASE(x) (U(0x40) + ((x) << 2))
865#define CNTACR_RPCT_SHIFT U(0x0)
866#define CNTACR_RVCT_SHIFT U(0x1)
867#define CNTACR_RFRQ_SHIFT U(0x2)
868#define CNTACR_RVOFF_SHIFT U(0x3)
869#define CNTACR_RWVT_SHIFT U(0x4)
870#define CNTACR_RWPT_SHIFT U(0x5)
Dan Handley5f0cdb02014-05-14 17:44:19 +0100871
Soby Mathew342d6222018-06-11 16:21:30 +0100872/*******************************************************************************
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000873 * Definitions of register offsets and fields in the CNTBaseN Frame of the
Soby Mathew342d6222018-06-11 16:21:30 +0100874 * system level implementation of the Generic Timer.
875 ******************************************************************************/
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +0000876/* Physical Count register. */
877#define CNTPCT_LO U(0x0)
878/* Counter Frequency register. */
879#define CNTBASEN_CNTFRQ U(0x10)
880/* Physical Timer CompareValue register. */
881#define CNTP_CVAL_LO U(0x20)
882/* Physical Timer Control register. */
883#define CNTP_CTL U(0x2c)
Soby Mathew342d6222018-06-11 16:21:30 +0100884
David Cunado495f3d32016-10-31 17:37:34 +0000885/* PMCR_EL0 definitions */
David Cunado3e61b2b2017-10-02 17:41:39 +0100886#define PMCR_EL0_RESET_VAL U(0x0)
Varun Wadekar030567e2017-05-25 18:04:48 -0700887#define PMCR_EL0_N_SHIFT U(11)
888#define PMCR_EL0_N_MASK U(0x1f)
David Cunado495f3d32016-10-31 17:37:34 +0000889#define PMCR_EL0_N_BITS (PMCR_EL0_N_MASK << PMCR_EL0_N_SHIFT)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100890#define PMCR_EL0_LP_BIT (U(1) << 7)
David Cunado3e61b2b2017-10-02 17:41:39 +0100891#define PMCR_EL0_LC_BIT (U(1) << 6)
892#define PMCR_EL0_DP_BIT (U(1) << 5)
893#define PMCR_EL0_X_BIT (U(1) << 4)
894#define PMCR_EL0_D_BIT (U(1) << 3)
Alexei Fedorove290a8fc2019-08-13 15:17:53 +0100895#define PMCR_EL0_C_BIT (U(1) << 2)
896#define PMCR_EL0_P_BIT (U(1) << 1)
897#define PMCR_EL0_E_BIT (U(1) << 0)
David Cunado495f3d32016-10-31 17:37:34 +0000898
Isla Mitchell04880e32017-07-21 14:44:36 +0100899/*******************************************************************************
David Cunado1a853372017-10-20 11:30:57 +0100900 * Definitions for system register interface to SVE
901 ******************************************************************************/
902#define ZCR_EL3 S3_6_C1_C2_0
903#define ZCR_EL2 S3_4_C1_C2_0
904
905/* ZCR_EL3 definitions */
906#define ZCR_EL3_LEN_MASK U(0xf)
907
908/* ZCR_EL2 definitions */
909#define ZCR_EL2_LEN_MASK U(0xf)
910
911/*******************************************************************************
Isla Mitchell04880e32017-07-21 14:44:36 +0100912 * Definitions of MAIR encodings for device and normal memory
913 ******************************************************************************/
914/*
915 * MAIR encodings for device memory attributes.
916 */
917#define MAIR_DEV_nGnRnE ULL(0x0)
918#define MAIR_DEV_nGnRE ULL(0x4)
919#define MAIR_DEV_nGRE ULL(0x8)
920#define MAIR_DEV_GRE ULL(0xc)
921
922/*
923 * MAIR encodings for normal memory attributes.
924 *
925 * Cache Policy
926 * WT: Write Through
927 * WB: Write Back
928 * NC: Non-Cacheable
929 *
930 * Transient Hint
931 * NTR: Non-Transient
932 * TR: Transient
933 *
934 * Allocation Policy
935 * RA: Read Allocate
936 * WA: Write Allocate
937 * RWA: Read and Write Allocate
938 * NA: No Allocation
939 */
940#define MAIR_NORM_WT_TR_WA ULL(0x1)
941#define MAIR_NORM_WT_TR_RA ULL(0x2)
942#define MAIR_NORM_WT_TR_RWA ULL(0x3)
943#define MAIR_NORM_NC ULL(0x4)
944#define MAIR_NORM_WB_TR_WA ULL(0x5)
945#define MAIR_NORM_WB_TR_RA ULL(0x6)
946#define MAIR_NORM_WB_TR_RWA ULL(0x7)
947#define MAIR_NORM_WT_NTR_NA ULL(0x8)
948#define MAIR_NORM_WT_NTR_WA ULL(0x9)
949#define MAIR_NORM_WT_NTR_RA ULL(0xa)
950#define MAIR_NORM_WT_NTR_RWA ULL(0xb)
951#define MAIR_NORM_WB_NTR_NA ULL(0xc)
952#define MAIR_NORM_WB_NTR_WA ULL(0xd)
953#define MAIR_NORM_WB_NTR_RA ULL(0xe)
954#define MAIR_NORM_WB_NTR_RWA ULL(0xf)
955
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100956#define MAIR_NORM_OUTER_SHIFT U(4)
Isla Mitchell04880e32017-07-21 14:44:36 +0100957
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100958#define MAKE_MAIR_NORMAL_MEMORY(inner, outer) \
959 ((inner) | ((outer) << MAIR_NORM_OUTER_SHIFT))
Isla Mitchell04880e32017-07-21 14:44:36 +0100960
Jeenu Viswambharan781f4aa2017-10-19 09:15:15 +0100961/* PAR_EL1 fields */
Antonio Nino Diaz30399882018-07-12 13:23:59 +0100962#define PAR_F_SHIFT U(0)
963#define PAR_F_MASK ULL(0x1)
964#define PAR_ADDR_SHIFT U(12)
965#define PAR_ADDR_MASK (BIT(40) - ULL(1)) /* 40-bits-wide page address */
Jeenu Viswambharan781f4aa2017-10-19 09:15:15 +0100966
Dimitris Papastamos281a08c2017-10-13 12:06:06 +0100967/*******************************************************************************
968 * Definitions for system register interface to SPE
969 ******************************************************************************/
970#define PMBLIMITR_EL1 S3_0_C9_C10_0
971
Dimitris Papastamos380559c2017-10-12 13:02:29 +0100972/*******************************************************************************
Jeenu Viswambharan5f835912018-07-31 16:13:33 +0100973 * Definitions for system register interface to MPAM
974 ******************************************************************************/
975#define MPAMIDR_EL1 S3_0_C10_C4_4
976#define MPAM2_EL2 S3_4_C10_C5_0
977#define MPAMHCR_EL2 S3_4_C10_C4_0
978#define MPAM3_EL3 S3_6_C10_C5_0
979
980/*******************************************************************************
johpow01873d4242020-10-02 13:41:11 -0500981 * Definitions for system register interface to AMU for FEAT_AMUv1
Dimitris Papastamos380559c2017-10-12 13:02:29 +0100982 ******************************************************************************/
983#define AMCR_EL0 S3_3_C13_C2_0
984#define AMCFGR_EL0 S3_3_C13_C2_1
985#define AMCGCR_EL0 S3_3_C13_C2_2
986#define AMUSERENR_EL0 S3_3_C13_C2_3
987#define AMCNTENCLR0_EL0 S3_3_C13_C2_4
988#define AMCNTENSET0_EL0 S3_3_C13_C2_5
989#define AMCNTENCLR1_EL0 S3_3_C13_C3_0
990#define AMCNTENSET1_EL0 S3_3_C13_C3_1
991
992/* Activity Monitor Group 0 Event Counter Registers */
993#define AMEVCNTR00_EL0 S3_3_C13_C4_0
994#define AMEVCNTR01_EL0 S3_3_C13_C4_1
995#define AMEVCNTR02_EL0 S3_3_C13_C4_2
996#define AMEVCNTR03_EL0 S3_3_C13_C4_3
997
998/* Activity Monitor Group 0 Event Type Registers */
999#define AMEVTYPER00_EL0 S3_3_C13_C6_0
1000#define AMEVTYPER01_EL0 S3_3_C13_C6_1
1001#define AMEVTYPER02_EL0 S3_3_C13_C6_2
1002#define AMEVTYPER03_EL0 S3_3_C13_C6_3
1003
Dimitris Papastamos0767d502017-11-13 09:49:45 +00001004/* Activity Monitor Group 1 Event Counter Registers */
1005#define AMEVCNTR10_EL0 S3_3_C13_C12_0
1006#define AMEVCNTR11_EL0 S3_3_C13_C12_1
1007#define AMEVCNTR12_EL0 S3_3_C13_C12_2
1008#define AMEVCNTR13_EL0 S3_3_C13_C12_3
1009#define AMEVCNTR14_EL0 S3_3_C13_C12_4
1010#define AMEVCNTR15_EL0 S3_3_C13_C12_5
1011#define AMEVCNTR16_EL0 S3_3_C13_C12_6
1012#define AMEVCNTR17_EL0 S3_3_C13_C12_7
1013#define AMEVCNTR18_EL0 S3_3_C13_C13_0
1014#define AMEVCNTR19_EL0 S3_3_C13_C13_1
1015#define AMEVCNTR1A_EL0 S3_3_C13_C13_2
1016#define AMEVCNTR1B_EL0 S3_3_C13_C13_3
1017#define AMEVCNTR1C_EL0 S3_3_C13_C13_4
1018#define AMEVCNTR1D_EL0 S3_3_C13_C13_5
1019#define AMEVCNTR1E_EL0 S3_3_C13_C13_6
1020#define AMEVCNTR1F_EL0 S3_3_C13_C13_7
1021
1022/* Activity Monitor Group 1 Event Type Registers */
1023#define AMEVTYPER10_EL0 S3_3_C13_C14_0
1024#define AMEVTYPER11_EL0 S3_3_C13_C14_1
1025#define AMEVTYPER12_EL0 S3_3_C13_C14_2
1026#define AMEVTYPER13_EL0 S3_3_C13_C14_3
1027#define AMEVTYPER14_EL0 S3_3_C13_C14_4
1028#define AMEVTYPER15_EL0 S3_3_C13_C14_5
1029#define AMEVTYPER16_EL0 S3_3_C13_C14_6
1030#define AMEVTYPER17_EL0 S3_3_C13_C14_7
1031#define AMEVTYPER18_EL0 S3_3_C13_C15_0
1032#define AMEVTYPER19_EL0 S3_3_C13_C15_1
1033#define AMEVTYPER1A_EL0 S3_3_C13_C15_2
1034#define AMEVTYPER1B_EL0 S3_3_C13_C15_3
1035#define AMEVTYPER1C_EL0 S3_3_C13_C15_4
1036#define AMEVTYPER1D_EL0 S3_3_C13_C15_5
1037#define AMEVTYPER1E_EL0 S3_3_C13_C15_6
1038#define AMEVTYPER1F_EL0 S3_3_C13_C15_7
1039
Alexei Fedorovf3ccf032020-07-14 08:17:56 +01001040/* AMCFGR_EL0 definitions */
1041#define AMCFGR_EL0_NCG_SHIFT U(28)
1042#define AMCFGR_EL0_NCG_MASK U(0xf)
1043#define AMCFGR_EL0_N_SHIFT U(0)
1044#define AMCFGR_EL0_N_MASK U(0xff)
1045
Dimitris Papastamos0767d502017-11-13 09:49:45 +00001046/* AMCGCR_EL0 definitions */
1047#define AMCGCR_EL0_CG1NC_SHIFT U(8)
Dimitris Papastamos0767d502017-11-13 09:49:45 +00001048#define AMCGCR_EL0_CG1NC_MASK U(0xff)
1049
Jeenu Viswambharan5f835912018-07-31 16:13:33 +01001050/* MPAM register definitions */
1051#define MPAM3_EL3_MPAMEN_BIT (ULL(1) << 63)
Louis Mayencourt537fa852019-02-11 11:25:50 +00001052#define MPAMHCR_EL2_TRAP_MPAMIDR_EL1 (ULL(1) << 31)
1053
1054#define MPAM2_EL2_TRAPMPAM0EL1 (ULL(1) << 49)
1055#define MPAM2_EL2_TRAPMPAM1EL1 (ULL(1) << 48)
Jeenu Viswambharan5f835912018-07-31 16:13:33 +01001056
1057#define MPAMIDR_HAS_HCR_BIT (ULL(1) << 17)
1058
Jeenu Viswambharan14c60162018-04-04 16:07:11 +01001059/*******************************************************************************
johpow01873d4242020-10-02 13:41:11 -05001060 * Definitions for system register interface to AMU for FEAT_AMUv1p1
1061 ******************************************************************************/
1062
1063/* Definition for register defining which virtual offsets are implemented. */
1064#define AMCG1IDR_EL0 S3_3_C13_C2_6
1065#define AMCG1IDR_CTR_MASK ULL(0xffff)
1066#define AMCG1IDR_CTR_SHIFT U(0)
1067#define AMCG1IDR_VOFF_MASK ULL(0xffff)
1068#define AMCG1IDR_VOFF_SHIFT U(16)
1069
1070/* New bit added to AMCR_EL0 */
1071#define AMCR_CG1RZ_BIT (ULL(0x1) << 17)
1072
1073/*
1074 * Definitions for virtual offset registers for architected activity monitor
1075 * event counters.
1076 * AMEVCNTVOFF01_EL2 intentionally left undefined, as it does not exist.
1077 */
1078#define AMEVCNTVOFF00_EL2 S3_4_C13_C8_0
1079#define AMEVCNTVOFF02_EL2 S3_4_C13_C8_2
1080#define AMEVCNTVOFF03_EL2 S3_4_C13_C8_3
1081
1082/*
1083 * Definitions for virtual offset registers for auxiliary activity monitor event
1084 * counters.
1085 */
1086#define AMEVCNTVOFF10_EL2 S3_4_C13_C10_0
1087#define AMEVCNTVOFF11_EL2 S3_4_C13_C10_1
1088#define AMEVCNTVOFF12_EL2 S3_4_C13_C10_2
1089#define AMEVCNTVOFF13_EL2 S3_4_C13_C10_3
1090#define AMEVCNTVOFF14_EL2 S3_4_C13_C10_4
1091#define AMEVCNTVOFF15_EL2 S3_4_C13_C10_5
1092#define AMEVCNTVOFF16_EL2 S3_4_C13_C10_6
1093#define AMEVCNTVOFF17_EL2 S3_4_C13_C10_7
1094#define AMEVCNTVOFF18_EL2 S3_4_C13_C11_0
1095#define AMEVCNTVOFF19_EL2 S3_4_C13_C11_1
1096#define AMEVCNTVOFF1A_EL2 S3_4_C13_C11_2
1097#define AMEVCNTVOFF1B_EL2 S3_4_C13_C11_3
1098#define AMEVCNTVOFF1C_EL2 S3_4_C13_C11_4
1099#define AMEVCNTVOFF1D_EL2 S3_4_C13_C11_5
1100#define AMEVCNTVOFF1E_EL2 S3_4_C13_C11_6
1101#define AMEVCNTVOFF1F_EL2 S3_4_C13_C11_7
1102
1103/*******************************************************************************
Zelalem Aweke81c272b2021-07-08 16:51:14 -05001104 * Realm management extension register definitions
1105 ******************************************************************************/
1106
1107/* GPCCR_EL3 definitions */
1108#define GPCCR_EL3 S3_6_C2_C1_6
1109
1110/* Least significant address bits protected by each entry in level 0 GPT */
1111#define GPCCR_L0GPTSZ_SHIFT U(20)
1112#define GPCCR_L0GPTSZ_MASK U(0xF)
1113#define GPCCR_L0GPTSZ_30BITS U(0x0)
1114#define GPCCR_L0GPTSZ_34BITS U(0x4)
1115#define GPCCR_L0GPTSZ_36BITS U(0x6)
1116#define GPCCR_L0GPTSZ_39BITS U(0x9)
1117#define SET_GPCCR_L0GPTSZ(x) \
1118 ((x & GPCCR_L0GPTSZ_MASK) << GPCCR_L0GPTSZ_SHIFT)
1119
1120/* Granule protection check priority bit definitions */
1121#define GPCCR_GPCP_SHIFT U(17)
1122#define GPCCR_GPCP_BIT (ULL(1) << GPCCR_EL3_GPCP_SHIFT)
1123
1124/* Granule protection check bit definitions */
1125#define GPCCR_GPC_SHIFT U(16)
1126#define GPCCR_GPC_BIT (ULL(1) << GPCCR_GPC_SHIFT)
1127
1128/* Physical granule size bit definitions */
1129#define GPCCR_PGS_SHIFT U(14)
1130#define GPCCR_PGS_MASK U(0x3)
1131#define GPCCR_PGS_4K U(0x0)
1132#define GPCCR_PGS_16K U(0x2)
1133#define GPCCR_PGS_64K U(0x1)
1134#define SET_GPCCR_PGS(x) \
1135 ((x & GPCCR_PGS_MASK) << GPCCR_PGS_SHIFT)
1136
1137/* GPT fetch shareability attribute bit definitions */
1138#define GPCCR_SH_SHIFT U(12)
1139#define GPCCR_SH_MASK U(0x3)
1140#define GPCCR_SH_NS U(0x0)
1141#define GPCCR_SH_OS U(0x2)
1142#define GPCCR_SH_IS U(0x3)
1143#define SET_GPCCR_SH(x) \
1144 ((x & GPCCR_SH_MASK) << GPCCR_SH_SHIFT)
1145
1146/* GPT fetch outer cacheability attribute bit definitions */
1147#define GPCCR_ORGN_SHIFT U(10)
1148#define GPCCR_ORGN_MASK U(0x3)
1149#define GPCCR_ORGN_NC U(0x0)
1150#define GPCCR_ORGN_WB_RA_WA U(0x1)
1151#define GPCCR_ORGN_WT_RA_NWA U(0x2)
1152#define GPCCR_ORGN_WB_RA_NWA U(0x3)
1153#define SET_GPCCR_ORGN(x) \
1154 ((x & GPCCR_ORGN_MASK) << GPCCR_ORGN_SHIFT)
1155
1156/* GPT fetch inner cacheability attribute bit definitions */
1157#define GPCCR_IRGN_SHIFT U(8)
1158#define GPCCR_IRGN_MASK U(0x3)
1159#define GPCCR_IRGN_NC U(0x0)
1160#define GPCCR_IRGN_WB_RA_WA U(0x1)
1161#define GPCCR_IRGN_WT_RA_NWA U(0x2)
1162#define GPCCR_IRGN_WB_RA_NWA U(0x3)
1163#define SET_GPCCR_IRGN(x) \
1164 ((x & GPCCR_IRGN_MASK) << GPCCR_IRGN_SHIFT)
1165
1166/* Protected physical address size bit definitions */
1167#define GPCCR_PPS_SHIFT U(0)
1168#define GPCCR_PPS_MASK U(0x7)
1169#define GPCCR_PPS_4GB U(0x0)
1170#define GPCCR_PPS_64GB U(0x1)
1171#define GPCCR_PPS_1TB U(0x2)
1172#define GPCCR_PPS_4TB U(0x3)
1173#define GPCCR_PPS_16TB U(0x4)
1174#define GPCCR_PPS_256TB U(0x5)
1175#define GPCCR_PPS_4PB U(0x6)
1176#define SET_GPCCR_PPS(x) \
1177 ((x & GPCCR_PPS_MASK) << GPCCR_PPS_SHIFT)
1178
1179/* GPTBR_EL3 definitions */
1180#define GPTBR_EL3 S3_6_C2_C1_4
1181
1182/* Base Address for the GPT bit definitions */
1183#define GPTBR_BADDR_SHIFT U(0)
1184#define GPTBR_BADDR_VAL_SHIFT U(12)
1185#define GPTBR_BADDR_MASK ULL(0xffffffffff)
1186
1187/*******************************************************************************
Jeenu Viswambharan14c60162018-04-04 16:07:11 +01001188 * RAS system registers
Sathees Balya65849aa2018-12-06 13:33:24 +00001189 ******************************************************************************/
Jeenu Viswambharan14c60162018-04-04 16:07:11 +01001190#define DISR_EL1 S3_0_C12_C1_1
Antonio Nino Diaz30399882018-07-12 13:23:59 +01001191#define DISR_A_BIT U(31)
Jeenu Viswambharan14c60162018-04-04 16:07:11 +01001192
Jeenu Viswambharan30d81c32017-12-07 08:43:05 +00001193#define ERRIDR_EL1 S3_0_C5_C3_0
Antonio Nino Diaz30399882018-07-12 13:23:59 +01001194#define ERRIDR_MASK U(0xffff)
Jeenu Viswambharan30d81c32017-12-07 08:43:05 +00001195
1196#define ERRSELR_EL1 S3_0_C5_C3_1
1197
1198/* System register access to Standard Error Record registers */
1199#define ERXFR_EL1 S3_0_C5_C4_0
1200#define ERXCTLR_EL1 S3_0_C5_C4_1
1201#define ERXSTATUS_EL1 S3_0_C5_C4_2
1202#define ERXADDR_EL1 S3_0_C5_C4_3
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +00001203#define ERXPFGF_EL1 S3_0_C5_C4_4
1204#define ERXPFGCTL_EL1 S3_0_C5_C4_5
1205#define ERXPFGCDN_EL1 S3_0_C5_C4_6
Jan Dabros30125ea2018-08-30 13:52:23 +02001206#define ERXMISC0_EL1 S3_0_C5_C5_0
1207#define ERXMISC1_EL1 S3_0_C5_C5_1
Jeenu Viswambharan30d81c32017-12-07 08:43:05 +00001208
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +00001209#define ERXCTLR_ED_BIT (U(1) << 0)
1210#define ERXCTLR_UE_BIT (U(1) << 4)
1211
1212#define ERXPFGCTL_UC_BIT (U(1) << 1)
1213#define ERXPFGCTL_UEU_BIT (U(1) << 2)
1214#define ERXPFGCTL_CDEN_BIT (U(1) << 31)
1215
1216/*******************************************************************************
1217 * Armv8.3 Pointer Authentication Registers
Sathees Balya65849aa2018-12-06 13:33:24 +00001218 ******************************************************************************/
Antonio Nino Diaz52839622019-01-31 11:58:00 +00001219#define APIAKeyLo_EL1 S3_0_C2_C1_0
1220#define APIAKeyHi_EL1 S3_0_C2_C1_1
1221#define APIBKeyLo_EL1 S3_0_C2_C1_2
1222#define APIBKeyHi_EL1 S3_0_C2_C1_3
1223#define APDAKeyLo_EL1 S3_0_C2_C2_0
1224#define APDAKeyHi_EL1 S3_0_C2_C2_1
1225#define APDBKeyLo_EL1 S3_0_C2_C2_2
1226#define APDBKeyHi_EL1 S3_0_C2_C2_3
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +00001227#define APGAKeyLo_EL1 S3_0_C2_C3_0
Antonio Nino Diaz52839622019-01-31 11:58:00 +00001228#define APGAKeyHi_EL1 S3_0_C2_C3_1
Antonio Nino Diaz932b3ae2018-11-22 15:53:17 +00001229
Sathees Balya65849aa2018-12-06 13:33:24 +00001230/*******************************************************************************
1231 * Armv8.4 Data Independent Timing Registers
1232 ******************************************************************************/
1233#define DIT S3_3_C4_C2_5
1234#define DIT_BIT BIT(24)
1235
John Tsichritzis80744482019-03-04 16:41:26 +00001236/*******************************************************************************
1237 * Armv8.5 - new MSR encoding to directly access PSTATE.SSBS field
1238 ******************************************************************************/
1239#define SSBS S3_3_C4_C2_6
1240
Justin Chadwell9dd94382019-07-18 14:25:33 +01001241/*******************************************************************************
1242 * Armv8.5 - Memory Tagging Extension Registers
1243 ******************************************************************************/
1244#define TFSRE0_EL1 S3_0_C5_C6_1
1245#define TFSR_EL1 S3_0_C5_C6_0
1246#define RGSR_EL1 S3_0_C1_C0_5
1247#define GCR_EL1 S3_0_C1_C0_6
1248
Madhukar Pappireddy9cf7f352019-10-30 14:24:39 -05001249/*******************************************************************************
johpow01cb4ec472021-08-04 19:38:18 -05001250 * FEAT_HCX - Extended Hypervisor Configuration Register
1251 ******************************************************************************/
1252#define HCRX_EL2 S3_4_C1_C2_2
1253#define HCRX_EL2_FGTnXS_BIT (UL(1) << 4)
1254#define HCRX_EL2_FnXS_BIT (UL(1) << 3)
1255#define HCRX_EL2_EnASR_BIT (UL(1) << 2)
1256#define HCRX_EL2_EnALS_BIT (UL(1) << 1)
1257#define HCRX_EL2_EnAS0_BIT (UL(1) << 0)
1258
1259/*******************************************************************************
Madhukar Pappireddy9cf7f352019-10-30 14:24:39 -05001260 * Definitions for DynamicIQ Shared Unit registers
1261 ******************************************************************************/
1262#define CLUSTERPWRDN_EL1 S3_0_c15_c3_6
1263
1264/* CLUSTERPWRDN_EL1 register definitions */
1265#define DSU_CLUSTER_PWR_OFF 0
1266#define DSU_CLUSTER_PWR_ON 1
1267#define DSU_CLUSTER_PWR_MASK U(1)
1268
Antonio Nino Diaz1083b2b2018-07-20 09:17:26 +01001269#endif /* ARCH_H */