ppc/xive: Rework setup of XiveSource::esb_mmio
[qemu/ar7.git] / hw / intc / spapr_xive_kvm.c
blob6130882be678e21f66a6255809161b25f5e2b366
1 /*
2 * QEMU PowerPC sPAPR XIVE interrupt controller model
4 * Copyright (c) 2017-2019, 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 "target/ppc/cpu.h"
15 #include "sysemu/cpus.h"
16 #include "sysemu/kvm.h"
17 #include "sysemu/runstate.h"
18 #include "hw/ppc/spapr.h"
19 #include "hw/ppc/spapr_cpu_core.h"
20 #include "hw/ppc/spapr_xive.h"
21 #include "hw/ppc/xive.h"
22 #include "kvm_ppc.h"
24 #include <sys/ioctl.h>
27 * Helpers for CPU hotplug
29 * TODO: make a common KVMEnabledCPU layer for XICS and XIVE
31 typedef struct KVMEnabledCPU {
32 unsigned long vcpu_id;
33 QLIST_ENTRY(KVMEnabledCPU) node;
34 } KVMEnabledCPU;
36 static QLIST_HEAD(, KVMEnabledCPU)
37 kvm_enabled_cpus = QLIST_HEAD_INITIALIZER(&kvm_enabled_cpus);
39 static bool kvm_cpu_is_enabled(CPUState *cs)
41 KVMEnabledCPU *enabled_cpu;
42 unsigned long vcpu_id = kvm_arch_vcpu_id(cs);
44 QLIST_FOREACH(enabled_cpu, &kvm_enabled_cpus, node) {
45 if (enabled_cpu->vcpu_id == vcpu_id) {
46 return true;
49 return false;
52 static void kvm_cpu_enable(CPUState *cs)
54 KVMEnabledCPU *enabled_cpu;
55 unsigned long vcpu_id = kvm_arch_vcpu_id(cs);
57 enabled_cpu = g_malloc(sizeof(*enabled_cpu));
58 enabled_cpu->vcpu_id = vcpu_id;
59 QLIST_INSERT_HEAD(&kvm_enabled_cpus, enabled_cpu, node);
62 static void kvm_cpu_disable_all(void)
64 KVMEnabledCPU *enabled_cpu, *next;
66 QLIST_FOREACH_SAFE(enabled_cpu, &kvm_enabled_cpus, node, next) {
67 QLIST_REMOVE(enabled_cpu, node);
68 g_free(enabled_cpu);
73 * XIVE Thread Interrupt Management context (KVM)
76 void kvmppc_xive_cpu_set_state(XiveTCTX *tctx, Error **errp)
78 SpaprXive *xive = SPAPR_XIVE(tctx->xptr);
79 uint64_t state[2];
80 int ret;
82 /* The KVM XIVE device is not in use yet */
83 if (xive->fd == -1) {
84 return;
87 /* word0 and word1 of the OS ring. */
88 state[0] = *((uint64_t *) &tctx->regs[TM_QW1_OS]);
90 ret = kvm_set_one_reg(tctx->cs, KVM_REG_PPC_VP_STATE, state);
91 if (ret != 0) {
92 error_setg_errno(errp, errno,
93 "XIVE: could not restore KVM state of CPU %ld",
94 kvm_arch_vcpu_id(tctx->cs));
98 void kvmppc_xive_cpu_get_state(XiveTCTX *tctx, Error **errp)
100 SpaprXive *xive = SPAPR_XIVE(tctx->xptr);
101 uint64_t state[2] = { 0 };
102 int ret;
104 /* The KVM XIVE device is not in use */
105 if (xive->fd == -1) {
106 return;
109 ret = kvm_get_one_reg(tctx->cs, KVM_REG_PPC_VP_STATE, state);
110 if (ret != 0) {
111 error_setg_errno(errp, errno,
112 "XIVE: could not capture KVM state of CPU %ld",
113 kvm_arch_vcpu_id(tctx->cs));
114 return;
117 /* word0 and word1 of the OS ring. */
118 *((uint64_t *) &tctx->regs[TM_QW1_OS]) = state[0];
121 typedef struct {
122 XiveTCTX *tctx;
123 Error *err;
124 } XiveCpuGetState;
126 static void kvmppc_xive_cpu_do_synchronize_state(CPUState *cpu,
127 run_on_cpu_data arg)
129 XiveCpuGetState *s = arg.host_ptr;
131 kvmppc_xive_cpu_get_state(s->tctx, &s->err);
134 void kvmppc_xive_cpu_synchronize_state(XiveTCTX *tctx, Error **errp)
136 XiveCpuGetState s = {
137 .tctx = tctx,
138 .err = NULL,
142 * Kick the vCPU to make sure they are available for the KVM ioctl.
144 run_on_cpu(tctx->cs, kvmppc_xive_cpu_do_synchronize_state,
145 RUN_ON_CPU_HOST_PTR(&s));
147 if (s.err) {
148 error_propagate(errp, s.err);
149 return;
153 void kvmppc_xive_cpu_connect(XiveTCTX *tctx, Error **errp)
155 SpaprXive *xive = SPAPR_XIVE(tctx->xptr);
156 unsigned long vcpu_id;
157 int ret;
159 /* The KVM XIVE device is not in use */
160 if (xive->fd == -1) {
161 return;
164 /* Check if CPU was hot unplugged and replugged. */
165 if (kvm_cpu_is_enabled(tctx->cs)) {
166 return;
169 vcpu_id = kvm_arch_vcpu_id(tctx->cs);
171 ret = kvm_vcpu_enable_cap(tctx->cs, KVM_CAP_PPC_IRQ_XIVE, 0, xive->fd,
172 vcpu_id, 0);
173 if (ret < 0) {
174 Error *local_err = NULL;
176 error_setg(&local_err,
177 "XIVE: unable to connect CPU%ld to KVM device: %s",
178 vcpu_id, strerror(errno));
179 if (errno == ENOSPC) {
180 error_append_hint(&local_err, "Try -smp maxcpus=N with N < %u\n",
181 MACHINE(qdev_get_machine())->smp.max_cpus);
183 error_propagate(errp, local_err);
184 return;
187 kvm_cpu_enable(tctx->cs);
191 * XIVE Interrupt Source (KVM)
194 void kvmppc_xive_set_source_config(SpaprXive *xive, uint32_t lisn, XiveEAS *eas,
195 Error **errp)
197 uint32_t end_idx;
198 uint32_t end_blk;
199 uint8_t priority;
200 uint32_t server;
201 bool masked;
202 uint32_t eisn;
203 uint64_t kvm_src;
204 Error *local_err = NULL;
206 assert(xive_eas_is_valid(eas));
208 end_idx = xive_get_field64(EAS_END_INDEX, eas->w);
209 end_blk = xive_get_field64(EAS_END_BLOCK, eas->w);
210 eisn = xive_get_field64(EAS_END_DATA, eas->w);
211 masked = xive_eas_is_masked(eas);
213 spapr_xive_end_to_target(end_blk, end_idx, &server, &priority);
215 kvm_src = priority << KVM_XIVE_SOURCE_PRIORITY_SHIFT &
216 KVM_XIVE_SOURCE_PRIORITY_MASK;
217 kvm_src |= server << KVM_XIVE_SOURCE_SERVER_SHIFT &
218 KVM_XIVE_SOURCE_SERVER_MASK;
219 kvm_src |= ((uint64_t) masked << KVM_XIVE_SOURCE_MASKED_SHIFT) &
220 KVM_XIVE_SOURCE_MASKED_MASK;
221 kvm_src |= ((uint64_t)eisn << KVM_XIVE_SOURCE_EISN_SHIFT) &
222 KVM_XIVE_SOURCE_EISN_MASK;
224 kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_SOURCE_CONFIG, lisn,
225 &kvm_src, true, &local_err);
226 if (local_err) {
227 error_propagate(errp, local_err);
228 return;
232 void kvmppc_xive_sync_source(SpaprXive *xive, uint32_t lisn, Error **errp)
234 kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_SOURCE_SYNC, lisn,
235 NULL, true, errp);
239 * At reset, the interrupt sources are simply created and MASKED. We
240 * only need to inform the KVM XIVE device about their type: LSI or
241 * MSI.
243 int kvmppc_xive_source_reset_one(XiveSource *xsrc, int srcno, Error **errp)
245 SpaprXive *xive = SPAPR_XIVE(xsrc->xive);
246 uint64_t state = 0;
248 /* The KVM XIVE device is not in use */
249 if (xive->fd == -1) {
250 return -ENODEV;
253 if (xive_source_irq_is_lsi(xsrc, srcno)) {
254 state |= KVM_XIVE_LEVEL_SENSITIVE;
255 if (xsrc->status[srcno] & XIVE_STATUS_ASSERTED) {
256 state |= KVM_XIVE_LEVEL_ASSERTED;
260 return kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_SOURCE, srcno, &state,
261 true, errp);
264 static void kvmppc_xive_source_reset(XiveSource *xsrc, Error **errp)
266 SpaprXive *xive = SPAPR_XIVE(xsrc->xive);
267 int i;
269 for (i = 0; i < xsrc->nr_irqs; i++) {
270 Error *local_err = NULL;
272 if (!xive_eas_is_valid(&xive->eat[i])) {
273 continue;
276 kvmppc_xive_source_reset_one(xsrc, i, &local_err);
277 if (local_err) {
278 error_propagate(errp, local_err);
279 return;
285 * This is used to perform the magic loads on the ESB pages, described
286 * in xive.h.
288 * Memory barriers should not be needed for loads (no store for now).
290 static uint64_t xive_esb_rw(XiveSource *xsrc, int srcno, uint32_t offset,
291 uint64_t data, bool write)
293 uint64_t *addr = xsrc->esb_mmap + xive_source_esb_mgmt(xsrc, srcno) +
294 offset;
296 if (write) {
297 *addr = cpu_to_be64(data);
298 return -1;
299 } else {
300 /* Prevent the compiler from optimizing away the load */
301 volatile uint64_t value = be64_to_cpu(*addr);
302 return value;
306 static uint8_t xive_esb_read(XiveSource *xsrc, int srcno, uint32_t offset)
308 return xive_esb_rw(xsrc, srcno, offset, 0, 0) & 0x3;
311 static void xive_esb_trigger(XiveSource *xsrc, int srcno)
313 uint64_t *addr = xsrc->esb_mmap + xive_source_esb_page(xsrc, srcno);
315 *addr = 0x0;
318 uint64_t kvmppc_xive_esb_rw(XiveSource *xsrc, int srcno, uint32_t offset,
319 uint64_t data, bool write)
321 if (write) {
322 return xive_esb_rw(xsrc, srcno, offset, data, 1);
326 * Special Load EOI handling for LSI sources. Q bit is never set
327 * and the interrupt should be re-triggered if the level is still
328 * asserted.
330 if (xive_source_irq_is_lsi(xsrc, srcno) &&
331 offset == XIVE_ESB_LOAD_EOI) {
332 xive_esb_read(xsrc, srcno, XIVE_ESB_SET_PQ_00);
333 if (xsrc->status[srcno] & XIVE_STATUS_ASSERTED) {
334 xive_esb_trigger(xsrc, srcno);
336 return 0;
337 } else {
338 return xive_esb_rw(xsrc, srcno, offset, 0, 0);
342 static void kvmppc_xive_source_get_state(XiveSource *xsrc)
344 SpaprXive *xive = SPAPR_XIVE(xsrc->xive);
345 int i;
347 for (i = 0; i < xsrc->nr_irqs; i++) {
348 uint8_t pq;
350 if (!xive_eas_is_valid(&xive->eat[i])) {
351 continue;
354 /* Perform a load without side effect to retrieve the PQ bits */
355 pq = xive_esb_read(xsrc, i, XIVE_ESB_GET);
357 /* and save PQ locally */
358 xive_source_esb_set(xsrc, i, pq);
362 void kvmppc_xive_source_set_irq(void *opaque, int srcno, int val)
364 XiveSource *xsrc = opaque;
366 if (!xive_source_irq_is_lsi(xsrc, srcno)) {
367 if (!val) {
368 return;
370 } else {
371 if (val) {
372 xsrc->status[srcno] |= XIVE_STATUS_ASSERTED;
373 } else {
374 xsrc->status[srcno] &= ~XIVE_STATUS_ASSERTED;
378 xive_esb_trigger(xsrc, srcno);
382 * sPAPR XIVE interrupt controller (KVM)
384 void kvmppc_xive_get_queue_config(SpaprXive *xive, uint8_t end_blk,
385 uint32_t end_idx, XiveEND *end,
386 Error **errp)
388 struct kvm_ppc_xive_eq kvm_eq = { 0 };
389 uint64_t kvm_eq_idx;
390 uint8_t priority;
391 uint32_t server;
392 Error *local_err = NULL;
394 assert(xive_end_is_valid(end));
396 /* Encode the tuple (server, prio) as a KVM EQ index */
397 spapr_xive_end_to_target(end_blk, end_idx, &server, &priority);
399 kvm_eq_idx = priority << KVM_XIVE_EQ_PRIORITY_SHIFT &
400 KVM_XIVE_EQ_PRIORITY_MASK;
401 kvm_eq_idx |= server << KVM_XIVE_EQ_SERVER_SHIFT &
402 KVM_XIVE_EQ_SERVER_MASK;
404 kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_EQ_CONFIG, kvm_eq_idx,
405 &kvm_eq, false, &local_err);
406 if (local_err) {
407 error_propagate(errp, local_err);
408 return;
412 * The EQ index and toggle bit are updated by HW. These are the
413 * only fields from KVM we want to update QEMU with. The other END
414 * fields should already be in the QEMU END table.
416 end->w1 = xive_set_field32(END_W1_GENERATION, 0ul, kvm_eq.qtoggle) |
417 xive_set_field32(END_W1_PAGE_OFF, 0ul, kvm_eq.qindex);
420 void kvmppc_xive_set_queue_config(SpaprXive *xive, uint8_t end_blk,
421 uint32_t end_idx, XiveEND *end,
422 Error **errp)
424 struct kvm_ppc_xive_eq kvm_eq = { 0 };
425 uint64_t kvm_eq_idx;
426 uint8_t priority;
427 uint32_t server;
428 Error *local_err = NULL;
431 * Build the KVM state from the local END structure.
434 kvm_eq.flags = 0;
435 if (xive_get_field32(END_W0_UCOND_NOTIFY, end->w0)) {
436 kvm_eq.flags |= KVM_XIVE_EQ_ALWAYS_NOTIFY;
440 * If the hcall is disabling the EQ, set the size and page address
441 * to zero. When migrating, only valid ENDs are taken into
442 * account.
444 if (xive_end_is_valid(end)) {
445 kvm_eq.qshift = xive_get_field32(END_W0_QSIZE, end->w0) + 12;
446 kvm_eq.qaddr = xive_end_qaddr(end);
448 * The EQ toggle bit and index should only be relevant when
449 * restoring the EQ state
451 kvm_eq.qtoggle = xive_get_field32(END_W1_GENERATION, end->w1);
452 kvm_eq.qindex = xive_get_field32(END_W1_PAGE_OFF, end->w1);
453 } else {
454 kvm_eq.qshift = 0;
455 kvm_eq.qaddr = 0;
458 /* Encode the tuple (server, prio) as a KVM EQ index */
459 spapr_xive_end_to_target(end_blk, end_idx, &server, &priority);
461 kvm_eq_idx = priority << KVM_XIVE_EQ_PRIORITY_SHIFT &
462 KVM_XIVE_EQ_PRIORITY_MASK;
463 kvm_eq_idx |= server << KVM_XIVE_EQ_SERVER_SHIFT &
464 KVM_XIVE_EQ_SERVER_MASK;
466 kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_EQ_CONFIG, kvm_eq_idx,
467 &kvm_eq, true, &local_err);
468 if (local_err) {
469 error_propagate(errp, local_err);
470 return;
474 void kvmppc_xive_reset(SpaprXive *xive, Error **errp)
476 kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_CTRL, KVM_DEV_XIVE_RESET,
477 NULL, true, errp);
480 static void kvmppc_xive_get_queues(SpaprXive *xive, Error **errp)
482 Error *local_err = NULL;
483 int i;
485 for (i = 0; i < xive->nr_ends; i++) {
486 if (!xive_end_is_valid(&xive->endt[i])) {
487 continue;
490 kvmppc_xive_get_queue_config(xive, SPAPR_XIVE_BLOCK_ID, i,
491 &xive->endt[i], &local_err);
492 if (local_err) {
493 error_propagate(errp, local_err);
494 return;
500 * The primary goal of the XIVE VM change handler is to mark the EQ
501 * pages dirty when all XIVE event notifications have stopped.
503 * Whenever the VM is stopped, the VM change handler sets the source
504 * PQs to PENDING to stop the flow of events and to possibly catch a
505 * triggered interrupt occuring while the VM is stopped. The previous
506 * state is saved in anticipation of a migration. The XIVE controller
507 * is then synced through KVM to flush any in-flight event
508 * notification and stabilize the EQs.
510 * At this stage, we can mark the EQ page dirty and let a migration
511 * sequence transfer the EQ pages to the destination, which is done
512 * just after the stop state.
514 * The previous configuration of the sources is restored when the VM
515 * runs again. If an interrupt was queued while the VM was stopped,
516 * simply generate a trigger.
518 static void kvmppc_xive_change_state_handler(void *opaque, int running,
519 RunState state)
521 SpaprXive *xive = opaque;
522 XiveSource *xsrc = &xive->source;
523 Error *local_err = NULL;
524 int i;
527 * Restore the sources to their initial state. This is called when
528 * the VM resumes after a stop or a migration.
530 if (running) {
531 for (i = 0; i < xsrc->nr_irqs; i++) {
532 uint8_t pq;
533 uint8_t old_pq;
535 if (!xive_eas_is_valid(&xive->eat[i])) {
536 continue;
539 pq = xive_source_esb_get(xsrc, i);
540 old_pq = xive_esb_read(xsrc, i, XIVE_ESB_SET_PQ_00 + (pq << 8));
543 * An interrupt was queued while the VM was stopped,
544 * generate a trigger.
546 if (pq == XIVE_ESB_RESET && old_pq == XIVE_ESB_QUEUED) {
547 xive_esb_trigger(xsrc, i);
551 return;
555 * Mask the sources, to stop the flow of event notifications, and
556 * save the PQs locally in the XiveSource object. The XiveSource
557 * state will be collected later on by its vmstate handler if a
558 * migration is in progress.
560 for (i = 0; i < xsrc->nr_irqs; i++) {
561 uint8_t pq;
563 if (!xive_eas_is_valid(&xive->eat[i])) {
564 continue;
567 pq = xive_esb_read(xsrc, i, XIVE_ESB_GET);
570 * PQ is set to PENDING to possibly catch a triggered
571 * interrupt occuring while the VM is stopped (hotplug event
572 * for instance) .
574 if (pq != XIVE_ESB_OFF) {
575 pq = xive_esb_read(xsrc, i, XIVE_ESB_SET_PQ_10);
577 xive_source_esb_set(xsrc, i, pq);
581 * Sync the XIVE controller in KVM, to flush in-flight event
582 * notification that should be enqueued in the EQs and mark the
583 * XIVE EQ pages dirty to collect all updates.
585 kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_CTRL,
586 KVM_DEV_XIVE_EQ_SYNC, NULL, true, &local_err);
587 if (local_err) {
588 error_report_err(local_err);
589 return;
593 void kvmppc_xive_synchronize_state(SpaprXive *xive, Error **errp)
595 /* The KVM XIVE device is not in use */
596 if (xive->fd == -1) {
597 return;
601 * When the VM is stopped, the sources are masked and the previous
602 * state is saved in anticipation of a migration. We should not
603 * synchronize the source state in that case else we will override
604 * the saved state.
606 if (runstate_is_running()) {
607 kvmppc_xive_source_get_state(&xive->source);
610 /* EAT: there is no extra state to query from KVM */
612 /* ENDT */
613 kvmppc_xive_get_queues(xive, errp);
617 * The SpaprXive 'pre_save' method is called by the vmstate handler of
618 * the SpaprXive model, after the XIVE controller is synced in the VM
619 * change handler.
621 int kvmppc_xive_pre_save(SpaprXive *xive)
623 Error *local_err = NULL;
625 /* The KVM XIVE device is not in use */
626 if (xive->fd == -1) {
627 return 0;
630 /* EAT: there is no extra state to query from KVM */
632 /* ENDT */
633 kvmppc_xive_get_queues(xive, &local_err);
634 if (local_err) {
635 error_report_err(local_err);
636 return -1;
639 return 0;
643 * The SpaprXive 'post_load' method is not called by a vmstate
644 * handler. It is called at the sPAPR machine level at the end of the
645 * migration sequence by the sPAPR IRQ backend 'post_load' method,
646 * when all XIVE states have been transferred and loaded.
648 int kvmppc_xive_post_load(SpaprXive *xive, int version_id)
650 Error *local_err = NULL;
651 CPUState *cs;
652 int i;
654 /* The KVM XIVE device should be in use */
655 assert(xive->fd != -1);
657 /* Restore the ENDT first. The targetting depends on it. */
658 for (i = 0; i < xive->nr_ends; i++) {
659 if (!xive_end_is_valid(&xive->endt[i])) {
660 continue;
663 kvmppc_xive_set_queue_config(xive, SPAPR_XIVE_BLOCK_ID, i,
664 &xive->endt[i], &local_err);
665 if (local_err) {
666 error_report_err(local_err);
667 return -1;
671 /* Restore the EAT */
672 for (i = 0; i < xive->nr_irqs; i++) {
673 if (!xive_eas_is_valid(&xive->eat[i])) {
674 continue;
678 * We can only restore the source config if the source has been
679 * previously set in KVM. Since we don't do that for all interrupts
680 * at reset time anymore, let's do it now.
682 kvmppc_xive_source_reset_one(&xive->source, i, &local_err);
683 if (local_err) {
684 error_report_err(local_err);
685 return -1;
688 kvmppc_xive_set_source_config(xive, i, &xive->eat[i], &local_err);
689 if (local_err) {
690 error_report_err(local_err);
691 return -1;
696 * Restore the thread interrupt contexts of initial CPUs.
698 * The context of hotplugged CPUs is restored later, by the
699 * 'post_load' handler of the XiveTCTX model because they are not
700 * available at the time the SpaprXive 'post_load' method is
701 * called. We can not restore the context of all CPUs in the
702 * 'post_load' handler of XiveTCTX because the machine is not
703 * necessarily connected to the KVM device at that time.
705 CPU_FOREACH(cs) {
706 PowerPCCPU *cpu = POWERPC_CPU(cs);
708 kvmppc_xive_cpu_set_state(spapr_cpu_state(cpu)->tctx, &local_err);
709 if (local_err) {
710 error_report_err(local_err);
711 return -1;
715 /* The source states will be restored when the machine starts running */
716 return 0;
719 static void *kvmppc_xive_mmap(SpaprXive *xive, int pgoff, size_t len,
720 Error **errp)
722 void *addr;
723 uint32_t page_shift = 16; /* TODO: fix page_shift */
725 addr = mmap(NULL, len, PROT_WRITE | PROT_READ, MAP_SHARED, xive->fd,
726 pgoff << page_shift);
727 if (addr == MAP_FAILED) {
728 error_setg_errno(errp, errno, "XIVE: unable to set memory mapping");
729 return NULL;
732 return addr;
736 * All the XIVE memory regions are now backed by mappings from the KVM
737 * XIVE device.
739 int kvmppc_xive_connect(SpaprInterruptController *intc, uint32_t nr_servers,
740 Error **errp)
742 SpaprXive *xive = SPAPR_XIVE(intc);
743 XiveSource *xsrc = &xive->source;
744 Error *local_err = NULL;
745 size_t esb_len = xive_source_esb_len(xsrc);
746 size_t tima_len = 4ull << TM_SHIFT;
747 CPUState *cs;
748 int fd;
751 * The KVM XIVE device already in use. This is the case when
752 * rebooting under the XIVE-only interrupt mode.
754 if (xive->fd != -1) {
755 return 0;
758 if (!kvmppc_has_cap_xive()) {
759 error_setg(errp, "IRQ_XIVE capability must be present for KVM");
760 return -1;
763 /* First, create the KVM XIVE device */
764 fd = kvm_create_device(kvm_state, KVM_DEV_TYPE_XIVE, false);
765 if (fd < 0) {
766 error_setg_errno(errp, -fd, "XIVE: error creating KVM device");
767 return -1;
769 xive->fd = fd;
771 /* Tell KVM about the # of VCPUs we may have */
772 if (kvm_device_check_attr(xive->fd, KVM_DEV_XIVE_GRP_CTRL,
773 KVM_DEV_XIVE_NR_SERVERS)) {
774 if (kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_CTRL,
775 KVM_DEV_XIVE_NR_SERVERS, &nr_servers, true,
776 &local_err)) {
777 goto fail;
782 * 1. Source ESB pages - KVM mapping
784 xsrc->esb_mmap = kvmppc_xive_mmap(xive, KVM_XIVE_ESB_PAGE_OFFSET, esb_len,
785 &local_err);
786 if (local_err) {
787 goto fail;
790 memory_region_init_ram_device_ptr(&xsrc->esb_mmio_kvm, OBJECT(xsrc),
791 "xive.esb-kvm", esb_len, xsrc->esb_mmap);
792 memory_region_add_subregion_overlap(&xsrc->esb_mmio, 0,
793 &xsrc->esb_mmio_kvm, 1);
796 * 2. END ESB pages (No KVM support yet)
800 * 3. TIMA pages - KVM mapping
802 xive->tm_mmap = kvmppc_xive_mmap(xive, KVM_XIVE_TIMA_PAGE_OFFSET, tima_len,
803 &local_err);
804 if (local_err) {
805 goto fail;
807 memory_region_init_ram_device_ptr(&xive->tm_mmio_kvm, OBJECT(xive),
808 "xive.tima", tima_len, xive->tm_mmap);
809 memory_region_add_subregion_overlap(&xive->tm_mmio, 0,
810 &xive->tm_mmio_kvm, 1);
812 xive->change = qemu_add_vm_change_state_handler(
813 kvmppc_xive_change_state_handler, xive);
815 /* Connect the presenters to the initial VCPUs of the machine */
816 CPU_FOREACH(cs) {
817 PowerPCCPU *cpu = POWERPC_CPU(cs);
819 kvmppc_xive_cpu_connect(spapr_cpu_state(cpu)->tctx, &local_err);
820 if (local_err) {
821 goto fail;
825 /* Update the KVM sources */
826 kvmppc_xive_source_reset(xsrc, &local_err);
827 if (local_err) {
828 goto fail;
831 kvm_kernel_irqchip = true;
832 kvm_msi_via_irqfd_allowed = true;
833 kvm_gsi_direct_mapping = true;
834 return 0;
836 fail:
837 error_propagate(errp, local_err);
838 kvmppc_xive_disconnect(intc);
839 return -1;
842 void kvmppc_xive_disconnect(SpaprInterruptController *intc)
844 SpaprXive *xive = SPAPR_XIVE(intc);
845 XiveSource *xsrc;
846 size_t esb_len;
848 /* The KVM XIVE device is not in use */
849 if (!xive || xive->fd == -1) {
850 return;
853 /* Clear the KVM mapping */
854 xsrc = &xive->source;
855 esb_len = (1ull << xsrc->esb_shift) * xsrc->nr_irqs;
857 if (xsrc->esb_mmap) {
858 memory_region_del_subregion(&xsrc->esb_mmio, &xsrc->esb_mmio_kvm);
859 object_unparent(OBJECT(&xsrc->esb_mmio_kvm));
860 munmap(xsrc->esb_mmap, esb_len);
861 xsrc->esb_mmap = NULL;
864 if (xive->tm_mmap) {
865 memory_region_del_subregion(&xive->tm_mmio, &xive->tm_mmio_kvm);
866 object_unparent(OBJECT(&xive->tm_mmio_kvm));
867 munmap(xive->tm_mmap, 4ull << TM_SHIFT);
868 xive->tm_mmap = NULL;
872 * When the KVM device fd is closed, the KVM device is destroyed
873 * and removed from the list of devices of the VM. The VCPU
874 * presenters are also detached from the device.
876 close(xive->fd);
877 xive->fd = -1;
879 kvm_kernel_irqchip = false;
880 kvm_msi_via_irqfd_allowed = false;
881 kvm_gsi_direct_mapping = false;
883 /* Clear the local list of presenter (hotplug) */
884 kvm_cpu_disable_all();
886 /* VM Change state handler is not needed anymore */
887 if (xive->change) {
888 qemu_del_vm_change_state_handler(xive->change);
889 xive->change = NULL;