blob: 8a1f02c3c915f520c1e7fb2469f817dceb336cb4 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: pci-acpi.c
Len Browna406d9e2005-03-23 16:16:03 -05003 * Purpose: Provide PCI support in ACPI
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
David Shaohua Li84df749f2005-03-18 18:53:36 -05005 * Copyright (C) 2005 David Shaohua Li <shaohua.li@intel.com>
6 * Copyright (C) 2004 Tom Long Nguyen <tom.l.nguyen@intel.com>
7 * Copyright (C) 2004 Intel Corp.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/delay.h>
11#include <linux/init.h>
12#include <linux/pci.h>
13#include <linux/module.h>
Shaohua Li5fde2442008-07-23 10:32:24 +080014#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <acpi/acpi.h>
16#include <acpi/acnamesp.h>
17#include <acpi/acresrc.h>
18#include <acpi/acpi_bus.h>
19
20#include <linux/pci-acpi.h>
David Shaohua Li0f644742005-03-19 00:15:48 -050021#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Shaohua Lia5d1c872008-05-12 10:48:10 +080023struct acpi_osc_data {
24 acpi_handle handle;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090025 u32 support_set;
26 u32 control_set;
Shaohua Lia5d1c872008-05-12 10:48:10 +080027 struct list_head sibiling;
28};
29static LIST_HEAD(acpi_osc_data_list);
30
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090031struct acpi_osc_args {
32 u32 capbuf[3];
Taku Izumiadf411b2008-10-17 13:51:00 +090033 u32 ctrl_result;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090034};
35
Taku Izumi9778c142008-10-17 13:48:36 +090036static DEFINE_MUTEX(pci_acpi_lock);
37
Shaohua Lia5d1c872008-05-12 10:48:10 +080038static struct acpi_osc_data *acpi_get_osc_data(acpi_handle handle)
39{
40 struct acpi_osc_data *data;
41
42 list_for_each_entry(data, &acpi_osc_data_list, sibiling) {
43 if (data->handle == handle)
44 return data;
45 }
46 data = kzalloc(sizeof(*data), GFP_KERNEL);
47 if (!data)
48 return NULL;
49 INIT_LIST_HEAD(&data->sibiling);
50 data->handle = handle;
51 list_add_tail(&data->sibiling, &acpi_osc_data_list);
52 return data;
53}
54
Kenji Kaneshige90a57da2008-05-15 15:23:13 +090055static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
56 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090058static acpi_status acpi_run_osc(acpi_handle handle,
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090059 struct acpi_osc_args *osc_args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090061 acpi_status status;
62 struct acpi_object_list input;
63 union acpi_object in_params[4];
64 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
65 union acpi_object *out_obj;
Kenji Kaneshige2485b862008-11-10 13:54:43 +090066 u32 errors, flags = osc_args->capbuf[OSC_QUERY_TYPE];
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090067
68 /* Setting up input parameters */
69 input.count = 4;
70 input.pointer = in_params;
71 in_params[0].type = ACPI_TYPE_BUFFER;
72 in_params[0].buffer.length = 16;
73 in_params[0].buffer.pointer = OSC_UUID;
74 in_params[1].type = ACPI_TYPE_INTEGER;
75 in_params[1].integer.value = 1;
76 in_params[2].type = ACPI_TYPE_INTEGER;
77 in_params[2].integer.value = 3;
78 in_params[3].type = ACPI_TYPE_BUFFER;
79 in_params[3].buffer.length = 12;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090080 in_params[3].buffer.pointer = (u8 *)osc_args->capbuf;
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090081
82 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
83 if (ACPI_FAILURE(status))
84 return status;
85
Rafael J. Wysockif8123382008-10-24 21:50:31 +020086 if (!output.length)
87 return AE_NULL_OBJECT;
88
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090089 out_obj = output.pointer;
90 if (out_obj->type != ACPI_TYPE_BUFFER) {
91 printk(KERN_DEBUG "Evaluate _OSC returns wrong type\n");
92 status = AE_TYPE;
93 goto out_kfree;
94 }
Kenji Kaneshige2485b862008-11-10 13:54:43 +090095 /* Need to ignore the bit0 in result code */
96 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
97 if (errors) {
98 if (errors & OSC_REQUEST_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090099 printk(KERN_DEBUG "_OSC request fails\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900100 if (errors & OSC_INVALID_UUID_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900101 printk(KERN_DEBUG "_OSC invalid UUID\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900102 if (errors & OSC_INVALID_REVISION_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900103 printk(KERN_DEBUG "_OSC invalid revision\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900104 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900105 if (flags & OSC_QUERY_ENABLE)
106 goto out_success;
107 printk(KERN_DEBUG "_OSC FW not grant req. control\n");
108 status = AE_SUPPORT;
109 goto out_kfree;
110 }
111 status = AE_ERROR;
112 goto out_kfree;
113 }
114out_success:
Taku Izumiadf411b2008-10-17 13:51:00 +0900115 osc_args->ctrl_result =
116 *((u32 *)(out_obj->buffer.pointer + 8));
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900117 status = AE_OK;
118
119out_kfree:
120 kfree(output.pointer);
121 return status;
122}
123
Taku Izumiadf411b2008-10-17 13:51:00 +0900124static acpi_status __acpi_query_osc(u32 flags, struct acpi_osc_data *osc_data,
125 u32 *result)
Taku Izumi4e394322008-10-17 13:49:46 +0900126{
127 acpi_status status;
128 u32 support_set;
129 struct acpi_osc_args osc_args;
130
131 /* do _OSC query for all possible controls */
132 support_set = osc_data->support_set | (flags & OSC_SUPPORT_MASKS);
133 osc_args.capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
134 osc_args.capbuf[OSC_SUPPORT_TYPE] = support_set;
135 osc_args.capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
136
137 status = acpi_run_osc(osc_data->handle, &osc_args);
138 if (ACPI_SUCCESS(status)) {
139 osc_data->support_set = support_set;
Taku Izumiadf411b2008-10-17 13:51:00 +0900140 *result = osc_args.ctrl_result;
Taku Izumi4e394322008-10-17 13:49:46 +0900141 }
142
143 return status;
144}
145
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700146/*
147 * pci_acpi_osc_support: Invoke _OSC indicating support for the given feature
148 * @flags: Bitmask of flags to support
149 *
150 * See the ACPI spec for the definition of the flags
151 */
152int pci_acpi_osc_support(acpi_handle handle, u32 flags)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900153{
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700154 u32 dummy;
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900155 acpi_status status;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900156 acpi_handle tmp;
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700157 struct acpi_osc_data *osc_data;
158 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900160 status = acpi_get_handle(handle, "_OSC", &tmp);
161 if (ACPI_FAILURE(status))
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700162 return -ENOTTY;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900163
Taku Izumi9778c142008-10-17 13:48:36 +0900164 mutex_lock(&pci_acpi_lock);
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900165 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800166 if (!osc_data) {
167 printk(KERN_ERR "acpi osc data array is full\n");
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700168 rc = -ENOMEM;
Taku Izumi9778c142008-10-17 13:48:36 +0900169 goto out;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800170 }
171
Taku Izumiab204402008-10-17 13:51:53 +0900172 __acpi_query_osc(flags, osc_data, &dummy);
Taku Izumi9778c142008-10-17 13:48:36 +0900173out:
174 mutex_unlock(&pci_acpi_lock);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700175 return rc;
176}
177
178static acpi_status acpi_query_osc(acpi_handle handle, u32 level,
179 void *context, void **retval)
180{
181 pci_acpi_osc_support(handle, (unsigned long)context);
Taku Izumiab204402008-10-17 13:51:53 +0900182 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185/**
Andrew Pattersonc2778352008-01-22 17:18:12 -0700186 * __pci_osc_support_set - register OS support to Firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * @flags: OS support bits
Randy Dunlap5958f1a2008-02-03 15:06:25 -0800188 * @hid: hardware ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 *
190 * Update OS support fields and doing a _OSC Query to obtain an update
191 * from Firmware on supported control bits.
192 **/
Andrew Pattersonc2778352008-01-22 17:18:12 -0700193acpi_status __pci_osc_support_set(u32 flags, const char *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
Kenji Kaneshigec1550622008-05-15 15:22:35 +0900195 if (!(flags & OSC_SUPPORT_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return AE_TYPE;
Kenji Kaneshigec1550622008-05-15 15:22:35 +0900197
198 acpi_get_devices(hid, acpi_query_osc,
199 (void *)(unsigned long)flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return AE_OK;
201}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
203/**
204 * pci_osc_control_set - commit requested control to Firmware
Randy Dunlapf3666332005-11-23 15:45:04 -0800205 * @handle: acpi_handle for the target ACPI object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * @flags: driver's requested control bits
207 *
208 * Attempt to take control from Firmware on requested control bits.
209 **/
rajesh.shah@intel.com427bf532005-10-31 16:20:11 -0800210acpi_status pci_osc_control_set(acpi_handle handle, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900212 acpi_status status;
Taku Izumiadf411b2008-10-17 13:51:00 +0900213 u32 ctrlset, control_set, result;
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900214 acpi_handle tmp;
215 struct acpi_osc_data *osc_data;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900216 struct acpi_osc_args osc_args;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800217
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900218 status = acpi_get_handle(handle, "_OSC", &tmp);
219 if (ACPI_FAILURE(status))
220 return status;
221
Taku Izumi9778c142008-10-17 13:48:36 +0900222 mutex_lock(&pci_acpi_lock);
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900223 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800224 if (!osc_data) {
225 printk(KERN_ERR "acpi osc data array is full\n");
Taku Izumi9778c142008-10-17 13:48:36 +0900226 status = AE_ERROR;
227 goto out;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800228 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 ctrlset = (flags & OSC_CONTROL_MASKS);
Taku Izumi9778c142008-10-17 13:48:36 +0900231 if (!ctrlset) {
232 status = AE_TYPE;
233 goto out;
234 }
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900235
Taku Izumiadf411b2008-10-17 13:51:00 +0900236 status = __acpi_query_osc(osc_data->support_set, osc_data, &result);
237 if (ACPI_FAILURE(status))
238 goto out;
Taku Izumi4e394322008-10-17 13:49:46 +0900239
Taku Izumiadf411b2008-10-17 13:51:00 +0900240 if ((result & ctrlset) != ctrlset) {
Taku Izumi9778c142008-10-17 13:48:36 +0900241 status = AE_SUPPORT;
242 goto out;
243 }
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900244
245 control_set = osc_data->control_set | ctrlset;
246 osc_args.capbuf[OSC_QUERY_TYPE] = 0;
247 osc_args.capbuf[OSC_SUPPORT_TYPE] = osc_data->support_set;
248 osc_args.capbuf[OSC_CONTROL_TYPE] = control_set;
249 status = acpi_run_osc(handle, &osc_args);
250 if (ACPI_SUCCESS(status))
251 osc_data->control_set = control_set;
Taku Izumi9778c142008-10-17 13:48:36 +0900252out:
253 mutex_unlock(&pci_acpi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return status;
255}
256EXPORT_SYMBOL(pci_osc_control_set);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500257
David Shaohua Li0f644742005-03-19 00:15:48 -0500258/*
259 * _SxD returns the D-state with the highest power
260 * (lowest D-state number) supported in the S-state "x".
261 *
262 * If the devices does not have a _PRW
263 * (Power Resources for Wake) supporting system wakeup from "x"
264 * then the OS is free to choose a lower power (higher number
265 * D-state) than the return value from _SxD.
266 *
267 * But if _PRW is enabled at S-state "x", the OS
268 * must not choose a power lower than _SxD --
269 * unless the device has an _SxW method specifying
270 * the lowest power (highest D-state number) the device
271 * may enter while still able to wake the system.
272 *
273 * ie. depending on global OS policy:
274 *
275 * if (_PRW at S-state x)
276 * choose from highest power _SxD to lowest power _SxW
277 * else // no _PRW at S-state x
278 * choose highest power _SxD or any lower power
David Shaohua Li0f644742005-03-19 00:15:48 -0500279 */
280
Rafael J. Wysocki8d2bdf42008-06-05 01:16:37 +0200281static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
David Shaohua Li0f644742005-03-19 00:15:48 -0500282{
Shaohua Liab826ca2007-07-20 10:03:22 +0800283 int acpi_state;
David Shaohua Li0f644742005-03-19 00:15:48 -0500284
David Brownell06166782008-06-05 01:15:40 +0200285 acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL);
Shaohua Liab826ca2007-07-20 10:03:22 +0800286 if (acpi_state < 0)
287 return PCI_POWER_ERROR;
288
289 switch (acpi_state) {
290 case ACPI_STATE_D0:
291 return PCI_D0;
292 case ACPI_STATE_D1:
293 return PCI_D1;
294 case ACPI_STATE_D2:
295 return PCI_D2;
296 case ACPI_STATE_D3:
297 return PCI_D3hot;
298 }
299 return PCI_POWER_ERROR;
David Shaohua Li0f644742005-03-19 00:15:48 -0500300}
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200301
302static bool acpi_pci_power_manageable(struct pci_dev *dev)
303{
304 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
305
306 return handle ? acpi_bus_power_manageable(handle) : false;
307}
David Shaohua Li0f644742005-03-19 00:15:48 -0500308
David Shaohua Lib9131002005-03-19 00:16:18 -0500309static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
310{
311 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
Shaohua Li10b3dca2007-07-20 10:03:25 +0800312 acpi_handle tmp;
David Brownell583c3772008-02-22 21:41:51 -0800313 static const u8 state_conv[] = {
314 [PCI_D0] = ACPI_STATE_D0,
315 [PCI_D1] = ACPI_STATE_D1,
316 [PCI_D2] = ACPI_STATE_D2,
317 [PCI_D3hot] = ACPI_STATE_D3,
318 [PCI_D3cold] = ACPI_STATE_D3
David Shaohua Lib9131002005-03-19 00:16:18 -0500319 };
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200320 int error = -EINVAL;
David Shaohua Lib9131002005-03-19 00:16:18 -0500321
Shaohua Li10b3dca2007-07-20 10:03:25 +0800322 /* If the ACPI device has _EJ0, ignore the device */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200323 if (!handle || ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
324 return -ENODEV;
David Brownell583c3772008-02-22 21:41:51 -0800325
326 switch (state) {
327 case PCI_D0:
328 case PCI_D1:
329 case PCI_D2:
330 case PCI_D3hot:
331 case PCI_D3cold:
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200332 error = acpi_bus_set_power(handle, state_conv[state]);
David Brownell583c3772008-02-22 21:41:51 -0800333 }
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200334
335 if (!error)
336 dev_printk(KERN_INFO, &dev->dev,
337 "power state changed by ACPI to D%d\n", state);
338
339 return error;
David Shaohua Lib9131002005-03-19 00:16:18 -0500340}
341
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200342static bool acpi_pci_can_wakeup(struct pci_dev *dev)
343{
344 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
345
346 return handle ? acpi_bus_can_wakeup(handle) : false;
347}
348
349static int acpi_pci_sleep_wake(struct pci_dev *dev, bool enable)
350{
351 int error = acpi_pm_device_sleep_wake(&dev->dev, enable);
352
353 if (!error)
354 dev_printk(KERN_INFO, &dev->dev,
355 "wake-up capability %s by ACPI\n",
356 enable ? "enabled" : "disabled");
357 return error;
358}
359
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200360static struct pci_platform_pm_ops acpi_pci_platform_pm = {
361 .is_manageable = acpi_pci_power_manageable,
362 .set_state = acpi_pci_set_power_state,
363 .choose_state = acpi_pci_choose_state,
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200364 .can_wakeup = acpi_pci_can_wakeup,
365 .sleep_wake = acpi_pci_sleep_wake,
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200366};
David Shaohua Lib9131002005-03-19 00:16:18 -0500367
David Shaohua Li84df749f2005-03-18 18:53:36 -0500368/* ACPI bus type */
Muthu Kumar9c273b92006-04-28 00:42:21 -0700369static int acpi_pci_find_device(struct device *dev, acpi_handle *handle)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500370{
371 struct pci_dev * pci_dev;
372 acpi_integer addr;
373
374 pci_dev = to_pci_dev(dev);
375 /* Please ref to ACPI spec for the syntax of _ADR */
376 addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
377 *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr);
378 if (!*handle)
379 return -ENODEV;
380 return 0;
381}
382
Muthu Kumar9c273b92006-04-28 00:42:21 -0700383static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500384{
385 int num;
386 unsigned int seg, bus;
387
388 /*
389 * The string should be the same as root bridge's name
390 * Please look at 'pci_scan_bus_parented'
391 */
Kay Sievers1a927132008-10-30 02:17:49 +0100392 num = sscanf(dev_name(dev), "pci%04x:%02x", &seg, &bus);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500393 if (num != 2)
394 return -ENODEV;
395 *handle = acpi_get_pci_rootbridge_handle(seg, bus);
396 if (!*handle)
397 return -ENODEV;
398 return 0;
399}
400
Muthu Kumar9c273b92006-04-28 00:42:21 -0700401static struct acpi_bus_type acpi_pci_bus = {
David Shaohua Li84df749f2005-03-18 18:53:36 -0500402 .bus = &pci_bus_type,
Muthu Kumar9c273b92006-04-28 00:42:21 -0700403 .find_device = acpi_pci_find_device,
404 .find_bridge = acpi_pci_find_root_bridge,
David Shaohua Li84df749f2005-03-18 18:53:36 -0500405};
406
Muthu Kumar9c273b92006-04-28 00:42:21 -0700407static int __init acpi_pci_init(void)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500408{
409 int ret;
410
Shaohua Lif8993af2007-04-25 11:05:12 +0800411 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) {
412 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
413 pci_no_msi();
414 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800415
416 if (acpi_gbl_FADT.boot_flags & BAF_PCIE_ASPM_CONTROL) {
417 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
418 pcie_no_aspm();
419 }
420
Muthu Kumar9c273b92006-04-28 00:42:21 -0700421 ret = register_acpi_bus_type(&acpi_pci_bus);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500422 if (ret)
423 return 0;
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200424 pci_set_platform_pm(&acpi_pci_platform_pm);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500425 return 0;
426}
Muthu Kumar9c273b92006-04-28 00:42:21 -0700427arch_initcall(acpi_pci_init);