spapr: Handle irq backend changes with VFIO PCI devices
[qemu/ar7.git] / hw / ppc / spapr_irq.c
blob1d2703496273ef93a1cb269fd358fb383ff6023a
1 /*
2 * QEMU PowerPC sPAPR IRQ interface
4 * Copyright (c) 2018, IBM Corporation.
6 * This code is licensed under the GPL version 2 or later. See the
7 * COPYING file in the top-level directory.
8 */
10 #include "qemu/osdep.h"
11 #include "qemu/log.h"
12 #include "qemu/error-report.h"
13 #include "qapi/error.h"
14 #include "hw/irq.h"
15 #include "hw/ppc/spapr.h"
16 #include "hw/ppc/spapr_cpu_core.h"
17 #include "hw/ppc/spapr_xive.h"
18 #include "hw/ppc/xics.h"
19 #include "hw/ppc/xics_spapr.h"
20 #include "hw/qdev-properties.h"
21 #include "cpu-models.h"
22 #include "sysemu/kvm.h"
24 #include "trace.h"
26 static const TypeInfo spapr_intc_info = {
27 .name = TYPE_SPAPR_INTC,
28 .parent = TYPE_INTERFACE,
29 .class_size = sizeof(SpaprInterruptControllerClass),
32 static void spapr_irq_msi_init(SpaprMachineState *spapr)
34 if (SPAPR_MACHINE_GET_CLASS(spapr)->legacy_irq_allocation) {
35 /* Legacy mode doesn't use this allocator */
36 return;
39 spapr->irq_map_nr = spapr_irq_nr_msis(spapr);
40 spapr->irq_map = bitmap_new(spapr->irq_map_nr);
43 int spapr_irq_msi_alloc(SpaprMachineState *spapr, uint32_t num, bool align,
44 Error **errp)
46 int irq;
49 * The 'align_mask' parameter of bitmap_find_next_zero_area()
50 * should be one less than a power of 2; 0 means no
51 * alignment. Adapt the 'align' value of the former allocator
52 * to fit the requirements of bitmap_find_next_zero_area()
54 align -= 1;
56 irq = bitmap_find_next_zero_area(spapr->irq_map, spapr->irq_map_nr, 0, num,
57 align);
58 if (irq == spapr->irq_map_nr) {
59 error_setg(errp, "can't find a free %d-IRQ block", num);
60 return -1;
63 bitmap_set(spapr->irq_map, irq, num);
65 return irq + SPAPR_IRQ_MSI;
68 void spapr_irq_msi_free(SpaprMachineState *spapr, int irq, uint32_t num)
70 bitmap_clear(spapr->irq_map, irq - SPAPR_IRQ_MSI, num);
73 int spapr_irq_init_kvm(int (*fn)(SpaprInterruptController *, Error **),
74 SpaprInterruptController *intc,
75 Error **errp)
77 MachineState *machine = MACHINE(qdev_get_machine());
78 Error *local_err = NULL;
80 if (kvm_enabled() && machine_kernel_irqchip_allowed(machine)) {
81 if (fn(intc, &local_err) < 0) {
82 if (machine_kernel_irqchip_required(machine)) {
83 error_prepend(&local_err,
84 "kernel_irqchip requested but unavailable: ");
85 error_propagate(errp, local_err);
86 return -1;
90 * We failed to initialize the KVM device, fallback to
91 * emulated mode
93 error_prepend(&local_err,
94 "kernel_irqchip allowed but unavailable: ");
95 error_append_hint(&local_err,
96 "Falling back to kernel-irqchip=off\n");
97 warn_report_err(local_err);
101 return 0;
105 * XICS IRQ backend.
108 SpaprIrq spapr_irq_xics = {
109 .xics = true,
110 .xive = false,
114 * XIVE IRQ backend.
117 SpaprIrq spapr_irq_xive = {
118 .xics = false,
119 .xive = true,
123 * Dual XIVE and XICS IRQ backend.
125 * Both interrupt mode, XIVE and XICS, objects are created but the
126 * machine starts in legacy interrupt mode (XICS). It can be changed
127 * by the CAS negotiation process and, in that case, the new mode is
128 * activated after an extra machine reset.
132 * Define values in sync with the XIVE and XICS backend
134 SpaprIrq spapr_irq_dual = {
135 .xics = true,
136 .xive = true,
140 static int spapr_irq_check(SpaprMachineState *spapr, Error **errp)
142 MachineState *machine = MACHINE(spapr);
145 * Sanity checks on non-P9 machines. On these, XIVE is not
146 * advertised, see spapr_dt_ov5_platform_support()
148 if (!ppc_type_check_compat(machine->cpu_type, CPU_POWERPC_LOGICAL_3_00,
149 0, spapr->max_compat_pvr)) {
151 * If the 'dual' interrupt mode is selected, force XICS as CAS
152 * negotiation is useless.
154 if (spapr->irq == &spapr_irq_dual) {
155 spapr->irq = &spapr_irq_xics;
156 return 0;
160 * Non-P9 machines using only XIVE is a bogus setup. We have two
161 * scenarios to take into account because of the compat mode:
163 * 1. POWER7/8 machines should fail to init later on when creating
164 * the XIVE interrupt presenters because a POWER9 exception
165 * model is required.
167 * 2. POWER9 machines using the POWER8 compat mode won't fail and
168 * will let the OS boot with a partial XIVE setup : DT
169 * properties but no hcalls.
171 * To cover both and not confuse the OS, add an early failure in
172 * QEMU.
174 if (spapr->irq == &spapr_irq_xive) {
175 error_setg(errp, "XIVE-only machines require a POWER9 CPU");
176 return -1;
181 * On a POWER9 host, some older KVM XICS devices cannot be destroyed and
182 * re-created. Detect that early to avoid QEMU to exit later when the
183 * guest reboots.
185 if (kvm_enabled() &&
186 spapr->irq == &spapr_irq_dual &&
187 machine_kernel_irqchip_required(machine) &&
188 xics_kvm_has_broken_disconnect(spapr)) {
189 error_setg(errp, "KVM is too old to support ic-mode=dual,kernel-irqchip=on");
190 return -1;
193 return 0;
197 * sPAPR IRQ frontend routines for devices
199 #define ALL_INTCS(spapr_) \
200 { SPAPR_INTC((spapr_)->ics), SPAPR_INTC((spapr_)->xive), }
202 int spapr_irq_cpu_intc_create(SpaprMachineState *spapr,
203 PowerPCCPU *cpu, Error **errp)
205 SpaprInterruptController *intcs[] = ALL_INTCS(spapr);
206 int i;
207 int rc;
209 for (i = 0; i < ARRAY_SIZE(intcs); i++) {
210 SpaprInterruptController *intc = intcs[i];
211 if (intc) {
212 SpaprInterruptControllerClass *sicc = SPAPR_INTC_GET_CLASS(intc);
213 rc = sicc->cpu_intc_create(intc, cpu, errp);
214 if (rc < 0) {
215 return rc;
220 return 0;
223 void spapr_irq_cpu_intc_reset(SpaprMachineState *spapr, PowerPCCPU *cpu)
225 SpaprInterruptController *intcs[] = ALL_INTCS(spapr);
226 int i;
228 for (i = 0; i < ARRAY_SIZE(intcs); i++) {
229 SpaprInterruptController *intc = intcs[i];
230 if (intc) {
231 SpaprInterruptControllerClass *sicc = SPAPR_INTC_GET_CLASS(intc);
232 sicc->cpu_intc_reset(intc, cpu);
237 void spapr_irq_cpu_intc_destroy(SpaprMachineState *spapr, PowerPCCPU *cpu)
239 SpaprInterruptController *intcs[] = ALL_INTCS(spapr);
240 int i;
242 for (i = 0; i < ARRAY_SIZE(intcs); i++) {
243 SpaprInterruptController *intc = intcs[i];
244 if (intc) {
245 SpaprInterruptControllerClass *sicc = SPAPR_INTC_GET_CLASS(intc);
246 sicc->cpu_intc_destroy(intc, cpu);
251 static void spapr_set_irq(void *opaque, int irq, int level)
253 SpaprMachineState *spapr = SPAPR_MACHINE(opaque);
254 SpaprInterruptControllerClass *sicc
255 = SPAPR_INTC_GET_CLASS(spapr->active_intc);
257 sicc->set_irq(spapr->active_intc, irq, level);
260 void spapr_irq_print_info(SpaprMachineState *spapr, Monitor *mon)
262 SpaprInterruptControllerClass *sicc
263 = SPAPR_INTC_GET_CLASS(spapr->active_intc);
265 sicc->print_info(spapr->active_intc, mon);
268 void spapr_irq_dt(SpaprMachineState *spapr, uint32_t nr_servers,
269 void *fdt, uint32_t phandle)
271 SpaprInterruptControllerClass *sicc
272 = SPAPR_INTC_GET_CLASS(spapr->active_intc);
274 sicc->dt(spapr->active_intc, nr_servers, fdt, phandle);
277 uint32_t spapr_irq_nr_msis(SpaprMachineState *spapr)
279 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
281 if (smc->legacy_irq_allocation) {
282 return smc->nr_xirqs;
283 } else {
284 return SPAPR_XIRQ_BASE + smc->nr_xirqs - SPAPR_IRQ_MSI;
288 void spapr_irq_init(SpaprMachineState *spapr, Error **errp)
290 MachineState *machine = MACHINE(spapr);
291 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
293 if (machine_kernel_irqchip_split(machine)) {
294 error_setg(errp, "kernel_irqchip split mode not supported on pseries");
295 return;
298 if (!kvm_enabled() && machine_kernel_irqchip_required(machine)) {
299 error_setg(errp,
300 "kernel_irqchip requested but only available with KVM");
301 return;
304 if (spapr_irq_check(spapr, errp) < 0) {
305 return;
308 /* Initialize the MSI IRQ allocator. */
309 spapr_irq_msi_init(spapr);
311 if (spapr->irq->xics) {
312 Error *local_err = NULL;
313 Object *obj;
315 obj = object_new(TYPE_ICS_SPAPR);
316 object_property_add_child(OBJECT(spapr), "ics", obj, &local_err);
317 if (local_err) {
318 error_propagate(errp, local_err);
319 return;
322 object_property_add_const_link(obj, ICS_PROP_XICS, OBJECT(spapr),
323 &local_err);
324 if (local_err) {
325 error_propagate(errp, local_err);
326 return;
329 object_property_set_int(obj, smc->nr_xirqs, "nr-irqs", &local_err);
330 if (local_err) {
331 error_propagate(errp, local_err);
332 return;
335 object_property_set_bool(obj, true, "realized", &local_err);
336 if (local_err) {
337 error_propagate(errp, local_err);
338 return;
341 spapr->ics = ICS_SPAPR(obj);
344 if (spapr->irq->xive) {
345 uint32_t nr_servers = spapr_max_server_number(spapr);
346 DeviceState *dev;
347 int i;
349 dev = qdev_create(NULL, TYPE_SPAPR_XIVE);
350 qdev_prop_set_uint32(dev, "nr-irqs", smc->nr_xirqs + SPAPR_XIRQ_BASE);
352 * 8 XIVE END structures per CPU. One for each available
353 * priority
355 qdev_prop_set_uint32(dev, "nr-ends", nr_servers << 3);
356 qdev_init_nofail(dev);
358 spapr->xive = SPAPR_XIVE(dev);
360 /* Enable the CPU IPIs */
361 for (i = 0; i < nr_servers; ++i) {
362 SpaprInterruptControllerClass *sicc
363 = SPAPR_INTC_GET_CLASS(spapr->xive);
365 if (sicc->claim_irq(SPAPR_INTC(spapr->xive), SPAPR_IRQ_IPI + i,
366 false, errp) < 0) {
367 return;
371 spapr_xive_hcall_init(spapr);
374 spapr->qirqs = qemu_allocate_irqs(spapr_set_irq, spapr,
375 smc->nr_xirqs + SPAPR_XIRQ_BASE);
378 int spapr_irq_claim(SpaprMachineState *spapr, int irq, bool lsi, Error **errp)
380 SpaprInterruptController *intcs[] = ALL_INTCS(spapr);
381 int i;
382 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
383 int rc;
385 assert(irq >= SPAPR_XIRQ_BASE);
386 assert(irq < (smc->nr_xirqs + SPAPR_XIRQ_BASE));
388 for (i = 0; i < ARRAY_SIZE(intcs); i++) {
389 SpaprInterruptController *intc = intcs[i];
390 if (intc) {
391 SpaprInterruptControllerClass *sicc = SPAPR_INTC_GET_CLASS(intc);
392 rc = sicc->claim_irq(intc, irq, lsi, errp);
393 if (rc < 0) {
394 return rc;
399 return 0;
402 void spapr_irq_free(SpaprMachineState *spapr, int irq, int num)
404 SpaprInterruptController *intcs[] = ALL_INTCS(spapr);
405 int i, j;
406 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
408 assert(irq >= SPAPR_XIRQ_BASE);
409 assert((irq + num) <= (smc->nr_xirqs + SPAPR_XIRQ_BASE));
411 for (i = irq; i < (irq + num); i++) {
412 for (j = 0; j < ARRAY_SIZE(intcs); j++) {
413 SpaprInterruptController *intc = intcs[j];
415 if (intc) {
416 SpaprInterruptControllerClass *sicc
417 = SPAPR_INTC_GET_CLASS(intc);
418 sicc->free_irq(intc, i);
424 qemu_irq spapr_qirq(SpaprMachineState *spapr, int irq)
426 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr);
429 * This interface is basically for VIO and PHB devices to find the
430 * right qemu_irq to manipulate, so we only allow access to the
431 * external irqs for now. Currently anything which needs to
432 * access the IPIs most naturally gets there via the guest side
433 * interfaces, we can change this if we need to in future.
435 assert(irq >= SPAPR_XIRQ_BASE);
436 assert(irq < (smc->nr_xirqs + SPAPR_XIRQ_BASE));
438 if (spapr->ics) {
439 assert(ics_valid_irq(spapr->ics, irq));
441 if (spapr->xive) {
442 assert(irq < spapr->xive->nr_irqs);
443 assert(xive_eas_is_valid(&spapr->xive->eat[irq]));
446 return spapr->qirqs[irq];
449 int spapr_irq_post_load(SpaprMachineState *spapr, int version_id)
451 SpaprInterruptControllerClass *sicc;
453 spapr_irq_update_active_intc(spapr);
454 sicc = SPAPR_INTC_GET_CLASS(spapr->active_intc);
455 return sicc->post_load(spapr->active_intc, version_id);
458 void spapr_irq_reset(SpaprMachineState *spapr, Error **errp)
460 assert(!spapr->irq_map || bitmap_empty(spapr->irq_map, spapr->irq_map_nr));
462 spapr_irq_update_active_intc(spapr);
465 int spapr_irq_get_phandle(SpaprMachineState *spapr, void *fdt, Error **errp)
467 const char *nodename = "interrupt-controller";
468 int offset, phandle;
470 offset = fdt_subnode_offset(fdt, 0, nodename);
471 if (offset < 0) {
472 error_setg(errp, "Can't find node \"%s\": %s",
473 nodename, fdt_strerror(offset));
474 return -1;
477 phandle = fdt_get_phandle(fdt, offset);
478 if (!phandle) {
479 error_setg(errp, "Can't get phandle of node \"%s\"", nodename);
480 return -1;
483 return phandle;
486 static void set_active_intc(SpaprMachineState *spapr,
487 SpaprInterruptController *new_intc)
489 SpaprInterruptControllerClass *sicc;
491 assert(new_intc);
493 if (new_intc == spapr->active_intc) {
494 /* Nothing to do */
495 return;
498 if (spapr->active_intc) {
499 sicc = SPAPR_INTC_GET_CLASS(spapr->active_intc);
500 if (sicc->deactivate) {
501 sicc->deactivate(spapr->active_intc);
505 sicc = SPAPR_INTC_GET_CLASS(new_intc);
506 if (sicc->activate) {
507 sicc->activate(new_intc, &error_fatal);
510 spapr->active_intc = new_intc;
513 * We've changed the kernel irqchip, let VFIO devices know they
514 * need to readjust.
516 kvm_irqchip_change_notify();
519 void spapr_irq_update_active_intc(SpaprMachineState *spapr)
521 SpaprInterruptController *new_intc;
523 if (!spapr->ics) {
525 * XXX before we run CAS, ov5_cas is initialized empty, which
526 * indicates XICS, even if we have ic-mode=xive. TODO: clean
527 * up the CAS path so that we have a clearer way of handling
528 * this.
530 new_intc = SPAPR_INTC(spapr->xive);
531 } else if (spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
532 new_intc = SPAPR_INTC(spapr->xive);
533 } else {
534 new_intc = SPAPR_INTC(spapr->ics);
537 set_active_intc(spapr, new_intc);
541 * XICS legacy routines - to deprecate one day
544 static int ics_find_free_block(ICSState *ics, int num, int alignnum)
546 int first, i;
548 for (first = 0; first < ics->nr_irqs; first += alignnum) {
549 if (num > (ics->nr_irqs - first)) {
550 return -1;
552 for (i = first; i < first + num; ++i) {
553 if (!ics_irq_free(ics, i)) {
554 break;
557 if (i == (first + num)) {
558 return first;
562 return -1;
565 int spapr_irq_find(SpaprMachineState *spapr, int num, bool align, Error **errp)
567 ICSState *ics = spapr->ics;
568 int first = -1;
570 assert(ics);
573 * MSIMesage::data is used for storing VIRQ so
574 * it has to be aligned to num to support multiple
575 * MSI vectors. MSI-X is not affected by this.
576 * The hint is used for the first IRQ, the rest should
577 * be allocated continuously.
579 if (align) {
580 assert((num == 1) || (num == 2) || (num == 4) ||
581 (num == 8) || (num == 16) || (num == 32));
582 first = ics_find_free_block(ics, num, num);
583 } else {
584 first = ics_find_free_block(ics, num, 1);
587 if (first < 0) {
588 error_setg(errp, "can't find a free %d-IRQ block", num);
589 return -1;
592 return first + ics->offset;
595 SpaprIrq spapr_irq_xics_legacy = {
596 .xics = true,
597 .xive = false,
600 static void spapr_irq_register_types(void)
602 type_register_static(&spapr_intc_info);
605 type_init(spapr_irq_register_types)