2 * ARM Generic Interrupt Controller using KVM in-kernel support
4 * Copyright (c) 2015 Samsung Electronics Co., Ltd.
5 * Written by Pavel Fedin
6 * Based on vGICv2 code by Peter Maydell
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, see <http://www.gnu.org/licenses/>.
22 #include "qemu/osdep.h"
23 #include "qapi/error.h"
24 #include "hw/intc/arm_gicv3_common.h"
25 #include "hw/sysbus.h"
26 #include "qemu/error-report.h"
27 #include "sysemu/kvm.h"
28 #include "sysemu/sysemu.h"
30 #include "gicv3_internal.h"
31 #include "vgic_common.h"
32 #include "migration/blocker.h"
34 #ifdef DEBUG_GICV3_KVM
35 #define DPRINTF(fmt, ...) \
36 do { fprintf(stderr, "kvm_gicv3: " fmt, ## __VA_ARGS__); } while (0)
38 #define DPRINTF(fmt, ...) \
42 #define TYPE_KVM_ARM_GICV3 "kvm-arm-gicv3"
43 #define KVM_ARM_GICV3(obj) \
44 OBJECT_CHECK(GICv3State, (obj), TYPE_KVM_ARM_GICV3)
45 #define KVM_ARM_GICV3_CLASS(klass) \
46 OBJECT_CLASS_CHECK(KVMARMGICv3Class, (klass), TYPE_KVM_ARM_GICV3)
47 #define KVM_ARM_GICV3_GET_CLASS(obj) \
48 OBJECT_GET_CLASS(KVMARMGICv3Class, (obj), TYPE_KVM_ARM_GICV3)
50 #define KVM_DEV_ARM_VGIC_SYSREG(op0, op1, crn, crm, op2) \
51 (ARM64_SYS_REG_SHIFT_MASK(op0, OP0) | \
52 ARM64_SYS_REG_SHIFT_MASK(op1, OP1) | \
53 ARM64_SYS_REG_SHIFT_MASK(crn, CRN) | \
54 ARM64_SYS_REG_SHIFT_MASK(crm, CRM) | \
55 ARM64_SYS_REG_SHIFT_MASK(op2, OP2))
58 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 4, 6, 0)
59 #define ICC_BPR0_EL1 \
60 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 8, 3)
61 #define ICC_AP0R_EL1(n) \
62 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 8, 4 | n)
63 #define ICC_AP1R_EL1(n) \
64 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 9, n)
65 #define ICC_BPR1_EL1 \
66 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 12, 3)
67 #define ICC_CTLR_EL1 \
68 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 12, 4)
70 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 12, 5)
71 #define ICC_IGRPEN0_EL1 \
72 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 12, 6)
73 #define ICC_IGRPEN1_EL1 \
74 KVM_DEV_ARM_VGIC_SYSREG(3, 0, 12, 12, 7)
76 typedef struct KVMARMGICv3Class
{
77 ARMGICv3CommonClass parent_class
;
78 DeviceRealize parent_realize
;
79 void (*parent_reset
)(DeviceState
*dev
);
82 static void kvm_arm_gicv3_set_irq(void *opaque
, int irq
, int level
)
84 GICv3State
*s
= (GICv3State
*)opaque
;
86 kvm_arm_gic_set_irq(s
->num_irq
, irq
, level
);
89 #define KVM_VGIC_ATTR(reg, typer) \
90 ((typer & KVM_DEV_ARM_VGIC_V3_MPIDR_MASK) | (reg))
92 static inline void kvm_gicd_access(GICv3State
*s
, int offset
,
93 uint32_t *val
, bool write
)
95 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_DIST_REGS
,
96 KVM_VGIC_ATTR(offset
, 0),
97 val
, write
, &error_abort
);
100 static inline void kvm_gicr_access(GICv3State
*s
, int offset
, int cpu
,
101 uint32_t *val
, bool write
)
103 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_REDIST_REGS
,
104 KVM_VGIC_ATTR(offset
, s
->cpu
[cpu
].gicr_typer
),
105 val
, write
, &error_abort
);
108 static inline void kvm_gicc_access(GICv3State
*s
, uint64_t reg
, int cpu
,
109 uint64_t *val
, bool write
)
111 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS
,
112 KVM_VGIC_ATTR(reg
, s
->cpu
[cpu
].gicr_typer
),
113 val
, write
, &error_abort
);
116 static inline void kvm_gic_line_level_access(GICv3State
*s
, int irq
, int cpu
,
117 uint32_t *val
, bool write
)
119 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_LEVEL_INFO
,
120 KVM_VGIC_ATTR(irq
, s
->cpu
[cpu
].gicr_typer
) |
121 (VGIC_LEVEL_INFO_LINE_LEVEL
<<
122 KVM_DEV_ARM_VGIC_LINE_LEVEL_INFO_SHIFT
),
123 val
, write
, &error_abort
);
126 /* Loop through each distributor IRQ related register; since bits
127 * corresponding to SPIs and PPIs are RAZ/WI when affinity routing
128 * is enabled, we skip those.
130 #define for_each_dist_irq_reg(_irq, _max, _field_width) \
131 for (_irq = GIC_INTERNAL; _irq < _max; _irq += (32 / _field_width))
133 static void kvm_dist_get_priority(GICv3State
*s
, uint32_t offset
, uint8_t *bmp
)
135 uint32_t reg
, *field
;
138 field
= (uint32_t *)bmp
;
139 for_each_dist_irq_reg(irq
, s
->num_irq
, 8) {
140 kvm_gicd_access(s
, offset
, ®
, false);
147 static void kvm_dist_put_priority(GICv3State
*s
, uint32_t offset
, uint8_t *bmp
)
149 uint32_t reg
, *field
;
152 field
= (uint32_t *)bmp
;
153 for_each_dist_irq_reg(irq
, s
->num_irq
, 8) {
155 kvm_gicd_access(s
, offset
, ®
, true);
161 static void kvm_dist_get_edge_trigger(GICv3State
*s
, uint32_t offset
,
167 for_each_dist_irq_reg(irq
, s
->num_irq
, 2) {
168 kvm_gicd_access(s
, offset
, ®
, false);
169 reg
= half_unshuffle32(reg
>> 1);
173 *gic_bmp_ptr32(bmp
, irq
) |= reg
;
178 static void kvm_dist_put_edge_trigger(GICv3State
*s
, uint32_t offset
,
184 for_each_dist_irq_reg(irq
, s
->num_irq
, 2) {
185 reg
= *gic_bmp_ptr32(bmp
, irq
);
187 reg
= (reg
& 0xffff0000) >> 16;
191 reg
= half_shuffle32(reg
) << 1;
192 kvm_gicd_access(s
, offset
, ®
, true);
197 static void kvm_gic_get_line_level_bmp(GICv3State
*s
, uint32_t *bmp
)
202 for_each_dist_irq_reg(irq
, s
->num_irq
, 1) {
203 kvm_gic_line_level_access(s
, irq
, 0, ®
, false);
204 *gic_bmp_ptr32(bmp
, irq
) = reg
;
208 static void kvm_gic_put_line_level_bmp(GICv3State
*s
, uint32_t *bmp
)
213 for_each_dist_irq_reg(irq
, s
->num_irq
, 1) {
214 reg
= *gic_bmp_ptr32(bmp
, irq
);
215 kvm_gic_line_level_access(s
, irq
, 0, ®
, true);
219 /* Read a bitmap register group from the kernel VGIC. */
220 static void kvm_dist_getbmp(GICv3State
*s
, uint32_t offset
, uint32_t *bmp
)
225 for_each_dist_irq_reg(irq
, s
->num_irq
, 1) {
226 kvm_gicd_access(s
, offset
, ®
, false);
227 *gic_bmp_ptr32(bmp
, irq
) = reg
;
232 static void kvm_dist_putbmp(GICv3State
*s
, uint32_t offset
,
233 uint32_t clroffset
, uint32_t *bmp
)
238 for_each_dist_irq_reg(irq
, s
->num_irq
, 1) {
239 /* If this bitmap is a set/clear register pair, first write to the
240 * clear-reg to clear all bits before using the set-reg to write
243 if (clroffset
!= 0) {
245 kvm_gicd_access(s
, clroffset
, ®
, true);
247 reg
= *gic_bmp_ptr32(bmp
, irq
);
248 kvm_gicd_access(s
, offset
, ®
, true);
253 static void kvm_arm_gicv3_check(GICv3State
*s
)
258 /* Sanity checking s->num_irq */
259 kvm_gicd_access(s
, GICD_TYPER
, ®
, false);
260 num_irq
= ((reg
& 0x1f) + 1) * 32;
262 if (num_irq
< s
->num_irq
) {
263 error_report("Model requests %u IRQs, but kernel supports max %u",
264 s
->num_irq
, num_irq
);
269 static void kvm_arm_gicv3_put(GICv3State
*s
)
271 uint32_t regl
, regh
, reg
;
272 uint64_t reg64
, redist_typer
;
275 kvm_arm_gicv3_check(s
);
277 kvm_gicr_access(s
, GICR_TYPER
, 0, ®l
, false);
278 kvm_gicr_access(s
, GICR_TYPER
+ 4, 0, ®h
, false);
279 redist_typer
= ((uint64_t)regh
<< 32) | regl
;
282 kvm_gicd_access(s
, GICD_CTLR
, ®
, true);
284 if (redist_typer
& GICR_TYPER_PLPIS
) {
285 /* Set base addresses before LPIs are enabled by GICR_CTLR write */
286 for (ncpu
= 0; ncpu
< s
->num_cpu
; ncpu
++) {
287 GICv3CPUState
*c
= &s
->cpu
[ncpu
];
289 reg64
= c
->gicr_propbaser
;
290 regl
= (uint32_t)reg64
;
291 kvm_gicr_access(s
, GICR_PROPBASER
, ncpu
, ®l
, true);
292 regh
= (uint32_t)(reg64
>> 32);
293 kvm_gicr_access(s
, GICR_PROPBASER
+ 4, ncpu
, ®h
, true);
295 reg64
= c
->gicr_pendbaser
;
296 if (!(c
->gicr_ctlr
& GICR_CTLR_ENABLE_LPIS
)) {
297 /* Setting PTZ is advised if LPIs are disabled, to reduce
298 * GIC initialization time.
300 reg64
|= GICR_PENDBASER_PTZ
;
302 regl
= (uint32_t)reg64
;
303 kvm_gicr_access(s
, GICR_PENDBASER
, ncpu
, ®l
, true);
304 regh
= (uint32_t)(reg64
>> 32);
305 kvm_gicr_access(s
, GICR_PENDBASER
+ 4, ncpu
, ®h
, true);
309 /* Redistributor state (one per CPU) */
311 for (ncpu
= 0; ncpu
< s
->num_cpu
; ncpu
++) {
312 GICv3CPUState
*c
= &s
->cpu
[ncpu
];
315 kvm_gicr_access(s
, GICR_CTLR
, ncpu
, ®
, true);
317 reg
= c
->gicr_statusr
[GICV3_NS
];
318 kvm_gicr_access(s
, GICR_STATUSR
, ncpu
, ®
, true);
321 kvm_gicr_access(s
, GICR_WAKER
, ncpu
, ®
, true);
323 reg
= c
->gicr_igroupr0
;
324 kvm_gicr_access(s
, GICR_IGROUPR0
, ncpu
, ®
, true);
327 kvm_gicr_access(s
, GICR_ICENABLER0
, ncpu
, ®
, true);
328 reg
= c
->gicr_ienabler0
;
329 kvm_gicr_access(s
, GICR_ISENABLER0
, ncpu
, ®
, true);
331 /* Restore config before pending so we treat level/edge correctly */
332 reg
= half_shuffle32(c
->edge_trigger
>> 16) << 1;
333 kvm_gicr_access(s
, GICR_ICFGR1
, ncpu
, ®
, true);
336 kvm_gic_line_level_access(s
, 0, ncpu
, ®
, true);
339 kvm_gicr_access(s
, GICR_ICPENDR0
, ncpu
, ®
, true);
340 reg
= c
->gicr_ipendr0
;
341 kvm_gicr_access(s
, GICR_ISPENDR0
, ncpu
, ®
, true);
344 kvm_gicr_access(s
, GICR_ICACTIVER0
, ncpu
, ®
, true);
345 reg
= c
->gicr_iactiver0
;
346 kvm_gicr_access(s
, GICR_ISACTIVER0
, ncpu
, ®
, true);
348 for (i
= 0; i
< GIC_INTERNAL
; i
+= 4) {
349 reg
= c
->gicr_ipriorityr
[i
] |
350 (c
->gicr_ipriorityr
[i
+ 1] << 8) |
351 (c
->gicr_ipriorityr
[i
+ 2] << 16) |
352 (c
->gicr_ipriorityr
[i
+ 3] << 24);
353 kvm_gicr_access(s
, GICR_IPRIORITYR
+ i
, ncpu
, ®
, true);
357 /* Distributor state (shared between all CPUs */
358 reg
= s
->gicd_statusr
[GICV3_NS
];
359 kvm_gicd_access(s
, GICD_STATUSR
, ®
, true);
361 /* s->enable bitmap -> GICD_ISENABLERn */
362 kvm_dist_putbmp(s
, GICD_ISENABLER
, GICD_ICENABLER
, s
->enabled
);
364 /* s->group bitmap -> GICD_IGROUPRn */
365 kvm_dist_putbmp(s
, GICD_IGROUPR
, 0, s
->group
);
367 /* Restore targets before pending to ensure the pending state is set on
368 * the appropriate CPU interfaces in the kernel
371 /* s->gicd_irouter[irq] -> GICD_IROUTERn
372 * We can't use kvm_dist_put() here because the registers are 64-bit
374 for (i
= GIC_INTERNAL
; i
< s
->num_irq
; i
++) {
377 offset
= GICD_IROUTER
+ (sizeof(uint32_t) * i
);
378 reg
= (uint32_t)s
->gicd_irouter
[i
];
379 kvm_gicd_access(s
, offset
, ®
, true);
381 offset
= GICD_IROUTER
+ (sizeof(uint32_t) * i
) + 4;
382 reg
= (uint32_t)(s
->gicd_irouter
[i
] >> 32);
383 kvm_gicd_access(s
, offset
, ®
, true);
386 /* s->trigger bitmap -> GICD_ICFGRn
387 * (restore configuration registers before pending IRQs so we treat
388 * level/edge correctly)
390 kvm_dist_put_edge_trigger(s
, GICD_ICFGR
, s
->edge_trigger
);
392 /* s->level bitmap -> line_level */
393 kvm_gic_put_line_level_bmp(s
, s
->level
);
395 /* s->pending bitmap -> GICD_ISPENDRn */
396 kvm_dist_putbmp(s
, GICD_ISPENDR
, GICD_ICPENDR
, s
->pending
);
398 /* s->active bitmap -> GICD_ISACTIVERn */
399 kvm_dist_putbmp(s
, GICD_ISACTIVER
, GICD_ICACTIVER
, s
->active
);
401 /* s->gicd_ipriority[] -> GICD_IPRIORITYRn */
402 kvm_dist_put_priority(s
, GICD_IPRIORITYR
, s
->gicd_ipriority
);
404 /* CPU Interface state (one per CPU) */
406 for (ncpu
= 0; ncpu
< s
->num_cpu
; ncpu
++) {
407 GICv3CPUState
*c
= &s
->cpu
[ncpu
];
410 kvm_gicc_access(s
, ICC_SRE_EL1
, ncpu
, &c
->icc_sre_el1
, true);
411 kvm_gicc_access(s
, ICC_CTLR_EL1
, ncpu
,
412 &c
->icc_ctlr_el1
[GICV3_NS
], true);
413 kvm_gicc_access(s
, ICC_IGRPEN0_EL1
, ncpu
,
414 &c
->icc_igrpen
[GICV3_G0
], true);
415 kvm_gicc_access(s
, ICC_IGRPEN1_EL1
, ncpu
,
416 &c
->icc_igrpen
[GICV3_G1NS
], true);
417 kvm_gicc_access(s
, ICC_PMR_EL1
, ncpu
, &c
->icc_pmr_el1
, true);
418 kvm_gicc_access(s
, ICC_BPR0_EL1
, ncpu
, &c
->icc_bpr
[GICV3_G0
], true);
419 kvm_gicc_access(s
, ICC_BPR1_EL1
, ncpu
, &c
->icc_bpr
[GICV3_G1NS
], true);
421 num_pri_bits
= ((c
->icc_ctlr_el1
[GICV3_NS
] &
422 ICC_CTLR_EL1_PRIBITS_MASK
) >>
423 ICC_CTLR_EL1_PRIBITS_SHIFT
) + 1;
425 switch (num_pri_bits
) {
427 reg64
= c
->icc_apr
[GICV3_G0
][3];
428 kvm_gicc_access(s
, ICC_AP0R_EL1(3), ncpu
, ®64
, true);
429 reg64
= c
->icc_apr
[GICV3_G0
][2];
430 kvm_gicc_access(s
, ICC_AP0R_EL1(2), ncpu
, ®64
, true);
432 reg64
= c
->icc_apr
[GICV3_G0
][1];
433 kvm_gicc_access(s
, ICC_AP0R_EL1(1), ncpu
, ®64
, true);
435 reg64
= c
->icc_apr
[GICV3_G0
][0];
436 kvm_gicc_access(s
, ICC_AP0R_EL1(0), ncpu
, ®64
, true);
439 switch (num_pri_bits
) {
441 reg64
= c
->icc_apr
[GICV3_G1NS
][3];
442 kvm_gicc_access(s
, ICC_AP1R_EL1(3), ncpu
, ®64
, true);
443 reg64
= c
->icc_apr
[GICV3_G1NS
][2];
444 kvm_gicc_access(s
, ICC_AP1R_EL1(2), ncpu
, ®64
, true);
446 reg64
= c
->icc_apr
[GICV3_G1NS
][1];
447 kvm_gicc_access(s
, ICC_AP1R_EL1(1), ncpu
, ®64
, true);
449 reg64
= c
->icc_apr
[GICV3_G1NS
][0];
450 kvm_gicc_access(s
, ICC_AP1R_EL1(0), ncpu
, ®64
, true);
455 static void kvm_arm_gicv3_get(GICv3State
*s
)
457 uint32_t regl
, regh
, reg
;
458 uint64_t reg64
, redist_typer
;
461 kvm_arm_gicv3_check(s
);
463 kvm_gicr_access(s
, GICR_TYPER
, 0, ®l
, false);
464 kvm_gicr_access(s
, GICR_TYPER
+ 4, 0, ®h
, false);
465 redist_typer
= ((uint64_t)regh
<< 32) | regl
;
467 kvm_gicd_access(s
, GICD_CTLR
, ®
, false);
470 /* Redistributor state (one per CPU) */
472 for (ncpu
= 0; ncpu
< s
->num_cpu
; ncpu
++) {
473 GICv3CPUState
*c
= &s
->cpu
[ncpu
];
475 kvm_gicr_access(s
, GICR_CTLR
, ncpu
, ®
, false);
478 kvm_gicr_access(s
, GICR_STATUSR
, ncpu
, ®
, false);
479 c
->gicr_statusr
[GICV3_NS
] = reg
;
481 kvm_gicr_access(s
, GICR_WAKER
, ncpu
, ®
, false);
484 kvm_gicr_access(s
, GICR_IGROUPR0
, ncpu
, ®
, false);
485 c
->gicr_igroupr0
= reg
;
486 kvm_gicr_access(s
, GICR_ISENABLER0
, ncpu
, ®
, false);
487 c
->gicr_ienabler0
= reg
;
488 kvm_gicr_access(s
, GICR_ICFGR1
, ncpu
, ®
, false);
489 c
->edge_trigger
= half_unshuffle32(reg
>> 1) << 16;
490 kvm_gic_line_level_access(s
, 0, ncpu
, ®
, false);
492 kvm_gicr_access(s
, GICR_ISPENDR0
, ncpu
, ®
, false);
493 c
->gicr_ipendr0
= reg
;
494 kvm_gicr_access(s
, GICR_ISACTIVER0
, ncpu
, ®
, false);
495 c
->gicr_iactiver0
= reg
;
497 for (i
= 0; i
< GIC_INTERNAL
; i
+= 4) {
498 kvm_gicr_access(s
, GICR_IPRIORITYR
+ i
, ncpu
, ®
, false);
499 c
->gicr_ipriorityr
[i
] = extract32(reg
, 0, 8);
500 c
->gicr_ipriorityr
[i
+ 1] = extract32(reg
, 8, 8);
501 c
->gicr_ipriorityr
[i
+ 2] = extract32(reg
, 16, 8);
502 c
->gicr_ipriorityr
[i
+ 3] = extract32(reg
, 24, 8);
506 if (redist_typer
& GICR_TYPER_PLPIS
) {
507 for (ncpu
= 0; ncpu
< s
->num_cpu
; ncpu
++) {
508 GICv3CPUState
*c
= &s
->cpu
[ncpu
];
510 kvm_gicr_access(s
, GICR_PROPBASER
, ncpu
, ®l
, false);
511 kvm_gicr_access(s
, GICR_PROPBASER
+ 4, ncpu
, ®h
, false);
512 c
->gicr_propbaser
= ((uint64_t)regh
<< 32) | regl
;
514 kvm_gicr_access(s
, GICR_PENDBASER
, ncpu
, ®l
, false);
515 kvm_gicr_access(s
, GICR_PENDBASER
+ 4, ncpu
, ®h
, false);
516 c
->gicr_pendbaser
= ((uint64_t)regh
<< 32) | regl
;
520 /* Distributor state (shared between all CPUs */
522 kvm_gicd_access(s
, GICD_STATUSR
, ®
, false);
523 s
->gicd_statusr
[GICV3_NS
] = reg
;
525 /* GICD_IGROUPRn -> s->group bitmap */
526 kvm_dist_getbmp(s
, GICD_IGROUPR
, s
->group
);
528 /* GICD_ISENABLERn -> s->enabled bitmap */
529 kvm_dist_getbmp(s
, GICD_ISENABLER
, s
->enabled
);
531 /* Line level of irq */
532 kvm_gic_get_line_level_bmp(s
, s
->level
);
533 /* GICD_ISPENDRn -> s->pending bitmap */
534 kvm_dist_getbmp(s
, GICD_ISPENDR
, s
->pending
);
536 /* GICD_ISACTIVERn -> s->active bitmap */
537 kvm_dist_getbmp(s
, GICD_ISACTIVER
, s
->active
);
539 /* GICD_ICFGRn -> s->trigger bitmap */
540 kvm_dist_get_edge_trigger(s
, GICD_ICFGR
, s
->edge_trigger
);
542 /* GICD_IPRIORITYRn -> s->gicd_ipriority[] */
543 kvm_dist_get_priority(s
, GICD_IPRIORITYR
, s
->gicd_ipriority
);
545 /* GICD_IROUTERn -> s->gicd_irouter[irq] */
546 for (i
= GIC_INTERNAL
; i
< s
->num_irq
; i
++) {
549 offset
= GICD_IROUTER
+ (sizeof(uint32_t) * i
);
550 kvm_gicd_access(s
, offset
, ®l
, false);
551 offset
= GICD_IROUTER
+ (sizeof(uint32_t) * i
) + 4;
552 kvm_gicd_access(s
, offset
, ®h
, false);
553 s
->gicd_irouter
[i
] = ((uint64_t)regh
<< 32) | regl
;
556 /*****************************************************************
557 * CPU Interface(s) State
560 for (ncpu
= 0; ncpu
< s
->num_cpu
; ncpu
++) {
561 GICv3CPUState
*c
= &s
->cpu
[ncpu
];
564 kvm_gicc_access(s
, ICC_SRE_EL1
, ncpu
, &c
->icc_sre_el1
, false);
565 kvm_gicc_access(s
, ICC_CTLR_EL1
, ncpu
,
566 &c
->icc_ctlr_el1
[GICV3_NS
], false);
567 kvm_gicc_access(s
, ICC_IGRPEN0_EL1
, ncpu
,
568 &c
->icc_igrpen
[GICV3_G0
], false);
569 kvm_gicc_access(s
, ICC_IGRPEN1_EL1
, ncpu
,
570 &c
->icc_igrpen
[GICV3_G1NS
], false);
571 kvm_gicc_access(s
, ICC_PMR_EL1
, ncpu
, &c
->icc_pmr_el1
, false);
572 kvm_gicc_access(s
, ICC_BPR0_EL1
, ncpu
, &c
->icc_bpr
[GICV3_G0
], false);
573 kvm_gicc_access(s
, ICC_BPR1_EL1
, ncpu
, &c
->icc_bpr
[GICV3_G1NS
], false);
574 num_pri_bits
= ((c
->icc_ctlr_el1
[GICV3_NS
] &
575 ICC_CTLR_EL1_PRIBITS_MASK
) >>
576 ICC_CTLR_EL1_PRIBITS_SHIFT
) + 1;
578 switch (num_pri_bits
) {
580 kvm_gicc_access(s
, ICC_AP0R_EL1(3), ncpu
, ®64
, false);
581 c
->icc_apr
[GICV3_G0
][3] = reg64
;
582 kvm_gicc_access(s
, ICC_AP0R_EL1(2), ncpu
, ®64
, false);
583 c
->icc_apr
[GICV3_G0
][2] = reg64
;
585 kvm_gicc_access(s
, ICC_AP0R_EL1(1), ncpu
, ®64
, false);
586 c
->icc_apr
[GICV3_G0
][1] = reg64
;
588 kvm_gicc_access(s
, ICC_AP0R_EL1(0), ncpu
, ®64
, false);
589 c
->icc_apr
[GICV3_G0
][0] = reg64
;
592 switch (num_pri_bits
) {
594 kvm_gicc_access(s
, ICC_AP1R_EL1(3), ncpu
, ®64
, false);
595 c
->icc_apr
[GICV3_G1NS
][3] = reg64
;
596 kvm_gicc_access(s
, ICC_AP1R_EL1(2), ncpu
, ®64
, false);
597 c
->icc_apr
[GICV3_G1NS
][2] = reg64
;
599 kvm_gicc_access(s
, ICC_AP1R_EL1(1), ncpu
, ®64
, false);
600 c
->icc_apr
[GICV3_G1NS
][1] = reg64
;
602 kvm_gicc_access(s
, ICC_AP1R_EL1(0), ncpu
, ®64
, false);
603 c
->icc_apr
[GICV3_G1NS
][0] = reg64
;
608 static void arm_gicv3_icc_reset(CPUARMState
*env
, const ARMCPRegInfo
*ri
)
614 c
= (GICv3CPUState
*)env
->gicv3state
;
616 cpu
= ARM_CPU(c
->cpu
);
619 c
->icc_bpr
[GICV3_G0
] = GIC_MIN_BPR
;
620 c
->icc_bpr
[GICV3_G1
] = GIC_MIN_BPR
;
621 c
->icc_bpr
[GICV3_G1NS
] = GIC_MIN_BPR
;
623 c
->icc_sre_el1
= 0x7;
624 memset(c
->icc_apr
, 0, sizeof(c
->icc_apr
));
625 memset(c
->icc_igrpen
, 0, sizeof(c
->icc_igrpen
));
627 if (s
->migration_blocker
) {
631 /* Initialize to actual HW supported configuration */
632 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_CPU_SYSREGS
,
633 KVM_VGIC_ATTR(ICC_CTLR_EL1
, cpu
->mp_affinity
),
634 &c
->icc_ctlr_el1
[GICV3_NS
], false, &error_abort
);
636 c
->icc_ctlr_el1
[GICV3_S
] = c
->icc_ctlr_el1
[GICV3_NS
];
639 static void kvm_arm_gicv3_reset(DeviceState
*dev
)
641 GICv3State
*s
= ARM_GICV3_COMMON(dev
);
642 KVMARMGICv3Class
*kgc
= KVM_ARM_GICV3_GET_CLASS(s
);
646 kgc
->parent_reset(dev
);
648 if (s
->migration_blocker
) {
649 DPRINTF("Cannot put kernel gic state, no kernel interface\n");
653 kvm_arm_gicv3_put(s
);
657 * CPU interface registers of GIC needs to be reset on CPU reset.
658 * For the calling arm_gicv3_icc_reset() on CPU reset, we register
659 * below ARMCPRegInfo. As we reset the whole cpu interface under single
660 * register reset, we define only one register of CPU interface instead
661 * of defining all the registers.
663 static const ARMCPRegInfo gicv3_cpuif_reginfo
[] = {
664 { .name
= "ICC_CTLR_EL1", .state
= ARM_CP_STATE_BOTH
,
665 .opc0
= 3, .opc1
= 0, .crn
= 12, .crm
= 12, .opc2
= 4,
667 * If ARM_CP_NOP is used, resetfn is not called,
668 * So ARM_CP_NO_RAW is appropriate type.
670 .type
= ARM_CP_NO_RAW
,
672 .readfn
= arm_cp_read_zero
,
673 .writefn
= arm_cp_write_ignore
,
675 * We hang the whole cpu interface reset routine off here
676 * rather than parcelling it out into one little function
679 .resetfn
= arm_gicv3_icc_reset
,
685 * vm_change_state_handler - VM change state callback aiming at flushing
686 * RDIST pending tables into guest RAM
688 * The tables get flushed to guest RAM whenever the VM gets stopped.
690 static void vm_change_state_handler(void *opaque
, int running
,
693 GICv3State
*s
= (GICv3State
*)opaque
;
701 ret
= kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_CTRL
,
702 KVM_DEV_ARM_VGIC_SAVE_PENDING_TABLES
,
705 error_report_err(err
);
707 if (ret
< 0 && ret
!= -EFAULT
) {
713 static void kvm_arm_gicv3_realize(DeviceState
*dev
, Error
**errp
)
715 GICv3State
*s
= KVM_ARM_GICV3(dev
);
716 KVMARMGICv3Class
*kgc
= KVM_ARM_GICV3_GET_CLASS(s
);
717 Error
*local_err
= NULL
;
720 DPRINTF("kvm_arm_gicv3_realize\n");
722 kgc
->parent_realize(dev
, &local_err
);
724 error_propagate(errp
, local_err
);
728 if (s
->security_extn
) {
729 error_setg(errp
, "the in-kernel VGICv3 does not implement the "
730 "security extensions");
734 gicv3_init_irqs_and_mmio(s
, kvm_arm_gicv3_set_irq
, NULL
);
736 for (i
= 0; i
< s
->num_cpu
; i
++) {
737 ARMCPU
*cpu
= ARM_CPU(qemu_get_cpu(i
));
739 define_arm_cp_regs(cpu
, gicv3_cpuif_reginfo
);
742 /* Try to create the device via the device control API */
743 s
->dev_fd
= kvm_create_device(kvm_state
, KVM_DEV_TYPE_ARM_VGIC_V3
, false);
745 error_setg_errno(errp
, -s
->dev_fd
, "error creating in-kernel VGIC");
749 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_NR_IRQS
,
750 0, &s
->num_irq
, true, &error_abort
);
752 /* Tell the kernel to complete VGIC initialization now */
753 kvm_device_access(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_CTRL
,
754 KVM_DEV_ARM_VGIC_CTRL_INIT
, NULL
, true, &error_abort
);
756 kvm_arm_register_device(&s
->iomem_dist
, -1, KVM_DEV_ARM_VGIC_GRP_ADDR
,
757 KVM_VGIC_V3_ADDR_TYPE_DIST
, s
->dev_fd
);
758 kvm_arm_register_device(&s
->iomem_redist
, -1, KVM_DEV_ARM_VGIC_GRP_ADDR
,
759 KVM_VGIC_V3_ADDR_TYPE_REDIST
, s
->dev_fd
);
761 if (kvm_has_gsi_routing()) {
762 /* set up irq routing */
763 kvm_init_irq_routing(kvm_state
);
764 for (i
= 0; i
< s
->num_irq
- GIC_INTERNAL
; ++i
) {
765 kvm_irqchip_add_irq_route(kvm_state
, i
, 0, i
);
768 kvm_gsi_routing_allowed
= true;
770 kvm_irqchip_commit_routes(kvm_state
);
773 if (!kvm_device_check_attr(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_DIST_REGS
,
775 error_setg(&s
->migration_blocker
, "This operating system kernel does "
776 "not support vGICv3 migration");
777 migrate_add_blocker(s
->migration_blocker
, &local_err
);
779 error_propagate(errp
, local_err
);
780 error_free(s
->migration_blocker
);
784 if (kvm_device_check_attr(s
->dev_fd
, KVM_DEV_ARM_VGIC_GRP_CTRL
,
785 KVM_DEV_ARM_VGIC_SAVE_PENDING_TABLES
)) {
786 qemu_add_vm_change_state_handler(vm_change_state_handler
, s
);
790 static void kvm_arm_gicv3_class_init(ObjectClass
*klass
, void *data
)
792 DeviceClass
*dc
= DEVICE_CLASS(klass
);
793 ARMGICv3CommonClass
*agcc
= ARM_GICV3_COMMON_CLASS(klass
);
794 KVMARMGICv3Class
*kgc
= KVM_ARM_GICV3_CLASS(klass
);
796 agcc
->pre_save
= kvm_arm_gicv3_get
;
797 agcc
->post_load
= kvm_arm_gicv3_put
;
798 device_class_set_parent_realize(dc
, kvm_arm_gicv3_realize
,
799 &kgc
->parent_realize
);
800 device_class_set_parent_reset(dc
, kvm_arm_gicv3_reset
, &kgc
->parent_reset
);
803 static const TypeInfo kvm_arm_gicv3_info
= {
804 .name
= TYPE_KVM_ARM_GICV3
,
805 .parent
= TYPE_ARM_GICV3_COMMON
,
806 .instance_size
= sizeof(GICv3State
),
807 .class_init
= kvm_arm_gicv3_class_init
,
808 .class_size
= sizeof(KVMARMGICv3Class
),
811 static void kvm_arm_gicv3_register_types(void)
813 type_register_static(&kvm_arm_gicv3_info
);
816 type_init(kvm_arm_gicv3_register_types
)