1 /* 2 * QEMU PowerPC sPAPR IRQ interface 3 * 4 * Copyright (c) 2018, IBM Corporation. 5 * 6 * This code is licensed under the GPL version 2 or later. See the 7 * COPYING file in the top-level directory. 8 */ 9 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" 23 24 #include "trace.h" 25 26 static const TypeInfo spapr_intc_info = { 27 .name = TYPE_SPAPR_INTC, 28 .parent = TYPE_INTERFACE, 29 .class_size = sizeof(SpaprInterruptControllerClass), 30 }; 31 32 static void spapr_irq_msi_init(SpaprMachineState *spapr) 33 { 34 if (SPAPR_MACHINE_GET_CLASS(spapr)->legacy_irq_allocation) { 35 /* Legacy mode doesn't use this allocator */ 36 return; 37 } 38 39 spapr->irq_map_nr = spapr_irq_nr_msis(spapr); 40 spapr->irq_map = bitmap_new(spapr->irq_map_nr); 41 } 42 43 int spapr_irq_msi_alloc(SpaprMachineState *spapr, uint32_t num, bool align, 44 Error **errp) 45 { 46 int irq; 47 48 /* 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() 53 */ 54 align -= 1; 55 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; 61 } 62 63 bitmap_set(spapr->irq_map, irq, num); 64 65 return irq + SPAPR_IRQ_MSI; 66 } 67 68 void spapr_irq_msi_free(SpaprMachineState *spapr, int irq, uint32_t num) 69 { 70 bitmap_clear(spapr->irq_map, irq - SPAPR_IRQ_MSI, num); 71 } 72 73 int spapr_irq_init_kvm(int (*fn)(SpaprInterruptController *, Error **), 74 SpaprInterruptController *intc, 75 Error **errp) 76 { 77 MachineState *machine = MACHINE(qdev_get_machine()); 78 Error *local_err = NULL; 79 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; 87 } 88 89 /* 90 * We failed to initialize the KVM device, fallback to 91 * emulated mode 92 */ 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); 98 } 99 } 100 101 return 0; 102 } 103 104 /* 105 * XICS IRQ backend. 106 */ 107 108 SpaprIrq spapr_irq_xics = { 109 .xics = true, 110 .xive = false, 111 }; 112 113 /* 114 * XIVE IRQ backend. 115 */ 116 117 SpaprIrq spapr_irq_xive = { 118 .xics = false, 119 .xive = true, 120 }; 121 122 /* 123 * Dual XIVE and XICS IRQ backend. 124 * 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. 129 */ 130 131 /* 132 * Define values in sync with the XIVE and XICS backend 133 */ 134 SpaprIrq spapr_irq_dual = { 135 .xics = true, 136 .xive = true, 137 }; 138 139 140 static int spapr_irq_check(SpaprMachineState *spapr, Error **errp) 141 { 142 MachineState *machine = MACHINE(spapr); 143 144 /* 145 * Sanity checks on non-P9 machines. On these, XIVE is not 146 * advertised, see spapr_dt_ov5_platform_support() 147 */ 148 if (!ppc_type_check_compat(machine->cpu_type, CPU_POWERPC_LOGICAL_3_00, 149 0, spapr->max_compat_pvr)) { 150 /* 151 * If the 'dual' interrupt mode is selected, force XICS as CAS 152 * negotiation is useless. 153 */ 154 if (spapr->irq == &spapr_irq_dual) { 155 spapr->irq = &spapr_irq_xics; 156 return 0; 157 } 158 159 /* 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: 162 * 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. 166 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. 170 * 171 * To cover both and not confuse the OS, add an early failure in 172 * QEMU. 173 */ 174 if (spapr->irq == &spapr_irq_xive) { 175 error_setg(errp, "XIVE-only machines require a POWER9 CPU"); 176 return -1; 177 } 178 } 179 180 /* 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. 184 */ 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; 191 } 192 193 return 0; 194 } 195 196 /* 197 * sPAPR IRQ frontend routines for devices 198 */ 199 #define ALL_INTCS(spapr_) \ 200 { SPAPR_INTC((spapr_)->ics), SPAPR_INTC((spapr_)->xive), } 201 202 int spapr_irq_cpu_intc_create(SpaprMachineState *spapr, 203 PowerPCCPU *cpu, Error **errp) 204 { 205 SpaprInterruptController *intcs[] = ALL_INTCS(spapr); 206 int i; 207 int rc; 208 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; 216 } 217 } 218 } 219 220 return 0; 221 } 222 223 void spapr_irq_cpu_intc_reset(SpaprMachineState *spapr, PowerPCCPU *cpu) 224 { 225 SpaprInterruptController *intcs[] = ALL_INTCS(spapr); 226 int i; 227 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); 233 } 234 } 235 } 236 237 static void spapr_set_irq(void *opaque, int irq, int level) 238 { 239 SpaprMachineState *spapr = SPAPR_MACHINE(opaque); 240 SpaprInterruptControllerClass *sicc 241 = SPAPR_INTC_GET_CLASS(spapr->active_intc); 242 243 sicc->set_irq(spapr->active_intc, irq, level); 244 } 245 246 void spapr_irq_print_info(SpaprMachineState *spapr, Monitor *mon) 247 { 248 SpaprInterruptControllerClass *sicc 249 = SPAPR_INTC_GET_CLASS(spapr->active_intc); 250 251 sicc->print_info(spapr->active_intc, mon); 252 } 253 254 void spapr_irq_dt(SpaprMachineState *spapr, uint32_t nr_servers, 255 void *fdt, uint32_t phandle) 256 { 257 SpaprInterruptControllerClass *sicc 258 = SPAPR_INTC_GET_CLASS(spapr->active_intc); 259 260 sicc->dt(spapr->active_intc, nr_servers, fdt, phandle); 261 } 262 263 uint32_t spapr_irq_nr_msis(SpaprMachineState *spapr) 264 { 265 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr); 266 267 if (smc->legacy_irq_allocation) { 268 return smc->nr_xirqs; 269 } else { 270 return SPAPR_XIRQ_BASE + smc->nr_xirqs - SPAPR_IRQ_MSI; 271 } 272 } 273 274 void spapr_irq_init(SpaprMachineState *spapr, Error **errp) 275 { 276 MachineState *machine = MACHINE(spapr); 277 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr); 278 279 if (machine_kernel_irqchip_split(machine)) { 280 error_setg(errp, "kernel_irqchip split mode not supported on pseries"); 281 return; 282 } 283 284 if (!kvm_enabled() && machine_kernel_irqchip_required(machine)) { 285 error_setg(errp, 286 "kernel_irqchip requested but only available with KVM"); 287 return; 288 } 289 290 if (spapr_irq_check(spapr, errp) < 0) { 291 return; 292 } 293 294 /* Initialize the MSI IRQ allocator. */ 295 spapr_irq_msi_init(spapr); 296 297 if (spapr->irq->xics) { 298 Error *local_err = NULL; 299 Object *obj; 300 301 obj = object_new(TYPE_ICS_SPAPR); 302 object_property_add_child(OBJECT(spapr), "ics", obj, &local_err); 303 if (local_err) { 304 error_propagate(errp, local_err); 305 return; 306 } 307 308 object_property_add_const_link(obj, ICS_PROP_XICS, OBJECT(spapr), 309 &local_err); 310 if (local_err) { 311 error_propagate(errp, local_err); 312 return; 313 } 314 315 object_property_set_int(obj, smc->nr_xirqs, "nr-irqs", &local_err); 316 if (local_err) { 317 error_propagate(errp, local_err); 318 return; 319 } 320 321 object_property_set_bool(obj, true, "realized", &local_err); 322 if (local_err) { 323 error_propagate(errp, local_err); 324 return; 325 } 326 327 spapr->ics = ICS_SPAPR(obj); 328 } 329 330 if (spapr->irq->xive) { 331 uint32_t nr_servers = spapr_max_server_number(spapr); 332 DeviceState *dev; 333 int i; 334 335 dev = qdev_create(NULL, TYPE_SPAPR_XIVE); 336 qdev_prop_set_uint32(dev, "nr-irqs", smc->nr_xirqs + SPAPR_XIRQ_BASE); 337 /* 338 * 8 XIVE END structures per CPU. One for each available 339 * priority 340 */ 341 qdev_prop_set_uint32(dev, "nr-ends", nr_servers << 3); 342 qdev_init_nofail(dev); 343 344 spapr->xive = SPAPR_XIVE(dev); 345 346 /* Enable the CPU IPIs */ 347 for (i = 0; i < nr_servers; ++i) { 348 SpaprInterruptControllerClass *sicc 349 = SPAPR_INTC_GET_CLASS(spapr->xive); 350 351 if (sicc->claim_irq(SPAPR_INTC(spapr->xive), SPAPR_IRQ_IPI + i, 352 false, errp) < 0) { 353 return; 354 } 355 } 356 357 spapr_xive_hcall_init(spapr); 358 } 359 360 spapr->qirqs = qemu_allocate_irqs(spapr_set_irq, spapr, 361 smc->nr_xirqs + SPAPR_XIRQ_BASE); 362 } 363 364 int spapr_irq_claim(SpaprMachineState *spapr, int irq, bool lsi, Error **errp) 365 { 366 SpaprInterruptController *intcs[] = ALL_INTCS(spapr); 367 int i; 368 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr); 369 int rc; 370 371 assert(irq >= SPAPR_XIRQ_BASE); 372 assert(irq < (smc->nr_xirqs + SPAPR_XIRQ_BASE)); 373 374 for (i = 0; i < ARRAY_SIZE(intcs); i++) { 375 SpaprInterruptController *intc = intcs[i]; 376 if (intc) { 377 SpaprInterruptControllerClass *sicc = SPAPR_INTC_GET_CLASS(intc); 378 rc = sicc->claim_irq(intc, irq, lsi, errp); 379 if (rc < 0) { 380 return rc; 381 } 382 } 383 } 384 385 return 0; 386 } 387 388 void spapr_irq_free(SpaprMachineState *spapr, int irq, int num) 389 { 390 SpaprInterruptController *intcs[] = ALL_INTCS(spapr); 391 int i, j; 392 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr); 393 394 assert(irq >= SPAPR_XIRQ_BASE); 395 assert((irq + num) <= (smc->nr_xirqs + SPAPR_XIRQ_BASE)); 396 397 for (i = irq; i < (irq + num); i++) { 398 for (j = 0; j < ARRAY_SIZE(intcs); j++) { 399 SpaprInterruptController *intc = intcs[j]; 400 401 if (intc) { 402 SpaprInterruptControllerClass *sicc 403 = SPAPR_INTC_GET_CLASS(intc); 404 sicc->free_irq(intc, i); 405 } 406 } 407 } 408 } 409 410 qemu_irq spapr_qirq(SpaprMachineState *spapr, int irq) 411 { 412 SpaprMachineClass *smc = SPAPR_MACHINE_GET_CLASS(spapr); 413 414 /* 415 * This interface is basically for VIO and PHB devices to find the 416 * right qemu_irq to manipulate, so we only allow access to the 417 * external irqs for now. Currently anything which needs to 418 * access the IPIs most naturally gets there via the guest side 419 * interfaces, we can change this if we need to in future. 420 */ 421 assert(irq >= SPAPR_XIRQ_BASE); 422 assert(irq < (smc->nr_xirqs + SPAPR_XIRQ_BASE)); 423 424 if (spapr->ics) { 425 assert(ics_valid_irq(spapr->ics, irq)); 426 } 427 if (spapr->xive) { 428 assert(irq < spapr->xive->nr_irqs); 429 assert(xive_eas_is_valid(&spapr->xive->eat[irq])); 430 } 431 432 return spapr->qirqs[irq]; 433 } 434 435 int spapr_irq_post_load(SpaprMachineState *spapr, int version_id) 436 { 437 SpaprInterruptControllerClass *sicc; 438 439 spapr_irq_update_active_intc(spapr); 440 sicc = SPAPR_INTC_GET_CLASS(spapr->active_intc); 441 return sicc->post_load(spapr->active_intc, version_id); 442 } 443 444 void spapr_irq_reset(SpaprMachineState *spapr, Error **errp) 445 { 446 assert(!spapr->irq_map || bitmap_empty(spapr->irq_map, spapr->irq_map_nr)); 447 448 spapr_irq_update_active_intc(spapr); 449 } 450 451 int spapr_irq_get_phandle(SpaprMachineState *spapr, void *fdt, Error **errp) 452 { 453 const char *nodename = "interrupt-controller"; 454 int offset, phandle; 455 456 offset = fdt_subnode_offset(fdt, 0, nodename); 457 if (offset < 0) { 458 error_setg(errp, "Can't find node \"%s\": %s", 459 nodename, fdt_strerror(offset)); 460 return -1; 461 } 462 463 phandle = fdt_get_phandle(fdt, offset); 464 if (!phandle) { 465 error_setg(errp, "Can't get phandle of node \"%s\"", nodename); 466 return -1; 467 } 468 469 return phandle; 470 } 471 472 static void set_active_intc(SpaprMachineState *spapr, 473 SpaprInterruptController *new_intc) 474 { 475 SpaprInterruptControllerClass *sicc; 476 477 assert(new_intc); 478 479 if (new_intc == spapr->active_intc) { 480 /* Nothing to do */ 481 return; 482 } 483 484 if (spapr->active_intc) { 485 sicc = SPAPR_INTC_GET_CLASS(spapr->active_intc); 486 if (sicc->deactivate) { 487 sicc->deactivate(spapr->active_intc); 488 } 489 } 490 491 sicc = SPAPR_INTC_GET_CLASS(new_intc); 492 if (sicc->activate) { 493 sicc->activate(new_intc, &error_fatal); 494 } 495 496 spapr->active_intc = new_intc; 497 } 498 499 void spapr_irq_update_active_intc(SpaprMachineState *spapr) 500 { 501 SpaprInterruptController *new_intc; 502 503 if (!spapr->ics) { 504 /* 505 * XXX before we run CAS, ov5_cas is initialized empty, which 506 * indicates XICS, even if we have ic-mode=xive. TODO: clean 507 * up the CAS path so that we have a clearer way of handling 508 * this. 509 */ 510 new_intc = SPAPR_INTC(spapr->xive); 511 } else if (spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) { 512 new_intc = SPAPR_INTC(spapr->xive); 513 } else { 514 new_intc = SPAPR_INTC(spapr->ics); 515 } 516 517 set_active_intc(spapr, new_intc); 518 } 519 520 /* 521 * XICS legacy routines - to deprecate one day 522 */ 523 524 static int ics_find_free_block(ICSState *ics, int num, int alignnum) 525 { 526 int first, i; 527 528 for (first = 0; first < ics->nr_irqs; first += alignnum) { 529 if (num > (ics->nr_irqs - first)) { 530 return -1; 531 } 532 for (i = first; i < first + num; ++i) { 533 if (!ics_irq_free(ics, i)) { 534 break; 535 } 536 } 537 if (i == (first + num)) { 538 return first; 539 } 540 } 541 542 return -1; 543 } 544 545 int spapr_irq_find(SpaprMachineState *spapr, int num, bool align, Error **errp) 546 { 547 ICSState *ics = spapr->ics; 548 int first = -1; 549 550 assert(ics); 551 552 /* 553 * MSIMesage::data is used for storing VIRQ so 554 * it has to be aligned to num to support multiple 555 * MSI vectors. MSI-X is not affected by this. 556 * The hint is used for the first IRQ, the rest should 557 * be allocated continuously. 558 */ 559 if (align) { 560 assert((num == 1) || (num == 2) || (num == 4) || 561 (num == 8) || (num == 16) || (num == 32)); 562 first = ics_find_free_block(ics, num, num); 563 } else { 564 first = ics_find_free_block(ics, num, 1); 565 } 566 567 if (first < 0) { 568 error_setg(errp, "can't find a free %d-IRQ block", num); 569 return -1; 570 } 571 572 return first + ics->offset; 573 } 574 575 SpaprIrq spapr_irq_xics_legacy = { 576 .xics = true, 577 .xive = false, 578 }; 579 580 static void spapr_irq_register_types(void) 581 { 582 type_register_static(&spapr_intc_info); 583 } 584 585 type_init(spapr_irq_register_types) 586