aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/setup-res.c
diff options
context:
space:
mode:
authorYu Zhao <yu.zhao@intel.com>2008-11-21 13:41:27 -0500
committerJesse Barnes <jbarnes@virtuousgeek.org>2009-01-07 14:13:04 -0500
commit613e7ed6f72b1a115f7ece8ce1b66cf095de1348 (patch)
tree2af16f01cbf78f1de6b858788091a72fa57af6c8 /drivers/pci/setup-res.c
parent3789fa8a2e534523c896a32a9f27f78d52ad7d82 (diff)
PCI: add a new function to map BAR offsets
Add a function to map a given resource number to a corresponding register so drivers can get the offset and type of device specific BARs. Signed-off-by: Yu Zhao <yu.zhao@intel.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers/pci/setup-res.c')
-rw-r--r--drivers/pci/setup-res.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/drivers/pci/setup-res.c b/drivers/pci/setup-res.c
index 3c5203ff53c7..32e8d88a4619 100644
--- a/drivers/pci/setup-res.c
+++ b/drivers/pci/setup-res.c
@@ -31,6 +31,7 @@ void pci_update_resource(struct pci_dev *dev, int resno)
31 struct pci_bus_region region; 31 struct pci_bus_region region;
32 u32 new, check, mask; 32 u32 new, check, mask;
33 int reg; 33 int reg;
34 enum pci_bar_type type;
34 struct resource *res = dev->resource + resno; 35 struct resource *res = dev->resource + resno;
35 36
36 /* 37 /*
@@ -62,17 +63,13 @@ void pci_update_resource(struct pci_dev *dev, int resno)
62 else 63 else
63 mask = (u32)PCI_BASE_ADDRESS_MEM_MASK; 64 mask = (u32)PCI_BASE_ADDRESS_MEM_MASK;
64 65
65 if (resno < 6) { 66 reg = pci_resource_bar(dev, resno, &type);
66 reg = PCI_BASE_ADDRESS_0 + 4 * resno; 67 if (!reg)
67 } else if (resno == PCI_ROM_RESOURCE) { 68 return;
69 if (type != pci_bar_unknown) {
68 if (!(res->flags & IORESOURCE_ROM_ENABLE)) 70 if (!(res->flags & IORESOURCE_ROM_ENABLE))
69 return; 71 return;
70 new |= PCI_ROM_ADDRESS_ENABLE; 72 new |= PCI_ROM_ADDRESS_ENABLE;
71 reg = dev->rom_base_reg;
72 } else {
73 /* Hmm, non-standard resource. */
74
75 return; /* kill uninitialised var warning */
76 } 73 }
77 74
78 pci_write_config_dword(dev, reg, new); 75 pci_write_config_dword(dev, reg, new);