38afd772f8
This introduces a set of helpers when KVM is in use, which create the KVM XIVE device, initialize the interrupt sources at a KVM level and connect the interrupt presenters to the vCPU. They also handle the initialization of the TIMA and the source ESB memory regions of the controller. These have a different type under KVM. They are 'ram device' memory mappings, similarly to VFIO, exposed to the guest and the associated VMAs on the host are populated dynamically with the appropriate pages using a fault handler. Signed-off-by: Cédric Le Goater <clg@kaod.org> Reviewed-by: David Gibson <david@gibson.dropbear.id.au> Message-Id: <20190513084245.25755-3-clg@kaod.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
64 lines
1.6 KiB
C
64 lines
1.6 KiB
C
/*
|
|
* QEMU PowerPC sPAPR XIVE interrupt controller model
|
|
*
|
|
* Copyright (c) 2017-2018, IBM Corporation.
|
|
*
|
|
* This code is licensed under the GPL version 2 or later. See the
|
|
* COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef PPC_SPAPR_XIVE_H
|
|
#define PPC_SPAPR_XIVE_H
|
|
|
|
#include "hw/ppc/xive.h"
|
|
|
|
#define TYPE_SPAPR_XIVE "spapr-xive"
|
|
#define SPAPR_XIVE(obj) OBJECT_CHECK(SpaprXive, (obj), TYPE_SPAPR_XIVE)
|
|
|
|
typedef struct SpaprXive {
|
|
XiveRouter parent;
|
|
|
|
/* Internal interrupt source for IPIs and virtual devices */
|
|
XiveSource source;
|
|
hwaddr vc_base;
|
|
|
|
/* END ESB MMIOs */
|
|
XiveENDSource end_source;
|
|
hwaddr end_base;
|
|
|
|
/* DT */
|
|
gchar *nodename;
|
|
|
|
/* Routing table */
|
|
XiveEAS *eat;
|
|
uint32_t nr_irqs;
|
|
XiveEND *endt;
|
|
uint32_t nr_ends;
|
|
|
|
/* TIMA mapping address */
|
|
hwaddr tm_base;
|
|
MemoryRegion tm_mmio;
|
|
|
|
/* KVM support */
|
|
int fd;
|
|
void *tm_mmap;
|
|
} SpaprXive;
|
|
|
|
bool spapr_xive_irq_claim(SpaprXive *xive, uint32_t lisn, bool lsi);
|
|
bool spapr_xive_irq_free(SpaprXive *xive, uint32_t lisn);
|
|
void spapr_xive_pic_print_info(SpaprXive *xive, Monitor *mon);
|
|
|
|
void spapr_xive_hcall_init(SpaprMachineState *spapr);
|
|
void spapr_dt_xive(SpaprMachineState *spapr, uint32_t nr_servers, void *fdt,
|
|
uint32_t phandle);
|
|
void spapr_xive_set_tctx_os_cam(XiveTCTX *tctx);
|
|
void spapr_xive_mmio_set_enabled(SpaprXive *xive, bool enable);
|
|
void spapr_xive_map_mmio(SpaprXive *xive);
|
|
|
|
/*
|
|
* KVM XIVE device helpers
|
|
*/
|
|
void kvmppc_xive_connect(SpaprXive *xive, Error **errp);
|
|
|
|
#endif /* PPC_SPAPR_XIVE_H */
|