Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * File: pci-acpi.c |
Len Brown | a406d9e | 2005-03-23 16:16:03 -0500 | [diff] [blame] | 3 | * Purpose: Provide PCI support in ACPI |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 5 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 8 | */ |
| 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 Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 20 | #include "pci.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Shaohua Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 22 | struct acpi_osc_data { |
| 23 | acpi_handle handle; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 24 | u32 support_set; |
| 25 | u32 control_set; |
Kenji Kaneshige | 681f7d9 | 2008-05-15 15:21:16 +0900 | [diff] [blame] | 26 | int is_queried; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 27 | u32 query_result; |
Shaohua Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 28 | struct list_head sibiling; |
| 29 | }; |
| 30 | static LIST_HEAD(acpi_osc_data_list); |
| 31 | |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 32 | struct acpi_osc_args { |
| 33 | u32 capbuf[3]; |
| 34 | u32 query_result; |
| 35 | }; |
| 36 | |
Shaohua Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 37 | static 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 Kaneshige | 90a57da | 2008-05-15 15:23:13 +0900 | [diff] [blame] | 54 | static u8 OSC_UUID[16] = {0x5B, 0x4D, 0xDB, 0x33, 0xF7, 0x1F, 0x1C, 0x40, |
| 55 | 0x96, 0x57, 0x74, 0x41, 0xC0, 0x3D, 0xD7, 0x66}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 57 | static acpi_status acpi_run_osc(acpi_handle handle, |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 58 | struct acpi_osc_args *osc_args) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | { |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 60 | 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 Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 65 | u32 osc_dw0, flags = osc_args->capbuf[OSC_QUERY_TYPE]; |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 66 | |
| 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 Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 79 | in_params[3].buffer.pointer = (u8 *)osc_args->capbuf; |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 80 | |
| 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 Kaneshige | 90a57da | 2008-05-15 15:23:13 +0900 | [diff] [blame] | 91 | osc_dw0 = *((u32 *)out_obj->buffer.pointer); |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 92 | 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 | } |
| 109 | out_success: |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 110 | if (flags & OSC_QUERY_ENABLE) |
| 111 | osc_args->query_result = |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 112 | *((u32 *)(out_obj->buffer.pointer + 8)); |
Kenji Kaneshige | 8a7a4fa | 2008-05-15 15:18:53 +0900 | [diff] [blame] | 113 | status = AE_OK; |
| 114 | |
| 115 | out_kfree: |
| 116 | kfree(output.pointer); |
| 117 | return status; |
| 118 | } |
| 119 | |
| 120 | static acpi_status acpi_query_osc(acpi_handle handle, |
| 121 | u32 level, void *context, void **retval) |
| 122 | { |
| 123 | acpi_status status; |
Kenji Kaneshige | c4e5fad | 2008-05-13 16:48:50 +0900 | [diff] [blame] | 124 | struct acpi_osc_data *osc_data; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 125 | u32 flags = (unsigned long)context, support_set; |
Kenji Kaneshige | c4e5fad | 2008-05-13 16:48:50 +0900 | [diff] [blame] | 126 | acpi_handle tmp; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 127 | struct acpi_osc_args osc_args; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
Kenji Kaneshige | c4e5fad | 2008-05-13 16:48:50 +0900 | [diff] [blame] | 129 | 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 Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 134 | if (!osc_data) { |
| 135 | printk(KERN_ERR "acpi osc data array is full\n"); |
| 136 | return AE_ERROR; |
| 137 | } |
| 138 | |
Shaohua Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 139 | /* do _OSC query for all possible controls */ |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 140 | 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 Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 144 | |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 145 | status = acpi_run_osc(handle, &osc_args); |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 146 | if (ACPI_SUCCESS(status)) { |
| 147 | osc_data->support_set = support_set; |
| 148 | osc_data->query_result = osc_args.query_result; |
Kenji Kaneshige | 681f7d9 | 2008-05-15 15:21:16 +0900 | [diff] [blame] | 149 | osc_data->is_queried = 1; |
Shaohua Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 150 | } |
| 151 | |
Kristen Accardi | 593ee20 | 2006-05-20 15:00:08 -0700 | [diff] [blame] | 152 | return status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | /** |
Andrew Patterson | c277835 | 2008-01-22 17:18:12 -0700 | [diff] [blame] | 156 | * __pci_osc_support_set - register OS support to Firmware |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | * @flags: OS support bits |
Randy Dunlap | 5958f1a | 2008-02-03 15:06:25 -0800 | [diff] [blame] | 158 | * @hid: hardware ID |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | * |
| 160 | * Update OS support fields and doing a _OSC Query to obtain an update |
| 161 | * from Firmware on supported control bits. |
| 162 | **/ |
Andrew Patterson | c277835 | 2008-01-22 17:18:12 -0700 | [diff] [blame] | 163 | acpi_status __pci_osc_support_set(u32 flags, const char *hid) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | { |
Kenji Kaneshige | c155062 | 2008-05-15 15:22:35 +0900 | [diff] [blame] | 165 | if (!(flags & OSC_SUPPORT_MASKS)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | return AE_TYPE; |
Kenji Kaneshige | c155062 | 2008-05-15 15:22:35 +0900 | [diff] [blame] | 167 | |
| 168 | acpi_get_devices(hid, acpi_query_osc, |
| 169 | (void *)(unsigned long)flags, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 | return AE_OK; |
| 171 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 | |
| 173 | /** |
| 174 | * pci_osc_control_set - commit requested control to Firmware |
Randy Dunlap | f366633 | 2005-11-23 15:45:04 -0800 | [diff] [blame] | 175 | * @handle: acpi_handle for the target ACPI object |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | * @flags: driver's requested control bits |
| 177 | * |
| 178 | * Attempt to take control from Firmware on requested control bits. |
| 179 | **/ |
rajesh.shah@intel.com | 427bf53 | 2005-10-31 16:20:11 -0800 | [diff] [blame] | 180 | acpi_status pci_osc_control_set(acpi_handle handle, u32 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | { |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 182 | acpi_status status; |
| 183 | u32 ctrlset, control_set; |
Kenji Kaneshige | 34a6505 | 2008-05-12 22:55:45 +0900 | [diff] [blame] | 184 | acpi_handle tmp; |
| 185 | struct acpi_osc_data *osc_data; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 186 | struct acpi_osc_args osc_args; |
Shaohua Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 187 | |
Kenji Kaneshige | 34a6505 | 2008-05-12 22:55:45 +0900 | [diff] [blame] | 188 | 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 Li | a5d1c87 | 2008-05-12 10:48:10 +0800 | [diff] [blame] | 193 | if (!osc_data) { |
| 194 | printk(KERN_ERR "acpi osc data array is full\n"); |
| 195 | return AE_ERROR; |
| 196 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | |
| 198 | ctrlset = (flags & OSC_CONTROL_MASKS); |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 199 | if (!ctrlset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | return AE_TYPE; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 201 | |
Kenji Kaneshige | 681f7d9 | 2008-05-15 15:21:16 +0900 | [diff] [blame] | 202 | if (osc_data->is_queried && |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 203 | ((osc_data->query_result & ctrlset) != ctrlset)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | return AE_SUPPORT; |
Kenji Kaneshige | 5e0b994 | 2008-05-15 15:20:11 +0900 | [diff] [blame] | 205 | |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return status; |
| 215 | } |
| 216 | EXPORT_SYMBOL(pci_osc_control_set); |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 217 | |
Len Brown | 673d5b4 | 2007-07-28 03:33:16 -0400 | [diff] [blame] | 218 | #ifdef CONFIG_ACPI_SLEEP |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 219 | /* |
| 220 | * _SxD returns the D-state with the highest power |
| 221 | * (lowest D-state number) supported in the S-state "x". |
| 222 | * |
| 223 | * If the devices does not have a _PRW |
| 224 | * (Power Resources for Wake) supporting system wakeup from "x" |
| 225 | * then the OS is free to choose a lower power (higher number |
| 226 | * D-state) than the return value from _SxD. |
| 227 | * |
| 228 | * But if _PRW is enabled at S-state "x", the OS |
| 229 | * must not choose a power lower than _SxD -- |
| 230 | * unless the device has an _SxW method specifying |
| 231 | * the lowest power (highest D-state number) the device |
| 232 | * may enter while still able to wake the system. |
| 233 | * |
| 234 | * ie. depending on global OS policy: |
| 235 | * |
| 236 | * if (_PRW at S-state x) |
| 237 | * choose from highest power _SxD to lowest power _SxW |
| 238 | * else // no _PRW at S-state x |
| 239 | * choose highest power _SxD or any lower power |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 240 | */ |
| 241 | |
Shaohua Li | ab826ca | 2007-07-20 10:03:22 +0800 | [diff] [blame] | 242 | static pci_power_t acpi_pci_choose_state(struct pci_dev *pdev, |
| 243 | pm_message_t state) |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 244 | { |
Shaohua Li | ab826ca | 2007-07-20 10:03:22 +0800 | [diff] [blame] | 245 | int acpi_state; |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 246 | |
Shaohua Li | ab826ca | 2007-07-20 10:03:22 +0800 | [diff] [blame] | 247 | acpi_state = acpi_pm_device_sleep_state(&pdev->dev, |
| 248 | device_may_wakeup(&pdev->dev), NULL); |
| 249 | if (acpi_state < 0) |
| 250 | return PCI_POWER_ERROR; |
| 251 | |
| 252 | switch (acpi_state) { |
| 253 | case ACPI_STATE_D0: |
| 254 | return PCI_D0; |
| 255 | case ACPI_STATE_D1: |
| 256 | return PCI_D1; |
| 257 | case ACPI_STATE_D2: |
| 258 | return PCI_D2; |
| 259 | case ACPI_STATE_D3: |
| 260 | return PCI_D3hot; |
| 261 | } |
| 262 | return PCI_POWER_ERROR; |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 263 | } |
Len Brown | 673d5b4 | 2007-07-28 03:33:16 -0400 | [diff] [blame] | 264 | #endif |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 265 | |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 266 | static int acpi_pci_set_power_state(struct pci_dev *dev, pci_power_t state) |
| 267 | { |
| 268 | acpi_handle handle = DEVICE_ACPI_HANDLE(&dev->dev); |
Shaohua Li | 10b3dca | 2007-07-20 10:03:25 +0800 | [diff] [blame] | 269 | acpi_handle tmp; |
David Brownell | 583c377 | 2008-02-22 21:41:51 -0800 | [diff] [blame] | 270 | static const u8 state_conv[] = { |
| 271 | [PCI_D0] = ACPI_STATE_D0, |
| 272 | [PCI_D1] = ACPI_STATE_D1, |
| 273 | [PCI_D2] = ACPI_STATE_D2, |
| 274 | [PCI_D3hot] = ACPI_STATE_D3, |
| 275 | [PCI_D3cold] = ACPI_STATE_D3 |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 276 | }; |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 277 | |
| 278 | if (!handle) |
| 279 | return -ENODEV; |
Shaohua Li | 10b3dca | 2007-07-20 10:03:25 +0800 | [diff] [blame] | 280 | /* If the ACPI device has _EJ0, ignore the device */ |
| 281 | if (ACPI_SUCCESS(acpi_get_handle(handle, "_EJ0", &tmp))) |
| 282 | return 0; |
David Brownell | 583c377 | 2008-02-22 21:41:51 -0800 | [diff] [blame] | 283 | |
| 284 | switch (state) { |
| 285 | case PCI_D0: |
| 286 | case PCI_D1: |
| 287 | case PCI_D2: |
| 288 | case PCI_D3hot: |
| 289 | case PCI_D3cold: |
| 290 | return acpi_bus_set_power(handle, state_conv[state]); |
| 291 | } |
| 292 | return -EINVAL; |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 296 | /* ACPI bus type */ |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 297 | static int acpi_pci_find_device(struct device *dev, acpi_handle *handle) |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 298 | { |
| 299 | struct pci_dev * pci_dev; |
| 300 | acpi_integer addr; |
| 301 | |
| 302 | pci_dev = to_pci_dev(dev); |
| 303 | /* Please ref to ACPI spec for the syntax of _ADR */ |
| 304 | addr = (PCI_SLOT(pci_dev->devfn) << 16) | PCI_FUNC(pci_dev->devfn); |
| 305 | *handle = acpi_get_child(DEVICE_ACPI_HANDLE(dev->parent), addr); |
| 306 | if (!*handle) |
| 307 | return -ENODEV; |
| 308 | return 0; |
| 309 | } |
| 310 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 311 | static int acpi_pci_find_root_bridge(struct device *dev, acpi_handle *handle) |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 312 | { |
| 313 | int num; |
| 314 | unsigned int seg, bus; |
| 315 | |
| 316 | /* |
| 317 | * The string should be the same as root bridge's name |
| 318 | * Please look at 'pci_scan_bus_parented' |
| 319 | */ |
| 320 | num = sscanf(dev->bus_id, "pci%04x:%02x", &seg, &bus); |
| 321 | if (num != 2) |
| 322 | return -ENODEV; |
| 323 | *handle = acpi_get_pci_rootbridge_handle(seg, bus); |
| 324 | if (!*handle) |
| 325 | return -ENODEV; |
| 326 | return 0; |
| 327 | } |
| 328 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 329 | static struct acpi_bus_type acpi_pci_bus = { |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 330 | .bus = &pci_bus_type, |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 331 | .find_device = acpi_pci_find_device, |
| 332 | .find_bridge = acpi_pci_find_root_bridge, |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 333 | }; |
| 334 | |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 335 | static int __init acpi_pci_init(void) |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 336 | { |
| 337 | int ret; |
| 338 | |
Shaohua Li | f8993af | 2007-04-25 11:05:12 +0800 | [diff] [blame] | 339 | if (acpi_gbl_FADT.boot_flags & BAF_MSI_NOT_SUPPORTED) { |
| 340 | printk(KERN_INFO"ACPI FADT declares the system doesn't support MSI, so disable it\n"); |
| 341 | pci_no_msi(); |
| 342 | } |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 343 | ret = register_acpi_bus_type(&acpi_pci_bus); |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 344 | if (ret) |
| 345 | return 0; |
Len Brown | 673d5b4 | 2007-07-28 03:33:16 -0400 | [diff] [blame] | 346 | #ifdef CONFIG_ACPI_SLEEP |
David Shaohua Li | 0f64474 | 2005-03-19 00:15:48 -0500 | [diff] [blame] | 347 | platform_pci_choose_state = acpi_pci_choose_state; |
Len Brown | 673d5b4 | 2007-07-28 03:33:16 -0400 | [diff] [blame] | 348 | #endif |
David Shaohua Li | b913100 | 2005-03-19 00:16:18 -0500 | [diff] [blame] | 349 | platform_pci_set_power_state = acpi_pci_set_power_state; |
David Shaohua Li | 84df749f | 2005-03-18 18:53:36 -0500 | [diff] [blame] | 350 | return 0; |
| 351 | } |
Muthu Kumar | 9c273b9 | 2006-04-28 00:42:21 -0700 | [diff] [blame] | 352 | arch_initcall(acpi_pci_init); |