blob: 958da7db90331c44315f95ab90553c586d918c46 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/pci/setup-bus.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/*
13 * Nov 2000, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
14 * PCI-PCI bridges cleanup, sorted resource allocation.
15 * Feb 2002, Ivan Kokshaysky <ink@jurassic.park.msu.ru>
16 * Converted to allocation in 3 passes, which gives
17 * tighter packing. Prefetchable range support.
18 */
19
20#include <linux/init.h>
21#include <linux/kernel.h>
22#include <linux/module.h>
23#include <linux/pci.h>
24#include <linux/errno.h>
25#include <linux/ioport.h>
26#include <linux/cache.h>
27#include <linux/slab.h>
Rui Wang584c5c42016-08-17 16:00:34 +080028#include <linux/acpi.h>
Chris Wright6faf17f2009-08-28 13:00:06 -070029#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Bjorn Helgaas844393f2012-02-23 20:18:59 -070031unsigned int pci_flags;
Bjorn Helgaas47087702012-02-23 14:29:23 -070032
Yinghai Lubdc4abe2012-01-21 02:08:27 -080033struct pci_dev_resource {
34 struct list_head list;
Yinghai Lu2934a0d2012-01-21 02:08:26 -080035 struct resource *res;
36 struct pci_dev *dev;
Yinghai Lu568ddef2010-01-22 01:02:21 -080037 resource_size_t start;
38 resource_size_t end;
Ram Paic8adf9a2011-02-14 17:43:20 -080039 resource_size_t add_size;
Ram Pai2bbc6942011-07-25 13:08:39 -070040 resource_size_t min_align;
Yinghai Lu568ddef2010-01-22 01:02:21 -080041 unsigned long flags;
42};
43
Yinghai Lubffc56d2012-01-21 02:08:30 -080044static void free_list(struct list_head *head)
45{
46 struct pci_dev_resource *dev_res, *tmp;
47
48 list_for_each_entry_safe(dev_res, tmp, head, list) {
49 list_del(&dev_res->list);
50 kfree(dev_res);
51 }
52}
Ram Pai094732a2011-02-14 17:43:18 -080053
Ram Paic8adf9a2011-02-14 17:43:20 -080054/**
55 * add_to_list() - add a new resource tracker to the list
56 * @head: Head of the list
57 * @dev: device corresponding to which the resource
58 * belongs
59 * @res: The resource to be tracked
60 * @add_size: additional size to be optionally added
61 * to the resource
62 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -080063static int add_to_list(struct list_head *head,
Ram Paic8adf9a2011-02-14 17:43:20 -080064 struct pci_dev *dev, struct resource *res,
Ram Pai2bbc6942011-07-25 13:08:39 -070065 resource_size_t add_size, resource_size_t min_align)
Yinghai Lu568ddef2010-01-22 01:02:21 -080066{
Yinghai Lu764242a2012-01-21 02:08:28 -080067 struct pci_dev_resource *tmp;
Yinghai Lu568ddef2010-01-22 01:02:21 -080068
Yinghai Lubdc4abe2012-01-21 02:08:27 -080069 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
Yinghai Lu568ddef2010-01-22 01:02:21 -080070 if (!tmp) {
Ryan Desfosses3c78bc62014-04-18 20:13:49 -040071 pr_warn("add_to_list: kmalloc() failed!\n");
Yinghai Luef62dfe2012-01-21 02:08:18 -080072 return -ENOMEM;
Yinghai Lu568ddef2010-01-22 01:02:21 -080073 }
74
Yinghai Lu568ddef2010-01-22 01:02:21 -080075 tmp->res = res;
76 tmp->dev = dev;
77 tmp->start = res->start;
78 tmp->end = res->end;
79 tmp->flags = res->flags;
Ram Paic8adf9a2011-02-14 17:43:20 -080080 tmp->add_size = add_size;
Ram Pai2bbc6942011-07-25 13:08:39 -070081 tmp->min_align = min_align;
Yinghai Lubdc4abe2012-01-21 02:08:27 -080082
83 list_add(&tmp->list, head);
Yinghai Luef62dfe2012-01-21 02:08:18 -080084
85 return 0;
Yinghai Lu568ddef2010-01-22 01:02:21 -080086}
87
Yinghai Lub9b0bba2012-01-21 02:08:29 -080088static void remove_from_list(struct list_head *head,
Yinghai Lu3e6e0d82012-01-21 02:08:20 -080089 struct resource *res)
90{
Yinghai Lub9b0bba2012-01-21 02:08:29 -080091 struct pci_dev_resource *dev_res, *tmp;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -080092
Yinghai Lub9b0bba2012-01-21 02:08:29 -080093 list_for_each_entry_safe(dev_res, tmp, head, list) {
94 if (dev_res->res == res) {
95 list_del(&dev_res->list);
96 kfree(dev_res);
Yinghai Lubdc4abe2012-01-21 02:08:27 -080097 break;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -080098 }
Yinghai Lu3e6e0d82012-01-21 02:08:20 -080099 }
100}
101
Wei Yangd74b9022015-03-25 16:23:51 +0800102static struct pci_dev_resource *res_to_dev_res(struct list_head *head,
103 struct resource *res)
Yinghai Lu1c372352012-01-21 02:08:19 -0800104{
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800105 struct pci_dev_resource *dev_res;
Yinghai Lu1c372352012-01-21 02:08:19 -0800106
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800107 list_for_each_entry(dev_res, head, list) {
Bjorn Helgaas25e77382016-12-29 11:27:52 -0600108 if (dev_res->res == res)
Wei Yangd74b9022015-03-25 16:23:51 +0800109 return dev_res;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800110 }
Yinghai Lu1c372352012-01-21 02:08:19 -0800111
Wei Yangd74b9022015-03-25 16:23:51 +0800112 return NULL;
Yinghai Lu1c372352012-01-21 02:08:19 -0800113}
114
Wei Yangd74b9022015-03-25 16:23:51 +0800115static resource_size_t get_res_add_size(struct list_head *head,
116 struct resource *res)
117{
118 struct pci_dev_resource *dev_res;
119
120 dev_res = res_to_dev_res(head, res);
121 return dev_res ? dev_res->add_size : 0;
122}
123
124static resource_size_t get_res_add_align(struct list_head *head,
125 struct resource *res)
126{
127 struct pci_dev_resource *dev_res;
128
129 dev_res = res_to_dev_res(head, res);
130 return dev_res ? dev_res->min_align : 0;
131}
132
133
Yinghai Lu78c3b322012-01-21 02:08:25 -0800134/* Sort resources by alignment */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800135static void pdev_sort_resources(struct pci_dev *dev, struct list_head *head)
Yinghai Lu78c3b322012-01-21 02:08:25 -0800136{
137 int i;
138
139 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
140 struct resource *r;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800141 struct pci_dev_resource *dev_res, *tmp;
Yinghai Lu78c3b322012-01-21 02:08:25 -0800142 resource_size_t r_align;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800143 struct list_head *n;
Yinghai Lu78c3b322012-01-21 02:08:25 -0800144
145 r = &dev->resource[i];
146
147 if (r->flags & IORESOURCE_PCI_FIXED)
148 continue;
149
150 if (!(r->flags) || r->parent)
151 continue;
152
153 r_align = pci_resource_alignment(dev, r);
154 if (!r_align) {
155 dev_warn(&dev->dev, "BAR %d: %pR has bogus alignment\n",
156 i, r);
157 continue;
158 }
Yinghai Lu78c3b322012-01-21 02:08:25 -0800159
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800160 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
161 if (!tmp)
Ryan Desfosses227f0642014-04-18 20:13:50 -0400162 panic("pdev_sort_resources(): kmalloc() failed!\n");
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800163 tmp->res = r;
164 tmp->dev = dev;
165
166 /* fallback is smallest one or list is empty*/
167 n = head;
168 list_for_each_entry(dev_res, head, list) {
169 resource_size_t align;
170
171 align = pci_resource_alignment(dev_res->dev,
172 dev_res->res);
Yinghai Lu78c3b322012-01-21 02:08:25 -0800173
174 if (r_align > align) {
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800175 n = &dev_res->list;
Yinghai Lu78c3b322012-01-21 02:08:25 -0800176 break;
177 }
178 }
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800179 /* Insert it just before n*/
180 list_add_tail(&tmp->list, n);
Yinghai Lu78c3b322012-01-21 02:08:25 -0800181 }
182}
183
Yinghai Lu6841ec62010-01-22 01:02:25 -0800184static void __dev_sort_resources(struct pci_dev *dev,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800185 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186{
Yinghai Lu6841ec62010-01-22 01:02:25 -0800187 u16 class = dev->class >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Yinghai Lu6841ec62010-01-22 01:02:25 -0800189 /* Don't touch classless devices or host bridges or ioapics. */
190 if (class == PCI_CLASS_NOT_DEFINED || class == PCI_CLASS_BRIDGE_HOST)
191 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Yinghai Lu6841ec62010-01-22 01:02:25 -0800193 /* Don't touch ioapic devices already enabled by firmware */
194 if (class == PCI_CLASS_SYSTEM_PIC) {
195 u16 command;
196 pci_read_config_word(dev, PCI_COMMAND, &command);
197 if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
198 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 }
200
Yinghai Lu6841ec62010-01-22 01:02:25 -0800201 pdev_sort_resources(dev, head);
202}
203
Ram Paifc075e12011-02-14 17:43:19 -0800204static inline void reset_resource(struct resource *res)
205{
206 res->start = 0;
207 res->end = 0;
208 res->flags = 0;
209}
210
Ram Paic8adf9a2011-02-14 17:43:20 -0800211/**
Ram Pai9e8bf932011-07-25 13:08:42 -0700212 * reassign_resources_sorted() - satisfy any additional resource requests
Ram Paic8adf9a2011-02-14 17:43:20 -0800213 *
Ram Pai9e8bf932011-07-25 13:08:42 -0700214 * @realloc_head : head of the list tracking requests requiring additional
Ram Paic8adf9a2011-02-14 17:43:20 -0800215 * resources
216 * @head : head of the list tracking requests with allocated
217 * resources
218 *
Ram Pai9e8bf932011-07-25 13:08:42 -0700219 * Walk through each element of the realloc_head and try to procure
Ram Paic8adf9a2011-02-14 17:43:20 -0800220 * additional resources for the element, provided the element
221 * is in the head list.
222 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800223static void reassign_resources_sorted(struct list_head *realloc_head,
224 struct list_head *head)
Ram Paic8adf9a2011-02-14 17:43:20 -0800225{
226 struct resource *res;
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800227 struct pci_dev_resource *add_res, *tmp;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800228 struct pci_dev_resource *dev_res;
Wei Yangd74b9022015-03-25 16:23:51 +0800229 resource_size_t add_size, align;
Ram Paic8adf9a2011-02-14 17:43:20 -0800230 int idx;
231
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800232 list_for_each_entry_safe(add_res, tmp, realloc_head, list) {
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800233 bool found_match = false;
234
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800235 res = add_res->res;
Ram Paic8adf9a2011-02-14 17:43:20 -0800236 /* skip resource that has been reset */
237 if (!res->flags)
238 goto out;
239
240 /* skip this resource if not found in head list */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800241 list_for_each_entry(dev_res, head, list) {
242 if (dev_res->res == res) {
243 found_match = true;
244 break;
245 }
Ram Paic8adf9a2011-02-14 17:43:20 -0800246 }
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800247 if (!found_match)/* just skip */
248 continue;
Ram Paic8adf9a2011-02-14 17:43:20 -0800249
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800250 idx = res - &add_res->dev->resource[0];
251 add_size = add_res->add_size;
Wei Yangd74b9022015-03-25 16:23:51 +0800252 align = add_res->min_align;
Ram Pai2bbc6942011-07-25 13:08:39 -0700253 if (!resource_size(res)) {
Wei Yangd74b9022015-03-25 16:23:51 +0800254 res->start = align;
Ram Pai2bbc6942011-07-25 13:08:39 -0700255 res->end = res->start + add_size - 1;
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800256 if (pci_assign_resource(add_res->dev, idx))
Ram Paic8adf9a2011-02-14 17:43:20 -0800257 reset_resource(res);
Ram Pai2bbc6942011-07-25 13:08:39 -0700258 } else {
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800259 res->flags |= add_res->flags &
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800260 (IORESOURCE_STARTALIGN|IORESOURCE_SIZEALIGN);
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800261 if (pci_reassign_resource(add_res->dev, idx,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800262 add_size, align))
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800263 dev_printk(KERN_DEBUG, &add_res->dev->dev,
Yinghai Lub5924432012-01-21 02:08:31 -0800264 "failed to add %llx res[%d]=%pR\n",
265 (unsigned long long)add_size,
266 idx, res);
Ram Paic8adf9a2011-02-14 17:43:20 -0800267 }
268out:
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800269 list_del(&add_res->list);
270 kfree(add_res);
Ram Paic8adf9a2011-02-14 17:43:20 -0800271 }
272}
273
274/**
275 * assign_requested_resources_sorted() - satisfy resource requests
276 *
277 * @head : head of the list tracking requests for resources
Wanpeng Li8356aad2012-06-15 21:15:49 +0800278 * @fail_head : head of the list tracking requests that could
Ram Paic8adf9a2011-02-14 17:43:20 -0800279 * not be allocated
280 *
281 * Satisfy resource requests of each element in the list. Add
282 * requests that could not satisfied to the failed_list.
283 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800284static void assign_requested_resources_sorted(struct list_head *head,
285 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -0800286{
287 struct resource *res;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800288 struct pci_dev_resource *dev_res;
Yinghai Lu6841ec62010-01-22 01:02:25 -0800289 int idx;
290
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800291 list_for_each_entry(dev_res, head, list) {
292 res = dev_res->res;
293 idx = res - &dev_res->dev->resource[0];
294 if (resource_size(res) &&
295 pci_assign_resource(dev_res->dev, idx)) {
Yinghai Lua3cb9992013-01-21 13:20:43 -0800296 if (fail_head) {
Yinghai Lu9a928662010-02-28 15:49:39 -0800297 /*
298 * if the failed res is for ROM BAR, and it will
299 * be enabled later, don't add it to the list
300 */
301 if (!((idx == PCI_ROM_RESOURCE) &&
302 (!(res->flags & IORESOURCE_ROM_ENABLE))))
Yinghai Lu67cc7e22012-01-21 02:08:32 -0800303 add_to_list(fail_head,
304 dev_res->dev, res,
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700305 0 /* don't care */,
306 0 /* don't care */);
Yinghai Lu9a928662010-02-28 15:49:39 -0800307 }
Ram Paifc075e12011-02-14 17:43:19 -0800308 reset_resource(res);
Rajesh Shah542df5d2005-04-28 00:25:50 -0700309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 }
311}
312
Yinghai Luaa914f52013-07-25 06:31:38 -0700313static unsigned long pci_fail_res_type_mask(struct list_head *fail_head)
314{
315 struct pci_dev_resource *fail_res;
316 unsigned long mask = 0;
317
318 /* check failed type */
319 list_for_each_entry(fail_res, fail_head, list)
320 mask |= fail_res->flags;
321
322 /*
323 * one pref failed resource will set IORESOURCE_MEM,
324 * as we can allocate pref in non-pref range.
325 * Will release all assigned non-pref sibling resources
326 * according to that bit.
327 */
328 return mask & (IORESOURCE_IO | IORESOURCE_MEM | IORESOURCE_PREFETCH);
329}
330
331static bool pci_need_to_release(unsigned long mask, struct resource *res)
332{
333 if (res->flags & IORESOURCE_IO)
334 return !!(mask & IORESOURCE_IO);
335
336 /* check pref at first */
337 if (res->flags & IORESOURCE_PREFETCH) {
338 if (mask & IORESOURCE_PREFETCH)
339 return true;
340 /* count pref if its parent is non-pref */
341 else if ((mask & IORESOURCE_MEM) &&
342 !(res->parent->flags & IORESOURCE_PREFETCH))
343 return true;
344 else
345 return false;
346 }
347
348 if (res->flags & IORESOURCE_MEM)
349 return !!(mask & IORESOURCE_MEM);
350
351 return false; /* should not get here */
352}
353
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800354static void __assign_resources_sorted(struct list_head *head,
355 struct list_head *realloc_head,
356 struct list_head *fail_head)
Ram Paic8adf9a2011-02-14 17:43:20 -0800357{
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800358 /*
359 * Should not assign requested resources at first.
360 * they could be adjacent, so later reassign can not reallocate
361 * them one by one in parent resource window.
Masanari Iida367fa982012-07-23 22:39:51 +0900362 * Try to assign requested + add_size at beginning
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800363 * if could do that, could get out early.
364 * if could not do that, we still try to assign requested at first,
365 * then try to reassign add_size for some resources.
Yinghai Luaa914f52013-07-25 06:31:38 -0700366 *
367 * Separate three resource type checking if we need to release
368 * assigned resource after requested + add_size try.
369 * 1. if there is io port assign fail, will release assigned
370 * io port.
371 * 2. if there is pref mmio assign fail, release assigned
372 * pref mmio.
373 * if assigned pref mmio's parent is non-pref mmio and there
374 * is non-pref mmio assign fail, will release that assigned
375 * pref mmio.
376 * 3. if there is non-pref mmio assign fail or pref mmio
377 * assigned fail, will release assigned non-pref mmio.
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800378 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800379 LIST_HEAD(save_head);
380 LIST_HEAD(local_fail_head);
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800381 struct pci_dev_resource *save_res;
Wei Yangd74b9022015-03-25 16:23:51 +0800382 struct pci_dev_resource *dev_res, *tmp_res, *dev_res2;
Yinghai Luaa914f52013-07-25 06:31:38 -0700383 unsigned long fail_type;
Wei Yangd74b9022015-03-25 16:23:51 +0800384 resource_size_t add_align, align;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800385
386 /* Check if optional add_size is there */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800387 if (!realloc_head || list_empty(realloc_head))
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800388 goto requested_and_reassign;
389
390 /* Save original start, end, flags etc at first */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800391 list_for_each_entry(dev_res, head, list) {
392 if (add_to_list(&save_head, dev_res->dev, dev_res->res, 0, 0)) {
Yinghai Lubffc56d2012-01-21 02:08:30 -0800393 free_list(&save_head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800394 goto requested_and_reassign;
395 }
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800396 }
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800397
398 /* Update res in head list with add_size in realloc_head list */
Wei Yangd74b9022015-03-25 16:23:51 +0800399 list_for_each_entry_safe(dev_res, tmp_res, head, list) {
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800400 dev_res->res->end += get_res_add_size(realloc_head,
401 dev_res->res);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800402
Wei Yangd74b9022015-03-25 16:23:51 +0800403 /*
404 * There are two kinds of additional resources in the list:
405 * 1. bridge resource -- IORESOURCE_STARTALIGN
406 * 2. SR-IOV resource -- IORESOURCE_SIZEALIGN
407 * Here just fix the additional alignment for bridge
408 */
409 if (!(dev_res->res->flags & IORESOURCE_STARTALIGN))
410 continue;
411
412 add_align = get_res_add_align(realloc_head, dev_res->res);
413
414 /*
415 * The "head" list is sorted by the alignment to make sure
416 * resources with bigger alignment will be assigned first.
417 * After we change the alignment of a dev_res in "head" list,
418 * we need to reorder the list by alignment to make it
419 * consistent.
420 */
421 if (add_align > dev_res->res->start) {
Yinghai Lu552bc942015-05-28 22:40:00 -0700422 resource_size_t r_size = resource_size(dev_res->res);
423
Wei Yangd74b9022015-03-25 16:23:51 +0800424 dev_res->res->start = add_align;
Yinghai Lu552bc942015-05-28 22:40:00 -0700425 dev_res->res->end = add_align + r_size - 1;
Wei Yangd74b9022015-03-25 16:23:51 +0800426
427 list_for_each_entry(dev_res2, head, list) {
428 align = pci_resource_alignment(dev_res2->dev,
429 dev_res2->res);
Wei Yanga6b65982015-05-19 14:24:17 +0800430 if (add_align > align) {
Wei Yangd74b9022015-03-25 16:23:51 +0800431 list_move_tail(&dev_res->list,
432 &dev_res2->list);
Wei Yanga6b65982015-05-19 14:24:17 +0800433 break;
434 }
Wei Yangd74b9022015-03-25 16:23:51 +0800435 }
Bogicevic Sasaff3ce482015-12-27 13:21:11 -0800436 }
Wei Yangd74b9022015-03-25 16:23:51 +0800437
438 }
439
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800440 /* Try updated head list with add_size added */
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800441 assign_requested_resources_sorted(head, &local_fail_head);
442
443 /* all assigned with add_size ? */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800444 if (list_empty(&local_fail_head)) {
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800445 /* Remove head list from realloc_head list */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800446 list_for_each_entry(dev_res, head, list)
447 remove_from_list(realloc_head, dev_res->res);
Yinghai Lubffc56d2012-01-21 02:08:30 -0800448 free_list(&save_head);
449 free_list(head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800450 return;
451 }
452
Yinghai Luaa914f52013-07-25 06:31:38 -0700453 /* check failed type */
454 fail_type = pci_fail_res_type_mask(&local_fail_head);
455 /* remove not need to be released assigned res from head list etc */
456 list_for_each_entry_safe(dev_res, tmp_res, head, list)
457 if (dev_res->res->parent &&
458 !pci_need_to_release(fail_type, dev_res->res)) {
459 /* remove it from realloc_head list */
460 remove_from_list(realloc_head, dev_res->res);
461 remove_from_list(&save_head, dev_res->res);
462 list_del(&dev_res->list);
463 kfree(dev_res);
464 }
465
Yinghai Lubffc56d2012-01-21 02:08:30 -0800466 free_list(&local_fail_head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800467 /* Release assigned resource */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800468 list_for_each_entry(dev_res, head, list)
469 if (dev_res->res->parent)
470 release_resource(dev_res->res);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800471 /* Restore start/end/flags from saved list */
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800472 list_for_each_entry(save_res, &save_head, list) {
473 struct resource *res = save_res->res;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800474
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800475 res->start = save_res->start;
476 res->end = save_res->end;
477 res->flags = save_res->flags;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800478 }
Yinghai Lubffc56d2012-01-21 02:08:30 -0800479 free_list(&save_head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800480
481requested_and_reassign:
Ram Paic8adf9a2011-02-14 17:43:20 -0800482 /* Satisfy the must-have resource requests */
483 assign_requested_resources_sorted(head, fail_head);
484
Ram Pai0a2daa12011-07-25 13:08:41 -0700485 /* Try to satisfy any additional optional resource
Ram Paic8adf9a2011-02-14 17:43:20 -0800486 requests */
Ram Pai9e8bf932011-07-25 13:08:42 -0700487 if (realloc_head)
488 reassign_resources_sorted(realloc_head, head);
Yinghai Lubffc56d2012-01-21 02:08:30 -0800489 free_list(head);
Ram Paic8adf9a2011-02-14 17:43:20 -0800490}
491
Yinghai Lu6841ec62010-01-22 01:02:25 -0800492static void pdev_assign_resources_sorted(struct pci_dev *dev,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800493 struct list_head *add_head,
494 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -0800495{
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800496 LIST_HEAD(head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800497
Yinghai Lu6841ec62010-01-22 01:02:25 -0800498 __dev_sort_resources(dev, &head);
Yinghai Lu8424d752012-01-21 02:08:21 -0800499 __assign_resources_sorted(&head, add_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800500
501}
502
503static void pbus_assign_resources_sorted(const struct pci_bus *bus,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800504 struct list_head *realloc_head,
505 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -0800506{
507 struct pci_dev *dev;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800508 LIST_HEAD(head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800509
Yinghai Lu6841ec62010-01-22 01:02:25 -0800510 list_for_each_entry(dev, &bus->devices, bus_list)
511 __dev_sort_resources(dev, &head);
512
Ram Pai9e8bf932011-07-25 13:08:42 -0700513 __assign_resources_sorted(&head, realloc_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800514}
515
Dominik Brodowskib3743fa2005-09-09 13:03:23 -0700516void pci_setup_cardbus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
518 struct pci_dev *bridge = bus->self;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600519 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 struct pci_bus_region region;
521
Yinghai Lub918c622012-05-17 18:51:11 -0700522 dev_info(&bridge->dev, "CardBus bridge to %pR\n",
523 &bus->busn_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600525 res = bus->resource[0];
Yinghai Lufc279852013-12-09 22:54:40 -0800526 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600527 if (res->flags & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
529 * The IO resource is allocated a range twice as large as it
530 * would normally need. This allows us to set both IO regs.
531 */
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600532 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
534 region.start);
535 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
536 region.end);
537 }
538
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600539 res = bus->resource[1];
Yinghai Lufc279852013-12-09 22:54:40 -0800540 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600541 if (res->flags & IORESOURCE_IO) {
542 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
544 region.start);
545 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
546 region.end);
547 }
548
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600549 res = bus->resource[2];
Yinghai Lufc279852013-12-09 22:54:40 -0800550 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600551 if (res->flags & IORESOURCE_MEM) {
552 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
554 region.start);
555 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
556 region.end);
557 }
558
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600559 res = bus->resource[3];
Yinghai Lufc279852013-12-09 22:54:40 -0800560 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600561 if (res->flags & IORESOURCE_MEM) {
562 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
564 region.start);
565 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
566 region.end);
567 }
568}
Dominik Brodowskib3743fa2005-09-09 13:03:23 -0700569EXPORT_SYMBOL(pci_setup_cardbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571/* Initialize bridges with base/limit values we have collected.
572 PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
573 requires that if there is no I/O ports or memory behind the
574 bridge, corresponding range must be turned off by writing base
575 value greater than limit to the bridge's base/limit registers.
576
577 Note: care must be taken when updating I/O base/limit registers
578 of bridges which support 32-bit I/O. This update requires two
579 config space writes, so it's quite possible that an I/O window of
580 the bridge will have some undesirable address (e.g. 0) after the
581 first write. Ditto 64-bit prefetchable MMIO. */
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600582static void pci_setup_bridge_io(struct pci_dev *bridge)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583{
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600584 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 struct pci_bus_region region;
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600586 unsigned long io_mask;
587 u8 io_base_lo, io_limit_lo;
Bjorn Helgaas5b764b82013-11-27 17:24:50 -0700588 u16 l;
589 u32 io_upper16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600591 io_mask = PCI_IO_RANGE_MASK;
592 if (bridge->io_window_1k)
593 io_mask = PCI_IO_1K_RANGE_MASK;
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 /* Set up the top and bottom of the PCI I/O segment for this bus. */
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600596 res = &bridge->resource[PCI_BRIDGE_RESOURCES + 0];
Yinghai Lufc279852013-12-09 22:54:40 -0800597 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600598 if (res->flags & IORESOURCE_IO) {
Bjorn Helgaas5b764b82013-11-27 17:24:50 -0700599 pci_read_config_word(bridge, PCI_IO_BASE, &l);
Bjorn Helgaas2b28ae12012-07-09 13:38:57 -0600600 io_base_lo = (region.start >> 8) & io_mask;
601 io_limit_lo = (region.end >> 8) & io_mask;
Bjorn Helgaas5b764b82013-11-27 17:24:50 -0700602 l = ((u16) io_limit_lo << 8) | io_base_lo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 /* Set up upper 16 bits of I/O base/limit. */
604 io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600605 dev_info(&bridge->dev, " bridge window %pR\n", res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800606 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 /* Clear upper 16 bits of I/O base/limit. */
608 io_upper16 = 0;
609 l = 0x00f0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611 /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
612 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
613 /* Update lower 16 bits of I/O base/limit. */
Bjorn Helgaas5b764b82013-11-27 17:24:50 -0700614 pci_write_config_word(bridge, PCI_IO_BASE, l);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /* Update upper 16 bits of I/O base/limit. */
616 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800617}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600619static void pci_setup_bridge_mmio(struct pci_dev *bridge)
Yinghai Lu7cc59972009-12-22 15:02:21 -0800620{
Yinghai Lu7cc59972009-12-22 15:02:21 -0800621 struct resource *res;
622 struct pci_bus_region region;
623 u32 l;
624
625 /* Set up the top and bottom of the PCI Memory segment for this bus. */
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600626 res = &bridge->resource[PCI_BRIDGE_RESOURCES + 1];
Yinghai Lufc279852013-12-09 22:54:40 -0800627 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600628 if (res->flags & IORESOURCE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 l = (region.start >> 16) & 0xfff0;
630 l |= region.end & 0xfff00000;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600631 dev_info(&bridge->dev, " bridge window %pR\n", res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800632 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 l = 0x0000fff0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 }
635 pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800636}
637
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600638static void pci_setup_bridge_mmio_pref(struct pci_dev *bridge)
Yinghai Lu7cc59972009-12-22 15:02:21 -0800639{
Yinghai Lu7cc59972009-12-22 15:02:21 -0800640 struct resource *res;
641 struct pci_bus_region region;
642 u32 l, bu, lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 /* Clear out the upper 32 bits of PREF limit.
645 If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
646 disables PREF range, which is ok. */
647 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
648
649 /* Set up PREF base/limit. */
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100650 bu = lu = 0;
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600651 res = &bridge->resource[PCI_BRIDGE_RESOURCES + 2];
Yinghai Lufc279852013-12-09 22:54:40 -0800652 pcibios_resource_to_bus(bridge->bus, &region, res);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600653 if (res->flags & IORESOURCE_PREFETCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 l = (region.start >> 16) & 0xfff0;
655 l |= region.end & 0xfff00000;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600656 if (res->flags & IORESOURCE_MEM_64) {
Yinghai Lu1f82de12009-04-23 20:48:32 -0700657 bu = upper_32_bits(region.start);
658 lu = upper_32_bits(region.end);
Yinghai Lu1f82de12009-04-23 20:48:32 -0700659 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600660 dev_info(&bridge->dev, " bridge window %pR\n", res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800661 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 l = 0x0000fff0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
664 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
665
Alex Williamson59353ea2009-11-30 14:51:44 -0700666 /* Set the upper 32 bits of PREF base & limit. */
667 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
668 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800669}
670
671static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
672{
673 struct pci_dev *bridge = bus->self;
674
Yinghai Lub918c622012-05-17 18:51:11 -0700675 dev_info(&bridge->dev, "PCI bridge to %pR\n",
676 &bus->busn_res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800677
678 if (type & IORESOURCE_IO)
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600679 pci_setup_bridge_io(bridge);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800680
681 if (type & IORESOURCE_MEM)
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600682 pci_setup_bridge_mmio(bridge);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800683
684 if (type & IORESOURCE_PREFETCH)
Yinghai Lu3f2f4dc2015-01-15 10:22:31 -0600685 pci_setup_bridge_mmio_pref(bridge);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
688}
689
Gavin Shand366d282016-05-20 16:41:25 +1000690void __weak pcibios_setup_bridge(struct pci_bus *bus, unsigned long type)
691{
692}
693
Benjamin Herrenschmidte2444272011-09-11 14:08:38 -0300694void pci_setup_bridge(struct pci_bus *bus)
Yinghai Lu7cc59972009-12-22 15:02:21 -0800695{
696 unsigned long type = IORESOURCE_IO | IORESOURCE_MEM |
697 IORESOURCE_PREFETCH;
698
Gavin Shand366d282016-05-20 16:41:25 +1000699 pcibios_setup_bridge(bus, type);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800700 __pci_setup_bridge(bus, type);
701}
702
Yinghai Lu8505e722015-01-15 16:21:49 -0600703
704int pci_claim_bridge_resource(struct pci_dev *bridge, int i)
705{
706 if (i < PCI_BRIDGE_RESOURCES || i > PCI_BRIDGE_RESOURCE_END)
707 return 0;
708
709 if (pci_claim_resource(bridge, i) == 0)
710 return 0; /* claimed the window */
711
712 if ((bridge->class >> 8) != PCI_CLASS_BRIDGE_PCI)
713 return 0;
714
715 if (!pci_bus_clip_resource(bridge, i))
716 return -EINVAL; /* clipping didn't change anything */
717
718 switch (i - PCI_BRIDGE_RESOURCES) {
719 case 0:
720 pci_setup_bridge_io(bridge);
721 break;
722 case 1:
723 pci_setup_bridge_mmio(bridge);
724 break;
725 case 2:
726 pci_setup_bridge_mmio_pref(bridge);
727 break;
728 default:
729 return -EINVAL;
730 }
731
732 if (pci_claim_resource(bridge, i) == 0)
733 return 0; /* claimed a smaller window */
734
735 return -EINVAL;
736}
737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738/* Check whether the bridge supports optional I/O and
739 prefetchable memory ranges. If not, the respective
740 base/limit registers must be read-only and read as 0. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800741static void pci_bridge_check_ranges(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 u16 io;
744 u32 pmem;
745 struct pci_dev *bridge = bus->self;
746 struct resource *b_res;
747
748 b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
749 b_res[1].flags |= IORESOURCE_MEM;
750
751 pci_read_config_word(bridge, PCI_IO_BASE, &io);
752 if (!io) {
Bjorn Helgaasd2f54d92013-11-27 15:31:07 -0700753 pci_write_config_word(bridge, PCI_IO_BASE, 0xe0f0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 pci_read_config_word(bridge, PCI_IO_BASE, &io);
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700755 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
756 }
757 if (io)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 b_res[0].flags |= IORESOURCE_IO;
Bjorn Helgaasd2f54d92013-11-27 15:31:07 -0700759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 /* DECchip 21050 pass 2 errata: the bridge may miss an address
761 disconnect boundary by one PCI data phase.
762 Workaround: do not use prefetching on this device. */
763 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
764 return;
Bjorn Helgaasd2f54d92013-11-27 15:31:07 -0700765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
767 if (!pmem) {
768 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
Bjorn Helgaasd2f54d92013-11-27 15:31:07 -0700769 0xffe0fff0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
771 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
772 }
Yinghai Lu1f82de12009-04-23 20:48:32 -0700773 if (pmem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
Yinghai Lu99586102010-01-22 01:02:28 -0800775 if ((pmem & PCI_PREF_RANGE_TYPE_MASK) ==
776 PCI_PREF_RANGE_TYPE_64) {
Yinghai Lu1f82de12009-04-23 20:48:32 -0700777 b_res[2].flags |= IORESOURCE_MEM_64;
Yinghai Lu99586102010-01-22 01:02:28 -0800778 b_res[2].flags |= PCI_PREF_RANGE_TYPE_64;
779 }
Yinghai Lu1f82de12009-04-23 20:48:32 -0700780 }
781
782 /* double check if bridge does support 64 bit pref */
783 if (b_res[2].flags & IORESOURCE_MEM_64) {
784 u32 mem_base_hi, tmp;
785 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32,
786 &mem_base_hi);
787 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
788 0xffffffff);
789 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
790 if (!tmp)
791 b_res[2].flags &= ~IORESOURCE_MEM_64;
792 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
793 mem_base_hi);
794 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797/* Helper function for sizing routines: find first available
798 bus resource of a given type. Note: we intentionally skip
799 the bus resources which have already been assigned (that is,
800 have non-NULL parent resource). */
Yinghai Lu5b285412014-05-19 17:01:55 -0600801static struct resource *find_free_bus_resource(struct pci_bus *bus,
802 unsigned long type_mask, unsigned long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
804 int i;
805 struct resource *r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700807 pci_bus_for_each_resource(bus, r, i) {
Ivan Kokshaysky299de032005-06-15 18:59:27 +0400808 if (r == &ioport_resource || r == &iomem_resource)
809 continue;
Jesse Barnes55a10982009-10-27 09:39:18 -0700810 if (r && (r->flags & type_mask) == type && !r->parent)
811 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813 return NULL;
814}
815
Ram Pai13583b12011-02-14 17:43:17 -0800816static resource_size_t calculate_iosize(resource_size_t size,
817 resource_size_t min_size,
818 resource_size_t size1,
819 resource_size_t old_size,
820 resource_size_t align)
821{
822 if (size < min_size)
823 size = min_size;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400824 if (old_size == 1)
Ram Pai13583b12011-02-14 17:43:17 -0800825 old_size = 0;
826 /* To be fixed in 2.5: we should have sort of HAVE_ISA
827 flag in the struct pci_bus. */
828#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
829 size = (size & 0xff) + ((size & ~0xffUL) << 2);
830#endif
831 size = ALIGN(size + size1, align);
832 if (size < old_size)
833 size = old_size;
834 return size;
835}
836
837static resource_size_t calculate_memsize(resource_size_t size,
838 resource_size_t min_size,
839 resource_size_t size1,
840 resource_size_t old_size,
841 resource_size_t align)
842{
843 if (size < min_size)
844 size = min_size;
Ryan Desfosses3c78bc62014-04-18 20:13:49 -0400845 if (old_size == 1)
Ram Pai13583b12011-02-14 17:43:17 -0800846 old_size = 0;
847 if (size < old_size)
848 size = old_size;
849 size = ALIGN(size + size1, align);
850 return size;
851}
852
Gavin Shanac5ad932012-09-11 16:59:45 -0600853resource_size_t __weak pcibios_window_alignment(struct pci_bus *bus,
854 unsigned long type)
855{
856 return 1;
857}
858
859#define PCI_P2P_DEFAULT_MEM_ALIGN 0x100000 /* 1MiB */
860#define PCI_P2P_DEFAULT_IO_ALIGN 0x1000 /* 4KiB */
861#define PCI_P2P_DEFAULT_IO_ALIGN_1K 0x400 /* 1KiB */
862
863static resource_size_t window_alignment(struct pci_bus *bus,
864 unsigned long type)
865{
866 resource_size_t align = 1, arch_align;
867
868 if (type & IORESOURCE_MEM)
869 align = PCI_P2P_DEFAULT_MEM_ALIGN;
870 else if (type & IORESOURCE_IO) {
871 /*
872 * Per spec, I/O windows are 4K-aligned, but some
873 * bridges have an extension to support 1K alignment.
874 */
875 if (bus->self->io_window_1k)
876 align = PCI_P2P_DEFAULT_IO_ALIGN_1K;
877 else
878 align = PCI_P2P_DEFAULT_IO_ALIGN;
879 }
880
881 arch_align = pcibios_window_alignment(bus, type);
882 return max(align, arch_align);
883}
884
Ram Paic8adf9a2011-02-14 17:43:20 -0800885/**
886 * pbus_size_io() - size the io window of a given bus
887 *
888 * @bus : the bus
889 * @min_size : the minimum io window that must to be allocated
890 * @add_size : additional optional io window
Ram Pai9e8bf932011-07-25 13:08:42 -0700891 * @realloc_head : track the additional io window on this list
Ram Paic8adf9a2011-02-14 17:43:20 -0800892 *
893 * Sizing the IO windows of the PCI-PCI bridge is trivial,
Yinghai Lufd591342012-07-09 19:55:29 -0600894 * since these windows have 1K or 4K granularity and the IO ranges
Ram Paic8adf9a2011-02-14 17:43:20 -0800895 * of non-bridge PCI devices are limited to 256 bytes.
896 * We must be careful with the ISA aliasing though.
897 */
898static void pbus_size_io(struct pci_bus *bus, resource_size_t min_size,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800899 resource_size_t add_size, struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
901 struct pci_dev *dev;
Yinghai Lu5b285412014-05-19 17:01:55 -0600902 struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO,
903 IORESOURCE_IO);
Wei Yang11251a82013-08-02 17:31:05 +0800904 resource_size_t size = 0, size0 = 0, size1 = 0;
Yinghai Lube768912011-07-25 13:08:38 -0700905 resource_size_t children_add_size = 0;
Bjorn Helgaas2d1d6672013-08-05 16:15:10 -0600906 resource_size_t min_align, align;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!b_res)
Bjorn Helgaasf7625982013-11-14 11:28:18 -0700909 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Bjorn Helgaas2d1d6672013-08-05 16:15:10 -0600911 min_align = window_alignment(bus, IORESOURCE_IO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 list_for_each_entry(dev, &bus->devices, bus_list) {
913 int i;
914
915 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
916 struct resource *r = &dev->resource[i];
917 unsigned long r_size;
918
919 if (r->parent || !(r->flags & IORESOURCE_IO))
920 continue;
Zhao, Yu022edd82008-10-13 19:24:28 +0800921 r_size = resource_size(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
923 if (r_size < 0x400)
924 /* Might be re-aligned for ISA */
925 size += r_size;
926 else
927 size1 += r_size;
Yinghai Lube768912011-07-25 13:08:38 -0700928
Yinghai Lufd591342012-07-09 19:55:29 -0600929 align = pci_resource_alignment(dev, r);
930 if (align > min_align)
931 min_align = align;
932
Ram Pai9e8bf932011-07-25 13:08:42 -0700933 if (realloc_head)
934 children_add_size += get_res_add_size(realloc_head, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 }
936 }
Yinghai Lufd591342012-07-09 19:55:29 -0600937
Ram Paic8adf9a2011-02-14 17:43:20 -0800938 size0 = calculate_iosize(size, min_size, size1,
Yinghai Lufd591342012-07-09 19:55:29 -0600939 resource_size(b_res), min_align);
Yinghai Lube768912011-07-25 13:08:38 -0700940 if (children_add_size > add_size)
941 add_size = children_add_size;
Ram Pai9e8bf932011-07-25 13:08:42 -0700942 size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
Yinghai Lua4ac9fe2012-01-21 02:08:17 -0800943 calculate_iosize(size, min_size, add_size + size1,
Yinghai Lufd591342012-07-09 19:55:29 -0600944 resource_size(b_res), min_align);
Ram Paic8adf9a2011-02-14 17:43:20 -0800945 if (!size0 && !size1) {
Bjorn Helgaas865df572009-11-04 10:32:57 -0700946 if (b_res->start || b_res->end)
Ryan Desfosses227f0642014-04-18 20:13:50 -0400947 dev_info(&bus->self->dev, "disabling bridge window %pR to %pR (unused)\n",
948 b_res, &bus->busn_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 b_res->flags = 0;
950 return;
951 }
Yinghai Lufd591342012-07-09 19:55:29 -0600952
953 b_res->start = min_align;
Ram Paic8adf9a2011-02-14 17:43:20 -0800954 b_res->end = b_res->start + size0 - 1;
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400955 b_res->flags |= IORESOURCE_STARTALIGN;
Yinghai Lub5924432012-01-21 02:08:31 -0800956 if (size1 > size0 && realloc_head) {
Yinghai Lufd591342012-07-09 19:55:29 -0600957 add_to_list(realloc_head, bus->self, b_res, size1-size0,
958 min_align);
Ryan Desfosses227f0642014-04-18 20:13:50 -0400959 dev_printk(KERN_DEBUG, &bus->self->dev, "bridge window %pR to %pR add_size %llx\n",
960 b_res, &bus->busn_res,
961 (unsigned long long)size1-size0);
Yinghai Lub5924432012-01-21 02:08:31 -0800962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963}
964
Gavin Shanc1215042012-09-11 16:59:46 -0600965static inline resource_size_t calculate_mem_align(resource_size_t *aligns,
966 int max_order)
967{
968 resource_size_t align = 0;
969 resource_size_t min_align = 0;
970 int order;
971
972 for (order = 0; order <= max_order; order++) {
973 resource_size_t align1 = 1;
974
975 align1 <<= (order + 20);
976
977 if (!align)
978 min_align = align1;
979 else if (ALIGN(align + min_align, min_align) < align1)
980 min_align = align1 >> 1;
981 align += aligns[order];
982 }
983
984 return min_align;
985}
986
Ram Paic8adf9a2011-02-14 17:43:20 -0800987/**
988 * pbus_size_mem() - size the memory window of a given bus
989 *
990 * @bus : the bus
Wei Yang496f70c2013-08-02 17:31:04 +0800991 * @mask: mask the resource flag, then compare it with type
992 * @type: the type of free resource from bridge
Yinghai Lu5b285412014-05-19 17:01:55 -0600993 * @type2: second match type
994 * @type3: third match type
Ram Paic8adf9a2011-02-14 17:43:20 -0800995 * @min_size : the minimum memory window that must to be allocated
996 * @add_size : additional optional memory window
Ram Pai9e8bf932011-07-25 13:08:42 -0700997 * @realloc_head : track the additional memory window on this list
Ram Paic8adf9a2011-02-14 17:43:20 -0800998 *
999 * Calculate the size of the bus and minimal alignment which
1000 * guarantees that all child resources fit in this size.
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001001 *
1002 * Returns -ENOSPC if there's no available bus resource of the desired type.
1003 * Otherwise, sets the bus resource start/end to indicate the required
1004 * size, adds things to realloc_head (if supplied), and returns 0.
Ram Paic8adf9a2011-02-14 17:43:20 -08001005 */
Eric W. Biederman28760482009-09-09 14:09:24 -07001006static int pbus_size_mem(struct pci_bus *bus, unsigned long mask,
Yinghai Lu5b285412014-05-19 17:01:55 -06001007 unsigned long type, unsigned long type2,
1008 unsigned long type3,
1009 resource_size_t min_size, resource_size_t add_size,
1010 struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 struct pci_dev *dev;
Ram Paic8adf9a2011-02-14 17:43:20 -08001013 resource_size_t min_align, align, size, size0, size1;
Yinghai Lu096d4222014-07-03 13:46:17 -07001014 resource_size_t aligns[18]; /* Alignments from 1Mb to 128Gb */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 int order, max_order;
Yinghai Lu5b285412014-05-19 17:01:55 -06001016 struct resource *b_res = find_free_bus_resource(bus,
1017 mask | IORESOURCE_PREFETCH, type);
Yinghai Lube768912011-07-25 13:08:38 -07001018 resource_size_t children_add_size = 0;
Wei Yangd74b9022015-03-25 16:23:51 +08001019 resource_size_t children_add_align = 0;
1020 resource_size_t add_align = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 if (!b_res)
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001023 return -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025 memset(aligns, 0, sizeof(aligns));
1026 max_order = 0;
1027 size = 0;
1028
1029 list_for_each_entry(dev, &bus->devices, bus_list) {
1030 int i;
Yinghai Lu1f82de12009-04-23 20:48:32 -07001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1033 struct resource *r = &dev->resource[i];
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +11001034 resource_size_t r_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
David Daneya2220d82015-10-29 17:35:39 -05001036 if (r->parent || (r->flags & IORESOURCE_PCI_FIXED) ||
1037 ((r->flags & mask) != type &&
1038 (r->flags & mask) != type2 &&
1039 (r->flags & mask) != type3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 continue;
Zhao, Yu022edd82008-10-13 19:24:28 +08001041 r_size = resource_size(r);
Yinghai Lu2aceefc2011-07-25 13:08:40 -07001042#ifdef CONFIG_PCI_IOV
1043 /* put SRIOV requested res to the optional list */
Ram Pai9e8bf932011-07-25 13:08:42 -07001044 if (realloc_head && i >= PCI_IOV_RESOURCES &&
Yinghai Lu2aceefc2011-07-25 13:08:40 -07001045 i <= PCI_IOV_RESOURCE_END) {
Wei Yangd74b9022015-03-25 16:23:51 +08001046 add_align = max(pci_resource_alignment(dev, r), add_align);
Yinghai Lu2aceefc2011-07-25 13:08:40 -07001047 r->end = r->start - 1;
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001048 add_to_list(realloc_head, dev, r, r_size, 0/* don't care */);
Yinghai Lu2aceefc2011-07-25 13:08:40 -07001049 children_add_size += r_size;
1050 continue;
1051 }
1052#endif
Alan14c85302014-05-19 14:03:14 +01001053 /*
1054 * aligns[0] is for 1MB (since bridge memory
1055 * windows are always at least 1MB aligned), so
1056 * keep "order" from being negative for smaller
1057 * resources.
1058 */
Chris Wright6faf17f2009-08-28 13:00:06 -07001059 align = pci_resource_alignment(dev, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 order = __ffs(align) - 20;
Alan14c85302014-05-19 14:03:14 +01001061 if (order < 0)
1062 order = 0;
1063 if (order >= ARRAY_SIZE(aligns)) {
Ryan Desfosses227f0642014-04-18 20:13:50 -04001064 dev_warn(&dev->dev, "disabling BAR %d: %pR (bad alignment %#llx)\n",
1065 i, r, (unsigned long long) align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 r->flags = 0;
1067 continue;
1068 }
Yongji Xiec9c75142017-04-10 19:58:11 +08001069 size += max(r_size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 /* Exclude ranges with size > align from
1071 calculation of the alignment. */
Yongji Xiec9c75142017-04-10 19:58:11 +08001072 if (r_size <= align)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 aligns[order] += align;
1074 if (order > max_order)
1075 max_order = order;
Yinghai Lube768912011-07-25 13:08:38 -07001076
Wei Yangd74b9022015-03-25 16:23:51 +08001077 if (realloc_head) {
Ram Pai9e8bf932011-07-25 13:08:42 -07001078 children_add_size += get_res_add_size(realloc_head, r);
Wei Yangd74b9022015-03-25 16:23:51 +08001079 children_add_align = get_res_add_align(realloc_head, r);
1080 add_align = max(add_align, children_add_align);
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 }
1083 }
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -07001084
Gavin Shanc1215042012-09-11 16:59:46 -06001085 min_align = calculate_mem_align(aligns, max_order);
Wei Yang3ad94b02013-09-06 09:45:58 +08001086 min_align = max(min_align, window_alignment(bus, b_res->flags));
Linus Torvaldsb42282e2011-04-11 10:53:11 -07001087 size0 = calculate_memsize(size, min_size, 0, resource_size(b_res), min_align);
Wei Yangd74b9022015-03-25 16:23:51 +08001088 add_align = max(min_align, add_align);
Yinghai Lube768912011-07-25 13:08:38 -07001089 if (children_add_size > add_size)
1090 add_size = children_add_size;
Ram Pai9e8bf932011-07-25 13:08:42 -07001091 size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
Yinghai Lua4ac9fe2012-01-21 02:08:17 -08001092 calculate_memsize(size, min_size, add_size,
Wei Yangd74b9022015-03-25 16:23:51 +08001093 resource_size(b_res), add_align);
Ram Paic8adf9a2011-02-14 17:43:20 -08001094 if (!size0 && !size1) {
Bjorn Helgaas865df572009-11-04 10:32:57 -07001095 if (b_res->start || b_res->end)
Ryan Desfosses227f0642014-04-18 20:13:50 -04001096 dev_info(&bus->self->dev, "disabling bridge window %pR to %pR (unused)\n",
1097 b_res, &bus->busn_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 b_res->flags = 0;
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001099 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101 b_res->start = min_align;
Ram Paic8adf9a2011-02-14 17:43:20 -08001102 b_res->end = size0 + min_align - 1;
Yinghai Lu5b285412014-05-19 17:01:55 -06001103 b_res->flags |= IORESOURCE_STARTALIGN;
Yinghai Lub5924432012-01-21 02:08:31 -08001104 if (size1 > size0 && realloc_head) {
Wei Yangd74b9022015-03-25 16:23:51 +08001105 add_to_list(realloc_head, bus->self, b_res, size1-size0, add_align);
1106 dev_printk(KERN_DEBUG, &bus->self->dev, "bridge window %pR to %pR add_size %llx add_align %llx\n",
Ryan Desfosses227f0642014-04-18 20:13:50 -04001107 b_res, &bus->busn_res,
Wei Yangd74b9022015-03-25 16:23:51 +08001108 (unsigned long long) (size1 - size0),
1109 (unsigned long long) add_align);
Yinghai Lub5924432012-01-21 02:08:31 -08001110 }
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112}
1113
Ram Pai0a2daa12011-07-25 13:08:41 -07001114unsigned long pci_cardbus_resource_alignment(struct resource *res)
1115{
1116 if (res->flags & IORESOURCE_IO)
1117 return pci_cardbus_io_size;
1118 if (res->flags & IORESOURCE_MEM)
1119 return pci_cardbus_mem_size;
1120 return 0;
1121}
1122
1123static void pci_bus_size_cardbus(struct pci_bus *bus,
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001124 struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125{
1126 struct pci_dev *bridge = bus->self;
1127 struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
Yinghai Lu11848932012-02-10 15:33:47 -08001128 resource_size_t b_res_3_size = pci_cardbus_mem_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 u16 ctrl;
1130
Yinghai Lu3796f1e2012-02-10 15:33:48 -08001131 if (b_res[0].parent)
1132 goto handle_b_res_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 /*
1134 * Reserve some resources for CardBus. We reserve
1135 * a fixed amount of bus space for CardBus bridges.
1136 */
Yinghai Lu11848932012-02-10 15:33:47 -08001137 b_res[0].start = pci_cardbus_io_size;
1138 b_res[0].end = b_res[0].start + pci_cardbus_io_size - 1;
1139 b_res[0].flags |= IORESOURCE_IO | IORESOURCE_STARTALIGN;
1140 if (realloc_head) {
1141 b_res[0].end -= pci_cardbus_io_size;
1142 add_to_list(realloc_head, bridge, b_res, pci_cardbus_io_size,
1143 pci_cardbus_io_size);
1144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145
Yinghai Lu3796f1e2012-02-10 15:33:48 -08001146handle_b_res_1:
1147 if (b_res[1].parent)
1148 goto handle_b_res_2;
Yinghai Lu11848932012-02-10 15:33:47 -08001149 b_res[1].start = pci_cardbus_io_size;
1150 b_res[1].end = b_res[1].start + pci_cardbus_io_size - 1;
1151 b_res[1].flags |= IORESOURCE_IO | IORESOURCE_STARTALIGN;
1152 if (realloc_head) {
1153 b_res[1].end -= pci_cardbus_io_size;
1154 add_to_list(realloc_head, bridge, b_res+1, pci_cardbus_io_size,
1155 pci_cardbus_io_size);
1156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Yinghai Lu3796f1e2012-02-10 15:33:48 -08001158handle_b_res_2:
Yinghai Ludcef0d02012-02-10 15:33:46 -08001159 /* MEM1 must not be pref mmio */
1160 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
1161 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM1) {
1162 ctrl &= ~PCI_CB_BRIDGE_CTL_PREFETCH_MEM1;
1163 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
1164 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
1165 }
1166
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /*
1168 * Check whether prefetchable memory is supported
1169 * by this bridge.
1170 */
1171 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
1172 if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
1173 ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
1174 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
1175 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
1176 }
1177
Yinghai Lu3796f1e2012-02-10 15:33:48 -08001178 if (b_res[2].parent)
1179 goto handle_b_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * If we have prefetchable memory support, allocate
1182 * two regions. Otherwise, allocate one region of
1183 * twice the size.
1184 */
1185 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
Yinghai Lu11848932012-02-10 15:33:47 -08001186 b_res[2].start = pci_cardbus_mem_size;
1187 b_res[2].end = b_res[2].start + pci_cardbus_mem_size - 1;
1188 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH |
1189 IORESOURCE_STARTALIGN;
1190 if (realloc_head) {
1191 b_res[2].end -= pci_cardbus_mem_size;
1192 add_to_list(realloc_head, bridge, b_res+2,
1193 pci_cardbus_mem_size, pci_cardbus_mem_size);
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Yinghai Lu11848932012-02-10 15:33:47 -08001196 /* reduce that to half */
1197 b_res_3_size = pci_cardbus_mem_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
Ram Pai0a2daa12011-07-25 13:08:41 -07001199
Yinghai Lu3796f1e2012-02-10 15:33:48 -08001200handle_b_res_3:
1201 if (b_res[3].parent)
1202 goto handle_done;
Yinghai Lu11848932012-02-10 15:33:47 -08001203 b_res[3].start = pci_cardbus_mem_size;
1204 b_res[3].end = b_res[3].start + b_res_3_size - 1;
1205 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_STARTALIGN;
1206 if (realloc_head) {
1207 b_res[3].end -= b_res_3_size;
1208 add_to_list(realloc_head, bridge, b_res+3, b_res_3_size,
1209 pci_cardbus_mem_size);
1210 }
Yinghai Lu3796f1e2012-02-10 15:33:48 -08001211
1212handle_done:
1213 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214}
1215
Bjorn Helgaas10874f52014-04-14 16:11:40 -06001216void __pci_bus_size_bridges(struct pci_bus *bus, struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217{
1218 struct pci_dev *dev;
Yinghai Lu5b285412014-05-19 17:01:55 -06001219 unsigned long mask, prefmask, type2 = 0, type3 = 0;
Ram Paic8adf9a2011-02-14 17:43:20 -08001220 resource_size_t additional_mem_size = 0, additional_io_size = 0;
Yinghai Lu5b285412014-05-19 17:01:55 -06001221 struct resource *b_res;
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001222 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
1224 list_for_each_entry(dev, &bus->devices, bus_list) {
1225 struct pci_bus *b = dev->subordinate;
1226 if (!b)
1227 continue;
1228
1229 switch (dev->class >> 8) {
1230 case PCI_CLASS_BRIDGE_CARDBUS:
Ram Pai9e8bf932011-07-25 13:08:42 -07001231 pci_bus_size_cardbus(b, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 break;
1233
1234 case PCI_CLASS_BRIDGE_PCI:
1235 default:
Ram Pai9e8bf932011-07-25 13:08:42 -07001236 __pci_bus_size_bridges(b, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
1238 }
1239 }
1240
1241 /* The root bus? */
Wei Yang2ba29e22013-09-06 09:45:56 +08001242 if (pci_is_root_bus(bus))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 return;
1244
1245 switch (bus->self->class >> 8) {
1246 case PCI_CLASS_BRIDGE_CARDBUS:
1247 /* don't size cardbuses yet. */
1248 break;
1249
1250 case PCI_CLASS_BRIDGE_PCI:
1251 pci_bridge_check_ranges(bus);
Eric W. Biederman28760482009-09-09 14:09:24 -07001252 if (bus->self->is_hotplug_bridge) {
Ram Paic8adf9a2011-02-14 17:43:20 -08001253 additional_io_size = pci_hotplug_io_size;
1254 additional_mem_size = pci_hotplug_mem_size;
Eric W. Biederman28760482009-09-09 14:09:24 -07001255 }
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001256 /* Fall through */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 default:
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001258 pbus_size_io(bus, realloc_head ? 0 : additional_io_size,
1259 additional_io_size, realloc_head);
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001260
1261 /*
1262 * If there's a 64-bit prefetchable MMIO window, compute
1263 * the size required to put all 64-bit prefetchable
1264 * resources in it.
1265 */
Yinghai Lu5b285412014-05-19 17:01:55 -06001266 b_res = &bus->self->resource[PCI_BRIDGE_RESOURCES];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 mask = IORESOURCE_MEM;
1268 prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
Yinghai Lu5b285412014-05-19 17:01:55 -06001269 if (b_res[2].flags & IORESOURCE_MEM_64) {
1270 prefmask |= IORESOURCE_MEM_64;
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001271 ret = pbus_size_mem(bus, prefmask, prefmask,
Yinghai Lu5b285412014-05-19 17:01:55 -06001272 prefmask, prefmask,
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001273 realloc_head ? 0 : additional_mem_size,
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001274 additional_mem_size, realloc_head);
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001275
1276 /*
1277 * If successful, all non-prefetchable resources
1278 * and any 32-bit prefetchable resources will go in
1279 * the non-prefetchable window.
1280 */
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001281 if (ret == 0) {
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001282 mask = prefmask;
1283 type2 = prefmask & ~IORESOURCE_MEM_64;
1284 type3 = prefmask & ~IORESOURCE_PREFETCH;
Yinghai Lu5b285412014-05-19 17:01:55 -06001285 }
1286 }
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001287
1288 /*
1289 * If there is no 64-bit prefetchable window, compute the
1290 * size required to put all prefetchable resources in the
1291 * 32-bit prefetchable window (if there is one).
1292 */
Yinghai Lu5b285412014-05-19 17:01:55 -06001293 if (!type2) {
1294 prefmask &= ~IORESOURCE_MEM_64;
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001295 ret = pbus_size_mem(bus, prefmask, prefmask,
Yinghai Lu5b285412014-05-19 17:01:55 -06001296 prefmask, prefmask,
1297 realloc_head ? 0 : additional_mem_size,
Bjorn Helgaas30afe8d2014-05-19 18:28:37 -06001298 additional_mem_size, realloc_head);
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001299
1300 /*
1301 * If successful, only non-prefetchable resources
1302 * will go in the non-prefetchable window.
1303 */
1304 if (ret == 0)
Yinghai Lu5b285412014-05-19 17:01:55 -06001305 mask = prefmask;
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001306 else
Yinghai Lu5b285412014-05-19 17:01:55 -06001307 additional_mem_size += additional_mem_size;
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001308
Yinghai Lu5b285412014-05-19 17:01:55 -06001309 type2 = type3 = IORESOURCE_MEM;
1310 }
Bjorn Helgaas67d29b52014-05-19 18:32:18 -06001311
1312 /*
1313 * Compute the size required to put everything else in the
1314 * non-prefetchable window. This includes:
1315 *
1316 * - all non-prefetchable resources
1317 * - 32-bit prefetchable resources if there's a 64-bit
1318 * prefetchable window or no prefetchable window at all
1319 * - 64-bit prefetchable resources if there's no
1320 * prefetchable window at all
1321 *
1322 * Note that the strategy in __pci_assign_resource() must
1323 * match that used here. Specifically, we cannot put a
1324 * 32-bit prefetchable resource in a 64-bit prefetchable
1325 * window.
1326 */
Yinghai Lu5b285412014-05-19 17:01:55 -06001327 pbus_size_mem(bus, mask, IORESOURCE_MEM, type2, type3,
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001328 realloc_head ? 0 : additional_mem_size,
1329 additional_mem_size, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 break;
1331 }
1332}
Ram Paic8adf9a2011-02-14 17:43:20 -08001333
Bjorn Helgaas10874f52014-04-14 16:11:40 -06001334void pci_bus_size_bridges(struct pci_bus *bus)
Ram Paic8adf9a2011-02-14 17:43:20 -08001335{
1336 __pci_bus_size_bridges(bus, NULL);
1337}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338EXPORT_SYMBOL(pci_bus_size_bridges);
1339
David Daneyd04d0112015-10-29 17:35:39 -05001340static void assign_fixed_resource_on_bus(struct pci_bus *b, struct resource *r)
1341{
1342 int i;
1343 struct resource *parent_r;
1344 unsigned long mask = IORESOURCE_IO | IORESOURCE_MEM |
1345 IORESOURCE_PREFETCH;
1346
1347 pci_bus_for_each_resource(b, parent_r, i) {
1348 if (!parent_r)
1349 continue;
1350
1351 if ((r->flags & mask) == (parent_r->flags & mask) &&
1352 resource_contains(parent_r, r))
1353 request_resource(parent_r, r);
1354 }
1355}
1356
1357/*
1358 * Try to assign any resources marked as IORESOURCE_PCI_FIXED, as they
1359 * are skipped by pbus_assign_resources_sorted().
1360 */
1361static void pdev_assign_fixed_resources(struct pci_dev *dev)
1362{
1363 int i;
1364
1365 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
1366 struct pci_bus *b;
1367 struct resource *r = &dev->resource[i];
1368
1369 if (r->parent || !(r->flags & IORESOURCE_PCI_FIXED) ||
1370 !(r->flags & (IORESOURCE_IO | IORESOURCE_MEM)))
1371 continue;
1372
1373 b = dev->bus;
1374 while (b && !r->parent) {
1375 assign_fixed_resource_on_bus(b, r);
1376 b = b->parent;
1377 }
1378 }
1379}
1380
Bjorn Helgaas10874f52014-04-14 16:11:40 -06001381void __pci_bus_assign_resources(const struct pci_bus *bus,
1382 struct list_head *realloc_head,
1383 struct list_head *fail_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384{
1385 struct pci_bus *b;
1386 struct pci_dev *dev;
1387
Ram Pai9e8bf932011-07-25 13:08:42 -07001388 pbus_assign_resources_sorted(bus, realloc_head, fail_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 list_for_each_entry(dev, &bus->devices, bus_list) {
David Daneyd04d0112015-10-29 17:35:39 -05001391 pdev_assign_fixed_resources(dev);
1392
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 b = dev->subordinate;
1394 if (!b)
1395 continue;
1396
Ram Pai9e8bf932011-07-25 13:08:42 -07001397 __pci_bus_assign_resources(b, realloc_head, fail_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
1399 switch (dev->class >> 8) {
1400 case PCI_CLASS_BRIDGE_PCI:
Yinghai Lu6841ec62010-01-22 01:02:25 -08001401 if (!pci_is_enabled(dev))
1402 pci_setup_bridge(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 break;
1404
1405 case PCI_CLASS_BRIDGE_CARDBUS:
1406 pci_setup_cardbus(b);
1407 break;
1408
1409 default:
Ryan Desfosses227f0642014-04-18 20:13:50 -04001410 dev_info(&dev->dev, "not setting up bridge for bus %04x:%02x\n",
1411 pci_domain_nr(b), b->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 break;
1413 }
1414 }
1415}
Yinghai Lu568ddef2010-01-22 01:02:21 -08001416
Bjorn Helgaas10874f52014-04-14 16:11:40 -06001417void pci_bus_assign_resources(const struct pci_bus *bus)
Yinghai Lu568ddef2010-01-22 01:02:21 -08001418{
Ram Paic8adf9a2011-02-14 17:43:20 -08001419 __pci_bus_assign_resources(bus, NULL, NULL);
Yinghai Lu568ddef2010-01-22 01:02:21 -08001420}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421EXPORT_SYMBOL(pci_bus_assign_resources);
1422
Lorenzo Pieralisi765bf9b2016-06-08 12:04:47 +01001423static void pci_claim_device_resources(struct pci_dev *dev)
1424{
1425 int i;
1426
1427 for (i = 0; i < PCI_BRIDGE_RESOURCES; i++) {
1428 struct resource *r = &dev->resource[i];
1429
1430 if (!r->flags || r->parent)
1431 continue;
1432
1433 pci_claim_resource(dev, i);
1434 }
1435}
1436
1437static void pci_claim_bridge_resources(struct pci_dev *dev)
1438{
1439 int i;
1440
1441 for (i = PCI_BRIDGE_RESOURCES; i < PCI_NUM_RESOURCES; i++) {
1442 struct resource *r = &dev->resource[i];
1443
1444 if (!r->flags || r->parent)
1445 continue;
1446
1447 pci_claim_bridge_resource(dev, i);
1448 }
1449}
1450
1451static void pci_bus_allocate_dev_resources(struct pci_bus *b)
1452{
1453 struct pci_dev *dev;
1454 struct pci_bus *child;
1455
1456 list_for_each_entry(dev, &b->devices, bus_list) {
1457 pci_claim_device_resources(dev);
1458
1459 child = dev->subordinate;
1460 if (child)
1461 pci_bus_allocate_dev_resources(child);
1462 }
1463}
1464
1465static void pci_bus_allocate_resources(struct pci_bus *b)
1466{
1467 struct pci_bus *child;
1468
1469 /*
1470 * Carry out a depth-first search on the PCI bus
1471 * tree to allocate bridge apertures. Read the
1472 * programmed bridge bases and recursively claim
1473 * the respective bridge resources.
1474 */
1475 if (b->self) {
1476 pci_read_bridge_bases(b);
1477 pci_claim_bridge_resources(b->self);
1478 }
1479
1480 list_for_each_entry(child, &b->children, node)
1481 pci_bus_allocate_resources(child);
1482}
1483
1484void pci_bus_claim_resources(struct pci_bus *b)
1485{
1486 pci_bus_allocate_resources(b);
1487 pci_bus_allocate_dev_resources(b);
1488}
1489EXPORT_SYMBOL(pci_bus_claim_resources);
1490
Bjorn Helgaas10874f52014-04-14 16:11:40 -06001491static void __pci_bridge_assign_resources(const struct pci_dev *bridge,
1492 struct list_head *add_head,
1493 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -08001494{
1495 struct pci_bus *b;
1496
Yinghai Lu8424d752012-01-21 02:08:21 -08001497 pdev_assign_resources_sorted((struct pci_dev *)bridge,
1498 add_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001499
1500 b = bridge->subordinate;
1501 if (!b)
1502 return;
1503
Yinghai Lu8424d752012-01-21 02:08:21 -08001504 __pci_bus_assign_resources(b, add_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001505
1506 switch (bridge->class >> 8) {
1507 case PCI_CLASS_BRIDGE_PCI:
1508 pci_setup_bridge(b);
1509 break;
1510
1511 case PCI_CLASS_BRIDGE_CARDBUS:
1512 pci_setup_cardbus(b);
1513 break;
1514
1515 default:
Ryan Desfosses227f0642014-04-18 20:13:50 -04001516 dev_info(&bridge->dev, "not setting up bridge for bus %04x:%02x\n",
1517 pci_domain_nr(b), b->number);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001518 break;
1519 }
1520}
Yinghai Lu5009b462010-01-22 01:02:20 -08001521static void pci_bridge_release_resources(struct pci_bus *bus,
1522 unsigned long type)
1523{
Yinghai Lu5b285412014-05-19 17:01:55 -06001524 struct pci_dev *dev = bus->self;
Yinghai Lu5009b462010-01-22 01:02:20 -08001525 struct resource *r;
1526 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
Yinghai Lu5b285412014-05-19 17:01:55 -06001527 IORESOURCE_PREFETCH | IORESOURCE_MEM_64;
1528 unsigned old_flags = 0;
1529 struct resource *b_res;
1530 int idx = 1;
Yinghai Lu5009b462010-01-22 01:02:20 -08001531
Yinghai Lu5b285412014-05-19 17:01:55 -06001532 b_res = &dev->resource[PCI_BRIDGE_RESOURCES];
Yinghai Lu5009b462010-01-22 01:02:20 -08001533
Yinghai Lu5b285412014-05-19 17:01:55 -06001534 /*
1535 * 1. if there is io port assign fail, will release bridge
1536 * io port.
1537 * 2. if there is non pref mmio assign fail, release bridge
1538 * nonpref mmio.
1539 * 3. if there is 64bit pref mmio assign fail, and bridge pref
1540 * is 64bit, release bridge pref mmio.
1541 * 4. if there is pref mmio assign fail, and bridge pref is
1542 * 32bit mmio, release bridge pref mmio
1543 * 5. if there is pref mmio assign fail, and bridge pref is not
1544 * assigned, release bridge nonpref mmio.
1545 */
1546 if (type & IORESOURCE_IO)
1547 idx = 0;
1548 else if (!(type & IORESOURCE_PREFETCH))
1549 idx = 1;
1550 else if ((type & IORESOURCE_MEM_64) &&
1551 (b_res[2].flags & IORESOURCE_MEM_64))
1552 idx = 2;
1553 else if (!(b_res[2].flags & IORESOURCE_MEM_64) &&
1554 (b_res[2].flags & IORESOURCE_PREFETCH))
1555 idx = 2;
1556 else
1557 idx = 1;
1558
1559 r = &b_res[idx];
1560
1561 if (!r->parent)
1562 return;
1563
1564 /*
1565 * if there are children under that, we should release them
1566 * all
1567 */
1568 release_child_resources(r);
1569 if (!release_resource(r)) {
1570 type = old_flags = r->flags & type_mask;
1571 dev_printk(KERN_DEBUG, &dev->dev, "resource %d %pR released\n",
1572 PCI_BRIDGE_RESOURCES + idx, r);
1573 /* keep the old size */
1574 r->end = resource_size(r) - 1;
1575 r->start = 0;
1576 r->flags = 0;
1577
Yinghai Lu5009b462010-01-22 01:02:20 -08001578 /* avoiding touch the one without PREF */
1579 if (type & IORESOURCE_PREFETCH)
1580 type = IORESOURCE_PREFETCH;
1581 __pci_setup_bridge(bus, type);
Yinghai Lu5b285412014-05-19 17:01:55 -06001582 /* for next child res under same bridge */
1583 r->flags = old_flags;
Yinghai Lu5009b462010-01-22 01:02:20 -08001584 }
1585}
1586
1587enum release_type {
1588 leaf_only,
1589 whole_subtree,
1590};
1591/*
1592 * try to release pci bridge resources that is from leaf bridge,
1593 * so we can allocate big new one later
1594 */
Bjorn Helgaas10874f52014-04-14 16:11:40 -06001595static void pci_bus_release_bridge_resources(struct pci_bus *bus,
1596 unsigned long type,
1597 enum release_type rel_type)
Yinghai Lu5009b462010-01-22 01:02:20 -08001598{
1599 struct pci_dev *dev;
1600 bool is_leaf_bridge = true;
1601
1602 list_for_each_entry(dev, &bus->devices, bus_list) {
1603 struct pci_bus *b = dev->subordinate;
1604 if (!b)
1605 continue;
1606
1607 is_leaf_bridge = false;
1608
1609 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1610 continue;
1611
1612 if (rel_type == whole_subtree)
1613 pci_bus_release_bridge_resources(b, type,
1614 whole_subtree);
1615 }
1616
1617 if (pci_is_root_bus(bus))
1618 return;
1619
1620 if ((bus->self->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1621 return;
1622
1623 if ((rel_type == whole_subtree) || is_leaf_bridge)
1624 pci_bridge_release_resources(bus, type);
1625}
1626
Yinghai Lu76fbc262008-06-23 20:33:06 +02001627static void pci_bus_dump_res(struct pci_bus *bus)
1628{
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -07001629 struct resource *res;
1630 int i;
Yinghai Lu76fbc262008-06-23 20:33:06 +02001631
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -07001632 pci_bus_for_each_resource(bus, res, i) {
Yinghai Lu7c9342b2009-12-22 15:02:24 -08001633 if (!res || !res->end || !res->flags)
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001634 continue;
Yinghai Lu76fbc262008-06-23 20:33:06 +02001635
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001636 dev_printk(KERN_DEBUG, &bus->dev, "resource %d %pR\n", i, res);
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001637 }
Yinghai Lu76fbc262008-06-23 20:33:06 +02001638}
1639
1640static void pci_bus_dump_resources(struct pci_bus *bus)
1641{
1642 struct pci_bus *b;
1643 struct pci_dev *dev;
1644
1645
1646 pci_bus_dump_res(bus);
1647
1648 list_for_each_entry(dev, &bus->devices, bus_list) {
1649 b = dev->subordinate;
1650 if (!b)
1651 continue;
1652
1653 pci_bus_dump_resources(b);
1654 }
1655}
1656
Yinghai Luff351472013-07-24 15:37:13 -06001657static int pci_bus_get_depth(struct pci_bus *bus)
Yinghai Luda7822e2011-05-12 17:11:37 -07001658{
1659 int depth = 0;
Wei Yangf2a230b2013-08-02 17:31:03 +08001660 struct pci_bus *child_bus;
Yinghai Luda7822e2011-05-12 17:11:37 -07001661
Ryan Desfosses3c78bc62014-04-18 20:13:49 -04001662 list_for_each_entry(child_bus, &bus->children, node) {
Yinghai Luda7822e2011-05-12 17:11:37 -07001663 int ret;
Yinghai Luda7822e2011-05-12 17:11:37 -07001664
Wei Yangf2a230b2013-08-02 17:31:03 +08001665 ret = pci_bus_get_depth(child_bus);
Yinghai Luda7822e2011-05-12 17:11:37 -07001666 if (ret + 1 > depth)
1667 depth = ret + 1;
1668 }
1669
1670 return depth;
1671}
Yinghai Luda7822e2011-05-12 17:11:37 -07001672
Yinghai Lub55438f2012-02-23 19:23:30 -08001673/*
1674 * -1: undefined, will auto detect later
1675 * 0: disabled by user
1676 * 1: disabled by auto detect
1677 * 2: enabled by user
1678 * 3: enabled by auto detect
1679 */
1680enum enable_type {
1681 undefined = -1,
1682 user_disabled,
1683 auto_disabled,
1684 user_enabled,
1685 auto_enabled,
1686};
1687
Yinghai Luff351472013-07-24 15:37:13 -06001688static enum enable_type pci_realloc_enable = undefined;
Yinghai Lub55438f2012-02-23 19:23:30 -08001689void __init pci_realloc_get_opt(char *str)
1690{
1691 if (!strncmp(str, "off", 3))
1692 pci_realloc_enable = user_disabled;
1693 else if (!strncmp(str, "on", 2))
1694 pci_realloc_enable = user_enabled;
1695}
Yinghai Luff351472013-07-24 15:37:13 -06001696static bool pci_realloc_enabled(enum enable_type enable)
Yinghai Lub55438f2012-02-23 19:23:30 -08001697{
Yinghai Lu967260c2013-07-22 14:37:15 -07001698 return enable >= user_enabled;
Yinghai Lub55438f2012-02-23 19:23:30 -08001699}
Ram Paif483d392011-07-07 11:19:10 -07001700
Yinghai Lub07f2eb2012-02-23 19:23:32 -08001701#if defined(CONFIG_PCI_IOV) && defined(CONFIG_PCI_REALLOC_ENABLE_AUTO)
Yinghai Luff351472013-07-24 15:37:13 -06001702static int iov_resources_unassigned(struct pci_dev *dev, void *data)
Yinghai Lu223d96f2013-07-22 14:37:13 -07001703{
1704 int i;
1705 bool *unassigned = data;
Yinghai Lub07f2eb2012-02-23 19:23:32 -08001706
Yinghai Lu223d96f2013-07-22 14:37:13 -07001707 for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++) {
1708 struct resource *r = &dev->resource[i];
Yinghai Lufa216bf2013-07-22 14:37:14 -07001709 struct pci_bus_region region;
Yinghai Lub07f2eb2012-02-23 19:23:32 -08001710
Yinghai Lu223d96f2013-07-22 14:37:13 -07001711 /* Not assigned or rejected by kernel? */
Yinghai Lufa216bf2013-07-22 14:37:14 -07001712 if (!r->flags)
1713 continue;
Yinghai Lub07f2eb2012-02-23 19:23:32 -08001714
Yinghai Lufc279852013-12-09 22:54:40 -08001715 pcibios_resource_to_bus(dev->bus, &region, r);
Yinghai Lufa216bf2013-07-22 14:37:14 -07001716 if (!region.start) {
Yinghai Lu223d96f2013-07-22 14:37:13 -07001717 *unassigned = true;
1718 return 1; /* return early from pci_walk_bus() */
Yinghai Lub07f2eb2012-02-23 19:23:32 -08001719 }
1720 }
Yinghai Lu223d96f2013-07-22 14:37:13 -07001721
1722 return 0;
Yinghai Lub07f2eb2012-02-23 19:23:32 -08001723}
1724
Yinghai Luff351472013-07-24 15:37:13 -06001725static enum enable_type pci_realloc_detect(struct pci_bus *bus,
Yinghai Lu967260c2013-07-22 14:37:15 -07001726 enum enable_type enable_local)
Yinghai Lu223d96f2013-07-22 14:37:13 -07001727{
1728 bool unassigned = false;
Yinghai Luda7822e2011-05-12 17:11:37 -07001729
Yinghai Lu967260c2013-07-22 14:37:15 -07001730 if (enable_local != undefined)
1731 return enable_local;
Yinghai Luda7822e2011-05-12 17:11:37 -07001732
Yinghai Lu967260c2013-07-22 14:37:15 -07001733 pci_walk_bus(bus, iov_resources_unassigned, &unassigned);
1734 if (unassigned)
1735 return auto_enabled;
1736
1737 return enable_local;
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001738}
Yinghai Lu223d96f2013-07-22 14:37:13 -07001739#else
Yinghai Luff351472013-07-24 15:37:13 -06001740static enum enable_type pci_realloc_detect(struct pci_bus *bus,
Yinghai Lu967260c2013-07-22 14:37:15 -07001741 enum enable_type enable_local)
1742{
1743 return enable_local;
1744}
Yinghai Lu223d96f2013-07-22 14:37:13 -07001745#endif
Yinghai Luda7822e2011-05-12 17:11:37 -07001746
1747/*
1748 * first try will not touch pci bridge res
Bjorn Helgaasf7625982013-11-14 11:28:18 -07001749 * second and later try will clear small leaf bridge res
1750 * will stop till to the max depth if can not find good one
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 */
Yinghai Lu39772032013-07-22 14:37:18 -07001752void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Ram Paic8adf9a2011-02-14 17:43:20 -08001754 LIST_HEAD(realloc_head); /* list of resources that
Yinghai Luda7822e2011-05-12 17:11:37 -07001755 want additional resources */
1756 struct list_head *add_list = NULL;
1757 int tried_times = 0;
1758 enum release_type rel_type = leaf_only;
1759 LIST_HEAD(fail_head);
1760 struct pci_dev_resource *fail_res;
1761 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
Yinghai Lu5b285412014-05-19 17:01:55 -06001762 IORESOURCE_PREFETCH | IORESOURCE_MEM_64;
Yinghai Luda7822e2011-05-12 17:11:37 -07001763 int pci_try_num = 1;
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001764 enum enable_type enable_local;
Yinghai Luda7822e2011-05-12 17:11:37 -07001765
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001766 /* don't realloc if asked to do so */
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001767 enable_local = pci_realloc_detect(bus, pci_realloc_enable);
Yinghai Lu967260c2013-07-22 14:37:15 -07001768 if (pci_realloc_enabled(enable_local)) {
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001769 int max_depth = pci_bus_get_depth(bus);
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001770
1771 pci_try_num = max_depth + 1;
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001772 dev_printk(KERN_DEBUG, &bus->dev,
1773 "max bus depth: %d pci_try_num: %d\n",
1774 max_depth, pci_try_num);
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001775 }
Yinghai Luda7822e2011-05-12 17:11:37 -07001776
1777again:
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001778 /*
1779 * last try will use add_list, otherwise will try good to have as
1780 * must have, so can realloc parent bridge resource
1781 */
1782 if (tried_times + 1 == pci_try_num)
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001783 add_list = &realloc_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 /* Depth first, calculate sizes and alignments of all
1785 subordinate buses. */
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001786 __pci_bus_size_bridges(bus, add_list);
Ram Paic8adf9a2011-02-14 17:43:20 -08001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 /* Depth last, allocate resources and update the hardware. */
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001789 __pci_bus_assign_resources(bus, add_list, &fail_head);
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001790 if (add_list)
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001791 BUG_ON(!list_empty(add_list));
Yinghai Luda7822e2011-05-12 17:11:37 -07001792 tried_times++;
1793
1794 /* any device complain? */
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001795 if (list_empty(&fail_head))
Yinghai Lu928bea92013-07-22 14:37:17 -07001796 goto dump;
Ram Paif483d392011-07-07 11:19:10 -07001797
Yinghai Lu0c5be0c2012-02-23 19:23:29 -08001798 if (tried_times >= pci_try_num) {
Yinghai Lu967260c2013-07-22 14:37:15 -07001799 if (enable_local == undefined)
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001800 dev_info(&bus->dev, "Some PCI device resources are unassigned, try booting with pci=realloc\n");
Yinghai Lu967260c2013-07-22 14:37:15 -07001801 else if (enable_local == auto_enabled)
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001802 dev_info(&bus->dev, "Automatically enabled pci realloc, if you have problem, try booting with pci=realloc=off\n");
Yinghai Lueb572e72012-02-23 19:23:31 -08001803
Yinghai Lubffc56d2012-01-21 02:08:30 -08001804 free_list(&fail_head);
Yinghai Lu928bea92013-07-22 14:37:17 -07001805 goto dump;
Yinghai Luda7822e2011-05-12 17:11:37 -07001806 }
1807
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001808 dev_printk(KERN_DEBUG, &bus->dev,
1809 "No. %d try to assign unassigned res\n", tried_times + 1);
Yinghai Luda7822e2011-05-12 17:11:37 -07001810
1811 /* third times and later will not check if it is leaf */
1812 if ((tried_times + 1) > 2)
1813 rel_type = whole_subtree;
1814
1815 /*
1816 * Try to release leaf bridge's resources that doesn't fit resource of
1817 * child device under that bridge
1818 */
Yinghai Lu61e83cd2013-07-22 14:37:12 -07001819 list_for_each_entry(fail_res, &fail_head, list)
1820 pci_bus_release_bridge_resources(fail_res->dev->bus,
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001821 fail_res->flags & type_mask,
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001822 rel_type);
Yinghai Lu61e83cd2013-07-22 14:37:12 -07001823
Yinghai Luda7822e2011-05-12 17:11:37 -07001824 /* restore size and flags */
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001825 list_for_each_entry(fail_res, &fail_head, list) {
1826 struct resource *res = fail_res->res;
Yinghai Luda7822e2011-05-12 17:11:37 -07001827
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001828 res->start = fail_res->start;
1829 res->end = fail_res->end;
1830 res->flags = fail_res->flags;
1831 if (fail_res->dev->subordinate)
Yinghai Luda7822e2011-05-12 17:11:37 -07001832 res->flags = 0;
Yinghai Luda7822e2011-05-12 17:11:37 -07001833 }
Yinghai Lubffc56d2012-01-21 02:08:30 -08001834 free_list(&fail_head);
Yinghai Luda7822e2011-05-12 17:11:37 -07001835
1836 goto again;
1837
Yinghai Lu928bea92013-07-22 14:37:17 -07001838dump:
Yinghai Lu76fbc262008-06-23 20:33:06 +02001839 /* dump the resource on buses */
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001840 pci_bus_dump_resources(bus);
1841}
1842
1843void __init pci_assign_unassigned_resources(void)
1844{
1845 struct pci_bus *root_bus;
1846
Rui Wang584c5c42016-08-17 16:00:34 +08001847 list_for_each_entry(root_bus, &pci_root_buses, node) {
Yinghai Lu55ed83a2013-07-22 14:37:16 -07001848 pci_assign_unassigned_root_bus_resources(root_bus);
Rui Wangd9c149d2016-09-10 23:40:45 +08001849
1850 /* Make sure the root bridge has a companion ACPI device: */
1851 if (ACPI_HANDLE(root_bus->bridge))
1852 acpi_ioapic_add(ACPI_HANDLE(root_bus->bridge));
Rui Wang584c5c42016-08-17 16:00:34 +08001853 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
Yinghai Lu6841ec62010-01-22 01:02:25 -08001855
1856void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
1857{
1858 struct pci_bus *parent = bridge->subordinate;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001859 LIST_HEAD(add_list); /* list of resources that
Yinghai Lu8424d752012-01-21 02:08:21 -08001860 want additional resources */
Yinghai Lu32180e42010-01-22 01:02:27 -08001861 int tried_times = 0;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001862 LIST_HEAD(fail_head);
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001863 struct pci_dev_resource *fail_res;
Yinghai Lu6841ec62010-01-22 01:02:25 -08001864 int retval;
Yinghai Lu32180e42010-01-22 01:02:27 -08001865 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
Yinghai Lud61b0e82014-08-22 18:15:07 -07001866 IORESOURCE_PREFETCH | IORESOURCE_MEM_64;
Yinghai Lu6841ec62010-01-22 01:02:25 -08001867
Yinghai Lu32180e42010-01-22 01:02:27 -08001868again:
Yinghai Lu8424d752012-01-21 02:08:21 -08001869 __pci_bus_size_bridges(parent, &add_list);
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001870 __pci_bridge_assign_resources(bridge, &add_list, &fail_head);
1871 BUG_ON(!list_empty(&add_list));
Yinghai Lu32180e42010-01-22 01:02:27 -08001872 tried_times++;
1873
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001874 if (list_empty(&fail_head))
Yinghai Lu3f579c32010-05-21 14:35:06 -07001875 goto enable_all;
Yinghai Lu32180e42010-01-22 01:02:27 -08001876
1877 if (tried_times >= 2) {
1878 /* still fail, don't need to try more */
Yinghai Lubffc56d2012-01-21 02:08:30 -08001879 free_list(&fail_head);
Yinghai Lu3f579c32010-05-21 14:35:06 -07001880 goto enable_all;
Yinghai Lu32180e42010-01-22 01:02:27 -08001881 }
1882
1883 printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
1884 tried_times + 1);
1885
1886 /*
1887 * Try to release leaf bridge's resources that doesn't fit resource of
1888 * child device under that bridge
1889 */
Yinghai Lu61e83cd2013-07-22 14:37:12 -07001890 list_for_each_entry(fail_res, &fail_head, list)
1891 pci_bus_release_bridge_resources(fail_res->dev->bus,
1892 fail_res->flags & type_mask,
Yinghai Lu32180e42010-01-22 01:02:27 -08001893 whole_subtree);
Yinghai Lu61e83cd2013-07-22 14:37:12 -07001894
Yinghai Lu32180e42010-01-22 01:02:27 -08001895 /* restore size and flags */
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001896 list_for_each_entry(fail_res, &fail_head, list) {
1897 struct resource *res = fail_res->res;
Yinghai Lu32180e42010-01-22 01:02:27 -08001898
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001899 res->start = fail_res->start;
1900 res->end = fail_res->end;
1901 res->flags = fail_res->flags;
1902 if (fail_res->dev->subordinate)
Yinghai Lu32180e42010-01-22 01:02:27 -08001903 res->flags = 0;
Yinghai Lu32180e42010-01-22 01:02:27 -08001904 }
Yinghai Lubffc56d2012-01-21 02:08:30 -08001905 free_list(&fail_head);
Yinghai Lu32180e42010-01-22 01:02:27 -08001906
1907 goto again;
Yinghai Lu3f579c32010-05-21 14:35:06 -07001908
1909enable_all:
1910 retval = pci_reenable_device(bridge);
Bjorn Helgaas9fc9eea2013-04-12 11:35:40 -06001911 if (retval)
1912 dev_err(&bridge->dev, "Error reenabling bridge (%d)\n", retval);
Yinghai Lu3f579c32010-05-21 14:35:06 -07001913 pci_set_master(bridge);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001914}
1915EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources);
Yinghai Lu9b030882012-01-21 02:08:23 -08001916
Yinghai Lu17787942012-10-30 14:31:10 -06001917void pci_assign_unassigned_bus_resources(struct pci_bus *bus)
Yinghai Lu9b030882012-01-21 02:08:23 -08001918{
Yinghai Lu9b030882012-01-21 02:08:23 -08001919 struct pci_dev *dev;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001920 LIST_HEAD(add_list); /* list of resources that
Yinghai Lu9b030882012-01-21 02:08:23 -08001921 want additional resources */
1922
Yinghai Lu9b030882012-01-21 02:08:23 -08001923 down_read(&pci_bus_sem);
1924 list_for_each_entry(dev, &bus->devices, bus_list)
Yijing Wang6788a512014-05-04 12:23:38 +08001925 if (pci_is_bridge(dev) && pci_has_subordinate(dev))
Yinghai Lu9b030882012-01-21 02:08:23 -08001926 __pci_bus_size_bridges(dev->subordinate,
1927 &add_list);
1928 up_read(&pci_bus_sem);
1929 __pci_bus_assign_resources(bus, &add_list, NULL);
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001930 BUG_ON(!list_empty(&add_list));
Yinghai Lu17787942012-10-30 14:31:10 -06001931}
Ray Juie6b29de2015-04-08 11:21:33 -07001932EXPORT_SYMBOL_GPL(pci_assign_unassigned_bus_resources);