mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 15:53:54 -06:00
qtest/libqos: add a function to initialize secondary PCI buses
Scan the PCI devices to find bridge and set PCI_SECONDARY_BUS and PCI_SUBORDINATE_BUS (algorithm from seabios) Signed-off-by: Laurent Vivier <lvivier@redhat.com> Acked-by: Thomas Huth <thuth@redhat.com> Message-Id: <20211208130350.10178-2-lvivier@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
parent
76b56fdfc9
commit
efe84f03ea
3 changed files with 128 additions and 0 deletions
|
@ -138,6 +138,7 @@ typedef struct PCIBridgeQemuCap {
|
|||
uint64_t mem_pref_64; /* Prefetchable memory to reserve (64-bit MMIO) */
|
||||
} PCIBridgeQemuCap;
|
||||
|
||||
#define REDHAT_PCI_CAP_TYPE_OFFSET 3
|
||||
#define REDHAT_PCI_CAP_RESOURCE_RESERVE 1
|
||||
|
||||
/*
|
||||
|
@ -152,6 +153,13 @@ typedef struct PCIResReserve {
|
|||
uint64_t mem_pref_64;
|
||||
} PCIResReserve;
|
||||
|
||||
#define REDHAT_PCI_CAP_RES_RESERVE_BUS_RES 4
|
||||
#define REDHAT_PCI_CAP_RES_RESERVE_IO 8
|
||||
#define REDHAT_PCI_CAP_RES_RESERVE_MEM 16
|
||||
#define REDHAT_PCI_CAP_RES_RESERVE_PREF_MEM_32 20
|
||||
#define REDHAT_PCI_CAP_RES_RESERVE_PREF_MEM_64 24
|
||||
#define REDHAT_PCI_CAP_RES_RESERVE_CAP_SIZE 32
|
||||
|
||||
int pci_bridge_qemu_reserve_cap_init(PCIDevice *dev, int cap_offset,
|
||||
PCIResReserve res_reserve, Error **errp);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue