]> bbs.cooldavid.org Git - net-next-2.6.git/blame - arch/x86/pci/acpi.c
x86/PCI: print domain:bus in conventional format
[net-next-2.6.git] / arch / x86 / pci / acpi.c
CommitLineData
1da177e4
LT
1#include <linux/pci.h>
2#include <linux/acpi.h>
3#include <linux/init.h>
b33fa1f3 4#include <linux/irq.h>
036fff4c 5#include <linux/dmi.h>
69e1a33f 6#include <asm/numa.h>
82487711 7#include <asm/pci_x86.h>
1da177e4 8
62f420f8 9struct pci_root_info {
42887b29 10 struct acpi_device *bridge;
62f420f8
GH
11 char *name;
12 unsigned int res_num;
13 struct resource *res;
14 struct pci_bus *bus;
15 int busnum;
16};
17
18static acpi_status
19resource_to_addr(struct acpi_resource *resource,
20 struct acpi_resource_address64 *addr)
21{
22 acpi_status status;
23
24 status = acpi_resource_to_address64(resource, addr);
25 if (ACPI_SUCCESS(status) &&
26 (addr->resource_type == ACPI_MEMORY_RANGE ||
27 addr->resource_type == ACPI_IO_RANGE) &&
28 addr->address_length > 0 &&
29 addr->producer_consumer == ACPI_PRODUCER) {
30 return AE_OK;
31 }
32 return AE_ERROR;
33}
34
35static acpi_status
36count_resource(struct acpi_resource *acpi_res, void *data)
37{
38 struct pci_root_info *info = data;
39 struct acpi_resource_address64 addr;
40 acpi_status status;
41
42 status = resource_to_addr(acpi_res, &addr);
43 if (ACPI_SUCCESS(status))
44 info->res_num++;
45 return AE_OK;
46}
47
f9cde5ff
GH
48static int
49bus_has_transparent_bridge(struct pci_bus *bus)
50{
51 struct pci_dev *dev;
52
53 list_for_each_entry(dev, &bus->devices, bus_list) {
54 u16 class = dev->class >> 8;
55
56 if (class == PCI_CLASS_BRIDGE_PCI && dev->transparent)
57 return true;
58 }
59 return false;
60}
61
62f420f8
GH
62static acpi_status
63setup_resource(struct acpi_resource *acpi_res, void *data)
64{
65 struct pci_root_info *info = data;
66 struct resource *res;
67 struct acpi_resource_address64 addr;
68 acpi_status status;
69 unsigned long flags;
70 struct resource *root;
f9cde5ff 71 int max_root_bus_resources = PCI_BUS_NUM_RESOURCES;
2cdb3f1d
YL
72 u64 start, end;
73
74 if (bus_has_transparent_bridge(info->bus))
75 max_root_bus_resources -= 3;
3d9befd2 76
62f420f8
GH
77 status = resource_to_addr(acpi_res, &addr);
78 if (!ACPI_SUCCESS(status))
79 return AE_OK;
80
81 if (addr.resource_type == ACPI_MEMORY_RANGE) {
82 root = &iomem_resource;
83 flags = IORESOURCE_MEM;
84 if (addr.info.mem.caching == ACPI_PREFETCHABLE_MEMORY)
85 flags |= IORESOURCE_PREFETCH;
86 } else if (addr.resource_type == ACPI_IO_RANGE) {
87 root = &ioport_resource;
88 flags = IORESOURCE_IO;
89 } else
90 return AE_OK;
91
2cdb3f1d
YL
92 start = addr.minimum + addr.translation_offset;
93 end = start + addr.address_length - 1;
f9cde5ff
GH
94 if (info->res_num >= max_root_bus_resources) {
95 printk(KERN_WARNING "PCI: Failed to allocate 0x%lx-0x%lx "
96 "from %s for %s due to _CRS returning more than "
2cdb3f1d
YL
97 "%d resource descriptors\n", (unsigned long) start,
98 (unsigned long) end, root->name, info->name,
f9cde5ff 99 max_root_bus_resources);
f9cde5ff
GH
100 return AE_OK;
101 }
102
2cdb3f1d
YL
103 res = &info->res[info->res_num];
104 res->name = info->name;
105 res->flags = flags;
106 res->start = start;
107 res->end = end;
108 res->child = NULL;
109
62f420f8 110 if (insert_resource(root, res)) {
c7dabef8
BH
111 dev_err(&info->bridge->dev,
112 "can't allocate host bridge window %pR\n", res);
62f420f8
GH
113 } else {
114 info->bus->resource[info->res_num] = res;
115 info->res_num++;
42887b29 116 if (addr.translation_offset)
c7dabef8 117 dev_info(&info->bridge->dev, "host bridge window %pR "
42887b29
BH
118 "(PCI address [%#llx-%#llx])\n",
119 res, res->start - addr.translation_offset,
120 res->end - addr.translation_offset);
121 else
122 dev_info(&info->bridge->dev,
c7dabef8 123 "host bridge window %pR\n", res);
62f420f8
GH
124 }
125 return AE_OK;
126}
127
62f420f8
GH
128static void
129get_current_resources(struct acpi_device *device, int busnum,
cb3576fa 130 int domain, struct pci_bus *bus)
62f420f8
GH
131{
132 struct pci_root_info info;
133 size_t size;
134
42887b29 135 info.bridge = device;
62f420f8
GH
136 info.bus = bus;
137 info.res_num = 0;
138 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_resource,
139 &info);
140 if (!info.res_num)
141 return;
142
143 size = sizeof(*info.res) * info.res_num;
144 info.res = kmalloc(size, GFP_KERNEL);
145 if (!info.res)
146 goto res_alloc_fail;
147
cb3576fa 148 info.name = kmalloc(16, GFP_KERNEL);
62f420f8
GH
149 if (!info.name)
150 goto name_alloc_fail;
cb3576fa 151 sprintf(info.name, "PCI Bus %04x:%02x", domain, busnum);
62f420f8
GH
152
153 info.res_num = 0;
154 acpi_walk_resources(device->handle, METHOD_NAME__CRS, setup_resource,
155 &info);
62f420f8
GH
156
157 return;
158
159name_alloc_fail:
160 kfree(info.res);
161res_alloc_fail:
162 return;
163}
164
1da177e4
LT
165struct pci_bus * __devinit pci_acpi_scan_root(struct acpi_device *device, int domain, int busnum)
166{
69e1a33f 167 struct pci_bus *bus;
08f1c192 168 struct pci_sysdata *sd;
871d5f8d
YL
169 int node;
170#ifdef CONFIG_ACPI_NUMA
08f1c192 171 int pxm;
871d5f8d 172#endif
08f1c192 173
a79e4198 174 if (domain && !pci_domains_supported) {
2a6bed83
BH
175 printk(KERN_WARNING "pci_bus %04x:%02x: "
176 "ignored (multiple domains not supported)\n",
177 domain, busnum);
a79e4198
JG
178 return NULL;
179 }
180
871d5f8d
YL
181 node = -1;
182#ifdef CONFIG_ACPI_NUMA
183 pxm = acpi_get_pxm(device->handle);
184 if (pxm >= 0)
185 node = pxm_to_node(pxm);
186 if (node != -1)
187 set_mp_bus_to_node(busnum, node);
188 else
871d5f8d 189#endif
871d5f8d 190 node = get_mp_bus_to_node(busnum);
b755de8d
YL
191
192 if (node != -1 && !node_online(node))
193 node = -1;
871d5f8d 194
08f1c192
MBY
195 /* Allocate per-root-bus (not per bus) arch-specific data.
196 * TODO: leak; this memory is never freed.
197 * It's arguable whether it's worth the trouble to care.
198 */
199 sd = kzalloc(sizeof(*sd), GFP_KERNEL);
200 if (!sd) {
2a6bed83
BH
201 printk(KERN_WARNING "pci_bus %04x:%02x: "
202 "ignored (out of memory)\n", domain, busnum);
08f1c192
MBY
203 return NULL;
204 }
69e1a33f 205
a79e4198 206 sd->domain = domain;
871d5f8d 207 sd->node = node;
b87e81e5 208 /*
209 * Maybe the desired pci bus has been already scanned. In such case
210 * it is unnecessary to scan the pci bus with the given domain,busnum.
211 */
212 bus = pci_find_bus(domain, busnum);
213 if (bus) {
214 /*
215 * If the desired bus exits, the content of bus->sysdata will
216 * be replaced by sd.
217 */
218 memcpy(bus->sysdata, sd, sizeof(*sd));
219 kfree(sd);
626fdfec
YL
220 } else {
221 bus = pci_create_bus(NULL, busnum, &pci_root_ops, sd);
222 if (bus) {
223 if (pci_probe & PCI_USE__CRS)
224 get_current_resources(device, busnum, domain,
225 bus);
226 bus->subordinate = pci_scan_child_bus(bus);
227 }
228 }
08f1c192 229
08f1c192
MBY
230 if (!bus)
231 kfree(sd);
232
dbb6152e 233 if (bus && node != -1) {
69e1a33f 234#ifdef CONFIG_ACPI_NUMA
dbb6152e 235 if (pxm >= 0)
2b8c2efe
BH
236 dev_printk(KERN_DEBUG, &bus->dev,
237 "on NUMA node %d (pxm %d)\n", node, pxm);
dbb6152e 238#else
2b8c2efe 239 dev_printk(KERN_DEBUG, &bus->dev, "on NUMA node %d\n", node);
69e1a33f 240#endif
dbb6152e 241 }
62f420f8 242
69e1a33f 243 return bus;
1da177e4
LT
244}
245
8dd779b1 246int __init pci_acpi_init(void)
1da177e4
LT
247{
248 struct pci_dev *dev = NULL;
249
250 if (pcibios_scanned)
251 return 0;
252
253 if (acpi_noirq)
254 return 0;
255
256 printk(KERN_INFO "PCI: Using ACPI for IRQ routing\n");
257 acpi_irq_penalty_init();
258 pcibios_scanned++;
259 pcibios_enable_irq = acpi_pci_irq_enable;
87bec66b 260 pcibios_disable_irq = acpi_pci_irq_disable;
1da177e4
LT
261
262 if (pci_routeirq) {
263 /*
264 * PCI IRQ routing is set up by pci_enable_device(), but we
265 * also do it here in case there are still broken drivers that
266 * don't use pci_enable_device().
267 */
268 printk(KERN_INFO "PCI: Routing PCI interrupts for all devices because \"pci=routeirq\" specified\n");
fb37fb96 269 for_each_pci_dev(dev)
1da177e4 270 acpi_pci_irq_enable(dev);
657472e9 271 }
1da177e4 272
1da177e4
LT
273 return 0;
274}