ACPI: Replace ACPI device add_type field with a match_driver flag
[linux-2.6-block.git] / drivers / acpi / scan.c
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>
7 #include <linux/slab.h>
8 #include <linux/kernel.h>
9 #include <linux/acpi.h>
10 #include <linux/signal.h>
11 #include <linux/kthread.h>
12 #include <linux/dmi.h>
13 #include <linux/nls.h>
14
15 #include <acpi/acpi_drivers.h>
16
17 #include "internal.h"
18
19 #define _COMPONENT              ACPI_BUS_COMPONENT
20 ACPI_MODULE_NAME("scan");
21 #define STRUCT_TO_INT(s)        (*((int*)&s))
22 extern struct acpi_device *acpi_root;
23
24 #define ACPI_BUS_CLASS                  "system_bus"
25 #define ACPI_BUS_HID                    "LNXSYBUS"
26 #define ACPI_BUS_DEVICE_NAME            "System Bus"
27
28 #define ACPI_IS_ROOT_DEVICE(device)    (!(device)->parent)
29
30 static const char *dummy_hid = "device";
31
32 /*
33  * The following ACPI IDs are known to be suitable for representing as
34  * platform devices.
35  */
36 static const struct acpi_device_id acpi_platform_device_ids[] = {
37
38         { "PNP0D40" },
39
40         /* Haswell LPSS devices */
41         { "INT33C0", 0 },
42         { "INT33C1", 0 },
43         { "INT33C2", 0 },
44         { "INT33C3", 0 },
45         { "INT33C4", 0 },
46         { "INT33C5", 0 },
47         { "INT33C6", 0 },
48         { "INT33C7", 0 },
49
50         { }
51 };
52
53 static LIST_HEAD(acpi_device_list);
54 static LIST_HEAD(acpi_bus_id_list);
55 DEFINE_MUTEX(acpi_device_lock);
56 LIST_HEAD(acpi_wakeup_device_list);
57
58 struct acpi_device_bus_id{
59         char bus_id[15];
60         unsigned int instance_no;
61         struct list_head node;
62 };
63
64 /*
65  * Creates hid/cid(s) string needed for modalias and uevent
66  * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
67  * char *modalias: "acpi:IBM0001:ACPI0001"
68 */
69 static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
70                            int size)
71 {
72         int len;
73         int count;
74         struct acpi_hardware_id *id;
75
76         if (list_empty(&acpi_dev->pnp.ids))
77                 return 0;
78
79         len = snprintf(modalias, size, "acpi:");
80         size -= len;
81
82         list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
83                 count = snprintf(&modalias[len], size, "%s:", id->id);
84                 if (count < 0 || count >= size)
85                         return -EINVAL;
86                 len += count;
87                 size -= count;
88         }
89
90         modalias[len] = '\0';
91         return len;
92 }
93
94 static ssize_t
95 acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
96         struct acpi_device *acpi_dev = to_acpi_device(dev);
97         int len;
98
99         /* Device has no HID and no CID or string is >1024 */
100         len = create_modalias(acpi_dev, buf, 1024);
101         if (len <= 0)
102                 return 0;
103         buf[len++] = '\n';
104         return len;
105 }
106 static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
107
108 /**
109  * acpi_bus_hot_remove_device: hot-remove a device and its children
110  * @context: struct acpi_eject_event pointer (freed in this func)
111  *
112  * Hot-remove a device and its children. This function frees up the
113  * memory space passed by arg context, so that the caller may call
114  * this function asynchronously through acpi_os_hotplug_execute().
115  */
116 void acpi_bus_hot_remove_device(void *context)
117 {
118         struct acpi_eject_event *ej_event = (struct acpi_eject_event *) context;
119         struct acpi_device *device;
120         acpi_handle handle = ej_event->handle;
121         acpi_handle temp;
122         struct acpi_object_list arg_list;
123         union acpi_object arg;
124         acpi_status status = AE_OK;
125         u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE; /* default */
126
127         if (acpi_bus_get_device(handle, &device))
128                 goto err_out;
129
130         if (!device)
131                 goto err_out;
132
133         ACPI_DEBUG_PRINT((ACPI_DB_INFO,
134                 "Hot-removing device %s...\n", dev_name(&device->dev)));
135
136         if (acpi_bus_trim(device, 1)) {
137                 printk(KERN_ERR PREFIX
138                                 "Removing device failed\n");
139                 goto err_out;
140         }
141
142         /* device has been freed */
143         device = NULL;
144
145         /* power off device */
146         status = acpi_evaluate_object(handle, "_PS3", NULL, NULL);
147         if (ACPI_FAILURE(status) && status != AE_NOT_FOUND)
148                 printk(KERN_WARNING PREFIX
149                                 "Power-off device failed\n");
150
151         if (ACPI_SUCCESS(acpi_get_handle(handle, "_LCK", &temp))) {
152                 arg_list.count = 1;
153                 arg_list.pointer = &arg;
154                 arg.type = ACPI_TYPE_INTEGER;
155                 arg.integer.value = 0;
156                 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
157         }
158
159         arg_list.count = 1;
160         arg_list.pointer = &arg;
161         arg.type = ACPI_TYPE_INTEGER;
162         arg.integer.value = 1;
163
164         /*
165          * TBD: _EJD support.
166          */
167         status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
168         if (ACPI_FAILURE(status)) {
169                 if (status != AE_NOT_FOUND)
170                         printk(KERN_WARNING PREFIX
171                                         "Eject device failed\n");
172                 goto err_out;
173         }
174
175         kfree(context);
176         return;
177
178 err_out:
179         /* Inform firmware the hot-remove operation has completed w/ error */
180         (void) acpi_evaluate_hotplug_ost(handle,
181                                 ej_event->event, ost_code, NULL);
182         kfree(context);
183         return;
184 }
185 EXPORT_SYMBOL(acpi_bus_hot_remove_device);
186
187 static ssize_t
188 acpi_eject_store(struct device *d, struct device_attribute *attr,
189                 const char *buf, size_t count)
190 {
191         int ret = count;
192         acpi_status status;
193         acpi_object_type type = 0;
194         struct acpi_device *acpi_device = to_acpi_device(d);
195         struct acpi_eject_event *ej_event;
196
197         if ((!count) || (buf[0] != '1')) {
198                 return -EINVAL;
199         }
200 #ifndef FORCE_EJECT
201         if (acpi_device->driver == NULL) {
202                 ret = -ENODEV;
203                 goto err;
204         }
205 #endif
206         status = acpi_get_type(acpi_device->handle, &type);
207         if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
208                 ret = -ENODEV;
209                 goto err;
210         }
211
212         ej_event = kmalloc(sizeof(*ej_event), GFP_KERNEL);
213         if (!ej_event) {
214                 ret = -ENOMEM;
215                 goto err;
216         }
217
218         ej_event->handle = acpi_device->handle;
219         if (acpi_device->flags.eject_pending) {
220                 /* event originated from ACPI eject notification */
221                 ej_event->event = ACPI_NOTIFY_EJECT_REQUEST;
222                 acpi_device->flags.eject_pending = 0;
223         } else {
224                 /* event originated from user */
225                 ej_event->event = ACPI_OST_EC_OSPM_EJECT;
226                 (void) acpi_evaluate_hotplug_ost(ej_event->handle,
227                         ej_event->event, ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
228         }
229
230         acpi_os_hotplug_execute(acpi_bus_hot_remove_device, (void *)ej_event);
231 err:
232         return ret;
233 }
234
235 static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
236
237 static ssize_t
238 acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
239         struct acpi_device *acpi_dev = to_acpi_device(dev);
240
241         return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
242 }
243 static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
244
245 static ssize_t acpi_device_uid_show(struct device *dev,
246                                     struct device_attribute *attr, char *buf)
247 {
248         struct acpi_device *acpi_dev = to_acpi_device(dev);
249
250         return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
251 }
252 static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
253
254 static ssize_t acpi_device_adr_show(struct device *dev,
255                                     struct device_attribute *attr, char *buf)
256 {
257         struct acpi_device *acpi_dev = to_acpi_device(dev);
258
259         return sprintf(buf, "0x%08x\n",
260                        (unsigned int)(acpi_dev->pnp.bus_address));
261 }
262 static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
263
264 static ssize_t
265 acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
266         struct acpi_device *acpi_dev = to_acpi_device(dev);
267         struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
268         int result;
269
270         result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
271         if (result)
272                 goto end;
273
274         result = sprintf(buf, "%s\n", (char*)path.pointer);
275         kfree(path.pointer);
276 end:
277         return result;
278 }
279 static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
280
281 /* sysfs file that shows description text from the ACPI _STR method */
282 static ssize_t description_show(struct device *dev,
283                                 struct device_attribute *attr,
284                                 char *buf) {
285         struct acpi_device *acpi_dev = to_acpi_device(dev);
286         int result;
287
288         if (acpi_dev->pnp.str_obj == NULL)
289                 return 0;
290
291         /*
292          * The _STR object contains a Unicode identifier for a device.
293          * We need to convert to utf-8 so it can be displayed.
294          */
295         result = utf16s_to_utf8s(
296                 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
297                 acpi_dev->pnp.str_obj->buffer.length,
298                 UTF16_LITTLE_ENDIAN, buf,
299                 PAGE_SIZE);
300
301         buf[result++] = '\n';
302
303         return result;
304 }
305 static DEVICE_ATTR(description, 0444, description_show, NULL);
306
307 static ssize_t
308 acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
309                      char *buf) {
310         struct acpi_device *acpi_dev = to_acpi_device(dev);
311
312         return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
313 }
314 static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
315
316 static int acpi_device_setup_files(struct acpi_device *dev)
317 {
318         struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
319         acpi_status status;
320         acpi_handle temp;
321         unsigned long long sun;
322         int result = 0;
323
324         /*
325          * Devices gotten from FADT don't have a "path" attribute
326          */
327         if (dev->handle) {
328                 result = device_create_file(&dev->dev, &dev_attr_path);
329                 if (result)
330                         goto end;
331         }
332
333         if (!list_empty(&dev->pnp.ids)) {
334                 result = device_create_file(&dev->dev, &dev_attr_hid);
335                 if (result)
336                         goto end;
337
338                 result = device_create_file(&dev->dev, &dev_attr_modalias);
339                 if (result)
340                         goto end;
341         }
342
343         /*
344          * If device has _STR, 'description' file is created
345          */
346         status = acpi_get_handle(dev->handle, "_STR", &temp);
347         if (ACPI_SUCCESS(status)) {
348                 status = acpi_evaluate_object(dev->handle, "_STR",
349                                         NULL, &buffer);
350                 if (ACPI_FAILURE(status))
351                         buffer.pointer = NULL;
352                 dev->pnp.str_obj = buffer.pointer;
353                 result = device_create_file(&dev->dev, &dev_attr_description);
354                 if (result)
355                         goto end;
356         }
357
358         if (dev->flags.bus_address)
359                 result = device_create_file(&dev->dev, &dev_attr_adr);
360         if (dev->pnp.unique_id)
361                 result = device_create_file(&dev->dev, &dev_attr_uid);
362
363         status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
364         if (ACPI_SUCCESS(status)) {
365                 dev->pnp.sun = (unsigned long)sun;
366                 result = device_create_file(&dev->dev, &dev_attr_sun);
367                 if (result)
368                         goto end;
369         } else {
370                 dev->pnp.sun = (unsigned long)-1;
371         }
372
373         /*
374          * If device has _EJ0, 'eject' file is created that is used to trigger
375          * hot-removal function from userland.
376          */
377         status = acpi_get_handle(dev->handle, "_EJ0", &temp);
378         if (ACPI_SUCCESS(status))
379                 result = device_create_file(&dev->dev, &dev_attr_eject);
380 end:
381         return result;
382 }
383
384 static void acpi_device_remove_files(struct acpi_device *dev)
385 {
386         acpi_status status;
387         acpi_handle temp;
388
389         /*
390          * If device has _STR, remove 'description' file
391          */
392         status = acpi_get_handle(dev->handle, "_STR", &temp);
393         if (ACPI_SUCCESS(status)) {
394                 kfree(dev->pnp.str_obj);
395                 device_remove_file(&dev->dev, &dev_attr_description);
396         }
397         /*
398          * If device has _EJ0, remove 'eject' file.
399          */
400         status = acpi_get_handle(dev->handle, "_EJ0", &temp);
401         if (ACPI_SUCCESS(status))
402                 device_remove_file(&dev->dev, &dev_attr_eject);
403
404         status = acpi_get_handle(dev->handle, "_SUN", &temp);
405         if (ACPI_SUCCESS(status))
406                 device_remove_file(&dev->dev, &dev_attr_sun);
407
408         if (dev->pnp.unique_id)
409                 device_remove_file(&dev->dev, &dev_attr_uid);
410         if (dev->flags.bus_address)
411                 device_remove_file(&dev->dev, &dev_attr_adr);
412         device_remove_file(&dev->dev, &dev_attr_modalias);
413         device_remove_file(&dev->dev, &dev_attr_hid);
414         if (dev->handle)
415                 device_remove_file(&dev->dev, &dev_attr_path);
416 }
417 /* --------------------------------------------------------------------------
418                         ACPI Bus operations
419    -------------------------------------------------------------------------- */
420
421 static const struct acpi_device_id *__acpi_match_device(
422         struct acpi_device *device, const struct acpi_device_id *ids)
423 {
424         const struct acpi_device_id *id;
425         struct acpi_hardware_id *hwid;
426
427         /*
428          * If the device is not present, it is unnecessary to load device
429          * driver for it.
430          */
431         if (!device->status.present)
432                 return NULL;
433
434         for (id = ids; id->id[0]; id++)
435                 list_for_each_entry(hwid, &device->pnp.ids, list)
436                         if (!strcmp((char *) id->id, hwid->id))
437                                 return id;
438
439         return NULL;
440 }
441
442 /**
443  * acpi_match_device - Match a struct device against a given list of ACPI IDs
444  * @ids: Array of struct acpi_device_id object to match against.
445  * @dev: The device structure to match.
446  *
447  * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
448  * object for that handle and use that object to match against a given list of
449  * device IDs.
450  *
451  * Return a pointer to the first matching ID on success or %NULL on failure.
452  */
453 const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
454                                                const struct device *dev)
455 {
456         struct acpi_device *adev;
457
458         if (!ids || !ACPI_HANDLE(dev)
459             || ACPI_FAILURE(acpi_bus_get_device(ACPI_HANDLE(dev), &adev)))
460                 return NULL;
461
462         return __acpi_match_device(adev, ids);
463 }
464 EXPORT_SYMBOL_GPL(acpi_match_device);
465
466 int acpi_match_device_ids(struct acpi_device *device,
467                           const struct acpi_device_id *ids)
468 {
469         return __acpi_match_device(device, ids) ? 0 : -ENOENT;
470 }
471 EXPORT_SYMBOL(acpi_match_device_ids);
472
473 static void acpi_free_ids(struct acpi_device *device)
474 {
475         struct acpi_hardware_id *id, *tmp;
476
477         list_for_each_entry_safe(id, tmp, &device->pnp.ids, list) {
478                 kfree(id->id);
479                 kfree(id);
480         }
481 }
482
483 static void acpi_device_release(struct device *dev)
484 {
485         struct acpi_device *acpi_dev = to_acpi_device(dev);
486
487         acpi_free_ids(acpi_dev);
488         kfree(acpi_dev->pnp.unique_id);
489         kfree(acpi_dev);
490 }
491
492 static int acpi_bus_match(struct device *dev, struct device_driver *drv)
493 {
494         struct acpi_device *acpi_dev = to_acpi_device(dev);
495         struct acpi_driver *acpi_drv = to_acpi_driver(drv);
496
497         return acpi_dev->flags.match_driver
498                 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
499 }
500
501 static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
502 {
503         struct acpi_device *acpi_dev = to_acpi_device(dev);
504         int len;
505
506         if (list_empty(&acpi_dev->pnp.ids))
507                 return 0;
508
509         if (add_uevent_var(env, "MODALIAS="))
510                 return -ENOMEM;
511         len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
512                               sizeof(env->buf) - env->buflen);
513         if (len >= (sizeof(env->buf) - env->buflen))
514                 return -ENOMEM;
515         env->buflen += len;
516         return 0;
517 }
518
519 static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
520 {
521         struct acpi_device *device = data;
522
523         device->driver->ops.notify(device, event);
524 }
525
526 static acpi_status acpi_device_notify_fixed(void *data)
527 {
528         struct acpi_device *device = data;
529
530         /* Fixed hardware devices have no handles */
531         acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
532         return AE_OK;
533 }
534
535 static int acpi_device_install_notify_handler(struct acpi_device *device)
536 {
537         acpi_status status;
538
539         if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
540                 status =
541                     acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
542                                                      acpi_device_notify_fixed,
543                                                      device);
544         else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
545                 status =
546                     acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
547                                                      acpi_device_notify_fixed,
548                                                      device);
549         else
550                 status = acpi_install_notify_handler(device->handle,
551                                                      ACPI_DEVICE_NOTIFY,
552                                                      acpi_device_notify,
553                                                      device);
554
555         if (ACPI_FAILURE(status))
556                 return -EINVAL;
557         return 0;
558 }
559
560 static void acpi_device_remove_notify_handler(struct acpi_device *device)
561 {
562         if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
563                 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
564                                                 acpi_device_notify_fixed);
565         else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
566                 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
567                                                 acpi_device_notify_fixed);
568         else
569                 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
570                                            acpi_device_notify);
571 }
572
573 static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
574 static int acpi_device_probe(struct device * dev)
575 {
576         struct acpi_device *acpi_dev = to_acpi_device(dev);
577         struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
578         int ret;
579
580         ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
581         if (!ret) {
582                 if (acpi_drv->ops.notify) {
583                         ret = acpi_device_install_notify_handler(acpi_dev);
584                         if (ret) {
585                                 if (acpi_drv->ops.remove)
586                                         acpi_drv->ops.remove(acpi_dev,
587                                                      acpi_dev->removal_type);
588                                 return ret;
589                         }
590                 }
591
592                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
593                         "Found driver [%s] for device [%s]\n",
594                         acpi_drv->name, acpi_dev->pnp.bus_id));
595                 get_device(dev);
596         }
597         return ret;
598 }
599
600 static int acpi_device_remove(struct device * dev)
601 {
602         struct acpi_device *acpi_dev = to_acpi_device(dev);
603         struct acpi_driver *acpi_drv = acpi_dev->driver;
604
605         if (acpi_drv) {
606                 if (acpi_drv->ops.notify)
607                         acpi_device_remove_notify_handler(acpi_dev);
608                 if (acpi_drv->ops.remove)
609                         acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
610         }
611         acpi_dev->driver = NULL;
612         acpi_dev->driver_data = NULL;
613
614         put_device(dev);
615         return 0;
616 }
617
618 struct bus_type acpi_bus_type = {
619         .name           = "acpi",
620         .match          = acpi_bus_match,
621         .probe          = acpi_device_probe,
622         .remove         = acpi_device_remove,
623         .uevent         = acpi_device_uevent,
624 };
625
626 static int acpi_device_register(struct acpi_device *device)
627 {
628         int result;
629         struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
630         int found = 0;
631
632         /*
633          * Linkage
634          * -------
635          * Link this device to its parent and siblings.
636          */
637         INIT_LIST_HEAD(&device->children);
638         INIT_LIST_HEAD(&device->node);
639         INIT_LIST_HEAD(&device->wakeup_list);
640         INIT_LIST_HEAD(&device->physical_node_list);
641         mutex_init(&device->physical_node_lock);
642
643         new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
644         if (!new_bus_id) {
645                 printk(KERN_ERR PREFIX "Memory allocation error\n");
646                 return -ENOMEM;
647         }
648
649         mutex_lock(&acpi_device_lock);
650         /*
651          * Find suitable bus_id and instance number in acpi_bus_id_list
652          * If failed, create one and link it into acpi_bus_id_list
653          */
654         list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
655                 if (!strcmp(acpi_device_bus_id->bus_id,
656                             acpi_device_hid(device))) {
657                         acpi_device_bus_id->instance_no++;
658                         found = 1;
659                         kfree(new_bus_id);
660                         break;
661                 }
662         }
663         if (!found) {
664                 acpi_device_bus_id = new_bus_id;
665                 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
666                 acpi_device_bus_id->instance_no = 0;
667                 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
668         }
669         dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
670
671         if (device->parent)
672                 list_add_tail(&device->node, &device->parent->children);
673
674         if (device->wakeup.flags.valid)
675                 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
676         mutex_unlock(&acpi_device_lock);
677
678         if (device->parent)
679                 device->dev.parent = &device->parent->dev;
680         device->dev.bus = &acpi_bus_type;
681         device->dev.release = &acpi_device_release;
682         result = device_register(&device->dev);
683         if (result) {
684                 dev_err(&device->dev, "Error registering device\n");
685                 goto end;
686         }
687
688         result = acpi_device_setup_files(device);
689         if (result)
690                 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
691                        dev_name(&device->dev));
692
693         device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
694         return 0;
695 end:
696         mutex_lock(&acpi_device_lock);
697         if (device->parent)
698                 list_del(&device->node);
699         list_del(&device->wakeup_list);
700         mutex_unlock(&acpi_device_lock);
701         return result;
702 }
703
704 static void acpi_device_unregister(struct acpi_device *device, int type)
705 {
706         mutex_lock(&acpi_device_lock);
707         if (device->parent)
708                 list_del(&device->node);
709
710         list_del(&device->wakeup_list);
711         mutex_unlock(&acpi_device_lock);
712
713         acpi_detach_data(device->handle, acpi_bus_data_handler);
714
715         acpi_device_remove_files(device);
716         device_unregister(&device->dev);
717 }
718
719 /* --------------------------------------------------------------------------
720                                  Driver Management
721    -------------------------------------------------------------------------- */
722 /**
723  * acpi_bus_driver_init - add a device to a driver
724  * @device: the device to add and initialize
725  * @driver: driver for the device
726  *
727  * Used to initialize a device via its device driver.  Called whenever a
728  * driver is bound to a device.  Invokes the driver's add() ops.
729  */
730 static int
731 acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
732 {
733         int result = 0;
734
735         if (!device || !driver)
736                 return -EINVAL;
737
738         if (!driver->ops.add)
739                 return -ENOSYS;
740
741         result = driver->ops.add(device);
742         if (result) {
743                 device->driver = NULL;
744                 device->driver_data = NULL;
745                 return result;
746         }
747
748         device->driver = driver;
749
750         /*
751          * TBD - Configuration Management: Assign resources to device based
752          * upon possible configuration and currently allocated resources.
753          */
754
755         ACPI_DEBUG_PRINT((ACPI_DB_INFO,
756                           "Driver successfully bound to device\n"));
757         return 0;
758 }
759
760 /**
761  * acpi_bus_register_driver - register a driver with the ACPI bus
762  * @driver: driver being registered
763  *
764  * Registers a driver with the ACPI bus.  Searches the namespace for all
765  * devices that match the driver's criteria and binds.  Returns zero for
766  * success or a negative error status for failure.
767  */
768 int acpi_bus_register_driver(struct acpi_driver *driver)
769 {
770         int ret;
771
772         if (acpi_disabled)
773                 return -ENODEV;
774         driver->drv.name = driver->name;
775         driver->drv.bus = &acpi_bus_type;
776         driver->drv.owner = driver->owner;
777
778         ret = driver_register(&driver->drv);
779         return ret;
780 }
781
782 EXPORT_SYMBOL(acpi_bus_register_driver);
783
784 /**
785  * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
786  * @driver: driver to unregister
787  *
788  * Unregisters a driver with the ACPI bus.  Searches the namespace for all
789  * devices that match the driver's criteria and unbinds.
790  */
791 void acpi_bus_unregister_driver(struct acpi_driver *driver)
792 {
793         driver_unregister(&driver->drv);
794 }
795
796 EXPORT_SYMBOL(acpi_bus_unregister_driver);
797
798 /* --------------------------------------------------------------------------
799                                  Device Enumeration
800    -------------------------------------------------------------------------- */
801 static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
802 {
803         acpi_status status;
804         int ret;
805         struct acpi_device *device;
806
807         /*
808          * Fixed hardware devices do not appear in the namespace and do not
809          * have handles, but we fabricate acpi_devices for them, so we have
810          * to deal with them specially.
811          */
812         if (handle == NULL)
813                 return acpi_root;
814
815         do {
816                 status = acpi_get_parent(handle, &handle);
817                 if (status == AE_NULL_ENTRY)
818                         return NULL;
819                 if (ACPI_FAILURE(status))
820                         return acpi_root;
821
822                 ret = acpi_bus_get_device(handle, &device);
823                 if (ret == 0)
824                         return device;
825         } while (1);
826 }
827
828 acpi_status
829 acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
830 {
831         acpi_status status;
832         acpi_handle tmp;
833         struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
834         union acpi_object *obj;
835
836         status = acpi_get_handle(handle, "_EJD", &tmp);
837         if (ACPI_FAILURE(status))
838                 return status;
839
840         status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
841         if (ACPI_SUCCESS(status)) {
842                 obj = buffer.pointer;
843                 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
844                                          ejd);
845                 kfree(buffer.pointer);
846         }
847         return status;
848 }
849 EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
850
851 void acpi_bus_data_handler(acpi_handle handle, void *context)
852 {
853
854         /* TBD */
855
856         return;
857 }
858
859 static int acpi_bus_get_perf_flags(struct acpi_device *device)
860 {
861         device->performance.state = ACPI_STATE_UNKNOWN;
862         return 0;
863 }
864
865 static acpi_status
866 acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
867                                              struct acpi_device_wakeup *wakeup)
868 {
869         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
870         union acpi_object *package = NULL;
871         union acpi_object *element = NULL;
872         acpi_status status;
873         int i = 0;
874
875         if (!wakeup)
876                 return AE_BAD_PARAMETER;
877
878         /* _PRW */
879         status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
880         if (ACPI_FAILURE(status)) {
881                 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
882                 return status;
883         }
884
885         package = (union acpi_object *)buffer.pointer;
886
887         if (!package || (package->package.count < 2)) {
888                 status = AE_BAD_DATA;
889                 goto out;
890         }
891
892         element = &(package->package.elements[0]);
893         if (!element) {
894                 status = AE_BAD_DATA;
895                 goto out;
896         }
897         if (element->type == ACPI_TYPE_PACKAGE) {
898                 if ((element->package.count < 2) ||
899                     (element->package.elements[0].type !=
900                      ACPI_TYPE_LOCAL_REFERENCE)
901                     || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) {
902                         status = AE_BAD_DATA;
903                         goto out;
904                 }
905                 wakeup->gpe_device =
906                     element->package.elements[0].reference.handle;
907                 wakeup->gpe_number =
908                     (u32) element->package.elements[1].integer.value;
909         } else if (element->type == ACPI_TYPE_INTEGER) {
910                 wakeup->gpe_device = NULL;
911                 wakeup->gpe_number = element->integer.value;
912         } else {
913                 status = AE_BAD_DATA;
914                 goto out;
915         }
916
917         element = &(package->package.elements[1]);
918         if (element->type != ACPI_TYPE_INTEGER) {
919                 status = AE_BAD_DATA;
920                 goto out;
921         }
922         wakeup->sleep_state = element->integer.value;
923
924         if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
925                 status = AE_NO_MEMORY;
926                 goto out;
927         }
928         wakeup->resources.count = package->package.count - 2;
929         for (i = 0; i < wakeup->resources.count; i++) {
930                 element = &(package->package.elements[i + 2]);
931                 if (element->type != ACPI_TYPE_LOCAL_REFERENCE) {
932                         status = AE_BAD_DATA;
933                         goto out;
934                 }
935
936                 wakeup->resources.handles[i] = element->reference.handle;
937         }
938
939         acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
940
941  out:
942         kfree(buffer.pointer);
943
944         return status;
945 }
946
947 static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
948 {
949         struct acpi_device_id button_device_ids[] = {
950                 {"PNP0C0C", 0},
951                 {"PNP0C0D", 0},
952                 {"PNP0C0E", 0},
953                 {"", 0},
954         };
955         acpi_status status;
956         acpi_event_status event_status;
957
958         device->wakeup.flags.notifier_present = 0;
959
960         /* Power button, Lid switch always enable wakeup */
961         if (!acpi_match_device_ids(device, button_device_ids)) {
962                 device->wakeup.flags.run_wake = 1;
963                 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
964                         /* Do not use Lid/sleep button for S5 wakeup */
965                         if (device->wakeup.sleep_state == ACPI_STATE_S5)
966                                 device->wakeup.sleep_state = ACPI_STATE_S4;
967                 }
968                 device_set_wakeup_capable(&device->dev, true);
969                 return;
970         }
971
972         status = acpi_get_gpe_status(device->wakeup.gpe_device,
973                                         device->wakeup.gpe_number,
974                                                 &event_status);
975         if (status == AE_OK)
976                 device->wakeup.flags.run_wake =
977                                 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
978 }
979
980 static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
981 {
982         acpi_handle temp;
983         acpi_status status = 0;
984         int psw_error;
985
986         /* Presence of _PRW indicates wake capable */
987         status = acpi_get_handle(device->handle, "_PRW", &temp);
988         if (ACPI_FAILURE(status))
989                 return;
990
991         status = acpi_bus_extract_wakeup_device_power_package(device->handle,
992                                                               &device->wakeup);
993         if (ACPI_FAILURE(status)) {
994                 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
995                 return;
996         }
997
998         device->wakeup.flags.valid = 1;
999         device->wakeup.prepare_count = 0;
1000         acpi_bus_set_run_wake_flags(device);
1001         /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1002          * system for the ACPI device with the _PRW object.
1003          * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1004          * So it is necessary to call _DSW object first. Only when it is not
1005          * present will the _PSW object used.
1006          */
1007         psw_error = acpi_device_sleep_wake(device, 0, 0, 0);
1008         if (psw_error)
1009                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1010                                 "error in _DSW or _PSW evaluation\n"));
1011 }
1012
1013 static void acpi_bus_add_power_resource(acpi_handle handle);
1014
1015 static int acpi_bus_get_power_flags(struct acpi_device *device)
1016 {
1017         acpi_status status = 0;
1018         acpi_handle handle = NULL;
1019         u32 i = 0;
1020
1021
1022         /*
1023          * Power Management Flags
1024          */
1025         status = acpi_get_handle(device->handle, "_PSC", &handle);
1026         if (ACPI_SUCCESS(status))
1027                 device->power.flags.explicit_get = 1;
1028         status = acpi_get_handle(device->handle, "_IRC", &handle);
1029         if (ACPI_SUCCESS(status))
1030                 device->power.flags.inrush_current = 1;
1031
1032         /*
1033          * Enumerate supported power management states
1034          */
1035         for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
1036                 struct acpi_device_power_state *ps = &device->power.states[i];
1037                 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
1038
1039                 /* Evaluate "_PRx" to se if power resources are referenced */
1040                 acpi_evaluate_reference(device->handle, object_name, NULL,
1041                                         &ps->resources);
1042                 if (ps->resources.count) {
1043                         int j;
1044
1045                         device->power.flags.power_resources = 1;
1046                         for (j = 0; j < ps->resources.count; j++)
1047                                 acpi_bus_add_power_resource(ps->resources.handles[j]);
1048                 }
1049
1050                 /* Evaluate "_PSx" to see if we can do explicit sets */
1051                 object_name[2] = 'S';
1052                 status = acpi_get_handle(device->handle, object_name, &handle);
1053                 if (ACPI_SUCCESS(status))
1054                         ps->flags.explicit_set = 1;
1055
1056                 /*
1057                  * State is valid if there are means to put the device into it.
1058                  * D3hot is only valid if _PR3 present.
1059                  */
1060                 if (ps->resources.count ||
1061                     (ps->flags.explicit_set && i < ACPI_STATE_D3_HOT)) {
1062                         ps->flags.valid = 1;
1063                         ps->flags.os_accessible = 1;
1064                 }
1065
1066                 ps->power = -1; /* Unknown - driver assigned */
1067                 ps->latency = -1;       /* Unknown - driver assigned */
1068         }
1069
1070         /* Set defaults for D0 and D3 states (always valid) */
1071         device->power.states[ACPI_STATE_D0].flags.valid = 1;
1072         device->power.states[ACPI_STATE_D0].power = 100;
1073         device->power.states[ACPI_STATE_D3].flags.valid = 1;
1074         device->power.states[ACPI_STATE_D3].power = 0;
1075
1076         /* Set D3cold's explicit_set flag if _PS3 exists. */
1077         if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1078                 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1079
1080         /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1081         if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1082                         device->power.flags.power_resources)
1083                 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1084
1085         acpi_bus_init_power(device);
1086
1087         return 0;
1088 }
1089
1090 static int acpi_bus_get_flags(struct acpi_device *device)
1091 {
1092         acpi_status status = AE_OK;
1093         acpi_handle temp = NULL;
1094
1095
1096         /* Presence of _STA indicates 'dynamic_status' */
1097         status = acpi_get_handle(device->handle, "_STA", &temp);
1098         if (ACPI_SUCCESS(status))
1099                 device->flags.dynamic_status = 1;
1100
1101         /* Presence of _RMV indicates 'removable' */
1102         status = acpi_get_handle(device->handle, "_RMV", &temp);
1103         if (ACPI_SUCCESS(status))
1104                 device->flags.removable = 1;
1105
1106         /* Presence of _EJD|_EJ0 indicates 'ejectable' */
1107         status = acpi_get_handle(device->handle, "_EJD", &temp);
1108         if (ACPI_SUCCESS(status))
1109                 device->flags.ejectable = 1;
1110         else {
1111                 status = acpi_get_handle(device->handle, "_EJ0", &temp);
1112                 if (ACPI_SUCCESS(status))
1113                         device->flags.ejectable = 1;
1114         }
1115
1116         /* Power resources cannot be power manageable. */
1117         if (device->device_type == ACPI_BUS_TYPE_POWER)
1118                 return 0;
1119
1120         /* Presence of _PS0|_PR0 indicates 'power manageable' */
1121         status = acpi_get_handle(device->handle, "_PS0", &temp);
1122         if (ACPI_FAILURE(status))
1123                 status = acpi_get_handle(device->handle, "_PR0", &temp);
1124         if (ACPI_SUCCESS(status))
1125                 device->flags.power_manageable = 1;
1126
1127         /* TBD: Performance management */
1128
1129         return 0;
1130 }
1131
1132 static void acpi_device_get_busid(struct acpi_device *device)
1133 {
1134         char bus_id[5] = { '?', 0 };
1135         struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1136         int i = 0;
1137
1138         /*
1139          * Bus ID
1140          * ------
1141          * The device's Bus ID is simply the object name.
1142          * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1143          */
1144         if (ACPI_IS_ROOT_DEVICE(device)) {
1145                 strcpy(device->pnp.bus_id, "ACPI");
1146                 return;
1147         }
1148
1149         switch (device->device_type) {
1150         case ACPI_BUS_TYPE_POWER_BUTTON:
1151                 strcpy(device->pnp.bus_id, "PWRF");
1152                 break;
1153         case ACPI_BUS_TYPE_SLEEP_BUTTON:
1154                 strcpy(device->pnp.bus_id, "SLPF");
1155                 break;
1156         default:
1157                 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
1158                 /* Clean up trailing underscores (if any) */
1159                 for (i = 3; i > 1; i--) {
1160                         if (bus_id[i] == '_')
1161                                 bus_id[i] = '\0';
1162                         else
1163                                 break;
1164                 }
1165                 strcpy(device->pnp.bus_id, bus_id);
1166                 break;
1167         }
1168 }
1169
1170 /*
1171  * acpi_bay_match - see if a device is an ejectable driver bay
1172  *
1173  * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1174  * then we can safely call it an ejectable drive bay
1175  */
1176 static int acpi_bay_match(struct acpi_device *device){
1177         acpi_status status;
1178         acpi_handle handle;
1179         acpi_handle tmp;
1180         acpi_handle phandle;
1181
1182         handle = device->handle;
1183
1184         status = acpi_get_handle(handle, "_EJ0", &tmp);
1185         if (ACPI_FAILURE(status))
1186                 return -ENODEV;
1187
1188         if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) ||
1189                 (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) ||
1190                 (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) ||
1191                 (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp))))
1192                 return 0;
1193
1194         if (acpi_get_parent(handle, &phandle))
1195                 return -ENODEV;
1196
1197         if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) ||
1198                 (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) ||
1199                 (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) ||
1200                 (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp))))
1201                 return 0;
1202
1203         return -ENODEV;
1204 }
1205
1206 /*
1207  * acpi_dock_match - see if a device has a _DCK method
1208  */
1209 static int acpi_dock_match(struct acpi_device *device)
1210 {
1211         acpi_handle tmp;
1212         return acpi_get_handle(device->handle, "_DCK", &tmp);
1213 }
1214
1215 const char *acpi_device_hid(struct acpi_device *device)
1216 {
1217         struct acpi_hardware_id *hid;
1218
1219         if (list_empty(&device->pnp.ids))
1220                 return dummy_hid;
1221
1222         hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1223         return hid->id;
1224 }
1225 EXPORT_SYMBOL(acpi_device_hid);
1226
1227 static void acpi_add_id(struct acpi_device *device, const char *dev_id)
1228 {
1229         struct acpi_hardware_id *id;
1230
1231         id = kmalloc(sizeof(*id), GFP_KERNEL);
1232         if (!id)
1233                 return;
1234
1235         id->id = kstrdup(dev_id, GFP_KERNEL);
1236         if (!id->id) {
1237                 kfree(id);
1238                 return;
1239         }
1240
1241         list_add_tail(&id->list, &device->pnp.ids);
1242 }
1243
1244 /*
1245  * Old IBM workstations have a DSDT bug wherein the SMBus object
1246  * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1247  * prefix.  Work around this.
1248  */
1249 static int acpi_ibm_smbus_match(struct acpi_device *device)
1250 {
1251         acpi_handle h_dummy;
1252         struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
1253         int result;
1254
1255         if (!dmi_name_in_vendors("IBM"))
1256                 return -ENODEV;
1257
1258         /* Look for SMBS object */
1259         result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path);
1260         if (result)
1261                 return result;
1262
1263         if (strcmp("SMBS", path.pointer)) {
1264                 result = -ENODEV;
1265                 goto out;
1266         }
1267
1268         /* Does it have the necessary (but misnamed) methods? */
1269         result = -ENODEV;
1270         if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) &&
1271             ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) &&
1272             ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy)))
1273                 result = 0;
1274 out:
1275         kfree(path.pointer);
1276         return result;
1277 }
1278
1279 static void acpi_device_set_id(struct acpi_device *device)
1280 {
1281         acpi_status status;
1282         struct acpi_device_info *info;
1283         struct acpi_pnp_device_id_list *cid_list;
1284         int i;
1285
1286         switch (device->device_type) {
1287         case ACPI_BUS_TYPE_DEVICE:
1288                 if (ACPI_IS_ROOT_DEVICE(device)) {
1289                         acpi_add_id(device, ACPI_SYSTEM_HID);
1290                         break;
1291                 }
1292
1293                 status = acpi_get_object_info(device->handle, &info);
1294                 if (ACPI_FAILURE(status)) {
1295                         printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__);
1296                         return;
1297                 }
1298
1299                 if (info->valid & ACPI_VALID_HID)
1300                         acpi_add_id(device, info->hardware_id.string);
1301                 if (info->valid & ACPI_VALID_CID) {
1302                         cid_list = &info->compatible_id_list;
1303                         for (i = 0; i < cid_list->count; i++)
1304                                 acpi_add_id(device, cid_list->ids[i].string);
1305                 }
1306                 if (info->valid & ACPI_VALID_ADR) {
1307                         device->pnp.bus_address = info->address;
1308                         device->flags.bus_address = 1;
1309                 }
1310                 if (info->valid & ACPI_VALID_UID)
1311                         device->pnp.unique_id = kstrdup(info->unique_id.string,
1312                                                         GFP_KERNEL);
1313
1314                 kfree(info);
1315
1316                 /*
1317                  * Some devices don't reliably have _HIDs & _CIDs, so add
1318                  * synthetic HIDs to make sure drivers can find them.
1319                  */
1320                 if (acpi_is_video_device(device))
1321                         acpi_add_id(device, ACPI_VIDEO_HID);
1322                 else if (ACPI_SUCCESS(acpi_bay_match(device)))
1323                         acpi_add_id(device, ACPI_BAY_HID);
1324                 else if (ACPI_SUCCESS(acpi_dock_match(device)))
1325                         acpi_add_id(device, ACPI_DOCK_HID);
1326                 else if (!acpi_ibm_smbus_match(device))
1327                         acpi_add_id(device, ACPI_SMBUS_IBM_HID);
1328                 else if (!acpi_device_hid(device) &&
1329                          ACPI_IS_ROOT_DEVICE(device->parent)) {
1330                         acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1331                         strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
1332                         strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
1333                 }
1334
1335                 break;
1336         case ACPI_BUS_TYPE_POWER:
1337                 acpi_add_id(device, ACPI_POWER_HID);
1338                 break;
1339         case ACPI_BUS_TYPE_PROCESSOR:
1340                 acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID);
1341                 break;
1342         case ACPI_BUS_TYPE_THERMAL:
1343                 acpi_add_id(device, ACPI_THERMAL_HID);
1344                 break;
1345         case ACPI_BUS_TYPE_POWER_BUTTON:
1346                 acpi_add_id(device, ACPI_BUTTON_HID_POWERF);
1347                 break;
1348         case ACPI_BUS_TYPE_SLEEP_BUTTON:
1349                 acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF);
1350                 break;
1351         }
1352 }
1353
1354 static int acpi_device_set_context(struct acpi_device *device)
1355 {
1356         acpi_status status;
1357
1358         /*
1359          * Context
1360          * -------
1361          * Attach this 'struct acpi_device' to the ACPI object.  This makes
1362          * resolutions from handle->device very efficient.  Fixed hardware
1363          * devices have no handles, so we skip them.
1364          */
1365         if (!device->handle)
1366                 return 0;
1367
1368         status = acpi_attach_data(device->handle,
1369                                   acpi_bus_data_handler, device);
1370         if (ACPI_SUCCESS(status))
1371                 return 0;
1372
1373         printk(KERN_ERR PREFIX "Error attaching device data\n");
1374         return -ENODEV;
1375 }
1376
1377 static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
1378 {
1379         if (!dev)
1380                 return -EINVAL;
1381
1382         dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
1383         device_release_driver(&dev->dev);
1384
1385         if (!rmdevice)
1386                 return 0;
1387
1388         /*
1389          * unbind _ADR-Based Devices when hot removal
1390          */
1391         if (dev->flags.bus_address) {
1392                 if ((dev->parent) && (dev->parent->ops.unbind))
1393                         dev->parent->ops.unbind(dev);
1394         }
1395         acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
1396
1397         return 0;
1398 }
1399
1400 /*
1401  * acpi_hot_add_bind - Bind _ADR-based devices on hot-add.
1402  * @device: ACPI device node to bind.
1403  */
1404 static void acpi_hot_add_bind(struct acpi_device *device)
1405 {
1406         if (device->flags.bus_address
1407             && device->parent && device->parent->ops.bind)
1408                 device->parent->ops.bind(device);
1409 }
1410
1411 static int acpi_add_single_object(struct acpi_device **child,
1412                                   acpi_handle handle, int type,
1413                                   unsigned long long sta, bool match_driver)
1414 {
1415         int result;
1416         struct acpi_device *device;
1417         struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1418
1419         device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
1420         if (!device) {
1421                 printk(KERN_ERR PREFIX "Memory allocation error\n");
1422                 return -ENOMEM;
1423         }
1424
1425         INIT_LIST_HEAD(&device->pnp.ids);
1426         device->device_type = type;
1427         device->handle = handle;
1428         device->parent = acpi_bus_get_parent(handle);
1429         STRUCT_TO_INT(device->status) = sta;
1430
1431         acpi_device_get_busid(device);
1432
1433         /*
1434          * Flags
1435          * -----
1436          * Note that we only look for object handles -- cannot evaluate objects
1437          * until we know the device is present and properly initialized.
1438          */
1439         result = acpi_bus_get_flags(device);
1440         if (result)
1441                 goto end;
1442
1443         /*
1444          * Initialize Device
1445          * -----------------
1446          * TBD: Synch with Core's enumeration/initialization process.
1447          */
1448         acpi_device_set_id(device);
1449
1450         /*
1451          * Power Management
1452          * ----------------
1453          */
1454         if (device->flags.power_manageable) {
1455                 result = acpi_bus_get_power_flags(device);
1456                 if (result)
1457                         goto end;
1458         }
1459
1460         /*
1461          * Wakeup device management
1462          *-----------------------
1463          */
1464         acpi_bus_get_wakeup_device_flags(device);
1465
1466         /*
1467          * Performance Management
1468          * ----------------------
1469          */
1470         if (device->flags.performance_manageable) {
1471                 result = acpi_bus_get_perf_flags(device);
1472                 if (result)
1473                         goto end;
1474         }
1475
1476         if ((result = acpi_device_set_context(device)))
1477                 goto end;
1478
1479         device->flags.match_driver = match_driver;
1480         result = acpi_device_register(device);
1481
1482         if (device->flags.match_driver)
1483                 acpi_hot_add_bind(device);
1484
1485 end:
1486         if (!result) {
1487                 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1488                 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1489                         "Adding %s [%s] parent %s\n", dev_name(&device->dev),
1490                          (char *) buffer.pointer,
1491                          device->parent ? dev_name(&device->parent->dev) :
1492                                           "(null)"));
1493                 kfree(buffer.pointer);
1494                 *child = device;
1495         } else
1496                 acpi_device_release(&device->dev);
1497
1498         return result;
1499 }
1500
1501 #define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \
1502                           ACPI_STA_DEVICE_UI      | ACPI_STA_DEVICE_FUNCTIONING)
1503
1504 static void acpi_bus_add_power_resource(acpi_handle handle)
1505 {
1506         struct acpi_device *device = NULL;
1507
1508         acpi_bus_get_device(handle, &device);
1509         if (!device)
1510                 acpi_add_single_object(&device, handle, ACPI_BUS_TYPE_POWER,
1511                                         ACPI_STA_DEFAULT, true);
1512 }
1513
1514 static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1515                                     unsigned long long *sta)
1516 {
1517         acpi_status status;
1518         acpi_object_type acpi_type;
1519
1520         status = acpi_get_type(handle, &acpi_type);
1521         if (ACPI_FAILURE(status))
1522                 return -ENODEV;
1523
1524         switch (acpi_type) {
1525         case ACPI_TYPE_ANY:             /* for ACPI_ROOT_OBJECT */
1526         case ACPI_TYPE_DEVICE:
1527                 *type = ACPI_BUS_TYPE_DEVICE;
1528                 status = acpi_bus_get_status_handle(handle, sta);
1529                 if (ACPI_FAILURE(status))
1530                         return -ENODEV;
1531                 break;
1532         case ACPI_TYPE_PROCESSOR:
1533                 *type = ACPI_BUS_TYPE_PROCESSOR;
1534                 status = acpi_bus_get_status_handle(handle, sta);
1535                 if (ACPI_FAILURE(status))
1536                         return -ENODEV;
1537                 break;
1538         case ACPI_TYPE_THERMAL:
1539                 *type = ACPI_BUS_TYPE_THERMAL;
1540                 *sta = ACPI_STA_DEFAULT;
1541                 break;
1542         case ACPI_TYPE_POWER:
1543                 *type = ACPI_BUS_TYPE_POWER;
1544                 *sta = ACPI_STA_DEFAULT;
1545                 break;
1546         default:
1547                 return -ENODEV;
1548         }
1549
1550         return 0;
1551 }
1552
1553 static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1554                                       void *not_used, void **return_value)
1555 {
1556         struct acpi_device *device = NULL;
1557         int type;
1558         unsigned long long sta;
1559         acpi_status status;
1560         int result;
1561
1562         acpi_bus_get_device(handle, &device);
1563         if (device)
1564                 goto out;
1565
1566         result = acpi_bus_type_and_status(handle, &type, &sta);
1567         if (result)
1568                 return AE_OK;
1569
1570         if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
1571             !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
1572                 struct acpi_device_wakeup wakeup;
1573                 acpi_handle temp;
1574
1575                 status = acpi_get_handle(handle, "_PRW", &temp);
1576                 if (ACPI_SUCCESS(status))
1577                         acpi_bus_extract_wakeup_device_power_package(handle,
1578                                                                      &wakeup);
1579                 return AE_CTRL_DEPTH;
1580         }
1581
1582         acpi_add_single_object(&device, handle, type, sta, false);
1583         if (!device)
1584                 return AE_CTRL_DEPTH;
1585
1586         device->flags.match_driver = true;
1587         acpi_hot_add_bind(device);
1588
1589  out:
1590         if (!*return_value)
1591                 *return_value = device;
1592
1593         return AE_OK;
1594 }
1595
1596 static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1597                                           void *not_used, void **ret_not_used)
1598 {
1599         acpi_status status = AE_OK;
1600         struct acpi_device *device;
1601         unsigned long long sta_not_used;
1602         int type_not_used;
1603
1604         /*
1605          * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1606          * namespace walks prematurely.
1607          */
1608         if (acpi_bus_type_and_status(handle, &type_not_used, &sta_not_used))
1609                 return AE_OK;
1610
1611         if (acpi_bus_get_device(handle, &device))
1612                 return AE_CTRL_DEPTH;
1613
1614         if (!acpi_match_device_ids(device, acpi_platform_device_ids)) {
1615                 /* This is a known good platform device. */
1616                 acpi_create_platform_device(device);
1617         } else if (device_attach(&device->dev)) {
1618                 status = AE_CTRL_DEPTH;
1619         }
1620         return status;
1621 }
1622
1623 static int acpi_bus_scan(acpi_handle handle, struct acpi_device **child)
1624 {
1625         void *device = NULL;
1626         acpi_status status;
1627         int ret = -ENODEV;
1628
1629         status = acpi_bus_check_add(handle, 0, NULL, &device);
1630         if (ACPI_SUCCESS(status))
1631                 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
1632                                     acpi_bus_check_add, NULL, NULL, &device);
1633
1634         if (!device)
1635                 goto out;
1636
1637         ret = 0;
1638         status = acpi_bus_device_attach(handle, 0, NULL, NULL);
1639         if (ACPI_SUCCESS(status))
1640                 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
1641                                     acpi_bus_device_attach, NULL, NULL, NULL);
1642
1643  out:
1644         if (child)
1645                 *child = device;
1646
1647         return ret;
1648 }
1649
1650 /**
1651  * acpi_bus_add - Add ACPI device node objects in a given namespace scope.
1652  * @handle: Root of the namespace scope to scan.
1653  * @ret: Location to store a return struct acpi_device pointer.
1654  *
1655  * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1656  * found devices.
1657  *
1658  * If no devices were found, -ENODEV is returned, but it does not mean that
1659  * there has been a real error.  There just have been no suitable ACPI objects
1660  * in the table trunk from which the kernel could create a device and add an
1661  * appropriate driver.
1662  *
1663  * If 0 is returned, the memory location pointed to by @ret will be populated
1664  * with a pointer to a struct acpi_device created while scanning the namespace.
1665  * If @handle corresponds to a device node, that will be a pointer to the struct
1666  * acpi_device object corresponding to @handle.  Otherwise, it will be a pointer
1667  * to a struct acpi_device corresponding to one of its descendants.
1668  *
1669  * If an error code is returned, NULL will be stored in the memory location
1670  * pointed to by @ret.
1671  */
1672 int acpi_bus_add(acpi_handle handle, struct acpi_device **ret)
1673 {
1674         int err;
1675
1676         err = acpi_bus_scan(handle, ret);
1677         if (err)
1678                 return err;
1679
1680         acpi_update_all_gpes();
1681         return 0;
1682 }
1683 EXPORT_SYMBOL(acpi_bus_add);
1684
1685 int acpi_bus_trim(struct acpi_device *start, int rmdevice)
1686 {
1687         acpi_status status;
1688         struct acpi_device *parent, *child;
1689         acpi_handle phandle, chandle;
1690         acpi_object_type type;
1691         u32 level = 1;
1692         int err = 0;
1693
1694         parent = start;
1695         phandle = start->handle;
1696         child = chandle = NULL;
1697
1698         while ((level > 0) && parent && (!err)) {
1699                 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
1700                                               chandle, &chandle);
1701
1702                 /*
1703                  * If this scope is exhausted then move our way back up.
1704                  */
1705                 if (ACPI_FAILURE(status)) {
1706                         level--;
1707                         chandle = phandle;
1708                         acpi_get_parent(phandle, &phandle);
1709                         child = parent;
1710                         parent = parent->parent;
1711
1712                         if (level == 0)
1713                                 err = acpi_bus_remove(child, rmdevice);
1714                         else
1715                                 err = acpi_bus_remove(child, 1);
1716
1717                         continue;
1718                 }
1719
1720                 status = acpi_get_type(chandle, &type);
1721                 if (ACPI_FAILURE(status)) {
1722                         continue;
1723                 }
1724                 /*
1725                  * If there is a device corresponding to chandle then
1726                  * parse it (depth-first).
1727                  */
1728                 if (acpi_bus_get_device(chandle, &child) == 0) {
1729                         level++;
1730                         phandle = chandle;
1731                         chandle = NULL;
1732                         parent = child;
1733                 }
1734                 continue;
1735         }
1736         return err;
1737 }
1738 EXPORT_SYMBOL_GPL(acpi_bus_trim);
1739
1740 static int acpi_bus_scan_fixed(void)
1741 {
1742         int result = 0;
1743         struct acpi_device *device = NULL;
1744
1745         /*
1746          * Enumerate all fixed-feature devices.
1747          */
1748         if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) {
1749                 result = acpi_add_single_object(&device, NULL,
1750                                                 ACPI_BUS_TYPE_POWER_BUTTON,
1751                                                 ACPI_STA_DEFAULT, true);
1752                 device_init_wakeup(&device->dev, true);
1753         }
1754
1755         if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) {
1756                 result = acpi_add_single_object(&device, NULL,
1757                                                 ACPI_BUS_TYPE_SLEEP_BUTTON,
1758                                                 ACPI_STA_DEFAULT, true);
1759         }
1760
1761         return result;
1762 }
1763
1764 int __init acpi_scan_init(void)
1765 {
1766         int result;
1767
1768         result = bus_register(&acpi_bus_type);
1769         if (result) {
1770                 /* We don't want to quit even if we failed to add suspend/resume */
1771                 printk(KERN_ERR PREFIX "Could not register bus type\n");
1772         }
1773
1774         acpi_power_init();
1775         acpi_pci_root_init();
1776
1777         /*
1778          * Enumerate devices in the ACPI namespace.
1779          */
1780         result = acpi_bus_scan(ACPI_ROOT_OBJECT, &acpi_root);
1781
1782         if (!result)
1783                 result = acpi_bus_scan_fixed();
1784
1785         if (result)
1786                 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
1787         else
1788                 acpi_update_all_gpes();
1789
1790         return result;
1791 }