blob: 032b3268018bc759c3ce1a0f693c88ffbff902f2 [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>
14#include <acpi/acpi.h>
15#include <acpi/acnamesp.h>
16#include <acpi/acresrc.h>
17#include <acpi/acpi_bus.h>
18
19#include <linux/pci-acpi.h>
David Shaohua Li0f644742005-03-19 00:15:48 -050020#include "pci.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Shaohua Lia5d1c872008-05-12 10:48:10 +080022struct acpi_osc_data {
23 acpi_handle handle;
24 u32 ctrlset_buf[3];
25 u32 global_ctrlsets;
26 struct list_head sibiling;
27};
28static LIST_HEAD(acpi_osc_data_list);
29
30static struct acpi_osc_data *acpi_get_osc_data(acpi_handle handle)
31{
32 struct acpi_osc_data *data;
33
34 list_for_each_entry(data, &acpi_osc_data_list, sibiling) {
35 if (data->handle == handle)
36 return data;
37 }
38 data = kzalloc(sizeof(*data), GFP_KERNEL);
39 if (!data)
40 return NULL;
41 INIT_LIST_HEAD(&data->sibiling);
42 data->handle = handle;
43 list_add_tail(&data->sibiling, &acpi_osc_data_list);
44 return data;
45}
46
Greg KHbc56b9e2005-04-08 14:53:31 +090047static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40, 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090049static acpi_status acpi_run_osc(acpi_handle handle,
50 struct acpi_osc_data *osc_data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070051{
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090052 acpi_status status;
53 struct acpi_object_list input;
54 union acpi_object in_params[4];
55 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
56 union acpi_object *out_obj;
57 u32 osc_dw0, flags = osc_data->ctrlset_buf[OSC_QUERY_TYPE];
58
59 /* Setting up input parameters */
60 input.count = 4;
61 input.pointer = in_params;
62 in_params[0].type = ACPI_TYPE_BUFFER;
63 in_params[0].buffer.length = 16;
64 in_params[0].buffer.pointer = OSC_UUID;
65 in_params[1].type = ACPI_TYPE_INTEGER;
66 in_params[1].integer.value = 1;
67 in_params[2].type = ACPI_TYPE_INTEGER;
68 in_params[2].integer.value = 3;
69 in_params[3].type = ACPI_TYPE_BUFFER;
70 in_params[3].buffer.length = 12;
71 in_params[3].buffer.pointer = (u8 *)osc_data->ctrlset_buf;
72
73 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
74 if (ACPI_FAILURE(status))
75 return status;
76
77 out_obj = output.pointer;
78 if (out_obj->type != ACPI_TYPE_BUFFER) {
79 printk(KERN_DEBUG "Evaluate _OSC returns wrong type\n");
80 status = AE_TYPE;
81 goto out_kfree;
82 }
83 osc_dw0 = *((u32 *) out_obj->buffer.pointer);
84 if (osc_dw0) {
85 if (osc_dw0 & OSC_REQUEST_ERROR)
86 printk(KERN_DEBUG "_OSC request fails\n");
87 if (osc_dw0 & OSC_INVALID_UUID_ERROR)
88 printk(KERN_DEBUG "_OSC invalid UUID\n");
89 if (osc_dw0 & OSC_INVALID_REVISION_ERROR)
90 printk(KERN_DEBUG "_OSC invalid revision\n");
91 if (osc_dw0 & OSC_CAPABILITIES_MASK_ERROR) {
92 if (flags & OSC_QUERY_ENABLE)
93 goto out_success;
94 printk(KERN_DEBUG "_OSC FW not grant req. control\n");
95 status = AE_SUPPORT;
96 goto out_kfree;
97 }
98 status = AE_ERROR;
99 goto out_kfree;
100 }
101out_success:
102 if (flags & OSC_QUERY_ENABLE) {
103 /* Update Global Control Set */
104 osc_data->global_ctrlsets =
105 *((u32 *)(out_obj->buffer.pointer + 8));
106 }
107 status = AE_OK;
108
109out_kfree:
110 kfree(output.pointer);
111 return status;
112}
113
114static acpi_status acpi_query_osc(acpi_handle handle,
115 u32 level, void *context, void **retval)
116{
117 acpi_status status;
Kristen Carlson Accardi0dcb2b72006-10-30 13:08:12 -0800118 acpi_status *ret_status = (acpi_status *)retval;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900119 struct acpi_osc_data *osc_data;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800120 u32 flags = (unsigned long)context, temp;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900121 acpi_handle tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900123 status = acpi_get_handle(handle, "_OSC", &tmp);
124 if (ACPI_FAILURE(status))
125 return status;
126
127 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800128 if (!osc_data) {
129 printk(KERN_ERR "acpi osc data array is full\n");
130 return AE_ERROR;
131 }
132
133 osc_data->ctrlset_buf[OSC_SUPPORT_TYPE] |= (flags & OSC_SUPPORT_MASKS);
134
135 /* do _OSC query for all possible controls */
136 temp = osc_data->ctrlset_buf[OSC_CONTROL_TYPE];
137 osc_data->ctrlset_buf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
138 osc_data->ctrlset_buf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
139
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900140 status = acpi_run_osc(handle, osc_data);
Kristen Carlson Accardi0dcb2b72006-10-30 13:08:12 -0800141 *ret_status = status;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800142
143 osc_data->ctrlset_buf[OSC_QUERY_TYPE] = !OSC_QUERY_ENABLE;
144 osc_data->ctrlset_buf[OSC_CONTROL_TYPE] = temp;
145 if (ACPI_FAILURE(status)) {
146 /* no osc support at all */
147 osc_data->ctrlset_buf[OSC_SUPPORT_TYPE] = 0;
148 }
149
Kristen Accardi593ee202006-05-20 15:00:08 -0700150 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/**
Andrew Pattersonc2778352008-01-22 17:18:12 -0700154 * __pci_osc_support_set - register OS support to Firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * @flags: OS support bits
Randy Dunlap5958f1a2008-02-03 15:06:25 -0800156 * @hid: hardware ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 *
158 * Update OS support fields and doing a _OSC Query to obtain an update
159 * from Firmware on supported control bits.
160 **/
Andrew Pattersonc2778352008-01-22 17:18:12 -0700161acpi_status __pci_osc_support_set(u32 flags, const char *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Kenji Kaneshige21e2b0a2008-05-08 14:37:25 +0900163 acpi_status retval = AE_NOT_FOUND;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 if (!(flags & OSC_SUPPORT_MASKS)) {
166 return AE_TYPE;
167 }
Andrew Pattersonc2778352008-01-22 17:18:12 -0700168 acpi_get_devices(hid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 acpi_query_osc,
Shaohua Lia5d1c872008-05-12 10:48:10 +0800170 (void *)(unsigned long)flags,
Kristen Carlson Accardi0dcb2b72006-10-30 13:08:12 -0800171 (void **) &retval );
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return AE_OK;
173}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
175/**
176 * pci_osc_control_set - commit requested control to Firmware
Randy Dunlapf3666332005-11-23 15:45:04 -0800177 * @handle: acpi_handle for the target ACPI object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * @flags: driver's requested control bits
179 *
180 * Attempt to take control from Firmware on requested control bits.
181 **/
rajesh.shah@intel.com427bf532005-10-31 16:20:11 -0800182acpi_status pci_osc_control_set(acpi_handle handle, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 acpi_status status;
185 u32 ctrlset;
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900186 acpi_handle tmp;
187 struct acpi_osc_data *osc_data;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800188
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900189 status = acpi_get_handle(handle, "_OSC", &tmp);
190 if (ACPI_FAILURE(status))
191 return status;
192
193 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800194 if (!osc_data) {
195 printk(KERN_ERR "acpi osc data array is full\n");
196 return AE_ERROR;
197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
199 ctrlset = (flags & OSC_CONTROL_MASKS);
200 if (!ctrlset) {
201 return AE_TYPE;
202 }
Shaohua Lia5d1c872008-05-12 10:48:10 +0800203 if (osc_data->ctrlset_buf[OSC_SUPPORT_TYPE] &&
204 ((osc_data->global_ctrlsets & ctrlset) != ctrlset)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 return AE_SUPPORT;
206 }
Shaohua Lia5d1c872008-05-12 10:48:10 +0800207 osc_data->ctrlset_buf[OSC_CONTROL_TYPE] |= ctrlset;
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900208 status = acpi_run_osc(handle, osc_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (ACPI_FAILURE (status)) {
Shaohua Lia5d1c872008-05-12 10:48:10 +0800210 osc_data->ctrlset_buf[OSC_CONTROL_TYPE] &= ~ctrlset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212
213 return status;
214}
215EXPORT_SYMBOL(pci_osc_control_set);
David Shaohua Li84df7492005-03-18 18:53:36 -0500216
Len Brown673d5b42007-07-28 03:33:16 -0400217#ifdef CONFIG_ACPI_SLEEP
David Shaohua Li0f644742005-03-19 00:15:48 -0500218/*
219 * _SxD returns the D-state with the highest power
220 * (lowest D-state number) supported in the S-state "x".
221 *
222 * If the devices does not have a _PRW
223 * (Power Resources for Wake) supporting system wakeup from "x"
224 * then the OS is free to choose a lower power (higher number
225 * D-state) than the return value from _SxD.
226 *
227 * But if _PRW is enabled at S-state "x", the OS
228 * must not choose a power lower than _SxD --
229 * unless the device has an _SxW method specifying
230 * the lowest power (highest D-state number) the device
231 * may enter while still able to wake the system.
232 *
233 * ie. depending on global OS policy:
234 *
235 * if (_PRW at S-state x)
236 * choose from highest power _SxD to lowest power _SxW
237 * else // no _PRW at S-state x
238 * choose highest power _SxD or any lower power
David Shaohua Li0f644742005-03-19 00:15:48 -0500239 */
240
Shaohua Liab826ca2007-07-20 10:03:22 +0800241static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev,
242 pm_message_t state)
David Shaohua Li0f644742005-03-19 00:15:48 -0500243{
Shaohua Liab826ca2007-07-20 10:03:22 +0800244 int acpi_state;
David Shaohua Li0f644742005-03-19 00:15:48 -0500245
Shaohua Liab826ca2007-07-20 10:03:22 +0800246 acpi_state = acpi_pm_device_sleep_state(&pdev->dev,
247 device_may_wakeup(&pdev->dev), NULL);
248 if (acpi_state < 0)
249 return PCI_POWER_ERROR;
250
251 switch (acpi_state) {
252 case ACPI_STATE_D0:
253 return PCI_D0;
254 case ACPI_STATE_D1:
255 return PCI_D1;
256 case ACPI_STATE_D2:
257 return PCI_D2;
258 case ACPI_STATE_D3:
259 return PCI_D3hot;
260 }
261 return PCI_POWER_ERROR;
David Shaohua Li0f644742005-03-19 00:15:48 -0500262}
Len Brown673d5b42007-07-28 03:33:16 -0400263#endif
David Shaohua Li0f644742005-03-19 00:15:48 -0500264
David Shaohua Lib9131002005-03-19 00:16:18 -0500265static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
266{
267 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
Shaohua Li10b3dca2007-07-20 10:03:25 +0800268 acpi_handle tmp;
David Brownell583c3772008-02-22 21:41:51 -0800269 static const u8 state_conv[] = {
270 [PCI_D0] = ACPI_STATE_D0,
271 [PCI_D1] = ACPI_STATE_D1,
272 [PCI_D2] = ACPI_STATE_D2,
273 [PCI_D3hot] = ACPI_STATE_D3,
274 [PCI_D3cold] = ACPI_STATE_D3
David Shaohua Lib9131002005-03-19 00:16:18 -0500275 };
David Shaohua Lib9131002005-03-19 00:16:18 -0500276
277 if (!handle)
278 return -ENODEV;
Shaohua Li10b3dca2007-07-20 10:03:25 +0800279 /* If the ACPI device has _EJ0, ignore the device */
280 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
281 return 0;
David Brownell583c3772008-02-22 21:41:51 -0800282
283 switch (state) {
284 case PCI_D0:
285 case PCI_D1:
286 case PCI_D2:
287 case PCI_D3hot:
288 case PCI_D3cold:
289 return acpi_bus_set_power(handle, state_conv[state]);
290 }
291 return -EINVAL;
David Shaohua Lib9131002005-03-19 00:16:18 -0500292}
293
294
David Shaohua Li84df7492005-03-18 18:53:36 -0500295/* ACPI bus type */
Muthu Kumar9c273b92006-04-28 00:42:21 -0700296static int acpi_pci_find_device(struct device *dev, acpi_handle *handle)
David Shaohua Li84df7492005-03-18 18:53:36 -0500297{
298 struct pci_dev * pci_dev;
299 acpi_integer addr;
300
301 pci_dev = to_pci_dev(dev);
302 /* Please ref to ACPI spec for the syntax of _ADR */
303 addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
304 *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr);
305 if (!*handle)
306 return -ENODEV;
307 return 0;
308}
309
Muthu Kumar9c273b92006-04-28 00:42:21 -0700310static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle)
David Shaohua Li84df7492005-03-18 18:53:36 -0500311{
312 int num;
313 unsigned int seg, bus;
314
315 /*
316 * The string should be the same as root bridge's name
317 * Please look at 'pci_scan_bus_parented'
318 */
319 num = sscanf(dev->bus_id, "pci%04x:%02x", &seg, &bus);
320 if (num != 2)
321 return -ENODEV;
322 *handle = acpi_get_pci_rootbridge_handle(seg, bus);
323 if (!*handle)
324 return -ENODEV;
325 return 0;
326}
327
Muthu Kumar9c273b92006-04-28 00:42:21 -0700328static struct acpi_bus_type acpi_pci_bus = {
David Shaohua Li84df7492005-03-18 18:53:36 -0500329 .bus = &pci_bus_type,
Muthu Kumar9c273b92006-04-28 00:42:21 -0700330 .find_device = acpi_pci_find_device,
331 .find_bridge = acpi_pci_find_root_bridge,
David Shaohua Li84df7492005-03-18 18:53:36 -0500332};
333
Muthu Kumar9c273b92006-04-28 00:42:21 -0700334static int __init acpi_pci_init(void)
David Shaohua Li84df7492005-03-18 18:53:36 -0500335{
336 int ret;
337
Shaohua Lif8993af2007-04-25 11:05:12 +0800338 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) {
339 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
340 pci_no_msi();
341 }
Muthu Kumar9c273b92006-04-28 00:42:21 -0700342 ret = register_acpi_bus_type(&acpi_pci_bus);
David Shaohua Li84df7492005-03-18 18:53:36 -0500343 if (ret)
344 return 0;
Len Brown673d5b42007-07-28 03:33:16 -0400345#ifdef CONFIG_ACPI_SLEEP
David Shaohua Li0f644742005-03-19 00:15:48 -0500346 platform_pci_choose_state = acpi_pci_choose_state;
Len Brown673d5b42007-07-28 03:33:16 -0400347#endif
David Shaohua Lib9131002005-03-19 00:16:18 -0500348 platform_pci_set_power_state = acpi_pci_set_power_state;
David Shaohua Li84df7492005-03-18 18:53:36 -0500349 return 0;
350}
Muthu Kumar9c273b92006-04-28 00:42:21 -0700351arch_initcall(acpi_pci_init);