blob: 3582512e722668811068275a59e89bc504d3cd66 [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;
Taku Izumi86d86982008-11-20 15:22:39 +090027 u32 control_query;
Taku Izumi753e3ac2008-11-20 15:22:32 +090028 int is_queried;
Shaohua Lia5d1c872008-05-12 10:48:10 +080029 struct list_head sibiling;
30};
31static LIST_HEAD(acpi_osc_data_list);
32
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090033struct acpi_osc_args {
34 u32 capbuf[3];
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090035};
36
Taku Izumi9778c142008-10-17 13:48:36 +090037static DEFINE_MUTEX(pci_acpi_lock);
38
Shaohua Lia5d1c872008-05-12 10:48:10 +080039static struct acpi_osc_data *acpi_get_osc_data(acpi_handle handle)
40{
41 struct acpi_osc_data *data;
42
43 list_for_each_entry(data, &acpi_osc_data_list, sibiling) {
44 if (data->handle == handle)
45 return data;
46 }
47 data = kzalloc(sizeof(*data), GFP_KERNEL);
48 if (!data)
49 return NULL;
50 INIT_LIST_HEAD(&data->sibiling);
51 data->handle = handle;
52 list_add_tail(&data->sibiling, &acpi_osc_data_list);
53 return data;
54}
55
Kenji Kaneshige90a57da2008-05-15 15:23:13 +090056static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
57 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090059static acpi_status acpi_run_osc(acpi_handle handle,
Taku Izumi86d86982008-11-20 15:22:39 +090060 struct acpi_osc_args *osc_args, u32 *retval)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090062 acpi_status status;
63 struct acpi_object_list input;
64 union acpi_object in_params[4];
65 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
66 union acpi_object *out_obj;
Kenji Kaneshige2485b862008-11-10 13:54:43 +090067 u32 errors, flags = osc_args->capbuf[OSC_QUERY_TYPE];
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090068
69 /* Setting up input parameters */
70 input.count = 4;
71 input.pointer = in_params;
72 in_params[0].type = ACPI_TYPE_BUFFER;
73 in_params[0].buffer.length = 16;
74 in_params[0].buffer.pointer = OSC_UUID;
75 in_params[1].type = ACPI_TYPE_INTEGER;
76 in_params[1].integer.value = 1;
77 in_params[2].type = ACPI_TYPE_INTEGER;
78 in_params[2].integer.value = 3;
79 in_params[3].type = ACPI_TYPE_BUFFER;
80 in_params[3].buffer.length = 12;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090081 in_params[3].buffer.pointer = (u8 *)osc_args->capbuf;
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090082
83 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
84 if (ACPI_FAILURE(status))
85 return status;
86
Rafael J. Wysockif8123382008-10-24 21:50:31 +020087 if (!output.length)
88 return AE_NULL_OBJECT;
89
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090090 out_obj = output.pointer;
91 if (out_obj->type != ACPI_TYPE_BUFFER) {
92 printk(KERN_DEBUG "Evaluate _OSC returns wrong type\n");
93 status = AE_TYPE;
94 goto out_kfree;
95 }
Kenji Kaneshige2485b862008-11-10 13:54:43 +090096 /* Need to ignore the bit0 in result code */
97 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
98 if (errors) {
99 if (errors & OSC_REQUEST_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900100 printk(KERN_DEBUG "_OSC request fails\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900101 if (errors & OSC_INVALID_UUID_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900102 printk(KERN_DEBUG "_OSC invalid UUID\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900103 if (errors & OSC_INVALID_REVISION_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900104 printk(KERN_DEBUG "_OSC invalid revision\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900105 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900106 if (flags & OSC_QUERY_ENABLE)
107 goto out_success;
108 printk(KERN_DEBUG "_OSC FW not grant req. control\n");
109 status = AE_SUPPORT;
110 goto out_kfree;
111 }
112 status = AE_ERROR;
113 goto out_kfree;
114 }
115out_success:
Taku Izumi86d86982008-11-20 15:22:39 +0900116 *retval = *((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 Izumi753e3ac2008-11-20 15:22:32 +0900124static acpi_status __acpi_query_osc(u32 flags, struct acpi_osc_data *osc_data)
Taku Izumi4e394322008-10-17 13:49:46 +0900125{
126 acpi_status status;
Taku Izumi86d86982008-11-20 15:22:39 +0900127 u32 support_set, result;
Taku Izumi4e394322008-10-17 13:49:46 +0900128 struct acpi_osc_args osc_args;
129
130 /* do _OSC query for all possible controls */
131 support_set = osc_data->support_set | (flags & OSC_SUPPORT_MASKS);
132 osc_args.capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
133 osc_args.capbuf[OSC_SUPPORT_TYPE] = support_set;
134 osc_args.capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
135
Taku Izumi86d86982008-11-20 15:22:39 +0900136 status = acpi_run_osc(osc_data->handle, &osc_args, &result);
Taku Izumi4e394322008-10-17 13:49:46 +0900137 if (ACPI_SUCCESS(status)) {
138 osc_data->support_set = support_set;
Taku Izumi86d86982008-11-20 15:22:39 +0900139 osc_data->control_query = result;
Taku Izumi753e3ac2008-11-20 15:22:32 +0900140 osc_data->is_queried = 1;
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{
154 acpi_status status;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900155 acpi_handle tmp;
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700156 struct acpi_osc_data *osc_data;
157 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900159 status = acpi_get_handle(handle, "_OSC", &tmp);
160 if (ACPI_FAILURE(status))
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700161 return -ENOTTY;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900162
Taku Izumi9778c142008-10-17 13:48:36 +0900163 mutex_lock(&pci_acpi_lock);
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900164 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800165 if (!osc_data) {
166 printk(KERN_ERR "acpi osc data array is full\n");
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700167 rc = -ENOMEM;
Taku Izumi9778c142008-10-17 13:48:36 +0900168 goto out;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800169 }
170
Taku Izumi753e3ac2008-11-20 15:22:32 +0900171 __acpi_query_osc(flags, osc_data);
Taku Izumi9778c142008-10-17 13:48:36 +0900172out:
173 mutex_unlock(&pci_acpi_lock);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700174 return rc;
175}
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/**
178 * pci_osc_control_set - commit requested control to Firmware
Randy Dunlapf3666332005-11-23 15:45:04 -0800179 * @handle: acpi_handle for the target ACPI object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * @flags: driver's requested control bits
181 *
182 * Attempt to take control from Firmware on requested control bits.
183 **/
rajesh.shah@intel.com427bf532005-10-31 16:20:11 -0800184acpi_status pci_osc_control_set(acpi_handle handle, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900186 acpi_status status;
Taku Izumi86d86982008-11-20 15:22:39 +0900187 u32 control_req, control_set, result;
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900188 acpi_handle tmp;
189 struct acpi_osc_data *osc_data;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900190 struct acpi_osc_args osc_args;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800191
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900192 status = acpi_get_handle(handle, "_OSC", &tmp);
193 if (ACPI_FAILURE(status))
194 return status;
195
Taku Izumi9778c142008-10-17 13:48:36 +0900196 mutex_lock(&pci_acpi_lock);
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900197 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800198 if (!osc_data) {
199 printk(KERN_ERR "acpi osc data array is full\n");
Taku Izumi9778c142008-10-17 13:48:36 +0900200 status = AE_ERROR;
201 goto out;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Taku Izumi86d86982008-11-20 15:22:39 +0900204 control_req = (flags & OSC_CONTROL_MASKS);
205 if (!control_req) {
Taku Izumi9778c142008-10-17 13:48:36 +0900206 status = AE_TYPE;
207 goto out;
208 }
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900209
Taku Izumie0fa3b42008-11-20 15:22:37 +0900210 /* No need to evaluate _OSC if the control was already granted. */
Taku Izumi86d86982008-11-20 15:22:39 +0900211 if ((osc_data->control_set & control_req) == control_req)
Taku Izumie0fa3b42008-11-20 15:22:37 +0900212 goto out;
213
Taku Izumi753e3ac2008-11-20 15:22:32 +0900214 if (!osc_data->is_queried) {
215 status = __acpi_query_osc(osc_data->support_set, osc_data);
216 if (ACPI_FAILURE(status))
217 goto out;
218 }
Taku Izumi4e394322008-10-17 13:49:46 +0900219
Taku Izumi86d86982008-11-20 15:22:39 +0900220 if ((osc_data->control_query & control_req) != control_req) {
Taku Izumi9778c142008-10-17 13:48:36 +0900221 status = AE_SUPPORT;
222 goto out;
223 }
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900224
Taku Izumi86d86982008-11-20 15:22:39 +0900225 control_set = osc_data->control_set | control_req;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900226 osc_args.capbuf[OSC_QUERY_TYPE] = 0;
227 osc_args.capbuf[OSC_SUPPORT_TYPE] = osc_data->support_set;
228 osc_args.capbuf[OSC_CONTROL_TYPE] = control_set;
Taku Izumi86d86982008-11-20 15:22:39 +0900229 status = acpi_run_osc(handle, &osc_args, &result);
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900230 if (ACPI_SUCCESS(status))
Taku Izumi86d86982008-11-20 15:22:39 +0900231 osc_data->control_set = result;
Taku Izumi9778c142008-10-17 13:48:36 +0900232out:
233 mutex_unlock(&pci_acpi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 return status;
235}
236EXPORT_SYMBOL(pci_osc_control_set);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500237
David Shaohua Li0f644742005-03-19 00:15:48 -0500238/*
239 * _SxD returns the D-state with the highest power
240 * (lowest D-state number) supported in the S-state "x".
241 *
242 * If the devices does not have a _PRW
243 * (Power Resources for Wake) supporting system wakeup from "x"
244 * then the OS is free to choose a lower power (higher number
245 * D-state) than the return value from _SxD.
246 *
247 * But if _PRW is enabled at S-state "x", the OS
248 * must not choose a power lower than _SxD --
249 * unless the device has an _SxW method specifying
250 * the lowest power (highest D-state number) the device
251 * may enter while still able to wake the system.
252 *
253 * ie. depending on global OS policy:
254 *
255 * if (_PRW at S-state x)
256 * choose from highest power _SxD to lowest power _SxW
257 * else // no _PRW at S-state x
258 * choose highest power _SxD or any lower power
David Shaohua Li0f644742005-03-19 00:15:48 -0500259 */
260
Rafael J. Wysocki8d2bdf42008-06-05 01:16:37 +0200261static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
David Shaohua Li0f644742005-03-19 00:15:48 -0500262{
Shaohua Liab826ca2007-07-20 10:03:22 +0800263 int acpi_state;
David Shaohua Li0f644742005-03-19 00:15:48 -0500264
David Brownell06166782008-06-05 01:15:40 +0200265 acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL);
Shaohua Liab826ca2007-07-20 10:03:22 +0800266 if (acpi_state < 0)
267 return PCI_POWER_ERROR;
268
269 switch (acpi_state) {
270 case ACPI_STATE_D0:
271 return PCI_D0;
272 case ACPI_STATE_D1:
273 return PCI_D1;
274 case ACPI_STATE_D2:
275 return PCI_D2;
276 case ACPI_STATE_D3:
277 return PCI_D3hot;
278 }
279 return PCI_POWER_ERROR;
David Shaohua Li0f644742005-03-19 00:15:48 -0500280}
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200281
282static bool acpi_pci_power_manageable(struct pci_dev *dev)
283{
284 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
285
286 return handle ? acpi_bus_power_manageable(handle) : false;
287}
David Shaohua Li0f644742005-03-19 00:15:48 -0500288
David Shaohua Lib9131002005-03-19 00:16:18 -0500289static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
290{
291 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
Shaohua Li10b3dca2007-07-20 10:03:25 +0800292 acpi_handle tmp;
David Brownell583c3772008-02-22 21:41:51 -0800293 static const u8 state_conv[] = {
294 [PCI_D0] = ACPI_STATE_D0,
295 [PCI_D1] = ACPI_STATE_D1,
296 [PCI_D2] = ACPI_STATE_D2,
297 [PCI_D3hot] = ACPI_STATE_D3,
298 [PCI_D3cold] = ACPI_STATE_D3
David Shaohua Lib9131002005-03-19 00:16:18 -0500299 };
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200300 int error = -EINVAL;
David Shaohua Lib9131002005-03-19 00:16:18 -0500301
Shaohua Li10b3dca2007-07-20 10:03:25 +0800302 /* If the ACPI device has _EJ0, ignore the device */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200303 if (!handle || ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
304 return -ENODEV;
David Brownell583c3772008-02-22 21:41:51 -0800305
306 switch (state) {
307 case PCI_D0:
308 case PCI_D1:
309 case PCI_D2:
310 case PCI_D3hot:
311 case PCI_D3cold:
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200312 error = acpi_bus_set_power(handle, state_conv[state]);
David Brownell583c3772008-02-22 21:41:51 -0800313 }
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200314
315 if (!error)
316 dev_printk(KERN_INFO, &dev->dev,
317 "power state changed by ACPI to D%d\n", state);
318
319 return error;
David Shaohua Lib9131002005-03-19 00:16:18 -0500320}
321
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200322static bool acpi_pci_can_wakeup(struct pci_dev *dev)
323{
324 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
325
326 return handle ? acpi_bus_can_wakeup(handle) : false;
327}
328
329static int acpi_pci_sleep_wake(struct pci_dev *dev, bool enable)
330{
331 int error = acpi_pm_device_sleep_wake(&dev->dev, enable);
332
333 if (!error)
334 dev_printk(KERN_INFO, &dev->dev,
335 "wake-up capability %s by ACPI\n",
336 enable ? "enabled" : "disabled");
337 return error;
338}
339
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200340static struct pci_platform_pm_ops acpi_pci_platform_pm = {
341 .is_manageable = acpi_pci_power_manageable,
342 .set_state = acpi_pci_set_power_state,
343 .choose_state = acpi_pci_choose_state,
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200344 .can_wakeup = acpi_pci_can_wakeup,
345 .sleep_wake = acpi_pci_sleep_wake,
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200346};
David Shaohua Lib9131002005-03-19 00:16:18 -0500347
David Shaohua Li84df749f2005-03-18 18:53:36 -0500348/* ACPI bus type */
Muthu Kumar9c273b92006-04-28 00:42:21 -0700349static int acpi_pci_find_device(struct device *dev, acpi_handle *handle)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500350{
351 struct pci_dev * pci_dev;
352 acpi_integer addr;
353
354 pci_dev = to_pci_dev(dev);
355 /* Please ref to ACPI spec for the syntax of _ADR */
356 addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
357 *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr);
358 if (!*handle)
359 return -ENODEV;
360 return 0;
361}
362
Muthu Kumar9c273b92006-04-28 00:42:21 -0700363static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500364{
365 int num;
366 unsigned int seg, bus;
367
368 /*
369 * The string should be the same as root bridge's name
370 * Please look at 'pci_scan_bus_parented'
371 */
Kay Sievers1a927132008-10-30 02:17:49 +0100372 num = sscanf(dev_name(dev), "pci%04x:%02x", &seg, &bus);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500373 if (num != 2)
374 return -ENODEV;
375 *handle = acpi_get_pci_rootbridge_handle(seg, bus);
376 if (!*handle)
377 return -ENODEV;
378 return 0;
379}
380
Muthu Kumar9c273b92006-04-28 00:42:21 -0700381static struct acpi_bus_type acpi_pci_bus = {
David Shaohua Li84df749f2005-03-18 18:53:36 -0500382 .bus = &pci_bus_type,
Muthu Kumar9c273b92006-04-28 00:42:21 -0700383 .find_device = acpi_pci_find_device,
384 .find_bridge = acpi_pci_find_root_bridge,
David Shaohua Li84df749f2005-03-18 18:53:36 -0500385};
386
Muthu Kumar9c273b92006-04-28 00:42:21 -0700387static int __init acpi_pci_init(void)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500388{
389 int ret;
390
Shaohua Lif8993af2007-04-25 11:05:12 +0800391 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) {
392 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
393 pci_no_msi();
394 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800395
396 if (acpi_gbl_FADT.boot_flags & BAF_PCIE_ASPM_CONTROL) {
397 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
398 pcie_no_aspm();
399 }
400
Muthu Kumar9c273b92006-04-28 00:42:21 -0700401 ret = register_acpi_bus_type(&acpi_pci_bus);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500402 if (ret)
403 return 0;
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200404 pci_set_platform_pm(&acpi_pci_platform_pm);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500405 return 0;
406}
Muthu Kumar9c273b92006-04-28 00:42:21 -0700407arch_initcall(acpi_pci_init);