target/ppc: Add support for scv and rfscv instructions
[qemu/ar7.git] / hw / intc / spapr_xive.c
blob6608d7220a473c43cde6a106eda3f2f35d82292b
1 /*
2 * QEMU PowerPC sPAPR XIVE interrupt controller model
4 * Copyright (c) 2017-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/module.h"
13 #include "qapi/error.h"
14 #include "qemu/error-report.h"
15 #include "target/ppc/cpu.h"
16 #include "sysemu/cpus.h"
17 #include "sysemu/reset.h"
18 #include "migration/vmstate.h"
19 #include "monitor/monitor.h"
20 #include "hw/ppc/fdt.h"
21 #include "hw/ppc/spapr.h"
22 #include "hw/ppc/spapr_cpu_core.h"
23 #include "hw/ppc/spapr_xive.h"
24 #include "hw/ppc/xive.h"
25 #include "hw/ppc/xive_regs.h"
26 #include "hw/qdev-properties.h"
29 * XIVE Virtualization Controller BAR and Thread Managment BAR that we
30 * use for the ESB pages and the TIMA pages
32 #define SPAPR_XIVE_VC_BASE 0x0006010000000000ull
33 #define SPAPR_XIVE_TM_BASE 0x0006030203180000ull
36 * The allocation of VP blocks is a complex operation in OPAL and the
37 * VP identifiers have a relation with the number of HW chips, the
38 * size of the VP blocks, VP grouping, etc. The QEMU sPAPR XIVE
39 * controller model does not have the same constraints and can use a
40 * simple mapping scheme of the CPU vcpu_id
42 * These identifiers are never returned to the OS.
45 #define SPAPR_XIVE_NVT_BASE 0x400
48 * sPAPR NVT and END indexing helpers
50 static uint32_t spapr_xive_nvt_to_target(uint8_t nvt_blk, uint32_t nvt_idx)
52 return nvt_idx - SPAPR_XIVE_NVT_BASE;
55 static void spapr_xive_cpu_to_nvt(PowerPCCPU *cpu,
56 uint8_t *out_nvt_blk, uint32_t *out_nvt_idx)
58 assert(cpu);
60 if (out_nvt_blk) {
61 *out_nvt_blk = SPAPR_XIVE_BLOCK_ID;
64 if (out_nvt_blk) {
65 *out_nvt_idx = SPAPR_XIVE_NVT_BASE + cpu->vcpu_id;
69 static int spapr_xive_target_to_nvt(uint32_t target,
70 uint8_t *out_nvt_blk, uint32_t *out_nvt_idx)
72 PowerPCCPU *cpu = spapr_find_cpu(target);
74 if (!cpu) {
75 return -1;
78 spapr_xive_cpu_to_nvt(cpu, out_nvt_blk, out_nvt_idx);
79 return 0;
83 * sPAPR END indexing uses a simple mapping of the CPU vcpu_id, 8
84 * priorities per CPU
86 int spapr_xive_end_to_target(uint8_t end_blk, uint32_t end_idx,
87 uint32_t *out_server, uint8_t *out_prio)
90 assert(end_blk == SPAPR_XIVE_BLOCK_ID);
92 if (out_server) {
93 *out_server = end_idx >> 3;
96 if (out_prio) {
97 *out_prio = end_idx & 0x7;
99 return 0;
102 static void spapr_xive_cpu_to_end(PowerPCCPU *cpu, uint8_t prio,
103 uint8_t *out_end_blk, uint32_t *out_end_idx)
105 assert(cpu);
107 if (out_end_blk) {
108 *out_end_blk = SPAPR_XIVE_BLOCK_ID;
111 if (out_end_idx) {
112 *out_end_idx = (cpu->vcpu_id << 3) + prio;
116 static int spapr_xive_target_to_end(uint32_t target, uint8_t prio,
117 uint8_t *out_end_blk, uint32_t *out_end_idx)
119 PowerPCCPU *cpu = spapr_find_cpu(target);
121 if (!cpu) {
122 return -1;
125 spapr_xive_cpu_to_end(cpu, prio, out_end_blk, out_end_idx);
126 return 0;
130 * On sPAPR machines, use a simplified output for the XIVE END
131 * structure dumping only the information related to the OS EQ.
133 static void spapr_xive_end_pic_print_info(SpaprXive *xive, XiveEND *end,
134 Monitor *mon)
136 uint64_t qaddr_base = xive_end_qaddr(end);
137 uint32_t qindex = xive_get_field32(END_W1_PAGE_OFF, end->w1);
138 uint32_t qgen = xive_get_field32(END_W1_GENERATION, end->w1);
139 uint32_t qsize = xive_get_field32(END_W0_QSIZE, end->w0);
140 uint32_t qentries = 1 << (qsize + 10);
141 uint32_t nvt = xive_get_field32(END_W6_NVT_INDEX, end->w6);
142 uint8_t priority = xive_get_field32(END_W7_F0_PRIORITY, end->w7);
144 monitor_printf(mon, "%3d/%d % 6d/%5d @%"PRIx64" ^%d",
145 spapr_xive_nvt_to_target(0, nvt),
146 priority, qindex, qentries, qaddr_base, qgen);
148 xive_end_queue_pic_print_info(end, 6, mon);
151 void spapr_xive_pic_print_info(SpaprXive *xive, Monitor *mon)
153 XiveSource *xsrc = &xive->source;
154 int i;
156 if (kvm_irqchip_in_kernel()) {
157 Error *local_err = NULL;
159 kvmppc_xive_synchronize_state(xive, &local_err);
160 if (local_err) {
161 error_report_err(local_err);
162 return;
166 monitor_printf(mon, " LISN PQ EISN CPU/PRIO EQ\n");
168 for (i = 0; i < xive->nr_irqs; i++) {
169 uint8_t pq = xive_source_esb_get(xsrc, i);
170 XiveEAS *eas = &xive->eat[i];
172 if (!xive_eas_is_valid(eas)) {
173 continue;
176 monitor_printf(mon, " %08x %s %c%c%c %s %08x ", i,
177 xive_source_irq_is_lsi(xsrc, i) ? "LSI" : "MSI",
178 pq & XIVE_ESB_VAL_P ? 'P' : '-',
179 pq & XIVE_ESB_VAL_Q ? 'Q' : '-',
180 xsrc->status[i] & XIVE_STATUS_ASSERTED ? 'A' : ' ',
181 xive_eas_is_masked(eas) ? "M" : " ",
182 (int) xive_get_field64(EAS_END_DATA, eas->w));
184 if (!xive_eas_is_masked(eas)) {
185 uint32_t end_idx = xive_get_field64(EAS_END_INDEX, eas->w);
186 XiveEND *end;
188 assert(end_idx < xive->nr_ends);
189 end = &xive->endt[end_idx];
191 if (xive_end_is_valid(end)) {
192 spapr_xive_end_pic_print_info(xive, end, mon);
195 monitor_printf(mon, "\n");
199 void spapr_xive_mmio_set_enabled(SpaprXive *xive, bool enable)
201 memory_region_set_enabled(&xive->source.esb_mmio, enable);
202 memory_region_set_enabled(&xive->tm_mmio, enable);
204 /* Disable the END ESBs until a guest OS makes use of them */
205 memory_region_set_enabled(&xive->end_source.esb_mmio, false);
208 static void spapr_xive_tm_write(void *opaque, hwaddr offset,
209 uint64_t value, unsigned size)
211 XiveTCTX *tctx = spapr_cpu_state(POWERPC_CPU(current_cpu))->tctx;
213 xive_tctx_tm_write(XIVE_PRESENTER(opaque), tctx, offset, value, size);
216 static uint64_t spapr_xive_tm_read(void *opaque, hwaddr offset, unsigned size)
218 XiveTCTX *tctx = spapr_cpu_state(POWERPC_CPU(current_cpu))->tctx;
220 return xive_tctx_tm_read(XIVE_PRESENTER(opaque), tctx, offset, size);
223 const MemoryRegionOps spapr_xive_tm_ops = {
224 .read = spapr_xive_tm_read,
225 .write = spapr_xive_tm_write,
226 .endianness = DEVICE_BIG_ENDIAN,
227 .valid = {
228 .min_access_size = 1,
229 .max_access_size = 8,
231 .impl = {
232 .min_access_size = 1,
233 .max_access_size = 8,
237 static void spapr_xive_end_reset(XiveEND *end)
239 memset(end, 0, sizeof(*end));
241 /* switch off the escalation and notification ESBs */
242 end->w1 = cpu_to_be32(END_W1_ESe_Q | END_W1_ESn_Q);
245 static void spapr_xive_reset(void *dev)
247 SpaprXive *xive = SPAPR_XIVE(dev);
248 int i;
251 * The XiveSource has its own reset handler, which mask off all
252 * IRQs (!P|Q)
255 /* Mask all valid EASs in the IRQ number space. */
256 for (i = 0; i < xive->nr_irqs; i++) {
257 XiveEAS *eas = &xive->eat[i];
258 if (xive_eas_is_valid(eas)) {
259 eas->w = cpu_to_be64(EAS_VALID | EAS_MASKED);
260 } else {
261 eas->w = 0;
265 /* Clear all ENDs */
266 for (i = 0; i < xive->nr_ends; i++) {
267 spapr_xive_end_reset(&xive->endt[i]);
271 static void spapr_xive_instance_init(Object *obj)
273 SpaprXive *xive = SPAPR_XIVE(obj);
275 object_initialize_child(obj, "source", &xive->source, sizeof(xive->source),
276 TYPE_XIVE_SOURCE, &error_abort, NULL);
278 object_initialize_child(obj, "end_source", &xive->end_source,
279 sizeof(xive->end_source), TYPE_XIVE_END_SOURCE,
280 &error_abort, NULL);
282 /* Not connected to the KVM XIVE device */
283 xive->fd = -1;
286 static void spapr_xive_realize(DeviceState *dev, Error **errp)
288 SpaprXive *xive = SPAPR_XIVE(dev);
289 SpaprXiveClass *sxc = SPAPR_XIVE_GET_CLASS(xive);
290 XiveSource *xsrc = &xive->source;
291 XiveENDSource *end_xsrc = &xive->end_source;
292 Error *local_err = NULL;
294 sxc->parent_realize(dev, &local_err);
295 if (local_err) {
296 error_propagate(errp, local_err);
297 return;
300 if (!xive->nr_irqs) {
301 error_setg(errp, "Number of interrupt needs to be greater 0");
302 return;
305 if (!xive->nr_ends) {
306 error_setg(errp, "Number of interrupt needs to be greater 0");
307 return;
311 * Initialize the internal sources, for IPIs and virtual devices.
313 object_property_set_int(OBJECT(xsrc), xive->nr_irqs, "nr-irqs",
314 &error_fatal);
315 object_property_set_link(OBJECT(xsrc), OBJECT(xive), "xive",
316 &error_abort);
317 object_property_set_bool(OBJECT(xsrc), true, "realized", &local_err);
318 if (local_err) {
319 error_propagate(errp, local_err);
320 return;
322 sysbus_init_mmio(SYS_BUS_DEVICE(xive), &xsrc->esb_mmio);
325 * Initialize the END ESB source
327 object_property_set_int(OBJECT(end_xsrc), xive->nr_irqs, "nr-ends",
328 &error_fatal);
329 object_property_set_link(OBJECT(end_xsrc), OBJECT(xive), "xive",
330 &error_abort);
331 object_property_set_bool(OBJECT(end_xsrc), true, "realized", &local_err);
332 if (local_err) {
333 error_propagate(errp, local_err);
334 return;
336 sysbus_init_mmio(SYS_BUS_DEVICE(xive), &end_xsrc->esb_mmio);
338 /* Set the mapping address of the END ESB pages after the source ESBs */
339 xive->end_base = xive->vc_base + (1ull << xsrc->esb_shift) * xsrc->nr_irqs;
342 * Allocate the routing tables
344 xive->eat = g_new0(XiveEAS, xive->nr_irqs);
345 xive->endt = g_new0(XiveEND, xive->nr_ends);
347 xive->nodename = g_strdup_printf("interrupt-controller@%" PRIx64,
348 xive->tm_base + XIVE_TM_USER_PAGE * (1 << TM_SHIFT));
350 qemu_register_reset(spapr_xive_reset, dev);
352 /* TIMA initialization */
353 memory_region_init_io(&xive->tm_mmio, OBJECT(xive), &spapr_xive_tm_ops,
354 xive, "xive.tima", 4ull << TM_SHIFT);
355 sysbus_init_mmio(SYS_BUS_DEVICE(xive), &xive->tm_mmio);
358 * Map all regions. These will be enabled or disabled at reset and
359 * can also be overridden by KVM memory regions if active
361 sysbus_mmio_map(SYS_BUS_DEVICE(xive), 0, xive->vc_base);
362 sysbus_mmio_map(SYS_BUS_DEVICE(xive), 1, xive->end_base);
363 sysbus_mmio_map(SYS_BUS_DEVICE(xive), 2, xive->tm_base);
366 static int spapr_xive_get_eas(XiveRouter *xrtr, uint8_t eas_blk,
367 uint32_t eas_idx, XiveEAS *eas)
369 SpaprXive *xive = SPAPR_XIVE(xrtr);
371 if (eas_idx >= xive->nr_irqs) {
372 return -1;
375 *eas = xive->eat[eas_idx];
376 return 0;
379 static int spapr_xive_get_end(XiveRouter *xrtr,
380 uint8_t end_blk, uint32_t end_idx, XiveEND *end)
382 SpaprXive *xive = SPAPR_XIVE(xrtr);
384 if (end_idx >= xive->nr_ends) {
385 return -1;
388 memcpy(end, &xive->endt[end_idx], sizeof(XiveEND));
389 return 0;
392 static int spapr_xive_write_end(XiveRouter *xrtr, uint8_t end_blk,
393 uint32_t end_idx, XiveEND *end,
394 uint8_t word_number)
396 SpaprXive *xive = SPAPR_XIVE(xrtr);
398 if (end_idx >= xive->nr_ends) {
399 return -1;
402 memcpy(&xive->endt[end_idx], end, sizeof(XiveEND));
403 return 0;
406 static int spapr_xive_get_nvt(XiveRouter *xrtr,
407 uint8_t nvt_blk, uint32_t nvt_idx, XiveNVT *nvt)
409 uint32_t vcpu_id = spapr_xive_nvt_to_target(nvt_blk, nvt_idx);
410 PowerPCCPU *cpu = spapr_find_cpu(vcpu_id);
412 if (!cpu) {
413 /* TODO: should we assert() if we can find a NVT ? */
414 return -1;
418 * sPAPR does not maintain a NVT table. Return that the NVT is
419 * valid if we have found a matching CPU
421 nvt->w0 = cpu_to_be32(NVT_W0_VALID);
422 return 0;
425 static int spapr_xive_write_nvt(XiveRouter *xrtr, uint8_t nvt_blk,
426 uint32_t nvt_idx, XiveNVT *nvt,
427 uint8_t word_number)
430 * We don't need to write back to the NVTs because the sPAPR
431 * machine should never hit a non-scheduled NVT. It should never
432 * get called.
434 g_assert_not_reached();
437 static int spapr_xive_match_nvt(XivePresenter *xptr, uint8_t format,
438 uint8_t nvt_blk, uint32_t nvt_idx,
439 bool cam_ignore, uint8_t priority,
440 uint32_t logic_serv, XiveTCTXMatch *match)
442 CPUState *cs;
443 int count = 0;
445 CPU_FOREACH(cs) {
446 PowerPCCPU *cpu = POWERPC_CPU(cs);
447 XiveTCTX *tctx = spapr_cpu_state(cpu)->tctx;
448 int ring;
451 * Skip partially initialized vCPUs. This can happen when
452 * vCPUs are hotplugged.
454 if (!tctx) {
455 continue;
459 * Check the thread context CAM lines and record matches.
461 ring = xive_presenter_tctx_match(xptr, tctx, format, nvt_blk, nvt_idx,
462 cam_ignore, logic_serv);
464 * Save the matching thread interrupt context and follow on to
465 * check for duplicates which are invalid.
467 if (ring != -1) {
468 if (match->tctx) {
469 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: already found a thread "
470 "context NVT %x/%x\n", nvt_blk, nvt_idx);
471 return -1;
474 match->ring = ring;
475 match->tctx = tctx;
476 count++;
480 return count;
483 static uint8_t spapr_xive_get_block_id(XiveRouter *xrtr)
485 return SPAPR_XIVE_BLOCK_ID;
488 static const VMStateDescription vmstate_spapr_xive_end = {
489 .name = TYPE_SPAPR_XIVE "/end",
490 .version_id = 1,
491 .minimum_version_id = 1,
492 .fields = (VMStateField []) {
493 VMSTATE_UINT32(w0, XiveEND),
494 VMSTATE_UINT32(w1, XiveEND),
495 VMSTATE_UINT32(w2, XiveEND),
496 VMSTATE_UINT32(w3, XiveEND),
497 VMSTATE_UINT32(w4, XiveEND),
498 VMSTATE_UINT32(w5, XiveEND),
499 VMSTATE_UINT32(w6, XiveEND),
500 VMSTATE_UINT32(w7, XiveEND),
501 VMSTATE_END_OF_LIST()
505 static const VMStateDescription vmstate_spapr_xive_eas = {
506 .name = TYPE_SPAPR_XIVE "/eas",
507 .version_id = 1,
508 .minimum_version_id = 1,
509 .fields = (VMStateField []) {
510 VMSTATE_UINT64(w, XiveEAS),
511 VMSTATE_END_OF_LIST()
515 static int vmstate_spapr_xive_pre_save(void *opaque)
517 if (kvm_irqchip_in_kernel()) {
518 return kvmppc_xive_pre_save(SPAPR_XIVE(opaque));
521 return 0;
525 * Called by the sPAPR IRQ backend 'post_load' method at the machine
526 * level.
528 static int spapr_xive_post_load(SpaprInterruptController *intc, int version_id)
530 if (kvm_irqchip_in_kernel()) {
531 return kvmppc_xive_post_load(SPAPR_XIVE(intc), version_id);
534 return 0;
537 static const VMStateDescription vmstate_spapr_xive = {
538 .name = TYPE_SPAPR_XIVE,
539 .version_id = 1,
540 .minimum_version_id = 1,
541 .pre_save = vmstate_spapr_xive_pre_save,
542 .post_load = NULL, /* handled at the machine level */
543 .fields = (VMStateField[]) {
544 VMSTATE_UINT32_EQUAL(nr_irqs, SpaprXive, NULL),
545 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(eat, SpaprXive, nr_irqs,
546 vmstate_spapr_xive_eas, XiveEAS),
547 VMSTATE_STRUCT_VARRAY_POINTER_UINT32(endt, SpaprXive, nr_ends,
548 vmstate_spapr_xive_end, XiveEND),
549 VMSTATE_END_OF_LIST()
553 static int spapr_xive_claim_irq(SpaprInterruptController *intc, int lisn,
554 bool lsi, Error **errp)
556 SpaprXive *xive = SPAPR_XIVE(intc);
557 XiveSource *xsrc = &xive->source;
559 assert(lisn < xive->nr_irqs);
561 if (xive_eas_is_valid(&xive->eat[lisn])) {
562 error_setg(errp, "IRQ %d is not free", lisn);
563 return -EBUSY;
567 * Set default values when allocating an IRQ number
569 xive->eat[lisn].w |= cpu_to_be64(EAS_VALID | EAS_MASKED);
570 if (lsi) {
571 xive_source_irq_set_lsi(xsrc, lisn);
574 if (kvm_irqchip_in_kernel()) {
575 return kvmppc_xive_source_reset_one(xsrc, lisn, errp);
578 return 0;
581 static void spapr_xive_free_irq(SpaprInterruptController *intc, int lisn)
583 SpaprXive *xive = SPAPR_XIVE(intc);
584 assert(lisn < xive->nr_irqs);
586 xive->eat[lisn].w &= cpu_to_be64(~EAS_VALID);
589 static Property spapr_xive_properties[] = {
590 DEFINE_PROP_UINT32("nr-irqs", SpaprXive, nr_irqs, 0),
591 DEFINE_PROP_UINT32("nr-ends", SpaprXive, nr_ends, 0),
592 DEFINE_PROP_UINT64("vc-base", SpaprXive, vc_base, SPAPR_XIVE_VC_BASE),
593 DEFINE_PROP_UINT64("tm-base", SpaprXive, tm_base, SPAPR_XIVE_TM_BASE),
594 DEFINE_PROP_END_OF_LIST(),
597 static int spapr_xive_cpu_intc_create(SpaprInterruptController *intc,
598 PowerPCCPU *cpu, Error **errp)
600 SpaprXive *xive = SPAPR_XIVE(intc);
601 Object *obj;
602 SpaprCpuState *spapr_cpu = spapr_cpu_state(cpu);
604 obj = xive_tctx_create(OBJECT(cpu), XIVE_PRESENTER(xive), errp);
605 if (!obj) {
606 return -1;
609 spapr_cpu->tctx = XIVE_TCTX(obj);
610 return 0;
613 static void xive_tctx_set_os_cam(XiveTCTX *tctx, uint32_t os_cam)
615 uint32_t qw1w2 = cpu_to_be32(TM_QW1W2_VO | os_cam);
616 memcpy(&tctx->regs[TM_QW1_OS + TM_WORD2], &qw1w2, 4);
619 static void spapr_xive_cpu_intc_reset(SpaprInterruptController *intc,
620 PowerPCCPU *cpu)
622 XiveTCTX *tctx = spapr_cpu_state(cpu)->tctx;
623 uint8_t nvt_blk;
624 uint32_t nvt_idx;
626 xive_tctx_reset(tctx);
629 * When a Virtual Processor is scheduled to run on a HW thread,
630 * the hypervisor pushes its identifier in the OS CAM line.
631 * Emulate the same behavior under QEMU.
633 spapr_xive_cpu_to_nvt(cpu, &nvt_blk, &nvt_idx);
635 xive_tctx_set_os_cam(tctx, xive_nvt_cam_line(nvt_blk, nvt_idx));
638 static void spapr_xive_cpu_intc_destroy(SpaprInterruptController *intc,
639 PowerPCCPU *cpu)
641 SpaprCpuState *spapr_cpu = spapr_cpu_state(cpu);
643 xive_tctx_destroy(spapr_cpu->tctx);
644 spapr_cpu->tctx = NULL;
647 static void spapr_xive_set_irq(SpaprInterruptController *intc, int irq, int val)
649 SpaprXive *xive = SPAPR_XIVE(intc);
651 if (kvm_irqchip_in_kernel()) {
652 kvmppc_xive_source_set_irq(&xive->source, irq, val);
653 } else {
654 xive_source_set_irq(&xive->source, irq, val);
658 static void spapr_xive_print_info(SpaprInterruptController *intc, Monitor *mon)
660 SpaprXive *xive = SPAPR_XIVE(intc);
661 CPUState *cs;
663 CPU_FOREACH(cs) {
664 PowerPCCPU *cpu = POWERPC_CPU(cs);
666 xive_tctx_pic_print_info(spapr_cpu_state(cpu)->tctx, mon);
669 spapr_xive_pic_print_info(xive, mon);
672 static void spapr_xive_dt(SpaprInterruptController *intc, uint32_t nr_servers,
673 void *fdt, uint32_t phandle)
675 SpaprXive *xive = SPAPR_XIVE(intc);
676 int node;
677 uint64_t timas[2 * 2];
678 /* Interrupt number ranges for the IPIs */
679 uint32_t lisn_ranges[] = {
680 cpu_to_be32(SPAPR_IRQ_IPI),
681 cpu_to_be32(SPAPR_IRQ_IPI + nr_servers),
684 * EQ size - the sizes of pages supported by the system 4K, 64K,
685 * 2M, 16M. We only advertise 64K for the moment.
687 uint32_t eq_sizes[] = {
688 cpu_to_be32(16), /* 64K */
691 * The following array is in sync with the reserved priorities
692 * defined by the 'spapr_xive_priority_is_reserved' routine.
694 uint32_t plat_res_int_priorities[] = {
695 cpu_to_be32(7), /* start */
696 cpu_to_be32(0xf8), /* count */
699 /* Thread Interrupt Management Area : User (ring 3) and OS (ring 2) */
700 timas[0] = cpu_to_be64(xive->tm_base +
701 XIVE_TM_USER_PAGE * (1ull << TM_SHIFT));
702 timas[1] = cpu_to_be64(1ull << TM_SHIFT);
703 timas[2] = cpu_to_be64(xive->tm_base +
704 XIVE_TM_OS_PAGE * (1ull << TM_SHIFT));
705 timas[3] = cpu_to_be64(1ull << TM_SHIFT);
707 _FDT(node = fdt_add_subnode(fdt, 0, xive->nodename));
709 _FDT(fdt_setprop_string(fdt, node, "device_type", "power-ivpe"));
710 _FDT(fdt_setprop(fdt, node, "reg", timas, sizeof(timas)));
712 _FDT(fdt_setprop_string(fdt, node, "compatible", "ibm,power-ivpe"));
713 _FDT(fdt_setprop(fdt, node, "ibm,xive-eq-sizes", eq_sizes,
714 sizeof(eq_sizes)));
715 _FDT(fdt_setprop(fdt, node, "ibm,xive-lisn-ranges", lisn_ranges,
716 sizeof(lisn_ranges)));
718 /* For Linux to link the LSIs to the interrupt controller. */
719 _FDT(fdt_setprop(fdt, node, "interrupt-controller", NULL, 0));
720 _FDT(fdt_setprop_cell(fdt, node, "#interrupt-cells", 2));
722 /* For SLOF */
723 _FDT(fdt_setprop_cell(fdt, node, "linux,phandle", phandle));
724 _FDT(fdt_setprop_cell(fdt, node, "phandle", phandle));
727 * The "ibm,plat-res-int-priorities" property defines the priority
728 * ranges reserved by the hypervisor
730 _FDT(fdt_setprop(fdt, 0, "ibm,plat-res-int-priorities",
731 plat_res_int_priorities, sizeof(plat_res_int_priorities)));
734 static int spapr_xive_activate(SpaprInterruptController *intc,
735 uint32_t nr_servers, Error **errp)
737 SpaprXive *xive = SPAPR_XIVE(intc);
739 if (kvm_enabled()) {
740 int rc = spapr_irq_init_kvm(kvmppc_xive_connect, intc, nr_servers,
741 errp);
742 if (rc < 0) {
743 return rc;
747 /* Activate the XIVE MMIOs */
748 spapr_xive_mmio_set_enabled(xive, true);
750 return 0;
753 static void spapr_xive_deactivate(SpaprInterruptController *intc)
755 SpaprXive *xive = SPAPR_XIVE(intc);
757 spapr_xive_mmio_set_enabled(xive, false);
759 if (kvm_irqchip_in_kernel()) {
760 kvmppc_xive_disconnect(intc);
764 static void spapr_xive_class_init(ObjectClass *klass, void *data)
766 DeviceClass *dc = DEVICE_CLASS(klass);
767 XiveRouterClass *xrc = XIVE_ROUTER_CLASS(klass);
768 SpaprInterruptControllerClass *sicc = SPAPR_INTC_CLASS(klass);
769 XivePresenterClass *xpc = XIVE_PRESENTER_CLASS(klass);
770 SpaprXiveClass *sxc = SPAPR_XIVE_CLASS(klass);
772 dc->desc = "sPAPR XIVE Interrupt Controller";
773 device_class_set_props(dc, spapr_xive_properties);
774 device_class_set_parent_realize(dc, spapr_xive_realize,
775 &sxc->parent_realize);
776 dc->vmsd = &vmstate_spapr_xive;
778 xrc->get_eas = spapr_xive_get_eas;
779 xrc->get_end = spapr_xive_get_end;
780 xrc->write_end = spapr_xive_write_end;
781 xrc->get_nvt = spapr_xive_get_nvt;
782 xrc->write_nvt = spapr_xive_write_nvt;
783 xrc->get_block_id = spapr_xive_get_block_id;
785 sicc->activate = spapr_xive_activate;
786 sicc->deactivate = spapr_xive_deactivate;
787 sicc->cpu_intc_create = spapr_xive_cpu_intc_create;
788 sicc->cpu_intc_reset = spapr_xive_cpu_intc_reset;
789 sicc->cpu_intc_destroy = spapr_xive_cpu_intc_destroy;
790 sicc->claim_irq = spapr_xive_claim_irq;
791 sicc->free_irq = spapr_xive_free_irq;
792 sicc->set_irq = spapr_xive_set_irq;
793 sicc->print_info = spapr_xive_print_info;
794 sicc->dt = spapr_xive_dt;
795 sicc->post_load = spapr_xive_post_load;
797 xpc->match_nvt = spapr_xive_match_nvt;
800 static const TypeInfo spapr_xive_info = {
801 .name = TYPE_SPAPR_XIVE,
802 .parent = TYPE_XIVE_ROUTER,
803 .instance_init = spapr_xive_instance_init,
804 .instance_size = sizeof(SpaprXive),
805 .class_init = spapr_xive_class_init,
806 .class_size = sizeof(SpaprXiveClass),
807 .interfaces = (InterfaceInfo[]) {
808 { TYPE_SPAPR_INTC },
813 static void spapr_xive_register_types(void)
815 type_register_static(&spapr_xive_info);
818 type_init(spapr_xive_register_types)
821 * XIVE hcalls
823 * The terminology used by the XIVE hcalls is the following :
825 * TARGET vCPU number
826 * EQ Event Queue assigned by OS to receive event data
827 * ESB page for source interrupt management
828 * LISN Logical Interrupt Source Number identifying a source in the
829 * machine
830 * EISN Effective Interrupt Source Number used by guest OS to
831 * identify source in the guest
833 * The EAS, END, NVT structures are not exposed.
837 * Linux hosts under OPAL reserve priority 7 for their own escalation
838 * interrupts (DD2.X POWER9). So we only allow the guest to use
839 * priorities [0..6].
841 static bool spapr_xive_priority_is_reserved(uint8_t priority)
843 switch (priority) {
844 case 0 ... 6:
845 return false;
846 case 7: /* OPAL escalation queue */
847 default:
848 return true;
853 * The H_INT_GET_SOURCE_INFO hcall() is used to obtain the logical
854 * real address of the MMIO page through which the Event State Buffer
855 * entry associated with the value of the "lisn" parameter is managed.
857 * Parameters:
858 * Input
859 * - R4: "flags"
860 * Bits 0-63 reserved
861 * - R5: "lisn" is per "interrupts", "interrupt-map", or
862 * "ibm,xive-lisn-ranges" properties, or as returned by the
863 * ibm,query-interrupt-source-number RTAS call, or as returned
864 * by the H_ALLOCATE_VAS_WINDOW hcall
866 * Output
867 * - R4: "flags"
868 * Bits 0-59: Reserved
869 * Bit 60: H_INT_ESB must be used for Event State Buffer
870 * management
871 * Bit 61: 1 == LSI 0 == MSI
872 * Bit 62: the full function page supports trigger
873 * Bit 63: Store EOI Supported
874 * - R5: Logical Real address of full function Event State Buffer
875 * management page, -1 if H_INT_ESB hcall flag is set to 1.
876 * - R6: Logical Real Address of trigger only Event State Buffer
877 * management page or -1.
878 * - R7: Power of 2 page size for the ESB management pages returned in
879 * R5 and R6.
882 #define SPAPR_XIVE_SRC_H_INT_ESB PPC_BIT(60) /* ESB manage with H_INT_ESB */
883 #define SPAPR_XIVE_SRC_LSI PPC_BIT(61) /* Virtual LSI type */
884 #define SPAPR_XIVE_SRC_TRIGGER PPC_BIT(62) /* Trigger and management
885 on same page */
886 #define SPAPR_XIVE_SRC_STORE_EOI PPC_BIT(63) /* Store EOI support */
888 static target_ulong h_int_get_source_info(PowerPCCPU *cpu,
889 SpaprMachineState *spapr,
890 target_ulong opcode,
891 target_ulong *args)
893 SpaprXive *xive = spapr->xive;
894 XiveSource *xsrc = &xive->source;
895 target_ulong flags = args[0];
896 target_ulong lisn = args[1];
898 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
899 return H_FUNCTION;
902 if (flags) {
903 return H_PARAMETER;
906 if (lisn >= xive->nr_irqs) {
907 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Unknown LISN " TARGET_FMT_lx "\n",
908 lisn);
909 return H_P2;
912 if (!xive_eas_is_valid(&xive->eat[lisn])) {
913 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid LISN " TARGET_FMT_lx "\n",
914 lisn);
915 return H_P2;
919 * All sources are emulated under the main XIVE object and share
920 * the same characteristics.
922 args[0] = 0;
923 if (!xive_source_esb_has_2page(xsrc)) {
924 args[0] |= SPAPR_XIVE_SRC_TRIGGER;
926 if (xsrc->esb_flags & XIVE_SRC_STORE_EOI) {
927 args[0] |= SPAPR_XIVE_SRC_STORE_EOI;
931 * Force the use of the H_INT_ESB hcall in case of an LSI
932 * interrupt. This is necessary under KVM to re-trigger the
933 * interrupt if the level is still asserted
935 if (xive_source_irq_is_lsi(xsrc, lisn)) {
936 args[0] |= SPAPR_XIVE_SRC_H_INT_ESB | SPAPR_XIVE_SRC_LSI;
939 if (!(args[0] & SPAPR_XIVE_SRC_H_INT_ESB)) {
940 args[1] = xive->vc_base + xive_source_esb_mgmt(xsrc, lisn);
941 } else {
942 args[1] = -1;
945 if (xive_source_esb_has_2page(xsrc) &&
946 !(args[0] & SPAPR_XIVE_SRC_H_INT_ESB)) {
947 args[2] = xive->vc_base + xive_source_esb_page(xsrc, lisn);
948 } else {
949 args[2] = -1;
952 if (xive_source_esb_has_2page(xsrc)) {
953 args[3] = xsrc->esb_shift - 1;
954 } else {
955 args[3] = xsrc->esb_shift;
958 return H_SUCCESS;
962 * The H_INT_SET_SOURCE_CONFIG hcall() is used to assign a Logical
963 * Interrupt Source to a target. The Logical Interrupt Source is
964 * designated with the "lisn" parameter and the target is designated
965 * with the "target" and "priority" parameters. Upon return from the
966 * hcall(), no additional interrupts will be directed to the old EQ.
968 * Parameters:
969 * Input:
970 * - R4: "flags"
971 * Bits 0-61: Reserved
972 * Bit 62: set the "eisn" in the EAS
973 * Bit 63: masks the interrupt source in the hardware interrupt
974 * control structure. An interrupt masked by this mechanism will
975 * be dropped, but it's source state bits will still be
976 * set. There is no race-free way of unmasking and restoring the
977 * source. Thus this should only be used in interrupts that are
978 * also masked at the source, and only in cases where the
979 * interrupt is not meant to be used for a large amount of time
980 * because no valid target exists for it for example
981 * - R5: "lisn" is per "interrupts", "interrupt-map", or
982 * "ibm,xive-lisn-ranges" properties, or as returned by the
983 * ibm,query-interrupt-source-number RTAS call, or as returned by
984 * the H_ALLOCATE_VAS_WINDOW hcall
985 * - R6: "target" is per "ibm,ppc-interrupt-server#s" or
986 * "ibm,ppc-interrupt-gserver#s"
987 * - R7: "priority" is a valid priority not in
988 * "ibm,plat-res-int-priorities"
989 * - R8: "eisn" is the guest EISN associated with the "lisn"
991 * Output:
992 * - None
995 #define SPAPR_XIVE_SRC_SET_EISN PPC_BIT(62)
996 #define SPAPR_XIVE_SRC_MASK PPC_BIT(63)
998 static target_ulong h_int_set_source_config(PowerPCCPU *cpu,
999 SpaprMachineState *spapr,
1000 target_ulong opcode,
1001 target_ulong *args)
1003 SpaprXive *xive = spapr->xive;
1004 XiveEAS eas, new_eas;
1005 target_ulong flags = args[0];
1006 target_ulong lisn = args[1];
1007 target_ulong target = args[2];
1008 target_ulong priority = args[3];
1009 target_ulong eisn = args[4];
1010 uint8_t end_blk;
1011 uint32_t end_idx;
1013 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1014 return H_FUNCTION;
1017 if (flags & ~(SPAPR_XIVE_SRC_SET_EISN | SPAPR_XIVE_SRC_MASK)) {
1018 return H_PARAMETER;
1021 if (lisn >= xive->nr_irqs) {
1022 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Unknown LISN " TARGET_FMT_lx "\n",
1023 lisn);
1024 return H_P2;
1027 eas = xive->eat[lisn];
1028 if (!xive_eas_is_valid(&eas)) {
1029 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid LISN " TARGET_FMT_lx "\n",
1030 lisn);
1031 return H_P2;
1034 /* priority 0xff is used to reset the EAS */
1035 if (priority == 0xff) {
1036 new_eas.w = cpu_to_be64(EAS_VALID | EAS_MASKED);
1037 goto out;
1040 if (flags & SPAPR_XIVE_SRC_MASK) {
1041 new_eas.w = eas.w | cpu_to_be64(EAS_MASKED);
1042 } else {
1043 new_eas.w = eas.w & cpu_to_be64(~EAS_MASKED);
1046 if (spapr_xive_priority_is_reserved(priority)) {
1047 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: priority " TARGET_FMT_ld
1048 " is reserved\n", priority);
1049 return H_P4;
1053 * Validate that "target" is part of the list of threads allocated
1054 * to the partition. For that, find the END corresponding to the
1055 * target.
1057 if (spapr_xive_target_to_end(target, priority, &end_blk, &end_idx)) {
1058 return H_P3;
1061 new_eas.w = xive_set_field64(EAS_END_BLOCK, new_eas.w, end_blk);
1062 new_eas.w = xive_set_field64(EAS_END_INDEX, new_eas.w, end_idx);
1064 if (flags & SPAPR_XIVE_SRC_SET_EISN) {
1065 new_eas.w = xive_set_field64(EAS_END_DATA, new_eas.w, eisn);
1068 if (kvm_irqchip_in_kernel()) {
1069 Error *local_err = NULL;
1071 kvmppc_xive_set_source_config(xive, lisn, &new_eas, &local_err);
1072 if (local_err) {
1073 error_report_err(local_err);
1074 return H_HARDWARE;
1078 out:
1079 xive->eat[lisn] = new_eas;
1080 return H_SUCCESS;
1084 * The H_INT_GET_SOURCE_CONFIG hcall() is used to determine to which
1085 * target/priority pair is assigned to the specified Logical Interrupt
1086 * Source.
1088 * Parameters:
1089 * Input:
1090 * - R4: "flags"
1091 * Bits 0-63 Reserved
1092 * - R5: "lisn" is per "interrupts", "interrupt-map", or
1093 * "ibm,xive-lisn-ranges" properties, or as returned by the
1094 * ibm,query-interrupt-source-number RTAS call, or as
1095 * returned by the H_ALLOCATE_VAS_WINDOW hcall
1097 * Output:
1098 * - R4: Target to which the specified Logical Interrupt Source is
1099 * assigned
1100 * - R5: Priority to which the specified Logical Interrupt Source is
1101 * assigned
1102 * - R6: EISN for the specified Logical Interrupt Source (this will be
1103 * equivalent to the LISN if not changed by H_INT_SET_SOURCE_CONFIG)
1105 static target_ulong h_int_get_source_config(PowerPCCPU *cpu,
1106 SpaprMachineState *spapr,
1107 target_ulong opcode,
1108 target_ulong *args)
1110 SpaprXive *xive = spapr->xive;
1111 target_ulong flags = args[0];
1112 target_ulong lisn = args[1];
1113 XiveEAS eas;
1114 XiveEND *end;
1115 uint8_t nvt_blk;
1116 uint32_t end_idx, nvt_idx;
1118 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1119 return H_FUNCTION;
1122 if (flags) {
1123 return H_PARAMETER;
1126 if (lisn >= xive->nr_irqs) {
1127 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Unknown LISN " TARGET_FMT_lx "\n",
1128 lisn);
1129 return H_P2;
1132 eas = xive->eat[lisn];
1133 if (!xive_eas_is_valid(&eas)) {
1134 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid LISN " TARGET_FMT_lx "\n",
1135 lisn);
1136 return H_P2;
1139 /* EAS_END_BLOCK is unused on sPAPR */
1140 end_idx = xive_get_field64(EAS_END_INDEX, eas.w);
1142 assert(end_idx < xive->nr_ends);
1143 end = &xive->endt[end_idx];
1145 nvt_blk = xive_get_field32(END_W6_NVT_BLOCK, end->w6);
1146 nvt_idx = xive_get_field32(END_W6_NVT_INDEX, end->w6);
1147 args[0] = spapr_xive_nvt_to_target(nvt_blk, nvt_idx);
1149 if (xive_eas_is_masked(&eas)) {
1150 args[1] = 0xff;
1151 } else {
1152 args[1] = xive_get_field32(END_W7_F0_PRIORITY, end->w7);
1155 args[2] = xive_get_field64(EAS_END_DATA, eas.w);
1157 return H_SUCCESS;
1161 * The H_INT_GET_QUEUE_INFO hcall() is used to get the logical real
1162 * address of the notification management page associated with the
1163 * specified target and priority.
1165 * Parameters:
1166 * Input:
1167 * - R4: "flags"
1168 * Bits 0-63 Reserved
1169 * - R5: "target" is per "ibm,ppc-interrupt-server#s" or
1170 * "ibm,ppc-interrupt-gserver#s"
1171 * - R6: "priority" is a valid priority not in
1172 * "ibm,plat-res-int-priorities"
1174 * Output:
1175 * - R4: Logical real address of notification page
1176 * - R5: Power of 2 page size of the notification page
1178 static target_ulong h_int_get_queue_info(PowerPCCPU *cpu,
1179 SpaprMachineState *spapr,
1180 target_ulong opcode,
1181 target_ulong *args)
1183 SpaprXive *xive = spapr->xive;
1184 XiveENDSource *end_xsrc = &xive->end_source;
1185 target_ulong flags = args[0];
1186 target_ulong target = args[1];
1187 target_ulong priority = args[2];
1188 XiveEND *end;
1189 uint8_t end_blk;
1190 uint32_t end_idx;
1192 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1193 return H_FUNCTION;
1196 if (flags) {
1197 return H_PARAMETER;
1201 * H_STATE should be returned if a H_INT_RESET is in progress.
1202 * This is not needed when running the emulation under QEMU
1205 if (spapr_xive_priority_is_reserved(priority)) {
1206 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: priority " TARGET_FMT_ld
1207 " is reserved\n", priority);
1208 return H_P3;
1212 * Validate that "target" is part of the list of threads allocated
1213 * to the partition. For that, find the END corresponding to the
1214 * target.
1216 if (spapr_xive_target_to_end(target, priority, &end_blk, &end_idx)) {
1217 return H_P2;
1220 assert(end_idx < xive->nr_ends);
1221 end = &xive->endt[end_idx];
1223 args[0] = xive->end_base + (1ull << (end_xsrc->esb_shift + 1)) * end_idx;
1224 if (xive_end_is_enqueue(end)) {
1225 args[1] = xive_get_field32(END_W0_QSIZE, end->w0) + 12;
1226 } else {
1227 args[1] = 0;
1230 return H_SUCCESS;
1234 * The H_INT_SET_QUEUE_CONFIG hcall() is used to set or reset a EQ for
1235 * a given "target" and "priority". It is also used to set the
1236 * notification config associated with the EQ. An EQ size of 0 is
1237 * used to reset the EQ config for a given target and priority. If
1238 * resetting the EQ config, the END associated with the given "target"
1239 * and "priority" will be changed to disable queueing.
1241 * Upon return from the hcall(), no additional interrupts will be
1242 * directed to the old EQ (if one was set). The old EQ (if one was
1243 * set) should be investigated for interrupts that occurred prior to
1244 * or during the hcall().
1246 * Parameters:
1247 * Input:
1248 * - R4: "flags"
1249 * Bits 0-62: Reserved
1250 * Bit 63: Unconditional Notify (n) per the XIVE spec
1251 * - R5: "target" is per "ibm,ppc-interrupt-server#s" or
1252 * "ibm,ppc-interrupt-gserver#s"
1253 * - R6: "priority" is a valid priority not in
1254 * "ibm,plat-res-int-priorities"
1255 * - R7: "eventQueue": The logical real address of the start of the EQ
1256 * - R8: "eventQueueSize": The power of 2 EQ size per "ibm,xive-eq-sizes"
1258 * Output:
1259 * - None
1262 #define SPAPR_XIVE_END_ALWAYS_NOTIFY PPC_BIT(63)
1264 static target_ulong h_int_set_queue_config(PowerPCCPU *cpu,
1265 SpaprMachineState *spapr,
1266 target_ulong opcode,
1267 target_ulong *args)
1269 SpaprXive *xive = spapr->xive;
1270 target_ulong flags = args[0];
1271 target_ulong target = args[1];
1272 target_ulong priority = args[2];
1273 target_ulong qpage = args[3];
1274 target_ulong qsize = args[4];
1275 XiveEND end;
1276 uint8_t end_blk, nvt_blk;
1277 uint32_t end_idx, nvt_idx;
1279 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1280 return H_FUNCTION;
1283 if (flags & ~SPAPR_XIVE_END_ALWAYS_NOTIFY) {
1284 return H_PARAMETER;
1288 * H_STATE should be returned if a H_INT_RESET is in progress.
1289 * This is not needed when running the emulation under QEMU
1292 if (spapr_xive_priority_is_reserved(priority)) {
1293 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: priority " TARGET_FMT_ld
1294 " is reserved\n", priority);
1295 return H_P3;
1299 * Validate that "target" is part of the list of threads allocated
1300 * to the partition. For that, find the END corresponding to the
1301 * target.
1304 if (spapr_xive_target_to_end(target, priority, &end_blk, &end_idx)) {
1305 return H_P2;
1308 assert(end_idx < xive->nr_ends);
1309 memcpy(&end, &xive->endt[end_idx], sizeof(XiveEND));
1311 switch (qsize) {
1312 case 12:
1313 case 16:
1314 case 21:
1315 case 24:
1316 if (!QEMU_IS_ALIGNED(qpage, 1ul << qsize)) {
1317 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: EQ @0x%" HWADDR_PRIx
1318 " is not naturally aligned with %" HWADDR_PRIx "\n",
1319 qpage, (hwaddr)1 << qsize);
1320 return H_P4;
1322 end.w2 = cpu_to_be32((qpage >> 32) & 0x0fffffff);
1323 end.w3 = cpu_to_be32(qpage & 0xffffffff);
1324 end.w0 |= cpu_to_be32(END_W0_ENQUEUE);
1325 end.w0 = xive_set_field32(END_W0_QSIZE, end.w0, qsize - 12);
1326 break;
1327 case 0:
1328 /* reset queue and disable queueing */
1329 spapr_xive_end_reset(&end);
1330 goto out;
1332 default:
1333 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: invalid EQ size %"PRIx64"\n",
1334 qsize);
1335 return H_P5;
1338 if (qsize) {
1339 hwaddr plen = 1 << qsize;
1340 void *eq;
1343 * Validate the guest EQ. We should also check that the queue
1344 * has been zeroed by the OS.
1346 eq = address_space_map(CPU(cpu)->as, qpage, &plen, true,
1347 MEMTXATTRS_UNSPECIFIED);
1348 if (plen != 1 << qsize) {
1349 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: failed to map EQ @0x%"
1350 HWADDR_PRIx "\n", qpage);
1351 return H_P4;
1353 address_space_unmap(CPU(cpu)->as, eq, plen, true, plen);
1356 /* "target" should have been validated above */
1357 if (spapr_xive_target_to_nvt(target, &nvt_blk, &nvt_idx)) {
1358 g_assert_not_reached();
1362 * Ensure the priority and target are correctly set (they will not
1363 * be right after allocation)
1365 end.w6 = xive_set_field32(END_W6_NVT_BLOCK, 0ul, nvt_blk) |
1366 xive_set_field32(END_W6_NVT_INDEX, 0ul, nvt_idx);
1367 end.w7 = xive_set_field32(END_W7_F0_PRIORITY, 0ul, priority);
1369 if (flags & SPAPR_XIVE_END_ALWAYS_NOTIFY) {
1370 end.w0 |= cpu_to_be32(END_W0_UCOND_NOTIFY);
1371 } else {
1372 end.w0 &= cpu_to_be32((uint32_t)~END_W0_UCOND_NOTIFY);
1376 * The generation bit for the END starts at 1 and The END page
1377 * offset counter starts at 0.
1379 end.w1 = cpu_to_be32(END_W1_GENERATION) |
1380 xive_set_field32(END_W1_PAGE_OFF, 0ul, 0ul);
1381 end.w0 |= cpu_to_be32(END_W0_VALID);
1384 * TODO: issue syncs required to ensure all in-flight interrupts
1385 * are complete on the old END
1388 out:
1389 if (kvm_irqchip_in_kernel()) {
1390 Error *local_err = NULL;
1392 kvmppc_xive_set_queue_config(xive, end_blk, end_idx, &end, &local_err);
1393 if (local_err) {
1394 error_report_err(local_err);
1395 return H_HARDWARE;
1399 /* Update END */
1400 memcpy(&xive->endt[end_idx], &end, sizeof(XiveEND));
1401 return H_SUCCESS;
1405 * The H_INT_GET_QUEUE_CONFIG hcall() is used to get a EQ for a given
1406 * target and priority.
1408 * Parameters:
1409 * Input:
1410 * - R4: "flags"
1411 * Bits 0-62: Reserved
1412 * Bit 63: Debug: Return debug data
1413 * - R5: "target" is per "ibm,ppc-interrupt-server#s" or
1414 * "ibm,ppc-interrupt-gserver#s"
1415 * - R6: "priority" is a valid priority not in
1416 * "ibm,plat-res-int-priorities"
1418 * Output:
1419 * - R4: "flags":
1420 * Bits 0-61: Reserved
1421 * Bit 62: The value of Event Queue Generation Number (g) per
1422 * the XIVE spec if "Debug" = 1
1423 * Bit 63: The value of Unconditional Notify (n) per the XIVE spec
1424 * - R5: The logical real address of the start of the EQ
1425 * - R6: The power of 2 EQ size per "ibm,xive-eq-sizes"
1426 * - R7: The value of Event Queue Offset Counter per XIVE spec
1427 * if "Debug" = 1, else 0
1431 #define SPAPR_XIVE_END_DEBUG PPC_BIT(63)
1433 static target_ulong h_int_get_queue_config(PowerPCCPU *cpu,
1434 SpaprMachineState *spapr,
1435 target_ulong opcode,
1436 target_ulong *args)
1438 SpaprXive *xive = spapr->xive;
1439 target_ulong flags = args[0];
1440 target_ulong target = args[1];
1441 target_ulong priority = args[2];
1442 XiveEND *end;
1443 uint8_t end_blk;
1444 uint32_t end_idx;
1446 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1447 return H_FUNCTION;
1450 if (flags & ~SPAPR_XIVE_END_DEBUG) {
1451 return H_PARAMETER;
1455 * H_STATE should be returned if a H_INT_RESET is in progress.
1456 * This is not needed when running the emulation under QEMU
1459 if (spapr_xive_priority_is_reserved(priority)) {
1460 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: priority " TARGET_FMT_ld
1461 " is reserved\n", priority);
1462 return H_P3;
1466 * Validate that "target" is part of the list of threads allocated
1467 * to the partition. For that, find the END corresponding to the
1468 * target.
1470 if (spapr_xive_target_to_end(target, priority, &end_blk, &end_idx)) {
1471 return H_P2;
1474 assert(end_idx < xive->nr_ends);
1475 end = &xive->endt[end_idx];
1477 args[0] = 0;
1478 if (xive_end_is_notify(end)) {
1479 args[0] |= SPAPR_XIVE_END_ALWAYS_NOTIFY;
1482 if (xive_end_is_enqueue(end)) {
1483 args[1] = xive_end_qaddr(end);
1484 args[2] = xive_get_field32(END_W0_QSIZE, end->w0) + 12;
1485 } else {
1486 args[1] = 0;
1487 args[2] = 0;
1490 if (kvm_irqchip_in_kernel()) {
1491 Error *local_err = NULL;
1493 kvmppc_xive_get_queue_config(xive, end_blk, end_idx, end, &local_err);
1494 if (local_err) {
1495 error_report_err(local_err);
1496 return H_HARDWARE;
1500 /* TODO: do we need any locking on the END ? */
1501 if (flags & SPAPR_XIVE_END_DEBUG) {
1502 /* Load the event queue generation number into the return flags */
1503 args[0] |= (uint64_t)xive_get_field32(END_W1_GENERATION, end->w1) << 62;
1505 /* Load R7 with the event queue offset counter */
1506 args[3] = xive_get_field32(END_W1_PAGE_OFF, end->w1);
1507 } else {
1508 args[3] = 0;
1511 return H_SUCCESS;
1515 * The H_INT_SET_OS_REPORTING_LINE hcall() is used to set the
1516 * reporting cache line pair for the calling thread. The reporting
1517 * cache lines will contain the OS interrupt context when the OS
1518 * issues a CI store byte to @TIMA+0xC10 to acknowledge the OS
1519 * interrupt. The reporting cache lines can be reset by inputting -1
1520 * in "reportingLine". Issuing the CI store byte without reporting
1521 * cache lines registered will result in the data not being accessible
1522 * to the OS.
1524 * Parameters:
1525 * Input:
1526 * - R4: "flags"
1527 * Bits 0-63: Reserved
1528 * - R5: "reportingLine": The logical real address of the reporting cache
1529 * line pair
1531 * Output:
1532 * - None
1534 static target_ulong h_int_set_os_reporting_line(PowerPCCPU *cpu,
1535 SpaprMachineState *spapr,
1536 target_ulong opcode,
1537 target_ulong *args)
1539 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1540 return H_FUNCTION;
1544 * H_STATE should be returned if a H_INT_RESET is in progress.
1545 * This is not needed when running the emulation under QEMU
1548 /* TODO: H_INT_SET_OS_REPORTING_LINE */
1549 return H_FUNCTION;
1553 * The H_INT_GET_OS_REPORTING_LINE hcall() is used to get the logical
1554 * real address of the reporting cache line pair set for the input
1555 * "target". If no reporting cache line pair has been set, -1 is
1556 * returned.
1558 * Parameters:
1559 * Input:
1560 * - R4: "flags"
1561 * Bits 0-63: Reserved
1562 * - R5: "target" is per "ibm,ppc-interrupt-server#s" or
1563 * "ibm,ppc-interrupt-gserver#s"
1564 * - R6: "reportingLine": The logical real address of the reporting
1565 * cache line pair
1567 * Output:
1568 * - R4: The logical real address of the reporting line if set, else -1
1570 static target_ulong h_int_get_os_reporting_line(PowerPCCPU *cpu,
1571 SpaprMachineState *spapr,
1572 target_ulong opcode,
1573 target_ulong *args)
1575 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1576 return H_FUNCTION;
1580 * H_STATE should be returned if a H_INT_RESET is in progress.
1581 * This is not needed when running the emulation under QEMU
1584 /* TODO: H_INT_GET_OS_REPORTING_LINE */
1585 return H_FUNCTION;
1589 * The H_INT_ESB hcall() is used to issue a load or store to the ESB
1590 * page for the input "lisn". This hcall is only supported for LISNs
1591 * that have the ESB hcall flag set to 1 when returned from hcall()
1592 * H_INT_GET_SOURCE_INFO.
1594 * Parameters:
1595 * Input:
1596 * - R4: "flags"
1597 * Bits 0-62: Reserved
1598 * bit 63: Store: Store=1, store operation, else load operation
1599 * - R5: "lisn" is per "interrupts", "interrupt-map", or
1600 * "ibm,xive-lisn-ranges" properties, or as returned by the
1601 * ibm,query-interrupt-source-number RTAS call, or as
1602 * returned by the H_ALLOCATE_VAS_WINDOW hcall
1603 * - R6: "esbOffset" is the offset into the ESB page for the load or
1604 * store operation
1605 * - R7: "storeData" is the data to write for a store operation
1607 * Output:
1608 * - R4: The value of the load if load operation, else -1
1611 #define SPAPR_XIVE_ESB_STORE PPC_BIT(63)
1613 static target_ulong h_int_esb(PowerPCCPU *cpu,
1614 SpaprMachineState *spapr,
1615 target_ulong opcode,
1616 target_ulong *args)
1618 SpaprXive *xive = spapr->xive;
1619 XiveEAS eas;
1620 target_ulong flags = args[0];
1621 target_ulong lisn = args[1];
1622 target_ulong offset = args[2];
1623 target_ulong data = args[3];
1624 hwaddr mmio_addr;
1625 XiveSource *xsrc = &xive->source;
1627 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1628 return H_FUNCTION;
1631 if (flags & ~SPAPR_XIVE_ESB_STORE) {
1632 return H_PARAMETER;
1635 if (lisn >= xive->nr_irqs) {
1636 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Unknown LISN " TARGET_FMT_lx "\n",
1637 lisn);
1638 return H_P2;
1641 eas = xive->eat[lisn];
1642 if (!xive_eas_is_valid(&eas)) {
1643 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid LISN " TARGET_FMT_lx "\n",
1644 lisn);
1645 return H_P2;
1648 if (offset > (1ull << xsrc->esb_shift)) {
1649 return H_P3;
1652 if (kvm_irqchip_in_kernel()) {
1653 args[0] = kvmppc_xive_esb_rw(xsrc, lisn, offset, data,
1654 flags & SPAPR_XIVE_ESB_STORE);
1655 } else {
1656 mmio_addr = xive->vc_base + xive_source_esb_mgmt(xsrc, lisn) + offset;
1658 if (dma_memory_rw(&address_space_memory, mmio_addr, &data, 8,
1659 (flags & SPAPR_XIVE_ESB_STORE))) {
1660 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: failed to access ESB @0x%"
1661 HWADDR_PRIx "\n", mmio_addr);
1662 return H_HARDWARE;
1664 args[0] = (flags & SPAPR_XIVE_ESB_STORE) ? -1 : data;
1666 return H_SUCCESS;
1670 * The H_INT_SYNC hcall() is used to issue hardware syncs that will
1671 * ensure any in flight events for the input lisn are in the event
1672 * queue.
1674 * Parameters:
1675 * Input:
1676 * - R4: "flags"
1677 * Bits 0-63: Reserved
1678 * - R5: "lisn" is per "interrupts", "interrupt-map", or
1679 * "ibm,xive-lisn-ranges" properties, or as returned by the
1680 * ibm,query-interrupt-source-number RTAS call, or as
1681 * returned by the H_ALLOCATE_VAS_WINDOW hcall
1683 * Output:
1684 * - None
1686 static target_ulong h_int_sync(PowerPCCPU *cpu,
1687 SpaprMachineState *spapr,
1688 target_ulong opcode,
1689 target_ulong *args)
1691 SpaprXive *xive = spapr->xive;
1692 XiveEAS eas;
1693 target_ulong flags = args[0];
1694 target_ulong lisn = args[1];
1696 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1697 return H_FUNCTION;
1700 if (flags) {
1701 return H_PARAMETER;
1704 if (lisn >= xive->nr_irqs) {
1705 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Unknown LISN " TARGET_FMT_lx "\n",
1706 lisn);
1707 return H_P2;
1710 eas = xive->eat[lisn];
1711 if (!xive_eas_is_valid(&eas)) {
1712 qemu_log_mask(LOG_GUEST_ERROR, "XIVE: Invalid LISN " TARGET_FMT_lx "\n",
1713 lisn);
1714 return H_P2;
1718 * H_STATE should be returned if a H_INT_RESET is in progress.
1719 * This is not needed when running the emulation under QEMU
1723 * This is not real hardware. Nothing to be done unless when
1724 * under KVM
1727 if (kvm_irqchip_in_kernel()) {
1728 Error *local_err = NULL;
1730 kvmppc_xive_sync_source(xive, lisn, &local_err);
1731 if (local_err) {
1732 error_report_err(local_err);
1733 return H_HARDWARE;
1736 return H_SUCCESS;
1740 * The H_INT_RESET hcall() is used to reset all of the partition's
1741 * interrupt exploitation structures to their initial state. This
1742 * means losing all previously set interrupt state set via
1743 * H_INT_SET_SOURCE_CONFIG and H_INT_SET_QUEUE_CONFIG.
1745 * Parameters:
1746 * Input:
1747 * - R4: "flags"
1748 * Bits 0-63: Reserved
1750 * Output:
1751 * - None
1753 static target_ulong h_int_reset(PowerPCCPU *cpu,
1754 SpaprMachineState *spapr,
1755 target_ulong opcode,
1756 target_ulong *args)
1758 SpaprXive *xive = spapr->xive;
1759 target_ulong flags = args[0];
1761 if (!spapr_ovec_test(spapr->ov5_cas, OV5_XIVE_EXPLOIT)) {
1762 return H_FUNCTION;
1765 if (flags) {
1766 return H_PARAMETER;
1769 device_legacy_reset(DEVICE(xive));
1771 if (kvm_irqchip_in_kernel()) {
1772 Error *local_err = NULL;
1774 kvmppc_xive_reset(xive, &local_err);
1775 if (local_err) {
1776 error_report_err(local_err);
1777 return H_HARDWARE;
1780 return H_SUCCESS;
1783 void spapr_xive_hcall_init(SpaprMachineState *spapr)
1785 spapr_register_hypercall(H_INT_GET_SOURCE_INFO, h_int_get_source_info);
1786 spapr_register_hypercall(H_INT_SET_SOURCE_CONFIG, h_int_set_source_config);
1787 spapr_register_hypercall(H_INT_GET_SOURCE_CONFIG, h_int_get_source_config);
1788 spapr_register_hypercall(H_INT_GET_QUEUE_INFO, h_int_get_queue_info);
1789 spapr_register_hypercall(H_INT_SET_QUEUE_CONFIG, h_int_set_queue_config);
1790 spapr_register_hypercall(H_INT_GET_QUEUE_CONFIG, h_int_get_queue_config);
1791 spapr_register_hypercall(H_INT_SET_OS_REPORTING_LINE,
1792 h_int_set_os_reporting_line);
1793 spapr_register_hypercall(H_INT_GET_OS_REPORTING_LINE,
1794 h_int_get_os_reporting_line);
1795 spapr_register_hypercall(H_INT_ESB, h_int_esb);
1796 spapr_register_hypercall(H_INT_SYNC, h_int_sync);
1797 spapr_register_hypercall(H_INT_RESET, h_int_reset);