summaryrefslogtreecommitdiff
path: root/hw/pci/pcie.h
diff options
context:
space:
mode:
authorAlex Williamson <alex.williamson@redhat.com>2013-03-19 12:11:24 -0600
committerMichael S. Tsirkin <mst@redhat.com>2013-03-26 21:02:19 +0200
commit6214e73cc5b75a4f8d89a70d71727edfa47a81b3 (patch)
tree5821b19c1967b319d287c396045171034887c9eb /hw/pci/pcie.h
parenta5519b42cfd6c00e9f8b31c5aad7682e7a9f1181 (diff)
downloadqemu-6214e73cc5b75a4f8d89a70d71727edfa47a81b3.tar.gz
pcie: Add endpoint capability initialization wrapper
Fix the awkward API of mangling the caller specified PCIe type and just provide an interface to initialize an endpoint device. This will pick either a regular endpoint or integrated endpoint based on the bus and return pcie_cap_init to doing exactly what is asked. Signed-off-by: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/pci/pcie.h')
-rw-r--r--hw/pci/pcie.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/pci/pcie.h b/hw/pci/pcie.h
index 31604e2742..c010007c5e 100644
--- a/hw/pci/pcie.h
+++ b/hw/pci/pcie.h
@@ -95,6 +95,7 @@ struct PCIExpressDevice {
/* PCI express capability helper functions */
int pcie_cap_init(PCIDevice *dev, uint8_t offset, uint8_t type, uint8_t port);
+int pcie_endpoint_cap_init(PCIDevice *dev, uint8_t offset);
void pcie_cap_exit(PCIDevice *dev);
uint8_t pcie_cap_get_type(const PCIDevice *dev);
void pcie_cap_flags_set_vector(PCIDevice *dev, uint8_t vector);