blob: 06b86faf037f670bf140d827206ae6e382982efc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
Randy Dunlap9b6d97b2006-07-12 02:08:00 -04007#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/acpi.h>
9
10#include <acpi/acpi_drivers.h>
11#include <acpi/acinterp.h> /* for acpi_ex_eisa_id_to_string() */
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#define _COMPONENT ACPI_BUS_COMPONENT
Len Brown4be44fc2005-08-05 00:44:28 -040014ACPI_MODULE_NAME("scan")
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#define STRUCT_TO_INT(s) (*((int*)&s))
Len Brown4be44fc2005-08-05 00:44:28 -040016extern struct acpi_device *acpi_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#define ACPI_BUS_CLASS "system_bus"
19#define ACPI_BUS_HID "ACPI_BUS"
20#define ACPI_BUS_DRIVER_NAME "ACPI Bus Driver"
21#define ACPI_BUS_DEVICE_NAME "System Bus"
22
23static LIST_HEAD(acpi_device_list);
24DEFINE_SPINLOCK(acpi_device_lock);
25LIST_HEAD(acpi_wakeup_device_list);
26
Len Brown4be44fc2005-08-05 00:44:28 -040027static int acpi_eject_operation(acpi_handle handle, int lockable)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
29 struct acpi_object_list arg_list;
30 union acpi_object arg;
31 acpi_status status = AE_OK;
32
33 /*
34 * TBD: evaluate _PS3?
35 */
36
37 if (lockable) {
38 arg_list.count = 1;
39 arg_list.pointer = &arg;
40 arg.type = ACPI_TYPE_INTEGER;
41 arg.integer.value = 0;
42 acpi_evaluate_object(handle, "_LCK", &arg_list, NULL);
43 }
44
45 arg_list.count = 1;
46 arg_list.pointer = &arg;
47 arg.type = ACPI_TYPE_INTEGER;
48 arg.integer.value = 1;
49
50 /*
51 * TBD: _EJD support.
52 */
53
54 status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL);
55 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -040056 return (-ENODEV);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
58
Len Brown4be44fc2005-08-05 00:44:28 -040059 return (0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +080063acpi_eject_store(struct device *d, struct device_attribute *attr,
64 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
Len Brown4be44fc2005-08-05 00:44:28 -040066 int result;
67 int ret = count;
68 int islockable;
69 acpi_status status;
70 acpi_handle handle;
71 acpi_object_type type = 0;
Patrick Mochelf883d9d2006-12-07 20:56:38 +080072 struct acpi_device *acpi_device = to_acpi_device(d);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74 if ((!count) || (buf[0] != '1')) {
75 return -EINVAL;
76 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#ifndef FORCE_EJECT
Patrick Mochelf883d9d2006-12-07 20:56:38 +080078 if (acpi_device->driver == NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 ret = -ENODEV;
80 goto err;
81 }
82#endif
Patrick Mochelf883d9d2006-12-07 20:56:38 +080083 status = acpi_get_type(acpi_device->handle, &type);
84 if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 ret = -ENODEV;
86 goto err;
87 }
88
Patrick Mochelf883d9d2006-12-07 20:56:38 +080089 islockable = acpi_device->flags.lockable;
90 handle = acpi_device->handle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Patrick Mochelf883d9d2006-12-07 20:56:38 +080092 result = acpi_bus_trim(acpi_device, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 if (!result)
95 result = acpi_eject_operation(handle, islockable);
96
97 if (result) {
98 ret = -EBUSY;
99 }
Len Brown4be44fc2005-08-05 00:44:28 -0400100 err:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return ret;
102}
103
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800104static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
105
106static void acpi_device_setup_files(struct acpi_device *dev)
107{
108 acpi_status status;
109 acpi_handle temp;
110
111 /*
112 * If device has _EJ0, 'eject' file is created that is used to trigger
113 * hot-removal function from userland.
114 */
115 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
116 if (ACPI_SUCCESS(status))
117 device_create_file(&dev->dev, &dev_attr_eject);
118}
119
120static void acpi_device_remove_files(struct acpi_device *dev)
121{
122 acpi_status status;
123 acpi_handle temp;
124
125 /*
126 * If device has _EJ0, 'eject' file is created that is used to trigger
127 * hot-removal function from userland.
128 */
129 status = acpi_get_handle(dev->handle, "_EJ0", &temp);
130 if (ACPI_SUCCESS(status))
131 device_remove_file(&dev->dev, &dev_attr_eject);
132}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800134 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 -------------------------------------------------------------------------- */
Patrick Mochel1890a972006-12-07 20:56:31 +0800136static void acpi_device_release(struct device *dev)
137{
138 struct acpi_device *acpi_dev = to_acpi_device(dev);
139
140 kfree(acpi_dev->pnp.cid_list);
141 kfree(acpi_dev);
142}
143
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800144static int acpi_device_suspend(struct device *dev, pm_message_t state)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800145{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800146 struct acpi_device *acpi_dev = to_acpi_device(dev);
147 struct acpi_driver *acpi_drv = acpi_dev->driver;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800148
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800149 if (acpi_drv && acpi_drv->ops.suspend)
150 return acpi_drv->ops.suspend(acpi_dev, state);
151 return 0;
152}
153
154static int acpi_device_resume(struct device *dev)
155{
156 struct acpi_device *acpi_dev = to_acpi_device(dev);
157 struct acpi_driver *acpi_drv = acpi_dev->driver;
158
159 if (acpi_drv && acpi_drv->ops.resume)
160 return acpi_drv->ops.resume(acpi_dev);
161 return 0;
162}
163
164static int acpi_bus_match(struct device *dev, struct device_driver *drv)
165{
166 struct acpi_device *acpi_dev = to_acpi_device(dev);
167 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
168
169 if (acpi_drv->ops.match)
170 return !acpi_drv->ops.match(acpi_dev, acpi_drv);
171 return !acpi_match_ids(acpi_dev, acpi_drv->ids);
172}
173
174static int acpi_device_uevent(struct device *dev, char **envp, int num_envp,
175 char *buffer, int buffer_size)
176{
177 struct acpi_device *acpi_dev = to_acpi_device(dev);
178 int i = 0, length = 0, ret = 0;
179
180 if (acpi_dev->flags.hardware_id)
181 ret = add_uevent_var(envp, num_envp, &i,
182 buffer, buffer_size, &length,
183 "HWID=%s", acpi_dev->pnp.hardware_id);
184 if (ret)
185 return -ENOMEM;
186 if (acpi_dev->flags.compatible_ids) {
187 int j;
188 struct acpi_compatible_id_list *cid_list;
189
190 cid_list = acpi_dev->pnp.cid_list;
191
192 for (j = 0; j < cid_list->count; j++) {
193 ret = add_uevent_var(envp, num_envp, &i, buffer,
194 buffer_size, &length, "COMPTID=%s",
195 cid_list->id[j].value);
196 if (ret)
197 return -ENOMEM;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800198 }
199 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800200
201 envp[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return 0;
203}
204
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800205static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *);
206static int acpi_start_single_object(struct acpi_device *);
207static int acpi_device_probe(struct device * dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800208{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800209 struct acpi_device *acpi_dev = to_acpi_device(dev);
210 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
211 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800213 ret = acpi_bus_driver_init(acpi_dev, acpi_drv);
214 if (!ret) {
Li Shaohuac4168bf2006-12-07 20:56:41 +0800215 if (acpi_dev->bus_ops.acpi_op_start)
216 acpi_start_single_object(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800217 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
218 "Found driver [%s] for device [%s]\n",
219 acpi_drv->name, acpi_dev->pnp.bus_id));
220 get_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800221 }
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800222 return ret;
223}
224
225static int acpi_device_remove(struct device * dev)
226{
227 struct acpi_device *acpi_dev = to_acpi_device(dev);
228 struct acpi_driver *acpi_drv = acpi_dev->driver;
229
230 if (acpi_drv) {
231 if (acpi_drv->ops.stop)
Li Shaohua96333572006-12-07 20:56:46 +0800232 acpi_drv->ops.stop(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800233 if (acpi_drv->ops.remove)
Li Shaohua96333572006-12-07 20:56:46 +0800234 acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800235 }
236 acpi_dev->driver = NULL;
237 acpi_driver_data(dev) = NULL;
238
239 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800240 return 0;
241}
242
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800243static void acpi_device_shutdown(struct device *dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800244{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800245 struct acpi_device *acpi_dev = to_acpi_device(dev);
246 struct acpi_driver *acpi_drv = acpi_dev->driver;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800247
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800248 if (acpi_drv && acpi_drv->ops.shutdown)
249 acpi_drv->ops.shutdown(acpi_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800251 return ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252}
253
Zhang Rui9e89dde2006-12-07 20:56:16 +0800254static struct bus_type acpi_bus_type = {
255 .name = "acpi",
256 .suspend = acpi_device_suspend,
257 .resume = acpi_device_resume,
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800258 .shutdown = acpi_device_shutdown,
259 .match = acpi_bus_match,
260 .probe = acpi_device_probe,
261 .remove = acpi_device_remove,
262 .uevent = acpi_device_uevent,
Zhang Rui9e89dde2006-12-07 20:56:16 +0800263};
264
265static void acpi_device_register(struct acpi_device *device,
266 struct acpi_device *parent)
267{
Zhang Rui9e89dde2006-12-07 20:56:16 +0800268 /*
269 * Linkage
270 * -------
271 * Link this device to its parent and siblings.
272 */
273 INIT_LIST_HEAD(&device->children);
274 INIT_LIST_HEAD(&device->node);
275 INIT_LIST_HEAD(&device->g_list);
276 INIT_LIST_HEAD(&device->wakeup_list);
277
278 spin_lock(&acpi_device_lock);
279 if (device->parent) {
280 list_add_tail(&device->node, &device->parent->children);
281 list_add_tail(&device->g_list, &device->parent->g_list);
282 } else
283 list_add_tail(&device->g_list, &acpi_device_list);
284 if (device->wakeup.flags.valid)
285 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
286 spin_unlock(&acpi_device_lock);
287
Patrick Mochel1890a972006-12-07 20:56:31 +0800288 if (device->parent)
289 device->dev.parent = &parent->dev;
290 device->dev.bus = &acpi_bus_type;
291 device_initialize(&device->dev);
292 sprintf(device->dev.bus_id, "%s", device->pnp.bus_id);
293 device->dev.release = &acpi_device_release;
294 device_add(&device->dev);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800295
296 acpi_device_setup_files(device);
Li Shaohua96333572006-12-07 20:56:46 +0800297 device->removal_type = ACPI_BUS_REMOVAL_NORMAL;
Zhang Rui9e89dde2006-12-07 20:56:16 +0800298}
299
300static void acpi_device_unregister(struct acpi_device *device, int type)
301{
302 spin_lock(&acpi_device_lock);
303 if (device->parent) {
304 list_del(&device->node);
305 list_del(&device->g_list);
306 } else
307 list_del(&device->g_list);
308
309 list_del(&device->wakeup_list);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800310 spin_unlock(&acpi_device_lock);
311
312 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +0800313
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800314 acpi_device_remove_files(device);
Patrick Mochel1890a972006-12-07 20:56:31 +0800315 device_unregister(&device->dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800316}
317
318/* --------------------------------------------------------------------------
319 Driver Management
320 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500322 * acpi_bus_driver_init - add a device to a driver
323 * @device: the device to add and initialize
324 * @driver: driver for the device
325 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * Used to initialize a device via its device driver. Called whenever a
Patrick Mochel1890a972006-12-07 20:56:31 +0800327 * driver is bound to a device. Invokes the driver's add() ops.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
329static int
Len Brown4be44fc2005-08-05 00:44:28 -0400330acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Len Brown4be44fc2005-08-05 00:44:28 -0400332 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 if (!device || !driver)
Patrick Mocheld550d982006-06-27 00:41:40 -0400336 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 if (!driver->ops.add)
Patrick Mocheld550d982006-06-27 00:41:40 -0400339 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 result = driver->ops.add(device);
342 if (result) {
343 device->driver = NULL;
344 acpi_driver_data(device) = NULL;
Patrick Mocheld550d982006-06-27 00:41:40 -0400345 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
347
348 device->driver = driver;
349
350 /*
351 * TBD - Configuration Management: Assign resources to device based
352 * upon possible configuration and currently allocated resources.
353 */
354
Len Brown4be44fc2005-08-05 00:44:28 -0400355 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
356 "Driver successfully bound to device\n"));
Patrick Mocheld550d982006-06-27 00:41:40 -0400357 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700358}
359
Adrian Bunk8713cbe2005-09-02 17:16:48 -0400360static int acpi_start_single_object(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -0700361{
362 int result = 0;
363 struct acpi_driver *driver;
364
Rajesh Shah3fb02732005-04-28 00:25:52 -0700365
366 if (!(driver = device->driver))
Patrick Mocheld550d982006-06-27 00:41:40 -0400367 return 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -0700368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (driver->ops.start) {
370 result = driver->ops.start(device);
371 if (result && driver->ops.remove)
372 driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 }
374
Patrick Mocheld550d982006-06-27 00:41:40 -0400375 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500379 * acpi_bus_register_driver - register a driver with the ACPI bus
380 * @driver: driver being registered
381 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -0500383 * devices that match the driver's criteria and binds. Returns zero for
384 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 */
Len Brown4be44fc2005-08-05 00:44:28 -0400386int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
Patrick Mochel1890a972006-12-07 20:56:31 +0800388 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -0400391 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +0800392 driver->drv.name = driver->name;
393 driver->drv.bus = &acpi_bus_type;
394 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Patrick Mochel1890a972006-12-07 20:56:31 +0800396 ret = driver_register(&driver->drv);
397 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Len Brown4be44fc2005-08-05 00:44:28 -0400400EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -0500403 * acpi_bus_unregister_driver - unregisters a driver with the APIC bus
404 * @driver: driver to unregister
405 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 * Unregisters a driver with the ACPI bus. Searches the namespace for all
407 * devices that match the driver's criteria and unbinds.
408 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -0400409void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Patrick Mochel1890a972006-12-07 20:56:31 +0800411 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
Len Brown4be44fc2005-08-05 00:44:28 -0400413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414EXPORT_SYMBOL(acpi_bus_unregister_driver);
415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/* --------------------------------------------------------------------------
417 Device Enumeration
418 -------------------------------------------------------------------------- */
Len Brownc8f7a622006-07-09 17:22:28 -0400419acpi_status
420acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
421{
422 acpi_status status;
423 acpi_handle tmp;
424 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
425 union acpi_object *obj;
426
427 status = acpi_get_handle(handle, "_EJD", &tmp);
428 if (ACPI_FAILURE(status))
429 return status;
430
431 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
432 if (ACPI_SUCCESS(status)) {
433 obj = buffer.pointer;
434 status = acpi_get_handle(NULL, obj->string.pointer, ejd);
435 kfree(buffer.pointer);
436 }
437 return status;
438}
439EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
440
Zhang Rui9e89dde2006-12-07 20:56:16 +0800441void acpi_bus_data_handler(acpi_handle handle, u32 function, void *context)
442{
443
444 /* TBD */
445
446 return;
447}
448
449int acpi_match_ids(struct acpi_device *device, char *ids)
450{
451 if (device->flags.hardware_id)
452 if (strstr(ids, device->pnp.hardware_id))
453 return 0;
454
455 if (device->flags.compatible_ids) {
456 struct acpi_compatible_id_list *cid_list = device->pnp.cid_list;
457 int i;
458
459 /* compare multiple _CID entries against driver ids */
460 for (i = 0; i < cid_list->count; i++) {
461 if (strstr(ids, cid_list->id[i].value))
462 return 0;
463 }
464 }
465 return -ENOENT;
466}
467
468static int acpi_bus_get_perf_flags(struct acpi_device *device)
469{
470 device->performance.state = ACPI_STATE_UNKNOWN;
471 return 0;
472}
473
474static acpi_status
475acpi_bus_extract_wakeup_device_power_package(struct acpi_device *device,
476 union acpi_object *package)
477{
478 int i = 0;
479 union acpi_object *element = NULL;
480
481 if (!device || !package || (package->package.count < 2))
482 return AE_BAD_PARAMETER;
483
484 element = &(package->package.elements[0]);
485 if (!element)
486 return AE_BAD_PARAMETER;
487 if (element->type == ACPI_TYPE_PACKAGE) {
488 if ((element->package.count < 2) ||
489 (element->package.elements[0].type !=
490 ACPI_TYPE_LOCAL_REFERENCE)
491 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
492 return AE_BAD_DATA;
493 device->wakeup.gpe_device =
494 element->package.elements[0].reference.handle;
495 device->wakeup.gpe_number =
496 (u32) element->package.elements[1].integer.value;
497 } else if (element->type == ACPI_TYPE_INTEGER) {
498 device->wakeup.gpe_number = element->integer.value;
499 } else
500 return AE_BAD_DATA;
501
502 element = &(package->package.elements[1]);
503 if (element->type != ACPI_TYPE_INTEGER) {
504 return AE_BAD_DATA;
505 }
506 device->wakeup.sleep_state = element->integer.value;
507
508 if ((package->package.count - 2) > ACPI_MAX_HANDLES) {
509 return AE_NO_MEMORY;
510 }
511 device->wakeup.resources.count = package->package.count - 2;
512 for (i = 0; i < device->wakeup.resources.count; i++) {
513 element = &(package->package.elements[i + 2]);
514 if (element->type != ACPI_TYPE_ANY) {
515 return AE_BAD_DATA;
516 }
517
518 device->wakeup.resources.handles[i] = element->reference.handle;
519 }
520
521 return AE_OK;
522}
523
524static int acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
525{
526 acpi_status status = 0;
527 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
528 union acpi_object *package = NULL;
529
530
531 /* _PRW */
532 status = acpi_evaluate_object(device->handle, "_PRW", NULL, &buffer);
533 if (ACPI_FAILURE(status)) {
534 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
535 goto end;
536 }
537
538 package = (union acpi_object *)buffer.pointer;
539 status = acpi_bus_extract_wakeup_device_power_package(device, package);
540 if (ACPI_FAILURE(status)) {
541 ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package"));
542 goto end;
543 }
544
545 kfree(buffer.pointer);
546
547 device->wakeup.flags.valid = 1;
548 /* Power button, Lid switch always enable wakeup */
549 if (!acpi_match_ids(device, "PNP0C0D,PNP0C0C,PNP0C0E"))
550 device->wakeup.flags.run_wake = 1;
551
552 end:
553 if (ACPI_FAILURE(status))
554 device->flags.wake_capable = 0;
555 return 0;
556}
557
558static int acpi_bus_get_power_flags(struct acpi_device *device)
559{
560 acpi_status status = 0;
561 acpi_handle handle = NULL;
562 u32 i = 0;
563
564
565 /*
566 * Power Management Flags
567 */
568 status = acpi_get_handle(device->handle, "_PSC", &handle);
569 if (ACPI_SUCCESS(status))
570 device->power.flags.explicit_get = 1;
571 status = acpi_get_handle(device->handle, "_IRC", &handle);
572 if (ACPI_SUCCESS(status))
573 device->power.flags.inrush_current = 1;
574
575 /*
576 * Enumerate supported power management states
577 */
578 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3; i++) {
579 struct acpi_device_power_state *ps = &device->power.states[i];
580 char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' };
581
582 /* Evaluate "_PRx" to se if power resources are referenced */
583 acpi_evaluate_reference(device->handle, object_name, NULL,
584 &ps->resources);
585 if (ps->resources.count) {
586 device->power.flags.power_resources = 1;
587 ps->flags.valid = 1;
588 }
589
590 /* Evaluate "_PSx" to see if we can do explicit sets */
591 object_name[2] = 'S';
592 status = acpi_get_handle(device->handle, object_name, &handle);
593 if (ACPI_SUCCESS(status)) {
594 ps->flags.explicit_set = 1;
595 ps->flags.valid = 1;
596 }
597
598 /* State is valid if we have some power control */
599 if (ps->resources.count || ps->flags.explicit_set)
600 ps->flags.valid = 1;
601
602 ps->power = -1; /* Unknown - driver assigned */
603 ps->latency = -1; /* Unknown - driver assigned */
604 }
605
606 /* Set defaults for D0 and D3 states (always valid) */
607 device->power.states[ACPI_STATE_D0].flags.valid = 1;
608 device->power.states[ACPI_STATE_D0].power = 100;
609 device->power.states[ACPI_STATE_D3].flags.valid = 1;
610 device->power.states[ACPI_STATE_D3].power = 0;
611
612 /* TBD: System wake support and resource requirements. */
613
614 device->power.state = ACPI_STATE_UNKNOWN;
615
616 return 0;
617}
Len Brownc8f7a622006-07-09 17:22:28 -0400618
Len Brown4be44fc2005-08-05 00:44:28 -0400619static int acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620{
Len Brown4be44fc2005-08-05 00:44:28 -0400621 acpi_status status = AE_OK;
622 acpi_handle temp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
625 /* Presence of _STA indicates 'dynamic_status' */
626 status = acpi_get_handle(device->handle, "_STA", &temp);
627 if (ACPI_SUCCESS(status))
628 device->flags.dynamic_status = 1;
629
630 /* Presence of _CID indicates 'compatible_ids' */
631 status = acpi_get_handle(device->handle, "_CID", &temp);
632 if (ACPI_SUCCESS(status))
633 device->flags.compatible_ids = 1;
634
635 /* Presence of _RMV indicates 'removable' */
636 status = acpi_get_handle(device->handle, "_RMV", &temp);
637 if (ACPI_SUCCESS(status))
638 device->flags.removable = 1;
639
640 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
641 status = acpi_get_handle(device->handle, "_EJD", &temp);
642 if (ACPI_SUCCESS(status))
643 device->flags.ejectable = 1;
644 else {
645 status = acpi_get_handle(device->handle, "_EJ0", &temp);
646 if (ACPI_SUCCESS(status))
647 device->flags.ejectable = 1;
648 }
649
650 /* Presence of _LCK indicates 'lockable' */
651 status = acpi_get_handle(device->handle, "_LCK", &temp);
652 if (ACPI_SUCCESS(status))
653 device->flags.lockable = 1;
654
655 /* Presence of _PS0|_PR0 indicates 'power manageable' */
656 status = acpi_get_handle(device->handle, "_PS0", &temp);
657 if (ACPI_FAILURE(status))
658 status = acpi_get_handle(device->handle, "_PR0", &temp);
659 if (ACPI_SUCCESS(status))
660 device->flags.power_manageable = 1;
661
662 /* Presence of _PRW indicates wake capable */
663 status = acpi_get_handle(device->handle, "_PRW", &temp);
664 if (ACPI_SUCCESS(status))
665 device->flags.wake_capable = 1;
666
667 /* TBD: Peformance management */
668
Patrick Mocheld550d982006-06-27 00:41:40 -0400669 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
671
Len Brown4be44fc2005-08-05 00:44:28 -0400672static void acpi_device_get_busid(struct acpi_device *device,
673 acpi_handle handle, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
Len Brown4be44fc2005-08-05 00:44:28 -0400675 char bus_id[5] = { '?', 0 };
676 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
677 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 /*
680 * Bus ID
681 * ------
682 * The device's Bus ID is simply the object name.
683 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
684 */
685 switch (type) {
686 case ACPI_BUS_TYPE_SYSTEM:
687 strcpy(device->pnp.bus_id, "ACPI");
688 break;
689 case ACPI_BUS_TYPE_POWER_BUTTON:
690 strcpy(device->pnp.bus_id, "PWRF");
691 break;
692 case ACPI_BUS_TYPE_SLEEP_BUTTON:
693 strcpy(device->pnp.bus_id, "SLPF");
694 break;
695 default:
696 acpi_get_name(handle, ACPI_SINGLE_NAME, &buffer);
697 /* Clean up trailing underscores (if any) */
698 for (i = 3; i > 1; i--) {
699 if (bus_id[i] == '_')
700 bus_id[i] = '\0';
701 else
702 break;
703 }
704 strcpy(device->pnp.bus_id, bus_id);
705 break;
706 }
707}
708
Len Brown4be44fc2005-08-05 00:44:28 -0400709static void acpi_device_set_id(struct acpi_device *device,
710 struct acpi_device *parent, acpi_handle handle,
711 int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Len Brown4be44fc2005-08-05 00:44:28 -0400713 struct acpi_device_info *info;
714 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
715 char *hid = NULL;
716 char *uid = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct acpi_compatible_id_list *cid_list = NULL;
Len Brown4be44fc2005-08-05 00:44:28 -0400718 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 switch (type) {
721 case ACPI_BUS_TYPE_DEVICE:
722 status = acpi_get_object_info(handle, &buffer);
723 if (ACPI_FAILURE(status)) {
Len Brown4be44fc2005-08-05 00:44:28 -0400724 printk("%s: Error reading device info\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return;
726 }
727
728 info = buffer.pointer;
729 if (info->valid & ACPI_VALID_HID)
730 hid = info->hardware_id.value;
731 if (info->valid & ACPI_VALID_UID)
732 uid = info->unique_id.value;
733 if (info->valid & ACPI_VALID_CID)
734 cid_list = &info->compatibility_id;
735 if (info->valid & ACPI_VALID_ADR) {
736 device->pnp.bus_address = info->address;
737 device->flags.bus_address = 1;
738 }
739 break;
740 case ACPI_BUS_TYPE_POWER:
741 hid = ACPI_POWER_HID;
742 break;
743 case ACPI_BUS_TYPE_PROCESSOR:
744 hid = ACPI_PROCESSOR_HID;
745 break;
746 case ACPI_BUS_TYPE_SYSTEM:
747 hid = ACPI_SYSTEM_HID;
748 break;
749 case ACPI_BUS_TYPE_THERMAL:
750 hid = ACPI_THERMAL_HID;
751 break;
752 case ACPI_BUS_TYPE_POWER_BUTTON:
753 hid = ACPI_BUTTON_HID_POWERF;
754 break;
755 case ACPI_BUS_TYPE_SLEEP_BUTTON:
756 hid = ACPI_BUTTON_HID_SLEEPF;
757 break;
758 }
759
760 /*
761 * \_SB
762 * ----
763 * Fix for the system root bus device -- the only root-level device.
764 */
Bob Moorec51a4de2005-11-17 13:07:00 -0500765 if (((acpi_handle)parent == ACPI_ROOT_OBJECT) && (type == ACPI_BUS_TYPE_DEVICE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 hid = ACPI_BUS_HID;
767 strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME);
768 strcpy(device->pnp.device_class, ACPI_BUS_CLASS);
769 }
770
771 if (hid) {
772 strcpy(device->pnp.hardware_id, hid);
773 device->flags.hardware_id = 1;
774 }
775 if (uid) {
776 strcpy(device->pnp.unique_id, uid);
777 device->flags.unique_id = 1;
778 }
779 if (cid_list) {
780 device->pnp.cid_list = kmalloc(cid_list->size, GFP_KERNEL);
781 if (device->pnp.cid_list)
782 memcpy(device->pnp.cid_list, cid_list, cid_list->size);
783 else
784 printk(KERN_ERR "Memory allocation error\n");
785 }
786
Len Brown02438d82006-06-30 03:19:10 -0400787 kfree(buffer.pointer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Len Brown4be44fc2005-08-05 00:44:28 -0400790static int acpi_device_set_context(struct acpi_device *device, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 acpi_status status = AE_OK;
793 int result = 0;
794 /*
795 * Context
796 * -------
797 * Attach this 'struct acpi_device' to the ACPI object. This makes
798 * resolutions from handle->device very efficient. Note that we need
799 * to be careful with fixed-feature devices as they all attach to the
800 * root object.
801 */
Len Brown4be44fc2005-08-05 00:44:28 -0400802 if (type != ACPI_BUS_TYPE_POWER_BUTTON &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 type != ACPI_BUS_TYPE_SLEEP_BUTTON) {
804 status = acpi_attach_data(device->handle,
Len Brown4be44fc2005-08-05 00:44:28 -0400805 acpi_bus_data_handler, device);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 if (ACPI_FAILURE(status)) {
808 printk("Error attaching device data\n");
809 result = -ENODEV;
810 }
811 }
812 return result;
813}
814
Len Brown4be44fc2005-08-05 00:44:28 -0400815static void acpi_device_get_debug_info(struct acpi_device *device,
816 acpi_handle handle, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818#ifdef CONFIG_ACPI_DEBUG_OUTPUT
Len Brown4be44fc2005-08-05 00:44:28 -0400819 char *type_string = NULL;
820 char name[80] = { '?', '\0' };
821 struct acpi_buffer buffer = { sizeof(name), name };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 switch (type) {
824 case ACPI_BUS_TYPE_DEVICE:
825 type_string = "Device";
826 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
827 break;
828 case ACPI_BUS_TYPE_POWER:
829 type_string = "Power Resource";
830 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
831 break;
832 case ACPI_BUS_TYPE_PROCESSOR:
833 type_string = "Processor";
834 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
835 break;
836 case ACPI_BUS_TYPE_SYSTEM:
837 type_string = "System";
838 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
839 break;
840 case ACPI_BUS_TYPE_THERMAL:
841 type_string = "Thermal Zone";
842 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
843 break;
844 case ACPI_BUS_TYPE_POWER_BUTTON:
845 type_string = "Power Button";
846 sprintf(name, "PWRB");
847 break;
848 case ACPI_BUS_TYPE_SLEEP_BUTTON:
849 type_string = "Sleep Button";
850 sprintf(name, "SLPB");
851 break;
852 }
853
854 printk(KERN_DEBUG "Found %s %s [%p]\n", type_string, name, handle);
Len Brown4be44fc2005-08-05 00:44:28 -0400855#endif /*CONFIG_ACPI_DEBUG_OUTPUT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856}
857
Len Brown4be44fc2005-08-05 00:44:28 -0400858static int acpi_bus_remove(struct acpi_device *dev, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (!dev)
Patrick Mocheld550d982006-06-27 00:41:40 -0400861 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Li Shaohua96333572006-12-07 20:56:46 +0800863 dev->removal_type = ACPI_BUS_REMOVAL_EJECT;
Patrick Mochel1890a972006-12-07 20:56:31 +0800864 device_release_driver(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 if (!rmdevice)
Patrick Mocheld550d982006-06-27 00:41:40 -0400867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869 if (dev->flags.bus_address) {
870 if ((dev->parent) && (dev->parent->ops.unbind))
871 dev->parent->ops.unbind(dev);
872 }
Len Brown4be44fc2005-08-05 00:44:28 -0400873
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT);
875
Patrick Mocheld550d982006-06-27 00:41:40 -0400876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Rajesh Shah3fb02732005-04-28 00:25:52 -0700879static int
Len Brown4be44fc2005-08-05 00:44:28 -0400880acpi_add_single_object(struct acpi_device **child,
Li Shaohuac4168bf2006-12-07 20:56:41 +0800881 struct acpi_device *parent, acpi_handle handle, int type,
882 struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Len Brown4be44fc2005-08-05 00:44:28 -0400884 int result = 0;
885 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (!child)
Patrick Mocheld550d982006-06-27 00:41:40 -0400889 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 device = kmalloc(sizeof(struct acpi_device), GFP_KERNEL);
892 if (!device) {
Len Brown64684632006-06-26 23:41:38 -0400893 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -0400894 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896 memset(device, 0, sizeof(struct acpi_device));
897
898 device->handle = handle;
899 device->parent = parent;
Li Shaohuac4168bf2006-12-07 20:56:41 +0800900 device->bus_ops = *ops; /* workround for not call .start */
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Len Brown4be44fc2005-08-05 00:44:28 -0400903 acpi_device_get_busid(device, handle, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
905 /*
906 * Flags
907 * -----
908 * Get prior to calling acpi_bus_get_status() so we know whether
909 * or not _STA is present. Note that we only look for object
910 * handles -- cannot evaluate objects until we know the device is
911 * present and properly initialized.
912 */
913 result = acpi_bus_get_flags(device);
914 if (result)
915 goto end;
916
917 /*
918 * Status
919 * ------
Keiichiro Tokunaga6940fab2005-03-30 23:15:47 -0500920 * See if the device is present. We always assume that non-Device
921 * and non-Processor objects (e.g. thermal zones, power resources,
922 * etc.) are present, functioning, etc. (at least when parent object
923 * is present). Note that _STA has a different meaning for some
924 * objects (e.g. power resources) so we need to be careful how we use
925 * it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 */
927 switch (type) {
Keiichiro Tokunaga6940fab2005-03-30 23:15:47 -0500928 case ACPI_BUS_TYPE_PROCESSOR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 case ACPI_BUS_TYPE_DEVICE:
930 result = acpi_bus_get_status(device);
931 if (ACPI_FAILURE(result) || !device->status.present) {
932 result = -ENOENT;
933 goto end;
934 }
935 break;
936 default:
937 STRUCT_TO_INT(device->status) = 0x0F;
938 break;
939 }
940
941 /*
942 * Initialize Device
943 * -----------------
944 * TBD: Synch with Core's enumeration/initialization process.
945 */
946
947 /*
948 * Hardware ID, Unique ID, & Bus Address
949 * -------------------------------------
950 */
Len Brown4be44fc2005-08-05 00:44:28 -0400951 acpi_device_set_id(device, parent, handle, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952
953 /*
954 * Power Management
955 * ----------------
956 */
957 if (device->flags.power_manageable) {
958 result = acpi_bus_get_power_flags(device);
959 if (result)
960 goto end;
961 }
962
Len Brown4be44fc2005-08-05 00:44:28 -0400963 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 * Wakeup device management
965 *-----------------------
966 */
967 if (device->flags.wake_capable) {
968 result = acpi_bus_get_wakeup_device_flags(device);
969 if (result)
970 goto end;
971 }
972
973 /*
974 * Performance Management
975 * ----------------------
976 */
977 if (device->flags.performance_manageable) {
978 result = acpi_bus_get_perf_flags(device);
979 if (result)
980 goto end;
981 }
982
Len Brown4be44fc2005-08-05 00:44:28 -0400983 if ((result = acpi_device_set_context(device, type)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 goto end;
985
Len Brown4be44fc2005-08-05 00:44:28 -0400986 acpi_device_get_debug_info(device, handle, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Len Brown4be44fc2005-08-05 00:44:28 -0400988 acpi_device_register(device, parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /*
991 * Bind _ADR-Based Devices
992 * -----------------------
993 * If there's a a bus address (_ADR) then we utilize the parent's
994 * 'bind' function (if exists) to bind the ACPI- and natively-
995 * enumerated device representations.
996 */
997 if (device->flags.bus_address) {
998 if (device->parent && device->parent->ops.bind)
999 device->parent->ops.bind(device);
1000 }
1001
Len Brown4be44fc2005-08-05 00:44:28 -04001002 end:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!result)
1004 *child = device;
1005 else {
Jesper Juhl6044ec82005-11-07 01:01:32 -08001006 kfree(device->pnp.cid_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 kfree(device);
1008 }
1009
Patrick Mocheld550d982006-06-27 00:41:40 -04001010 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Len Brown4be44fc2005-08-05 00:44:28 -04001013static int acpi_bus_scan(struct acpi_device *start, struct acpi_bus_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014{
Len Brown4be44fc2005-08-05 00:44:28 -04001015 acpi_status status = AE_OK;
1016 struct acpi_device *parent = NULL;
1017 struct acpi_device *child = NULL;
1018 acpi_handle phandle = NULL;
1019 acpi_handle chandle = NULL;
1020 acpi_object_type type = 0;
1021 u32 level = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 if (!start)
Patrick Mocheld550d982006-06-27 00:41:40 -04001025 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
1027 parent = start;
1028 phandle = start->handle;
Len Brown4be44fc2005-08-05 00:44:28 -04001029
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /*
1031 * Parse through the ACPI namespace, identify all 'devices', and
1032 * create a new 'struct acpi_device' for each.
1033 */
1034 while ((level > 0) && parent) {
1035
1036 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001037 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039 /*
1040 * If this scope is exhausted then move our way back up.
1041 */
1042 if (ACPI_FAILURE(status)) {
1043 level--;
1044 chandle = phandle;
1045 acpi_get_parent(phandle, &phandle);
1046 if (parent->parent)
1047 parent = parent->parent;
1048 continue;
1049 }
1050
1051 status = acpi_get_type(chandle, &type);
1052 if (ACPI_FAILURE(status))
1053 continue;
1054
1055 /*
1056 * If this is a scope object then parse it (depth-first).
1057 */
1058 if (type == ACPI_TYPE_LOCAL_SCOPE) {
1059 level++;
1060 phandle = chandle;
1061 chandle = NULL;
1062 continue;
1063 }
1064
1065 /*
1066 * We're only interested in objects that we consider 'devices'.
1067 */
1068 switch (type) {
1069 case ACPI_TYPE_DEVICE:
1070 type = ACPI_BUS_TYPE_DEVICE;
1071 break;
1072 case ACPI_TYPE_PROCESSOR:
1073 type = ACPI_BUS_TYPE_PROCESSOR;
1074 break;
1075 case ACPI_TYPE_THERMAL:
1076 type = ACPI_BUS_TYPE_THERMAL;
1077 break;
1078 case ACPI_TYPE_POWER:
1079 type = ACPI_BUS_TYPE_POWER;
1080 break;
1081 default:
1082 continue;
1083 }
1084
Rajesh Shah3fb02732005-04-28 00:25:52 -07001085 if (ops->acpi_op_add)
1086 status = acpi_add_single_object(&child, parent,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001087 chandle, type, ops);
Len Brown4be44fc2005-08-05 00:44:28 -04001088 else
Rajesh Shah3fb02732005-04-28 00:25:52 -07001089 status = acpi_bus_get_device(chandle, &child);
1090
Len Brown4be44fc2005-08-05 00:44:28 -04001091 if (ACPI_FAILURE(status))
1092 continue;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001093
Li Shaohuac4168bf2006-12-07 20:56:41 +08001094 if (ops->acpi_op_start && !(ops->acpi_op_add)) {
Rajesh Shah3fb02732005-04-28 00:25:52 -07001095 status = acpi_start_single_object(child);
1096 if (ACPI_FAILURE(status))
1097 continue;
1098 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099
1100 /*
1101 * If the device is present, enabled, and functioning then
1102 * parse its scope (depth-first). Note that we need to
1103 * represent absent devices to facilitate PnP notifications
1104 * -- but only the subtree head (not all of its children,
1105 * which will be enumerated when the parent is inserted).
1106 *
1107 * TBD: Need notifications and other detection mechanisms
Len Brown4be44fc2005-08-05 00:44:28 -04001108 * in place before we can fully implement this.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 */
1110 if (child->status.present) {
1111 status = acpi_get_next_object(ACPI_TYPE_ANY, chandle,
1112 NULL, NULL);
1113 if (ACPI_SUCCESS(status)) {
1114 level++;
1115 phandle = chandle;
1116 chandle = NULL;
1117 parent = child;
1118 }
1119 }
1120 }
1121
Patrick Mocheld550d982006-06-27 00:41:40 -04001122 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124
Rajesh Shah3fb02732005-04-28 00:25:52 -07001125int
Len Brown4be44fc2005-08-05 00:44:28 -04001126acpi_bus_add(struct acpi_device **child,
1127 struct acpi_device *parent, acpi_handle handle, int type)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001128{
1129 int result;
1130 struct acpi_bus_ops ops;
1131
Li Shaohuac4168bf2006-12-07 20:56:41 +08001132 memset(&ops, 0, sizeof(ops));
1133 ops.acpi_op_add = 1;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001134
Li Shaohuac4168bf2006-12-07 20:56:41 +08001135 result = acpi_add_single_object(child, parent, handle, type, &ops);
1136 if (!result)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001137 result = acpi_bus_scan(*child, &ops);
Li Shaohuac4168bf2006-12-07 20:56:41 +08001138
Patrick Mocheld550d982006-06-27 00:41:40 -04001139 return result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001140}
Len Brown4be44fc2005-08-05 00:44:28 -04001141
Rajesh Shah3fb02732005-04-28 00:25:52 -07001142EXPORT_SYMBOL(acpi_bus_add);
1143
Len Brown4be44fc2005-08-05 00:44:28 -04001144int acpi_bus_start(struct acpi_device *device)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001145{
1146 int result;
1147 struct acpi_bus_ops ops;
1148
Rajesh Shah3fb02732005-04-28 00:25:52 -07001149
1150 if (!device)
Patrick Mocheld550d982006-06-27 00:41:40 -04001151 return -EINVAL;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001152
1153 result = acpi_start_single_object(device);
1154 if (!result) {
1155 memset(&ops, 0, sizeof(ops));
1156 ops.acpi_op_start = 1;
1157 result = acpi_bus_scan(device, &ops);
1158 }
Patrick Mocheld550d982006-06-27 00:41:40 -04001159 return result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001160}
Len Brown4be44fc2005-08-05 00:44:28 -04001161
Rajesh Shah3fb02732005-04-28 00:25:52 -07001162EXPORT_SYMBOL(acpi_bus_start);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
Kristen Accardiceaba662006-02-23 17:56:01 -08001164int acpi_bus_trim(struct acpi_device *start, int rmdevice)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
Len Brown4be44fc2005-08-05 00:44:28 -04001166 acpi_status status;
1167 struct acpi_device *parent, *child;
1168 acpi_handle phandle, chandle;
1169 acpi_object_type type;
1170 u32 level = 1;
1171 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Len Brown4be44fc2005-08-05 00:44:28 -04001173 parent = start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 phandle = start->handle;
1175 child = chandle = NULL;
1176
1177 while ((level > 0) && parent && (!err)) {
1178 status = acpi_get_next_object(ACPI_TYPE_ANY, phandle,
Len Brown4be44fc2005-08-05 00:44:28 -04001179 chandle, &chandle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 /*
1182 * If this scope is exhausted then move our way back up.
1183 */
1184 if (ACPI_FAILURE(status)) {
1185 level--;
1186 chandle = phandle;
1187 acpi_get_parent(phandle, &phandle);
1188 child = parent;
1189 parent = parent->parent;
1190
1191 if (level == 0)
1192 err = acpi_bus_remove(child, rmdevice);
1193 else
1194 err = acpi_bus_remove(child, 1);
1195
1196 continue;
1197 }
1198
1199 status = acpi_get_type(chandle, &type);
1200 if (ACPI_FAILURE(status)) {
1201 continue;
1202 }
1203 /*
1204 * If there is a device corresponding to chandle then
1205 * parse it (depth-first).
1206 */
1207 if (acpi_bus_get_device(chandle, &child) == 0) {
1208 level++;
1209 phandle = chandle;
1210 chandle = NULL;
1211 parent = child;
1212 }
1213 continue;
1214 }
1215 return err;
1216}
Kristen Accardiceaba662006-02-23 17:56:01 -08001217EXPORT_SYMBOL_GPL(acpi_bus_trim);
1218
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219
Len Brown4be44fc2005-08-05 00:44:28 -04001220static int acpi_bus_scan_fixed(struct acpi_device *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221{
Len Brown4be44fc2005-08-05 00:44:28 -04001222 int result = 0;
1223 struct acpi_device *device = NULL;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001224 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
1226 if (!root)
Patrick Mocheld550d982006-06-27 00:41:40 -04001227 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
Li Shaohuac4168bf2006-12-07 20:56:41 +08001229 memset(&ops, 0, sizeof(ops));
1230 ops.acpi_op_add = 1;
1231 ops.acpi_op_start = 1;
1232
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 /*
1234 * Enumerate all fixed-feature devices.
1235 */
Rajesh Shah3fb02732005-04-28 00:25:52 -07001236 if (acpi_fadt.pwr_button == 0) {
1237 result = acpi_add_single_object(&device, acpi_root,
Len Brown4be44fc2005-08-05 00:44:28 -04001238 NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001239 ACPI_BUS_TYPE_POWER_BUTTON,
1240 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Rajesh Shah3fb02732005-04-28 00:25:52 -07001243 if (acpi_fadt.sleep_button == 0) {
1244 result = acpi_add_single_object(&device, acpi_root,
Len Brown4be44fc2005-08-05 00:44:28 -04001245 NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001246 ACPI_BUS_TYPE_SLEEP_BUTTON,
1247 &ops);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249
Patrick Mocheld550d982006-06-27 00:41:40 -04001250 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251}
1252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253static int __init acpi_scan_init(void)
1254{
1255 int result;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001256 struct acpi_bus_ops ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Li Shaohuac4168bf2006-12-07 20:56:41 +08001262 memset(&ops, 0, sizeof(ops));
1263 ops.acpi_op_add = 1;
1264 ops.acpi_op_start = 1;
1265
Patrick Mochel5b327262006-05-10 10:33:00 -04001266 result = bus_register(&acpi_bus_type);
1267 if (result) {
1268 /* We don't want to quit even if we failed to add suspend/resume */
1269 printk(KERN_ERR PREFIX "Could not register bus type\n");
1270 }
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 /*
1273 * Create the root device in the bus's device tree
1274 */
Rajesh Shah3fb02732005-04-28 00:25:52 -07001275 result = acpi_add_single_object(&acpi_root, NULL, ACPI_ROOT_OBJECT,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001276 ACPI_BUS_TYPE_SYSTEM, &ops);
Patrick Mochel5b327262006-05-10 10:33:00 -04001277 if (result)
1278 goto Done;
1279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 /*
1281 * Enumerate devices in the ACPI namespace.
1282 */
1283 result = acpi_bus_scan_fixed(acpi_root);
Li Shaohuac4168bf2006-12-07 20:56:41 +08001284 if (!result)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001285 result = acpi_bus_scan(acpi_root, &ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 if (result)
1288 acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL);
1289
Len Brown4be44fc2005-08-05 00:44:28 -04001290 Done:
Patrick Mocheld550d982006-06-27 00:41:40 -04001291 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294subsys_initcall(acpi_scan_init);