ACPI: Clean up inclusions of ACPI header files
[deliverable/linux.git] / drivers / acpi / scan.c
CommitLineData
1da177e4
LT
1/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
5a0e3ad6 7#include <linux/slab.h>
9b6d97b6 8#include <linux/kernel.h>
1da177e4 9#include <linux/acpi.h>
74523c90
AK
10#include <linux/signal.h>
11#include <linux/kthread.h>
222e82ac 12#include <linux/dmi.h>
d1efe3c3 13#include <linux/nls.h>
1da177e4 14
e60cc7a6
BH
15#include "internal.h"
16
1da177e4 17#define _COMPONENT ACPI_BUS_COMPONENT
f52fd66d 18ACPI_MODULE_NAME("scan");
1da177e4 19#define STRUCT_TO_INT(s) (*((int*)&s))
4be44fcd 20extern struct acpi_device *acpi_root;
1da177e4
LT
21
22#define ACPI_BUS_CLASS "system_bus"
29b71a1c 23#define ACPI_BUS_HID "LNXSYBUS"
1da177e4
LT
24#define ACPI_BUS_DEVICE_NAME "System Bus"
25
859ac9a4
BH
26#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
27
683058e3
RW
28/*
29 * If set, devices will be hot-removed even if they cannot be put offline
30 * gracefully (from the kernel's standpoint).
31 */
32bool acpi_force_hot_remove;
33
620e112c 34static const char *dummy_hid = "device";
2b2ae7c7 35
e49bd2dd 36static LIST_HEAD(acpi_bus_id_list);
c511cc19 37static DEFINE_MUTEX(acpi_scan_lock);
ca589f94 38static LIST_HEAD(acpi_scan_handlers_list);
9090589d 39DEFINE_MUTEX(acpi_device_lock);
1da177e4
LT
40LIST_HEAD(acpi_wakeup_device_list);
41
e49bd2dd 42struct acpi_device_bus_id{
bb095854 43 char bus_id[15];
e49bd2dd
ZR
44 unsigned int instance_no;
45 struct list_head node;
1da177e4 46};
29b71a1c 47
3757b948
RW
48void acpi_scan_lock_acquire(void)
49{
50 mutex_lock(&acpi_scan_lock);
51}
52EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
53
54void acpi_scan_lock_release(void)
55{
56 mutex_unlock(&acpi_scan_lock);
57}
58EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
59
ca589f94
RW
60int acpi_scan_add_handler(struct acpi_scan_handler *handler)
61{
62 if (!handler || !handler->attach)
63 return -EINVAL;
64
65 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
66 return 0;
67}
68
3f8055c3
RW
69int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
70 const char *hotplug_profile_name)
71{
72 int error;
73
74 error = acpi_scan_add_handler(handler);
75 if (error)
76 return error;
77
78 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
79 return 0;
80}
81
29b71a1c
TR
82/*
83 * Creates hid/cid(s) string needed for modalias and uevent
84 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
85 * char *modalias: "acpi:IBM0001:ACPI0001"
86*/
b3e572d2
AB
87static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
88 int size)
89{
29b71a1c 90 int len;
5c9fcb5d 91 int count;
7f47fa6c 92 struct acpi_hardware_id *id;
29b71a1c 93
2b2ae7c7
TR
94 if (list_empty(&acpi_dev->pnp.ids))
95 return 0;
96
5c9fcb5d 97 len = snprintf(modalias, size, "acpi:");
29b71a1c
TR
98 size -= len;
99
7f47fa6c
BH
100 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
101 count = snprintf(&modalias[len], size, "%s:", id->id);
5c9fcb5d
ZR
102 if (count < 0 || count >= size)
103 return -EINVAL;
104 len += count;
105 size -= count;
106 }
107
29b71a1c
TR
108 modalias[len] = '\0';
109 return len;
110}
111
112static ssize_t
113acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
114 struct acpi_device *acpi_dev = to_acpi_device(dev);
115 int len;
116
117 /* Device has no HID and no CID or string is >1024 */
118 len = create_modalias(acpi_dev, buf, 1024);
119 if (len <= 0)
120 return 0;
121 buf[len++] = '\n';
122 return len;
123}
124static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
125
7f28ddec
RW
126static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data,
127 void **ret_p)
683058e3
RW
128{
129 struct acpi_device *device = NULL;
130 struct acpi_device_physical_node *pn;
303bfdb1 131 bool second_pass = (bool)data;
683058e3
RW
132 acpi_status status = AE_OK;
133
134 if (acpi_bus_get_device(handle, &device))
135 return AE_OK;
136
7f28ddec
RW
137 if (device->handler && !device->handler->hotplug.enabled) {
138 *ret_p = &device->dev;
139 return AE_SUPPORT;
140 }
141
683058e3
RW
142 mutex_lock(&device->physical_node_lock);
143
144 list_for_each_entry(pn, &device->physical_node_list, node) {
145 int ret;
146
303bfdb1
RW
147 if (second_pass) {
148 /* Skip devices offlined by the first pass. */
149 if (pn->put_online)
150 continue;
151 } else {
152 pn->put_online = false;
153 }
683058e3
RW
154 ret = device_offline(pn->dev);
155 if (acpi_force_hot_remove)
156 continue;
157
303bfdb1
RW
158 if (ret >= 0) {
159 pn->put_online = !ret;
160 } else {
161 *ret_p = pn->dev;
162 if (second_pass) {
163 status = AE_ERROR;
164 break;
165 }
683058e3 166 }
683058e3
RW
167 }
168
169 mutex_unlock(&device->physical_node_lock);
170
171 return status;
172}
173
7f28ddec
RW
174static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data,
175 void **ret_p)
683058e3
RW
176{
177 struct acpi_device *device = NULL;
178 struct acpi_device_physical_node *pn;
179
180 if (acpi_bus_get_device(handle, &device))
181 return AE_OK;
182
183 mutex_lock(&device->physical_node_lock);
184
185 list_for_each_entry(pn, &device->physical_node_list, node)
186 if (pn->put_online) {
187 device_online(pn->dev);
188 pn->put_online = false;
189 }
190
191 mutex_unlock(&device->physical_node_lock);
192
193 return AE_OK;
194}
195
a33ec399 196static int acpi_scan_hot_remove(struct acpi_device *device)
1da177e4 197{
5993c467 198 acpi_handle handle = device->handle;
303bfdb1 199 struct device *errdev;
a33ec399 200 acpi_status status;
882fd12e 201 unsigned long long sta;
f058cdf4 202
3757b948 203 /* If there is no handle, the device node has been unregistered. */
a33ec399 204 if (!handle) {
3757b948
RW
205 dev_dbg(&device->dev, "ACPI handle missing\n");
206 put_device(&device->dev);
a33ec399 207 return -EINVAL;
3757b948
RW
208 }
209
303bfdb1
RW
210 /*
211 * Carry out two passes here and ignore errors in the first pass,
212 * because if the devices in question are memory blocks and
213 * CONFIG_MEMCG is set, one of the blocks may hold data structures
214 * that the other blocks depend on, but it is not known in advance which
215 * block holds them.
216 *
217 * If the first pass is successful, the second one isn't needed, though.
218 */
219 errdev = NULL;
7f28ddec
RW
220 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
221 NULL, acpi_bus_offline, (void *)false,
222 (void **)&errdev);
223 if (status == AE_SUPPORT) {
224 dev_warn(errdev, "Offline disabled.\n");
225 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
226 acpi_bus_online, NULL, NULL, NULL);
227 put_device(&device->dev);
228 return -EPERM;
229 }
230 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev);
303bfdb1
RW
231 if (errdev) {
232 errdev = NULL;
683058e3 233 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
7f28ddec
RW
234 NULL, acpi_bus_offline, (void *)true,
235 (void **)&errdev);
303bfdb1 236 if (!errdev || acpi_force_hot_remove)
7f28ddec
RW
237 acpi_bus_offline(handle, 0, (void *)true,
238 (void **)&errdev);
303bfdb1
RW
239
240 if (errdev && !acpi_force_hot_remove) {
241 dev_warn(errdev, "Offline failed.\n");
7f28ddec 242 acpi_bus_online(handle, 0, NULL, NULL);
303bfdb1 243 acpi_walk_namespace(ACPI_TYPE_ANY, handle,
7f28ddec
RW
244 ACPI_UINT32_MAX, acpi_bus_online,
245 NULL, NULL, NULL);
303bfdb1
RW
246 put_device(&device->dev);
247 return -EBUSY;
248 }
683058e3
RW
249 }
250
26d46867 251 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
0794469d 252 "Hot-removing device %s...\n", dev_name(&device->dev)));
26d46867 253
bfee26db 254 acpi_bus_trim(device);
683058e3 255
3757b948
RW
256 /* Device node has been unregistered. */
257 put_device(&device->dev);
b3c450c3
TK
258 device = NULL;
259
7d2421f8 260 acpi_evaluate_lck(handle, 0);
1da177e4
LT
261 /*
262 * TBD: _EJD support.
263 */
7d2421f8
JL
264 status = acpi_evaluate_ej0(handle);
265 if (status == AE_NOT_FOUND)
266 return -ENODEV;
267 else if (ACPI_FAILURE(status))
268 return -EIO;
1da177e4 269
882fd12e
TK
270 /*
271 * Verify if eject was indeed successful. If not, log an error
272 * message. No need to call _OST since _EJ0 call was made OK.
273 */
274 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
275 if (ACPI_FAILURE(status)) {
276 acpi_handle_warn(handle,
277 "Status check after eject failed (0x%x)\n", status);
278 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
279 acpi_handle_warn(handle,
280 "Eject incomplete - status 0x%llx\n", sta);
281 }
282
a33ec399
RW
283 return 0;
284}
1da177e4 285
7b98118a 286void acpi_bus_device_eject(void *data, u32 ost_src)
a33ec399 287{
7b98118a 288 struct acpi_device *device = data;
a3b1b1ef 289 acpi_handle handle = device->handle;
a33ec399 290 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
f943db40 291 int error;
a33ec399 292
e0ae8fee 293 lock_device_hotplug();
a33ec399
RW
294 mutex_lock(&acpi_scan_lock);
295
a3b1b1ef
RW
296 if (ost_src == ACPI_NOTIFY_EJECT_REQUEST)
297 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST,
298 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
7f28ddec 299
c1beb0bd 300 if (device->handler && device->handler->hotplug.mode == AHM_CONTAINER)
a33ec399 301 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
a33ec399 302
f943db40 303 error = acpi_scan_hot_remove(device);
7f28ddec
RW
304 if (error == -EPERM) {
305 goto err_support;
306 } else if (error) {
f943db40 307 goto err_out;
7f28ddec 308 }
1da177e4 309
3757b948 310 out:
f058cdf4 311 mutex_unlock(&acpi_scan_lock);
e0ae8fee 312 unlock_device_hotplug();
c8d72a5e 313 return;
a33ec399 314
7f28ddec
RW
315 err_support:
316 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
a33ec399 317 err_out:
a3b1b1ef 318 acpi_evaluate_hotplug_ost(handle, ost_src, ost_code, NULL);
a33ec399
RW
319 goto out;
320}
321
7b98118a 322static void acpi_scan_bus_device_check(void *data, u32 ost_source)
a33ec399 323{
7b98118a 324 acpi_handle handle = data;
a33ec399
RW
325 struct acpi_device *device = NULL;
326 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
327 int error;
328
683058e3 329 lock_device_hotplug();
e0ae8fee 330 mutex_lock(&acpi_scan_lock);
a33ec399 331
8832f7e4
RW
332 if (ost_source != ACPI_NOTIFY_BUS_CHECK) {
333 acpi_bus_get_device(handle, &device);
334 if (device) {
335 dev_warn(&device->dev, "Attempt to re-insert\n");
336 goto out;
337 }
a33ec399 338 }
a33ec399
RW
339 error = acpi_bus_scan(handle);
340 if (error) {
341 acpi_handle_warn(handle, "Namespace scan failure\n");
342 goto out;
343 }
344 error = acpi_bus_get_device(handle, &device);
345 if (error) {
346 acpi_handle_warn(handle, "Missing device node object\n");
347 goto out;
348 }
349 ost_code = ACPI_OST_SC_SUCCESS;
350 if (device->handler && device->handler->hotplug.mode == AHM_CONTAINER)
351 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
352
353 out:
354 acpi_evaluate_hotplug_ost(handle, ost_source, ost_code, NULL);
355 mutex_unlock(&acpi_scan_lock);
e0ae8fee 356 unlock_device_hotplug();
a33ec399
RW
357}
358
2cbb14fb
TK
359static void acpi_hotplug_unsupported(acpi_handle handle, u32 type)
360{
361 u32 ost_status;
362
363 switch (type) {
364 case ACPI_NOTIFY_BUS_CHECK:
365 acpi_handle_debug(handle,
366 "ACPI_NOTIFY_BUS_CHECK event: unsupported\n");
367 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
368 break;
369 case ACPI_NOTIFY_DEVICE_CHECK:
370 acpi_handle_debug(handle,
371 "ACPI_NOTIFY_DEVICE_CHECK event: unsupported\n");
372 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
373 break;
374 case ACPI_NOTIFY_EJECT_REQUEST:
375 acpi_handle_debug(handle,
376 "ACPI_NOTIFY_EJECT_REQUEST event: unsupported\n");
377 ost_status = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
378 break;
379 default:
380 /* non-hotplug event; possibly handled by other handler */
381 return;
382 }
383
384 acpi_evaluate_hotplug_ost(handle, type, ost_status, NULL);
385}
386
387static void acpi_hotplug_notify_cb(acpi_handle handle, u32 type, void *data)
a33ec399 388{
2cbb14fb 389 struct acpi_scan_handler *handler = data;
a3b1b1ef 390 struct acpi_device *adev;
a33ec399
RW
391 acpi_status status;
392
2cbb14fb
TK
393 if (!handler->hotplug.enabled)
394 return acpi_hotplug_unsupported(handle, type);
395
a33ec399
RW
396 switch (type) {
397 case ACPI_NOTIFY_BUS_CHECK:
398 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
a33ec399
RW
399 break;
400 case ACPI_NOTIFY_DEVICE_CHECK:
401 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
a33ec399
RW
402 break;
403 case ACPI_NOTIFY_EJECT_REQUEST:
404 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
5beaee4f 405 if (acpi_bus_get_device(handle, &adev))
a3b1b1ef
RW
406 goto err_out;
407
408 get_device(&adev->dev);
7b98118a 409 status = acpi_hotplug_execute(acpi_bus_device_eject, adev, type);
a3b1b1ef
RW
410 if (ACPI_SUCCESS(status))
411 return;
412
413 put_device(&adev->dev);
414 goto err_out;
a33ec399
RW
415 default:
416 /* non-hotplug event; possibly handled by other handler */
417 return;
418 }
7b98118a 419 status = acpi_hotplug_execute(acpi_scan_bus_device_check, handle, type);
a3b1b1ef
RW
420 if (ACPI_SUCCESS(status))
421 return;
a33ec399 422
a3b1b1ef
RW
423 err_out:
424 acpi_evaluate_hotplug_ost(handle, type,
425 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
1da177e4
LT
426}
427
836aedb1
RW
428static ssize_t real_power_state_show(struct device *dev,
429 struct device_attribute *attr, char *buf)
430{
431 struct acpi_device *adev = to_acpi_device(dev);
432 int state;
433 int ret;
434
435 ret = acpi_device_get_power(adev, &state);
436 if (ret)
437 return ret;
438
439 return sprintf(buf, "%s\n", acpi_power_state_string(state));
440}
441
442static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
443
444static ssize_t power_state_show(struct device *dev,
445 struct device_attribute *attr, char *buf)
446{
447 struct acpi_device *adev = to_acpi_device(dev);
448
449 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
450}
451
452static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
453
1da177e4 454static ssize_t
f883d9db
PM
455acpi_eject_store(struct device *d, struct device_attribute *attr,
456 const char *buf, size_t count)
1da177e4 457{
f883d9db 458 struct acpi_device *acpi_device = to_acpi_device(d);
a33ec399
RW
459 acpi_object_type not_used;
460 acpi_status status;
1da177e4 461
a33ec399 462 if (!count || buf[0] != '1')
1da177e4 463 return -EINVAL;
1da177e4 464
a33ec399
RW
465 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
466 && !acpi_device->driver)
467 return -ENODEV;
468
469 status = acpi_get_type(acpi_device->handle, &not_used);
470 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
471 return -ENODEV;
472
f943db40 473 acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
a33ec399 474 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
a33ec399 475 get_device(&acpi_device->dev);
7b98118a
RW
476 status = acpi_hotplug_execute(acpi_bus_device_eject, acpi_device,
477 ACPI_OST_EC_OSPM_EJECT);
f943db40
RW
478 if (ACPI_SUCCESS(status))
479 return count;
a33ec399 480
f943db40 481 put_device(&acpi_device->dev);
f943db40 482 acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
a33ec399 483 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
5add99cf 484 return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
1da177e4
LT
485}
486
f883d9db 487static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
1da177e4 488
e49bd2dd
ZR
489static ssize_t
490acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
491 struct acpi_device *acpi_dev = to_acpi_device(dev);
1da177e4 492
ea8d82fd 493 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
1da177e4 494}
e49bd2dd 495static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
1da177e4 496
923d4a45
LZ
497static ssize_t acpi_device_uid_show(struct device *dev,
498 struct device_attribute *attr, char *buf)
499{
500 struct acpi_device *acpi_dev = to_acpi_device(dev);
501
502 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
503}
504static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
505
506static ssize_t acpi_device_adr_show(struct device *dev,
507 struct device_attribute *attr, char *buf)
508{
509 struct acpi_device *acpi_dev = to_acpi_device(dev);
510
511 return sprintf(buf, "0x%08x\n",
512 (unsigned int)(acpi_dev->pnp.bus_address));
513}
514static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
515
e49bd2dd
ZR
516static ssize_t
517acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
518 struct acpi_device *acpi_dev = to_acpi_device(dev);
519 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
520 int result;
1da177e4 521
e49bd2dd 522 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
0c526d96 523 if (result)
e49bd2dd 524 goto end;
1da177e4 525
e49bd2dd
ZR
526 result = sprintf(buf, "%s\n", (char*)path.pointer);
527 kfree(path.pointer);
0c526d96 528end:
e49bd2dd 529 return result;
1da177e4 530}
e49bd2dd 531static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
1da177e4 532
d1efe3c3
LO
533/* sysfs file that shows description text from the ACPI _STR method */
534static ssize_t description_show(struct device *dev,
535 struct device_attribute *attr,
536 char *buf) {
537 struct acpi_device *acpi_dev = to_acpi_device(dev);
538 int result;
539
540 if (acpi_dev->pnp.str_obj == NULL)
541 return 0;
542
543 /*
544 * The _STR object contains a Unicode identifier for a device.
545 * We need to convert to utf-8 so it can be displayed.
546 */
547 result = utf16s_to_utf8s(
548 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
549 acpi_dev->pnp.str_obj->buffer.length,
550 UTF16_LITTLE_ENDIAN, buf,
551 PAGE_SIZE);
552
553 buf[result++] = '\n';
554
555 return result;
556}
557static DEVICE_ATTR(description, 0444, description_show, NULL);
558
bb74ac23
YI
559static ssize_t
560acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
561 char *buf) {
562 struct acpi_device *acpi_dev = to_acpi_device(dev);
563
564 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
565}
566static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
567
e49bd2dd 568static int acpi_device_setup_files(struct acpi_device *dev)
1da177e4 569{
d1efe3c3 570 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
f883d9db 571 acpi_status status;
bb74ac23 572 unsigned long long sun;
e49bd2dd 573 int result = 0;
1da177e4
LT
574
575 /*
e49bd2dd 576 * Devices gotten from FADT don't have a "path" attribute
1da177e4 577 */
0c526d96 578 if (dev->handle) {
e49bd2dd 579 result = device_create_file(&dev->dev, &dev_attr_path);
0c526d96 580 if (result)
e49bd2dd 581 goto end;
1da177e4
LT
582 }
583
2b2ae7c7
TR
584 if (!list_empty(&dev->pnp.ids)) {
585 result = device_create_file(&dev->dev, &dev_attr_hid);
586 if (result)
587 goto end;
1da177e4 588
2b2ae7c7
TR
589 result = device_create_file(&dev->dev, &dev_attr_modalias);
590 if (result)
591 goto end;
592 }
29b71a1c 593
d1efe3c3
LO
594 /*
595 * If device has _STR, 'description' file is created
596 */
952c63e9 597 if (acpi_has_method(dev->handle, "_STR")) {
d1efe3c3
LO
598 status = acpi_evaluate_object(dev->handle, "_STR",
599 NULL, &buffer);
600 if (ACPI_FAILURE(status))
601 buffer.pointer = NULL;
602 dev->pnp.str_obj = buffer.pointer;
603 result = device_create_file(&dev->dev, &dev_attr_description);
604 if (result)
605 goto end;
606 }
607
d4e1a692 608 if (dev->pnp.type.bus_address)
923d4a45
LZ
609 result = device_create_file(&dev->dev, &dev_attr_adr);
610 if (dev->pnp.unique_id)
611 result = device_create_file(&dev->dev, &dev_attr_uid);
612
bb74ac23
YI
613 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
614 if (ACPI_SUCCESS(status)) {
615 dev->pnp.sun = (unsigned long)sun;
616 result = device_create_file(&dev->dev, &dev_attr_sun);
617 if (result)
618 goto end;
619 } else {
620 dev->pnp.sun = (unsigned long)-1;
621 }
622
e49bd2dd
ZR
623 /*
624 * If device has _EJ0, 'eject' file is created that is used to trigger
625 * hot-removal function from userland.
626 */
952c63e9 627 if (acpi_has_method(dev->handle, "_EJ0")) {
e49bd2dd 628 result = device_create_file(&dev->dev, &dev_attr_eject);
836aedb1
RW
629 if (result)
630 return result;
631 }
632
633 if (dev->flags.power_manageable) {
634 result = device_create_file(&dev->dev, &dev_attr_power_state);
635 if (result)
636 return result;
637
638 if (dev->power.flags.power_resources)
639 result = device_create_file(&dev->dev,
640 &dev_attr_real_power_state);
641 }
642
0c526d96 643end:
e49bd2dd 644 return result;
1da177e4
LT
645}
646
f883d9db 647static void acpi_device_remove_files(struct acpi_device *dev)
1da177e4 648{
836aedb1
RW
649 if (dev->flags.power_manageable) {
650 device_remove_file(&dev->dev, &dev_attr_power_state);
651 if (dev->power.flags.power_resources)
652 device_remove_file(&dev->dev,
653 &dev_attr_real_power_state);
654 }
655
f883d9db 656 /*
d1efe3c3
LO
657 * If device has _STR, remove 'description' file
658 */
952c63e9 659 if (acpi_has_method(dev->handle, "_STR")) {
d1efe3c3
LO
660 kfree(dev->pnp.str_obj);
661 device_remove_file(&dev->dev, &dev_attr_description);
662 }
663 /*
664 * If device has _EJ0, remove 'eject' file.
f883d9db 665 */
952c63e9 666 if (acpi_has_method(dev->handle, "_EJ0"))
f883d9db 667 device_remove_file(&dev->dev, &dev_attr_eject);
1da177e4 668
952c63e9 669 if (acpi_has_method(dev->handle, "_SUN"))
bb74ac23
YI
670 device_remove_file(&dev->dev, &dev_attr_sun);
671
923d4a45
LZ
672 if (dev->pnp.unique_id)
673 device_remove_file(&dev->dev, &dev_attr_uid);
d4e1a692 674 if (dev->pnp.type.bus_address)
923d4a45 675 device_remove_file(&dev->dev, &dev_attr_adr);
1131b938
BH
676 device_remove_file(&dev->dev, &dev_attr_modalias);
677 device_remove_file(&dev->dev, &dev_attr_hid);
0c526d96 678 if (dev->handle)
e49bd2dd 679 device_remove_file(&dev->dev, &dev_attr_path);
1da177e4 680}
1da177e4 681/* --------------------------------------------------------------------------
9e89dde2 682 ACPI Bus operations
1da177e4 683 -------------------------------------------------------------------------- */
29b71a1c 684
cf761af9
MW
685static const struct acpi_device_id *__acpi_match_device(
686 struct acpi_device *device, const struct acpi_device_id *ids)
29b71a1c
TR
687{
688 const struct acpi_device_id *id;
7f47fa6c 689 struct acpi_hardware_id *hwid;
29b71a1c 690
39a0ad87
ZY
691 /*
692 * If the device is not present, it is unnecessary to load device
693 * driver for it.
694 */
695 if (!device->status.present)
cf761af9 696 return NULL;
39a0ad87 697
7f47fa6c
BH
698 for (id = ids; id->id[0]; id++)
699 list_for_each_entry(hwid, &device->pnp.ids, list)
700 if (!strcmp((char *) id->id, hwid->id))
cf761af9
MW
701 return id;
702
703 return NULL;
704}
705
706/**
707 * acpi_match_device - Match a struct device against a given list of ACPI IDs
708 * @ids: Array of struct acpi_device_id object to match against.
709 * @dev: The device structure to match.
710 *
711 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
712 * object for that handle and use that object to match against a given list of
713 * device IDs.
714 *
715 * Return a pointer to the first matching ID on success or %NULL on failure.
716 */
717const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
718 const struct device *dev)
719{
720 struct acpi_device *adev;
0613e1f7 721 acpi_handle handle = ACPI_HANDLE(dev);
cf761af9 722
0613e1f7 723 if (!ids || !handle || acpi_bus_get_device(handle, &adev))
cf761af9
MW
724 return NULL;
725
726 return __acpi_match_device(adev, ids);
727}
728EXPORT_SYMBOL_GPL(acpi_match_device);
29b71a1c 729
cf761af9
MW
730int acpi_match_device_ids(struct acpi_device *device,
731 const struct acpi_device_id *ids)
732{
733 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
29b71a1c
TR
734}
735EXPORT_SYMBOL(acpi_match_device_ids);
736
0b224527
RW
737static void acpi_free_power_resources_lists(struct acpi_device *device)
738{
739 int i;
740
993cbe59
RW
741 if (device->wakeup.flags.valid)
742 acpi_power_resources_list_free(&device->wakeup.resources);
743
0b224527
RW
744 if (!device->flags.power_manageable)
745 return;
746
747 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
748 struct acpi_device_power_state *ps = &device->power.states[i];
749 acpi_power_resources_list_free(&ps->resources);
750 }
7f47fa6c
BH
751}
752
1890a97a 753static void acpi_device_release(struct device *dev)
1da177e4 754{
1890a97a 755 struct acpi_device *acpi_dev = to_acpi_device(dev);
1da177e4 756
c0af4175 757 acpi_free_pnp_ids(&acpi_dev->pnp);
0b224527 758 acpi_free_power_resources_lists(acpi_dev);
1890a97a 759 kfree(acpi_dev);
1da177e4
LT
760}
761
5d9464a4 762static int acpi_bus_match(struct device *dev, struct device_driver *drv)
9e89dde2 763{
5d9464a4
PM
764 struct acpi_device *acpi_dev = to_acpi_device(dev);
765 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
1da177e4 766
209d3b17 767 return acpi_dev->flags.match_driver
805d410f 768 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
5d9464a4 769}
1da177e4 770
7eff2e7a 771static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4 772{
5d9464a4 773 struct acpi_device *acpi_dev = to_acpi_device(dev);
7eff2e7a 774 int len;
5d9464a4 775
2b2ae7c7
TR
776 if (list_empty(&acpi_dev->pnp.ids))
777 return 0;
778
7eff2e7a
KS
779 if (add_uevent_var(env, "MODALIAS="))
780 return -ENOMEM;
781 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
782 sizeof(env->buf) - env->buflen);
783 if (len >= (sizeof(env->buf) - env->buflen))
784 return -ENOMEM;
785 env->buflen += len;
9e89dde2 786 return 0;
1da177e4
LT
787}
788
46ec8598
BH
789static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
790{
791 struct acpi_device *device = data;
792
793 device->driver->ops.notify(device, event);
794}
795
796static acpi_status acpi_device_notify_fixed(void *data)
797{
798 struct acpi_device *device = data;
799
53de5356
BH
800 /* Fixed hardware devices have no handles */
801 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
46ec8598
BH
802 return AE_OK;
803}
804
805static int acpi_device_install_notify_handler(struct acpi_device *device)
806{
807 acpi_status status;
46ec8598 808
ccba2a36 809 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
46ec8598
BH
810 status =
811 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
812 acpi_device_notify_fixed,
813 device);
ccba2a36 814 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
46ec8598
BH
815 status =
816 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
817 acpi_device_notify_fixed,
818 device);
819 else
820 status = acpi_install_notify_handler(device->handle,
821 ACPI_DEVICE_NOTIFY,
822 acpi_device_notify,
823 device);
824
825 if (ACPI_FAILURE(status))
826 return -EINVAL;
827 return 0;
828}
829
830static void acpi_device_remove_notify_handler(struct acpi_device *device)
831{
ccba2a36 832 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
46ec8598
BH
833 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
834 acpi_device_notify_fixed);
ccba2a36 835 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
46ec8598
BH
836 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
837 acpi_device_notify_fixed);
838 else
839 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
840 acpi_device_notify);
841}
842
d9e455f5 843static int acpi_device_probe(struct device *dev)
1da177e4 844{
5d9464a4
PM
845 struct acpi_device *acpi_dev = to_acpi_device(dev);
846 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
847 int ret;
848
24071f47
RW
849 if (acpi_dev->handler)
850 return -EINVAL;
851
d9e455f5
RW
852 if (!acpi_drv->ops.add)
853 return -ENOSYS;
46ec8598 854
d9e455f5
RW
855 ret = acpi_drv->ops.add(acpi_dev);
856 if (ret)
857 return ret;
46ec8598 858
d9e455f5
RW
859 acpi_dev->driver = acpi_drv;
860 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
861 "Driver [%s] successfully bound to device [%s]\n",
862 acpi_drv->name, acpi_dev->pnp.bus_id));
863
864 if (acpi_drv->ops.notify) {
865 ret = acpi_device_install_notify_handler(acpi_dev);
866 if (ret) {
867 if (acpi_drv->ops.remove)
868 acpi_drv->ops.remove(acpi_dev);
869
870 acpi_dev->driver = NULL;
871 acpi_dev->driver_data = NULL;
872 return ret;
873 }
5d9464a4 874 }
d9e455f5
RW
875
876 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
877 acpi_drv->name, acpi_dev->pnp.bus_id));
878 get_device(dev);
879 return 0;
5d9464a4 880}
1da177e4 881
5d9464a4
PM
882static int acpi_device_remove(struct device * dev)
883{
884 struct acpi_device *acpi_dev = to_acpi_device(dev);
885 struct acpi_driver *acpi_drv = acpi_dev->driver;
886
887 if (acpi_drv) {
46ec8598
BH
888 if (acpi_drv->ops.notify)
889 acpi_device_remove_notify_handler(acpi_dev);
5d9464a4 890 if (acpi_drv->ops.remove)
51fac838 891 acpi_drv->ops.remove(acpi_dev);
1da177e4 892 }
5d9464a4 893 acpi_dev->driver = NULL;
db89b4f0 894 acpi_dev->driver_data = NULL;
1da177e4 895
5d9464a4 896 put_device(dev);
9e89dde2
ZR
897 return 0;
898}
1da177e4 899
55955aad 900struct bus_type acpi_bus_type = {
9e89dde2 901 .name = "acpi",
5d9464a4
PM
902 .match = acpi_bus_match,
903 .probe = acpi_device_probe,
904 .remove = acpi_device_remove,
905 .uevent = acpi_device_uevent,
9e89dde2
ZR
906};
907
caf5c03f
RW
908static void acpi_bus_data_handler(acpi_handle handle, void *context)
909{
910 /* Intentionally empty. */
911}
912
913int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
914{
915 acpi_status status;
916
917 if (!device)
918 return -EINVAL;
919
920 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
921 if (ACPI_FAILURE(status) || !*device) {
922 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
923 handle));
924 return -ENODEV;
925 }
926 return 0;
927}
6585925b 928EXPORT_SYMBOL(acpi_bus_get_device);
caf5c03f 929
cf860be6
RW
930int acpi_device_add(struct acpi_device *device,
931 void (*release)(struct device *))
1da177e4 932{
4be44fcd 933 int result;
e49bd2dd
ZR
934 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
935 int found = 0;
66b7ed40 936
d43e167d
RW
937 if (device->handle) {
938 acpi_status status;
939
940 status = acpi_attach_data(device->handle, acpi_bus_data_handler,
941 device);
942 if (ACPI_FAILURE(status)) {
943 acpi_handle_err(device->handle,
944 "Unable to attach device data\n");
945 return -ENODEV;
946 }
947 }
948
9e89dde2
ZR
949 /*
950 * Linkage
951 * -------
952 * Link this device to its parent and siblings.
953 */
954 INIT_LIST_HEAD(&device->children);
955 INIT_LIST_HEAD(&device->node);
9e89dde2 956 INIT_LIST_HEAD(&device->wakeup_list);
1033f904
LT
957 INIT_LIST_HEAD(&device->physical_node_list);
958 mutex_init(&device->physical_node_lock);
1da177e4 959
e49bd2dd
ZR
960 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
961 if (!new_bus_id) {
d43e167d
RW
962 pr_err(PREFIX "Memory allocation error\n");
963 result = -ENOMEM;
964 goto err_detach;
1da177e4 965 }
e49bd2dd 966
9090589d 967 mutex_lock(&acpi_device_lock);
e49bd2dd
ZR
968 /*
969 * Find suitable bus_id and instance number in acpi_bus_id_list
970 * If failed, create one and link it into acpi_bus_id_list
971 */
972 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
1131b938
BH
973 if (!strcmp(acpi_device_bus_id->bus_id,
974 acpi_device_hid(device))) {
975 acpi_device_bus_id->instance_no++;
e49bd2dd
ZR
976 found = 1;
977 kfree(new_bus_id);
978 break;
979 }
1da177e4 980 }
0c526d96 981 if (!found) {
e49bd2dd 982 acpi_device_bus_id = new_bus_id;
1131b938 983 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
e49bd2dd
ZR
984 acpi_device_bus_id->instance_no = 0;
985 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
1da177e4 986 }
0794469d 987 dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
1da177e4 988
33b57150 989 if (device->parent)
9e89dde2 990 list_add_tail(&device->node, &device->parent->children);
33b57150 991
9e89dde2
ZR
992 if (device->wakeup.flags.valid)
993 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
9090589d 994 mutex_unlock(&acpi_device_lock);
1da177e4 995
1890a97a 996 if (device->parent)
66b7ed40 997 device->dev.parent = &device->parent->dev;
1890a97a 998 device->dev.bus = &acpi_bus_type;
82c7d5ef 999 device->dev.release = release;
cf860be6 1000 result = device_add(&device->dev);
0c526d96 1001 if (result) {
8b12b922 1002 dev_err(&device->dev, "Error registering device\n");
d43e167d 1003 goto err;
1da177e4 1004 }
1da177e4 1005
e49bd2dd 1006 result = acpi_device_setup_files(device);
0c526d96 1007 if (result)
0794469d
KS
1008 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
1009 dev_name(&device->dev));
1da177e4 1010
1da177e4 1011 return 0;
d43e167d
RW
1012
1013 err:
9090589d 1014 mutex_lock(&acpi_device_lock);
33b57150 1015 if (device->parent)
e49bd2dd 1016 list_del(&device->node);
e49bd2dd 1017 list_del(&device->wakeup_list);
9090589d 1018 mutex_unlock(&acpi_device_lock);
d43e167d
RW
1019
1020 err_detach:
1021 acpi_detach_data(device->handle, acpi_bus_data_handler);
e49bd2dd 1022 return result;
1da177e4
LT
1023}
1024
b17b537a 1025static void acpi_device_unregister(struct acpi_device *device)
9e89dde2 1026{
9090589d 1027 mutex_lock(&acpi_device_lock);
33b57150 1028 if (device->parent)
9e89dde2 1029 list_del(&device->node);
1da177e4 1030
9e89dde2 1031 list_del(&device->wakeup_list);
9090589d 1032 mutex_unlock(&acpi_device_lock);
1da177e4 1033
9e89dde2 1034 acpi_detach_data(device->handle, acpi_bus_data_handler);
1890a97a 1035
bc9b6407 1036 acpi_power_add_remove_device(device, false);
f883d9db 1037 acpi_device_remove_files(device);
b1c0f99b
RW
1038 if (device->remove)
1039 device->remove(device);
1040
cf860be6 1041 device_del(&device->dev);
bc9b6407 1042 /*
0aa120a0
RW
1043 * Transition the device to D3cold to drop the reference counts of all
1044 * power resources the device depends on and turn off the ones that have
1045 * no more references.
bc9b6407 1046 */
0aa120a0 1047 acpi_device_set_power(device, ACPI_STATE_D3_COLD);
3757b948 1048 device->handle = NULL;
cf860be6 1049 put_device(&device->dev);
1da177e4
LT
1050}
1051
9e89dde2
ZR
1052/* --------------------------------------------------------------------------
1053 Driver Management
1054 -------------------------------------------------------------------------- */
9e89dde2
ZR
1055/**
1056 * acpi_bus_register_driver - register a driver with the ACPI bus
1057 * @driver: driver being registered
1058 *
1059 * Registers a driver with the ACPI bus. Searches the namespace for all
1060 * devices that match the driver's criteria and binds. Returns zero for
1061 * success or a negative error status for failure.
1062 */
1063int acpi_bus_register_driver(struct acpi_driver *driver)
1da177e4 1064{
1890a97a 1065 int ret;
1da177e4 1066
9e89dde2
ZR
1067 if (acpi_disabled)
1068 return -ENODEV;
1890a97a
PM
1069 driver->drv.name = driver->name;
1070 driver->drv.bus = &acpi_bus_type;
1071 driver->drv.owner = driver->owner;
1da177e4 1072
1890a97a
PM
1073 ret = driver_register(&driver->drv);
1074 return ret;
9e89dde2 1075}
1da177e4 1076
9e89dde2
ZR
1077EXPORT_SYMBOL(acpi_bus_register_driver);
1078
1079/**
b27b14ce 1080 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
9e89dde2
ZR
1081 * @driver: driver to unregister
1082 *
1083 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1084 * devices that match the driver's criteria and unbinds.
1085 */
1086void acpi_bus_unregister_driver(struct acpi_driver *driver)
1087{
1890a97a 1088 driver_unregister(&driver->drv);
9e89dde2
ZR
1089}
1090
1091EXPORT_SYMBOL(acpi_bus_unregister_driver);
1092
9e89dde2
ZR
1093/* --------------------------------------------------------------------------
1094 Device Enumeration
1095 -------------------------------------------------------------------------- */
5c478f49
BH
1096static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1097{
456de893 1098 struct acpi_device *device = NULL;
5c478f49 1099 acpi_status status;
5c478f49
BH
1100
1101 /*
1102 * Fixed hardware devices do not appear in the namespace and do not
1103 * have handles, but we fabricate acpi_devices for them, so we have
1104 * to deal with them specially.
1105 */
456de893 1106 if (!handle)
5c478f49
BH
1107 return acpi_root;
1108
1109 do {
1110 status = acpi_get_parent(handle, &handle);
5c478f49 1111 if (ACPI_FAILURE(status))
456de893
RW
1112 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1113 } while (acpi_bus_get_device(handle, &device));
1114 return device;
5c478f49
BH
1115}
1116
9e89dde2
ZR
1117acpi_status
1118acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1119{
1120 acpi_status status;
1121 acpi_handle tmp;
1122 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1123 union acpi_object *obj;
1124
1125 status = acpi_get_handle(handle, "_EJD", &tmp);
1126 if (ACPI_FAILURE(status))
1127 return status;
1128
1129 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1130 if (ACPI_SUCCESS(status)) {
1131 obj = buffer.pointer;
3b5fee59
HM
1132 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1133 ejd);
9e89dde2
ZR
1134 kfree(buffer.pointer);
1135 }
1136 return status;
1137}
1138EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1139
e88c9c60
RW
1140static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1141 struct acpi_device_wakeup *wakeup)
9e89dde2 1142{
b581a7f9
RW
1143 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1144 union acpi_object *package = NULL;
9e89dde2 1145 union acpi_object *element = NULL;
b581a7f9 1146 acpi_status status;
e88c9c60 1147 int err = -ENODATA;
9e89dde2 1148
b581a7f9 1149 if (!wakeup)
e88c9c60 1150 return -EINVAL;
9e89dde2 1151
993cbe59 1152 INIT_LIST_HEAD(&wakeup->resources);
9e89dde2 1153
b581a7f9
RW
1154 /* _PRW */
1155 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1156 if (ACPI_FAILURE(status)) {
1157 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
e88c9c60 1158 return err;
b581a7f9
RW
1159 }
1160
1161 package = (union acpi_object *)buffer.pointer;
1162
e88c9c60 1163 if (!package || package->package.count < 2)
b581a7f9 1164 goto out;
b581a7f9 1165
9e89dde2 1166 element = &(package->package.elements[0]);
e88c9c60 1167 if (!element)
b581a7f9 1168 goto out;
e88c9c60 1169
9e89dde2
ZR
1170 if (element->type == ACPI_TYPE_PACKAGE) {
1171 if ((element->package.count < 2) ||
1172 (element->package.elements[0].type !=
1173 ACPI_TYPE_LOCAL_REFERENCE)
e88c9c60 1174 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
b581a7f9 1175 goto out;
e88c9c60 1176
b581a7f9 1177 wakeup->gpe_device =
9e89dde2 1178 element->package.elements[0].reference.handle;
b581a7f9 1179 wakeup->gpe_number =
9e89dde2
ZR
1180 (u32) element->package.elements[1].integer.value;
1181 } else if (element->type == ACPI_TYPE_INTEGER) {
b581a7f9
RW
1182 wakeup->gpe_device = NULL;
1183 wakeup->gpe_number = element->integer.value;
1184 } else {
b581a7f9
RW
1185 goto out;
1186 }
9e89dde2
ZR
1187
1188 element = &(package->package.elements[1]);
e88c9c60 1189 if (element->type != ACPI_TYPE_INTEGER)
b581a7f9 1190 goto out;
e88c9c60 1191
b581a7f9 1192 wakeup->sleep_state = element->integer.value;
9e89dde2 1193
e88c9c60
RW
1194 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1195 if (err)
b581a7f9 1196 goto out;
9e89dde2 1197
0596a52b
RW
1198 if (!list_empty(&wakeup->resources)) {
1199 int sleep_state;
9e89dde2 1200
b5d667eb
RW
1201 err = acpi_power_wakeup_list_init(&wakeup->resources,
1202 &sleep_state);
1203 if (err) {
1204 acpi_handle_warn(handle, "Retrieving current states "
1205 "of wakeup power resources failed\n");
1206 acpi_power_resources_list_free(&wakeup->resources);
1207 goto out;
1208 }
0596a52b
RW
1209 if (sleep_state < wakeup->sleep_state) {
1210 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1211 "(S%d) by S%d from power resources\n",
1212 (int)wakeup->sleep_state, sleep_state);
1213 wakeup->sleep_state = sleep_state;
1214 }
1215 }
bba63a29 1216 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
9874647b 1217
b581a7f9
RW
1218 out:
1219 kfree(buffer.pointer);
e88c9c60 1220 return err;
1da177e4
LT
1221}
1222
f517709d 1223static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
1da177e4 1224{
29b71a1c 1225 struct acpi_device_id button_device_ids[] = {
29b71a1c 1226 {"PNP0C0C", 0},
b7e38304 1227 {"PNP0C0D", 0},
29b71a1c
TR
1228 {"PNP0C0E", 0},
1229 {"", 0},
1230 };
f517709d
RW
1231 acpi_status status;
1232 acpi_event_status event_status;
1233
b67ea761 1234 device->wakeup.flags.notifier_present = 0;
f517709d
RW
1235
1236 /* Power button, Lid switch always enable wakeup */
1237 if (!acpi_match_device_ids(device, button_device_ids)) {
1238 device->wakeup.flags.run_wake = 1;
b7e38304
ZR
1239 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1240 /* Do not use Lid/sleep button for S5 wakeup */
1241 if (device->wakeup.sleep_state == ACPI_STATE_S5)
1242 device->wakeup.sleep_state = ACPI_STATE_S4;
1243 }
f2b56bc8 1244 device_set_wakeup_capable(&device->dev, true);
f517709d
RW
1245 return;
1246 }
1247
e8e18c95
RW
1248 status = acpi_get_gpe_status(device->wakeup.gpe_device,
1249 device->wakeup.gpe_number,
1250 &event_status);
f517709d
RW
1251 if (status == AE_OK)
1252 device->wakeup.flags.run_wake =
1253 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1254}
1255
d57d09a4 1256static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
f517709d 1257{
e88c9c60 1258 int err;
29b71a1c 1259
d57d09a4 1260 /* Presence of _PRW indicates wake capable */
952c63e9 1261 if (!acpi_has_method(device->handle, "_PRW"))
d57d09a4
RW
1262 return;
1263
e88c9c60
RW
1264 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1265 &device->wakeup);
1266 if (err) {
1267 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
d57d09a4 1268 return;
9e89dde2 1269 }
1da177e4 1270
9e89dde2 1271 device->wakeup.flags.valid = 1;
9b83ccd2 1272 device->wakeup.prepare_count = 0;
f517709d 1273 acpi_bus_set_run_wake_flags(device);
729b2bdb
ZY
1274 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1275 * system for the ACPI device with the _PRW object.
1276 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1277 * So it is necessary to call _DSW object first. Only when it is not
1278 * present will the _PSW object used.
1279 */
e88c9c60
RW
1280 err = acpi_device_sleep_wake(device, 0, 0, 0);
1281 if (err)
77e76609
RW
1282 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1283 "error in _DSW or _PSW evaluation\n"));
1da177e4 1284}
1da177e4 1285
f33ce568
RW
1286static void acpi_bus_init_power_state(struct acpi_device *device, int state)
1287{
1288 struct acpi_device_power_state *ps = &device->power.states[state];
ef85bdbe
RW
1289 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1290 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
f33ce568 1291 acpi_status status;
bf325f95 1292
f33ce568
RW
1293 INIT_LIST_HEAD(&ps->resources);
1294
ef85bdbe
RW
1295 /* Evaluate "_PRx" to get referenced power resources */
1296 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1297 if (ACPI_SUCCESS(status)) {
1298 union acpi_object *package = buffer.pointer;
1299
1300 if (buffer.length && package
1301 && package->type == ACPI_TYPE_PACKAGE
1302 && package->package.count) {
e88c9c60
RW
1303 int err = acpi_extract_power_resources(package, 0,
1304 &ps->resources);
1305 if (!err)
ef85bdbe 1306 device->power.flags.power_resources = 1;
f33ce568 1307 }
ef85bdbe 1308 ACPI_FREE(buffer.pointer);
f33ce568
RW
1309 }
1310
1311 /* Evaluate "_PSx" to see if we can do explicit sets */
ef85bdbe 1312 pathname[2] = 'S';
952c63e9 1313 if (acpi_has_method(device->handle, pathname))
f33ce568
RW
1314 ps->flags.explicit_set = 1;
1315
1316 /*
1317 * State is valid if there are means to put the device into it.
1318 * D3hot is only valid if _PR3 present.
1319 */
ef85bdbe 1320 if (!list_empty(&ps->resources)
f33ce568
RW
1321 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1322 ps->flags.valid = 1;
1323 ps->flags.os_accessible = 1;
1324 }
1325
1326 ps->power = -1; /* Unknown - driver assigned */
1327 ps->latency = -1; /* Unknown - driver assigned */
1328}
1329
d43e167d 1330static void acpi_bus_get_power_flags(struct acpi_device *device)
1da177e4 1331{
8bc5053b 1332 u32 i;
1a365616 1333
d43e167d 1334 /* Presence of _PS0|_PR0 indicates 'power manageable' */
952c63e9
JL
1335 if (!acpi_has_method(device->handle, "_PS0") &&
1336 !acpi_has_method(device->handle, "_PR0"))
1337 return;
1a365616 1338
d43e167d 1339 device->flags.power_manageable = 1;
4be44fcd 1340
9e89dde2
ZR
1341 /*
1342 * Power Management Flags
1343 */
952c63e9 1344 if (acpi_has_method(device->handle, "_PSC"))
9e89dde2 1345 device->power.flags.explicit_get = 1;
952c63e9 1346 if (acpi_has_method(device->handle, "_IRC"))
9e89dde2 1347 device->power.flags.inrush_current = 1;
1da177e4 1348
9e89dde2
ZR
1349 /*
1350 * Enumerate supported power management states
1351 */
f33ce568
RW
1352 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1353 acpi_bus_init_power_state(device, i);
bf325f95 1354
0b224527 1355 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
1da177e4 1356
9e89dde2
ZR
1357 /* Set defaults for D0 and D3 states (always valid) */
1358 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1359 device->power.states[ACPI_STATE_D0].power = 100;
8ad928d5
RW
1360 device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1;
1361 device->power.states[ACPI_STATE_D3_COLD].power = 0;
c8f7a62c 1362
5c7dd710
RW
1363 /* Set D3cold's explicit_set flag if _PS3 exists. */
1364 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1365 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1366
1399dfcd
AL
1367 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1368 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1369 device->power.flags.power_resources)
1370 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1371
b3785492
RW
1372 if (acpi_bus_init_power(device)) {
1373 acpi_free_power_resources_lists(device);
1374 device->flags.power_manageable = 0;
1375 }
9e89dde2 1376}
c8f7a62c 1377
d43e167d 1378static void acpi_bus_get_flags(struct acpi_device *device)
1da177e4 1379{
1da177e4 1380 /* Presence of _STA indicates 'dynamic_status' */
952c63e9 1381 if (acpi_has_method(device->handle, "_STA"))
1da177e4
LT
1382 device->flags.dynamic_status = 1;
1383
1da177e4 1384 /* Presence of _RMV indicates 'removable' */
952c63e9 1385 if (acpi_has_method(device->handle, "_RMV"))
1da177e4
LT
1386 device->flags.removable = 1;
1387
1388 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
952c63e9
JL
1389 if (acpi_has_method(device->handle, "_EJD") ||
1390 acpi_has_method(device->handle, "_EJ0"))
1da177e4 1391 device->flags.ejectable = 1;
1da177e4
LT
1392}
1393
c7bcb4e9 1394static void acpi_device_get_busid(struct acpi_device *device)
1da177e4 1395{
4be44fcd
LB
1396 char bus_id[5] = { '?', 0 };
1397 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1398 int i = 0;
1da177e4
LT
1399
1400 /*
1401 * Bus ID
1402 * ------
1403 * The device's Bus ID is simply the object name.
1404 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1405 */
859ac9a4 1406 if (ACPI_IS_ROOT_DEVICE(device)) {
1da177e4 1407 strcpy(device->pnp.bus_id, "ACPI");
859ac9a4
BH
1408 return;
1409 }
1410
1411 switch (device->device_type) {
1da177e4
LT
1412 case ACPI_BUS_TYPE_POWER_BUTTON:
1413 strcpy(device->pnp.bus_id, "PWRF");
1414 break;
1415 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1416 strcpy(device->pnp.bus_id, "SLPF");
1417 break;
1418 default:
66b7ed40 1419 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
1da177e4
LT
1420 /* Clean up trailing underscores (if any) */
1421 for (i = 3; i > 1; i--) {
1422 if (bus_id[i] == '_')
1423 bus_id[i] = '\0';
1424 else
1425 break;
1426 }
1427 strcpy(device->pnp.bus_id, bus_id);
1428 break;
1429 }
1430}
1431
ebf4df8d
JL
1432/*
1433 * acpi_ata_match - see if an acpi object is an ATA device
1434 *
1435 * If an acpi object has one of the ACPI ATA methods defined,
1436 * then we can safely call it an ATA device.
1437 */
1438bool acpi_ata_match(acpi_handle handle)
1439{
1440 return acpi_has_method(handle, "_GTF") ||
1441 acpi_has_method(handle, "_GTM") ||
1442 acpi_has_method(handle, "_STM") ||
1443 acpi_has_method(handle, "_SDD");
1444}
1445
54735266 1446/*
d4e1a692 1447 * acpi_bay_match - see if an acpi object is an ejectable driver bay
54735266
ZR
1448 *
1449 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1450 * then we can safely call it an ejectable drive bay
1451 */
ebf4df8d 1452bool acpi_bay_match(acpi_handle handle)
d4e1a692 1453{
54735266
ZR
1454 acpi_handle phandle;
1455
952c63e9 1456 if (!acpi_has_method(handle, "_EJ0"))
ebf4df8d
JL
1457 return false;
1458 if (acpi_ata_match(handle))
1459 return true;
1460 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1461 return false;
54735266 1462
ebf4df8d 1463 return acpi_ata_match(phandle);
54735266
ZR
1464}
1465
3620f2f2 1466/*
d4e1a692 1467 * acpi_dock_match - see if an acpi object has a _DCK method
3620f2f2 1468 */
ebf4df8d 1469bool acpi_dock_match(acpi_handle handle)
3620f2f2 1470{
ebf4df8d 1471 return acpi_has_method(handle, "_DCK");
3620f2f2
FS
1472}
1473
620e112c 1474const char *acpi_device_hid(struct acpi_device *device)
15b8dd53 1475{
7f47fa6c 1476 struct acpi_hardware_id *hid;
15b8dd53 1477
2b2ae7c7
TR
1478 if (list_empty(&device->pnp.ids))
1479 return dummy_hid;
1480
7f47fa6c
BH
1481 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1482 return hid->id;
1483}
1484EXPORT_SYMBOL(acpi_device_hid);
15b8dd53 1485
d4e1a692 1486static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
7f47fa6c
BH
1487{
1488 struct acpi_hardware_id *id;
15b8dd53 1489
7f47fa6c
BH
1490 id = kmalloc(sizeof(*id), GFP_KERNEL);
1491 if (!id)
1492 return;
15b8dd53 1493
581de59e 1494 id->id = kstrdup(dev_id, GFP_KERNEL);
7f47fa6c
BH
1495 if (!id->id) {
1496 kfree(id);
1497 return;
15b8dd53
BM
1498 }
1499
d4e1a692
TK
1500 list_add_tail(&id->list, &pnp->ids);
1501 pnp->type.hardware_id = 1;
15b8dd53
BM
1502}
1503
222e82ac
DW
1504/*
1505 * Old IBM workstations have a DSDT bug wherein the SMBus object
1506 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1507 * prefix. Work around this.
1508 */
ebf4df8d 1509static bool acpi_ibm_smbus_match(acpi_handle handle)
222e82ac 1510{
ebf4df8d
JL
1511 char node_name[ACPI_PATH_SEGMENT_LENGTH];
1512 struct acpi_buffer path = { sizeof(node_name), node_name };
222e82ac
DW
1513
1514 if (!dmi_name_in_vendors("IBM"))
ebf4df8d 1515 return false;
222e82ac
DW
1516
1517 /* Look for SMBS object */
ebf4df8d
JL
1518 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) ||
1519 strcmp("SMBS", path.pointer))
1520 return false;
222e82ac
DW
1521
1522 /* Does it have the necessary (but misnamed) methods? */
952c63e9
JL
1523 if (acpi_has_method(handle, "SBI") &&
1524 acpi_has_method(handle, "SBR") &&
1525 acpi_has_method(handle, "SBW"))
ebf4df8d
JL
1526 return true;
1527
1528 return false;
222e82ac
DW
1529}
1530
c0af4175
TK
1531static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
1532 int device_type)
1da177e4 1533{
4be44fcd 1534 acpi_status status;
57f3674f 1535 struct acpi_device_info *info;
78e25fef 1536 struct acpi_pnp_device_id_list *cid_list;
7f47fa6c 1537 int i;
1da177e4 1538
c0af4175 1539 switch (device_type) {
1da177e4 1540 case ACPI_BUS_TYPE_DEVICE:
c0af4175
TK
1541 if (handle == ACPI_ROOT_OBJECT) {
1542 acpi_add_id(pnp, ACPI_SYSTEM_HID);
859ac9a4
BH
1543 break;
1544 }
1545
c0af4175 1546 status = acpi_get_object_info(handle, &info);
1da177e4 1547 if (ACPI_FAILURE(status)) {
c0af4175
TK
1548 pr_err(PREFIX "%s: Error reading device info\n",
1549 __func__);
1da177e4
LT
1550 return;
1551 }
1552
1da177e4 1553 if (info->valid & ACPI_VALID_HID)
c0af4175 1554 acpi_add_id(pnp, info->hardware_id.string);
57f3674f 1555 if (info->valid & ACPI_VALID_CID) {
15b8dd53 1556 cid_list = &info->compatible_id_list;
57f3674f 1557 for (i = 0; i < cid_list->count; i++)
c0af4175 1558 acpi_add_id(pnp, cid_list->ids[i].string);
57f3674f 1559 }
1da177e4 1560 if (info->valid & ACPI_VALID_ADR) {
c0af4175
TK
1561 pnp->bus_address = info->address;
1562 pnp->type.bus_address = 1;
1da177e4 1563 }
ccf78040 1564 if (info->valid & ACPI_VALID_UID)
c0af4175 1565 pnp->unique_id = kstrdup(info->unique_id.string,
ccf78040 1566 GFP_KERNEL);
ae843332 1567
a83893ae
BH
1568 kfree(info);
1569
57f3674f
BH
1570 /*
1571 * Some devices don't reliably have _HIDs & _CIDs, so add
1572 * synthetic HIDs to make sure drivers can find them.
1573 */
c0af4175
TK
1574 if (acpi_is_video_device(handle))
1575 acpi_add_id(pnp, ACPI_VIDEO_HID);
ebf4df8d 1576 else if (acpi_bay_match(handle))
c0af4175 1577 acpi_add_id(pnp, ACPI_BAY_HID);
ebf4df8d 1578 else if (acpi_dock_match(handle))
c0af4175 1579 acpi_add_id(pnp, ACPI_DOCK_HID);
ebf4df8d 1580 else if (acpi_ibm_smbus_match(handle))
c0af4175
TK
1581 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
1582 else if (list_empty(&pnp->ids) && handle == ACPI_ROOT_OBJECT) {
1583 acpi_add_id(pnp, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1584 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
1585 strcpy(pnp->device_class, ACPI_BUS_CLASS);
b7b30de5 1586 }
54735266 1587
1da177e4
LT
1588 break;
1589 case ACPI_BUS_TYPE_POWER:
c0af4175 1590 acpi_add_id(pnp, ACPI_POWER_HID);
1da177e4
LT
1591 break;
1592 case ACPI_BUS_TYPE_PROCESSOR:
c0af4175 1593 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
1da177e4 1594 break;
1da177e4 1595 case ACPI_BUS_TYPE_THERMAL:
c0af4175 1596 acpi_add_id(pnp, ACPI_THERMAL_HID);
1da177e4
LT
1597 break;
1598 case ACPI_BUS_TYPE_POWER_BUTTON:
c0af4175 1599 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
1da177e4
LT
1600 break;
1601 case ACPI_BUS_TYPE_SLEEP_BUTTON:
c0af4175 1602 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
1da177e4
LT
1603 break;
1604 }
1da177e4
LT
1605}
1606
c0af4175
TK
1607void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
1608{
1609 struct acpi_hardware_id *id, *tmp;
1610
1611 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
1612 kfree(id->id);
1613 kfree(id);
1614 }
1615 kfree(pnp->unique_id);
1616}
1617
82c7d5ef
RW
1618void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
1619 int type, unsigned long long sta)
1da177e4 1620{
d43e167d
RW
1621 INIT_LIST_HEAD(&device->pnp.ids);
1622 device->device_type = type;
1623 device->handle = handle;
1624 device->parent = acpi_bus_get_parent(handle);
1625 STRUCT_TO_INT(device->status) = sta;
1626 acpi_device_get_busid(device);
c0af4175 1627 acpi_set_pnp_ids(handle, &device->pnp, type);
d43e167d 1628 acpi_bus_get_flags(device);
2c0d4fe0 1629 device->flags.match_driver = false;
cf860be6
RW
1630 device_initialize(&device->dev);
1631 dev_set_uevent_suppress(&device->dev, true);
1632}
bc3b0772 1633
cf860be6
RW
1634void acpi_device_add_finalize(struct acpi_device *device)
1635{
1636 dev_set_uevent_suppress(&device->dev, false);
1637 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
1da177e4
LT
1638}
1639
5c478f49
BH
1640static int acpi_add_single_object(struct acpi_device **child,
1641 acpi_handle handle, int type,
2c0d4fe0 1642 unsigned long long sta)
1da177e4 1643{
77c24888
BH
1644 int result;
1645 struct acpi_device *device;
29aaefa6 1646 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1da177e4 1647
36bcbec7 1648 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
1da177e4 1649 if (!device) {
6468463a 1650 printk(KERN_ERR PREFIX "Memory allocation error\n");
d550d98d 1651 return -ENOMEM;
1da177e4 1652 }
1da177e4 1653
d43e167d
RW
1654 acpi_init_device_object(device, handle, type, sta);
1655 acpi_bus_get_power_flags(device);
d57d09a4 1656 acpi_bus_get_wakeup_device_flags(device);
1da177e4 1657
cf860be6 1658 result = acpi_device_add(device, acpi_device_release);
d43e167d 1659 if (result) {
718fb0de 1660 acpi_device_release(&device->dev);
d43e167d
RW
1661 return result;
1662 }
1da177e4 1663
d43e167d 1664 acpi_power_add_remove_device(device, true);
cf860be6 1665 acpi_device_add_finalize(device);
d43e167d
RW
1666 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1667 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
1668 dev_name(&device->dev), (char *) buffer.pointer,
1669 device->parent ? dev_name(&device->parent->dev) : "(null)"));
1670 kfree(buffer.pointer);
1671 *child = device;
1672 return 0;
bf325f95
RW
1673}
1674
778cbc1d
BH
1675static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1676 unsigned long long *sta)
1da177e4 1677{
778cbc1d
BH
1678 acpi_status status;
1679 acpi_object_type acpi_type;
1da177e4 1680
778cbc1d 1681 status = acpi_get_type(handle, &acpi_type);
51a85faf 1682 if (ACPI_FAILURE(status))
778cbc1d 1683 return -ENODEV;
4be44fcd 1684
778cbc1d 1685 switch (acpi_type) {
51a85faf
BH
1686 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1687 case ACPI_TYPE_DEVICE:
778cbc1d
BH
1688 *type = ACPI_BUS_TYPE_DEVICE;
1689 status = acpi_bus_get_status_handle(handle, sta);
1690 if (ACPI_FAILURE(status))
1691 return -ENODEV;
51a85faf
BH
1692 break;
1693 case ACPI_TYPE_PROCESSOR:
778cbc1d
BH
1694 *type = ACPI_BUS_TYPE_PROCESSOR;
1695 status = acpi_bus_get_status_handle(handle, sta);
1696 if (ACPI_FAILURE(status))
1697 return -ENODEV;
51a85faf
BH
1698 break;
1699 case ACPI_TYPE_THERMAL:
778cbc1d
BH
1700 *type = ACPI_BUS_TYPE_THERMAL;
1701 *sta = ACPI_STA_DEFAULT;
51a85faf
BH
1702 break;
1703 case ACPI_TYPE_POWER:
778cbc1d
BH
1704 *type = ACPI_BUS_TYPE_POWER;
1705 *sta = ACPI_STA_DEFAULT;
51a85faf
BH
1706 break;
1707 default:
778cbc1d 1708 return -ENODEV;
51a85faf 1709 }
1da177e4 1710
778cbc1d
BH
1711 return 0;
1712}
1713
4b59cc1f
RW
1714static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
1715 char *idstr,
1716 const struct acpi_device_id **matchid)
1717{
1718 const struct acpi_device_id *devid;
1719
1720 for (devid = handler->ids; devid->id[0]; devid++)
1721 if (!strcmp((char *)devid->id, idstr)) {
1722 if (matchid)
1723 *matchid = devid;
1724
1725 return true;
1726 }
1727
1728 return false;
1729}
1730
6b772e8f
TK
1731static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
1732 const struct acpi_device_id **matchid)
1733{
1734 struct acpi_scan_handler *handler;
1735
1736 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
1737 if (acpi_scan_handler_matching(handler, idstr, matchid))
1738 return handler;
1739
1740 return NULL;
1741}
1742
3f8055c3
RW
1743void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
1744{
3f8055c3
RW
1745 if (!!hotplug->enabled == !!val)
1746 return;
1747
1748 mutex_lock(&acpi_scan_lock);
1749
1750 hotplug->enabled = val;
3f8055c3
RW
1751
1752 mutex_unlock(&acpi_scan_lock);
1753}
1754
6b772e8f 1755static void acpi_scan_init_hotplug(acpi_handle handle, int type)
a33ec399 1756{
6b772e8f
TK
1757 struct acpi_device_pnp pnp = {};
1758 struct acpi_hardware_id *hwid;
a33ec399
RW
1759 struct acpi_scan_handler *handler;
1760
6b772e8f
TK
1761 INIT_LIST_HEAD(&pnp.ids);
1762 acpi_set_pnp_ids(handle, &pnp, type);
a33ec399 1763
6b772e8f 1764 if (!pnp.type.hardware_id)
7a26b530 1765 goto out;
a33ec399
RW
1766
1767 /*
1768 * This relies on the fact that acpi_install_notify_handler() will not
1769 * install the same notify handler routine twice for the same handle.
1770 */
6b772e8f
TK
1771 list_for_each_entry(hwid, &pnp.ids, list) {
1772 handler = acpi_scan_match_handler(hwid->id, NULL);
1773 if (handler) {
2cbb14fb
TK
1774 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1775 acpi_hotplug_notify_cb, handler);
6b772e8f
TK
1776 break;
1777 }
1778 }
1779
7a26b530 1780out:
6b772e8f 1781 acpi_free_pnp_ids(&pnp);
a33ec399
RW
1782}
1783
e3863094
RW
1784static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1785 void *not_used, void **return_value)
778cbc1d 1786{
805d410f 1787 struct acpi_device *device = NULL;
778cbc1d
BH
1788 int type;
1789 unsigned long long sta;
1790 int result;
1791
4002bf38
RW
1792 acpi_bus_get_device(handle, &device);
1793 if (device)
1794 goto out;
1795
778cbc1d
BH
1796 result = acpi_bus_type_and_status(handle, &type, &sta);
1797 if (result)
1798 return AE_OK;
1799
82c7d5ef
RW
1800 if (type == ACPI_BUS_TYPE_POWER) {
1801 acpi_add_power_resource(handle);
1802 return AE_OK;
1803 }
1804
6b772e8f 1805 acpi_scan_init_hotplug(handle, type);
a33ec399 1806
778cbc1d 1807 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
b581a7f9 1808 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
86e4e20e 1809 struct acpi_device_wakeup wakeup;
86e4e20e 1810
952c63e9 1811 if (acpi_has_method(handle, "_PRW")) {
86e4e20e
RW
1812 acpi_bus_extract_wakeup_device_power_package(handle,
1813 &wakeup);
993cbe59
RW
1814 acpi_power_resources_list_free(&wakeup.resources);
1815 }
778cbc1d 1816 return AE_CTRL_DEPTH;
b581a7f9 1817 }
778cbc1d 1818
2c0d4fe0 1819 acpi_add_single_object(&device, handle, type, sta);
e3b87f8a 1820 if (!device)
51a85faf 1821 return AE_CTRL_DEPTH;
1da177e4 1822
4002bf38 1823 out:
51a85faf
BH
1824 if (!*return_value)
1825 *return_value = device;
805d410f 1826
51a85faf
BH
1827 return AE_OK;
1828}
3fb02738 1829
c5698074 1830static int acpi_scan_attach_handler(struct acpi_device *device)
ca589f94 1831{
c5698074
RW
1832 struct acpi_hardware_id *hwid;
1833 int ret = 0;
ca589f94 1834
c5698074 1835 list_for_each_entry(hwid, &device->pnp.ids, list) {
87b85b3c 1836 const struct acpi_device_id *devid;
c5698074 1837 struct acpi_scan_handler *handler;
ca589f94 1838
c5698074
RW
1839 handler = acpi_scan_match_handler(hwid->id, &devid);
1840 if (handler) {
87b85b3c
RW
1841 ret = handler->attach(device, devid);
1842 if (ret > 0) {
1843 device->handler = handler;
c5698074 1844 break;
87b85b3c 1845 } else if (ret < 0) {
c5698074 1846 break;
87b85b3c 1847 }
ca589f94
RW
1848 }
1849 }
1850 return ret;
1851}
1852
0fc300b0
RW
1853static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1854 void *not_used, void **ret_not_used)
51a85faf 1855{
805d410f
RW
1856 struct acpi_device *device;
1857 unsigned long long sta_not_used;
ca589f94 1858 int ret;
3fb02738 1859
805d410f
RW
1860 /*
1861 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1862 * namespace walks prematurely.
1863 */
ca589f94 1864 if (acpi_bus_type_and_status(handle, &ret, &sta_not_used))
805d410f 1865 return AE_OK;
1da177e4 1866
805d410f
RW
1867 if (acpi_bus_get_device(handle, &device))
1868 return AE_CTRL_DEPTH;
7779688f 1869
3a391a39
RW
1870 if (device->handler)
1871 return AE_OK;
1872
ca589f94 1873 ret = acpi_scan_attach_handler(device);
6931007c
RW
1874 if (ret < 0)
1875 return AE_CTRL_DEPTH;
1876
1877 device->flags.match_driver = true;
1878 if (ret > 0)
1879 return AE_OK;
ca589f94
RW
1880
1881 ret = device_attach(&device->dev);
1882 return ret >= 0 ? AE_OK : AE_CTRL_DEPTH;
1da177e4 1883}
1da177e4 1884
636458de 1885/**
b8bd759a 1886 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
636458de 1887 * @handle: Root of the namespace scope to scan.
7779688f 1888 *
636458de
RW
1889 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1890 * found devices.
7779688f 1891 *
636458de
RW
1892 * If no devices were found, -ENODEV is returned, but it does not mean that
1893 * there has been a real error. There just have been no suitable ACPI objects
1894 * in the table trunk from which the kernel could create a device and add an
1895 * appropriate driver.
3757b948
RW
1896 *
1897 * Must be called under acpi_scan_lock.
7779688f 1898 */
b8bd759a 1899int acpi_bus_scan(acpi_handle handle)
3fb02738 1900{
b8bd759a 1901 void *device = NULL;
c511cc19 1902 int error = 0;
3fb02738 1903
b8bd759a
RW
1904 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
1905 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
1906 acpi_bus_check_add, NULL, NULL, &device);
3fb02738 1907
d2f6650a 1908 if (!device)
c511cc19
RW
1909 error = -ENODEV;
1910 else if (ACPI_SUCCESS(acpi_bus_device_attach(handle, 0, NULL, NULL)))
b8bd759a
RW
1911 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
1912 acpi_bus_device_attach, NULL, NULL, NULL);
3fb02738 1913
c511cc19 1914 return error;
3fb02738 1915}
b8bd759a 1916EXPORT_SYMBOL(acpi_bus_scan);
a2100801 1917
05404d8f
RW
1918static acpi_status acpi_bus_device_detach(acpi_handle handle, u32 lvl_not_used,
1919 void *not_used, void **ret_not_used)
1920{
1921 struct acpi_device *device = NULL;
a2100801 1922
05404d8f 1923 if (!acpi_bus_get_device(handle, &device)) {
ca589f94
RW
1924 struct acpi_scan_handler *dev_handler = device->handler;
1925
ca589f94
RW
1926 if (dev_handler) {
1927 if (dev_handler->detach)
1928 dev_handler->detach(device);
1929
1930 device->handler = NULL;
1931 } else {
1932 device_release_driver(&device->dev);
1933 }
05404d8f
RW
1934 }
1935 return AE_OK;
3fb02738 1936}
1da177e4 1937
05404d8f
RW
1938static acpi_status acpi_bus_remove(acpi_handle handle, u32 lvl_not_used,
1939 void *not_used, void **ret_not_used)
1da177e4 1940{
05404d8f 1941 struct acpi_device *device = NULL;
4be44fcd 1942
05404d8f
RW
1943 if (!acpi_bus_get_device(handle, &device))
1944 acpi_device_unregister(device);
1da177e4 1945
05404d8f
RW
1946 return AE_OK;
1947}
1da177e4 1948
3757b948
RW
1949/**
1950 * acpi_bus_trim - Remove ACPI device node and all of its descendants
1951 * @start: Root of the ACPI device nodes subtree to remove.
1952 *
1953 * Must be called under acpi_scan_lock.
1954 */
bfee26db 1955void acpi_bus_trim(struct acpi_device *start)
1da177e4 1956{
05404d8f
RW
1957 /*
1958 * Execute acpi_bus_device_detach() as a post-order callback to detach
1959 * all ACPI drivers from the device nodes being removed.
1960 */
1961 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1962 acpi_bus_device_detach, NULL, NULL);
1963 acpi_bus_device_detach(start->handle, 0, NULL, NULL);
cecdb193
RW
1964 /*
1965 * Execute acpi_bus_remove() as a post-order callback to remove device
1966 * nodes in the given namespace scope.
1967 */
1968 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1969 acpi_bus_remove, NULL, NULL);
1970 acpi_bus_remove(start->handle, 0, NULL, NULL);
1da177e4 1971}
ceaba663
KA
1972EXPORT_SYMBOL_GPL(acpi_bus_trim);
1973
e8b945c9 1974static int acpi_bus_scan_fixed(void)
1da177e4 1975{
4be44fcd 1976 int result = 0;
c4168bff 1977
1da177e4
LT
1978 /*
1979 * Enumerate all fixed-feature devices.
1980 */
2c0d4fe0
RW
1981 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
1982 struct acpi_device *device = NULL;
1983
5c478f49 1984 result = acpi_add_single_object(&device, NULL,
c4168bff 1985 ACPI_BUS_TYPE_POWER_BUTTON,
2c0d4fe0
RW
1986 ACPI_STA_DEFAULT);
1987 if (result)
1988 return result;
1989
88346167 1990 device->flags.match_driver = true;
2c0d4fe0
RW
1991 result = device_attach(&device->dev);
1992 if (result < 0)
1993 return result;
1994
c10d7a13 1995 device_init_wakeup(&device->dev, true);
3fb02738 1996 }
1da177e4 1997
2c0d4fe0
RW
1998 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
1999 struct acpi_device *device = NULL;
2000
5c478f49 2001 result = acpi_add_single_object(&device, NULL,
c4168bff 2002 ACPI_BUS_TYPE_SLEEP_BUTTON,
2c0d4fe0
RW
2003 ACPI_STA_DEFAULT);
2004 if (result)
2005 return result;
2006
88346167 2007 device->flags.match_driver = true;
2c0d4fe0 2008 result = device_attach(&device->dev);
3fb02738 2009 }
1da177e4 2010
2c0d4fe0 2011 return result < 0 ? result : 0;
1da177e4
LT
2012}
2013
e747f274 2014int __init acpi_scan_init(void)
1da177e4
LT
2015{
2016 int result;
1da177e4 2017
5b327265
PM
2018 result = bus_register(&acpi_bus_type);
2019 if (result) {
2020 /* We don't want to quit even if we failed to add suspend/resume */
2021 printk(KERN_ERR PREFIX "Could not register bus type\n");
2022 }
2023
92ef2a25 2024 acpi_pci_root_init();
4daeaf68 2025 acpi_pci_link_init();
ac212b69 2026 acpi_processor_init();
141a297b 2027 acpi_platform_init();
f58b082a 2028 acpi_lpss_init();
2fa97feb 2029 acpi_cmos_rtc_init();
737f1a9f 2030 acpi_container_init();
0a347644 2031 acpi_memory_hotplug_init();
94add0f8 2032 acpi_dock_init();
97d9a9e9 2033
3757b948 2034 mutex_lock(&acpi_scan_lock);
1da177e4
LT
2035 /*
2036 * Enumerate devices in the ACPI namespace.
2037 */
0cd6ac52
RW
2038 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
2039 if (result)
3757b948 2040 goto out;
1da177e4 2041
0cd6ac52 2042 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
1da177e4 2043 if (result)
3757b948 2044 goto out;
1da177e4 2045
b8bd759a
RW
2046 result = acpi_bus_scan_fixed();
2047 if (result) {
b17b537a 2048 acpi_device_unregister(acpi_root);
3757b948 2049 goto out;
b8bd759a 2050 }
1da177e4 2051
b8bd759a 2052 acpi_update_all_gpes();
3757b948 2053
668192b6
YL
2054 acpi_pci_root_hp_init();
2055
3757b948
RW
2056 out:
2057 mutex_unlock(&acpi_scan_lock);
2058 return result;
1da177e4 2059}
This page took 1.007772 seconds and 5 git commands to generate.