2 * ARM GICv3 emulation: Distributor
4 * Copyright (c) 2015 Huawei.
5 * Copyright (c) 2016 Linaro Limited.
6 * Written by Shlomo Pongratz, Peter Maydell
8 * This code is licensed under the GPL, version 2 or (at your option)
12 #include "qemu/osdep.h"
15 #include "gicv3_internal.h"
17 /* The GICD_NSACR registers contain a two bit field for each interrupt which
18 * allows the guest to give NonSecure code access to registers controlling
20 * 0b00: no access (NS accesses to bits for Secure interrupts will RAZ/WI)
21 * 0b01: NS r/w accesses permitted to ISPENDR, SETSPI_NSR, SGIR
22 * 0b10: as 0b01, and also r/w to ICPENDR, r/o to ISACTIVER/ICACTIVER,
23 * and w/o to CLRSPI_NSR
24 * 0b11: as 0b10, and also r/w to IROUTER and ITARGETSR
26 * Given a (multiple-of-32) interrupt number, these mask functions return
27 * a mask word where each bit is 1 if the NSACR settings permit access
28 * to the interrupt. The mask returned can then be ORed with the GICD_GROUP
29 * word for this set of interrupts to give an overall mask.
32 typedef uint32_t maskfn(GICv3State
*s
, int irq
);
34 static uint32_t mask_nsacr_ge1(GICv3State
*s
, int irq
)
36 /* Return a mask where each bit is set if the NSACR field is >= 1 */
37 uint64_t raw_nsacr
= s
->gicd_nsacr
[irq
/ 16 + 1];
39 raw_nsacr
= raw_nsacr
<< 32 | s
->gicd_nsacr
[irq
/ 16];
40 raw_nsacr
= (raw_nsacr
>> 1) | raw_nsacr
;
41 return half_unshuffle64(raw_nsacr
);
44 static uint32_t mask_nsacr_ge2(GICv3State
*s
, int irq
)
46 /* Return a mask where each bit is set if the NSACR field is >= 2 */
47 uint64_t raw_nsacr
= s
->gicd_nsacr
[irq
/ 16 + 1];
49 raw_nsacr
= raw_nsacr
<< 32 | s
->gicd_nsacr
[irq
/ 16];
50 raw_nsacr
= raw_nsacr
>> 1;
51 return half_unshuffle64(raw_nsacr
);
54 /* We don't need a mask_nsacr_ge3() because IROUTER<n> isn't a bitmap register,
55 * but it would be implemented using:
56 * raw_nsacr = (raw_nsacr >> 1) & raw_nsacr;
59 static uint32_t mask_group_and_nsacr(GICv3State
*s
, MemTxAttrs attrs
,
60 maskfn
*maskfn
, int irq
)
62 /* Return a 32-bit mask which should be applied for this set of 32
63 * interrupts; each bit is 1 if access is permitted by the
64 * combination of attrs.secure, GICD_GROUPR and GICD_NSACR.
68 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
69 /* bits for Group 0 or Secure Group 1 interrupts are RAZ/WI
70 * unless the NSACR bits permit access.
72 mask
= *gic_bmp_ptr32(s
->group
, irq
);
74 mask
|= maskfn(s
, irq
);
81 static int gicd_ns_access(GICv3State
*s
, int irq
)
83 /* Return the 2 bit NS_access<x> field from GICD_NSACR<n> for the
84 * specified interrupt.
86 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
89 return extract32(s
->gicd_nsacr
[irq
/ 16], (irq
% 16) * 2, 2);
92 static void gicd_write_set_bitmap_reg(GICv3State
*s
, MemTxAttrs attrs
,
95 int offset
, uint32_t val
)
97 /* Helper routine to implement writing to a "set-bitmap" register
98 * (GICD_ISENABLER, GICD_ISPENDR, etc).
99 * Semantics implemented here:
100 * RAZ/WI for SGIs, PPIs, unimplemented IRQs
101 * Bits corresponding to Group 0 or Secure Group 1 interrupts RAZ/WI.
102 * Writing 1 means "set bit in bitmap"; writing 0 is ignored.
103 * offset should be the offset in bytes of the register from the start
106 int irq
= offset
* 8;
108 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
111 val
&= mask_group_and_nsacr(s
, attrs
, maskfn
, irq
);
112 *gic_bmp_ptr32(bmp
, irq
) |= val
;
113 gicv3_update(s
, irq
, 32);
116 static void gicd_write_clear_bitmap_reg(GICv3State
*s
, MemTxAttrs attrs
,
119 int offset
, uint32_t val
)
121 /* Helper routine to implement writing to a "clear-bitmap" register
122 * (GICD_ICENABLER, GICD_ICPENDR, etc).
123 * Semantics implemented here:
124 * RAZ/WI for SGIs, PPIs, unimplemented IRQs
125 * Bits corresponding to Group 0 or Secure Group 1 interrupts RAZ/WI.
126 * Writing 1 means "clear bit in bitmap"; writing 0 is ignored.
127 * offset should be the offset in bytes of the register from the start
130 int irq
= offset
* 8;
132 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
135 val
&= mask_group_and_nsacr(s
, attrs
, maskfn
, irq
);
136 *gic_bmp_ptr32(bmp
, irq
) &= ~val
;
137 gicv3_update(s
, irq
, 32);
140 static uint32_t gicd_read_bitmap_reg(GICv3State
*s
, MemTxAttrs attrs
,
145 /* Helper routine to implement reading a "set/clear-bitmap" register
146 * (GICD_ICENABLER, GICD_ISENABLER, GICD_ICPENDR, etc).
147 * Semantics implemented here:
148 * RAZ/WI for SGIs, PPIs, unimplemented IRQs
149 * Bits corresponding to Group 0 or Secure Group 1 interrupts RAZ/WI.
150 * offset should be the offset in bytes of the register from the start
153 int irq
= offset
* 8;
156 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
159 val
= *gic_bmp_ptr32(bmp
, irq
);
160 if (bmp
== s
->pending
) {
161 /* The PENDING register is a special case -- for level triggered
162 * interrupts, the PENDING state is the logical OR of the state of
163 * the PENDING latch with the input line level.
165 uint32_t edge
= *gic_bmp_ptr32(s
->edge_trigger
, irq
);
166 uint32_t level
= *gic_bmp_ptr32(s
->level
, irq
);
167 val
|= (~edge
& level
);
169 val
&= mask_group_and_nsacr(s
, attrs
, maskfn
, irq
);
173 static uint8_t gicd_read_ipriorityr(GICv3State
*s
, MemTxAttrs attrs
, int irq
)
175 /* Read the value of GICD_IPRIORITYR<n> for the specified interrupt,
176 * honouring security state (these are RAZ/WI for Group 0 or Secure
177 * Group 1 interrupts).
181 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
185 prio
= s
->gicd_ipriority
[irq
];
187 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
188 if (!gicv3_gicd_group_test(s
, irq
)) {
189 /* Fields for Group 0 or Secure Group 1 interrupts are RAZ/WI */
192 /* NS view of the interrupt priority */
193 prio
= (prio
<< 1) & 0xff;
198 static void gicd_write_ipriorityr(GICv3State
*s
, MemTxAttrs attrs
, int irq
,
201 /* Write the value of GICD_IPRIORITYR<n> for the specified interrupt,
202 * honouring security state (these are RAZ/WI for Group 0 or Secure
203 * Group 1 interrupts).
205 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
209 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
210 if (!gicv3_gicd_group_test(s
, irq
)) {
211 /* Fields for Group 0 or Secure Group 1 interrupts are RAZ/WI */
214 /* NS view of the interrupt priority */
215 value
= 0x80 | (value
>> 1);
217 s
->gicd_ipriority
[irq
] = value
;
220 static uint64_t gicd_read_irouter(GICv3State
*s
, MemTxAttrs attrs
, int irq
)
222 /* Read the value of GICD_IROUTER<n> for the specified interrupt,
223 * honouring security state.
225 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
229 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
230 /* RAZ/WI for NS accesses to secure interrupts */
231 if (!gicv3_gicd_group_test(s
, irq
)) {
232 if (gicd_ns_access(s
, irq
) != 3) {
238 return s
->gicd_irouter
[irq
];
241 static void gicd_write_irouter(GICv3State
*s
, MemTxAttrs attrs
, int irq
,
244 /* Write the value of GICD_IROUTER<n> for the specified interrupt,
245 * honouring security state.
247 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
251 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
252 /* RAZ/WI for NS accesses to secure interrupts */
253 if (!gicv3_gicd_group_test(s
, irq
)) {
254 if (gicd_ns_access(s
, irq
) != 3) {
260 s
->gicd_irouter
[irq
] = val
;
261 gicv3_cache_target_cpustate(s
, irq
);
262 gicv3_update(s
, irq
, 1);
275 * Return %true if the operation succeeded, %false otherwise.
278 static bool gicd_readb(GICv3State
*s
, hwaddr offset
,
279 uint64_t *data
, MemTxAttrs attrs
)
281 /* Most GICv3 distributor registers do not support byte accesses. */
283 case GICD_CPENDSGIR
... GICD_CPENDSGIR
+ 0xf:
284 case GICD_SPENDSGIR
... GICD_SPENDSGIR
+ 0xf:
285 case GICD_ITARGETSR
... GICD_ITARGETSR
+ 0x3ff:
286 /* This GIC implementation always has affinity routing enabled,
287 * so these registers are all RAZ/WI.
290 case GICD_IPRIORITYR
... GICD_IPRIORITYR
+ 0x3ff:
291 *data
= gicd_read_ipriorityr(s
, attrs
, offset
- GICD_IPRIORITYR
);
298 static bool gicd_writeb(GICv3State
*s
, hwaddr offset
,
299 uint64_t value
, MemTxAttrs attrs
)
301 /* Most GICv3 distributor registers do not support byte accesses. */
303 case GICD_CPENDSGIR
... GICD_CPENDSGIR
+ 0xf:
304 case GICD_SPENDSGIR
... GICD_SPENDSGIR
+ 0xf:
305 case GICD_ITARGETSR
... GICD_ITARGETSR
+ 0x3ff:
306 /* This GIC implementation always has affinity routing enabled,
307 * so these registers are all RAZ/WI.
310 case GICD_IPRIORITYR
... GICD_IPRIORITYR
+ 0x3ff:
312 int irq
= offset
- GICD_IPRIORITYR
;
314 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
317 gicd_write_ipriorityr(s
, attrs
, irq
, value
);
318 gicv3_update(s
, irq
, 1);
326 static bool gicd_readw(GICv3State
*s
, hwaddr offset
,
327 uint64_t *data
, MemTxAttrs attrs
)
329 /* Only GICD_SETSPI_NSR, GICD_CLRSPI_NSR, GICD_SETSPI_SR and GICD_SETSPI_NSR
330 * support 16 bit accesses, and those registers are all part of the
331 * optional message-based SPI feature which this GIC does not currently
332 * implement (ie for us GICD_TYPER.MBIS == 0), so for us they are
338 static bool gicd_writew(GICv3State
*s
, hwaddr offset
,
339 uint64_t value
, MemTxAttrs attrs
)
341 /* Only GICD_SETSPI_NSR, GICD_CLRSPI_NSR, GICD_SETSPI_SR and GICD_SETSPI_NSR
342 * support 16 bit accesses, and those registers are all part of the
343 * optional message-based SPI feature which this GIC does not currently
344 * implement (ie for us GICD_TYPER.MBIS == 0), so for us they are
350 static bool gicd_readl(GICv3State
*s
, hwaddr offset
,
351 uint64_t *data
, MemTxAttrs attrs
)
353 /* Almost all GICv3 distributor registers are 32-bit.
354 * Note that WO registers must return an UNKNOWN value on reads,
360 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
361 /* The NS view of the GICD_CTLR sees only certain bits:
362 * + bit [31] (RWP) is an alias of the Secure bit [31]
363 * + bit [4] (ARE_NS) is an alias of Secure bit [5]
364 * + bit [1] (EnableGrp1A) is an alias of Secure bit [1] if
365 * NS affinity routing is enabled, otherwise RES0
366 * + bit [0] (EnableGrp1) is an alias of Secure bit [1] if
367 * NS affinity routing is not enabled, otherwise RES0
368 * Since for QEMU affinity routing is always enabled
369 * for both S and NS this means that bits [4] and [5] are
370 * both always 1, and we can simply make the NS view
371 * be bits 31, 4 and 1 of the S view.
373 *data
= s
->gicd_ctlr
& (GICD_CTLR_ARE_S
|
374 GICD_CTLR_EN_GRP1NS
|
377 *data
= s
->gicd_ctlr
;
382 /* For this implementation:
383 * No1N == 1 (1-of-N SPI interrupts not supported)
384 * A3V == 1 (non-zero values of Affinity level 3 supported)
385 * IDbits == 0xf (we support 16-bit interrupt identifiers)
386 * DVIS == 1 (Direct virtual LPI injection supported) if GICv4
387 * LPIS == 1 (LPIs are supported if affinity routing is enabled)
388 * num_LPIs == 0b00000 (bits [15:11],Number of LPIs as indicated
389 * by GICD_TYPER.IDbits)
390 * MBIS == 0 (message-based SPIs not supported)
391 * SecurityExtn == 1 if security extns supported
392 * CPUNumber == 0 since for us ARE is always 1
393 * ITLinesNumber == (num external irqs / 32) - 1
395 int itlinesnumber
= ((s
->num_irq
- GIC_INTERNAL
) / 32) - 1;
397 * SecurityExtn must be RAZ if GICD_CTLR.DS == 1, and
398 * "security extensions not supported" always implies DS == 1,
399 * so we only need to check the DS bit.
401 bool sec_extn
= !(s
->gicd_ctlr
& GICD_CTLR_DS
);
402 bool dvis
= s
->revision
>= 4;
404 *data
= (1 << 25) | (1 << 24) | (dvis
<< 18) | (sec_extn
<< 10) |
405 (s
->lpi_enable
<< GICD_TYPER_LPIS_SHIFT
) |
406 (0xf << 19) | itlinesnumber
;
410 /* We claim to be an ARM r0p0 with a zero ProductID.
411 * This is the same as an r0p0 GIC-500.
413 *data
= gicv3_iidr();
416 /* RAZ/WI for us (this is an optional register and our implementation
417 * does not track RO/WO/reserved violations to report them to the guest)
421 case GICD_IGROUPR
... GICD_IGROUPR
+ 0x7f:
425 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
429 /* RAZ/WI for SGIs, PPIs, unimplemented irqs */
430 irq
= (offset
- GICD_IGROUPR
) * 8;
431 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
435 *data
= *gic_bmp_ptr32(s
->group
, irq
);
438 case GICD_ISENABLER
... GICD_ISENABLER
+ 0x7f:
439 *data
= gicd_read_bitmap_reg(s
, attrs
, s
->enabled
, NULL
,
440 offset
- GICD_ISENABLER
);
442 case GICD_ICENABLER
... GICD_ICENABLER
+ 0x7f:
443 *data
= gicd_read_bitmap_reg(s
, attrs
, s
->enabled
, NULL
,
444 offset
- GICD_ICENABLER
);
446 case GICD_ISPENDR
... GICD_ISPENDR
+ 0x7f:
447 *data
= gicd_read_bitmap_reg(s
, attrs
, s
->pending
, mask_nsacr_ge1
,
448 offset
- GICD_ISPENDR
);
450 case GICD_ICPENDR
... GICD_ICPENDR
+ 0x7f:
451 *data
= gicd_read_bitmap_reg(s
, attrs
, s
->pending
, mask_nsacr_ge2
,
452 offset
- GICD_ICPENDR
);
454 case GICD_ISACTIVER
... GICD_ISACTIVER
+ 0x7f:
455 *data
= gicd_read_bitmap_reg(s
, attrs
, s
->active
, mask_nsacr_ge2
,
456 offset
- GICD_ISACTIVER
);
458 case GICD_ICACTIVER
... GICD_ICACTIVER
+ 0x7f:
459 *data
= gicd_read_bitmap_reg(s
, attrs
, s
->active
, mask_nsacr_ge2
,
460 offset
- GICD_ICACTIVER
);
462 case GICD_IPRIORITYR
... GICD_IPRIORITYR
+ 0x3ff:
464 int i
, irq
= offset
- GICD_IPRIORITYR
;
467 for (i
= irq
+ 3; i
>= irq
; i
--) {
469 value
|= gicd_read_ipriorityr(s
, attrs
, i
);
474 case GICD_ITARGETSR
... GICD_ITARGETSR
+ 0x3ff:
475 /* RAZ/WI since affinity routing is always enabled */
478 case GICD_ICFGR
... GICD_ICFGR
+ 0xff:
480 /* Here only the even bits are used; odd bits are RES0 */
481 int irq
= (offset
- GICD_ICFGR
) * 4;
484 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
489 /* Since our edge_trigger bitmap is one bit per irq, we only need
490 * half of the 32-bit word, which we can then spread out
493 value
= *gic_bmp_ptr32(s
->edge_trigger
, irq
& ~0x1f);
494 value
&= mask_group_and_nsacr(s
, attrs
, NULL
, irq
& ~0x1f);
495 value
= extract32(value
, (irq
& 0x1f) ? 16 : 0, 16);
496 value
= half_shuffle32(value
) << 1;
500 case GICD_IGRPMODR
... GICD_IGRPMODR
+ 0xff:
504 if ((s
->gicd_ctlr
& GICD_CTLR_DS
) || !attrs
.secure
) {
505 /* RAZ/WI if security disabled, or if
506 * security enabled and this is an NS access
511 /* RAZ/WI for SGIs, PPIs, unimplemented irqs */
512 irq
= (offset
- GICD_IGRPMODR
) * 8;
513 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
517 *data
= *gic_bmp_ptr32(s
->grpmod
, irq
);
520 case GICD_NSACR
... GICD_NSACR
+ 0xff:
522 /* Two bits per interrupt */
523 int irq
= (offset
- GICD_NSACR
) * 4;
525 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
530 if ((s
->gicd_ctlr
& GICD_CTLR_DS
) || !attrs
.secure
) {
531 /* RAZ/WI if security disabled, or if
532 * security enabled and this is an NS access
538 *data
= s
->gicd_nsacr
[irq
/ 16];
541 case GICD_CPENDSGIR
... GICD_CPENDSGIR
+ 0xf:
542 case GICD_SPENDSGIR
... GICD_SPENDSGIR
+ 0xf:
543 /* RAZ/WI since affinity routing is always enabled */
546 case GICD_IROUTER
... GICD_IROUTER
+ 0x1fdf:
549 int irq
= (offset
- GICD_IROUTER
) / 8;
551 r
= gicd_read_irouter(s
, attrs
, irq
);
559 case GICD_IDREGS
... GICD_IDREGS
+ 0x2f:
561 *data
= gicv3_idreg(s
, offset
- GICD_IDREGS
, GICV3_PIDR0_DIST
);
564 /* WO registers, return unknown value */
565 qemu_log_mask(LOG_GUEST_ERROR
,
566 "%s: invalid guest read from WO register at offset "
567 TARGET_FMT_plx
"\n", __func__
, offset
);
575 static bool gicd_writel(GICv3State
*s
, hwaddr offset
,
576 uint64_t value
, MemTxAttrs attrs
)
578 /* Almost all GICv3 distributor registers are 32-bit. Note that
579 * RO registers must ignore writes, not abort.
587 if (s
->gicd_ctlr
& GICD_CTLR_DS
) {
588 /* With only one security state, E1NWF is RAZ/WI, DS is RAO/WI,
589 * ARE is RAO/WI (affinity routing always on), and only
590 * bits 0 and 1 (group enables) are writable.
592 mask
= GICD_CTLR_EN_GRP0
| GICD_CTLR_EN_GRP1NS
;
595 /* for secure access:
596 * ARE_NS and ARE_S are RAO/WI (affinity routing always on)
597 * E1NWF is RAZ/WI (we don't support enable-1-of-n-wakeup)
599 * We can only modify bits[2:0] (the group enables).
601 mask
= GICD_CTLR_DS
| GICD_CTLR_EN_GRP0
| GICD_CTLR_EN_GRP1_ALL
;
603 /* For non secure access ARE_NS is RAO/WI and EnableGrp1
604 * is RES0. The only writable bit is [1] (EnableGrp1A), which
605 * is an alias of the Secure bit [1].
607 mask
= GICD_CTLR_EN_GRP1NS
;
610 s
->gicd_ctlr
= (s
->gicd_ctlr
& ~mask
) | (value
& mask
);
611 if (value
& mask
& GICD_CTLR_DS
) {
612 /* We just set DS, so the ARE_NS and EnG1S bits are now RES0.
613 * Note that this is a one-way transition because if DS is set
614 * then it's not writable, so it can only go back to 0 with a
617 s
->gicd_ctlr
&= ~(GICD_CTLR_EN_GRP1S
| GICD_CTLR_ARE_NS
);
619 gicv3_full_update(s
);
623 /* RAZ/WI for our implementation */
625 case GICD_IGROUPR
... GICD_IGROUPR
+ 0x7f:
629 if (!attrs
.secure
&& !(s
->gicd_ctlr
& GICD_CTLR_DS
)) {
632 /* RAZ/WI for SGIs, PPIs, unimplemented irqs */
633 irq
= (offset
- GICD_IGROUPR
) * 8;
634 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
637 *gic_bmp_ptr32(s
->group
, irq
) = value
;
638 gicv3_update(s
, irq
, 32);
641 case GICD_ISENABLER
... GICD_ISENABLER
+ 0x7f:
642 gicd_write_set_bitmap_reg(s
, attrs
, s
->enabled
, NULL
,
643 offset
- GICD_ISENABLER
, value
);
645 case GICD_ICENABLER
... GICD_ICENABLER
+ 0x7f:
646 gicd_write_clear_bitmap_reg(s
, attrs
, s
->enabled
, NULL
,
647 offset
- GICD_ICENABLER
, value
);
649 case GICD_ISPENDR
... GICD_ISPENDR
+ 0x7f:
650 gicd_write_set_bitmap_reg(s
, attrs
, s
->pending
, mask_nsacr_ge1
,
651 offset
- GICD_ISPENDR
, value
);
653 case GICD_ICPENDR
... GICD_ICPENDR
+ 0x7f:
654 gicd_write_clear_bitmap_reg(s
, attrs
, s
->pending
, mask_nsacr_ge2
,
655 offset
- GICD_ICPENDR
, value
);
657 case GICD_ISACTIVER
... GICD_ISACTIVER
+ 0x7f:
658 gicd_write_set_bitmap_reg(s
, attrs
, s
->active
, NULL
,
659 offset
- GICD_ISACTIVER
, value
);
661 case GICD_ICACTIVER
... GICD_ICACTIVER
+ 0x7f:
662 gicd_write_clear_bitmap_reg(s
, attrs
, s
->active
, NULL
,
663 offset
- GICD_ICACTIVER
, value
);
665 case GICD_IPRIORITYR
... GICD_IPRIORITYR
+ 0x3ff:
667 int i
, irq
= offset
- GICD_IPRIORITYR
;
669 if (irq
< GIC_INTERNAL
|| irq
+ 3 >= s
->num_irq
) {
673 for (i
= irq
; i
< irq
+ 4; i
++, value
>>= 8) {
674 gicd_write_ipriorityr(s
, attrs
, i
, value
);
676 gicv3_update(s
, irq
, 4);
679 case GICD_ITARGETSR
... GICD_ITARGETSR
+ 0x3ff:
680 /* RAZ/WI since affinity routing is always enabled */
682 case GICD_ICFGR
... GICD_ICFGR
+ 0xff:
684 /* Here only the odd bits are used; even bits are RES0 */
685 int irq
= (offset
- GICD_ICFGR
) * 4;
686 uint32_t mask
, oldval
;
688 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
692 /* Since our edge_trigger bitmap is one bit per irq, our input
693 * 32-bits will compress down into 16 bits which we need
694 * to write into the bitmap.
696 value
= half_unshuffle32(value
>> 1);
697 mask
= mask_group_and_nsacr(s
, attrs
, NULL
, irq
& ~0x1f);
704 oldval
= *gic_bmp_ptr32(s
->edge_trigger
, (irq
& ~0x1f));
705 value
= (oldval
& ~mask
) | (value
& mask
);
706 *gic_bmp_ptr32(s
->edge_trigger
, irq
& ~0x1f) = value
;
709 case GICD_IGRPMODR
... GICD_IGRPMODR
+ 0xff:
713 if ((s
->gicd_ctlr
& GICD_CTLR_DS
) || !attrs
.secure
) {
714 /* RAZ/WI if security disabled, or if
715 * security enabled and this is an NS access
719 /* RAZ/WI for SGIs, PPIs, unimplemented irqs */
720 irq
= (offset
- GICD_IGRPMODR
) * 8;
721 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
724 *gic_bmp_ptr32(s
->grpmod
, irq
) = value
;
725 gicv3_update(s
, irq
, 32);
728 case GICD_NSACR
... GICD_NSACR
+ 0xff:
730 /* Two bits per interrupt */
731 int irq
= (offset
- GICD_NSACR
) * 4;
733 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
737 if ((s
->gicd_ctlr
& GICD_CTLR_DS
) || !attrs
.secure
) {
738 /* RAZ/WI if security disabled, or if
739 * security enabled and this is an NS access
744 s
->gicd_nsacr
[irq
/ 16] = value
;
745 /* No update required as this only affects access permission checks */
749 /* RES0 if affinity routing is enabled */
751 case GICD_CPENDSGIR
... GICD_CPENDSGIR
+ 0xf:
752 case GICD_SPENDSGIR
... GICD_SPENDSGIR
+ 0xf:
753 /* RAZ/WI since affinity routing is always enabled */
755 case GICD_IROUTER
... GICD_IROUTER
+ 0x1fdf:
758 int irq
= (offset
- GICD_IROUTER
) / 8;
760 if (irq
< GIC_INTERNAL
|| irq
>= s
->num_irq
) {
764 /* Write half of the 64-bit register */
765 r
= gicd_read_irouter(s
, attrs
, irq
);
766 r
= deposit64(r
, (offset
& 7) ? 32 : 0, 32, value
);
767 gicd_write_irouter(s
, attrs
, irq
, r
);
770 case GICD_IDREGS
... GICD_IDREGS
+ 0x2f:
773 /* RO registers, ignore the write */
774 qemu_log_mask(LOG_GUEST_ERROR
,
775 "%s: invalid guest write to RO register at offset "
776 TARGET_FMT_plx
"\n", __func__
, offset
);
783 static bool gicd_writeq(GICv3State
*s
, hwaddr offset
,
784 uint64_t value
, MemTxAttrs attrs
)
786 /* Our only 64-bit registers are GICD_IROUTER<n> */
790 case GICD_IROUTER
... GICD_IROUTER
+ 0x1fdf:
791 irq
= (offset
- GICD_IROUTER
) / 8;
792 gicd_write_irouter(s
, attrs
, irq
, value
);
799 static bool gicd_readq(GICv3State
*s
, hwaddr offset
,
800 uint64_t *data
, MemTxAttrs attrs
)
802 /* Our only 64-bit registers are GICD_IROUTER<n> */
806 case GICD_IROUTER
... GICD_IROUTER
+ 0x1fdf:
807 irq
= (offset
- GICD_IROUTER
) / 8;
808 *data
= gicd_read_irouter(s
, attrs
, irq
);
815 MemTxResult
gicv3_dist_read(void *opaque
, hwaddr offset
, uint64_t *data
,
816 unsigned size
, MemTxAttrs attrs
)
818 GICv3State
*s
= (GICv3State
*)opaque
;
823 r
= gicd_readb(s
, offset
, data
, attrs
);
826 r
= gicd_readw(s
, offset
, data
, attrs
);
829 r
= gicd_readl(s
, offset
, data
, attrs
);
832 r
= gicd_readq(s
, offset
, data
, attrs
);
840 qemu_log_mask(LOG_GUEST_ERROR
,
841 "%s: invalid guest read at offset " TARGET_FMT_plx
842 " size %u\n", __func__
, offset
, size
);
843 trace_gicv3_dist_badread(offset
, size
, attrs
.secure
);
844 /* The spec requires that reserved registers are RAZ/WI;
845 * so use MEMTX_ERROR returns from leaf functions as a way to
846 * trigger the guest-error logging but don't return it to
847 * the caller, or we'll cause a spurious guest data abort.
851 trace_gicv3_dist_read(offset
, *data
, size
, attrs
.secure
);
856 MemTxResult
gicv3_dist_write(void *opaque
, hwaddr offset
, uint64_t data
,
857 unsigned size
, MemTxAttrs attrs
)
859 GICv3State
*s
= (GICv3State
*)opaque
;
864 r
= gicd_writeb(s
, offset
, data
, attrs
);
867 r
= gicd_writew(s
, offset
, data
, attrs
);
870 r
= gicd_writel(s
, offset
, data
, attrs
);
873 r
= gicd_writeq(s
, offset
, data
, attrs
);
881 qemu_log_mask(LOG_GUEST_ERROR
,
882 "%s: invalid guest write at offset " TARGET_FMT_plx
883 " size %u\n", __func__
, offset
, size
);
884 trace_gicv3_dist_badwrite(offset
, data
, size
, attrs
.secure
);
885 /* The spec requires that reserved registers are RAZ/WI;
886 * so use MEMTX_ERROR returns from leaf functions as a way to
887 * trigger the guest-error logging but don't return it to
888 * the caller, or we'll cause a spurious guest data abort.
891 trace_gicv3_dist_write(offset
, data
, size
, attrs
.secure
);
896 void gicv3_dist_set_irq(GICv3State
*s
, int irq
, int level
)
898 /* Update distributor state for a change in an external SPI input line */
899 if (level
== gicv3_gicd_level_test(s
, irq
)) {
903 trace_gicv3_dist_set_irq(irq
, level
);
905 gicv3_gicd_level_replace(s
, irq
, level
);
908 /* 0->1 edges latch the pending bit for edge-triggered interrupts */
909 if (gicv3_gicd_edge_trigger_test(s
, irq
)) {
910 gicv3_gicd_pending_set(s
, irq
);
914 gicv3_update(s
, irq
, 1);