blob: 736bb248008e5baace5e188e6a4d691e230b4dcd [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 Li84df7492005-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 Izumi753e3ac2008-11-20 15:22:32 +090027 int is_queried;
28 u32 query_result;
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];
Taku Izumi753e3ac2008-11-20 15:22:32 +090035 u32 query_result;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090036};
37
Taku Izumi9778c142008-10-17 13:48:36 +090038static DEFINE_MUTEX(pci_acpi_lock);
39
Shaohua Lia5d1c872008-05-12 10:48:10 +080040static struct acpi_osc_data *acpi_get_osc_data(acpi_handle handle)
41{
42 struct acpi_osc_data *data;
43
44 list_for_each_entry(data, &acpi_osc_data_list, sibiling) {
45 if (data->handle == handle)
46 return data;
47 }
48 data = kzalloc(sizeof(*data), GFP_KERNEL);
49 if (!data)
50 return NULL;
51 INIT_LIST_HEAD(&data->sibiling);
52 data->handle = handle;
53 list_add_tail(&data->sibiling, &acpi_osc_data_list);
54 return data;
55}
56
Kenji Kaneshige90a57da2008-05-15 15:23:13 +090057static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
58 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090060static acpi_status acpi_run_osc(acpi_handle handle,
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090061 struct acpi_osc_args *osc_args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090063 acpi_status status;
64 struct acpi_object_list input;
65 union acpi_object in_params[4];
66 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
67 union acpi_object *out_obj;
Kenji Kaneshige2485b862008-11-10 13:54:43 +090068 u32 errors, flags = osc_args->capbuf[OSC_QUERY_TYPE];
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090069
70 /* Setting up input parameters */
71 input.count = 4;
72 input.pointer = in_params;
73 in_params[0].type = ACPI_TYPE_BUFFER;
74 in_params[0].buffer.length = 16;
75 in_params[0].buffer.pointer = OSC_UUID;
76 in_params[1].type = ACPI_TYPE_INTEGER;
77 in_params[1].integer.value = 1;
78 in_params[2].type = ACPI_TYPE_INTEGER;
79 in_params[2].integer.value = 3;
80 in_params[3].type = ACPI_TYPE_BUFFER;
81 in_params[3].buffer.length = 12;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090082 in_params[3].buffer.pointer = (u8 *)osc_args->capbuf;
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090083
84 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
85 if (ACPI_FAILURE(status))
86 return status;
87
Rafael J. Wysockif8123382008-10-24 21:50:31 +020088 if (!output.length)
89 return AE_NULL_OBJECT;
90
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090091 out_obj = output.pointer;
92 if (out_obj->type != ACPI_TYPE_BUFFER) {
93 printk(KERN_DEBUG "Evaluate _OSC returns wrong type\n");
94 status = AE_TYPE;
95 goto out_kfree;
96 }
Kenji Kaneshige2485b862008-11-10 13:54:43 +090097 /* Need to ignore the bit0 in result code */
98 errors = *((u32 *)out_obj->buffer.pointer) & ~(1 << 0);
99 if (errors) {
100 if (errors & OSC_REQUEST_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900101 printk(KERN_DEBUG "_OSC request fails\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900102 if (errors & OSC_INVALID_UUID_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900103 printk(KERN_DEBUG "_OSC invalid UUID\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900104 if (errors & OSC_INVALID_REVISION_ERROR)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900105 printk(KERN_DEBUG "_OSC invalid revision\n");
Kenji Kaneshige2485b862008-11-10 13:54:43 +0900106 if (errors & OSC_CAPABILITIES_MASK_ERROR) {
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900107 if (flags & OSC_QUERY_ENABLE)
108 goto out_success;
109 printk(KERN_DEBUG "_OSC FW not grant req. control\n");
110 status = AE_SUPPORT;
111 goto out_kfree;
112 }
113 status = AE_ERROR;
114 goto out_kfree;
115 }
116out_success:
Taku Izumi753e3ac2008-11-20 15:22:32 +0900117 if (flags & OSC_QUERY_ENABLE)
118 osc_args->query_result =
119 *((u32 *)(out_obj->buffer.pointer + 8));
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900120 status = AE_OK;
121
122out_kfree:
123 kfree(output.pointer);
124 return status;
125}
126
Taku Izumi753e3ac2008-11-20 15:22:32 +0900127static acpi_status __acpi_query_osc(u32 flags, struct acpi_osc_data *osc_data)
Taku Izumi4e394322008-10-17 13:49:46 +0900128{
129 acpi_status status;
130 u32 support_set;
131 struct acpi_osc_args osc_args;
132
133 /* do _OSC query for all possible controls */
134 support_set = osc_data->support_set | (flags & OSC_SUPPORT_MASKS);
135 osc_args.capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
136 osc_args.capbuf[OSC_SUPPORT_TYPE] = support_set;
137 osc_args.capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
138
139 status = acpi_run_osc(osc_data->handle, &osc_args);
140 if (ACPI_SUCCESS(status)) {
141 osc_data->support_set = support_set;
Taku Izumi753e3ac2008-11-20 15:22:32 +0900142 osc_data->query_result = osc_args.query_result;
143 osc_data->is_queried = 1;
Taku Izumi4e394322008-10-17 13:49:46 +0900144 }
145
146 return status;
147}
148
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700149/*
150 * pci_acpi_osc_support: Invoke _OSC indicating support for the given feature
151 * @flags: Bitmask of flags to support
152 *
153 * See the ACPI spec for the definition of the flags
154 */
155int pci_acpi_osc_support(acpi_handle handle, u32 flags)
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900156{
157 acpi_status status;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900158 acpi_handle tmp;
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700159 struct acpi_osc_data *osc_data;
160 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900162 status = acpi_get_handle(handle, "_OSC", &tmp);
163 if (ACPI_FAILURE(status))
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700164 return -ENOTTY;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900165
Taku Izumi9778c142008-10-17 13:48:36 +0900166 mutex_lock(&pci_acpi_lock);
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900167 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800168 if (!osc_data) {
169 printk(KERN_ERR "acpi osc data array is full\n");
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700170 rc = -ENOMEM;
Taku Izumi9778c142008-10-17 13:48:36 +0900171 goto out;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800172 }
173
Taku Izumi753e3ac2008-11-20 15:22:32 +0900174 __acpi_query_osc(flags, osc_data);
Taku Izumi9778c142008-10-17 13:48:36 +0900175out:
176 mutex_unlock(&pci_acpi_lock);
Andrew Patterson990a7ac2008-11-10 15:30:45 -0700177 return rc;
178}
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/**
181 * pci_osc_control_set - commit requested control to Firmware
Randy Dunlapf3666332005-11-23 15:45:04 -0800182 * @handle: acpi_handle for the target ACPI object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * @flags: driver's requested control bits
184 *
185 * Attempt to take control from Firmware on requested control bits.
186 **/
rajesh.shah@intel.com427bf532005-10-31 16:20:11 -0800187acpi_status pci_osc_control_set(acpi_handle handle, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900189 acpi_status status;
Taku Izumi753e3ac2008-11-20 15:22:32 +0900190 u32 ctrlset, control_set;
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900191 acpi_handle tmp;
192 struct acpi_osc_data *osc_data;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900193 struct acpi_osc_args osc_args;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800194
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900195 status = acpi_get_handle(handle, "_OSC", &tmp);
196 if (ACPI_FAILURE(status))
197 return status;
198
Taku Izumi9778c142008-10-17 13:48:36 +0900199 mutex_lock(&pci_acpi_lock);
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900200 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800201 if (!osc_data) {
202 printk(KERN_ERR "acpi osc data array is full\n");
Taku Izumi9778c142008-10-17 13:48:36 +0900203 status = AE_ERROR;
204 goto out;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207 ctrlset = (flags & OSC_CONTROL_MASKS);
Taku Izumi9778c142008-10-17 13:48:36 +0900208 if (!ctrlset) {
209 status = AE_TYPE;
210 goto out;
211 }
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900212
Taku Izumie0fa3b42008-11-20 15:22:37 +0900213 /* No need to evaluate _OSC if the control was already granted. */
214 if ((osc_data->control_set & ctrlset) == ctrlset)
215 goto out;
216
Taku Izumi753e3ac2008-11-20 15:22:32 +0900217 if (!osc_data->is_queried) {
218 status = __acpi_query_osc(osc_data->support_set, osc_data);
219 if (ACPI_FAILURE(status))
220 goto out;
221 }
Taku Izumi4e394322008-10-17 13:49:46 +0900222
Taku Izumi753e3ac2008-11-20 15:22:32 +0900223 if ((osc_data->query_result & ctrlset) != ctrlset) {
Taku Izumi9778c142008-10-17 13:48:36 +0900224 status = AE_SUPPORT;
225 goto out;
226 }
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900227
228 control_set = osc_data->control_set | ctrlset;
229 osc_args.capbuf[OSC_QUERY_TYPE] = 0;
230 osc_args.capbuf[OSC_SUPPORT_TYPE] = osc_data->support_set;
231 osc_args.capbuf[OSC_CONTROL_TYPE] = control_set;
232 status = acpi_run_osc(handle, &osc_args);
233 if (ACPI_SUCCESS(status))
234 osc_data->control_set = control_set;
Taku Izumi9778c142008-10-17 13:48:36 +0900235out:
236 mutex_unlock(&pci_acpi_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 return status;
238}
239EXPORT_SYMBOL(pci_osc_control_set);
David Shaohua Li84df7492005-03-18 18:53:36 -0500240
David Shaohua Li0f644742005-03-19 00:15:48 -0500241/*
242 * _SxD returns the D-state with the highest power
243 * (lowest D-state number) supported in the S-state "x".
244 *
245 * If the devices does not have a _PRW
246 * (Power Resources for Wake) supporting system wakeup from "x"
247 * then the OS is free to choose a lower power (higher number
248 * D-state) than the return value from _SxD.
249 *
250 * But if _PRW is enabled at S-state "x", the OS
251 * must not choose a power lower than _SxD --
252 * unless the device has an _SxW method specifying
253 * the lowest power (highest D-state number) the device
254 * may enter while still able to wake the system.
255 *
256 * ie. depending on global OS policy:
257 *
258 * if (_PRW at S-state x)
259 * choose from highest power _SxD to lowest power _SxW
260 * else // no _PRW at S-state x
261 * choose highest power _SxD or any lower power
David Shaohua Li0f644742005-03-19 00:15:48 -0500262 */
263
Rafael J. Wysocki8d2bdf42008-06-05 01:16:37 +0200264static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
David Shaohua Li0f644742005-03-19 00:15:48 -0500265{
Shaohua Liab826ca2007-07-20 10:03:22 +0800266 int acpi_state;
David Shaohua Li0f644742005-03-19 00:15:48 -0500267
David Brownell06166782008-06-05 01:15:40 +0200268 acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL);
Shaohua Liab826ca2007-07-20 10:03:22 +0800269 if (acpi_state < 0)
270 return PCI_POWER_ERROR;
271
272 switch (acpi_state) {
273 case ACPI_STATE_D0:
274 return PCI_D0;
275 case ACPI_STATE_D1:
276 return PCI_D1;
277 case ACPI_STATE_D2:
278 return PCI_D2;
279 case ACPI_STATE_D3:
280 return PCI_D3hot;
281 }
282 return PCI_POWER_ERROR;
David Shaohua Li0f644742005-03-19 00:15:48 -0500283}
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200284
285static bool acpi_pci_power_manageable(struct pci_dev *dev)
286{
287 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
288
289 return handle ? acpi_bus_power_manageable(handle) : false;
290}
David Shaohua Li0f644742005-03-19 00:15:48 -0500291
David Shaohua Lib9131002005-03-19 00:16:18 -0500292static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
293{
294 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
Shaohua Li10b3dca2007-07-20 10:03:25 +0800295 acpi_handle tmp;
David Brownell583c3772008-02-22 21:41:51 -0800296 static const u8 state_conv[] = {
297 [PCI_D0] = ACPI_STATE_D0,
298 [PCI_D1] = ACPI_STATE_D1,
299 [PCI_D2] = ACPI_STATE_D2,
300 [PCI_D3hot] = ACPI_STATE_D3,
301 [PCI_D3cold] = ACPI_STATE_D3
David Shaohua Lib9131002005-03-19 00:16:18 -0500302 };
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200303 int error = -EINVAL;
David Shaohua Lib9131002005-03-19 00:16:18 -0500304
Shaohua Li10b3dca2007-07-20 10:03:25 +0800305 /* If the ACPI device has _EJ0, ignore the device */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200306 if (!handle || ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
307 return -ENODEV;
David Brownell583c3772008-02-22 21:41:51 -0800308
309 switch (state) {
310 case PCI_D0:
311 case PCI_D1:
312 case PCI_D2:
313 case PCI_D3hot:
314 case PCI_D3cold:
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200315 error = acpi_bus_set_power(handle, state_conv[state]);
David Brownell583c3772008-02-22 21:41:51 -0800316 }
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200317
318 if (!error)
319 dev_printk(KERN_INFO, &dev->dev,
320 "power state changed by ACPI to D%d\n", state);
321
322 return error;
David Shaohua Lib9131002005-03-19 00:16:18 -0500323}
324
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200325static bool acpi_pci_can_wakeup(struct pci_dev *dev)
326{
327 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
328
329 return handle ? acpi_bus_can_wakeup(handle) : false;
330}
331
332static int acpi_pci_sleep_wake(struct pci_dev *dev, bool enable)
333{
334 int error = acpi_pm_device_sleep_wake(&dev->dev, enable);
335
336 if (!error)
337 dev_printk(KERN_INFO, &dev->dev,
338 "wake-up capability %s by ACPI\n",
339 enable ? "enabled" : "disabled");
340 return error;
341}
342
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200343static struct pci_platform_pm_ops acpi_pci_platform_pm = {
344 .is_manageable = acpi_pci_power_manageable,
345 .set_state = acpi_pci_set_power_state,
346 .choose_state = acpi_pci_choose_state,
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200347 .can_wakeup = acpi_pci_can_wakeup,
348 .sleep_wake = acpi_pci_sleep_wake,
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200349};
David Shaohua Lib9131002005-03-19 00:16:18 -0500350
David Shaohua Li84df7492005-03-18 18:53:36 -0500351/* ACPI bus type */
Muthu Kumar9c273b92006-04-28 00:42:21 -0700352static int acpi_pci_find_device(struct device *dev, acpi_handle *handle)
David Shaohua Li84df7492005-03-18 18:53:36 -0500353{
354 struct pci_dev * pci_dev;
355 acpi_integer addr;
356
357 pci_dev = to_pci_dev(dev);
358 /* Please ref to ACPI spec for the syntax of _ADR */
359 addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
360 *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr);
361 if (!*handle)
362 return -ENODEV;
363 return 0;
364}
365
Muthu Kumar9c273b92006-04-28 00:42:21 -0700366static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle)
David Shaohua Li84df7492005-03-18 18:53:36 -0500367{
368 int num;
369 unsigned int seg, bus;
370
371 /*
372 * The string should be the same as root bridge's name
373 * Please look at 'pci_scan_bus_parented'
374 */
Kay Sievers1a927132008-10-30 02:17:49 +0100375 num = sscanf(dev_name(dev), "pci%04x:%02x", &seg, &bus);
David Shaohua Li84df7492005-03-18 18:53:36 -0500376 if (num != 2)
377 return -ENODEV;
378 *handle = acpi_get_pci_rootbridge_handle(seg, bus);
379 if (!*handle)
380 return -ENODEV;
381 return 0;
382}
383
Muthu Kumar9c273b92006-04-28 00:42:21 -0700384static struct acpi_bus_type acpi_pci_bus = {
David Shaohua Li84df7492005-03-18 18:53:36 -0500385 .bus = &pci_bus_type,
Muthu Kumar9c273b92006-04-28 00:42:21 -0700386 .find_device = acpi_pci_find_device,
387 .find_bridge = acpi_pci_find_root_bridge,
David Shaohua Li84df7492005-03-18 18:53:36 -0500388};
389
Muthu Kumar9c273b92006-04-28 00:42:21 -0700390static int __init acpi_pci_init(void)
David Shaohua Li84df7492005-03-18 18:53:36 -0500391{
392 int ret;
393
Shaohua Lif8993af2007-04-25 11:05:12 +0800394 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) {
395 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
396 pci_no_msi();
397 }
Shaohua Li5fde2442008-07-23 10:32:24 +0800398
399 if (acpi_gbl_FADT.boot_flags & BAF_PCIE_ASPM_CONTROL) {
400 printk(KERN_INFO"ACPI FADT declares the system doesn't support PCIe ASPM, so disable it\n");
401 pcie_no_aspm();
402 }
403
Muthu Kumar9c273b92006-04-28 00:42:21 -0700404 ret = register_acpi_bus_type(&acpi_pci_bus);
David Shaohua Li84df7492005-03-18 18:53:36 -0500405 if (ret)
406 return 0;
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200407 pci_set_platform_pm(&acpi_pci_platform_pm);
David Shaohua Li84df7492005-03-18 18:53:36 -0500408 return 0;
409}
Muthu Kumar9c273b92006-04-28 00:42:21 -0700410arch_initcall(acpi_pci_init);