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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/kernel.h> |
Paul Gortmaker | 363c75d | 2011-05-27 09:37:25 -0400 | [diff] [blame] | 20 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Bjorn Helgaas | 6a5f3e6 | 2017-03-17 00:48:22 +0000 | [diff] [blame] | 28 | static void pci_std_update_resource(struct pci_dev *dev, int resno) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | { |
| 30 | struct pci_bus_region region; |
Bjorn Helgaas | 9aac537 | 2012-07-09 19:49:37 -0600 | [diff] [blame] | 31 | bool disable; |
| 32 | u16 cmd; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | u32 new, check, mask; |
| 34 | int reg; |
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 | |
Bjorn Helgaas | 3d58444 | 2017-03-17 00:48:24 +0000 | [diff] [blame] | 37 | /* Per SR-IOV spec 3.4.1.11, VF BARs are RO zero */ |
| 38 | if (dev->is_virtfn) |
Wei Yang | 70675e0 | 2015-07-29 16:52:58 +0800 | [diff] [blame] | 39 | return; |
Wei Yang | 70675e0 | 2015-07-29 16:52:58 +0800 | [diff] [blame] | 40 | |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 41 | /* |
| 42 | * Ignore resources for unimplemented BARs and unused resource slots |
| 43 | * for 64 bit BARs. |
| 44 | */ |
Ivan Kokshaysky | cf7bee5 | 2005-08-07 13:49:59 +0400 | [diff] [blame] | 45 | if (!res->flags) |
| 46 | return; |
| 47 | |
Bjorn Helgaas | cd8a4d3 | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 48 | if (res->flags & IORESOURCE_UNSET) |
| 49 | return; |
| 50 | |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 51 | /* |
| 52 | * Ignore non-moveable resources. This might be legacy resources for |
| 53 | * which no functional BAR register exists or another important |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 54 | * system resource we shouldn't move around. |
Ralf Baechle | fb0f2b4 | 2006-12-19 13:12:08 -0800 | [diff] [blame] | 55 | */ |
| 56 | if (res->flags & IORESOURCE_PCI_FIXED) |
| 57 | return; |
| 58 | |
Yinghai Lu | fc27985 | 2013-12-09 22:54:40 -0800 | [diff] [blame] | 59 | pcibios_resource_to_bus(dev->bus, ®ion, res); |
Bjorn Helgaas | 74cce81 | 2017-03-17 00:48:24 +0000 | [diff] [blame] | 60 | new = region.start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Bjorn Helgaas | 74cce81 | 2017-03-17 00:48:24 +0000 | [diff] [blame] | 62 | if (res->flags & IORESOURCE_IO) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | mask = (u32)PCI_BASE_ADDRESS_IO_MASK; |
Bjorn Helgaas | 74cce81 | 2017-03-17 00:48:24 +0000 | [diff] [blame] | 64 | new |= res->flags & ~PCI_BASE_ADDRESS_IO_MASK; |
| 65 | } else if (resno == PCI_ROM_RESOURCE) { |
| 66 | mask = (u32)PCI_ROM_ADDRESS_MASK; |
| 67 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | mask = (u32)PCI_BASE_ADDRESS_MEM_MASK; |
Bjorn Helgaas | 74cce81 | 2017-03-17 00:48:24 +0000 | [diff] [blame] | 69 | new |= res->flags & ~PCI_BASE_ADDRESS_MEM_MASK; |
| 70 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | |
Bjorn Helgaas | 7b65c3a | 2017-03-17 00:48:23 +0000 | [diff] [blame] | 72 | if (resno < PCI_ROM_RESOURCE) { |
| 73 | reg = PCI_BASE_ADDRESS_0 + 4 * resno; |
| 74 | } else if (resno == PCI_ROM_RESOURCE) { |
Bjorn Helgaas | ed09d21 | 2017-03-17 00:48:23 +0000 | [diff] [blame] | 75 | |
| 76 | /* |
| 77 | * Apparently some Matrox devices have ROM BARs that read |
| 78 | * as zero when disabled, so don't update ROM BARs unless |
| 79 | * they're enabled. See https://lkml.org/lkml/2005/8/30/138. |
| 80 | */ |
Linus Torvalds | 755528c | 2005-08-26 10:49:22 -0700 | [diff] [blame] | 81 | if (!(res->flags & IORESOURCE_ROM_ENABLE)) |
| 82 | return; |
Bjorn Helgaas | 7b65c3a | 2017-03-17 00:48:23 +0000 | [diff] [blame] | 83 | |
| 84 | reg = dev->rom_base_reg; |
Linus Torvalds | 755528c | 2005-08-26 10:49:22 -0700 | [diff] [blame] | 85 | new |= PCI_ROM_ADDRESS_ENABLE; |
Bjorn Helgaas | 7b65c3a | 2017-03-17 00:48:23 +0000 | [diff] [blame] | 86 | } else |
| 87 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Bjorn Helgaas | 9aac537 | 2012-07-09 19:49:37 -0600 | [diff] [blame] | 89 | /* |
| 90 | * We can't update a 64-bit BAR atomically, so when possible, |
| 91 | * disable decoding so that a half-updated BAR won't conflict |
| 92 | * with another device. |
| 93 | */ |
| 94 | disable = (res->flags & IORESOURCE_MEM_64) && !dev->mmio_always_on; |
| 95 | if (disable) { |
| 96 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 97 | pci_write_config_word(dev, PCI_COMMAND, |
| 98 | cmd & ~PCI_COMMAND_MEMORY); |
| 99 | } |
| 100 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | pci_write_config_dword(dev, reg, new); |
| 102 | pci_read_config_dword(dev, reg, &check); |
| 103 | |
| 104 | if ((new ^ check) & mask) { |
Bjorn Helgaas | 80ccba1 | 2008-06-13 10:52:11 -0600 | [diff] [blame] | 105 | dev_err(&dev->dev, "BAR %d: error updating (%#08x != %#08x)\n", |
| 106 | resno, new, check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Bjorn Helgaas | 28c6821 | 2011-06-14 13:04:35 -0600 | [diff] [blame] | 109 | if (res->flags & IORESOURCE_MEM_64) { |
Ivan Kokshaysky | cf7bee5 | 2005-08-07 13:49:59 +0400 | [diff] [blame] | 110 | new = region.start >> 16 >> 16; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | pci_write_config_dword(dev, reg + 4, new); |
| 112 | pci_read_config_dword(dev, reg + 4, &check); |
| 113 | if (check != new) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 114 | dev_err(&dev->dev, "BAR %d: error updating (high %#08x != %#08x)\n", |
| 115 | resno, new, check); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | } |
| 117 | } |
Bjorn Helgaas | 9aac537 | 2012-07-09 19:49:37 -0600 | [diff] [blame] | 118 | |
| 119 | if (disable) |
| 120 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | } |
| 122 | |
Bjorn Helgaas | 6a5f3e6 | 2017-03-17 00:48:22 +0000 | [diff] [blame] | 123 | void pci_update_resource(struct pci_dev *dev, int resno) |
| 124 | { |
| 125 | if (resno <= PCI_ROM_RESOURCE) |
| 126 | pci_std_update_resource(dev, resno); |
| 127 | #ifdef CONFIG_PCI_IOV |
| 128 | else if (resno >= PCI_IOV_RESOURCES && resno <= PCI_IOV_RESOURCE_END) |
| 129 | pci_iov_update_resource(dev, resno); |
| 130 | #endif |
| 131 | } |
| 132 | |
Sam Ravnborg | 96bde06 | 2007-03-26 21:53:30 -0800 | [diff] [blame] | 133 | int pci_claim_resource(struct pci_dev *dev, int resource) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | { |
| 135 | struct resource *res = &dev->resource[resource]; |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 136 | struct resource *root, *conflict; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Bjorn Helgaas | 29003be | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 138 | if (res->flags & IORESOURCE_UNSET) { |
| 139 | dev_info(&dev->dev, "can't claim BAR %d %pR: no address assigned\n", |
| 140 | resource, res); |
| 141 | return -EINVAL; |
| 142 | } |
| 143 | |
Bjorn Helgaas | 16d917b | 2016-11-08 14:25:24 -0600 | [diff] [blame] | 144 | /* |
| 145 | * If we have a shadow copy in RAM, the PCI device doesn't respond |
| 146 | * to the shadow range, so we don't need to claim it, and upstream |
| 147 | * bridges don't need to route the range to the device. |
| 148 | */ |
| 149 | if (res->flags & IORESOURCE_ROM_SHADOW) |
| 150 | return 0; |
| 151 | |
Matthew Wilcox | cebd78a | 2009-06-17 16:33:33 -0400 | [diff] [blame] | 152 | root = pci_find_parent_resource(dev, res); |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 153 | if (!root) { |
Bjorn Helgaas | 29003be | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 154 | dev_info(&dev->dev, "can't claim BAR %d %pR: no compatible bridge window\n", |
| 155 | resource, res); |
Bjorn Helgaas | c770cb4 | 2015-03-12 12:30:06 -0500 | [diff] [blame] | 156 | res->flags |= IORESOURCE_UNSET; |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 157 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 160 | conflict = request_resource_conflict(root, res); |
| 161 | if (conflict) { |
Bjorn Helgaas | 29003be | 2014-02-26 11:25:59 -0700 | [diff] [blame] | 162 | dev_info(&dev->dev, "can't claim BAR %d %pR: address conflict with %s %pR\n", |
| 163 | resource, res, conflict->name, conflict); |
Bjorn Helgaas | c770cb4 | 2015-03-12 12:30:06 -0500 | [diff] [blame] | 164 | res->flags |= IORESOURCE_UNSET; |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 165 | return -EBUSY; |
| 166 | } |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 167 | |
Bjorn Helgaas | 966f3a7 | 2010-03-11 17:01:19 -0700 | [diff] [blame] | 168 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | } |
Jesse Barnes | eaa959d | 2009-06-30 21:45:44 -0700 | [diff] [blame] | 170 | EXPORT_SYMBOL(pci_claim_resource); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Yuji Shimada | 32a9a682 | 2009-03-16 17:13:39 +0900 | [diff] [blame] | 172 | void pci_disable_bridge_window(struct pci_dev *dev) |
| 173 | { |
Bjorn Helgaas | 865df57 | 2009-11-04 10:32:57 -0700 | [diff] [blame] | 174 | dev_info(&dev->dev, "disabling bridge mem windows\n"); |
Yuji Shimada | 32a9a682 | 2009-03-16 17:13:39 +0900 | [diff] [blame] | 175 | |
| 176 | /* MMIO Base/Limit */ |
| 177 | pci_write_config_dword(dev, PCI_MEMORY_BASE, 0x0000fff0); |
| 178 | |
| 179 | /* Prefetchable MMIO Base/Limit */ |
| 180 | pci_write_config_dword(dev, PCI_PREF_LIMIT_UPPER32, 0); |
| 181 | pci_write_config_dword(dev, PCI_PREF_MEMORY_BASE, 0x0000fff0); |
| 182 | pci_write_config_dword(dev, PCI_PREF_BASE_UPPER32, 0xffffffff); |
| 183 | } |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 184 | |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 185 | /* |
| 186 | * Generic function that returns a value indicating that the device's |
| 187 | * original BIOS BAR address was not saved and so is not available for |
| 188 | * reinstatement. |
| 189 | * |
| 190 | * Can be over-ridden by architecture specific code that implements |
| 191 | * reinstatement functionality rather than leaving it disabled when |
| 192 | * normal allocation attempts fail. |
| 193 | */ |
| 194 | resource_size_t __weak pcibios_retrieve_fw_addr(struct pci_dev *dev, int idx) |
| 195 | { |
| 196 | return 0; |
| 197 | } |
| 198 | |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 199 | 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] | 200 | int resno, resource_size_t size) |
| 201 | { |
| 202 | struct resource *root, *conflict; |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 203 | resource_size_t fw_addr, start, end; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 204 | |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 205 | fw_addr = pcibios_retrieve_fw_addr(dev, resno); |
| 206 | if (!fw_addr) |
Bjorn Helgaas | 9477883 | 2014-07-08 16:00:42 -0600 | [diff] [blame] | 207 | return -ENOMEM; |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 208 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 209 | start = res->start; |
| 210 | end = res->end; |
Myron Stowe | 6535943f | 2011-11-21 11:54:19 -0700 | [diff] [blame] | 211 | res->start = fw_addr; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 212 | res->end = res->start + size - 1; |
Bjorn Helgaas | 0b26cd6 | 2015-09-21 18:26:45 -0500 | [diff] [blame] | 213 | res->flags &= ~IORESOURCE_UNSET; |
Myron Stowe | 351fc6d | 2011-11-21 11:54:07 -0700 | [diff] [blame] | 214 | |
| 215 | root = pci_find_parent_resource(dev, res); |
| 216 | if (!root) { |
| 217 | if (res->flags & IORESOURCE_IO) |
| 218 | root = &ioport_resource; |
| 219 | else |
| 220 | root = &iomem_resource; |
| 221 | } |
| 222 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 223 | dev_info(&dev->dev, "BAR %d: trying firmware assignment %pR\n", |
| 224 | resno, res); |
| 225 | conflict = request_resource_conflict(root, res); |
| 226 | if (conflict) { |
Bjorn Helgaas | 9477883 | 2014-07-08 16:00:42 -0600 | [diff] [blame] | 227 | dev_info(&dev->dev, "BAR %d: %pR conflicts with %s %pR\n", |
| 228 | resno, res, conflict->name, conflict); |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 229 | res->start = start; |
| 230 | res->end = end; |
Bjorn Helgaas | 0b26cd6 | 2015-09-21 18:26:45 -0500 | [diff] [blame] | 231 | res->flags |= IORESOURCE_UNSET; |
Bjorn Helgaas | 9477883 | 2014-07-08 16:00:42 -0600 | [diff] [blame] | 232 | return -EBUSY; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 233 | } |
Bjorn Helgaas | 9477883 | 2014-07-08 16:00:42 -0600 | [diff] [blame] | 234 | return 0; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 235 | } |
| 236 | |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 237 | static int __pci_assign_resource(struct pci_bus *bus, struct pci_dev *dev, |
| 238 | int resno, resource_size_t size, resource_size_t align) |
| 239 | { |
| 240 | struct resource *res = dev->resource + resno; |
| 241 | resource_size_t min; |
| 242 | int ret; |
| 243 | |
| 244 | min = (res->flags & IORESOURCE_IO) ? PCIBIOS_MIN_IO : PCIBIOS_MIN_MEM; |
| 245 | |
Bjorn Helgaas | 67d29b5 | 2014-05-19 18:32:18 -0600 | [diff] [blame] | 246 | /* |
| 247 | * First, try exact prefetching match. Even if a 64-bit |
| 248 | * prefetchable bridge window is below 4GB, we can't put a 32-bit |
| 249 | * prefetchable resource in it because pbus_size_mem() assumes a |
| 250 | * 64-bit window will contain no 32-bit resources. If we assign |
| 251 | * things differently than they were sized, not everything will fit. |
| 252 | */ |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 253 | ret = pci_bus_alloc_resource(bus, res, size, align, min, |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame] | 254 | IORESOURCE_PREFETCH | IORESOURCE_MEM_64, |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 255 | pcibios_align_resource, dev); |
Bjorn Helgaas | d3689df | 2014-05-19 18:39:07 -0600 | [diff] [blame] | 256 | if (ret == 0) |
| 257 | return 0; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 258 | |
Bjorn Helgaas | 67d29b5 | 2014-05-19 18:32:18 -0600 | [diff] [blame] | 259 | /* |
| 260 | * If the prefetchable window is only 32 bits wide, we can put |
| 261 | * 64-bit prefetchable resources in it. |
| 262 | */ |
Bjorn Helgaas | d3689df | 2014-05-19 18:39:07 -0600 | [diff] [blame] | 263 | if ((res->flags & (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) == |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame] | 264 | (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) { |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame] | 265 | ret = pci_bus_alloc_resource(bus, res, size, align, min, |
| 266 | IORESOURCE_PREFETCH, |
| 267 | pcibios_align_resource, dev); |
Bjorn Helgaas | d3689df | 2014-05-19 18:39:07 -0600 | [diff] [blame] | 268 | if (ret == 0) |
| 269 | return 0; |
Yinghai Lu | 5b28541 | 2014-05-19 17:01:55 -0600 | [diff] [blame] | 270 | } |
| 271 | |
Bjorn Helgaas | 67d29b5 | 2014-05-19 18:32:18 -0600 | [diff] [blame] | 272 | /* |
| 273 | * If we didn't find a better match, we can put any memory resource |
| 274 | * in a non-prefetchable window. If this resource is 32 bits and |
| 275 | * non-prefetchable, the first call already tried the only possibility |
| 276 | * so we don't need to try again. |
| 277 | */ |
| 278 | if (res->flags & (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 279 | ret = pci_bus_alloc_resource(bus, res, size, align, min, 0, |
| 280 | pcibios_align_resource, dev); |
Bjorn Helgaas | 67d29b5 | 2014-05-19 18:32:18 -0600 | [diff] [blame] | 281 | |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 282 | return ret; |
| 283 | } |
| 284 | |
Nikhil P Rao | d6776e6 | 2012-06-20 12:56:00 -0700 | [diff] [blame] | 285 | static int _pci_assign_resource(struct pci_dev *dev, int resno, |
| 286 | resource_size_t size, resource_size_t min_align) |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 287 | { |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 288 | struct pci_bus *bus; |
| 289 | int ret; |
| 290 | |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 291 | bus = dev->bus; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 292 | while ((ret = __pci_assign_resource(bus, dev, resno, size, min_align))) { |
| 293 | if (!bus->parent || !bus->self->transparent) |
| 294 | break; |
| 295 | bus = bus->parent; |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 296 | } |
| 297 | |
Yinghai Lu | d09ee96 | 2009-04-23 20:49:25 -0700 | [diff] [blame] | 298 | return ret; |
| 299 | } |
| 300 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 301 | int pci_assign_resource(struct pci_dev *dev, int resno) |
| 302 | { |
| 303 | struct resource *res = dev->resource + resno; |
| 304 | resource_size_t align, size; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 305 | int ret; |
| 306 | |
Bjorn Helgaas | 2ea4adf | 2016-03-01 10:58:04 -0600 | [diff] [blame] | 307 | if (res->flags & IORESOURCE_PCI_FIXED) |
| 308 | return 0; |
| 309 | |
Bjorn Helgaas | bd064f0 | 2014-02-26 11:25:58 -0700 | [diff] [blame] | 310 | res->flags |= IORESOURCE_UNSET; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 311 | align = pci_resource_alignment(dev, res); |
| 312 | if (!align) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 313 | dev_info(&dev->dev, "BAR %d: can't assign %pR (bogus alignment)\n", |
| 314 | resno, res); |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 315 | return -EINVAL; |
| 316 | } |
| 317 | |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 318 | size = resource_size(res); |
| 319 | ret = _pci_assign_resource(dev, resno, size, align); |
| 320 | |
| 321 | /* |
| 322 | * If we failed to assign anything, let's try the address |
| 323 | * where firmware left it. That at least has a chance of |
| 324 | * working, which is better than just leaving it disabled. |
| 325 | */ |
Bjorn Helgaas | 64da465 | 2014-07-08 16:04:22 -0600 | [diff] [blame] | 326 | if (ret < 0) { |
| 327 | dev_info(&dev->dev, "BAR %d: no space for %pR\n", resno, res); |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 328 | ret = pci_revert_fw_address(res, dev, resno, size); |
Bjorn Helgaas | 64da465 | 2014-07-08 16:04:22 -0600 | [diff] [blame] | 329 | } |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 330 | |
Bjorn Helgaas | 64da465 | 2014-07-08 16:04:22 -0600 | [diff] [blame] | 331 | if (ret < 0) { |
| 332 | dev_info(&dev->dev, "BAR %d: failed to assign %pR\n", resno, |
| 333 | res); |
Bjorn Helgaas | 28f6dbe | 2014-07-04 15:58:15 -0600 | [diff] [blame] | 334 | return ret; |
Bjorn Helgaas | 64da465 | 2014-07-08 16:04:22 -0600 | [diff] [blame] | 335 | } |
Bjorn Helgaas | 28f6dbe | 2014-07-04 15:58:15 -0600 | [diff] [blame] | 336 | |
| 337 | res->flags &= ~IORESOURCE_UNSET; |
| 338 | res->flags &= ~IORESOURCE_STARTALIGN; |
| 339 | dev_info(&dev->dev, "BAR %d: assigned %pR\n", resno, res); |
| 340 | if (resno < PCI_BRIDGE_RESOURCES) |
| 341 | pci_update_resource(dev, resno); |
| 342 | |
| 343 | return 0; |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 344 | } |
Ryan Desfosses | b7fe943 | 2014-04-25 14:32:25 -0600 | [diff] [blame] | 345 | EXPORT_SYMBOL(pci_assign_resource); |
Ram Pai | 2bbc694 | 2011-07-25 13:08:39 -0700 | [diff] [blame] | 346 | |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 347 | int pci_reassign_resource(struct pci_dev *dev, int resno, resource_size_t addsize, |
| 348 | resource_size_t min_align) |
| 349 | { |
| 350 | struct resource *res = dev->resource + resno; |
Guo Chao | c333770 | 2014-07-03 18:30:29 -0600 | [diff] [blame] | 351 | unsigned long flags; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 352 | resource_size_t new_size; |
| 353 | int ret; |
| 354 | |
Bjorn Helgaas | 2ea4adf | 2016-03-01 10:58:04 -0600 | [diff] [blame] | 355 | if (res->flags & IORESOURCE_PCI_FIXED) |
| 356 | return 0; |
| 357 | |
Guo Chao | c333770 | 2014-07-03 18:30:29 -0600 | [diff] [blame] | 358 | flags = res->flags; |
Bjorn Helgaas | bd064f0 | 2014-02-26 11:25:58 -0700 | [diff] [blame] | 359 | res->flags |= IORESOURCE_UNSET; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 360 | if (!res->parent) { |
Ryan Desfosses | 227f064 | 2014-04-18 20:13:50 -0400 | [diff] [blame] | 361 | dev_info(&dev->dev, "BAR %d: can't reassign an unassigned resource %pR\n", |
| 362 | resno, res); |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 363 | return -EINVAL; |
| 364 | } |
| 365 | |
| 366 | /* already aligned with min_align */ |
| 367 | new_size = resource_size(res) + addsize; |
| 368 | ret = _pci_assign_resource(dev, resno, new_size, min_align); |
Bjorn Helgaas | 28f6dbe | 2014-07-04 15:58:15 -0600 | [diff] [blame] | 369 | if (ret) { |
Guo Chao | c333770 | 2014-07-03 18:30:29 -0600 | [diff] [blame] | 370 | res->flags = flags; |
| 371 | dev_info(&dev->dev, "BAR %d: %pR (failed to expand by %#llx)\n", |
| 372 | resno, res, (unsigned long long) addsize); |
Bjorn Helgaas | 28f6dbe | 2014-07-04 15:58:15 -0600 | [diff] [blame] | 373 | return ret; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 374 | } |
Guo Chao | c333770 | 2014-07-03 18:30:29 -0600 | [diff] [blame] | 375 | |
Bjorn Helgaas | 28f6dbe | 2014-07-04 15:58:15 -0600 | [diff] [blame] | 376 | res->flags &= ~IORESOURCE_UNSET; |
| 377 | res->flags &= ~IORESOURCE_STARTALIGN; |
Bjorn Helgaas | 64da465 | 2014-07-08 16:04:22 -0600 | [diff] [blame] | 378 | dev_info(&dev->dev, "BAR %d: reassigned %pR (expanded by %#llx)\n", |
| 379 | resno, res, (unsigned long long) addsize); |
Bjorn Helgaas | 28f6dbe | 2014-07-04 15:58:15 -0600 | [diff] [blame] | 380 | if (resno < PCI_BRIDGE_RESOURCES) |
| 381 | pci_update_resource(dev, resno); |
| 382 | |
| 383 | return 0; |
Bjorn Helgaas | fe6dacd | 2012-07-11 17:05:43 -0600 | [diff] [blame] | 384 | } |
| 385 | |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 386 | int pci_enable_resources(struct pci_dev *dev, int mask) |
| 387 | { |
| 388 | u16 cmd, old_cmd; |
| 389 | int i; |
| 390 | struct resource *r; |
| 391 | |
| 392 | pci_read_config_word(dev, PCI_COMMAND, &cmd); |
| 393 | old_cmd = cmd; |
| 394 | |
| 395 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
| 396 | if (!(mask & (1 << i))) |
| 397 | continue; |
| 398 | |
| 399 | r = &dev->resource[i]; |
| 400 | |
| 401 | if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM))) |
| 402 | continue; |
| 403 | if ((i == PCI_ROM_RESOURCE) && |
| 404 | (!(r->flags & IORESOURCE_ROM_ENABLE))) |
| 405 | continue; |
| 406 | |
Bjorn Helgaas | 3cedcc3 | 2014-02-26 11:26:00 -0700 | [diff] [blame] | 407 | if (r->flags & IORESOURCE_UNSET) { |
| 408 | dev_err(&dev->dev, "can't enable device: BAR %d %pR not assigned\n", |
| 409 | i, r); |
| 410 | return -EINVAL; |
| 411 | } |
| 412 | |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 413 | if (!r->parent) { |
Bjorn Helgaas | 3cedcc3 | 2014-02-26 11:26:00 -0700 | [diff] [blame] | 414 | dev_err(&dev->dev, "can't enable device: BAR %d %pR not claimed\n", |
| 415 | i, r); |
Bjorn Helgaas | 842de40 | 2008-03-04 11:56:47 -0700 | [diff] [blame] | 416 | return -EINVAL; |
| 417 | } |
| 418 | |
| 419 | if (r->flags & IORESOURCE_IO) |
| 420 | cmd |= PCI_COMMAND_IO; |
| 421 | if (r->flags & IORESOURCE_MEM) |
| 422 | cmd |= PCI_COMMAND_MEMORY; |
| 423 | } |
| 424 | |
| 425 | if (cmd != old_cmd) { |
| 426 | dev_info(&dev->dev, "enabling device (%04x -> %04x)\n", |
| 427 | old_cmd, cmd); |
| 428 | pci_write_config_word(dev, PCI_COMMAND, cmd); |
| 429 | } |
| 430 | return 0; |
| 431 | } |