2 * ARM SMMUv3 support - Internal API
4 * Copyright (C) 2014-2016 Broadcom Corporation
5 * Copyright (c) 2017 Red Hat, Inc.
6 * Written by Prem Mallappa, Eric Auger
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
21 #ifndef HW_ARM_SMMUV3_INTERNAL_H
22 #define HW_ARM_SMMUV3_INTERNAL_H
24 #include "hw/arm/smmu-common.h"
26 typedef enum SMMUTranslationStatus
{
32 } SMMUTranslationStatus
;
37 FIELD(IDR0
, S2P
, 0 , 1)
38 FIELD(IDR0
, S1P
, 1 , 1)
39 FIELD(IDR0
, TTF
, 2 , 2)
40 FIELD(IDR0
, COHACC
, 4 , 1)
41 FIELD(IDR0
, BTM
, 5 , 1)
42 FIELD(IDR0
, HTTU
, 6 , 2)
43 FIELD(IDR0
, DORMHINT
, 8 , 1)
44 FIELD(IDR0
, HYP
, 9 , 1)
45 FIELD(IDR0
, ATS
, 10, 1)
46 FIELD(IDR0
, NS1ATS
, 11, 1)
47 FIELD(IDR0
, ASID16
, 12, 1)
48 FIELD(IDR0
, MSI
, 13, 1)
49 FIELD(IDR0
, SEV
, 14, 1)
50 FIELD(IDR0
, ATOS
, 15, 1)
51 FIELD(IDR0
, PRI
, 16, 1)
52 FIELD(IDR0
, VMW
, 17, 1)
53 FIELD(IDR0
, VMID16
, 18, 1)
54 FIELD(IDR0
, CD2L
, 19, 1)
55 FIELD(IDR0
, VATOS
, 20, 1)
56 FIELD(IDR0
, TTENDIAN
, 21, 2)
57 FIELD(IDR0
, ATSRECERR
, 23, 1)
58 FIELD(IDR0
, STALL_MODEL
, 24, 2)
59 FIELD(IDR0
, TERM_MODEL
, 26, 1)
60 FIELD(IDR0
, STLEVEL
, 27, 2)
61 FIELD(IDR0
, RME_IMPL
, 30, 1)
64 FIELD(IDR1
, SIDSIZE
, 0 , 6)
65 FIELD(IDR1
, SSIDSIZE
, 6 , 5)
66 FIELD(IDR1
, PRIQS
, 11, 5)
67 FIELD(IDR1
, EVENTQS
, 16, 5)
68 FIELD(IDR1
, CMDQS
, 21, 5)
69 FIELD(IDR1
, ATTR_PERMS_OVR
, 26, 1)
70 FIELD(IDR1
, ATTR_TYPES_OVR
, 27, 1)
71 FIELD(IDR1
, REL
, 28, 1)
72 FIELD(IDR1
, QUEUES_PRESET
, 29, 1)
73 FIELD(IDR1
, TABLES_PRESET
, 30, 1)
74 FIELD(IDR1
, ECMDQ
, 31, 1)
76 #define SMMU_IDR1_SIDSIZE 16
78 #define SMMU_EVENTQS 19
81 FIELD(IDR2
, BA_VATOS
, 0, 10)
84 FIELD(IDR3
, HAD
, 2, 1);
85 FIELD(IDR3
, PBHA
, 3, 1);
86 FIELD(IDR3
, XNX
, 4, 1);
87 FIELD(IDR3
, PPS
, 5, 1);
88 FIELD(IDR3
, MPAM
, 7, 1);
89 FIELD(IDR3
, FWB
, 8, 1);
90 FIELD(IDR3
, STT
, 9, 1);
91 FIELD(IDR3
, RIL
, 10, 1);
92 FIELD(IDR3
, BBML
, 11, 2);
93 FIELD(IDR3
, E0PD
, 13, 1);
94 FIELD(IDR3
, PTWNNC
, 14, 1);
95 FIELD(IDR3
, DPT
, 15, 1);
100 FIELD(IDR5
, OAS
, 0, 3);
101 FIELD(IDR5
, GRAN4K
, 4, 1);
102 FIELD(IDR5
, GRAN16K
, 5, 1);
103 FIELD(IDR5
, GRAN64K
, 6, 1);
104 FIELD(IDR5
, VAX
, 10, 2);
105 FIELD(IDR5
, STALL_MAX
, 16, 16);
107 #define SMMU_IDR5_OAS 4
112 FIELD(CR0
, SMMU_ENABLE
, 0, 1)
113 FIELD(CR0
, EVENTQEN
, 2, 1)
114 FIELD(CR0
, CMDQEN
, 3, 1)
116 #define SMMU_CR0_RESERVED 0xFFFFFC20
123 FIELD(GBPA
, ABORT
, 20, 1)
124 FIELD(GBPA
, UPDATE
, 31, 1)
127 #define SMMU_GBPA_RESET_VAL 0x1000
129 REG32(IRQ_CTRL
, 0x50)
130 FIELD(IRQ_CTRL
, GERROR_IRQEN
, 0, 1)
131 FIELD(IRQ_CTRL
, PRI_IRQEN
, 1, 1)
132 FIELD(IRQ_CTRL
, EVENTQ_IRQEN
, 2, 1)
134 REG32(IRQ_CTRL_ACK
, 0x54)
136 FIELD(GERROR
, CMDQ_ERR
, 0, 1)
137 FIELD(GERROR
, EVENTQ_ABT_ERR
, 2, 1)
138 FIELD(GERROR
, PRIQ_ABT_ERR
, 3, 1)
139 FIELD(GERROR
, MSI_CMDQ_ABT_ERR
, 4, 1)
140 FIELD(GERROR
, MSI_EVENTQ_ABT_ERR
, 5, 1)
141 FIELD(GERROR
, MSI_PRIQ_ABT_ERR
, 6, 1)
142 FIELD(GERROR
, MSI_GERROR_ABT_ERR
, 7, 1)
143 FIELD(GERROR
, MSI_SFM_ERR
, 8, 1)
147 #define A_GERROR_IRQ_CFG0 0x68 /* 64b */
148 REG32(GERROR_IRQ_CFG1
, 0x70)
149 REG32(GERROR_IRQ_CFG2
, 0x74)
151 #define A_STRTAB_BASE 0x80 /* 64b */
153 #define SMMU_BASE_ADDR_MASK 0xfffffffffffc0
155 REG32(STRTAB_BASE_CFG
, 0x88)
156 FIELD(STRTAB_BASE_CFG
, FMT
, 16, 2)
157 FIELD(STRTAB_BASE_CFG
, SPLIT
, 6 , 5)
158 FIELD(STRTAB_BASE_CFG
, LOG2SIZE
, 0 , 6)
160 #define A_CMDQ_BASE 0x90 /* 64b */
161 REG32(CMDQ_PROD
, 0x98)
162 REG32(CMDQ_CONS
, 0x9c)
163 FIELD(CMDQ_CONS
, ERR
, 24, 7)
165 #define A_EVENTQ_BASE 0xa0 /* 64b */
166 REG32(EVENTQ_PROD
, 0xa8)
167 REG32(EVENTQ_CONS
, 0xac)
169 #define A_EVENTQ_IRQ_CFG0 0xb0 /* 64b */
170 REG32(EVENTQ_IRQ_CFG1
, 0xb8)
171 REG32(EVENTQ_IRQ_CFG2
, 0xbc)
173 #define A_IDREGS 0xfd0
175 static inline int smmu_enabled(SMMUv3State
*s
)
177 return FIELD_EX32(s
->cr
[0], CR0
, SMMU_ENABLE
);
180 /* Command Queue Entry */
185 /* Event Queue Entry */
190 static inline uint32_t smmuv3_idreg(int regoffset
)
193 * Return the value of the Primecell/Corelink ID registers at the
194 * specified offset from the first ID register.
195 * These value indicate an ARM implementation of MMU600 p1
197 static const uint8_t smmuv3_ids
[] = {
198 0x04, 0, 0, 0, 0x84, 0xB4, 0xF0, 0x10, 0x0D, 0xF0, 0x05, 0xB1
200 return smmuv3_ids
[regoffset
/ 4];
203 static inline bool smmuv3_eventq_irq_enabled(SMMUv3State
*s
)
205 return FIELD_EX32(s
->irq_ctrl
, IRQ_CTRL
, EVENTQ_IRQEN
);
208 static inline bool smmuv3_gerror_irq_enabled(SMMUv3State
*s
)
210 return FIELD_EX32(s
->irq_ctrl
, IRQ_CTRL
, GERROR_IRQEN
);
215 #define Q_BASE(q) ((q)->base & SMMU_BASE_ADDR_MASK)
216 #define WRAP_MASK(q) (1 << (q)->log2size)
217 #define INDEX_MASK(q) (((1 << (q)->log2size)) - 1)
218 #define WRAP_INDEX_MASK(q) ((1 << ((q)->log2size + 1)) - 1)
220 #define Q_CONS(q) ((q)->cons & INDEX_MASK(q))
221 #define Q_PROD(q) ((q)->prod & INDEX_MASK(q))
223 #define Q_CONS_ENTRY(q) (Q_BASE(q) + (q)->entry_size * Q_CONS(q))
224 #define Q_PROD_ENTRY(q) (Q_BASE(q) + (q)->entry_size * Q_PROD(q))
226 #define Q_CONS_WRAP(q) (((q)->cons & WRAP_MASK(q)) >> (q)->log2size)
227 #define Q_PROD_WRAP(q) (((q)->prod & WRAP_MASK(q)) >> (q)->log2size)
229 static inline bool smmuv3_q_full(SMMUQueue
*q
)
231 return ((q
->cons
^ q
->prod
) & WRAP_INDEX_MASK(q
)) == WRAP_MASK(q
);
234 static inline bool smmuv3_q_empty(SMMUQueue
*q
)
236 return (q
->cons
& WRAP_INDEX_MASK(q
)) == (q
->prod
& WRAP_INDEX_MASK(q
));
239 static inline void queue_prod_incr(SMMUQueue
*q
)
241 q
->prod
= (q
->prod
+ 1) & WRAP_INDEX_MASK(q
);
244 static inline void queue_cons_incr(SMMUQueue
*q
)
247 * We have to use deposit for the CONS registers to preserve
248 * the ERR field in the high bits.
250 q
->cons
= deposit32(q
->cons
, 0, q
->log2size
+ 1, q
->cons
+ 1);
253 static inline bool smmuv3_cmdq_enabled(SMMUv3State
*s
)
255 return FIELD_EX32(s
->cr
[0], CR0
, CMDQEN
);
258 static inline bool smmuv3_eventq_enabled(SMMUv3State
*s
)
260 return FIELD_EX32(s
->cr
[0], CR0
, EVENTQEN
);
263 static inline void smmu_write_cmdq_err(SMMUv3State
*s
, uint32_t err_type
)
265 s
->cmdq
.cons
= FIELD_DP32(s
->cmdq
.cons
, CMDQ_CONS
, ERR
, err_type
);
270 typedef enum SMMUCommandType
{
271 SMMU_CMD_NONE
= 0x00,
272 SMMU_CMD_PREFETCH_CONFIG
,
273 SMMU_CMD_PREFETCH_ADDR
,
275 SMMU_CMD_CFGI_STE_RANGE
,
277 SMMU_CMD_CFGI_CD_ALL
,
279 SMMU_CMD_TLBI_NH_ALL
= 0x10,
280 SMMU_CMD_TLBI_NH_ASID
,
282 SMMU_CMD_TLBI_NH_VAA
,
283 SMMU_CMD_TLBI_EL3_ALL
= 0x18,
284 SMMU_CMD_TLBI_EL3_VA
= 0x1a,
285 SMMU_CMD_TLBI_EL2_ALL
= 0x20,
286 SMMU_CMD_TLBI_EL2_ASID
,
287 SMMU_CMD_TLBI_EL2_VA
,
288 SMMU_CMD_TLBI_EL2_VAA
,
289 SMMU_CMD_TLBI_S12_VMALL
= 0x28,
290 SMMU_CMD_TLBI_S2_IPA
= 0x2a,
291 SMMU_CMD_TLBI_NSNH_ALL
= 0x30,
292 SMMU_CMD_ATC_INV
= 0x40,
294 SMMU_CMD_RESUME
= 0x44,
299 static const char *cmd_stringify
[] = {
300 [SMMU_CMD_PREFETCH_CONFIG
] = "SMMU_CMD_PREFETCH_CONFIG",
301 [SMMU_CMD_PREFETCH_ADDR
] = "SMMU_CMD_PREFETCH_ADDR",
302 [SMMU_CMD_CFGI_STE
] = "SMMU_CMD_CFGI_STE",
303 [SMMU_CMD_CFGI_STE_RANGE
] = "SMMU_CMD_CFGI_STE_RANGE",
304 [SMMU_CMD_CFGI_CD
] = "SMMU_CMD_CFGI_CD",
305 [SMMU_CMD_CFGI_CD_ALL
] = "SMMU_CMD_CFGI_CD_ALL",
306 [SMMU_CMD_CFGI_ALL
] = "SMMU_CMD_CFGI_ALL",
307 [SMMU_CMD_TLBI_NH_ALL
] = "SMMU_CMD_TLBI_NH_ALL",
308 [SMMU_CMD_TLBI_NH_ASID
] = "SMMU_CMD_TLBI_NH_ASID",
309 [SMMU_CMD_TLBI_NH_VA
] = "SMMU_CMD_TLBI_NH_VA",
310 [SMMU_CMD_TLBI_NH_VAA
] = "SMMU_CMD_TLBI_NH_VAA",
311 [SMMU_CMD_TLBI_EL3_ALL
] = "SMMU_CMD_TLBI_EL3_ALL",
312 [SMMU_CMD_TLBI_EL3_VA
] = "SMMU_CMD_TLBI_EL3_VA",
313 [SMMU_CMD_TLBI_EL2_ALL
] = "SMMU_CMD_TLBI_EL2_ALL",
314 [SMMU_CMD_TLBI_EL2_ASID
] = "SMMU_CMD_TLBI_EL2_ASID",
315 [SMMU_CMD_TLBI_EL2_VA
] = "SMMU_CMD_TLBI_EL2_VA",
316 [SMMU_CMD_TLBI_EL2_VAA
] = "SMMU_CMD_TLBI_EL2_VAA",
317 [SMMU_CMD_TLBI_S12_VMALL
] = "SMMU_CMD_TLBI_S12_VMALL",
318 [SMMU_CMD_TLBI_S2_IPA
] = "SMMU_CMD_TLBI_S2_IPA",
319 [SMMU_CMD_TLBI_NSNH_ALL
] = "SMMU_CMD_TLBI_NSNH_ALL",
320 [SMMU_CMD_ATC_INV
] = "SMMU_CMD_ATC_INV",
321 [SMMU_CMD_PRI_RESP
] = "SMMU_CMD_PRI_RESP",
322 [SMMU_CMD_RESUME
] = "SMMU_CMD_RESUME",
323 [SMMU_CMD_STALL_TERM
] = "SMMU_CMD_STALL_TERM",
324 [SMMU_CMD_SYNC
] = "SMMU_CMD_SYNC",
327 static inline const char *smmu_cmd_string(SMMUCommandType type
)
329 if (type
> SMMU_CMD_NONE
&& type
< ARRAY_SIZE(cmd_stringify
)) {
330 return cmd_stringify
[type
] ? cmd_stringify
[type
] : "UNKNOWN";
339 SMMU_CERROR_NONE
= 0,
342 SMMU_CERROR_ATC_INV_SYNC
,
345 enum { /* Command completion notification */
351 #define CMD_TYPE(x) extract32((x)->word[0], 0 , 8)
352 #define CMD_NUM(x) extract32((x)->word[0], 12 , 5)
353 #define CMD_SCALE(x) extract32((x)->word[0], 20 , 5)
354 #define CMD_SSEC(x) extract32((x)->word[0], 10, 1)
355 #define CMD_SSV(x) extract32((x)->word[0], 11, 1)
356 #define CMD_RESUME_AC(x) extract32((x)->word[0], 12, 1)
357 #define CMD_RESUME_AB(x) extract32((x)->word[0], 13, 1)
358 #define CMD_SYNC_CS(x) extract32((x)->word[0], 12, 2)
359 #define CMD_SSID(x) extract32((x)->word[0], 12, 20)
360 #define CMD_SID(x) ((x)->word[1])
361 #define CMD_VMID(x) extract32((x)->word[1], 0 , 16)
362 #define CMD_ASID(x) extract32((x)->word[1], 16, 16)
363 #define CMD_RESUME_STAG(x) extract32((x)->word[2], 0 , 16)
364 #define CMD_RESP(x) extract32((x)->word[2], 11, 2)
365 #define CMD_LEAF(x) extract32((x)->word[2], 0 , 1)
366 #define CMD_TTL(x) extract32((x)->word[2], 8 , 2)
367 #define CMD_TG(x) extract32((x)->word[2], 10, 2)
368 #define CMD_STE_RANGE(x) extract32((x)->word[2], 0 , 5)
369 #define CMD_ADDR(x) \
370 (((uint64_t)((x)->word[3]) << 32) | \
371 ((extract64((x)->word[2], 12, 20)) << 12))
373 #define SMMU_FEATURE_2LVL_STE (1 << 0)
377 typedef enum SMMUEventType
{
378 SMMU_EVT_NONE
= 0x00,
380 SMMU_EVT_C_BAD_STREAMID
,
381 SMMU_EVT_F_STE_FETCH
,
383 SMMU_EVT_F_BAD_ATS_TREQ
,
384 SMMU_EVT_F_STREAM_DISABLED
,
385 SMMU_EVT_F_TRANS_FORBIDDEN
,
386 SMMU_EVT_C_BAD_SUBSTREAMID
,
387 SMMU_EVT_F_CD_FETCH
,
389 SMMU_EVT_F_WALK_EABT
,
390 SMMU_EVT_F_TRANSLATION
= 0x10,
391 SMMU_EVT_F_ADDR_SIZE
,
393 SMMU_EVT_F_PERMISSION
,
394 SMMU_EVT_F_TLB_CONFLICT
= 0x20,
395 SMMU_EVT_F_CFG_CONFLICT
,
396 SMMU_EVT_E_PAGE_REQ
= 0x24,
399 static const char *event_stringify
[] = {
400 [SMMU_EVT_NONE
] = "no recorded event",
401 [SMMU_EVT_F_UUT
] = "SMMU_EVT_F_UUT",
402 [SMMU_EVT_C_BAD_STREAMID
] = "SMMU_EVT_C_BAD_STREAMID",
403 [SMMU_EVT_F_STE_FETCH
] = "SMMU_EVT_F_STE_FETCH",
404 [SMMU_EVT_C_BAD_STE
] = "SMMU_EVT_C_BAD_STE",
405 [SMMU_EVT_F_BAD_ATS_TREQ
] = "SMMU_EVT_F_BAD_ATS_TREQ",
406 [SMMU_EVT_F_STREAM_DISABLED
] = "SMMU_EVT_F_STREAM_DISABLED",
407 [SMMU_EVT_F_TRANS_FORBIDDEN
] = "SMMU_EVT_F_TRANS_FORBIDDEN",
408 [SMMU_EVT_C_BAD_SUBSTREAMID
] = "SMMU_EVT_C_BAD_SUBSTREAMID",
409 [SMMU_EVT_F_CD_FETCH
] = "SMMU_EVT_F_CD_FETCH",
410 [SMMU_EVT_C_BAD_CD
] = "SMMU_EVT_C_BAD_CD",
411 [SMMU_EVT_F_WALK_EABT
] = "SMMU_EVT_F_WALK_EABT",
412 [SMMU_EVT_F_TRANSLATION
] = "SMMU_EVT_F_TRANSLATION",
413 [SMMU_EVT_F_ADDR_SIZE
] = "SMMU_EVT_F_ADDR_SIZE",
414 [SMMU_EVT_F_ACCESS
] = "SMMU_EVT_F_ACCESS",
415 [SMMU_EVT_F_PERMISSION
] = "SMMU_EVT_F_PERMISSION",
416 [SMMU_EVT_F_TLB_CONFLICT
] = "SMMU_EVT_F_TLB_CONFLICT",
417 [SMMU_EVT_F_CFG_CONFLICT
] = "SMMU_EVT_F_CFG_CONFLICT",
418 [SMMU_EVT_E_PAGE_REQ
] = "SMMU_EVT_E_PAGE_REQ",
421 static inline const char *smmu_event_string(SMMUEventType type
)
423 if (type
< ARRAY_SIZE(event_stringify
)) {
424 return event_stringify
[type
] ? event_stringify
[type
] : "UNKNOWN";
430 /* Encode an event record */
431 typedef struct SMMUEventInfo
{
435 bool inval_ste_allowed
;
449 struct SSIDAddrInfo
{
454 struct SSIDInfo c_bad_ste
;
458 } f_transl_forbidden
;
462 struct SSIDAddrInfo f_cd_fetch
;
463 struct SSIDInfo c_bad_cd
;
477 struct FullInfo f_translation
;
478 struct FullInfo f_addr_size
;
479 struct FullInfo f_access
;
480 struct FullInfo f_permission
;
481 struct SSIDInfo f_cfg_conflict
;
495 #define EVT_Q_OVERFLOW (1 << 31)
497 #define EVT_SET_TYPE(x, v) ((x)->word[0] = deposit32((x)->word[0], 0 , 8 , v))
498 #define EVT_SET_SSV(x, v) ((x)->word[0] = deposit32((x)->word[0], 11, 1 , v))
499 #define EVT_SET_SSID(x, v) ((x)->word[0] = deposit32((x)->word[0], 12, 20, v))
500 #define EVT_SET_SID(x, v) ((x)->word[1] = v)
501 #define EVT_SET_STAG(x, v) ((x)->word[2] = deposit32((x)->word[2], 0 , 16, v))
502 #define EVT_SET_STALL(x, v) ((x)->word[2] = deposit32((x)->word[2], 31, 1 , v))
503 #define EVT_SET_PNU(x, v) ((x)->word[3] = deposit32((x)->word[3], 1 , 1 , v))
504 #define EVT_SET_IND(x, v) ((x)->word[3] = deposit32((x)->word[3], 2 , 1 , v))
505 #define EVT_SET_RNW(x, v) ((x)->word[3] = deposit32((x)->word[3], 3 , 1 , v))
506 #define EVT_SET_S2(x, v) ((x)->word[3] = deposit32((x)->word[3], 7 , 1 , v))
507 #define EVT_SET_CLASS(x, v) ((x)->word[3] = deposit32((x)->word[3], 8 , 2 , v))
508 #define EVT_SET_ADDR(x, addr) \
510 (x)->word[5] = (uint32_t)(addr >> 32); \
511 (x)->word[4] = (uint32_t)(addr & 0xffffffff); \
513 #define EVT_SET_ADDR2(x, addr) \
515 (x)->word[7] = (uint32_t)(addr >> 32); \
516 (x)->word[6] = (uint32_t)(addr & 0xffffffff); \
519 void smmuv3_record_event(SMMUv3State
*s
, SMMUEventInfo
*event
);
521 /* Configuration Data */
523 /* STE Level 1 Descriptor */
524 typedef struct STEDesc
{
528 /* CD Level 1 Descriptor */
529 typedef struct CDDesc
{
533 /* Stream Table Entry(STE) */
538 /* Context Descriptor(CD) */
545 #define STE_VALID(x) extract32((x)->word[0], 0, 1)
547 #define STE_CONFIG(x) extract32((x)->word[0], 1, 3)
548 #define STE_CFG_S1_ENABLED(config) (config & 0x1)
549 #define STE_CFG_S2_ENABLED(config) (config & 0x2)
550 #define STE_CFG_ABORT(config) (!(config & 0x4))
551 #define STE_CFG_BYPASS(config) (config == 0x4)
553 #define STE_S1FMT(x) extract32((x)->word[0], 4 , 2)
554 #define STE_S1CDMAX(x) extract32((x)->word[1], 27, 5)
555 #define STE_S1STALLD(x) extract32((x)->word[2], 27, 1)
556 #define STE_EATS(x) extract32((x)->word[2], 28, 2)
557 #define STE_STRW(x) extract32((x)->word[2], 30, 2)
558 #define STE_S2VMID(x) extract32((x)->word[4], 0 , 16)
559 #define STE_S2T0SZ(x) extract32((x)->word[5], 0 , 6)
560 #define STE_S2SL0(x) extract32((x)->word[5], 6 , 2)
561 #define STE_S2TG(x) extract32((x)->word[5], 14, 2)
562 #define STE_S2PS(x) extract32((x)->word[5], 16, 3)
563 #define STE_S2AA64(x) extract32((x)->word[5], 19, 1)
564 #define STE_S2ENDI(x) extract32((x)->word[5], 20, 1)
565 #define STE_S2AFFD(x) extract32((x)->word[5], 21, 1)
566 #define STE_S2HD(x) extract32((x)->word[5], 23, 1)
567 #define STE_S2HA(x) extract32((x)->word[5], 24, 1)
568 #define STE_S2S(x) extract32((x)->word[5], 25, 1)
569 #define STE_S2R(x) extract32((x)->word[5], 26, 1)
571 #define STE_CTXPTR(x) \
572 ((extract64((x)->word[1], 0, 16) << 32) | \
573 ((x)->word[0] & 0xffffffc0))
575 #define STE_S2TTB(x) \
576 ((extract64((x)->word[7], 0, 16) << 32) | \
577 ((x)->word[6] & 0xfffffff0))
579 static inline int oas2bits(int oas_field
)
598 static inline int pa_range(STE
*ste
)
600 int oas_field
= MIN(STE_S2PS(ste
), SMMU_IDR5_OAS
);
602 if (!STE_S2AA64(ste
)) {
606 return oas2bits(oas_field
);
609 #define MAX_PA(ste) ((1 << pa_range(ste)) - 1)
613 #define CD_VALID(x) extract32((x)->word[0], 31, 1)
614 #define CD_ASID(x) extract32((x)->word[1], 16, 16)
615 #define CD_TTB(x, sel) \
616 ((extract64((x)->word[(sel) * 2 + 3], 0, 19) << 32) | \
617 ((x)->word[(sel) * 2 + 2] & ~0xfULL))
619 #define CD_HAD(x, sel) extract32((x)->word[(sel) * 2 + 2], 1, 1)
621 #define CD_TSZ(x, sel) extract32((x)->word[0], (16 * (sel)) + 0, 6)
622 #define CD_TG(x, sel) extract32((x)->word[0], (16 * (sel)) + 6, 2)
623 #define CD_EPD(x, sel) extract32((x)->word[0], (16 * (sel)) + 14, 1)
624 #define CD_ENDI(x) extract32((x)->word[0], 15, 1)
625 #define CD_IPS(x) extract32((x)->word[1], 0 , 3)
626 #define CD_TBI(x) extract32((x)->word[1], 6 , 2)
627 #define CD_HD(x) extract32((x)->word[1], 10 , 1)
628 #define CD_HA(x) extract32((x)->word[1], 11 , 1)
629 #define CD_S(x) extract32((x)->word[1], 12, 1)
630 #define CD_R(x) extract32((x)->word[1], 13, 1)
631 #define CD_A(x) extract32((x)->word[1], 14, 1)
632 #define CD_AARCH64(x) extract32((x)->word[1], 9 , 1)
635 * tg2granule - Decodes the CD translation granule size field according
637 * @bits: TG0/1 fields
638 * @ttbr: ttbr index in use
640 static inline int tg2granule(int bits
, int ttbr
)
644 return ttbr
? 0 : 12;
646 return ttbr
? 14 : 16;
648 return ttbr
? 12 : 14;
650 return ttbr
? 16 : 0;
656 static inline uint64_t l1std_l2ptr(STEDesc
*desc
)
661 lo
= desc
->word
[0] & ~0x1fULL
;
662 return hi
<< 32 | lo
;
665 #define L1STD_SPAN(stm) (extract32((stm)->word[0], 0, 5))