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> |
Paul Gortmaker | 363c75d | 2011-05-27 09:37:25 -0400 | [diff] [blame] | 21 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | #include <linux/pci.h> |
| 23 | #include <linux/errno.h> |
| 24 | #include <linux/ioport.h> |
| 25 | #include <linux/cache.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include "pci.h" |
| 28 | |
| 29 | |
Yu Zhao | 14add80 | 2008-11-22 02:38:52 +0800 | [diff] [blame] | 30 | void pci_update_resource(struct pci_dev *dev, int resno) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | { |
| 32 | struct pci_bus_region region; |
Bjorn Helgaas | 9aac537 | 2012-07-09 19:49:37 -0600 | [diff] [blame] | 33 | bool disable; |
| 34 | u16 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | u32 new, check, mask; |
| 36 | int reg; |
Yu Zhao | 613e7ed | 2008-11-22 02:41:27 +0800 | [diff] [blame] | 37 | enum pci_bar_type type; |
Yu Zhao | 14add80 | 2008-11-22 02:38:52 +0800 | [diff] [blame] | 38 | struct resource *res = dev->resource + resno; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 40 | /* |
| 41 | * Ignore resources for unimplemented BARs and unused resource slots |
| 42 | * for 64 bit BARs. |
| 43 | */ |
Ivan Kokshaysky | cf7bee5 | 2005-08-07 13:49:59 +0400 | [diff] [blame] | 44 | if (!res->flags) |
| 45 | return; |
| 46 | |
Bjorn Helgaas | cd8a4d3 | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 47 | if (res->flags & IORESOURCE_UNSET) |
| 48 | return; |
| 49 | |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 50 | /* |
| 51 | * Ignore non-moveable resources. This might be legacy resources for |
| 52 | * which no functional BAR register exists or another important |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 53 | * system resource we shouldn't move around. |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 54 | */ |
| 55 | if (res->flags & IORESOURCE_PCI_FIXED) |
| 56 | return; |
| 57 | |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 58 | pcibios_resource_to_bus(dev->bus, ®ion, res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Bjorn Helgaas | 9aac537 | 2012-07-09 19:49:37 -0600 | [diff] [blame] | 75 | /* |
| 76 | * We can't update a 64-bit BAR atomically, so when possible, |
| 77 | * disable decoding so that a half-updated BAR won't conflict |
| 78 | * with another device. |
| 79 | */ |
| 80 | disable = (res->flags & IORESOURCE_MEM_64) && !dev->mmio_always_on; |
| 81 | if (disable) { |
| 82 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 83 | pci_write_config_word(dev, PCI_COMMAND, |
| 84 | cmd & ~PCI_COMMAND_MEMORY); |
| 85 | } |
| 86 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | pci_write_config_dword(dev, reg, new); |
| 88 | pci_read_config_dword(dev, reg, &check); |
| 89 | |
| 90 | if ((new ^ check) & mask) { |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 91 | dev_err(&dev->dev, "BAR %d: error updating (%#08x != %#08x)\n", |
| 92 | resno, new, check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | } |
| 94 | |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 95 | if (res->flags & IORESOURCE_MEM_64) { |
Ivan Kokshaysky | cf7bee5 | 2005-08-07 13:49:59 +0400 | [diff] [blame] | 96 | new = region.start >> 16 >> 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | pci_write_config_dword(dev, reg + 4, new); |
| 98 | pci_read_config_dword(dev, reg + 4, &check); |
| 99 | if (check != new) { |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 100 | dev_err(&dev->dev, "BAR %d: error updating " |
| 101 | "(high %#08x != %#08x)\n", resno, new, check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | } |
Bjorn Helgaas | 9aac537 | 2012-07-09 19:49:37 -0600 | [diff] [blame] | 104 | |
| 105 | if (disable) |
| 106 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Sam Ravnborg | 96bde06 | 2007-03-26 21:53:30 -0800 | [diff] [blame] | 109 | int pci_claim_resource(struct pci_dev *dev, int resource) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | { |
| 111 | struct resource *res = &dev->resource[resource]; |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 112 | struct resource *root, *conflict; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | |
Bjorn Helgaas | 29003be | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 114 | if (res->flags & IORESOURCE_UNSET) { |
| 115 | dev_info(&dev->dev, "can't claim BAR %d %pR: no address assigned\n", |
| 116 | resource, res); |
| 117 | return -EINVAL; |
| 118 | } |
| 119 | |
Matthew Wilcox | cebd78a | 2009-06-17 16:33:33 -0400 | [diff] [blame] | 120 | root = pci_find_parent_resource(dev, res); |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 121 | if (!root) { |
Bjorn Helgaas | 29003be | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 122 | dev_info(&dev->dev, "can't claim BAR %d %pR: no compatible bridge window\n", |
| 123 | resource, res); |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 124 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 127 | conflict = request_resource_conflict(root, res); |
| 128 | if (conflict) { |
Bjorn Helgaas | 29003be | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 129 | dev_info(&dev->dev, "can't claim BAR %d %pR: address conflict with %s %pR\n", |
| 130 | resource, res, conflict->name, conflict); |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 131 | return -EBUSY; |
| 132 | } |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 133 | |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 134 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 | } |
Jesse Barnes | eaa959d | 2009-06-30 21:45:44 -0700 | [diff] [blame] | 136 | EXPORT_SYMBOL(pci_claim_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Yuji Shimada | 32a9a682 | 2009-03-16 17:13:39 +0900 | [diff] [blame] | 138 | void pci_disable_bridge_window(struct pci_dev *dev) |
| 139 | { |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 140 | dev_info(&dev->dev, "disabling bridge mem windows\n"); |
Yuji Shimada | 32a9a682 | 2009-03-16 17:13:39 +0900 | [diff] [blame] | 141 | |
| 142 | /* MMIO Base/Limit */ |
| 143 | pci_write_config_dword(dev, PCI_MEMORY_BASE, 0x0000fff0); |
| 144 | |
| 145 | /* Prefetchable MMIO Base/Limit */ |
| 146 | pci_write_config_dword(dev, PCI_PREF_LIMIT_UPPER32, 0); |
| 147 | pci_write_config_dword(dev, PCI_PREF_MEMORY_BASE, 0x0000fff0); |
| 148 | pci_write_config_dword(dev, PCI_PREF_BASE_UPPER32, 0xffffffff); |
| 149 | } |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 150 | |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 151 | /* |
| 152 | * Generic function that returns a value indicating that the device's |
| 153 | * original BIOS BAR address was not saved and so is not available for |
| 154 | * reinstatement. |
| 155 | * |
| 156 | * Can be over-ridden by architecture specific code that implements |
| 157 | * reinstatement functionality rather than leaving it disabled when |
| 158 | * normal allocation attempts fail. |
| 159 | */ |
| 160 | resource_size_t __weak pcibios_retrieve_fw_addr(struct pci_dev *dev, int idx) |
| 161 | { |
| 162 | return 0; |
| 163 | } |
| 164 | |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 165 | static int pci_revert_fw_address(struct resource *res, struct pci_dev *dev, |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 166 | int resno, resource_size_t size) |
| 167 | { |
| 168 | struct resource *root, *conflict; |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 169 | resource_size_t fw_addr, start, end; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 170 | int ret = 0; |
| 171 | |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 172 | fw_addr = pcibios_retrieve_fw_addr(dev, resno); |
| 173 | if (!fw_addr) |
| 174 | return 1; |
| 175 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 176 | start = res->start; |
| 177 | end = res->end; |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 178 | res->start = fw_addr; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 179 | res->end = res->start + size - 1; |
Myron Stowe | 351fc6d | 2011-11-21 11:54:07 -0700 | [diff] [blame] | 180 | |
| 181 | root = pci_find_parent_resource(dev, res); |
| 182 | if (!root) { |
| 183 | if (res->flags & IORESOURCE_IO) |
| 184 | root = &ioport_resource; |
| 185 | else |
| 186 | root = &iomem_resource; |
| 187 | } |
| 188 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 189 | dev_info(&dev->dev, "BAR %d: trying firmware assignment %pR\n", |
| 190 | resno, res); |
| 191 | conflict = request_resource_conflict(root, res); |
| 192 | if (conflict) { |
| 193 | dev_info(&dev->dev, |
| 194 | "BAR %d: %pR conflicts with %s %pR\n", resno, |
| 195 | res, conflict->name, conflict); |
| 196 | res->start = start; |
| 197 | res->end = end; |
| 198 | ret = 1; |
| 199 | } |
| 200 | return ret; |
| 201 | } |
| 202 | |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 203 | static int __pci_assign_resource(struct pci_bus *bus, struct pci_dev *dev, |
| 204 | int resno, resource_size_t size, resource_size_t align) |
| 205 | { |
| 206 | struct resource *res = dev->resource + resno; |
| 207 | resource_size_t min; |
| 208 | int ret; |
| 209 | |
| 210 | min = (res->flags & IORESOURCE_IO) ? PCIBIOS_MIN_IO : PCIBIOS_MIN_MEM; |
| 211 | |
| 212 | /* First, try exact prefetching match.. */ |
| 213 | ret = pci_bus_alloc_resource(bus, res, size, align, min, |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame^] | 214 | IORESOURCE_PREFETCH | IORESOURCE_MEM_64, |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 215 | pcibios_align_resource, dev); |
| 216 | |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame^] | 217 | if (ret < 0 && |
| 218 | (res->flags & (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) == |
| 219 | (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) { |
| 220 | /* |
| 221 | * That failed. |
| 222 | * |
| 223 | * Try 32bit pref |
| 224 | */ |
| 225 | ret = pci_bus_alloc_resource(bus, res, size, align, min, |
| 226 | IORESOURCE_PREFETCH, |
| 227 | pcibios_align_resource, dev); |
| 228 | } |
| 229 | |
| 230 | if (ret < 0 && |
| 231 | (res->flags & (IORESOURCE_PREFETCH | IORESOURCE_MEM_64))) { |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 232 | /* |
| 233 | * That failed. |
| 234 | * |
| 235 | * But a prefetching area can handle a non-prefetching |
| 236 | * window (it will just not perform as well). |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame^] | 237 | * |
| 238 | * Also can put 64bit under 32bit range. (below 4g). |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 239 | */ |
| 240 | ret = pci_bus_alloc_resource(bus, res, size, align, min, 0, |
| 241 | pcibios_align_resource, dev); |
| 242 | } |
| 243 | return ret; |
| 244 | } |
| 245 | |
Nikhil P Rao | d6776e6 | 2012-06-20 12:56:00 -0700 | [diff] [blame] | 246 | static int _pci_assign_resource(struct pci_dev *dev, int resno, |
| 247 | resource_size_t size, resource_size_t min_align) |
Yinghai Lu | d09ee968 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 248 | { |
| 249 | struct resource *res = dev->resource + resno; |
Yinghai Lu | d09ee968 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 250 | struct pci_bus *bus; |
| 251 | int ret; |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 252 | char *type; |
Yinghai Lu | d09ee968 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 253 | |
Yinghai Lu | d09ee968 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 254 | bus = dev->bus; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 255 | while ((ret = __pci_assign_resource(bus, dev, resno, size, min_align))) { |
| 256 | if (!bus->parent || !bus->self->transparent) |
| 257 | break; |
| 258 | bus = bus->parent; |
Yinghai Lu | d09ee968 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 259 | } |
| 260 | |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 261 | if (ret) { |
| 262 | if (res->flags & IORESOURCE_MEM) |
| 263 | if (res->flags & IORESOURCE_PREFETCH) |
| 264 | type = "mem pref"; |
| 265 | else |
| 266 | type = "mem"; |
| 267 | else if (res->flags & IORESOURCE_IO) |
| 268 | type = "io"; |
| 269 | else |
| 270 | type = "unknown"; |
| 271 | dev_info(&dev->dev, |
| 272 | "BAR %d: can't assign %s (size %#llx)\n", |
| 273 | resno, type, (unsigned long long) resource_size(res)); |
| 274 | } |
Yinghai Lu | d09ee968 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 275 | |
| 276 | return ret; |
| 277 | } |
| 278 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 279 | int pci_assign_resource(struct pci_dev *dev, int resno) |
| 280 | { |
| 281 | struct resource *res = dev->resource + resno; |
| 282 | resource_size_t align, size; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 283 | int ret; |
| 284 | |
Bjorn Helgaas | bd064f0 | 2014-02-26 11:25:58 -0700 | [diff] [blame] | 285 | res->flags |= IORESOURCE_UNSET; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 286 | align = pci_resource_alignment(dev, res); |
| 287 | if (!align) { |
| 288 | dev_info(&dev->dev, "BAR %d: can't assign %pR " |
| 289 | "(bogus alignment)\n", resno, res); |
| 290 | return -EINVAL; |
| 291 | } |
| 292 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 293 | size = resource_size(res); |
| 294 | ret = _pci_assign_resource(dev, resno, size, align); |
| 295 | |
| 296 | /* |
| 297 | * If we failed to assign anything, let's try the address |
| 298 | * where firmware left it. That at least has a chance of |
| 299 | * working, which is better than just leaving it disabled. |
| 300 | */ |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 301 | if (ret < 0) |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 302 | ret = pci_revert_fw_address(res, dev, resno, size); |
| 303 | |
| 304 | if (!ret) { |
Bjorn Helgaas | bd064f0 | 2014-02-26 11:25:58 -0700 | [diff] [blame] | 305 | res->flags &= ~IORESOURCE_UNSET; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 306 | res->flags &= ~IORESOURCE_STARTALIGN; |
| 307 | dev_info(&dev->dev, "BAR %d: assigned %pR\n", resno, res); |
| 308 | if (resno < PCI_BRIDGE_RESOURCES) |
| 309 | pci_update_resource(dev, resno); |
| 310 | } |
| 311 | return ret; |
| 312 | } |
| 313 | |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 314 | int pci_reassign_resource(struct pci_dev *dev, int resno, resource_size_t addsize, |
| 315 | resource_size_t min_align) |
| 316 | { |
| 317 | struct resource *res = dev->resource + resno; |
| 318 | resource_size_t new_size; |
| 319 | int ret; |
| 320 | |
Bjorn Helgaas | bd064f0 | 2014-02-26 11:25:58 -0700 | [diff] [blame] | 321 | res->flags |= IORESOURCE_UNSET; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 322 | if (!res->parent) { |
| 323 | dev_info(&dev->dev, "BAR %d: can't reassign an unassigned resource %pR " |
| 324 | "\n", resno, res); |
| 325 | return -EINVAL; |
| 326 | } |
| 327 | |
| 328 | /* already aligned with min_align */ |
| 329 | new_size = resource_size(res) + addsize; |
| 330 | ret = _pci_assign_resource(dev, resno, new_size, min_align); |
| 331 | if (!ret) { |
Bjorn Helgaas | bd064f0 | 2014-02-26 11:25:58 -0700 | [diff] [blame] | 332 | res->flags &= ~IORESOURCE_UNSET; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 333 | res->flags &= ~IORESOURCE_STARTALIGN; |
| 334 | dev_info(&dev->dev, "BAR %d: reassigned %pR\n", resno, res); |
| 335 | if (resno < PCI_BRIDGE_RESOURCES) |
| 336 | pci_update_resource(dev, resno); |
| 337 | } |
| 338 | return ret; |
| 339 | } |
| 340 | |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 341 | int pci_enable_resources(struct pci_dev *dev, int mask) |
| 342 | { |
| 343 | u16 cmd, old_cmd; |
| 344 | int i; |
| 345 | struct resource *r; |
| 346 | |
| 347 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 348 | old_cmd = cmd; |
| 349 | |
| 350 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 351 | if (!(mask & (1 << i))) |
| 352 | continue; |
| 353 | |
| 354 | r = &dev->resource[i]; |
| 355 | |
| 356 | if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM))) |
| 357 | continue; |
| 358 | if ((i == PCI_ROM_RESOURCE) && |
| 359 | (!(r->flags & IORESOURCE_ROM_ENABLE))) |
| 360 | continue; |
| 361 | |
Bjorn Helgaas | 3cedcc3 | 2014-02-26 11:26:00 -0700 | [diff] [blame] | 362 | if (r->flags & IORESOURCE_UNSET) { |
| 363 | dev_err(&dev->dev, "can't enable device: BAR %d %pR not assigned\n", |
| 364 | i, r); |
| 365 | return -EINVAL; |
| 366 | } |
| 367 | |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 368 | if (!r->parent) { |
Bjorn Helgaas | 3cedcc3 | 2014-02-26 11:26:00 -0700 | [diff] [blame] | 369 | dev_err(&dev->dev, "can't enable device: BAR %d %pR not claimed\n", |
| 370 | i, r); |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 371 | return -EINVAL; |
| 372 | } |
| 373 | |
| 374 | if (r->flags & IORESOURCE_IO) |
| 375 | cmd |= PCI_COMMAND_IO; |
| 376 | if (r->flags & IORESOURCE_MEM) |
| 377 | cmd |= PCI_COMMAND_MEMORY; |
| 378 | } |
| 379 | |
| 380 | if (cmd != old_cmd) { |
| 381 | dev_info(&dev->dev, "enabling device (%04x -> %04x)\n", |
| 382 | old_cmd, cmd); |
| 383 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 384 | } |
| 385 | return 0; |
| 386 | } |