]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* |
2 | * pci_root.c - ACPI PCI Root Bridge Driver ($Revision: 40 $) | |
3 | * | |
4 | * Copyright (C) 2001, 2002 Andy Grover <[email protected]> | |
5 | * Copyright (C) 2001, 2002 Paul Diefenbaugh <[email protected]> | |
6 | * | |
7 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
8 | * | |
9 | * This program is free software; you can redistribute it and/or modify | |
10 | * it under the terms of the GNU General Public License as published by | |
11 | * the Free Software Foundation; either version 2 of the License, or (at | |
12 | * your option) any later version. | |
13 | * | |
14 | * This program is distributed in the hope that it will be useful, but | |
15 | * WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 | * General Public License for more details. | |
18 | * | |
19 | * You should have received a copy of the GNU General Public License along | |
20 | * with this program; if not, write to the Free Software Foundation, Inc., | |
21 | * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. | |
22 | * | |
23 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
24 | */ | |
25 | ||
26 | #include <linux/kernel.h> | |
27 | #include <linux/module.h> | |
28 | #include <linux/init.h> | |
29 | #include <linux/types.h> | |
d0020f65 | 30 | #include <linux/mutex.h> |
1da177e4 | 31 | #include <linux/pm.h> |
b67ea761 | 32 | #include <linux/pm_runtime.h> |
1da177e4 | 33 | #include <linux/pci.h> |
990a7ac5 | 34 | #include <linux/pci-acpi.h> |
eca67315 | 35 | #include <linux/pci-aspm.h> |
1da177e4 | 36 | #include <linux/acpi.h> |
5a0e3ad6 | 37 | #include <linux/slab.h> |
1da177e4 LT |
38 | #include <acpi/acpi_bus.h> |
39 | #include <acpi/acpi_drivers.h> | |
415e12b2 | 40 | #include <acpi/apei.h> |
1da177e4 | 41 | |
a192a958 LB |
42 | #define PREFIX "ACPI: " |
43 | ||
1da177e4 | 44 | #define _COMPONENT ACPI_PCI_COMPONENT |
f52fd66d | 45 | ACPI_MODULE_NAME("pci_root"); |
1da177e4 | 46 | #define ACPI_PCI_ROOT_CLASS "pci_bridge" |
1da177e4 | 47 | #define ACPI_PCI_ROOT_DEVICE_NAME "PCI Root Bridge" |
4be44fcd LB |
48 | static int acpi_pci_root_add(struct acpi_device *device); |
49 | static int acpi_pci_root_remove(struct acpi_device *device, int type); | |
50 | static int acpi_pci_root_start(struct acpi_device *device); | |
1da177e4 | 51 | |
415e12b2 RW |
52 | #define ACPI_PCIE_REQ_SUPPORT (OSC_EXT_PCI_CONFIG_SUPPORT \ |
53 | | OSC_ACTIVE_STATE_PWR_SUPPORT \ | |
54 | | OSC_CLOCK_PWR_CAPABILITY_SUPPORT \ | |
55 | | OSC_MSI_SUPPORT) | |
56 | ||
c97adf9e | 57 | static const struct acpi_device_id root_device_ids[] = { |
1ba90e3a TR |
58 | {"PNP0A03", 0}, |
59 | {"", 0}, | |
60 | }; | |
61 | MODULE_DEVICE_TABLE(acpi, root_device_ids); | |
62 | ||
1da177e4 | 63 | static struct acpi_driver acpi_pci_root_driver = { |
c2b6705b | 64 | .name = "pci_root", |
4be44fcd | 65 | .class = ACPI_PCI_ROOT_CLASS, |
1ba90e3a | 66 | .ids = root_device_ids, |
4be44fcd LB |
67 | .ops = { |
68 | .add = acpi_pci_root_add, | |
69 | .remove = acpi_pci_root_remove, | |
70 | .start = acpi_pci_root_start, | |
71 | }, | |
1da177e4 LT |
72 | }; |
73 | ||
d0020f65 TI |
74 | /* Lock to protect both acpi_pci_roots and acpi_pci_drivers lists */ |
75 | static DEFINE_MUTEX(acpi_pci_root_lock); | |
1da177e4 | 76 | static LIST_HEAD(acpi_pci_roots); |
8ee5bdf3 | 77 | static LIST_HEAD(acpi_pci_drivers); |
1da177e4 | 78 | |
63f10f0f | 79 | static DEFINE_MUTEX(osc_lock); |
1da177e4 LT |
80 | |
81 | int acpi_pci_register_driver(struct acpi_pci_driver *driver) | |
82 | { | |
83 | int n = 0; | |
c1aec834 | 84 | struct acpi_pci_root *root; |
1da177e4 | 85 | |
d0020f65 | 86 | mutex_lock(&acpi_pci_root_lock); |
8ee5bdf3 | 87 | list_add_tail(&driver->node, &acpi_pci_drivers); |
d0020f65 TI |
88 | if (driver->add) |
89 | list_for_each_entry(root, &acpi_pci_roots, node) { | |
55bfe3c0 | 90 | driver->add(root); |
d0020f65 TI |
91 | n++; |
92 | } | |
93 | mutex_unlock(&acpi_pci_root_lock); | |
1da177e4 LT |
94 | |
95 | return n; | |
96 | } | |
97 | EXPORT_SYMBOL(acpi_pci_register_driver); | |
98 | ||
99 | void acpi_pci_unregister_driver(struct acpi_pci_driver *driver) | |
100 | { | |
c1aec834 | 101 | struct acpi_pci_root *root; |
1da177e4 | 102 | |
d0020f65 | 103 | mutex_lock(&acpi_pci_root_lock); |
8ee5bdf3 | 104 | list_del(&driver->node); |
d0020f65 TI |
105 | if (driver->remove) |
106 | list_for_each_entry(root, &acpi_pci_roots, node) | |
55bfe3c0 | 107 | driver->remove(root); |
d0020f65 | 108 | mutex_unlock(&acpi_pci_root_lock); |
1da177e4 LT |
109 | } |
110 | EXPORT_SYMBOL(acpi_pci_unregister_driver); | |
111 | ||
d91a0078 JC |
112 | acpi_handle acpi_get_pci_rootbridge_handle(unsigned int seg, unsigned int bus) |
113 | { | |
c1aec834 | 114 | struct acpi_pci_root *root; |
6507e6eb | 115 | acpi_handle handle = NULL; |
d91a0078 | 116 | |
6507e6eb | 117 | mutex_lock(&acpi_pci_root_lock); |
c1aec834 | 118 | list_for_each_entry(root, &acpi_pci_roots, node) |
6ad95513 | 119 | if ((root->segment == (u16) seg) && |
6507e6eb TI |
120 | (root->secondary.start == (u16) bus)) { |
121 | handle = root->device->handle; | |
122 | break; | |
123 | } | |
124 | mutex_unlock(&acpi_pci_root_lock); | |
125 | return handle; | |
d91a0078 JC |
126 | } |
127 | ||
128 | EXPORT_SYMBOL_GPL(acpi_get_pci_rootbridge_handle); | |
129 | ||
27558203 AC |
130 | /** |
131 | * acpi_is_root_bridge - determine whether an ACPI CA node is a PCI root bridge | |
132 | * @handle - the ACPI CA node in question. | |
133 | * | |
134 | * Note: we could make this API take a struct acpi_device * instead, but | |
135 | * for now, it's more convenient to operate on an acpi_handle. | |
136 | */ | |
137 | int acpi_is_root_bridge(acpi_handle handle) | |
138 | { | |
139 | int ret; | |
140 | struct acpi_device *device; | |
141 | ||
142 | ret = acpi_bus_get_device(handle, &device); | |
143 | if (ret) | |
144 | return 0; | |
145 | ||
146 | ret = acpi_match_device_ids(device, root_device_ids); | |
147 | if (ret) | |
148 | return 0; | |
149 | else | |
150 | return 1; | |
151 | } | |
152 | EXPORT_SYMBOL_GPL(acpi_is_root_bridge); | |
153 | ||
1da177e4 | 154 | static acpi_status |
4be44fcd | 155 | get_root_bridge_busnr_callback(struct acpi_resource *resource, void *data) |
1da177e4 | 156 | { |
6ad95513 | 157 | struct resource *res = data; |
1da177e4 LT |
158 | struct acpi_resource_address64 address; |
159 | ||
50eca3eb BM |
160 | if (resource->type != ACPI_RESOURCE_TYPE_ADDRESS16 && |
161 | resource->type != ACPI_RESOURCE_TYPE_ADDRESS32 && | |
162 | resource->type != ACPI_RESOURCE_TYPE_ADDRESS64) | |
1da177e4 LT |
163 | return AE_OK; |
164 | ||
165 | acpi_resource_to_address64(resource, &address); | |
4be44fcd | 166 | if ((address.address_length > 0) && |
6ad95513 BH |
167 | (address.resource_type == ACPI_BUS_NUMBER_RANGE)) { |
168 | res->start = address.minimum; | |
169 | res->end = address.minimum + address.address_length - 1; | |
170 | } | |
1da177e4 LT |
171 | |
172 | return AE_OK; | |
173 | } | |
174 | ||
f5eebbe1 | 175 | static acpi_status try_get_root_bridge_busnr(acpi_handle handle, |
6ad95513 | 176 | struct resource *res) |
1da177e4 LT |
177 | { |
178 | acpi_status status; | |
179 | ||
6ad95513 | 180 | res->start = -1; |
4be44fcd LB |
181 | status = |
182 | acpi_walk_resources(handle, METHOD_NAME__CRS, | |
6ad95513 | 183 | get_root_bridge_busnr_callback, res); |
1da177e4 LT |
184 | if (ACPI_FAILURE(status)) |
185 | return status; | |
6ad95513 | 186 | if (res->start == -1) |
1da177e4 LT |
187 | return AE_ERROR; |
188 | return AE_OK; | |
189 | } | |
190 | ||
2786f6e3 RZ |
191 | static void acpi_pci_bridge_scan(struct acpi_device *device) |
192 | { | |
193 | int status; | |
194 | struct acpi_device *child = NULL; | |
195 | ||
196 | if (device->flags.bus_address) | |
197 | if (device->parent && device->parent->ops.bind) { | |
198 | status = device->parent->ops.bind(device); | |
199 | if (!status) { | |
200 | list_for_each_entry(child, &device->children, node) | |
201 | acpi_pci_bridge_scan(child); | |
202 | } | |
203 | } | |
204 | } | |
205 | ||
3a9622dc | 206 | static u8 pci_osc_uuid_str[] = "33DB4D5B-1FF7-401C-9657-7441C03DD766"; |
63f10f0f KK |
207 | |
208 | static acpi_status acpi_pci_run_osc(acpi_handle handle, | |
209 | const u32 *capbuf, u32 *retval) | |
210 | { | |
3a9622dc SL |
211 | struct acpi_osc_context context = { |
212 | .uuid_str = pci_osc_uuid_str, | |
213 | .rev = 1, | |
214 | .cap.length = 12, | |
215 | .cap.pointer = (void *)capbuf, | |
216 | }; | |
63f10f0f | 217 | acpi_status status; |
63f10f0f | 218 | |
3a9622dc SL |
219 | status = acpi_run_osc(handle, &context); |
220 | if (ACPI_SUCCESS(status)) { | |
221 | *retval = *((u32 *)(context.ret.pointer + 8)); | |
222 | kfree(context.ret.pointer); | |
63f10f0f | 223 | } |
63f10f0f KK |
224 | return status; |
225 | } | |
226 | ||
ab8e8957 RW |
227 | static acpi_status acpi_pci_query_osc(struct acpi_pci_root *root, |
228 | u32 support, | |
229 | u32 *control) | |
63f10f0f KK |
230 | { |
231 | acpi_status status; | |
ab8e8957 RW |
232 | u32 result, capbuf[3]; |
233 | ||
234 | support &= OSC_PCI_SUPPORT_MASKS; | |
235 | support |= root->osc_support_set; | |
63f10f0f | 236 | |
63f10f0f | 237 | capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE; |
ab8e8957 RW |
238 | capbuf[OSC_SUPPORT_TYPE] = support; |
239 | if (control) { | |
240 | *control &= OSC_PCI_CONTROL_MASKS; | |
241 | capbuf[OSC_CONTROL_TYPE] = *control | root->osc_control_set; | |
242 | } else { | |
243 | /* Run _OSC query for all possible controls. */ | |
244 | capbuf[OSC_CONTROL_TYPE] = OSC_PCI_CONTROL_MASKS; | |
245 | } | |
63f10f0f KK |
246 | |
247 | status = acpi_pci_run_osc(root->device->handle, capbuf, &result); | |
248 | if (ACPI_SUCCESS(status)) { | |
ab8e8957 | 249 | root->osc_support_set = support; |
2b8fd918 | 250 | if (control) |
ab8e8957 | 251 | *control = result; |
63f10f0f KK |
252 | } |
253 | return status; | |
254 | } | |
255 | ||
256 | static acpi_status acpi_pci_osc_support(struct acpi_pci_root *root, u32 flags) | |
257 | { | |
258 | acpi_status status; | |
259 | acpi_handle tmp; | |
260 | ||
261 | status = acpi_get_handle(root->device->handle, "_OSC", &tmp); | |
262 | if (ACPI_FAILURE(status)) | |
263 | return status; | |
264 | mutex_lock(&osc_lock); | |
ab8e8957 | 265 | status = acpi_pci_query_osc(root, flags, NULL); |
63f10f0f KK |
266 | mutex_unlock(&osc_lock); |
267 | return status; | |
268 | } | |
269 | ||
76d56de5 | 270 | struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle) |
63f10f0f KK |
271 | { |
272 | struct acpi_pci_root *root; | |
cd4faf9c | 273 | struct acpi_device *device; |
c1aec834 | 274 | |
cd4faf9c TI |
275 | if (acpi_bus_get_device(handle, &device) || |
276 | acpi_match_device_ids(device, root_device_ids)) | |
277 | return NULL; | |
278 | ||
279 | root = acpi_driver_data(device); | |
280 | ||
281 | return root; | |
63f10f0f | 282 | } |
76d56de5 | 283 | EXPORT_SYMBOL_GPL(acpi_pci_find_root); |
63f10f0f | 284 | |
2f7bbceb AC |
285 | struct acpi_handle_node { |
286 | struct list_head node; | |
287 | acpi_handle handle; | |
288 | }; | |
289 | ||
290 | /** | |
291 | * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev | |
292 | * @handle: the handle in question | |
293 | * | |
294 | * Given an ACPI CA handle, the desired PCI device is located in the | |
295 | * list of PCI devices. | |
296 | * | |
297 | * If the device is found, its reference count is increased and this | |
298 | * function returns a pointer to its data structure. The caller must | |
299 | * decrement the reference count by calling pci_dev_put(). | |
300 | * If no device is found, %NULL is returned. | |
301 | */ | |
302 | struct pci_dev *acpi_get_pci_dev(acpi_handle handle) | |
303 | { | |
304 | int dev, fn; | |
305 | unsigned long long adr; | |
306 | acpi_status status; | |
307 | acpi_handle phandle; | |
308 | struct pci_bus *pbus; | |
309 | struct pci_dev *pdev = NULL; | |
310 | struct acpi_handle_node *node, *tmp; | |
311 | struct acpi_pci_root *root; | |
312 | LIST_HEAD(device_list); | |
313 | ||
314 | /* | |
315 | * Walk up the ACPI CA namespace until we reach a PCI root bridge. | |
316 | */ | |
317 | phandle = handle; | |
318 | while (!acpi_is_root_bridge(phandle)) { | |
319 | node = kzalloc(sizeof(struct acpi_handle_node), GFP_KERNEL); | |
320 | if (!node) | |
321 | goto out; | |
322 | ||
323 | INIT_LIST_HEAD(&node->node); | |
324 | node->handle = phandle; | |
325 | list_add(&node->node, &device_list); | |
326 | ||
327 | status = acpi_get_parent(phandle, &phandle); | |
328 | if (ACPI_FAILURE(status)) | |
329 | goto out; | |
330 | } | |
331 | ||
332 | root = acpi_pci_find_root(phandle); | |
333 | if (!root) | |
334 | goto out; | |
335 | ||
336 | pbus = root->bus; | |
337 | ||
338 | /* | |
339 | * Now, walk back down the PCI device tree until we return to our | |
340 | * original handle. Assumes that everything between the PCI root | |
341 | * bridge and the device we're looking for must be a P2P bridge. | |
342 | */ | |
343 | list_for_each_entry(node, &device_list, node) { | |
344 | acpi_handle hnd = node->handle; | |
345 | status = acpi_evaluate_integer(hnd, "_ADR", NULL, &adr); | |
346 | if (ACPI_FAILURE(status)) | |
347 | goto out; | |
348 | dev = (adr >> 16) & 0xffff; | |
349 | fn = adr & 0xffff; | |
350 | ||
351 | pdev = pci_get_slot(pbus, PCI_DEVFN(dev, fn)); | |
412af978 | 352 | if (!pdev || hnd == handle) |
2f7bbceb AC |
353 | break; |
354 | ||
355 | pbus = pdev->subordinate; | |
356 | pci_dev_put(pdev); | |
497fb54f RW |
357 | |
358 | /* | |
359 | * This function may be called for a non-PCI device that has a | |
360 | * PCI parent (eg. a disk under a PCI SATA controller). In that | |
361 | * case pdev->subordinate will be NULL for the parent. | |
362 | */ | |
363 | if (!pbus) { | |
364 | dev_dbg(&pdev->dev, "Not a PCI-to-PCI bridge\n"); | |
365 | pdev = NULL; | |
366 | break; | |
367 | } | |
2f7bbceb AC |
368 | } |
369 | out: | |
370 | list_for_each_entry_safe(node, tmp, &device_list, node) | |
371 | kfree(node); | |
372 | ||
373 | return pdev; | |
374 | } | |
375 | EXPORT_SYMBOL_GPL(acpi_get_pci_dev); | |
376 | ||
63f10f0f | 377 | /** |
75fb60f2 RW |
378 | * acpi_pci_osc_control_set - Request control of PCI root _OSC features. |
379 | * @handle: ACPI handle of a PCI root bridge (or PCIe Root Complex). | |
380 | * @mask: Mask of _OSC bits to request control of, place to store control mask. | |
381 | * @req: Mask of _OSC bits the control of is essential to the caller. | |
63f10f0f | 382 | * |
75fb60f2 RW |
383 | * Run _OSC query for @mask and if that is successful, compare the returned |
384 | * mask of control bits with @req. If all of the @req bits are set in the | |
385 | * returned mask, run _OSC request for it. | |
386 | * | |
387 | * The variable at the @mask address may be modified regardless of whether or | |
388 | * not the function returns success. On success it will contain the mask of | |
389 | * _OSC bits the BIOS has granted control of, but its contents are meaningless | |
390 | * on failure. | |
63f10f0f | 391 | **/ |
75fb60f2 | 392 | acpi_status acpi_pci_osc_control_set(acpi_handle handle, u32 *mask, u32 req) |
63f10f0f | 393 | { |
75fb60f2 | 394 | struct acpi_pci_root *root; |
63f10f0f | 395 | acpi_status status; |
75fb60f2 | 396 | u32 ctrl, capbuf[3]; |
63f10f0f | 397 | acpi_handle tmp; |
63f10f0f | 398 | |
75fb60f2 RW |
399 | if (!mask) |
400 | return AE_BAD_PARAMETER; | |
401 | ||
402 | ctrl = *mask & OSC_PCI_CONTROL_MASKS; | |
403 | if ((ctrl & req) != req) | |
63f10f0f KK |
404 | return AE_TYPE; |
405 | ||
406 | root = acpi_pci_find_root(handle); | |
407 | if (!root) | |
408 | return AE_NOT_EXIST; | |
409 | ||
b879dc4b RW |
410 | status = acpi_get_handle(handle, "_OSC", &tmp); |
411 | if (ACPI_FAILURE(status)) | |
412 | return status; | |
413 | ||
63f10f0f | 414 | mutex_lock(&osc_lock); |
75fb60f2 RW |
415 | |
416 | *mask = ctrl | root->osc_control_set; | |
63f10f0f | 417 | /* No need to evaluate _OSC if the control was already granted. */ |
75fb60f2 | 418 | if ((root->osc_control_set & ctrl) == ctrl) |
63f10f0f KK |
419 | goto out; |
420 | ||
75fb60f2 RW |
421 | /* Need to check the available controls bits before requesting them. */ |
422 | while (*mask) { | |
423 | status = acpi_pci_query_osc(root, root->osc_support_set, mask); | |
424 | if (ACPI_FAILURE(status)) | |
425 | goto out; | |
426 | if (ctrl == *mask) | |
427 | break; | |
428 | ctrl = *mask; | |
429 | } | |
2b8fd918 | 430 | |
75fb60f2 | 431 | if ((ctrl & req) != req) { |
63f10f0f KK |
432 | status = AE_SUPPORT; |
433 | goto out; | |
434 | } | |
435 | ||
436 | capbuf[OSC_QUERY_TYPE] = 0; | |
437 | capbuf[OSC_SUPPORT_TYPE] = root->osc_support_set; | |
75fb60f2 RW |
438 | capbuf[OSC_CONTROL_TYPE] = ctrl; |
439 | status = acpi_pci_run_osc(handle, capbuf, mask); | |
63f10f0f | 440 | if (ACPI_SUCCESS(status)) |
75fb60f2 | 441 | root->osc_control_set = *mask; |
63f10f0f KK |
442 | out: |
443 | mutex_unlock(&osc_lock); | |
444 | return status; | |
445 | } | |
9f5404d8 | 446 | EXPORT_SYMBOL(acpi_pci_osc_control_set); |
63f10f0f | 447 | |
da095fd3 | 448 | static int acpi_pci_root_add(struct acpi_device *device) |
1da177e4 | 449 | { |
f5eebbe1 BH |
450 | unsigned long long segment, bus; |
451 | acpi_status status; | |
452 | int result; | |
453 | struct acpi_pci_root *root; | |
454 | acpi_handle handle; | |
2786f6e3 | 455 | struct acpi_device *child; |
0ef5f8f6 | 456 | u32 flags, base_flags; |
8c33f51d | 457 | bool is_osc_granted = false; |
1da177e4 | 458 | |
6ad95513 BH |
459 | root = kzalloc(sizeof(struct acpi_pci_root), GFP_KERNEL); |
460 | if (!root) | |
461 | return -ENOMEM; | |
462 | ||
f5eebbe1 BH |
463 | segment = 0; |
464 | status = acpi_evaluate_integer(device->handle, METHOD_NAME__SEG, NULL, | |
465 | &segment); | |
466 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { | |
467 | printk(KERN_ERR PREFIX "can't evaluate _SEG\n"); | |
6ad95513 BH |
468 | result = -ENODEV; |
469 | goto end; | |
f5eebbe1 | 470 | } |
1da177e4 | 471 | |
f5eebbe1 | 472 | /* Check _CRS first, then _BBN. If no _BBN, default to zero. */ |
6ad95513 BH |
473 | root->secondary.flags = IORESOURCE_BUS; |
474 | status = try_get_root_bridge_busnr(device->handle, &root->secondary); | |
f5eebbe1 | 475 | if (ACPI_FAILURE(status)) { |
6ad95513 BH |
476 | /* |
477 | * We need both the start and end of the downstream bus range | |
478 | * to interpret _CBA (MMCONFIG base address), so it really is | |
479 | * supposed to be in _CRS. If we don't find it there, all we | |
480 | * can do is assume [_BBN-0xFF] or [0-0xFF]. | |
481 | */ | |
482 | root->secondary.end = 0xFF; | |
483 | printk(KERN_WARNING FW_BUG PREFIX | |
484 | "no secondary bus range in _CRS\n"); | |
e545b55a JM |
485 | status = acpi_evaluate_integer(device->handle, METHOD_NAME__BBN, |
486 | NULL, &bus); | |
6ad95513 BH |
487 | if (ACPI_SUCCESS(status)) |
488 | root->secondary.start = bus; | |
489 | else if (status == AE_NOT_FOUND) | |
490 | root->secondary.start = 0; | |
491 | else { | |
492 | printk(KERN_ERR PREFIX "can't evaluate _BBN\n"); | |
493 | result = -ENODEV; | |
494 | goto end; | |
f5eebbe1 BH |
495 | } |
496 | } | |
1da177e4 | 497 | |
f5eebbe1 | 498 | INIT_LIST_HEAD(&root->node); |
32917e5b | 499 | root->device = device; |
0705495d | 500 | root->segment = segment & 0xFFFF; |
1da177e4 LT |
501 | strcpy(acpi_device_name(device), ACPI_PCI_ROOT_DEVICE_NAME); |
502 | strcpy(acpi_device_class(device), ACPI_PCI_ROOT_CLASS); | |
db89b4f0 | 503 | device->driver_data = root; |
1da177e4 | 504 | |
6ad95513 | 505 | printk(KERN_INFO PREFIX "%s [%s] (domain %04x %pR)\n", |
4be44fcd | 506 | acpi_device_name(device), acpi_device_bid(device), |
6ad95513 | 507 | root->segment, &root->secondary); |
1da177e4 | 508 | |
1da177e4 LT |
509 | /* |
510 | * PCI Routing Table | |
511 | * ----------------- | |
512 | * Evaluate and parse _PRT, if exists. | |
513 | */ | |
2d1e0a02 | 514 | status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle); |
1da177e4 | 515 | if (ACPI_SUCCESS(status)) |
d4761ba2 BH |
516 | result = acpi_pci_irq_add_prt(device->handle, root->segment, |
517 | root->secondary.start); | |
518 | ||
f4b57a3b | 519 | root->mcfg_addr = acpi_pci_root_get_mcfg_addr(device->handle); |
1da177e4 | 520 | |
2786f6e3 | 521 | /* |
990a7ac5 AP |
522 | * All supported architectures that use ACPI have support for |
523 | * PCI domains, so we indicate this in _OSC support capabilities. | |
2786f6e3 | 524 | */ |
0ef5f8f6 | 525 | flags = base_flags = OSC_PCI_SEGMENT_GROUPS_SUPPORT; |
63f10f0f | 526 | acpi_pci_osc_support(root, flags); |
2786f6e3 | 527 | |
0ef5f8f6 | 528 | /* Indicate support for various _OSC capabilities. */ |
8c33f51d | 529 | if (pci_ext_cfg_avail()) |
0ef5f8f6 | 530 | flags |= OSC_EXT_PCI_CONFIG_SUPPORT; |
8c33f51d | 531 | if (pcie_aspm_support_enabled()) { |
3e1b1600 | 532 | flags |= OSC_ACTIVE_STATE_PWR_SUPPORT | |
8c33f51d TI |
533 | OSC_CLOCK_PWR_CAPABILITY_SUPPORT; |
534 | } | |
07ae95f9 AP |
535 | if (pci_msi_enabled()) |
536 | flags |= OSC_MSI_SUPPORT; | |
2d9c8677 RW |
537 | if (flags != base_flags) { |
538 | status = acpi_pci_osc_support(root, flags); | |
539 | if (ACPI_FAILURE(status)) { | |
8c33f51d | 540 | dev_info(&device->dev, "ACPI _OSC support " |
2d9c8677 RW |
541 | "notification failed, disabling PCIe ASPM\n"); |
542 | pcie_no_aspm(); | |
543 | flags = base_flags; | |
544 | } | |
545 | } | |
415e12b2 RW |
546 | if (!pcie_ports_disabled |
547 | && (flags & ACPI_PCIE_REQ_SUPPORT) == ACPI_PCIE_REQ_SUPPORT) { | |
548 | flags = OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL | |
549 | | OSC_PCI_EXPRESS_NATIVE_HP_CONTROL | |
550 | | OSC_PCI_EXPRESS_PME_CONTROL; | |
551 | ||
552 | if (pci_aer_available()) { | |
553 | if (aer_acpi_firmware_first()) | |
8c33f51d | 554 | dev_dbg(&device->dev, |
415e12b2 RW |
555 | "PCIe errors handled by BIOS.\n"); |
556 | else | |
557 | flags |= OSC_PCI_EXPRESS_AER_CONTROL; | |
558 | } | |
559 | ||
8c33f51d | 560 | dev_info(&device->dev, |
415e12b2 RW |
561 | "Requesting ACPI _OSC control (0x%02x)\n", flags); |
562 | ||
563 | status = acpi_pci_osc_control_set(device->handle, &flags, | |
8c33f51d | 564 | OSC_PCI_EXPRESS_CAP_STRUCTURE_CONTROL); |
eca67315 | 565 | if (ACPI_SUCCESS(status)) { |
8c33f51d TI |
566 | is_osc_granted = true; |
567 | dev_info(&device->dev, | |
415e12b2 | 568 | "ACPI _OSC control (0x%02x) granted\n", flags); |
eca67315 | 569 | } else { |
8c33f51d TI |
570 | is_osc_granted = false; |
571 | dev_info(&device->dev, | |
a246670d RW |
572 | "ACPI _OSC request failed (%s), " |
573 | "returned control mask: 0x%02x\n", | |
574 | acpi_format_exception(status), flags); | |
eca67315 | 575 | } |
a246670d | 576 | } else { |
8c33f51d TI |
577 | dev_info(&device->dev, |
578 | "Unable to request _OSC control " | |
579 | "(_OSC support mask: 0x%02x)\n", flags); | |
580 | } | |
581 | ||
1da177e4 LT |
582 | /* |
583 | * TBD: Need PCI interface for enumeration/configuration of roots. | |
584 | */ | |
585 | ||
6507e6eb | 586 | mutex_lock(&acpi_pci_root_lock); |
4be44fcd | 587 | list_add_tail(&root->node, &acpi_pci_roots); |
6507e6eb | 588 | mutex_unlock(&acpi_pci_root_lock); |
1da177e4 | 589 | |
1da177e4 LT |
590 | /* |
591 | * Scan the Root Bridge | |
592 | * -------------------- | |
593 | * Must do this prior to any attempt to bind the root device, as the | |
594 | * PCI namespace does not get created until this call is made (and | |
595 | * thus the root bridge's pci_dev does not exist). | |
596 | */ | |
57283776 | 597 | root->bus = pci_acpi_scan_root(root); |
1da177e4 | 598 | if (!root->bus) { |
6468463a LB |
599 | printk(KERN_ERR PREFIX |
600 | "Bus %04x:%02x not present in PCI namespace\n", | |
6ad95513 | 601 | root->segment, (unsigned int)root->secondary.start); |
1da177e4 | 602 | result = -ENODEV; |
6507e6eb | 603 | goto out_del_root; |
1da177e4 LT |
604 | } |
605 | ||
606 | /* | |
607 | * Attach ACPI-PCI Context | |
608 | * ----------------------- | |
609 | * Thus binding the ACPI and PCI devices. | |
610 | */ | |
499650de | 611 | result = acpi_pci_bind_root(device); |
1da177e4 | 612 | if (result) |
6507e6eb | 613 | goto out_del_root; |
1da177e4 | 614 | |
2786f6e3 RZ |
615 | /* |
616 | * Scan and bind all _ADR-Based Devices | |
617 | */ | |
618 | list_for_each_entry(child, &device->children, node) | |
619 | acpi_pci_bridge_scan(child); | |
620 | ||
8c33f51d TI |
621 | /* ASPM setting */ |
622 | if (is_osc_granted) { | |
623 | if (acpi_gbl_FADT.boot_flags & ACPI_FADT_NO_ASPM) | |
624 | pcie_clear_aspm(root->bus); | |
a246670d | 625 | } else { |
8c33f51d TI |
626 | pr_info("ACPI _OSC control for PCIe not granted, " |
627 | "disabling ASPM\n"); | |
628 | pcie_no_aspm(); | |
415e12b2 RW |
629 | } |
630 | ||
b67ea761 RW |
631 | pci_acpi_add_bus_pm_notifier(device, root->bus); |
632 | if (device->wakeup.flags.run_wake) | |
633 | device_set_run_wake(root->bus->bridge, true); | |
634 | ||
f5eebbe1 | 635 | return 0; |
1da177e4 | 636 | |
6507e6eb TI |
637 | out_del_root: |
638 | mutex_lock(&acpi_pci_root_lock); | |
639 | list_del(&root->node); | |
640 | mutex_unlock(&acpi_pci_root_lock); | |
d4761ba2 BH |
641 | |
642 | acpi_pci_irq_del_prt(root->segment, root->secondary.start); | |
f5eebbe1 | 643 | end: |
f5eebbe1 | 644 | kfree(root); |
d550d98d | 645 | return result; |
1da177e4 LT |
646 | } |
647 | ||
4be44fcd | 648 | static int acpi_pci_root_start(struct acpi_device *device) |
c431ada4 | 649 | { |
caf420c6 | 650 | struct acpi_pci_root *root = acpi_driver_data(device); |
c8e9afb1 JL |
651 | struct acpi_pci_driver *driver; |
652 | ||
62a08c5a YL |
653 | if (system_state != SYSTEM_BOOTING) |
654 | pci_assign_unassigned_bus_resources(root->bus); | |
655 | ||
d0020f65 | 656 | mutex_lock(&acpi_pci_root_lock); |
c8e9afb1 JL |
657 | list_for_each_entry(driver, &acpi_pci_drivers, node) |
658 | if (driver->add) | |
55bfe3c0 | 659 | driver->add(root); |
d0020f65 | 660 | mutex_unlock(&acpi_pci_root_lock); |
c431ada4 | 661 | |
62a08c5a YL |
662 | /* need to after hot-added ioapic is registered */ |
663 | if (system_state != SYSTEM_BOOTING) | |
664 | pci_enable_bridges(root->bus); | |
665 | ||
caf420c6 | 666 | pci_bus_add_devices(root->bus); |
c8e9afb1 | 667 | |
caf420c6 | 668 | return 0; |
c431ada4 | 669 | } |
1da177e4 | 670 | |
4be44fcd | 671 | static int acpi_pci_root_remove(struct acpi_device *device, int type) |
1da177e4 | 672 | { |
13b6a916 YL |
673 | acpi_status status; |
674 | acpi_handle handle; | |
caf420c6 | 675 | struct acpi_pci_root *root = acpi_driver_data(device); |
c8e9afb1 JL |
676 | struct acpi_pci_driver *driver; |
677 | ||
9738a1fd YL |
678 | pci_stop_root_bus(root->bus); |
679 | ||
d0020f65 | 680 | mutex_lock(&acpi_pci_root_lock); |
f426cef3 | 681 | list_for_each_entry_reverse(driver, &acpi_pci_drivers, node) |
c8e9afb1 | 682 | if (driver->remove) |
55bfe3c0 | 683 | driver->remove(root); |
9738a1fd | 684 | mutex_unlock(&acpi_pci_root_lock); |
1da177e4 | 685 | |
b67ea761 RW |
686 | device_set_run_wake(root->bus->bridge, false); |
687 | pci_acpi_remove_bus_pm_notifier(device); | |
688 | ||
13b6a916 YL |
689 | status = acpi_get_handle(device->handle, METHOD_NAME__PRT, &handle); |
690 | if (ACPI_SUCCESS(status)) | |
79c44122 | 691 | acpi_pci_irq_del_prt(root->segment, root->secondary.start); |
13b6a916 | 692 | |
9738a1fd YL |
693 | pci_remove_root_bus(root->bus); |
694 | ||
695 | mutex_lock(&acpi_pci_root_lock); | |
6507e6eb TI |
696 | list_del(&root->node); |
697 | mutex_unlock(&acpi_pci_root_lock); | |
1da177e4 | 698 | kfree(root); |
d550d98d | 699 | return 0; |
1da177e4 LT |
700 | } |
701 | ||
4be44fcd | 702 | static int __init acpi_pci_root_init(void) |
1da177e4 | 703 | { |
d3072e6a RW |
704 | acpi_hest_init(); |
705 | ||
1da177e4 | 706 | if (acpi_pci_disabled) |
d550d98d | 707 | return 0; |
1da177e4 | 708 | |
7bc5e3f2 | 709 | pci_acpi_crs_quirks(); |
1da177e4 | 710 | if (acpi_bus_register_driver(&acpi_pci_root_driver) < 0) |
d550d98d | 711 | return -ENODEV; |
1da177e4 | 712 | |
d550d98d | 713 | return 0; |
1da177e4 LT |
714 | } |
715 | ||
716 | subsys_initcall(acpi_pci_root_init); |