blob: 6bc0d8c870afe1bbc283b873af42abc9388bebac [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>
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;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090024 u32 support_set;
25 u32 control_set;
Kenji Kaneshige681f7d92008-05-15 15:21:16 +090026 int is_queried;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090027 u32 query_result;
Shaohua Lia5d1c872008-05-12 10:48:10 +080028 struct list_head sibiling;
29};
30static LIST_HEAD(acpi_osc_data_list);
31
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090032struct acpi_osc_args {
33 u32 capbuf[3];
34 u32 query_result;
35};
36
Shaohua Lia5d1c872008-05-12 10:48:10 +080037static struct acpi_osc_data *acpi_get_osc_data(acpi_handle handle)
38{
39 struct acpi_osc_data *data;
40
41 list_for_each_entry(data, &acpi_osc_data_list, sibiling) {
42 if (data->handle == handle)
43 return data;
44 }
45 data = kzalloc(sizeof(*data), GFP_KERNEL);
46 if (!data)
47 return NULL;
48 INIT_LIST_HEAD(&data->sibiling);
49 data->handle = handle;
50 list_add_tail(&data->sibiling, &acpi_osc_data_list);
51 return data;
52}
53
Kenji Kaneshige90a57da2008-05-15 15:23:13 +090054static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40,
55 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66};
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090057static acpi_status acpi_run_osc(acpi_handle handle,
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090058 struct acpi_osc_args *osc_args)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090060 acpi_status status;
61 struct acpi_object_list input;
62 union acpi_object in_params[4];
63 struct acpi_buffer output = {ACPI_ALLOCATE_BUFFER, NULL};
64 union acpi_object *out_obj;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090065 u32 osc_dw0, flags = osc_args->capbuf[OSC_QUERY_TYPE];
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090066
67 /* Setting up input parameters */
68 input.count = 4;
69 input.pointer = in_params;
70 in_params[0].type = ACPI_TYPE_BUFFER;
71 in_params[0].buffer.length = 16;
72 in_params[0].buffer.pointer = OSC_UUID;
73 in_params[1].type = ACPI_TYPE_INTEGER;
74 in_params[1].integer.value = 1;
75 in_params[2].type = ACPI_TYPE_INTEGER;
76 in_params[2].integer.value = 3;
77 in_params[3].type = ACPI_TYPE_BUFFER;
78 in_params[3].buffer.length = 12;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +090079 in_params[3].buffer.pointer = (u8 *)osc_args->capbuf;
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090080
81 status = acpi_evaluate_object(handle, "_OSC", &input, &output);
82 if (ACPI_FAILURE(status))
83 return status;
84
85 out_obj = output.pointer;
86 if (out_obj->type != ACPI_TYPE_BUFFER) {
87 printk(KERN_DEBUG "Evaluate _OSC returns wrong type\n");
88 status = AE_TYPE;
89 goto out_kfree;
90 }
Kenji Kaneshige90a57da2008-05-15 15:23:13 +090091 osc_dw0 = *((u32 *)out_obj->buffer.pointer);
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +090092 if (osc_dw0) {
93 if (osc_dw0 & OSC_REQUEST_ERROR)
94 printk(KERN_DEBUG "_OSC request fails\n");
95 if (osc_dw0 & OSC_INVALID_UUID_ERROR)
96 printk(KERN_DEBUG "_OSC invalid UUID\n");
97 if (osc_dw0 & OSC_INVALID_REVISION_ERROR)
98 printk(KERN_DEBUG "_OSC invalid revision\n");
99 if (osc_dw0 & OSC_CAPABILITIES_MASK_ERROR) {
100 if (flags & OSC_QUERY_ENABLE)
101 goto out_success;
102 printk(KERN_DEBUG "_OSC FW not grant req. control\n");
103 status = AE_SUPPORT;
104 goto out_kfree;
105 }
106 status = AE_ERROR;
107 goto out_kfree;
108 }
109out_success:
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900110 if (flags & OSC_QUERY_ENABLE)
111 osc_args->query_result =
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900112 *((u32 *)(out_obj->buffer.pointer + 8));
Kenji Kaneshige8a7a4fa2008-05-15 15:18:53 +0900113 status = AE_OK;
114
115out_kfree:
116 kfree(output.pointer);
117 return status;
118}
119
120static acpi_status acpi_query_osc(acpi_handle handle,
121 u32 level, void *context, void **retval)
122{
123 acpi_status status;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900124 struct acpi_osc_data *osc_data;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900125 u32 flags = (unsigned long)context, support_set;
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900126 acpi_handle tmp;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900127 struct acpi_osc_args osc_args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Kenji Kaneshigec4e5fad2008-05-13 16:48:50 +0900129 status = acpi_get_handle(handle, "_OSC", &tmp);
130 if (ACPI_FAILURE(status))
131 return status;
132
133 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800134 if (!osc_data) {
135 printk(KERN_ERR "acpi osc data array is full\n");
136 return AE_ERROR;
137 }
138
Shaohua Lia5d1c872008-05-12 10:48:10 +0800139 /* do _OSC query for all possible controls */
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900140 support_set = osc_data->support_set | (flags & OSC_SUPPORT_MASKS);
141 osc_args.capbuf[OSC_QUERY_TYPE] = OSC_QUERY_ENABLE;
142 osc_args.capbuf[OSC_SUPPORT_TYPE] = support_set;
143 osc_args.capbuf[OSC_CONTROL_TYPE] = OSC_CONTROL_MASKS;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800144
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900145 status = acpi_run_osc(handle, &osc_args);
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900146 if (ACPI_SUCCESS(status)) {
147 osc_data->support_set = support_set;
148 osc_data->query_result = osc_args.query_result;
Kenji Kaneshige681f7d92008-05-15 15:21:16 +0900149 osc_data->is_queried = 1;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800150 }
151
Kristen Accardi593ee202006-05-20 15:00:08 -0700152 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153}
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/**
Andrew Pattersonc2778352008-01-22 17:18:12 -0700156 * __pci_osc_support_set - register OS support to Firmware
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * @flags: OS support bits
Randy Dunlap5958f1a2008-02-03 15:06:25 -0800158 * @hid: hardware ID
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 *
160 * Update OS support fields and doing a _OSC Query to obtain an update
161 * from Firmware on supported control bits.
162 **/
Andrew Pattersonc2778352008-01-22 17:18:12 -0700163acpi_status __pci_osc_support_set(u32 flags, const char *hid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Kenji Kaneshigec1550622008-05-15 15:22:35 +0900165 if (!(flags & OSC_SUPPORT_MASKS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 return AE_TYPE;
Kenji Kaneshigec1550622008-05-15 15:22:35 +0900167
168 acpi_get_devices(hid, acpi_query_osc,
169 (void *)(unsigned long)flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 return AE_OK;
171}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173/**
174 * pci_osc_control_set - commit requested control to Firmware
Randy Dunlapf3666332005-11-23 15:45:04 -0800175 * @handle: acpi_handle for the target ACPI object
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * @flags: driver's requested control bits
177 *
178 * Attempt to take control from Firmware on requested control bits.
179 **/
rajesh.shah@intel.com427bf532005-10-31 16:20:11 -0800180acpi_status pci_osc_control_set(acpi_handle handle, u32 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900182 acpi_status status;
183 u32 ctrlset, control_set;
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900184 acpi_handle tmp;
185 struct acpi_osc_data *osc_data;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900186 struct acpi_osc_args osc_args;
Shaohua Lia5d1c872008-05-12 10:48:10 +0800187
Kenji Kaneshige34a65052008-05-12 22:55:45 +0900188 status = acpi_get_handle(handle, "_OSC", &tmp);
189 if (ACPI_FAILURE(status))
190 return status;
191
192 osc_data = acpi_get_osc_data(handle);
Shaohua Lia5d1c872008-05-12 10:48:10 +0800193 if (!osc_data) {
194 printk(KERN_ERR "acpi osc data array is full\n");
195 return AE_ERROR;
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
198 ctrlset = (flags & OSC_CONTROL_MASKS);
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900199 if (!ctrlset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 return AE_TYPE;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900201
Kenji Kaneshige681f7d92008-05-15 15:21:16 +0900202 if (osc_data->is_queried &&
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900203 ((osc_data->query_result & ctrlset) != ctrlset))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return AE_SUPPORT;
Kenji Kaneshige5e0b9942008-05-15 15:20:11 +0900205
206 control_set = osc_data->control_set | ctrlset;
207 osc_args.capbuf[OSC_QUERY_TYPE] = 0;
208 osc_args.capbuf[OSC_SUPPORT_TYPE] = osc_data->support_set;
209 osc_args.capbuf[OSC_CONTROL_TYPE] = control_set;
210 status = acpi_run_osc(handle, &osc_args);
211 if (ACPI_SUCCESS(status))
212 osc_data->control_set = control_set;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 return status;
215}
216EXPORT_SYMBOL(pci_osc_control_set);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500217
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
Rafael J. Wysocki8d2bdf42008-06-05 01:16:37 +0200241static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev)
David Shaohua Li0f644742005-03-19 00:15:48 -0500242{
Shaohua Liab826ca2007-07-20 10:03:22 +0800243 int acpi_state;
David Shaohua Li0f644742005-03-19 00:15:48 -0500244
David Brownell06166782008-06-05 01:15:40 +0200245 acpi_state = acpi_pm_device_sleep_state(&pdev->dev, NULL);
Shaohua Liab826ca2007-07-20 10:03:22 +0800246 if (acpi_state < 0)
247 return PCI_POWER_ERROR;
248
249 switch (acpi_state) {
250 case ACPI_STATE_D0:
251 return PCI_D0;
252 case ACPI_STATE_D1:
253 return PCI_D1;
254 case ACPI_STATE_D2:
255 return PCI_D2;
256 case ACPI_STATE_D3:
257 return PCI_D3hot;
258 }
259 return PCI_POWER_ERROR;
David Shaohua Li0f644742005-03-19 00:15:48 -0500260}
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200261
262static bool acpi_pci_power_manageable(struct pci_dev *dev)
263{
264 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
265
266 return handle ? acpi_bus_power_manageable(handle) : false;
267}
David Shaohua Li0f644742005-03-19 00:15:48 -0500268
David Shaohua Lib9131002005-03-19 00:16:18 -0500269static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state)
270{
271 acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev);
Shaohua Li10b3dca2007-07-20 10:03:25 +0800272 acpi_handle tmp;
David Brownell583c3772008-02-22 21:41:51 -0800273 static const u8 state_conv[] = {
274 [PCI_D0] = ACPI_STATE_D0,
275 [PCI_D1] = ACPI_STATE_D1,
276 [PCI_D2] = ACPI_STATE_D2,
277 [PCI_D3hot] = ACPI_STATE_D3,
278 [PCI_D3cold] = ACPI_STATE_D3
David Shaohua Lib9131002005-03-19 00:16:18 -0500279 };
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200280 int error = -EINVAL;
David Shaohua Lib9131002005-03-19 00:16:18 -0500281
Shaohua Li10b3dca2007-07-20 10:03:25 +0800282 /* If the ACPI device has _EJ0, ignore the device */
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200283 if (!handle || ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp)))
284 return -ENODEV;
David Brownell583c3772008-02-22 21:41:51 -0800285
286 switch (state) {
287 case PCI_D0:
288 case PCI_D1:
289 case PCI_D2:
290 case PCI_D3hot:
291 case PCI_D3cold:
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200292 error = acpi_bus_set_power(handle, state_conv[state]);
David Brownell583c3772008-02-22 21:41:51 -0800293 }
Rafael J. Wysocki44e4e662008-07-07 03:32:52 +0200294
295 if (!error)
296 dev_printk(KERN_INFO, &dev->dev,
297 "power state changed by ACPI to D%d\n", state);
298
299 return error;
David Shaohua Lib9131002005-03-19 00:16:18 -0500300}
301
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200302static struct pci_platform_pm_ops acpi_pci_platform_pm = {
303 .is_manageable = acpi_pci_power_manageable,
304 .set_state = acpi_pci_set_power_state,
305 .choose_state = acpi_pci_choose_state,
306};
David Shaohua Lib9131002005-03-19 00:16:18 -0500307
David Shaohua Li84df749f2005-03-18 18:53:36 -0500308/* ACPI bus type */
Muthu Kumar9c273b92006-04-28 00:42:21 -0700309static int acpi_pci_find_device(struct device *dev, acpi_handle *handle)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500310{
311 struct pci_dev * pci_dev;
312 acpi_integer addr;
313
314 pci_dev = to_pci_dev(dev);
315 /* Please ref to ACPI spec for the syntax of _ADR */
316 addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn);
317 *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr);
318 if (!*handle)
319 return -ENODEV;
320 return 0;
321}
322
Muthu Kumar9c273b92006-04-28 00:42:21 -0700323static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500324{
325 int num;
326 unsigned int seg, bus;
327
328 /*
329 * The string should be the same as root bridge's name
330 * Please look at 'pci_scan_bus_parented'
331 */
332 num = sscanf(dev->bus_id, "pci%04x:%02x", &seg, &bus);
333 if (num != 2)
334 return -ENODEV;
335 *handle = acpi_get_pci_rootbridge_handle(seg, bus);
336 if (!*handle)
337 return -ENODEV;
338 return 0;
339}
340
Muthu Kumar9c273b92006-04-28 00:42:21 -0700341static struct acpi_bus_type acpi_pci_bus = {
David Shaohua Li84df749f2005-03-18 18:53:36 -0500342 .bus = &pci_bus_type,
Muthu Kumar9c273b92006-04-28 00:42:21 -0700343 .find_device = acpi_pci_find_device,
344 .find_bridge = acpi_pci_find_root_bridge,
David Shaohua Li84df749f2005-03-18 18:53:36 -0500345};
346
Muthu Kumar9c273b92006-04-28 00:42:21 -0700347static int __init acpi_pci_init(void)
David Shaohua Li84df749f2005-03-18 18:53:36 -0500348{
349 int ret;
350
Shaohua Lif8993af2007-04-25 11:05:12 +0800351 if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) {
352 printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n");
353 pci_no_msi();
354 }
Muthu Kumar9c273b92006-04-28 00:42:21 -0700355 ret = register_acpi_bus_type(&acpi_pci_bus);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500356 if (ret)
357 return 0;
Rafael J. Wysocki961d9122008-07-07 03:32:02 +0200358 pci_set_platform_pm(&acpi_pci_platform_pm);
David Shaohua Li84df749f2005-03-18 18:53:36 -0500359 return 0;
360}
Muthu Kumar9c273b92006-04-28 00:42:21 -0700361arch_initcall(acpi_pci_init);