mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
hw/xen: pvh-common: Add support for creating PCIe/GPEX
Add support for optionally creating a PCIe/GPEX controller. Signed-off-by: Edgar E. Iglesias <edgar.iglesias@amd.com> Reviewed-by: Stefano Stabellini <sstabellini@kernel.org>
This commit is contained in:
parent
692ec9337b
commit
f22e598a72
2 changed files with 105 additions and 0 deletions
|
@ -122,6 +122,64 @@ static void xen_enable_tpm(XenPVHMachineState *s)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* We use the GPEX PCIe controller with its internal INTX PCI interrupt
|
||||||
|
* swizzling. This swizzling is emulated in QEMU and routes all INTX
|
||||||
|
* interrupts from endpoints down to only 4 INTX interrupts.
|
||||||
|
* See include/hw/pci/pci.h : pci_swizzle()
|
||||||
|
*/
|
||||||
|
static inline void xenpvh_gpex_init(XenPVHMachineState *s,
|
||||||
|
XenPVHMachineClass *xpc,
|
||||||
|
MemoryRegion *sysmem)
|
||||||
|
{
|
||||||
|
MemoryRegion *ecam_reg;
|
||||||
|
MemoryRegion *mmio_reg;
|
||||||
|
DeviceState *dev;
|
||||||
|
int i;
|
||||||
|
|
||||||
|
object_initialize_child(OBJECT(s), "gpex", &s->pci.gpex,
|
||||||
|
TYPE_GPEX_HOST);
|
||||||
|
dev = DEVICE(&s->pci.gpex);
|
||||||
|
sysbus_realize_and_unref(SYS_BUS_DEVICE(dev), &error_fatal);
|
||||||
|
|
||||||
|
ecam_reg = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 0);
|
||||||
|
memory_region_add_subregion(sysmem, s->cfg.pci_ecam.base, ecam_reg);
|
||||||
|
|
||||||
|
mmio_reg = sysbus_mmio_get_region(SYS_BUS_DEVICE(dev), 1);
|
||||||
|
|
||||||
|
if (s->cfg.pci_mmio.size) {
|
||||||
|
memory_region_init_alias(&s->pci.mmio_alias, OBJECT(dev), "pcie-mmio",
|
||||||
|
mmio_reg,
|
||||||
|
s->cfg.pci_mmio.base, s->cfg.pci_mmio.size);
|
||||||
|
memory_region_add_subregion(sysmem, s->cfg.pci_mmio.base,
|
||||||
|
&s->pci.mmio_alias);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (s->cfg.pci_mmio_high.size) {
|
||||||
|
memory_region_init_alias(&s->pci.mmio_high_alias, OBJECT(dev),
|
||||||
|
"pcie-mmio-high",
|
||||||
|
mmio_reg, s->cfg.pci_mmio_high.base, s->cfg.pci_mmio_high.size);
|
||||||
|
memory_region_add_subregion(sysmem, s->cfg.pci_mmio_high.base,
|
||||||
|
&s->pci.mmio_high_alias);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* PVH implementations with PCI enabled must provide set_pci_intx_irq()
|
||||||
|
* and optionally an implementation of set_pci_link_route().
|
||||||
|
*/
|
||||||
|
assert(xpc->set_pci_intx_irq);
|
||||||
|
|
||||||
|
for (i = 0; i < GPEX_NUM_IRQS; i++) {
|
||||||
|
qemu_irq irq = qemu_allocate_irq(xpc->set_pci_intx_irq, s, i);
|
||||||
|
|
||||||
|
sysbus_connect_irq(SYS_BUS_DEVICE(dev), i, irq);
|
||||||
|
gpex_set_irq_num(GPEX_HOST(dev), i, s->cfg.pci_intx_irq_base + i);
|
||||||
|
if (xpc->set_pci_link_route) {
|
||||||
|
xpc->set_pci_link_route(i, s->cfg.pci_intx_irq_base + i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void xen_pvh_init(MachineState *ms)
|
static void xen_pvh_init(MachineState *ms)
|
||||||
{
|
{
|
||||||
XenPVHMachineState *s = XEN_PVH_MACHINE(ms);
|
XenPVHMachineState *s = XEN_PVH_MACHINE(ms);
|
||||||
|
@ -152,6 +210,15 @@ static void xen_pvh_init(MachineState *ms)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Non-zero pci-ecam-size enables PCI. */
|
||||||
|
if (s->cfg.pci_ecam.size) {
|
||||||
|
if (s->cfg.pci_ecam.size != 256 * MiB) {
|
||||||
|
error_report("pci-ecam-size only supports values 0 or 0x10000000");
|
||||||
|
exit(EXIT_FAILURE);
|
||||||
|
}
|
||||||
|
xenpvh_gpex_init(s, xpc, sysmem);
|
||||||
|
}
|
||||||
|
|
||||||
/* Call the implementation specific init. */
|
/* Call the implementation specific init. */
|
||||||
if (xpc->init) {
|
if (xpc->init) {
|
||||||
xpc->init(ms);
|
xpc->init(ms);
|
||||||
|
@ -200,6 +267,9 @@ XEN_PVH_PROP_MEMMAP(ram_high)
|
||||||
/* TPM only has a base-addr option. */
|
/* TPM only has a base-addr option. */
|
||||||
XEN_PVH_PROP_MEMMAP_BASE(tpm)
|
XEN_PVH_PROP_MEMMAP_BASE(tpm)
|
||||||
XEN_PVH_PROP_MEMMAP(virtio_mmio)
|
XEN_PVH_PROP_MEMMAP(virtio_mmio)
|
||||||
|
XEN_PVH_PROP_MEMMAP(pci_ecam)
|
||||||
|
XEN_PVH_PROP_MEMMAP(pci_mmio)
|
||||||
|
XEN_PVH_PROP_MEMMAP(pci_mmio_high)
|
||||||
|
|
||||||
void xen_pvh_class_setup_common_props(XenPVHMachineClass *xpc)
|
void xen_pvh_class_setup_common_props(XenPVHMachineClass *xpc)
|
||||||
{
|
{
|
||||||
|
@ -242,6 +312,12 @@ do { \
|
||||||
OC_MEMMAP_PROP(oc, "virtio-mmio", virtio_mmio);
|
OC_MEMMAP_PROP(oc, "virtio-mmio", virtio_mmio);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (xpc->has_pci) {
|
||||||
|
OC_MEMMAP_PROP(oc, "pci-ecam", pci_ecam);
|
||||||
|
OC_MEMMAP_PROP(oc, "pci-mmio", pci_mmio);
|
||||||
|
OC_MEMMAP_PROP(oc, "pci-mmio-high", pci_mmio_high);
|
||||||
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_TPM
|
#ifdef CONFIG_TPM
|
||||||
if (xpc->has_tpm) {
|
if (xpc->has_tpm) {
|
||||||
object_class_property_add(oc, "tpm-base-addr", "uint64_t",
|
object_class_property_add(oc, "tpm-base-addr", "uint64_t",
|
||||||
|
|
|
@ -25,10 +25,29 @@ struct XenPVHMachineClass {
|
||||||
/* PVH implementation specific init. */
|
/* PVH implementation specific init. */
|
||||||
void (*init)(MachineState *state);
|
void (*init)(MachineState *state);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* set_pci_intx_irq - Deliver INTX irqs to the guest.
|
||||||
|
*
|
||||||
|
* @opaque: pointer to XenPVHMachineState.
|
||||||
|
* @irq: IRQ after swizzling, between 0-3.
|
||||||
|
* @level: IRQ level.
|
||||||
|
*/
|
||||||
|
void (*set_pci_intx_irq)(void *opaque, int irq, int level);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* set_pci_link_route: - optional implementation call to setup
|
||||||
|
* routing between INTX IRQ (0 - 3) and GSI's.
|
||||||
|
*
|
||||||
|
* @line: line the INTx line (0 => A .. 3 => B)
|
||||||
|
* @irq: GSI
|
||||||
|
*/
|
||||||
|
int (*set_pci_link_route)(uint8_t line, uint8_t irq);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Each implementation can optionally enable features that it
|
* Each implementation can optionally enable features that it
|
||||||
* supports and are known to work.
|
* supports and are known to work.
|
||||||
*/
|
*/
|
||||||
|
bool has_pci;
|
||||||
bool has_tpm;
|
bool has_tpm;
|
||||||
bool has_virtio_mmio;
|
bool has_virtio_mmio;
|
||||||
};
|
};
|
||||||
|
@ -44,6 +63,12 @@ struct XenPVHMachineState {
|
||||||
MemoryRegion high;
|
MemoryRegion high;
|
||||||
} ram;
|
} ram;
|
||||||
|
|
||||||
|
struct {
|
||||||
|
GPEXHost gpex;
|
||||||
|
MemoryRegion mmio_alias;
|
||||||
|
MemoryRegion mmio_high_alias;
|
||||||
|
} pci;
|
||||||
|
|
||||||
struct {
|
struct {
|
||||||
MemMapEntry ram_low, ram_high;
|
MemMapEntry ram_low, ram_high;
|
||||||
MemMapEntry tpm;
|
MemMapEntry tpm;
|
||||||
|
@ -52,6 +77,10 @@ struct XenPVHMachineState {
|
||||||
MemMapEntry virtio_mmio;
|
MemMapEntry virtio_mmio;
|
||||||
uint32_t virtio_mmio_num;
|
uint32_t virtio_mmio_num;
|
||||||
uint32_t virtio_mmio_irq_base;
|
uint32_t virtio_mmio_irq_base;
|
||||||
|
|
||||||
|
/* PCI */
|
||||||
|
MemMapEntry pci_ecam, pci_mmio, pci_mmio_high;
|
||||||
|
uint32_t pci_intx_irq_base;
|
||||||
} cfg;
|
} cfg;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue