Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/pci/setup-res.c |
| 3 | * |
| 4 | * Extruded from code written by |
| 5 | * Dave Rusling (david.rusling@reo.mts.dec.com) |
| 6 | * David Mosberger (davidm@cs.arizona.edu) |
| 7 | * David Miller (davem@redhat.com) |
| 8 | * |
| 9 | * Support routines for initializing a PCI subsystem. |
| 10 | */ |
| 11 | |
| 12 | /* fixed for multiple pci buses, 1999 Andrea Arcangeli <andrea@suse.de> */ |
| 13 | |
| 14 | /* |
| 15 | * Nov 2000, Ivan Kokshaysky <ink@jurassic.park.msu.ru> |
| 16 | * Resource sorting |
| 17 | */ |
| 18 | |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/pci.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/ioport.h> |
| 24 | #include <linux/cache.h> |
| 25 | #include <linux/slab.h> |
| 26 | #include "pci.h" |
| 27 | |
| 28 | |
Yu Zhao | 14add80 | 2008-11-22 02:38:52 +0800 | [diff] [blame] | 29 | void pci_update_resource(struct pci_dev *dev, int resno) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | { |
| 31 | struct pci_bus_region region; |
| 32 | u32 new, check, mask; |
| 33 | int reg; |
Yu Zhao | 613e7ed | 2008-11-22 02:41:27 +0800 | [diff] [blame] | 34 | enum pci_bar_type type; |
Yu Zhao | 14add80 | 2008-11-22 02:38:52 +0800 | [diff] [blame] | 35 | struct resource *res = dev->resource + resno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 37 | /* |
| 38 | * Ignore resources for unimplemented BARs and unused resource slots |
| 39 | * for 64 bit BARs. |
| 40 | */ |
Ivan Kokshaysky | cf7bee5 | 2005-08-07 13:49:59 +0400 | [diff] [blame] | 41 | if (!res->flags) |
| 42 | return; |
| 43 | |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 44 | /* |
| 45 | * Ignore non-moveable resources. This might be legacy resources for |
| 46 | * which no functional BAR register exists or another important |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 47 | * system resource we shouldn't move around. |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 48 | */ |
| 49 | if (res->flags & IORESOURCE_PCI_FIXED) |
| 50 | return; |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | pcibios_resource_to_bus(dev, ®ion, res); |
| 53 | |
Benjamin Herrenschmidt | 096e6f6 | 2008-10-20 15:07:37 +1100 | [diff] [blame] | 54 | dev_dbg(&dev->dev, "BAR %d: got res %pR bus [%#llx-%#llx] " |
| 55 | "flags %#lx\n", resno, res, |
Benjamin Herrenschmidt | 6015fbe | 2007-12-10 17:32:16 +1100 | [diff] [blame] | 56 | (unsigned long long)region.start, |
| 57 | (unsigned long long)region.end, |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 58 | (unsigned long)res->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | new = region.start | (res->flags & PCI_REGION_FLAG_MASK); |
| 61 | if (res->flags & IORESOURCE_IO) |
| 62 | mask = (u32)PCI_BASE_ADDRESS_IO_MASK; |
| 63 | else |
| 64 | mask = (u32)PCI_BASE_ADDRESS_MEM_MASK; |
| 65 | |
Yu Zhao | 613e7ed | 2008-11-22 02:41:27 +0800 | [diff] [blame] | 66 | reg = pci_resource_bar(dev, resno, &type); |
| 67 | if (!reg) |
| 68 | return; |
| 69 | if (type != pci_bar_unknown) { |
Linus Torvalds | 755528c | 2005-08-26 10:49:22 -0700 | [diff] [blame] | 70 | if (!(res->flags & IORESOURCE_ROM_ENABLE)) |
| 71 | return; |
| 72 | new |= PCI_ROM_ADDRESS_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | pci_write_config_dword(dev, reg, new); |
| 76 | pci_read_config_dword(dev, reg, &check); |
| 77 | |
| 78 | if ((new ^ check) & mask) { |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 79 | dev_err(&dev->dev, "BAR %d: error updating (%#08x != %#08x)\n", |
| 80 | resno, new, check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | if ((new & (PCI_BASE_ADDRESS_SPACE|PCI_BASE_ADDRESS_MEM_TYPE_MASK)) == |
| 84 | (PCI_BASE_ADDRESS_SPACE_MEMORY|PCI_BASE_ADDRESS_MEM_TYPE_64)) { |
Ivan Kokshaysky | cf7bee5 | 2005-08-07 13:49:59 +0400 | [diff] [blame] | 85 | new = region.start >> 16 >> 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | pci_write_config_dword(dev, reg + 4, new); |
| 87 | pci_read_config_dword(dev, reg + 4, &check); |
| 88 | if (check != new) { |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 89 | dev_err(&dev->dev, "BAR %d: error updating " |
| 90 | "(high %#08x != %#08x)\n", resno, new, check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | } |
| 93 | res->flags &= ~IORESOURCE_UNSET; |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 94 | dev_dbg(&dev->dev, "BAR %d: moved to bus [%#llx-%#llx] flags %#lx\n", |
| 95 | resno, (unsigned long long)region.start, |
| 96 | (unsigned long long)region.end, res->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | } |
| 98 | |
Sam Ravnborg | 96bde06 | 2007-03-26 21:53:30 -0800 | [diff] [blame] | 99 | int pci_claim_resource(struct pci_dev *dev, int resource) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
| 101 | struct resource *res = &dev->resource[resource]; |
Matthew Wilcox | cebd78a | 2009-06-17 16:33:33 -0400 | [diff] [blame] | 102 | struct resource *root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | int err; |
| 104 | |
Matthew Wilcox | cebd78a | 2009-06-17 16:33:33 -0400 | [diff] [blame] | 105 | root = pci_find_parent_resource(dev, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | err = -EINVAL; |
| 108 | if (root != NULL) |
Linus Torvalds | 79896cf | 2009-08-02 14:04:19 -0700 | [diff] [blame] | 109 | err = request_resource(root, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | |
| 111 | if (err) { |
Linus Torvalds | 79896cf | 2009-08-02 14:04:19 -0700 | [diff] [blame] | 112 | const char *dtype = resource < PCI_BRIDGE_RESOURCES ? "device" : "bridge"; |
Benjamin Herrenschmidt | 096e6f6 | 2008-10-20 15:07:37 +1100 | [diff] [blame] | 113 | dev_err(&dev->dev, "BAR %d: %s of %s %pR\n", |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 114 | resource, |
| 115 | root ? "address space collision on" : |
| 116 | "no parent found for", |
Benjamin Herrenschmidt | 096e6f6 | 2008-10-20 15:07:37 +1100 | [diff] [blame] | 117 | dtype, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | return err; |
| 121 | } |
Jesse Barnes | eaa959d | 2009-06-30 21:45:44 -0700 | [diff] [blame] | 122 | EXPORT_SYMBOL(pci_claim_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | |
Yuji Shimada | 32a9a682 | 2009-03-16 17:13:39 +0900 | [diff] [blame] | 124 | #ifdef CONFIG_PCI_QUIRKS |
| 125 | void pci_disable_bridge_window(struct pci_dev *dev) |
| 126 | { |
| 127 | dev_dbg(&dev->dev, "Disabling bridge window.\n"); |
| 128 | |
| 129 | /* MMIO Base/Limit */ |
| 130 | pci_write_config_dword(dev, PCI_MEMORY_BASE, 0x0000fff0); |
| 131 | |
| 132 | /* Prefetchable MMIO Base/Limit */ |
| 133 | pci_write_config_dword(dev, PCI_PREF_LIMIT_UPPER32, 0); |
| 134 | pci_write_config_dword(dev, PCI_PREF_MEMORY_BASE, 0x0000fff0); |
| 135 | pci_write_config_dword(dev, PCI_PREF_BASE_UPPER32, 0xffffffff); |
| 136 | } |
| 137 | #endif /* CONFIG_PCI_QUIRKS */ |
| 138 | |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 139 | static int __pci_assign_resource(struct pci_bus *bus, struct pci_dev *dev, |
| 140 | int resno) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | struct resource *res = dev->resource + resno; |
Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 143 | resource_size_t size, min, align; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | int ret; |
| 145 | |
Zhao, Yu | 022edd8 | 2008-10-13 19:24:28 +0800 | [diff] [blame] | 146 | size = resource_size(res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | min = (res->flags & IORESOURCE_IO) ? PCIBIOS_MIN_IO : PCIBIOS_MIN_MEM; |
Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 148 | align = pci_resource_alignment(dev, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | |
| 150 | /* First, try exact prefetching match.. */ |
| 151 | ret = pci_bus_alloc_resource(bus, res, size, align, min, |
| 152 | IORESOURCE_PREFETCH, |
| 153 | pcibios_align_resource, dev); |
| 154 | |
| 155 | if (ret < 0 && (res->flags & IORESOURCE_PREFETCH)) { |
| 156 | /* |
| 157 | * That failed. |
| 158 | * |
| 159 | * But a prefetching area can handle a non-prefetching |
| 160 | * window (it will just not perform as well). |
| 161 | */ |
| 162 | ret = pci_bus_alloc_resource(bus, res, size, align, min, 0, |
| 163 | pcibios_align_resource, dev); |
| 164 | } |
| 165 | |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 166 | if (!ret) { |
Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 167 | res->flags &= ~IORESOURCE_STARTALIGN; |
| 168 | if (resno < PCI_BRIDGE_RESOURCES) |
Yu Zhao | 14add80 | 2008-11-22 02:38:52 +0800 | [diff] [blame] | 169 | pci_update_resource(dev, resno); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | } |
| 171 | |
| 172 | return ret; |
| 173 | } |
| 174 | |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 175 | int pci_assign_resource(struct pci_dev *dev, int resno) |
| 176 | { |
| 177 | struct resource *res = dev->resource + resno; |
| 178 | resource_size_t align; |
| 179 | struct pci_bus *bus; |
| 180 | int ret; |
| 181 | |
Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 182 | align = pci_resource_alignment(dev, res); |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 183 | if (!align) { |
| 184 | dev_info(&dev->dev, "BAR %d: can't allocate resource (bogus " |
| 185 | "alignment) %pR flags %#lx\n", |
| 186 | resno, res, res->flags); |
| 187 | return -EINVAL; |
| 188 | } |
| 189 | |
| 190 | bus = dev->bus; |
| 191 | while ((ret = __pci_assign_resource(bus, dev, resno))) { |
| 192 | if (bus->parent && bus->self->transparent) |
| 193 | bus = bus->parent; |
| 194 | else |
| 195 | bus = NULL; |
| 196 | if (bus) |
| 197 | continue; |
| 198 | break; |
| 199 | } |
| 200 | |
| 201 | if (ret) |
| 202 | dev_info(&dev->dev, "BAR %d: can't allocate %s resource %pR\n", |
| 203 | resno, res->flags & IORESOURCE_IO ? "I/O" : "mem", res); |
| 204 | |
| 205 | return ret; |
| 206 | } |
| 207 | |
Adrian Bunk | 2baad5f | 2008-02-13 23:30:12 +0200 | [diff] [blame] | 208 | #if 0 |
Kumar Gala | 75acfeca | 2006-05-01 10:43:46 -0500 | [diff] [blame] | 209 | int pci_assign_resource_fixed(struct pci_dev *dev, int resno) |
| 210 | { |
| 211 | struct pci_bus *bus = dev->bus; |
| 212 | struct resource *res = dev->resource + resno; |
| 213 | unsigned int type_mask; |
| 214 | int i, ret = -EBUSY; |
| 215 | |
| 216 | type_mask = IORESOURCE_IO | IORESOURCE_MEM | IORESOURCE_PREFETCH; |
| 217 | |
| 218 | for (i = 0; i < PCI_BUS_NUM_RESOURCES; i++) { |
| 219 | struct resource *r = bus->resource[i]; |
| 220 | if (!r) |
| 221 | continue; |
| 222 | |
| 223 | /* type_mask must match */ |
| 224 | if ((res->flags ^ r->flags) & type_mask) |
| 225 | continue; |
| 226 | |
| 227 | ret = request_resource(r, res); |
| 228 | |
| 229 | if (ret == 0) |
| 230 | break; |
| 231 | } |
| 232 | |
| 233 | if (ret) { |
Benjamin Herrenschmidt | 096e6f6 | 2008-10-20 15:07:37 +1100 | [diff] [blame] | 234 | dev_err(&dev->dev, "BAR %d: can't allocate %s resource %pR\n", |
| 235 | resno, res->flags & IORESOURCE_IO ? "I/O" : "mem", res); |
Kumar Gala | 75acfeca | 2006-05-01 10:43:46 -0500 | [diff] [blame] | 236 | } else if (resno < PCI_BRIDGE_RESOURCES) { |
Yu Zhao | 14add80 | 2008-11-22 02:38:52 +0800 | [diff] [blame] | 237 | pci_update_resource(dev, resno); |
Kumar Gala | 75acfeca | 2006-05-01 10:43:46 -0500 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | return ret; |
| 241 | } |
| 242 | EXPORT_SYMBOL_GPL(pci_assign_resource_fixed); |
| 243 | #endif |
| 244 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | /* Sort resources by alignment */ |
Sam Ravnborg | 96bde06 | 2007-03-26 21:53:30 -0800 | [diff] [blame] | 246 | void pdev_sort_resources(struct pci_dev *dev, struct resource_list *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | { |
| 248 | int i; |
| 249 | |
| 250 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 251 | struct resource *r; |
| 252 | struct resource_list *list, *tmp; |
Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 253 | resource_size_t r_align; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | r = &dev->resource[i]; |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 256 | |
| 257 | if (r->flags & IORESOURCE_PCI_FIXED) |
| 258 | continue; |
| 259 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | if (!(r->flags) || r->parent) |
| 261 | continue; |
Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 262 | |
Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 263 | r_align = pci_resource_alignment(dev, r); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | if (!r_align) { |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 265 | dev_warn(&dev->dev, "BAR %d: bogus alignment " |
Benjamin Herrenschmidt | 096e6f6 | 2008-10-20 15:07:37 +1100 | [diff] [blame] | 266 | "%pR flags %#lx\n", |
| 267 | i, r, r->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | continue; |
| 269 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | for (list = head; ; list = list->next) { |
Greg Kroah-Hartman | e31dd6e | 2006-06-12 17:06:02 -0700 | [diff] [blame] | 271 | resource_size_t align = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | struct resource_list *ln = list->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 274 | if (ln) |
Chris Wright | 6faf17f | 2009-08-28 13:00:06 -0700 | [diff] [blame] | 275 | align = pci_resource_alignment(ln->dev, ln->res); |
Ivan Kokshaysky | 8845256 | 2008-03-30 19:50:14 +0400 | [diff] [blame] | 276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | if (r_align > align) { |
| 278 | tmp = kmalloc(sizeof(*tmp), GFP_KERNEL); |
| 279 | if (!tmp) |
| 280 | panic("pdev_sort_resources(): " |
| 281 | "kmalloc() failed!\n"); |
| 282 | tmp->next = ln; |
| 283 | tmp->res = r; |
| 284 | tmp->dev = dev; |
| 285 | list->next = tmp; |
| 286 | break; |
| 287 | } |
| 288 | } |
| 289 | } |
| 290 | } |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 291 | |
| 292 | int pci_enable_resources(struct pci_dev *dev, int mask) |
| 293 | { |
| 294 | u16 cmd, old_cmd; |
| 295 | int i; |
| 296 | struct resource *r; |
| 297 | |
| 298 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 299 | old_cmd = cmd; |
| 300 | |
| 301 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 302 | if (!(mask & (1 << i))) |
| 303 | continue; |
| 304 | |
| 305 | r = &dev->resource[i]; |
| 306 | |
| 307 | if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM))) |
| 308 | continue; |
| 309 | if ((i == PCI_ROM_RESOURCE) && |
| 310 | (!(r->flags & IORESOURCE_ROM_ENABLE))) |
| 311 | continue; |
| 312 | |
| 313 | if (!r->parent) { |
| 314 | dev_err(&dev->dev, "device not available because of " |
Benjamin Herrenschmidt | 096e6f6 | 2008-10-20 15:07:37 +1100 | [diff] [blame] | 315 | "BAR %d %pR collisions\n", i, r); |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 316 | return -EINVAL; |
| 317 | } |
| 318 | |
| 319 | if (r->flags & IORESOURCE_IO) |
| 320 | cmd |= PCI_COMMAND_IO; |
| 321 | if (r->flags & IORESOURCE_MEM) |
| 322 | cmd |= PCI_COMMAND_MEMORY; |
| 323 | } |
| 324 | |
| 325 | if (cmd != old_cmd) { |
| 326 | dev_info(&dev->dev, "enabling device (%04x -> %04x)\n", |
| 327 | old_cmd, cmd); |
| 328 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 329 | } |
| 330 | return 0; |
| 331 | } |