blob: 162edfb356b674761b89e02780795bdabe1680ef [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>
Chris Wright6faf17f2009-08-28 13:00:06 -070028#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
Yinghai Lubdc4abe2012-01-21 02:08:27 -080030struct pci_dev_resource {
31 struct list_head list;
Yinghai Lu2934a0d2012-01-21 02:08:26 -080032 struct resource *res;
33 struct pci_dev *dev;
Yinghai Lu568ddef2010-01-22 01:02:21 -080034 resource_size_t start;
35 resource_size_t end;
Ram Paic8adf9a2011-02-14 17:43:20 -080036 resource_size_t add_size;
Ram Pai2bbc6942011-07-25 13:08:39 -070037 resource_size_t min_align;
Yinghai Lu568ddef2010-01-22 01:02:21 -080038 unsigned long flags;
39};
40
Yinghai Lubffc56d2012-01-21 02:08:30 -080041static void free_list(struct list_head *head)
42{
43 struct pci_dev_resource *dev_res, *tmp;
44
45 list_for_each_entry_safe(dev_res, tmp, head, list) {
46 list_del(&dev_res->list);
47 kfree(dev_res);
48 }
49}
Ram Pai094732a2011-02-14 17:43:18 -080050
Ram Paif483d392011-07-07 11:19:10 -070051int pci_realloc_enable = 0;
52#define pci_realloc_enabled() pci_realloc_enable
53void pci_realloc(void)
54{
55 pci_realloc_enable = 1;
56}
57
Ram Paic8adf9a2011-02-14 17:43:20 -080058/**
59 * add_to_list() - add a new resource tracker to the list
60 * @head: Head of the list
61 * @dev: device corresponding to which the resource
62 * belongs
63 * @res: The resource to be tracked
64 * @add_size: additional size to be optionally added
65 * to the resource
66 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -080067static int add_to_list(struct list_head *head,
Ram Paic8adf9a2011-02-14 17:43:20 -080068 struct pci_dev *dev, struct resource *res,
Ram Pai2bbc6942011-07-25 13:08:39 -070069 resource_size_t add_size, resource_size_t min_align)
Yinghai Lu568ddef2010-01-22 01:02:21 -080070{
Yinghai Lu764242a2012-01-21 02:08:28 -080071 struct pci_dev_resource *tmp;
Yinghai Lu568ddef2010-01-22 01:02:21 -080072
Yinghai Lubdc4abe2012-01-21 02:08:27 -080073 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
Yinghai Lu568ddef2010-01-22 01:02:21 -080074 if (!tmp) {
Ram Paic8adf9a2011-02-14 17:43:20 -080075 pr_warning("add_to_list: kmalloc() failed!\n");
Yinghai Luef62dfe2012-01-21 02:08:18 -080076 return -ENOMEM;
Yinghai Lu568ddef2010-01-22 01:02:21 -080077 }
78
Yinghai Lu568ddef2010-01-22 01:02:21 -080079 tmp->res = res;
80 tmp->dev = dev;
81 tmp->start = res->start;
82 tmp->end = res->end;
83 tmp->flags = res->flags;
Ram Paic8adf9a2011-02-14 17:43:20 -080084 tmp->add_size = add_size;
Ram Pai2bbc6942011-07-25 13:08:39 -070085 tmp->min_align = min_align;
Yinghai Lubdc4abe2012-01-21 02:08:27 -080086
87 list_add(&tmp->list, head);
Yinghai Luef62dfe2012-01-21 02:08:18 -080088
89 return 0;
Yinghai Lu568ddef2010-01-22 01:02:21 -080090}
91
Yinghai Lub9b0bba2012-01-21 02:08:29 -080092static void remove_from_list(struct list_head *head,
Yinghai Lu3e6e0d82012-01-21 02:08:20 -080093 struct resource *res)
94{
Yinghai Lub9b0bba2012-01-21 02:08:29 -080095 struct pci_dev_resource *dev_res, *tmp;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -080096
Yinghai Lub9b0bba2012-01-21 02:08:29 -080097 list_for_each_entry_safe(dev_res, tmp, head, list) {
98 if (dev_res->res == res) {
99 list_del(&dev_res->list);
100 kfree(dev_res);
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800101 break;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800102 }
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800103 }
104}
105
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800106static resource_size_t get_res_add_size(struct list_head *head,
Yinghai Lu1c372352012-01-21 02:08:19 -0800107 struct resource *res)
108{
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800109 struct pci_dev_resource *dev_res;
Yinghai Lu1c372352012-01-21 02:08:19 -0800110
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800111 list_for_each_entry(dev_res, head, list) {
112 if (dev_res->res == res) {
Yinghai Lub5924432012-01-21 02:08:31 -0800113 int idx = res - &dev_res->dev->resource[0];
114
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800115 dev_printk(KERN_DEBUG, &dev_res->dev->dev,
Yinghai Lub5924432012-01-21 02:08:31 -0800116 "res[%d]=%pR get_res_add_size add_size %llx\n",
117 idx, dev_res->res,
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800118 (unsigned long long)dev_res->add_size);
Yinghai Lub5924432012-01-21 02:08:31 -0800119
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800120 return dev_res->add_size;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800121 }
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800122 }
Yinghai Lu1c372352012-01-21 02:08:19 -0800123
124 return 0;
125}
126
Yinghai Lu78c3b322012-01-21 02:08:25 -0800127/* Sort resources by alignment */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800128static void pdev_sort_resources(struct pci_dev *dev, struct list_head *head)
Yinghai Lu78c3b322012-01-21 02:08:25 -0800129{
130 int i;
131
132 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
133 struct resource *r;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800134 struct pci_dev_resource *dev_res, *tmp;
Yinghai Lu78c3b322012-01-21 02:08:25 -0800135 resource_size_t r_align;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800136 struct list_head *n;
Yinghai Lu78c3b322012-01-21 02:08:25 -0800137
138 r = &dev->resource[i];
139
140 if (r->flags & IORESOURCE_PCI_FIXED)
141 continue;
142
143 if (!(r->flags) || r->parent)
144 continue;
145
146 r_align = pci_resource_alignment(dev, r);
147 if (!r_align) {
148 dev_warn(&dev->dev, "BAR %d: %pR has bogus alignment\n",
149 i, r);
150 continue;
151 }
Yinghai Lu78c3b322012-01-21 02:08:25 -0800152
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800153 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
154 if (!tmp)
155 panic("pdev_sort_resources(): "
156 "kmalloc() failed!\n");
157 tmp->res = r;
158 tmp->dev = dev;
159
160 /* fallback is smallest one or list is empty*/
161 n = head;
162 list_for_each_entry(dev_res, head, list) {
163 resource_size_t align;
164
165 align = pci_resource_alignment(dev_res->dev,
166 dev_res->res);
Yinghai Lu78c3b322012-01-21 02:08:25 -0800167
168 if (r_align > align) {
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800169 n = &dev_res->list;
Yinghai Lu78c3b322012-01-21 02:08:25 -0800170 break;
171 }
172 }
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800173 /* Insert it just before n*/
174 list_add_tail(&tmp->list, n);
Yinghai Lu78c3b322012-01-21 02:08:25 -0800175 }
176}
177
Yinghai Lu6841ec62010-01-22 01:02:25 -0800178static void __dev_sort_resources(struct pci_dev *dev,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800179 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
Yinghai Lu6841ec62010-01-22 01:02:25 -0800181 u16 class = dev->class >> 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Yinghai Lu6841ec62010-01-22 01:02:25 -0800183 /* Don't touch classless devices or host bridges or ioapics. */
184 if (class == PCI_CLASS_NOT_DEFINED || class == PCI_CLASS_BRIDGE_HOST)
185 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Yinghai Lu6841ec62010-01-22 01:02:25 -0800187 /* Don't touch ioapic devices already enabled by firmware */
188 if (class == PCI_CLASS_SYSTEM_PIC) {
189 u16 command;
190 pci_read_config_word(dev, PCI_COMMAND, &command);
191 if (command & (PCI_COMMAND_IO | PCI_COMMAND_MEMORY))
192 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 }
194
Yinghai Lu6841ec62010-01-22 01:02:25 -0800195 pdev_sort_resources(dev, head);
196}
197
Ram Paifc075e12011-02-14 17:43:19 -0800198static inline void reset_resource(struct resource *res)
199{
200 res->start = 0;
201 res->end = 0;
202 res->flags = 0;
203}
204
Ram Paic8adf9a2011-02-14 17:43:20 -0800205/**
Ram Pai9e8bf932011-07-25 13:08:42 -0700206 * reassign_resources_sorted() - satisfy any additional resource requests
Ram Paic8adf9a2011-02-14 17:43:20 -0800207 *
Ram Pai9e8bf932011-07-25 13:08:42 -0700208 * @realloc_head : head of the list tracking requests requiring additional
Ram Paic8adf9a2011-02-14 17:43:20 -0800209 * resources
210 * @head : head of the list tracking requests with allocated
211 * resources
212 *
Ram Pai9e8bf932011-07-25 13:08:42 -0700213 * Walk through each element of the realloc_head and try to procure
Ram Paic8adf9a2011-02-14 17:43:20 -0800214 * additional resources for the element, provided the element
215 * is in the head list.
216 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800217static void reassign_resources_sorted(struct list_head *realloc_head,
218 struct list_head *head)
Ram Paic8adf9a2011-02-14 17:43:20 -0800219{
220 struct resource *res;
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800221 struct pci_dev_resource *add_res, *tmp;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800222 struct pci_dev_resource *dev_res;
Ram Paic8adf9a2011-02-14 17:43:20 -0800223 resource_size_t add_size;
224 int idx;
225
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800226 list_for_each_entry_safe(add_res, tmp, realloc_head, list) {
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800227 bool found_match = false;
228
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800229 res = add_res->res;
Ram Paic8adf9a2011-02-14 17:43:20 -0800230 /* skip resource that has been reset */
231 if (!res->flags)
232 goto out;
233
234 /* skip this resource if not found in head list */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800235 list_for_each_entry(dev_res, head, list) {
236 if (dev_res->res == res) {
237 found_match = true;
238 break;
239 }
Ram Paic8adf9a2011-02-14 17:43:20 -0800240 }
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800241 if (!found_match)/* just skip */
242 continue;
Ram Paic8adf9a2011-02-14 17:43:20 -0800243
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800244 idx = res - &add_res->dev->resource[0];
245 add_size = add_res->add_size;
Ram Pai2bbc6942011-07-25 13:08:39 -0700246 if (!resource_size(res)) {
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800247 res->start = add_res->start;
Ram Pai2bbc6942011-07-25 13:08:39 -0700248 res->end = res->start + add_size - 1;
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800249 if (pci_assign_resource(add_res->dev, idx))
Ram Paic8adf9a2011-02-14 17:43:20 -0800250 reset_resource(res);
Ram Pai2bbc6942011-07-25 13:08:39 -0700251 } else {
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800252 resource_size_t align = add_res->min_align;
253 res->flags |= add_res->flags &
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800254 (IORESOURCE_STARTALIGN|IORESOURCE_SIZEALIGN);
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800255 if (pci_reassign_resource(add_res->dev, idx,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800256 add_size, align))
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800257 dev_printk(KERN_DEBUG, &add_res->dev->dev,
Yinghai Lub5924432012-01-21 02:08:31 -0800258 "failed to add %llx res[%d]=%pR\n",
259 (unsigned long long)add_size,
260 idx, res);
Ram Paic8adf9a2011-02-14 17:43:20 -0800261 }
262out:
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800263 list_del(&add_res->list);
264 kfree(add_res);
Ram Paic8adf9a2011-02-14 17:43:20 -0800265 }
266}
267
268/**
269 * assign_requested_resources_sorted() - satisfy resource requests
270 *
271 * @head : head of the list tracking requests for resources
272 * @failed_list : head of the list tracking requests that could
273 * not be allocated
274 *
275 * Satisfy resource requests of each element in the list. Add
276 * requests that could not satisfied to the failed_list.
277 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800278static void assign_requested_resources_sorted(struct list_head *head,
279 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -0800280{
281 struct resource *res;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800282 struct pci_dev_resource *dev_res;
Yinghai Lu6841ec62010-01-22 01:02:25 -0800283 int idx;
284
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800285 list_for_each_entry(dev_res, head, list) {
286 res = dev_res->res;
287 idx = res - &dev_res->dev->resource[0];
288 if (resource_size(res) &&
289 pci_assign_resource(dev_res->dev, idx)) {
290 if (fail_head && !pci_is_root_bus(dev_res->dev->bus)) {
Yinghai Lu9a928662010-02-28 15:49:39 -0800291 /*
292 * if the failed res is for ROM BAR, and it will
293 * be enabled later, don't add it to the list
294 */
295 if (!((idx == PCI_ROM_RESOURCE) &&
296 (!(res->flags & IORESOURCE_ROM_ENABLE))))
Yinghai Lu67cc7e22012-01-21 02:08:32 -0800297 add_to_list(fail_head,
298 dev_res->dev, res,
299 0 /* dont care */,
300 0 /* dont care */);
Yinghai Lu9a928662010-02-28 15:49:39 -0800301 }
Ram Paifc075e12011-02-14 17:43:19 -0800302 reset_resource(res);
Rajesh Shah542df5d2005-04-28 00:25:50 -0700303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 }
305}
306
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800307static void __assign_resources_sorted(struct list_head *head,
308 struct list_head *realloc_head,
309 struct list_head *fail_head)
Ram Paic8adf9a2011-02-14 17:43:20 -0800310{
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800311 /*
312 * Should not assign requested resources at first.
313 * they could be adjacent, so later reassign can not reallocate
314 * them one by one in parent resource window.
315 * Try to assign requested + add_size at begining
316 * if could do that, could get out early.
317 * if could not do that, we still try to assign requested at first,
318 * then try to reassign add_size for some resources.
319 */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800320 LIST_HEAD(save_head);
321 LIST_HEAD(local_fail_head);
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800322 struct pci_dev_resource *save_res;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800323 struct pci_dev_resource *dev_res;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800324
325 /* Check if optional add_size is there */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800326 if (!realloc_head || list_empty(realloc_head))
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800327 goto requested_and_reassign;
328
329 /* Save original start, end, flags etc at first */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800330 list_for_each_entry(dev_res, head, list) {
331 if (add_to_list(&save_head, dev_res->dev, dev_res->res, 0, 0)) {
Yinghai Lubffc56d2012-01-21 02:08:30 -0800332 free_list(&save_head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800333 goto requested_and_reassign;
334 }
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800335 }
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800336
337 /* Update res in head list with add_size in realloc_head list */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800338 list_for_each_entry(dev_res, head, list)
339 dev_res->res->end += get_res_add_size(realloc_head,
340 dev_res->res);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800341
342 /* Try updated head list with add_size added */
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800343 assign_requested_resources_sorted(head, &local_fail_head);
344
345 /* all assigned with add_size ? */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800346 if (list_empty(&local_fail_head)) {
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800347 /* Remove head list from realloc_head list */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800348 list_for_each_entry(dev_res, head, list)
349 remove_from_list(realloc_head, dev_res->res);
Yinghai Lubffc56d2012-01-21 02:08:30 -0800350 free_list(&save_head);
351 free_list(head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800352 return;
353 }
354
Yinghai Lubffc56d2012-01-21 02:08:30 -0800355 free_list(&local_fail_head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800356 /* Release assigned resource */
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800357 list_for_each_entry(dev_res, head, list)
358 if (dev_res->res->parent)
359 release_resource(dev_res->res);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800360 /* Restore start/end/flags from saved list */
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800361 list_for_each_entry(save_res, &save_head, list) {
362 struct resource *res = save_res->res;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800363
Yinghai Lub9b0bba2012-01-21 02:08:29 -0800364 res->start = save_res->start;
365 res->end = save_res->end;
366 res->flags = save_res->flags;
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800367 }
Yinghai Lubffc56d2012-01-21 02:08:30 -0800368 free_list(&save_head);
Yinghai Lu3e6e0d82012-01-21 02:08:20 -0800369
370requested_and_reassign:
Ram Paic8adf9a2011-02-14 17:43:20 -0800371 /* Satisfy the must-have resource requests */
372 assign_requested_resources_sorted(head, fail_head);
373
Ram Pai0a2daa12011-07-25 13:08:41 -0700374 /* Try to satisfy any additional optional resource
Ram Paic8adf9a2011-02-14 17:43:20 -0800375 requests */
Ram Pai9e8bf932011-07-25 13:08:42 -0700376 if (realloc_head)
377 reassign_resources_sorted(realloc_head, head);
Yinghai Lubffc56d2012-01-21 02:08:30 -0800378 free_list(head);
Ram Paic8adf9a2011-02-14 17:43:20 -0800379}
380
Yinghai Lu6841ec62010-01-22 01:02:25 -0800381static void pdev_assign_resources_sorted(struct pci_dev *dev,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800382 struct list_head *add_head,
383 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -0800384{
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800385 LIST_HEAD(head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800386
Yinghai Lu6841ec62010-01-22 01:02:25 -0800387 __dev_sort_resources(dev, &head);
Yinghai Lu8424d752012-01-21 02:08:21 -0800388 __assign_resources_sorted(&head, add_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800389
390}
391
392static void pbus_assign_resources_sorted(const struct pci_bus *bus,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800393 struct list_head *realloc_head,
394 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -0800395{
396 struct pci_dev *dev;
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800397 LIST_HEAD(head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800398
Yinghai Lu6841ec62010-01-22 01:02:25 -0800399 list_for_each_entry(dev, &bus->devices, bus_list)
400 __dev_sort_resources(dev, &head);
401
Ram Pai9e8bf932011-07-25 13:08:42 -0700402 __assign_resources_sorted(&head, realloc_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -0800403}
404
Dominik Brodowskib3743fa2005-09-09 13:03:23 -0700405void pci_setup_cardbus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
407 struct pci_dev *bridge = bus->self;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600408 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 struct pci_bus_region region;
410
Bjorn Helgaas865df572009-11-04 10:32:57 -0700411 dev_info(&bridge->dev, "CardBus bridge to [bus %02x-%02x]\n",
412 bus->secondary, bus->subordinate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600414 res = bus->resource[0];
415 pcibios_resource_to_bus(bridge, &region, res);
416 if (res->flags & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 /*
418 * The IO resource is allocated a range twice as large as it
419 * would normally need. This allows us to set both IO regs.
420 */
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600421 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 pci_write_config_dword(bridge, PCI_CB_IO_BASE_0,
423 region.start);
424 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_0,
425 region.end);
426 }
427
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600428 res = bus->resource[1];
429 pcibios_resource_to_bus(bridge, &region, res);
430 if (res->flags & IORESOURCE_IO) {
431 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 pci_write_config_dword(bridge, PCI_CB_IO_BASE_1,
433 region.start);
434 pci_write_config_dword(bridge, PCI_CB_IO_LIMIT_1,
435 region.end);
436 }
437
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600438 res = bus->resource[2];
439 pcibios_resource_to_bus(bridge, &region, res);
440 if (res->flags & IORESOURCE_MEM) {
441 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_0,
443 region.start);
444 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_0,
445 region.end);
446 }
447
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600448 res = bus->resource[3];
449 pcibios_resource_to_bus(bridge, &region, res);
450 if (res->flags & IORESOURCE_MEM) {
451 dev_info(&bridge->dev, " bridge window %pR\n", res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 pci_write_config_dword(bridge, PCI_CB_MEMORY_BASE_1,
453 region.start);
454 pci_write_config_dword(bridge, PCI_CB_MEMORY_LIMIT_1,
455 region.end);
456 }
457}
Dominik Brodowskib3743fa2005-09-09 13:03:23 -0700458EXPORT_SYMBOL(pci_setup_cardbus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
460/* Initialize bridges with base/limit values we have collected.
461 PCI-to-PCI Bridge Architecture Specification rev. 1.1 (1998)
462 requires that if there is no I/O ports or memory behind the
463 bridge, corresponding range must be turned off by writing base
464 value greater than limit to the bridge's base/limit registers.
465
466 Note: care must be taken when updating I/O base/limit registers
467 of bridges which support 32-bit I/O. This update requires two
468 config space writes, so it's quite possible that an I/O window of
469 the bridge will have some undesirable address (e.g. 0) after the
470 first write. Ditto 64-bit prefetchable MMIO. */
Yinghai Lu7cc59972009-12-22 15:02:21 -0800471static void pci_setup_bridge_io(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472{
473 struct pci_dev *bridge = bus->self;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600474 struct resource *res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 struct pci_bus_region region;
Yinghai Lu7cc59972009-12-22 15:02:21 -0800476 u32 l, io_upper16;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
478 /* Set up the top and bottom of the PCI I/O segment for this bus. */
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600479 res = bus->resource[0];
480 pcibios_resource_to_bus(bridge, &region, res);
481 if (res->flags & IORESOURCE_IO) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 pci_read_config_dword(bridge, PCI_IO_BASE, &l);
483 l &= 0xffff0000;
484 l |= (region.start >> 8) & 0x00f0;
485 l |= region.end & 0xf000;
486 /* Set up upper 16 bits of I/O base/limit. */
487 io_upper16 = (region.end & 0xffff0000) | (region.start >> 16);
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600488 dev_info(&bridge->dev, " bridge window %pR\n", res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800489 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 /* Clear upper 16 bits of I/O base/limit. */
491 io_upper16 = 0;
492 l = 0x00f0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494 /* Temporarily disable the I/O range before updating PCI_IO_BASE. */
495 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, 0x0000ffff);
496 /* Update lower 16 bits of I/O base/limit. */
497 pci_write_config_dword(bridge, PCI_IO_BASE, l);
498 /* Update upper 16 bits of I/O base/limit. */
499 pci_write_config_dword(bridge, PCI_IO_BASE_UPPER16, io_upper16);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800500}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
Yinghai Lu7cc59972009-12-22 15:02:21 -0800502static void pci_setup_bridge_mmio(struct pci_bus *bus)
503{
504 struct pci_dev *bridge = bus->self;
505 struct resource *res;
506 struct pci_bus_region region;
507 u32 l;
508
509 /* Set up the top and bottom of the PCI Memory segment for this bus. */
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600510 res = bus->resource[1];
511 pcibios_resource_to_bus(bridge, &region, res);
512 if (res->flags & IORESOURCE_MEM) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 l = (region.start >> 16) & 0xfff0;
514 l |= region.end & 0xfff00000;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600515 dev_info(&bridge->dev, " bridge window %pR\n", res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800516 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 l = 0x0000fff0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 pci_write_config_dword(bridge, PCI_MEMORY_BASE, l);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800520}
521
522static void pci_setup_bridge_mmio_pref(struct pci_bus *bus)
523{
524 struct pci_dev *bridge = bus->self;
525 struct resource *res;
526 struct pci_bus_region region;
527 u32 l, bu, lu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* Clear out the upper 32 bits of PREF limit.
530 If PCI_PREF_BASE_UPPER32 was non-zero, this temporarily
531 disables PREF range, which is ok. */
532 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, 0);
533
534 /* Set up PREF base/limit. */
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100535 bu = lu = 0;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600536 res = bus->resource[2];
537 pcibios_resource_to_bus(bridge, &region, res);
538 if (res->flags & IORESOURCE_PREFETCH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 l = (region.start >> 16) & 0xfff0;
540 l |= region.end & 0xfff00000;
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600541 if (res->flags & IORESOURCE_MEM_64) {
Yinghai Lu1f82de12009-04-23 20:48:32 -0700542 bu = upper_32_bits(region.start);
543 lu = upper_32_bits(region.end);
Yinghai Lu1f82de12009-04-23 20:48:32 -0700544 }
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -0600545 dev_info(&bridge->dev, " bridge window %pR\n", res);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800546 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 l = 0x0000fff0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 }
549 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, l);
550
Alex Williamson59353ea2009-11-30 14:51:44 -0700551 /* Set the upper 32 bits of PREF base & limit. */
552 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32, bu);
553 pci_write_config_dword(bridge, PCI_PREF_LIMIT_UPPER32, lu);
Yinghai Lu7cc59972009-12-22 15:02:21 -0800554}
555
556static void __pci_setup_bridge(struct pci_bus *bus, unsigned long type)
557{
558 struct pci_dev *bridge = bus->self;
559
Yinghai Lu7cc59972009-12-22 15:02:21 -0800560 dev_info(&bridge->dev, "PCI bridge to [bus %02x-%02x]\n",
561 bus->secondary, bus->subordinate);
562
563 if (type & IORESOURCE_IO)
564 pci_setup_bridge_io(bus);
565
566 if (type & IORESOURCE_MEM)
567 pci_setup_bridge_mmio(bus);
568
569 if (type & IORESOURCE_PREFETCH)
570 pci_setup_bridge_mmio_pref(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 pci_write_config_word(bridge, PCI_BRIDGE_CONTROL, bus->bridge_ctl);
573}
574
Benjamin Herrenschmidte2444272011-09-11 14:08:38 -0300575void pci_setup_bridge(struct pci_bus *bus)
Yinghai Lu7cc59972009-12-22 15:02:21 -0800576{
577 unsigned long type = IORESOURCE_IO | IORESOURCE_MEM |
578 IORESOURCE_PREFETCH;
579
580 __pci_setup_bridge(bus, type);
581}
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/* Check whether the bridge supports optional I/O and
584 prefetchable memory ranges. If not, the respective
585 base/limit registers must be read-only and read as 0. */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800586static void pci_bridge_check_ranges(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587{
588 u16 io;
589 u32 pmem;
590 struct pci_dev *bridge = bus->self;
591 struct resource *b_res;
592
593 b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
594 b_res[1].flags |= IORESOURCE_MEM;
595
596 pci_read_config_word(bridge, PCI_IO_BASE, &io);
597 if (!io) {
598 pci_write_config_word(bridge, PCI_IO_BASE, 0xf0f0);
599 pci_read_config_word(bridge, PCI_IO_BASE, &io);
600 pci_write_config_word(bridge, PCI_IO_BASE, 0x0);
601 }
602 if (io)
603 b_res[0].flags |= IORESOURCE_IO;
604 /* DECchip 21050 pass 2 errata: the bridge may miss an address
605 disconnect boundary by one PCI data phase.
606 Workaround: do not use prefetching on this device. */
607 if (bridge->vendor == PCI_VENDOR_ID_DEC && bridge->device == 0x0001)
608 return;
609 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
610 if (!pmem) {
611 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE,
612 0xfff0fff0);
613 pci_read_config_dword(bridge, PCI_PREF_MEMORY_BASE, &pmem);
614 pci_write_config_dword(bridge, PCI_PREF_MEMORY_BASE, 0x0);
615 }
Yinghai Lu1f82de12009-04-23 20:48:32 -0700616 if (pmem) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH;
Yinghai Lu99586102010-01-22 01:02:28 -0800618 if ((pmem & PCI_PREF_RANGE_TYPE_MASK) ==
619 PCI_PREF_RANGE_TYPE_64) {
Yinghai Lu1f82de12009-04-23 20:48:32 -0700620 b_res[2].flags |= IORESOURCE_MEM_64;
Yinghai Lu99586102010-01-22 01:02:28 -0800621 b_res[2].flags |= PCI_PREF_RANGE_TYPE_64;
622 }
Yinghai Lu1f82de12009-04-23 20:48:32 -0700623 }
624
625 /* double check if bridge does support 64 bit pref */
626 if (b_res[2].flags & IORESOURCE_MEM_64) {
627 u32 mem_base_hi, tmp;
628 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32,
629 &mem_base_hi);
630 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
631 0xffffffff);
632 pci_read_config_dword(bridge, PCI_PREF_BASE_UPPER32, &tmp);
633 if (!tmp)
634 b_res[2].flags &= ~IORESOURCE_MEM_64;
635 pci_write_config_dword(bridge, PCI_PREF_BASE_UPPER32,
636 mem_base_hi);
637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638}
639
640/* Helper function for sizing routines: find first available
641 bus resource of a given type. Note: we intentionally skip
642 the bus resources which have already been assigned (that is,
643 have non-NULL parent resource). */
Sam Ravnborg96bde062007-03-26 21:53:30 -0800644static struct resource *find_free_bus_resource(struct pci_bus *bus, unsigned long type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645{
646 int i;
647 struct resource *r;
648 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
649 IORESOURCE_PREFETCH;
650
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -0700651 pci_bus_for_each_resource(bus, r, i) {
Ivan Kokshaysky299de032005-06-15 18:59:27 +0400652 if (r == &ioport_resource || r == &iomem_resource)
653 continue;
Jesse Barnes55a10982009-10-27 09:39:18 -0700654 if (r && (r->flags & type_mask) == type && !r->parent)
655 return r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 }
657 return NULL;
658}
659
Ram Pai13583b12011-02-14 17:43:17 -0800660static resource_size_t calculate_iosize(resource_size_t size,
661 resource_size_t min_size,
662 resource_size_t size1,
663 resource_size_t old_size,
664 resource_size_t align)
665{
666 if (size < min_size)
667 size = min_size;
668 if (old_size == 1 )
669 old_size = 0;
670 /* To be fixed in 2.5: we should have sort of HAVE_ISA
671 flag in the struct pci_bus. */
672#if defined(CONFIG_ISA) || defined(CONFIG_EISA)
673 size = (size & 0xff) + ((size & ~0xffUL) << 2);
674#endif
675 size = ALIGN(size + size1, align);
676 if (size < old_size)
677 size = old_size;
678 return size;
679}
680
681static resource_size_t calculate_memsize(resource_size_t size,
682 resource_size_t min_size,
683 resource_size_t size1,
684 resource_size_t old_size,
685 resource_size_t align)
686{
687 if (size < min_size)
688 size = min_size;
689 if (old_size == 1 )
690 old_size = 0;
691 if (size < old_size)
692 size = old_size;
693 size = ALIGN(size + size1, align);
694 return size;
695}
696
Ram Paic8adf9a2011-02-14 17:43:20 -0800697/**
698 * pbus_size_io() - size the io window of a given bus
699 *
700 * @bus : the bus
701 * @min_size : the minimum io window that must to be allocated
702 * @add_size : additional optional io window
Ram Pai9e8bf932011-07-25 13:08:42 -0700703 * @realloc_head : track the additional io window on this list
Ram Paic8adf9a2011-02-14 17:43:20 -0800704 *
705 * Sizing the IO windows of the PCI-PCI bridge is trivial,
706 * since these windows have 4K granularity and the IO ranges
707 * of non-bridge PCI devices are limited to 256 bytes.
708 * We must be careful with the ISA aliasing though.
709 */
710static void pbus_size_io(struct pci_bus *bus, resource_size_t min_size,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800711 resource_size_t add_size, struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct pci_dev *dev;
714 struct resource *b_res = find_free_bus_resource(bus, IORESOURCE_IO);
Ram Paic8adf9a2011-02-14 17:43:20 -0800715 unsigned long size = 0, size0 = 0, size1 = 0;
Yinghai Lube768912011-07-25 13:08:38 -0700716 resource_size_t children_add_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 if (!b_res)
719 return;
720
721 list_for_each_entry(dev, &bus->devices, bus_list) {
722 int i;
723
724 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
725 struct resource *r = &dev->resource[i];
726 unsigned long r_size;
727
728 if (r->parent || !(r->flags & IORESOURCE_IO))
729 continue;
Zhao, Yu022edd82008-10-13 19:24:28 +0800730 r_size = resource_size(r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 if (r_size < 0x400)
733 /* Might be re-aligned for ISA */
734 size += r_size;
735 else
736 size1 += r_size;
Yinghai Lube768912011-07-25 13:08:38 -0700737
Ram Pai9e8bf932011-07-25 13:08:42 -0700738 if (realloc_head)
739 children_add_size += get_res_add_size(realloc_head, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
741 }
Ram Paic8adf9a2011-02-14 17:43:20 -0800742 size0 = calculate_iosize(size, min_size, size1,
Ram Pai13583b12011-02-14 17:43:17 -0800743 resource_size(b_res), 4096);
Yinghai Lube768912011-07-25 13:08:38 -0700744 if (children_add_size > add_size)
745 add_size = children_add_size;
Ram Pai9e8bf932011-07-25 13:08:42 -0700746 size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
Yinghai Lua4ac9fe2012-01-21 02:08:17 -0800747 calculate_iosize(size, min_size, add_size + size1,
Ram Paic8adf9a2011-02-14 17:43:20 -0800748 resource_size(b_res), 4096);
749 if (!size0 && !size1) {
Bjorn Helgaas865df572009-11-04 10:32:57 -0700750 if (b_res->start || b_res->end)
751 dev_info(&bus->self->dev, "disabling bridge window "
752 "%pR to [bus %02x-%02x] (unused)\n", b_res,
753 bus->secondary, bus->subordinate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 b_res->flags = 0;
755 return;
756 }
757 /* Alignment of the IO window is always 4K */
758 b_res->start = 4096;
Ram Paic8adf9a2011-02-14 17:43:20 -0800759 b_res->end = b_res->start + size0 - 1;
Ivan Kokshaysky88452562008-03-30 19:50:14 +0400760 b_res->flags |= IORESOURCE_STARTALIGN;
Yinghai Lub5924432012-01-21 02:08:31 -0800761 if (size1 > size0 && realloc_head) {
Ram Pai9e8bf932011-07-25 13:08:42 -0700762 add_to_list(realloc_head, bus->self, b_res, size1-size0, 4096);
Yinghai Lub5924432012-01-21 02:08:31 -0800763 dev_printk(KERN_DEBUG, &bus->self->dev, "bridge window "
764 "%pR to [bus %02x-%02x] add_size %lx\n", b_res,
765 bus->secondary, bus->subordinate, size1-size0);
766 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Ram Paic8adf9a2011-02-14 17:43:20 -0800769/**
770 * pbus_size_mem() - size the memory window of a given bus
771 *
772 * @bus : the bus
773 * @min_size : the minimum memory window that must to be allocated
774 * @add_size : additional optional memory window
Ram Pai9e8bf932011-07-25 13:08:42 -0700775 * @realloc_head : track the additional memory window on this list
Ram Paic8adf9a2011-02-14 17:43:20 -0800776 *
777 * Calculate the size of the bus and minimal alignment which
778 * guarantees that all child resources fit in this size.
779 */
Eric W. Biederman28760482009-09-09 14:09:24 -0700780static int pbus_size_mem(struct pci_bus *bus, unsigned long mask,
Ram Paic8adf9a2011-02-14 17:43:20 -0800781 unsigned long type, resource_size_t min_size,
782 resource_size_t add_size,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800783 struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 struct pci_dev *dev;
Ram Paic8adf9a2011-02-14 17:43:20 -0800786 resource_size_t min_align, align, size, size0, size1;
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100787 resource_size_t aligns[12]; /* Alignments from 1Mb to 2Gb */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 int order, max_order;
789 struct resource *b_res = find_free_bus_resource(bus, type);
Yinghai Lu1f82de12009-04-23 20:48:32 -0700790 unsigned int mem64_mask = 0;
Yinghai Lube768912011-07-25 13:08:38 -0700791 resource_size_t children_add_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
793 if (!b_res)
794 return 0;
795
796 memset(aligns, 0, sizeof(aligns));
797 max_order = 0;
798 size = 0;
799
Yinghai Lu1f82de12009-04-23 20:48:32 -0700800 mem64_mask = b_res->flags & IORESOURCE_MEM_64;
801 b_res->flags &= ~IORESOURCE_MEM_64;
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 list_for_each_entry(dev, &bus->devices, bus_list) {
804 int i;
Yinghai Lu1f82de12009-04-23 20:48:32 -0700805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
807 struct resource *r = &dev->resource[i];
Benjamin Herrenschmidtc40a22e2007-12-10 17:32:15 +1100808 resource_size_t r_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810 if (r->parent || (r->flags & mask) != type)
811 continue;
Zhao, Yu022edd82008-10-13 19:24:28 +0800812 r_size = resource_size(r);
Yinghai Lu2aceefc2011-07-25 13:08:40 -0700813#ifdef CONFIG_PCI_IOV
814 /* put SRIOV requested res to the optional list */
Ram Pai9e8bf932011-07-25 13:08:42 -0700815 if (realloc_head && i >= PCI_IOV_RESOURCES &&
Yinghai Lu2aceefc2011-07-25 13:08:40 -0700816 i <= PCI_IOV_RESOURCE_END) {
817 r->end = r->start - 1;
Ram Pai9e8bf932011-07-25 13:08:42 -0700818 add_to_list(realloc_head, dev, r, r_size, 0/* dont' care */);
Yinghai Lu2aceefc2011-07-25 13:08:40 -0700819 children_add_size += r_size;
820 continue;
821 }
822#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 /* For bridges size != alignment */
Chris Wright6faf17f2009-08-28 13:00:06 -0700824 align = pci_resource_alignment(dev, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 order = __ffs(align) - 20;
826 if (order > 11) {
Bjorn Helgaas865df572009-11-04 10:32:57 -0700827 dev_warn(&dev->dev, "disabling BAR %d: %pR "
828 "(bad alignment %#llx)\n", i, r,
829 (unsigned long long) align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 r->flags = 0;
831 continue;
832 }
833 size += r_size;
834 if (order < 0)
835 order = 0;
836 /* Exclude ranges with size > align from
837 calculation of the alignment. */
838 if (r_size == align)
839 aligns[order] += align;
840 if (order > max_order)
841 max_order = order;
Yinghai Lu1f82de12009-04-23 20:48:32 -0700842 mem64_mask &= r->flags & IORESOURCE_MEM_64;
Yinghai Lube768912011-07-25 13:08:38 -0700843
Ram Pai9e8bf932011-07-25 13:08:42 -0700844 if (realloc_head)
845 children_add_size += get_res_add_size(realloc_head, r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 align = 0;
849 min_align = 0;
850 for (order = 0; order <= max_order; order++) {
Jeremy Fitzhardinge8308c542008-09-11 01:31:50 -0700851 resource_size_t align1 = 1;
852
853 align1 <<= (order + 20);
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 if (!align)
856 min_align = align1;
Milind Arun Choudhary6f6f8c22007-07-09 11:55:51 -0700857 else if (ALIGN(align + min_align, min_align) < align1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 min_align = align1 >> 1;
859 align += aligns[order];
860 }
Linus Torvaldsb42282e2011-04-11 10:53:11 -0700861 size0 = calculate_memsize(size, min_size, 0, resource_size(b_res), min_align);
Yinghai Lube768912011-07-25 13:08:38 -0700862 if (children_add_size > add_size)
863 add_size = children_add_size;
Ram Pai9e8bf932011-07-25 13:08:42 -0700864 size1 = (!realloc_head || (realloc_head && !add_size)) ? size0 :
Yinghai Lua4ac9fe2012-01-21 02:08:17 -0800865 calculate_memsize(size, min_size, add_size,
Linus Torvaldsb42282e2011-04-11 10:53:11 -0700866 resource_size(b_res), min_align);
Ram Paic8adf9a2011-02-14 17:43:20 -0800867 if (!size0 && !size1) {
Bjorn Helgaas865df572009-11-04 10:32:57 -0700868 if (b_res->start || b_res->end)
869 dev_info(&bus->self->dev, "disabling bridge window "
870 "%pR to [bus %02x-%02x] (unused)\n", b_res,
871 bus->secondary, bus->subordinate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 b_res->flags = 0;
873 return 1;
874 }
875 b_res->start = min_align;
Ram Paic8adf9a2011-02-14 17:43:20 -0800876 b_res->end = size0 + min_align - 1;
877 b_res->flags |= IORESOURCE_STARTALIGN | mem64_mask;
Yinghai Lub5924432012-01-21 02:08:31 -0800878 if (size1 > size0 && realloc_head) {
Ram Pai9e8bf932011-07-25 13:08:42 -0700879 add_to_list(realloc_head, bus->self, b_res, size1-size0, min_align);
Yinghai Lub5924432012-01-21 02:08:31 -0800880 dev_printk(KERN_DEBUG, &bus->self->dev, "bridge window "
881 "%pR to [bus %02x-%02x] add_size %llx\n", b_res,
882 bus->secondary, bus->subordinate, (unsigned long long)size1-size0);
883 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 return 1;
885}
886
Ram Pai0a2daa12011-07-25 13:08:41 -0700887unsigned long pci_cardbus_resource_alignment(struct resource *res)
888{
889 if (res->flags & IORESOURCE_IO)
890 return pci_cardbus_io_size;
891 if (res->flags & IORESOURCE_MEM)
892 return pci_cardbus_mem_size;
893 return 0;
894}
895
896static void pci_bus_size_cardbus(struct pci_bus *bus,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800897 struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct pci_dev *bridge = bus->self;
900 struct resource *b_res = &bridge->resource[PCI_BRIDGE_RESOURCES];
Yinghai Lu11848932012-02-10 15:33:47 -0800901 resource_size_t b_res_3_size = pci_cardbus_mem_size * 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 u16 ctrl;
903
Yinghai Lu3796f1e2012-02-10 15:33:48 -0800904 if (b_res[0].parent)
905 goto handle_b_res_1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 /*
907 * Reserve some resources for CardBus. We reserve
908 * a fixed amount of bus space for CardBus bridges.
909 */
Yinghai Lu11848932012-02-10 15:33:47 -0800910 b_res[0].start = pci_cardbus_io_size;
911 b_res[0].end = b_res[0].start + pci_cardbus_io_size - 1;
912 b_res[0].flags |= IORESOURCE_IO | IORESOURCE_STARTALIGN;
913 if (realloc_head) {
914 b_res[0].end -= pci_cardbus_io_size;
915 add_to_list(realloc_head, bridge, b_res, pci_cardbus_io_size,
916 pci_cardbus_io_size);
917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Yinghai Lu3796f1e2012-02-10 15:33:48 -0800919handle_b_res_1:
920 if (b_res[1].parent)
921 goto handle_b_res_2;
Yinghai Lu11848932012-02-10 15:33:47 -0800922 b_res[1].start = pci_cardbus_io_size;
923 b_res[1].end = b_res[1].start + pci_cardbus_io_size - 1;
924 b_res[1].flags |= IORESOURCE_IO | IORESOURCE_STARTALIGN;
925 if (realloc_head) {
926 b_res[1].end -= pci_cardbus_io_size;
927 add_to_list(realloc_head, bridge, b_res+1, pci_cardbus_io_size,
928 pci_cardbus_io_size);
929 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Yinghai Lu3796f1e2012-02-10 15:33:48 -0800931handle_b_res_2:
Yinghai Ludcef0d02012-02-10 15:33:46 -0800932 /* MEM1 must not be pref mmio */
933 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
934 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM1) {
935 ctrl &= ~PCI_CB_BRIDGE_CTL_PREFETCH_MEM1;
936 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
937 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
938 }
939
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 /*
941 * Check whether prefetchable memory is supported
942 * by this bridge.
943 */
944 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
945 if (!(ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0)) {
946 ctrl |= PCI_CB_BRIDGE_CTL_PREFETCH_MEM0;
947 pci_write_config_word(bridge, PCI_CB_BRIDGE_CONTROL, ctrl);
948 pci_read_config_word(bridge, PCI_CB_BRIDGE_CONTROL, &ctrl);
949 }
950
Yinghai Lu3796f1e2012-02-10 15:33:48 -0800951 if (b_res[2].parent)
952 goto handle_b_res_3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
954 * If we have prefetchable memory support, allocate
955 * two regions. Otherwise, allocate one region of
956 * twice the size.
957 */
958 if (ctrl & PCI_CB_BRIDGE_CTL_PREFETCH_MEM0) {
Yinghai Lu11848932012-02-10 15:33:47 -0800959 b_res[2].start = pci_cardbus_mem_size;
960 b_res[2].end = b_res[2].start + pci_cardbus_mem_size - 1;
961 b_res[2].flags |= IORESOURCE_MEM | IORESOURCE_PREFETCH |
962 IORESOURCE_STARTALIGN;
963 if (realloc_head) {
964 b_res[2].end -= pci_cardbus_mem_size;
965 add_to_list(realloc_head, bridge, b_res+2,
966 pci_cardbus_mem_size, pci_cardbus_mem_size);
967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Yinghai Lu11848932012-02-10 15:33:47 -0800969 /* reduce that to half */
970 b_res_3_size = pci_cardbus_mem_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 }
Ram Pai0a2daa12011-07-25 13:08:41 -0700972
Yinghai Lu3796f1e2012-02-10 15:33:48 -0800973handle_b_res_3:
974 if (b_res[3].parent)
975 goto handle_done;
Yinghai Lu11848932012-02-10 15:33:47 -0800976 b_res[3].start = pci_cardbus_mem_size;
977 b_res[3].end = b_res[3].start + b_res_3_size - 1;
978 b_res[3].flags |= IORESOURCE_MEM | IORESOURCE_STARTALIGN;
979 if (realloc_head) {
980 b_res[3].end -= b_res_3_size;
981 add_to_list(realloc_head, bridge, b_res+3, b_res_3_size,
982 pci_cardbus_mem_size);
983 }
Yinghai Lu3796f1e2012-02-10 15:33:48 -0800984
985handle_done:
986 ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
988
Ram Paic8adf9a2011-02-14 17:43:20 -0800989void __ref __pci_bus_size_bridges(struct pci_bus *bus,
Yinghai Lubdc4abe2012-01-21 02:08:27 -0800990 struct list_head *realloc_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 struct pci_dev *dev;
993 unsigned long mask, prefmask;
Ram Paic8adf9a2011-02-14 17:43:20 -0800994 resource_size_t additional_mem_size = 0, additional_io_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 list_for_each_entry(dev, &bus->devices, bus_list) {
997 struct pci_bus *b = dev->subordinate;
998 if (!b)
999 continue;
1000
1001 switch (dev->class >> 8) {
1002 case PCI_CLASS_BRIDGE_CARDBUS:
Ram Pai9e8bf932011-07-25 13:08:42 -07001003 pci_bus_size_cardbus(b, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 break;
1005
1006 case PCI_CLASS_BRIDGE_PCI:
1007 default:
Ram Pai9e8bf932011-07-25 13:08:42 -07001008 __pci_bus_size_bridges(b, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 break;
1010 }
1011 }
1012
1013 /* The root bus? */
1014 if (!bus->self)
1015 return;
1016
1017 switch (bus->self->class >> 8) {
1018 case PCI_CLASS_BRIDGE_CARDBUS:
1019 /* don't size cardbuses yet. */
1020 break;
1021
1022 case PCI_CLASS_BRIDGE_PCI:
1023 pci_bridge_check_ranges(bus);
Eric W. Biederman28760482009-09-09 14:09:24 -07001024 if (bus->self->is_hotplug_bridge) {
Ram Paic8adf9a2011-02-14 17:43:20 -08001025 additional_io_size = pci_hotplug_io_size;
1026 additional_mem_size = pci_hotplug_mem_size;
Eric W. Biederman28760482009-09-09 14:09:24 -07001027 }
Ram Paic8adf9a2011-02-14 17:43:20 -08001028 /*
1029 * Follow thru
1030 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 default:
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001032 pbus_size_io(bus, realloc_head ? 0 : additional_io_size,
1033 additional_io_size, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 /* If the bridge supports prefetchable range, size it
1035 separately. If it doesn't, or its prefetchable window
1036 has already been allocated by arch code, try
1037 non-prefetchable range for both types of PCI memory
1038 resources. */
1039 mask = IORESOURCE_MEM;
1040 prefmask = IORESOURCE_MEM | IORESOURCE_PREFETCH;
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001041 if (pbus_size_mem(bus, prefmask, prefmask,
1042 realloc_head ? 0 : additional_mem_size,
1043 additional_mem_size, realloc_head))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 mask = prefmask; /* Success, size non-prefetch only. */
Eric W. Biederman28760482009-09-09 14:09:24 -07001045 else
Ram Paic8adf9a2011-02-14 17:43:20 -08001046 additional_mem_size += additional_mem_size;
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001047 pbus_size_mem(bus, mask, IORESOURCE_MEM,
1048 realloc_head ? 0 : additional_mem_size,
1049 additional_mem_size, realloc_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 break;
1051 }
1052}
Ram Paic8adf9a2011-02-14 17:43:20 -08001053
1054void __ref pci_bus_size_bridges(struct pci_bus *bus)
1055{
1056 __pci_bus_size_bridges(bus, NULL);
1057}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058EXPORT_SYMBOL(pci_bus_size_bridges);
1059
Yinghai Lu568ddef2010-01-22 01:02:21 -08001060static void __ref __pci_bus_assign_resources(const struct pci_bus *bus,
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001061 struct list_head *realloc_head,
1062 struct list_head *fail_head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
1064 struct pci_bus *b;
1065 struct pci_dev *dev;
1066
Ram Pai9e8bf932011-07-25 13:08:42 -07001067 pbus_assign_resources_sorted(bus, realloc_head, fail_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 list_for_each_entry(dev, &bus->devices, bus_list) {
1070 b = dev->subordinate;
1071 if (!b)
1072 continue;
1073
Ram Pai9e8bf932011-07-25 13:08:42 -07001074 __pci_bus_assign_resources(b, realloc_head, fail_head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
1076 switch (dev->class >> 8) {
1077 case PCI_CLASS_BRIDGE_PCI:
Yinghai Lu6841ec62010-01-22 01:02:25 -08001078 if (!pci_is_enabled(dev))
1079 pci_setup_bridge(b);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 break;
1081
1082 case PCI_CLASS_BRIDGE_CARDBUS:
1083 pci_setup_cardbus(b);
1084 break;
1085
1086 default:
Bjorn Helgaas80ccba12008-06-13 10:52:11 -06001087 dev_info(&dev->dev, "not setting up bridge for bus "
1088 "%04x:%02x\n", pci_domain_nr(b), b->number);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 break;
1090 }
1091 }
1092}
Yinghai Lu568ddef2010-01-22 01:02:21 -08001093
1094void __ref pci_bus_assign_resources(const struct pci_bus *bus)
1095{
Ram Paic8adf9a2011-02-14 17:43:20 -08001096 __pci_bus_assign_resources(bus, NULL, NULL);
Yinghai Lu568ddef2010-01-22 01:02:21 -08001097}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098EXPORT_SYMBOL(pci_bus_assign_resources);
1099
Yinghai Lu6841ec62010-01-22 01:02:25 -08001100static void __ref __pci_bridge_assign_resources(const struct pci_dev *bridge,
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001101 struct list_head *add_head,
1102 struct list_head *fail_head)
Yinghai Lu6841ec62010-01-22 01:02:25 -08001103{
1104 struct pci_bus *b;
1105
Yinghai Lu8424d752012-01-21 02:08:21 -08001106 pdev_assign_resources_sorted((struct pci_dev *)bridge,
1107 add_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001108
1109 b = bridge->subordinate;
1110 if (!b)
1111 return;
1112
Yinghai Lu8424d752012-01-21 02:08:21 -08001113 __pci_bus_assign_resources(b, add_head, fail_head);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001114
1115 switch (bridge->class >> 8) {
1116 case PCI_CLASS_BRIDGE_PCI:
1117 pci_setup_bridge(b);
1118 break;
1119
1120 case PCI_CLASS_BRIDGE_CARDBUS:
1121 pci_setup_cardbus(b);
1122 break;
1123
1124 default:
1125 dev_info(&bridge->dev, "not setting up bridge for bus "
1126 "%04x:%02x\n", pci_domain_nr(b), b->number);
1127 break;
1128 }
1129}
Yinghai Lu5009b462010-01-22 01:02:20 -08001130static void pci_bridge_release_resources(struct pci_bus *bus,
1131 unsigned long type)
1132{
1133 int idx;
1134 bool changed = false;
1135 struct pci_dev *dev;
1136 struct resource *r;
1137 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1138 IORESOURCE_PREFETCH;
1139
1140 dev = bus->self;
1141 for (idx = PCI_BRIDGE_RESOURCES; idx <= PCI_BRIDGE_RESOURCE_END;
1142 idx++) {
1143 r = &dev->resource[idx];
1144 if ((r->flags & type_mask) != type)
1145 continue;
1146 if (!r->parent)
1147 continue;
1148 /*
1149 * if there are children under that, we should release them
1150 * all
1151 */
1152 release_child_resources(r);
1153 if (!release_resource(r)) {
1154 dev_printk(KERN_DEBUG, &dev->dev,
1155 "resource %d %pR released\n", idx, r);
1156 /* keep the old size */
1157 r->end = resource_size(r) - 1;
1158 r->start = 0;
1159 r->flags = 0;
1160 changed = true;
1161 }
1162 }
1163
1164 if (changed) {
1165 /* avoiding touch the one without PREF */
1166 if (type & IORESOURCE_PREFETCH)
1167 type = IORESOURCE_PREFETCH;
1168 __pci_setup_bridge(bus, type);
1169 }
1170}
1171
1172enum release_type {
1173 leaf_only,
1174 whole_subtree,
1175};
1176/*
1177 * try to release pci bridge resources that is from leaf bridge,
1178 * so we can allocate big new one later
1179 */
1180static void __ref pci_bus_release_bridge_resources(struct pci_bus *bus,
1181 unsigned long type,
1182 enum release_type rel_type)
1183{
1184 struct pci_dev *dev;
1185 bool is_leaf_bridge = true;
1186
1187 list_for_each_entry(dev, &bus->devices, bus_list) {
1188 struct pci_bus *b = dev->subordinate;
1189 if (!b)
1190 continue;
1191
1192 is_leaf_bridge = false;
1193
1194 if ((dev->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1195 continue;
1196
1197 if (rel_type == whole_subtree)
1198 pci_bus_release_bridge_resources(b, type,
1199 whole_subtree);
1200 }
1201
1202 if (pci_is_root_bus(bus))
1203 return;
1204
1205 if ((bus->self->class >> 8) != PCI_CLASS_BRIDGE_PCI)
1206 return;
1207
1208 if ((rel_type == whole_subtree) || is_leaf_bridge)
1209 pci_bridge_release_resources(bus, type);
1210}
1211
Yinghai Lu76fbc262008-06-23 20:33:06 +02001212static void pci_bus_dump_res(struct pci_bus *bus)
1213{
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -07001214 struct resource *res;
1215 int i;
Yinghai Lu76fbc262008-06-23 20:33:06 +02001216
Bjorn Helgaas89a74ec2010-02-23 10:24:31 -07001217 pci_bus_for_each_resource(bus, res, i) {
Yinghai Lu7c9342b2009-12-22 15:02:24 -08001218 if (!res || !res->end || !res->flags)
Yinghai Lu76fbc262008-06-23 20:33:06 +02001219 continue;
1220
Bjorn Helgaasc7dabef2009-10-27 13:26:47 -06001221 dev_printk(KERN_DEBUG, &bus->dev, "resource %d %pR\n", i, res);
Yinghai Lu76fbc262008-06-23 20:33:06 +02001222 }
1223}
1224
1225static void pci_bus_dump_resources(struct pci_bus *bus)
1226{
1227 struct pci_bus *b;
1228 struct pci_dev *dev;
1229
1230
1231 pci_bus_dump_res(bus);
1232
1233 list_for_each_entry(dev, &bus->devices, bus_list) {
1234 b = dev->subordinate;
1235 if (!b)
1236 continue;
1237
1238 pci_bus_dump_resources(b);
1239 }
1240}
1241
Yinghai Luda7822e2011-05-12 17:11:37 -07001242static int __init pci_bus_get_depth(struct pci_bus *bus)
1243{
1244 int depth = 0;
1245 struct pci_dev *dev;
1246
1247 list_for_each_entry(dev, &bus->devices, bus_list) {
1248 int ret;
1249 struct pci_bus *b = dev->subordinate;
1250 if (!b)
1251 continue;
1252
1253 ret = pci_bus_get_depth(b);
1254 if (ret + 1 > depth)
1255 depth = ret + 1;
1256 }
1257
1258 return depth;
1259}
1260static int __init pci_get_max_depth(void)
1261{
1262 int depth = 0;
1263 struct pci_bus *bus;
1264
1265 list_for_each_entry(bus, &pci_root_buses, node) {
1266 int ret;
1267
1268 ret = pci_bus_get_depth(bus);
1269 if (ret > depth)
1270 depth = ret;
1271 }
1272
1273 return depth;
1274}
1275
Ram Paif483d392011-07-07 11:19:10 -07001276
Yinghai Luda7822e2011-05-12 17:11:37 -07001277/*
1278 * first try will not touch pci bridge res
1279 * second and later try will clear small leaf bridge res
1280 * will stop till to the max deepth if can not find good one
1281 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282void __init
1283pci_assign_unassigned_resources(void)
1284{
1285 struct pci_bus *bus;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001286 LIST_HEAD(realloc_head); /* list of resources that
Ram Paic8adf9a2011-02-14 17:43:20 -08001287 want additional resources */
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001288 struct list_head *add_list = NULL;
Yinghai Luda7822e2011-05-12 17:11:37 -07001289 int tried_times = 0;
1290 enum release_type rel_type = leaf_only;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001291 LIST_HEAD(fail_head);
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001292 struct pci_dev_resource *fail_res;
Yinghai Luda7822e2011-05-12 17:11:37 -07001293 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1294 IORESOURCE_PREFETCH;
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001295 int pci_try_num = 1;
Yinghai Luda7822e2011-05-12 17:11:37 -07001296
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001297 /* don't realloc if asked to do so */
1298 if (pci_realloc_enabled()) {
1299 int max_depth = pci_get_max_depth();
1300
1301 pci_try_num = max_depth + 1;
1302 printk(KERN_DEBUG "PCI: max bus depth: %d pci_try_num: %d\n",
1303 max_depth, pci_try_num);
1304 }
Yinghai Luda7822e2011-05-12 17:11:37 -07001305
1306again:
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001307 /*
1308 * last try will use add_list, otherwise will try good to have as
1309 * must have, so can realloc parent bridge resource
1310 */
1311 if (tried_times + 1 == pci_try_num)
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001312 add_list = &realloc_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /* Depth first, calculate sizes and alignments of all
1314 subordinate buses. */
Yinghai Luda7822e2011-05-12 17:11:37 -07001315 list_for_each_entry(bus, &pci_root_buses, node)
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001316 __pci_bus_size_bridges(bus, add_list);
Ram Paic8adf9a2011-02-14 17:43:20 -08001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 /* Depth last, allocate resources and update the hardware. */
Yinghai Luda7822e2011-05-12 17:11:37 -07001319 list_for_each_entry(bus, &pci_root_buses, node)
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001320 __pci_bus_assign_resources(bus, add_list, &fail_head);
Yinghai Lu19aa7ee2012-01-21 02:08:24 -08001321 if (add_list)
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001322 BUG_ON(!list_empty(add_list));
Yinghai Luda7822e2011-05-12 17:11:37 -07001323 tried_times++;
1324
1325 /* any device complain? */
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001326 if (list_empty(&fail_head))
Yinghai Luda7822e2011-05-12 17:11:37 -07001327 goto enable_and_dump;
Ram Paif483d392011-07-07 11:19:10 -07001328
Yinghai Lu0c5be0c2012-02-23 19:23:29 -08001329 if (tried_times >= pci_try_num) {
Yinghai Lubffc56d2012-01-21 02:08:30 -08001330 free_list(&fail_head);
Yinghai Luda7822e2011-05-12 17:11:37 -07001331 goto enable_and_dump;
1332 }
1333
1334 printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
1335 tried_times + 1);
1336
1337 /* third times and later will not check if it is leaf */
1338 if ((tried_times + 1) > 2)
1339 rel_type = whole_subtree;
1340
1341 /*
1342 * Try to release leaf bridge's resources that doesn't fit resource of
1343 * child device under that bridge
1344 */
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001345 list_for_each_entry(fail_res, &fail_head, list) {
1346 bus = fail_res->dev->bus;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001347 pci_bus_release_bridge_resources(bus,
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001348 fail_res->flags & type_mask,
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001349 rel_type);
Yinghai Luda7822e2011-05-12 17:11:37 -07001350 }
1351 /* restore size and flags */
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001352 list_for_each_entry(fail_res, &fail_head, list) {
1353 struct resource *res = fail_res->res;
Yinghai Luda7822e2011-05-12 17:11:37 -07001354
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001355 res->start = fail_res->start;
1356 res->end = fail_res->end;
1357 res->flags = fail_res->flags;
1358 if (fail_res->dev->subordinate)
Yinghai Luda7822e2011-05-12 17:11:37 -07001359 res->flags = 0;
Yinghai Luda7822e2011-05-12 17:11:37 -07001360 }
Yinghai Lubffc56d2012-01-21 02:08:30 -08001361 free_list(&fail_head);
Yinghai Luda7822e2011-05-12 17:11:37 -07001362
1363 goto again;
1364
1365enable_and_dump:
1366 /* Depth last, update the hardware. */
1367 list_for_each_entry(bus, &pci_root_buses, node)
1368 pci_enable_bridges(bus);
Yinghai Lu76fbc262008-06-23 20:33:06 +02001369
1370 /* dump the resource on buses */
Yinghai Luda7822e2011-05-12 17:11:37 -07001371 list_for_each_entry(bus, &pci_root_buses, node)
Yinghai Lu76fbc262008-06-23 20:33:06 +02001372 pci_bus_dump_resources(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373}
Yinghai Lu6841ec62010-01-22 01:02:25 -08001374
1375void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
1376{
1377 struct pci_bus *parent = bridge->subordinate;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001378 LIST_HEAD(add_list); /* list of resources that
Yinghai Lu8424d752012-01-21 02:08:21 -08001379 want additional resources */
Yinghai Lu32180e402010-01-22 01:02:27 -08001380 int tried_times = 0;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001381 LIST_HEAD(fail_head);
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001382 struct pci_dev_resource *fail_res;
Yinghai Lu6841ec62010-01-22 01:02:25 -08001383 int retval;
Yinghai Lu32180e402010-01-22 01:02:27 -08001384 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
1385 IORESOURCE_PREFETCH;
Yinghai Lu6841ec62010-01-22 01:02:25 -08001386
Yinghai Lu32180e402010-01-22 01:02:27 -08001387again:
Yinghai Lu8424d752012-01-21 02:08:21 -08001388 __pci_bus_size_bridges(parent, &add_list);
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001389 __pci_bridge_assign_resources(bridge, &add_list, &fail_head);
1390 BUG_ON(!list_empty(&add_list));
Yinghai Lu32180e402010-01-22 01:02:27 -08001391 tried_times++;
1392
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001393 if (list_empty(&fail_head))
Yinghai Lu3f579c32010-05-21 14:35:06 -07001394 goto enable_all;
Yinghai Lu32180e402010-01-22 01:02:27 -08001395
1396 if (tried_times >= 2) {
1397 /* still fail, don't need to try more */
Yinghai Lubffc56d2012-01-21 02:08:30 -08001398 free_list(&fail_head);
Yinghai Lu3f579c32010-05-21 14:35:06 -07001399 goto enable_all;
Yinghai Lu32180e402010-01-22 01:02:27 -08001400 }
1401
1402 printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n",
1403 tried_times + 1);
1404
1405 /*
1406 * Try to release leaf bridge's resources that doesn't fit resource of
1407 * child device under that bridge
1408 */
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001409 list_for_each_entry(fail_res, &fail_head, list) {
1410 struct pci_bus *bus = fail_res->dev->bus;
1411 unsigned long flags = fail_res->flags;
Yinghai Lu32180e402010-01-22 01:02:27 -08001412
1413 pci_bus_release_bridge_resources(bus, flags & type_mask,
1414 whole_subtree);
Yinghai Lu32180e402010-01-22 01:02:27 -08001415 }
1416 /* restore size and flags */
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001417 list_for_each_entry(fail_res, &fail_head, list) {
1418 struct resource *res = fail_res->res;
Yinghai Lu32180e402010-01-22 01:02:27 -08001419
Yinghai Lub9b0bba2012-01-21 02:08:29 -08001420 res->start = fail_res->start;
1421 res->end = fail_res->end;
1422 res->flags = fail_res->flags;
1423 if (fail_res->dev->subordinate)
Yinghai Lu32180e402010-01-22 01:02:27 -08001424 res->flags = 0;
Yinghai Lu32180e402010-01-22 01:02:27 -08001425 }
Yinghai Lubffc56d2012-01-21 02:08:30 -08001426 free_list(&fail_head);
Yinghai Lu32180e402010-01-22 01:02:27 -08001427
1428 goto again;
Yinghai Lu3f579c32010-05-21 14:35:06 -07001429
1430enable_all:
1431 retval = pci_reenable_device(bridge);
1432 pci_set_master(bridge);
1433 pci_enable_bridges(parent);
Yinghai Lu6841ec62010-01-22 01:02:25 -08001434}
1435EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources);
Yinghai Lu9b030882012-01-21 02:08:23 -08001436
1437#ifdef CONFIG_HOTPLUG
1438/**
1439 * pci_rescan_bus - scan a PCI bus for devices.
1440 * @bus: PCI bus to scan
1441 *
1442 * Scan a PCI bus and child buses for new devices, adds them,
1443 * and enables them.
1444 *
1445 * Returns the max number of subordinate bus discovered.
1446 */
1447unsigned int __ref pci_rescan_bus(struct pci_bus *bus)
1448{
1449 unsigned int max;
1450 struct pci_dev *dev;
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001451 LIST_HEAD(add_list); /* list of resources that
Yinghai Lu9b030882012-01-21 02:08:23 -08001452 want additional resources */
1453
1454 max = pci_scan_child_bus(bus);
1455
Yinghai Lu9b030882012-01-21 02:08:23 -08001456 down_read(&pci_bus_sem);
1457 list_for_each_entry(dev, &bus->devices, bus_list)
1458 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE ||
1459 dev->hdr_type == PCI_HEADER_TYPE_CARDBUS)
1460 if (dev->subordinate)
1461 __pci_bus_size_bridges(dev->subordinate,
1462 &add_list);
1463 up_read(&pci_bus_sem);
1464 __pci_bus_assign_resources(bus, &add_list, NULL);
Yinghai Lubdc4abe2012-01-21 02:08:27 -08001465 BUG_ON(!list_empty(&add_list));
Yinghai Lu9b030882012-01-21 02:08:23 -08001466
1467 pci_enable_bridges(bus);
1468 pci_bus_add_devices(bus);
1469
1470 return max;
1471}
1472EXPORT_SYMBOL_GPL(pci_rescan_bus);
1473#endif