summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/pci_x86.h
diff options
context:
space:
mode:
authorBjorn Helgaas2009-11-14 01:34:29 +0100
committerJesse Barnes2009-11-25 00:29:41 +0100
commit56ddf4d3cf04e80254d3d721c6bea2f8ec44c41a (patch)
tree9b09f7d7daf480138e4e178520d03d537a49959b /arch/x86/include/asm/pci_x86.h
parentx86/PCI: MMCONFIG: use pointer to simplify pci_mmcfg_config[] structure access (diff)
downloadkernel-qcow2-linux-56ddf4d3cf04e80254d3d721c6bea2f8ec44c41a.tar.gz
kernel-qcow2-linux-56ddf4d3cf04e80254d3d721c6bea2f8ec44c41a.tar.xz
kernel-qcow2-linux-56ddf4d3cf04e80254d3d721c6bea2f8ec44c41a.zip
x86/PCI: MMCONFIG: add resource to struct pci_mmcfg_region
This patch adds a resource and corresponding name to the MMCONFIG structure. This makes allocation simpler (we can allocate the resource and name at the same time we allocate the pci_mmcfg_region), and gives us a way to hang onto the resource after inserting it. This will be needed so we can release and free it when hot-removing a host bridge. Reviewed-by: Yinghai Lu <yinghai@kernel.org> Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'arch/x86/include/asm/pci_x86.h')
-rw-r--r--arch/x86/include/asm/pci_x86.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/x86/include/asm/pci_x86.h b/arch/x86/include/asm/pci_x86.h
index a752d618f196..a6d42c10b017 100644
--- a/arch/x86/include/asm/pci_x86.h
+++ b/arch/x86/include/asm/pci_x86.h
@@ -118,11 +118,16 @@ extern int __init pcibios_init(void);
/* pci-mmconfig.c */
+/* "PCI MMCONFIG %04x [bus %02x-%02x]" */
+#define PCI_MMCFG_RESOURCE_NAME_LEN (22 + 4 + 2 + 2)
+
struct pci_mmcfg_region {
+ struct resource res;
u64 address;
u16 segment;
u8 start_bus;
u8 end_bus;
+ char name[PCI_MMCFG_RESOURCE_NAME_LEN];
};
extern int __init pci_mmcfg_arch_init(void);