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