xref: /openbmc/qemu/hw/intc/spapr_xive_kvm.c (revision 7bfc759c02b8d19fd76d70d138deea0025f6f461)
1 /*
2  * QEMU PowerPC sPAPR XIVE interrupt controller model
3  *
4  * Copyright (c) 2017-2019, 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 "target/ppc/cpu.h"
15 #include "sysemu/cpus.h"
16 #include "sysemu/kvm.h"
17 #include "hw/ppc/spapr.h"
18 #include "hw/ppc/spapr_xive.h"
19 #include "hw/ppc/xive.h"
20 #include "kvm_ppc.h"
21 
22 #include <sys/ioctl.h>
23 
24 /*
25  * Helpers for CPU hotplug
26  *
27  * TODO: make a common KVMEnabledCPU layer for XICS and XIVE
28  */
29 typedef struct KVMEnabledCPU {
30     unsigned long vcpu_id;
31     QLIST_ENTRY(KVMEnabledCPU) node;
32 } KVMEnabledCPU;
33 
34 static QLIST_HEAD(, KVMEnabledCPU)
35     kvm_enabled_cpus = QLIST_HEAD_INITIALIZER(&kvm_enabled_cpus);
36 
37 static bool kvm_cpu_is_enabled(CPUState *cs)
38 {
39     KVMEnabledCPU *enabled_cpu;
40     unsigned long vcpu_id = kvm_arch_vcpu_id(cs);
41 
42     QLIST_FOREACH(enabled_cpu, &kvm_enabled_cpus, node) {
43         if (enabled_cpu->vcpu_id == vcpu_id) {
44             return true;
45         }
46     }
47     return false;
48 }
49 
50 static void kvm_cpu_enable(CPUState *cs)
51 {
52     KVMEnabledCPU *enabled_cpu;
53     unsigned long vcpu_id = kvm_arch_vcpu_id(cs);
54 
55     enabled_cpu = g_malloc(sizeof(*enabled_cpu));
56     enabled_cpu->vcpu_id = vcpu_id;
57     QLIST_INSERT_HEAD(&kvm_enabled_cpus, enabled_cpu, node);
58 }
59 
60 /*
61  * XIVE Thread Interrupt Management context (KVM)
62  */
63 static void kvmppc_xive_cpu_get_state(XiveTCTX *tctx, Error **errp)
64 {
65     uint64_t state[2] = { 0 };
66     int ret;
67 
68     ret = kvm_get_one_reg(tctx->cs, KVM_REG_PPC_VP_STATE, state);
69     if (ret != 0) {
70         error_setg_errno(errp, errno,
71                          "XIVE: could not capture KVM state of CPU %ld",
72                          kvm_arch_vcpu_id(tctx->cs));
73         return;
74     }
75 
76     /* word0 and word1 of the OS ring. */
77     *((uint64_t *) &tctx->regs[TM_QW1_OS]) = state[0];
78 }
79 
80 typedef struct {
81     XiveTCTX *tctx;
82     Error *err;
83 } XiveCpuGetState;
84 
85 static void kvmppc_xive_cpu_do_synchronize_state(CPUState *cpu,
86                                                  run_on_cpu_data arg)
87 {
88     XiveCpuGetState *s = arg.host_ptr;
89 
90     kvmppc_xive_cpu_get_state(s->tctx, &s->err);
91 }
92 
93 void kvmppc_xive_cpu_synchronize_state(XiveTCTX *tctx, Error **errp)
94 {
95     XiveCpuGetState s = {
96         .tctx = tctx,
97         .err = NULL,
98     };
99 
100     /*
101      * Kick the vCPU to make sure they are available for the KVM ioctl.
102      */
103     run_on_cpu(tctx->cs, kvmppc_xive_cpu_do_synchronize_state,
104                RUN_ON_CPU_HOST_PTR(&s));
105 
106     if (s.err) {
107         error_propagate(errp, s.err);
108         return;
109     }
110 }
111 
112 void kvmppc_xive_cpu_connect(XiveTCTX *tctx, Error **errp)
113 {
114     SpaprXive *xive = SPAPR_MACHINE(qdev_get_machine())->xive;
115     unsigned long vcpu_id;
116     int ret;
117 
118     /* Check if CPU was hot unplugged and replugged. */
119     if (kvm_cpu_is_enabled(tctx->cs)) {
120         return;
121     }
122 
123     vcpu_id = kvm_arch_vcpu_id(tctx->cs);
124 
125     ret = kvm_vcpu_enable_cap(tctx->cs, KVM_CAP_PPC_IRQ_XIVE, 0, xive->fd,
126                               vcpu_id, 0);
127     if (ret < 0) {
128         error_setg(errp, "XIVE: unable to connect CPU%ld to KVM device: %s",
129                    vcpu_id, strerror(errno));
130         return;
131     }
132 
133     kvm_cpu_enable(tctx->cs);
134 }
135 
136 /*
137  * XIVE Interrupt Source (KVM)
138  */
139 
140 void kvmppc_xive_set_source_config(SpaprXive *xive, uint32_t lisn, XiveEAS *eas,
141                                    Error **errp)
142 {
143     uint32_t end_idx;
144     uint32_t end_blk;
145     uint8_t priority;
146     uint32_t server;
147     bool masked;
148     uint32_t eisn;
149     uint64_t kvm_src;
150     Error *local_err = NULL;
151 
152     assert(xive_eas_is_valid(eas));
153 
154     end_idx = xive_get_field64(EAS_END_INDEX, eas->w);
155     end_blk = xive_get_field64(EAS_END_BLOCK, eas->w);
156     eisn = xive_get_field64(EAS_END_DATA, eas->w);
157     masked = xive_eas_is_masked(eas);
158 
159     spapr_xive_end_to_target(end_blk, end_idx, &server, &priority);
160 
161     kvm_src = priority << KVM_XIVE_SOURCE_PRIORITY_SHIFT &
162         KVM_XIVE_SOURCE_PRIORITY_MASK;
163     kvm_src |= server << KVM_XIVE_SOURCE_SERVER_SHIFT &
164         KVM_XIVE_SOURCE_SERVER_MASK;
165     kvm_src |= ((uint64_t) masked << KVM_XIVE_SOURCE_MASKED_SHIFT) &
166         KVM_XIVE_SOURCE_MASKED_MASK;
167     kvm_src |= ((uint64_t)eisn << KVM_XIVE_SOURCE_EISN_SHIFT) &
168         KVM_XIVE_SOURCE_EISN_MASK;
169 
170     kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_SOURCE_CONFIG, lisn,
171                       &kvm_src, true, &local_err);
172     if (local_err) {
173         error_propagate(errp, local_err);
174         return;
175     }
176 }
177 
178 void kvmppc_xive_sync_source(SpaprXive *xive, uint32_t lisn, Error **errp)
179 {
180     kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_SOURCE_SYNC, lisn,
181                       NULL, true, errp);
182 }
183 
184 /*
185  * At reset, the interrupt sources are simply created and MASKED. We
186  * only need to inform the KVM XIVE device about their type: LSI or
187  * MSI.
188  */
189 void kvmppc_xive_source_reset_one(XiveSource *xsrc, int srcno, Error **errp)
190 {
191     SpaprXive *xive = SPAPR_XIVE(xsrc->xive);
192     uint64_t state = 0;
193 
194     if (xive_source_irq_is_lsi(xsrc, srcno)) {
195         state |= KVM_XIVE_LEVEL_SENSITIVE;
196         if (xsrc->status[srcno] & XIVE_STATUS_ASSERTED) {
197             state |= KVM_XIVE_LEVEL_ASSERTED;
198         }
199     }
200 
201     kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_SOURCE, srcno, &state,
202                       true, errp);
203 }
204 
205 void kvmppc_xive_source_reset(XiveSource *xsrc, Error **errp)
206 {
207     int i;
208 
209     for (i = 0; i < xsrc->nr_irqs; i++) {
210         Error *local_err = NULL;
211 
212         kvmppc_xive_source_reset_one(xsrc, i, &local_err);
213         if (local_err) {
214             error_propagate(errp, local_err);
215             return;
216         }
217     }
218 }
219 
220 /*
221  * This is used to perform the magic loads on the ESB pages, described
222  * in xive.h.
223  *
224  * Memory barriers should not be needed for loads (no store for now).
225  */
226 static uint64_t xive_esb_rw(XiveSource *xsrc, int srcno, uint32_t offset,
227                             uint64_t data, bool write)
228 {
229     uint64_t *addr = xsrc->esb_mmap + xive_source_esb_mgmt(xsrc, srcno) +
230         offset;
231 
232     if (write) {
233         *addr = cpu_to_be64(data);
234         return -1;
235     } else {
236         /* Prevent the compiler from optimizing away the load */
237         volatile uint64_t value = be64_to_cpu(*addr);
238         return value;
239     }
240 }
241 
242 static uint8_t xive_esb_read(XiveSource *xsrc, int srcno, uint32_t offset)
243 {
244     return xive_esb_rw(xsrc, srcno, offset, 0, 0) & 0x3;
245 }
246 
247 static void xive_esb_trigger(XiveSource *xsrc, int srcno)
248 {
249     uint64_t *addr = xsrc->esb_mmap + xive_source_esb_page(xsrc, srcno);
250 
251     *addr = 0x0;
252 }
253 
254 uint64_t kvmppc_xive_esb_rw(XiveSource *xsrc, int srcno, uint32_t offset,
255                             uint64_t data, bool write)
256 {
257     if (write) {
258         return xive_esb_rw(xsrc, srcno, offset, data, 1);
259     }
260 
261     /*
262      * Special Load EOI handling for LSI sources. Q bit is never set
263      * and the interrupt should be re-triggered if the level is still
264      * asserted.
265      */
266     if (xive_source_irq_is_lsi(xsrc, srcno) &&
267         offset == XIVE_ESB_LOAD_EOI) {
268         xive_esb_read(xsrc, srcno, XIVE_ESB_SET_PQ_00);
269         if (xsrc->status[srcno] & XIVE_STATUS_ASSERTED) {
270             xive_esb_trigger(xsrc, srcno);
271         }
272         return 0;
273     } else {
274         return xive_esb_rw(xsrc, srcno, offset, 0, 0);
275     }
276 }
277 
278 static void kvmppc_xive_source_get_state(XiveSource *xsrc)
279 {
280     int i;
281 
282     for (i = 0; i < xsrc->nr_irqs; i++) {
283         /* Perform a load without side effect to retrieve the PQ bits */
284         uint8_t pq = xive_esb_read(xsrc, i, XIVE_ESB_GET);
285 
286         /* and save PQ locally */
287         xive_source_esb_set(xsrc, i, pq);
288     }
289 }
290 
291 void kvmppc_xive_source_set_irq(void *opaque, int srcno, int val)
292 {
293     XiveSource *xsrc = opaque;
294     struct kvm_irq_level args;
295     int rc;
296 
297     args.irq = srcno;
298     if (!xive_source_irq_is_lsi(xsrc, srcno)) {
299         if (!val) {
300             return;
301         }
302         args.level = KVM_INTERRUPT_SET;
303     } else {
304         if (val) {
305             xsrc->status[srcno] |= XIVE_STATUS_ASSERTED;
306             args.level = KVM_INTERRUPT_SET_LEVEL;
307         } else {
308             xsrc->status[srcno] &= ~XIVE_STATUS_ASSERTED;
309             args.level = KVM_INTERRUPT_UNSET;
310         }
311     }
312     rc = kvm_vm_ioctl(kvm_state, KVM_IRQ_LINE, &args);
313     if (rc < 0) {
314         error_report("XIVE: kvm_irq_line() failed : %s", strerror(errno));
315     }
316 }
317 
318 /*
319  * sPAPR XIVE interrupt controller (KVM)
320  */
321 void kvmppc_xive_get_queue_config(SpaprXive *xive, uint8_t end_blk,
322                                   uint32_t end_idx, XiveEND *end,
323                                   Error **errp)
324 {
325     struct kvm_ppc_xive_eq kvm_eq = { 0 };
326     uint64_t kvm_eq_idx;
327     uint8_t priority;
328     uint32_t server;
329     Error *local_err = NULL;
330 
331     assert(xive_end_is_valid(end));
332 
333     /* Encode the tuple (server, prio) as a KVM EQ index */
334     spapr_xive_end_to_target(end_blk, end_idx, &server, &priority);
335 
336     kvm_eq_idx = priority << KVM_XIVE_EQ_PRIORITY_SHIFT &
337             KVM_XIVE_EQ_PRIORITY_MASK;
338     kvm_eq_idx |= server << KVM_XIVE_EQ_SERVER_SHIFT &
339         KVM_XIVE_EQ_SERVER_MASK;
340 
341     kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_EQ_CONFIG, kvm_eq_idx,
342                       &kvm_eq, false, &local_err);
343     if (local_err) {
344         error_propagate(errp, local_err);
345         return;
346     }
347 
348     /*
349      * The EQ index and toggle bit are updated by HW. These are the
350      * only fields from KVM we want to update QEMU with. The other END
351      * fields should already be in the QEMU END table.
352      */
353     end->w1 = xive_set_field32(END_W1_GENERATION, 0ul, kvm_eq.qtoggle) |
354         xive_set_field32(END_W1_PAGE_OFF, 0ul, kvm_eq.qindex);
355 }
356 
357 void kvmppc_xive_set_queue_config(SpaprXive *xive, uint8_t end_blk,
358                                   uint32_t end_idx, XiveEND *end,
359                                   Error **errp)
360 {
361     struct kvm_ppc_xive_eq kvm_eq = { 0 };
362     uint64_t kvm_eq_idx;
363     uint8_t priority;
364     uint32_t server;
365     Error *local_err = NULL;
366 
367     /*
368      * Build the KVM state from the local END structure.
369      */
370 
371     kvm_eq.flags = 0;
372     if (xive_get_field32(END_W0_UCOND_NOTIFY, end->w0)) {
373         kvm_eq.flags |= KVM_XIVE_EQ_ALWAYS_NOTIFY;
374     }
375 
376     /*
377      * If the hcall is disabling the EQ, set the size and page address
378      * to zero. When migrating, only valid ENDs are taken into
379      * account.
380      */
381     if (xive_end_is_valid(end)) {
382         kvm_eq.qshift = xive_get_field32(END_W0_QSIZE, end->w0) + 12;
383         kvm_eq.qaddr  = xive_end_qaddr(end);
384         /*
385          * The EQ toggle bit and index should only be relevant when
386          * restoring the EQ state
387          */
388         kvm_eq.qtoggle = xive_get_field32(END_W1_GENERATION, end->w1);
389         kvm_eq.qindex  = xive_get_field32(END_W1_PAGE_OFF, end->w1);
390     } else {
391         kvm_eq.qshift = 0;
392         kvm_eq.qaddr  = 0;
393     }
394 
395     /* Encode the tuple (server, prio) as a KVM EQ index */
396     spapr_xive_end_to_target(end_blk, end_idx, &server, &priority);
397 
398     kvm_eq_idx = priority << KVM_XIVE_EQ_PRIORITY_SHIFT &
399             KVM_XIVE_EQ_PRIORITY_MASK;
400     kvm_eq_idx |= server << KVM_XIVE_EQ_SERVER_SHIFT &
401         KVM_XIVE_EQ_SERVER_MASK;
402 
403     kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_EQ_CONFIG, kvm_eq_idx,
404                       &kvm_eq, true, &local_err);
405     if (local_err) {
406         error_propagate(errp, local_err);
407         return;
408     }
409 }
410 
411 void kvmppc_xive_reset(SpaprXive *xive, Error **errp)
412 {
413     kvm_device_access(xive->fd, KVM_DEV_XIVE_GRP_CTRL, KVM_DEV_XIVE_RESET,
414                       NULL, true, errp);
415 }
416 
417 static void kvmppc_xive_get_queues(SpaprXive *xive, Error **errp)
418 {
419     Error *local_err = NULL;
420     int i;
421 
422     for (i = 0; i < xive->nr_ends; i++) {
423         if (!xive_end_is_valid(&xive->endt[i])) {
424             continue;
425         }
426 
427         kvmppc_xive_get_queue_config(xive, SPAPR_XIVE_BLOCK_ID, i,
428                                      &xive->endt[i], &local_err);
429         if (local_err) {
430             error_propagate(errp, local_err);
431             return;
432         }
433     }
434 }
435 
436 void kvmppc_xive_synchronize_state(SpaprXive *xive, Error **errp)
437 {
438     kvmppc_xive_source_get_state(&xive->source);
439 
440     /* EAT: there is no extra state to query from KVM */
441 
442     /* ENDT */
443     kvmppc_xive_get_queues(xive, errp);
444 }
445 
446 static void *kvmppc_xive_mmap(SpaprXive *xive, int pgoff, size_t len,
447                               Error **errp)
448 {
449     void *addr;
450     uint32_t page_shift = 16; /* TODO: fix page_shift */
451 
452     addr = mmap(NULL, len, PROT_WRITE | PROT_READ, MAP_SHARED, xive->fd,
453                 pgoff << page_shift);
454     if (addr == MAP_FAILED) {
455         error_setg_errno(errp, errno, "XIVE: unable to set memory mapping");
456         return NULL;
457     }
458 
459     return addr;
460 }
461 
462 /*
463  * All the XIVE memory regions are now backed by mappings from the KVM
464  * XIVE device.
465  */
466 void kvmppc_xive_connect(SpaprXive *xive, Error **errp)
467 {
468     XiveSource *xsrc = &xive->source;
469     XiveENDSource *end_xsrc = &xive->end_source;
470     Error *local_err = NULL;
471     size_t esb_len = (1ull << xsrc->esb_shift) * xsrc->nr_irqs;
472     size_t tima_len = 4ull << TM_SHIFT;
473 
474     if (!kvmppc_has_cap_xive()) {
475         error_setg(errp, "IRQ_XIVE capability must be present for KVM");
476         return;
477     }
478 
479     /* First, create the KVM XIVE device */
480     xive->fd = kvm_create_device(kvm_state, KVM_DEV_TYPE_XIVE, false);
481     if (xive->fd < 0) {
482         error_setg_errno(errp, -xive->fd, "XIVE: error creating KVM device");
483         return;
484     }
485 
486     /*
487      * 1. Source ESB pages - KVM mapping
488      */
489     xsrc->esb_mmap = kvmppc_xive_mmap(xive, KVM_XIVE_ESB_PAGE_OFFSET, esb_len,
490                                       &local_err);
491     if (local_err) {
492         error_propagate(errp, local_err);
493         return;
494     }
495 
496     memory_region_init_ram_device_ptr(&xsrc->esb_mmio, OBJECT(xsrc),
497                                       "xive.esb", esb_len, xsrc->esb_mmap);
498     sysbus_init_mmio(SYS_BUS_DEVICE(xive), &xsrc->esb_mmio);
499 
500     /*
501      * 2. END ESB pages (No KVM support yet)
502      */
503     sysbus_init_mmio(SYS_BUS_DEVICE(xive), &end_xsrc->esb_mmio);
504 
505     /*
506      * 3. TIMA pages - KVM mapping
507      */
508     xive->tm_mmap = kvmppc_xive_mmap(xive, KVM_XIVE_TIMA_PAGE_OFFSET, tima_len,
509                                      &local_err);
510     if (local_err) {
511         error_propagate(errp, local_err);
512         return;
513     }
514     memory_region_init_ram_device_ptr(&xive->tm_mmio, OBJECT(xive),
515                                       "xive.tima", tima_len, xive->tm_mmap);
516     sysbus_init_mmio(SYS_BUS_DEVICE(xive), &xive->tm_mmio);
517 
518     kvm_kernel_irqchip = true;
519     kvm_msi_via_irqfd_allowed = true;
520     kvm_gsi_direct_mapping = true;
521 
522     /* Map all regions */
523     spapr_xive_map_mmio(xive);
524 }
525