blob: 3da2542eb4df673e79df50755d0ce3be34215087 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Gortmaker363c75d2011-05-27 09:37:25 -040021#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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 Zhao14add802008-11-22 02:38:52 +080030void pci_update_resource(struct pci_dev *dev, int resno)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031{
32 struct pci_bus_region region;
Bjorn Helgaas9aac5372012-07-09 19:49:37 -060033 bool disable;
34 u16 cmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 u32 new, check, mask;
36 int reg;
Yu Zhao613e7ed2008-11-22 02:41:27 +080037 enum pci_bar_type type;
Yu Zhao14add802008-11-22 02:38:52 +080038 struct resource *res = dev->resource + resno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Ralf Baechlefb0f2b42006-12-19 13:12:08 -080040 /*
41 * Ignore resources for unimplemented BARs and unused resource slots
42 * for 64 bit BARs.
43 */
Ivan Kokshayskycf7bee52005-08-07 13:49:59 +040044 if (!res->flags)
45 return;
46
Bjorn Helgaascd8a4d32014-02-26 11:25:59 -070047 if (res->flags & IORESOURCE_UNSET)
48 return;
49
Ralf Baechlefb0f2b42006-12-19 13:12:08 -080050 /*
51 * Ignore non-moveable resources. This might be legacy resources for
52 * which no functional BAR register exists or another important
Bjorn Helgaas80ccba12008-06-13 10:52:11 -060053 * system resource we shouldn't move around.
Ralf Baechlefb0f2b42006-12-19 13:12:08 -080054 */
55 if (res->flags & IORESOURCE_PCI_FIXED)
56 return;
57
Yinghai Lufc279852013-12-09 22:54:40 -080058 pcibios_resource_to_bus(dev->bus, &region, res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 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 Zhao613e7ed2008-11-22 02:41:27 +080066 reg = pci_resource_bar(dev, resno, &type);
67 if (!reg)
68 return;
69 if (type != pci_bar_unknown) {
Linus Torvalds755528c2005-08-26 10:49:22 -070070 if (!(res->flags & IORESOURCE_ROM_ENABLE))
71 return;
72 new |= PCI_ROM_ADDRESS_ENABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74
Bjorn Helgaas9aac5372012-07-09 19:49:37 -060075 /*
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 Torvalds1da177e2005-04-16 15:20:36 -070087 pci_write_config_dword(dev, reg, new);
88 pci_read_config_dword(dev, reg, &check);
89
90 if ((new ^ check) & mask) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -060091 dev_err(&dev->dev, "BAR %d: error updating (%#08x != %#08x)\n",
92 resno, new, check);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 }
94
Bjorn Helgaas28c68212011-06-14 13:04:35 -060095 if (res->flags & IORESOURCE_MEM_64) {
Ivan Kokshayskycf7bee52005-08-07 13:49:59 +040096 new = region.start >> 16 >> 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 pci_write_config_dword(dev, reg + 4, new);
98 pci_read_config_dword(dev, reg + 4, &check);
99 if (check != new) {
Bjorn Helgaas80ccba12008-06-13 10:52:11 -0600100 dev_err(&dev->dev, "BAR %d: error updating "
101 "(high %#08x != %#08x)\n", resno, new, check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 }
103 }
Bjorn Helgaas9aac5372012-07-09 19:49:37 -0600104
105 if (disable)
106 pci_write_config_word(dev, PCI_COMMAND, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
Sam Ravnborg96bde062007-03-26 21:53:30 -0800109int pci_claim_resource(struct pci_dev *dev, int resource)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
111 struct resource *res = &dev->resource[resource];
Bjorn Helgaas966f3a72010-03-11 17:01:19 -0700112 struct resource *root, *conflict;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Bjorn Helgaas29003be2014-02-26 11:25:59 -0700114 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 Wilcoxcebd78a2009-06-17 16:33:33 -0400120 root = pci_find_parent_resource(dev, res);
Bjorn Helgaas865df572009-11-04 10:32:57 -0700121 if (!root) {
Bjorn Helgaas29003be2014-02-26 11:25:59 -0700122 dev_info(&dev->dev, "can't claim BAR %d %pR: no compatible bridge window\n",
123 resource, res);
Bjorn Helgaas865df572009-11-04 10:32:57 -0700124 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
Bjorn Helgaas966f3a72010-03-11 17:01:19 -0700127 conflict = request_resource_conflict(root, res);
128 if (conflict) {
Bjorn Helgaas29003be2014-02-26 11:25:59 -0700129 dev_info(&dev->dev, "can't claim BAR %d %pR: address conflict with %s %pR\n",
130 resource, res, conflict->name, conflict);
Bjorn Helgaas966f3a72010-03-11 17:01:19 -0700131 return -EBUSY;
132 }
Bjorn Helgaas865df572009-11-04 10:32:57 -0700133
Bjorn Helgaas966f3a72010-03-11 17:01:19 -0700134 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135}
Jesse Barneseaa959d2009-06-30 21:45:44 -0700136EXPORT_SYMBOL(pci_claim_resource);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Yuji Shimada32a9a6822009-03-16 17:13:39 +0900138void pci_disable_bridge_window(struct pci_dev *dev)
139{
Bjorn Helgaas865df572009-11-04 10:32:57 -0700140 dev_info(&dev->dev, "disabling bridge mem windows\n");
Yuji Shimada32a9a6822009-03-16 17:13:39 +0900141
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 Pai2bbc6942011-07-25 13:08:39 -0700150
Myron Stowe6535943f2011-11-21 11:54:19 -0700151/*
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 */
160resource_size_t __weak pcibios_retrieve_fw_addr(struct pci_dev *dev, int idx)
161{
162 return 0;
163}
164
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700165static int pci_revert_fw_address(struct resource *res, struct pci_dev *dev,
Ram Pai2bbc6942011-07-25 13:08:39 -0700166 int resno, resource_size_t size)
167{
168 struct resource *root, *conflict;
Myron Stowe6535943f2011-11-21 11:54:19 -0700169 resource_size_t fw_addr, start, end;
Ram Pai2bbc6942011-07-25 13:08:39 -0700170 int ret = 0;
171
Myron Stowe6535943f2011-11-21 11:54:19 -0700172 fw_addr = pcibios_retrieve_fw_addr(dev, resno);
173 if (!fw_addr)
174 return 1;
175
Ram Pai2bbc6942011-07-25 13:08:39 -0700176 start = res->start;
177 end = res->end;
Myron Stowe6535943f2011-11-21 11:54:19 -0700178 res->start = fw_addr;
Ram Pai2bbc6942011-07-25 13:08:39 -0700179 res->end = res->start + size - 1;
Myron Stowe351fc6d2011-11-21 11:54:07 -0700180
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 Pai2bbc6942011-07-25 13:08:39 -0700189 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 Helgaasfe6dacd2012-07-11 17:05:43 -0600203static 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
Bjorn Helgaas67d29b52014-05-19 18:32:18 -0600212 /*
213 * First, try exact prefetching match. Even if a 64-bit
214 * prefetchable bridge window is below 4GB, we can't put a 32-bit
215 * prefetchable resource in it because pbus_size_mem() assumes a
216 * 64-bit window will contain no 32-bit resources. If we assign
217 * things differently than they were sized, not everything will fit.
218 */
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600219 ret = pci_bus_alloc_resource(bus, res, size, align, min,
Yinghai Lu5b285412014-05-19 17:01:55 -0600220 IORESOURCE_PREFETCH | IORESOURCE_MEM_64,
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600221 pcibios_align_resource, dev);
Bjorn Helgaasd3689df2014-05-19 18:39:07 -0600222 if (ret == 0)
223 return 0;
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600224
Bjorn Helgaas67d29b52014-05-19 18:32:18 -0600225 /*
226 * If the prefetchable window is only 32 bits wide, we can put
227 * 64-bit prefetchable resources in it.
228 */
Bjorn Helgaasd3689df2014-05-19 18:39:07 -0600229 if ((res->flags & (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) ==
Yinghai Lu5b285412014-05-19 17:01:55 -0600230 (IORESOURCE_PREFETCH | IORESOURCE_MEM_64)) {
Yinghai Lu5b285412014-05-19 17:01:55 -0600231 ret = pci_bus_alloc_resource(bus, res, size, align, min,
232 IORESOURCE_PREFETCH,
233 pcibios_align_resource, dev);
Bjorn Helgaasd3689df2014-05-19 18:39:07 -0600234 if (ret == 0)
235 return 0;
Yinghai Lu5b285412014-05-19 17:01:55 -0600236 }
237
Bjorn Helgaas67d29b52014-05-19 18:32:18 -0600238 /*
239 * If we didn't find a better match, we can put any memory resource
240 * in a non-prefetchable window. If this resource is 32 bits and
241 * non-prefetchable, the first call already tried the only possibility
242 * so we don't need to try again.
243 */
244 if (res->flags & (IORESOURCE_PREFETCH | IORESOURCE_MEM_64))
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600245 ret = pci_bus_alloc_resource(bus, res, size, align, min, 0,
246 pcibios_align_resource, dev);
Bjorn Helgaas67d29b52014-05-19 18:32:18 -0600247
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600248 return ret;
249}
250
Nikhil P Raod6776e62012-06-20 12:56:00 -0700251static int _pci_assign_resource(struct pci_dev *dev, int resno,
252 resource_size_t size, resource_size_t min_align)
Yinghai Lud09ee962009-04-23 20:49:25 -0700253{
254 struct resource *res = dev->resource + resno;
Yinghai Lud09ee962009-04-23 20:49:25 -0700255 struct pci_bus *bus;
256 int ret;
Bjorn Helgaas865df572009-11-04 10:32:57 -0700257 char *type;
Yinghai Lud09ee962009-04-23 20:49:25 -0700258
Yinghai Lud09ee962009-04-23 20:49:25 -0700259 bus = dev->bus;
Ram Pai2bbc6942011-07-25 13:08:39 -0700260 while ((ret = __pci_assign_resource(bus, dev, resno, size, min_align))) {
261 if (!bus->parent || !bus->self->transparent)
262 break;
263 bus = bus->parent;
Yinghai Lud09ee962009-04-23 20:49:25 -0700264 }
265
Bjorn Helgaas865df572009-11-04 10:32:57 -0700266 if (ret) {
267 if (res->flags & IORESOURCE_MEM)
268 if (res->flags & IORESOURCE_PREFETCH)
269 type = "mem pref";
270 else
271 type = "mem";
272 else if (res->flags & IORESOURCE_IO)
273 type = "io";
274 else
275 type = "unknown";
276 dev_info(&dev->dev,
277 "BAR %d: can't assign %s (size %#llx)\n",
278 resno, type, (unsigned long long) resource_size(res));
279 }
Yinghai Lud09ee962009-04-23 20:49:25 -0700280
281 return ret;
282}
283
Ram Pai2bbc6942011-07-25 13:08:39 -0700284int pci_assign_resource(struct pci_dev *dev, int resno)
285{
286 struct resource *res = dev->resource + resno;
287 resource_size_t align, size;
Ram Pai2bbc6942011-07-25 13:08:39 -0700288 int ret;
289
Bjorn Helgaasbd064f02014-02-26 11:25:58 -0700290 res->flags |= IORESOURCE_UNSET;
Ram Pai2bbc6942011-07-25 13:08:39 -0700291 align = pci_resource_alignment(dev, res);
292 if (!align) {
293 dev_info(&dev->dev, "BAR %d: can't assign %pR "
294 "(bogus alignment)\n", resno, res);
295 return -EINVAL;
296 }
297
Ram Pai2bbc6942011-07-25 13:08:39 -0700298 size = resource_size(res);
299 ret = _pci_assign_resource(dev, resno, size, align);
300
301 /*
302 * If we failed to assign anything, let's try the address
303 * where firmware left it. That at least has a chance of
304 * working, which is better than just leaving it disabled.
305 */
Myron Stowe6535943f2011-11-21 11:54:19 -0700306 if (ret < 0)
Ram Pai2bbc6942011-07-25 13:08:39 -0700307 ret = pci_revert_fw_address(res, dev, resno, size);
308
309 if (!ret) {
Bjorn Helgaasbd064f02014-02-26 11:25:58 -0700310 res->flags &= ~IORESOURCE_UNSET;
Ram Pai2bbc6942011-07-25 13:08:39 -0700311 res->flags &= ~IORESOURCE_STARTALIGN;
312 dev_info(&dev->dev, "BAR %d: assigned %pR\n", resno, res);
313 if (resno < PCI_BRIDGE_RESOURCES)
314 pci_update_resource(dev, resno);
315 }
316 return ret;
317}
318
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600319int pci_reassign_resource(struct pci_dev *dev, int resno, resource_size_t addsize,
320 resource_size_t min_align)
321{
322 struct resource *res = dev->resource + resno;
323 resource_size_t new_size;
324 int ret;
325
Bjorn Helgaasbd064f02014-02-26 11:25:58 -0700326 res->flags |= IORESOURCE_UNSET;
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600327 if (!res->parent) {
328 dev_info(&dev->dev, "BAR %d: can't reassign an unassigned resource %pR "
329 "\n", resno, res);
330 return -EINVAL;
331 }
332
333 /* already aligned with min_align */
334 new_size = resource_size(res) + addsize;
335 ret = _pci_assign_resource(dev, resno, new_size, min_align);
336 if (!ret) {
Bjorn Helgaasbd064f02014-02-26 11:25:58 -0700337 res->flags &= ~IORESOURCE_UNSET;
Bjorn Helgaasfe6dacd2012-07-11 17:05:43 -0600338 res->flags &= ~IORESOURCE_STARTALIGN;
339 dev_info(&dev->dev, "BAR %d: reassigned %pR\n", resno, res);
340 if (resno < PCI_BRIDGE_RESOURCES)
341 pci_update_resource(dev, resno);
342 }
343 return ret;
344}
345
Bjorn Helgaas842de402008-03-04 11:56:47 -0700346int pci_enable_resources(struct pci_dev *dev, int mask)
347{
348 u16 cmd, old_cmd;
349 int i;
350 struct resource *r;
351
352 pci_read_config_word(dev, PCI_COMMAND, &cmd);
353 old_cmd = cmd;
354
355 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
356 if (!(mask & (1 << i)))
357 continue;
358
359 r = &dev->resource[i];
360
361 if (!(r->flags & (IORESOURCE_IO | IORESOURCE_MEM)))
362 continue;
363 if ((i == PCI_ROM_RESOURCE) &&
364 (!(r->flags & IORESOURCE_ROM_ENABLE)))
365 continue;
366
Bjorn Helgaas3cedcc32014-02-26 11:26:00 -0700367 if (r->flags & IORESOURCE_UNSET) {
368 dev_err(&dev->dev, "can't enable device: BAR %d %pR not assigned\n",
369 i, r);
370 return -EINVAL;
371 }
372
Bjorn Helgaas842de402008-03-04 11:56:47 -0700373 if (!r->parent) {
Bjorn Helgaas3cedcc32014-02-26 11:26:00 -0700374 dev_err(&dev->dev, "can't enable device: BAR %d %pR not claimed\n",
375 i, r);
Bjorn Helgaas842de402008-03-04 11:56:47 -0700376 return -EINVAL;
377 }
378
379 if (r->flags & IORESOURCE_IO)
380 cmd |= PCI_COMMAND_IO;
381 if (r->flags & IORESOURCE_MEM)
382 cmd |= PCI_COMMAND_MEMORY;
383 }
384
385 if (cmd != old_cmd) {
386 dev_info(&dev->dev, "enabling device (%04x -> %04x)\n",
387 old_cmd, cmd);
388 pci_write_config_word(dev, PCI_COMMAND, cmd);
389 }
390 return 0;
391}