Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 7 | #include <linux/slab.h> |
Randy Dunlap | 9b6d97b | 2006-07-12 02:08:00 -0400 | [diff] [blame] | 8 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/acpi.h> |
Alok N Kataria | 74523c9 | 2008-06-13 12:54:24 -0400 | [diff] [blame] | 10 | #include <linux/signal.h> |
| 11 | #include <linux/kthread.h> |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 12 | #include <linux/dmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | |
| 14 | #include <acpi/acpi_drivers.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | |
Bjorn Helgaas | e60cc7a | 2009-03-13 12:08:26 -0600 | [diff] [blame] | 16 | #include "internal.h" |
| 17 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #define _COMPONENT ACPI_BUS_COMPONENT |
Len Brown | f52fd66 | 2007-02-12 22:42:12 -0500 | [diff] [blame] | 19 | ACPI_MODULE_NAME("scan"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define STRUCT_TO_INT(s) (*((int*)&s)) |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 21 | extern struct acpi_device *acpi_root; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #define ACPI_BUS_CLASS "system_bus" |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 24 | #define ACPI_BUS_HID "LNXSYBUS" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #define ACPI_BUS_DEVICE_NAME "System Bus" |
| 26 | |
Bjorn Helgaas | 859ac9a4 | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 27 | #define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent) |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | static LIST_HEAD(acpi_device_list); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 30 | static LIST_HEAD(acpi_bus_id_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 31 | DEFINE_MUTEX(acpi_device_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | LIST_HEAD(acpi_wakeup_device_list); |
| 33 | |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 34 | struct acpi_device_bus_id{ |
Zhang Rui | bb09585 | 2007-01-04 15:03:18 +0800 | [diff] [blame] | 35 | char bus_id[15]; |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 36 | unsigned int instance_no; |
| 37 | struct list_head node; |
| 38 | }; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Creates hid/cid(s) string needed for modalias and uevent |
| 42 | * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get: |
| 43 | * char *modalias: "acpi:IBM0001:ACPI0001" |
| 44 | */ |
Adrian Bunk | b3e572d | 2007-08-14 23:22:35 +0200 | [diff] [blame] | 45 | static int create_modalias(struct acpi_device *acpi_dev, char *modalias, |
| 46 | int size) |
| 47 | { |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 48 | int len; |
Zhang Rui | 5c9fcb5 | 2008-03-20 16:40:32 +0800 | [diff] [blame] | 49 | int count; |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 50 | struct acpi_hardware_id *id; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 51 | |
Zhang Rui | 5c9fcb5 | 2008-03-20 16:40:32 +0800 | [diff] [blame] | 52 | len = snprintf(modalias, size, "acpi:"); |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 53 | size -= len; |
| 54 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 55 | list_for_each_entry(id, &acpi_dev->pnp.ids, list) { |
| 56 | count = snprintf(&modalias[len], size, "%s:", id->id); |
Zhang Rui | 5c9fcb5 | 2008-03-20 16:40:32 +0800 | [diff] [blame] | 57 | if (count < 0 || count >= size) |
| 58 | return -EINVAL; |
| 59 | len += count; |
| 60 | size -= count; |
| 61 | } |
| 62 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 63 | modalias[len] = '\0'; |
| 64 | return len; |
| 65 | } |
| 66 | |
| 67 | static ssize_t |
| 68 | acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) { |
| 69 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 70 | int len; |
| 71 | |
| 72 | /* Device has no HID and no CID or string is >1024 */ |
| 73 | len = create_modalias(acpi_dev, buf, 1024); |
| 74 | if (len <= 0) |
| 75 | return 0; |
| 76 | buf[len++] = '\n'; |
| 77 | return len; |
| 78 | } |
| 79 | static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL); |
| 80 | |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 81 | static void acpi_bus_hot_remove_device(void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | { |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 83 | struct acpi_device *device; |
| 84 | acpi_handle handle = context; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | struct acpi_object_list arg_list; |
| 86 | union acpi_object arg; |
| 87 | acpi_status status = AE_OK; |
| 88 | |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 89 | if (acpi_bus_get_device(handle, &device)) |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 90 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 92 | if (!device) |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 93 | return; |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 94 | |
| 95 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 96 | "Hot-removing device %s...\n", dev_name(&device->dev))); |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 97 | |
| 98 | if (acpi_bus_trim(device, 1)) { |
Lin Ming | 55ac9a0 | 2008-09-28 14:51:56 +0800 | [diff] [blame] | 99 | printk(KERN_ERR PREFIX |
| 100 | "Removing device failed\n"); |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 101 | return; |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | /* power off device */ |
| 105 | status = acpi_evaluate_object(handle, "_PS3", NULL, NULL); |
| 106 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) |
Lin Ming | 55ac9a0 | 2008-09-28 14:51:56 +0800 | [diff] [blame] | 107 | printk(KERN_WARNING PREFIX |
| 108 | "Power-off device failed\n"); |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 109 | |
| 110 | if (device->flags.lockable) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | arg_list.count = 1; |
| 112 | arg_list.pointer = &arg; |
| 113 | arg.type = ACPI_TYPE_INTEGER; |
| 114 | arg.integer.value = 0; |
| 115 | acpi_evaluate_object(handle, "_LCK", &arg_list, NULL); |
| 116 | } |
| 117 | |
| 118 | arg_list.count = 1; |
| 119 | arg_list.pointer = &arg; |
| 120 | arg.type = ACPI_TYPE_INTEGER; |
| 121 | arg.integer.value = 1; |
| 122 | |
| 123 | /* |
| 124 | * TBD: _EJD support. |
| 125 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | status = acpi_evaluate_object(handle, "_EJ0", &arg_list, NULL); |
Zhang Rui | 26d4686 | 2008-04-29 02:35:48 -0400 | [diff] [blame] | 127 | if (ACPI_FAILURE(status)) |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 128 | printk(KERN_WARNING PREFIX |
| 129 | "Eject device failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 131 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | } |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | static ssize_t |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 135 | acpi_eject_store(struct device *d, struct device_attribute *attr, |
| 136 | const char *buf, size_t count) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 138 | int ret = count; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 139 | acpi_status status; |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 140 | acpi_object_type type = 0; |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 141 | struct acpi_device *acpi_device = to_acpi_device(d); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | if ((!count) || (buf[0] != '1')) { |
| 144 | return -EINVAL; |
| 145 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | #ifndef FORCE_EJECT |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 147 | if (acpi_device->driver == NULL) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | ret = -ENODEV; |
| 149 | goto err; |
| 150 | } |
| 151 | #endif |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 152 | status = acpi_get_type(acpi_device->handle, &type); |
| 153 | if (ACPI_FAILURE(status) || (!acpi_device->flags.ejectable)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | ret = -ENODEV; |
| 155 | goto err; |
| 156 | } |
| 157 | |
Zhang Rui | c8d72a5 | 2009-06-22 11:31:16 +0800 | [diff] [blame] | 158 | acpi_os_hotplug_execute(acpi_bus_hot_remove_device, acpi_device->handle); |
Alok N Kataria | 74523c9 | 2008-06-13 12:54:24 -0400 | [diff] [blame] | 159 | err: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | } |
| 162 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 163 | static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 165 | static ssize_t |
| 166 | acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) { |
| 167 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Bjorn Helgaas | ea8d82f | 2009-09-21 13:35:09 -0600 | [diff] [blame] | 169 | return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev)); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 170 | } |
| 171 | static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL); |
| 172 | |
| 173 | static ssize_t |
| 174 | acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) { |
| 175 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 176 | struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 177 | int result; |
| 178 | |
| 179 | result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 180 | if (result) |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 181 | goto end; |
| 182 | |
| 183 | result = sprintf(buf, "%s\n", (char*)path.pointer); |
| 184 | kfree(path.pointer); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 185 | end: |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 186 | return result; |
| 187 | } |
| 188 | static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL); |
| 189 | |
| 190 | static int acpi_device_setup_files(struct acpi_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | { |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 192 | acpi_status status; |
| 193 | acpi_handle temp; |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 194 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 196 | /* |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 197 | * Devices gotten from FADT don't have a "path" attribute |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 198 | */ |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 199 | if (dev->handle) { |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 200 | result = device_create_file(&dev->dev, &dev_attr_path); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 201 | if (result) |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 202 | goto end; |
| 203 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 205 | result = device_create_file(&dev->dev, &dev_attr_hid); |
| 206 | if (result) |
| 207 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 209 | result = device_create_file(&dev->dev, &dev_attr_modalias); |
| 210 | if (result) |
| 211 | goto end; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 212 | |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 213 | /* |
| 214 | * If device has _EJ0, 'eject' file is created that is used to trigger |
| 215 | * hot-removal function from userland. |
| 216 | */ |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 217 | status = acpi_get_handle(dev->handle, "_EJ0", &temp); |
| 218 | if (ACPI_SUCCESS(status)) |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 219 | result = device_create_file(&dev->dev, &dev_attr_eject); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 220 | end: |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 221 | return result; |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 222 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 224 | static void acpi_device_remove_files(struct acpi_device *dev) |
| 225 | { |
| 226 | acpi_status status; |
| 227 | acpi_handle temp; |
| 228 | |
| 229 | /* |
| 230 | * If device has _EJ0, 'eject' file is created that is used to trigger |
| 231 | * hot-removal function from userland. |
| 232 | */ |
| 233 | status = acpi_get_handle(dev->handle, "_EJ0", &temp); |
| 234 | if (ACPI_SUCCESS(status)) |
| 235 | device_remove_file(&dev->dev, &dev_attr_eject); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 236 | |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 237 | device_remove_file(&dev->dev, &dev_attr_modalias); |
| 238 | device_remove_file(&dev->dev, &dev_attr_hid); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 239 | if (dev->handle) |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 240 | device_remove_file(&dev->dev, &dev_attr_path); |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | /* -------------------------------------------------------------------------- |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 243 | ACPI Bus operations |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | -------------------------------------------------------------------------- */ |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 245 | |
| 246 | int acpi_match_device_ids(struct acpi_device *device, |
| 247 | const struct acpi_device_id *ids) |
| 248 | { |
| 249 | const struct acpi_device_id *id; |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 250 | struct acpi_hardware_id *hwid; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 251 | |
Zhao Yakui | 39a0ad8 | 2008-08-11 13:40:22 +0800 | [diff] [blame] | 252 | /* |
| 253 | * If the device is not present, it is unnecessary to load device |
| 254 | * driver for it. |
| 255 | */ |
| 256 | if (!device->status.present) |
| 257 | return -ENODEV; |
| 258 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 259 | for (id = ids; id->id[0]; id++) |
| 260 | list_for_each_entry(hwid, &device->pnp.ids, list) |
| 261 | if (!strcmp((char *) id->id, hwid->id)) |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 262 | return 0; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 263 | |
| 264 | return -ENOENT; |
| 265 | } |
| 266 | EXPORT_SYMBOL(acpi_match_device_ids); |
| 267 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 268 | static void acpi_free_ids(struct acpi_device *device) |
| 269 | { |
| 270 | struct acpi_hardware_id *id, *tmp; |
| 271 | |
| 272 | list_for_each_entry_safe(id, tmp, &device->pnp.ids, list) { |
| 273 | kfree(id->id); |
| 274 | kfree(id); |
| 275 | } |
| 276 | } |
| 277 | |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 278 | static void acpi_device_release(struct device *dev) |
| 279 | { |
| 280 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 281 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 282 | acpi_free_ids(acpi_dev); |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 283 | kfree(acpi_dev); |
| 284 | } |
| 285 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 286 | static int acpi_device_suspend(struct device *dev, pm_message_t state) |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 287 | { |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 288 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 289 | struct acpi_driver *acpi_drv = acpi_dev->driver; |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 290 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 291 | if (acpi_drv && acpi_drv->ops.suspend) |
| 292 | return acpi_drv->ops.suspend(acpi_dev, state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | return 0; |
| 294 | } |
| 295 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 296 | static int acpi_device_resume(struct device *dev) |
| 297 | { |
| 298 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 299 | struct acpi_driver *acpi_drv = acpi_dev->driver; |
| 300 | |
| 301 | if (acpi_drv && acpi_drv->ops.resume) |
| 302 | return acpi_drv->ops.resume(acpi_dev); |
| 303 | return 0; |
| 304 | } |
| 305 | |
| 306 | static int acpi_bus_match(struct device *dev, struct device_driver *drv) |
| 307 | { |
| 308 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 309 | struct acpi_driver *acpi_drv = to_acpi_driver(drv); |
| 310 | |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 311 | return !acpi_match_device_ids(acpi_dev, acpi_drv->ids); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 312 | } |
| 313 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 314 | static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env) |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 315 | { |
| 316 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 317 | int len; |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 318 | |
Kay Sievers | 7eff2e7 | 2007-08-14 15:15:12 +0200 | [diff] [blame] | 319 | if (add_uevent_var(env, "MODALIAS=")) |
| 320 | return -ENOMEM; |
| 321 | len = create_modalias(acpi_dev, &env->buf[env->buflen - 1], |
| 322 | sizeof(env->buf) - env->buflen); |
| 323 | if (len >= (sizeof(env->buf) - env->buflen)) |
| 324 | return -ENOMEM; |
| 325 | env->buflen += len; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | return 0; |
| 327 | } |
| 328 | |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 329 | static void acpi_device_notify(acpi_handle handle, u32 event, void *data) |
| 330 | { |
| 331 | struct acpi_device *device = data; |
| 332 | |
| 333 | device->driver->ops.notify(device, event); |
| 334 | } |
| 335 | |
| 336 | static acpi_status acpi_device_notify_fixed(void *data) |
| 337 | { |
| 338 | struct acpi_device *device = data; |
| 339 | |
Bjorn Helgaas | 53de535 | 2009-08-31 22:32:20 +0000 | [diff] [blame] | 340 | /* Fixed hardware devices have no handles */ |
| 341 | acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device); |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 342 | return AE_OK; |
| 343 | } |
| 344 | |
| 345 | static int acpi_device_install_notify_handler(struct acpi_device *device) |
| 346 | { |
| 347 | acpi_status status; |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 348 | |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 349 | if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 350 | status = |
| 351 | acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, |
| 352 | acpi_device_notify_fixed, |
| 353 | device); |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 354 | else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 355 | status = |
| 356 | acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, |
| 357 | acpi_device_notify_fixed, |
| 358 | device); |
| 359 | else |
| 360 | status = acpi_install_notify_handler(device->handle, |
| 361 | ACPI_DEVICE_NOTIFY, |
| 362 | acpi_device_notify, |
| 363 | device); |
| 364 | |
| 365 | if (ACPI_FAILURE(status)) |
| 366 | return -EINVAL; |
| 367 | return 0; |
| 368 | } |
| 369 | |
| 370 | static void acpi_device_remove_notify_handler(struct acpi_device *device) |
| 371 | { |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 372 | if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 373 | acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON, |
| 374 | acpi_device_notify_fixed); |
Bjorn Helgaas | ccba2a3 | 2009-09-21 19:29:15 +0000 | [diff] [blame] | 375 | else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON) |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 376 | acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON, |
| 377 | acpi_device_notify_fixed); |
| 378 | else |
| 379 | acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY, |
| 380 | acpi_device_notify); |
| 381 | } |
| 382 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 383 | static int acpi_bus_driver_init(struct acpi_device *, struct acpi_driver *); |
| 384 | static int acpi_start_single_object(struct acpi_device *); |
| 385 | static int acpi_device_probe(struct device * dev) |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 386 | { |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 387 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 388 | struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver); |
| 389 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 391 | ret = acpi_bus_driver_init(acpi_dev, acpi_drv); |
| 392 | if (!ret) { |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 393 | if (acpi_dev->bus_ops.acpi_op_start) |
| 394 | acpi_start_single_object(acpi_dev); |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 395 | |
| 396 | if (acpi_drv->ops.notify) { |
| 397 | ret = acpi_device_install_notify_handler(acpi_dev); |
| 398 | if (ret) { |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 399 | if (acpi_drv->ops.remove) |
| 400 | acpi_drv->ops.remove(acpi_dev, |
| 401 | acpi_dev->removal_type); |
| 402 | return ret; |
| 403 | } |
| 404 | } |
| 405 | |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 406 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 407 | "Found driver [%s] for device [%s]\n", |
| 408 | acpi_drv->name, acpi_dev->pnp.bus_id)); |
| 409 | get_device(dev); |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 410 | } |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 411 | return ret; |
| 412 | } |
| 413 | |
| 414 | static int acpi_device_remove(struct device * dev) |
| 415 | { |
| 416 | struct acpi_device *acpi_dev = to_acpi_device(dev); |
| 417 | struct acpi_driver *acpi_drv = acpi_dev->driver; |
| 418 | |
| 419 | if (acpi_drv) { |
Bjorn Helgaas | 46ec859 | 2009-03-30 17:48:13 +0000 | [diff] [blame] | 420 | if (acpi_drv->ops.notify) |
| 421 | acpi_device_remove_notify_handler(acpi_dev); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 422 | if (acpi_drv->ops.remove) |
Li Shaohua | 9633357 | 2006-12-07 20:56:46 +0800 | [diff] [blame] | 423 | acpi_drv->ops.remove(acpi_dev, acpi_dev->removal_type); |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 424 | } |
| 425 | acpi_dev->driver = NULL; |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 426 | acpi_dev->driver_data = NULL; |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 427 | |
| 428 | put_device(dev); |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 429 | return 0; |
| 430 | } |
| 431 | |
David Brownell | 55955aa | 2007-05-08 00:28:35 -0700 | [diff] [blame] | 432 | struct bus_type acpi_bus_type = { |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 433 | .name = "acpi", |
| 434 | .suspend = acpi_device_suspend, |
| 435 | .resume = acpi_device_resume, |
Patrick Mochel | 5d9464a | 2006-12-07 20:56:27 +0800 | [diff] [blame] | 436 | .match = acpi_bus_match, |
| 437 | .probe = acpi_device_probe, |
| 438 | .remove = acpi_device_remove, |
| 439 | .uevent = acpi_device_uevent, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | }; |
| 441 | |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 442 | static int acpi_device_register(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | { |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 444 | int result; |
| 445 | struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id; |
| 446 | int found = 0; |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 447 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | /* |
| 449 | * Linkage |
| 450 | * ------- |
| 451 | * Link this device to its parent and siblings. |
| 452 | */ |
| 453 | INIT_LIST_HEAD(&device->children); |
| 454 | INIT_LIST_HEAD(&device->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | INIT_LIST_HEAD(&device->wakeup_list); |
| 456 | |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 457 | new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL); |
| 458 | if (!new_bus_id) { |
| 459 | printk(KERN_ERR PREFIX "Memory allocation error\n"); |
| 460 | return -ENOMEM; |
| 461 | } |
| 462 | |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 463 | mutex_lock(&acpi_device_lock); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 464 | /* |
| 465 | * Find suitable bus_id and instance number in acpi_bus_id_list |
| 466 | * If failed, create one and link it into acpi_bus_id_list |
| 467 | */ |
| 468 | list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) { |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 469 | if (!strcmp(acpi_device_bus_id->bus_id, |
| 470 | acpi_device_hid(device))) { |
| 471 | acpi_device_bus_id->instance_no++; |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 472 | found = 1; |
| 473 | kfree(new_bus_id); |
| 474 | break; |
| 475 | } |
| 476 | } |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 477 | if (!found) { |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 478 | acpi_device_bus_id = new_bus_id; |
Bjorn Helgaas | 1131b93 | 2009-09-21 13:35:29 -0600 | [diff] [blame] | 479 | strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device)); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 480 | acpi_device_bus_id->instance_no = 0; |
| 481 | list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list); |
| 482 | } |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 483 | dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 484 | |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 485 | if (device->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | list_add_tail(&device->node, &device->parent->children); |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 487 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 488 | if (device->wakeup.flags.valid) |
| 489 | list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 490 | mutex_unlock(&acpi_device_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 491 | |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 492 | if (device->parent) |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 493 | device->dev.parent = &device->parent->dev; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 494 | device->dev.bus = &acpi_bus_type; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 495 | device->dev.release = &acpi_device_release; |
Alex Chiang | 8b12b92 | 2009-05-14 08:31:32 -0600 | [diff] [blame] | 496 | result = device_register(&device->dev); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 497 | if (result) { |
Alex Chiang | 8b12b92 | 2009-05-14 08:31:32 -0600 | [diff] [blame] | 498 | dev_err(&device->dev, "Error registering device\n"); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 499 | goto end; |
| 500 | } |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 501 | |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 502 | result = acpi_device_setup_files(device); |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 503 | if (result) |
Kay Sievers | 0794469 | 2008-10-30 01:18:59 +0100 | [diff] [blame] | 504 | printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n", |
| 505 | dev_name(&device->dev)); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 506 | |
Li Shaohua | 9633357 | 2006-12-07 20:56:46 +0800 | [diff] [blame] | 507 | device->removal_type = ACPI_BUS_REMOVAL_NORMAL; |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 508 | return 0; |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 509 | end: |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 510 | mutex_lock(&acpi_device_lock); |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 511 | if (device->parent) |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 512 | list_del(&device->node); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 513 | list_del(&device->wakeup_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 514 | mutex_unlock(&acpi_device_lock); |
Zhang Rui | e49bd2dd | 2006-12-08 17:23:43 +0800 | [diff] [blame] | 515 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | static void acpi_device_unregister(struct acpi_device *device, int type) |
| 519 | { |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 520 | mutex_lock(&acpi_device_lock); |
Len Brown | 33b5715 | 2008-12-15 22:09:26 -0500 | [diff] [blame] | 521 | if (device->parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 522 | list_del(&device->node); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
| 524 | list_del(&device->wakeup_list); |
Shaohua Li | 9090589 | 2009-04-07 10:24:29 +0800 | [diff] [blame] | 525 | mutex_unlock(&acpi_device_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | |
| 527 | acpi_detach_data(device->handle, acpi_bus_data_handler); |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 528 | |
Patrick Mochel | f883d9d | 2006-12-07 20:56:38 +0800 | [diff] [blame] | 529 | acpi_device_remove_files(device); |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 530 | device_unregister(&device->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 533 | /* -------------------------------------------------------------------------- |
| 534 | Driver Management |
| 535 | -------------------------------------------------------------------------- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | /** |
Randy Dunlap | d758a8f | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 537 | * acpi_bus_driver_init - add a device to a driver |
| 538 | * @device: the device to add and initialize |
| 539 | * @driver: driver for the device |
| 540 | * |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 541 | * Used to initialize a device via its device driver. Called whenever a |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 542 | * driver is bound to a device. Invokes the driver's add() ops. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | */ |
| 544 | static int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 545 | acpi_bus_driver_init(struct acpi_device *device, struct acpi_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 547 | int result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | if (!device || !driver) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 550 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | |
| 552 | if (!driver->ops.add) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 553 | return -ENOSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
| 555 | result = driver->ops.add(device); |
| 556 | if (result) { |
| 557 | device->driver = NULL; |
Pavel Machek | db89b4f | 2008-09-22 14:37:34 -0700 | [diff] [blame] | 558 | device->driver_data = NULL; |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 559 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 560 | } |
| 561 | |
| 562 | device->driver = driver; |
| 563 | |
| 564 | /* |
| 565 | * TBD - Configuration Management: Assign resources to device based |
| 566 | * upon possible configuration and currently allocated resources. |
| 567 | */ |
| 568 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 569 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 570 | "Driver successfully bound to device\n")); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 571 | return 0; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 572 | } |
| 573 | |
Adrian Bunk | 8713cbe | 2005-09-02 17:16:48 -0400 | [diff] [blame] | 574 | static int acpi_start_single_object(struct acpi_device *device) |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 575 | { |
| 576 | int result = 0; |
| 577 | struct acpi_driver *driver; |
| 578 | |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 579 | |
| 580 | if (!(driver = device->driver)) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 581 | return 0; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 582 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 583 | if (driver->ops.start) { |
| 584 | result = driver->ops.start(device); |
| 585 | if (result && driver->ops.remove) |
| 586 | driver->ops.remove(device, ACPI_BUS_REMOVAL_NORMAL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |
| 588 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 589 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 590 | } |
| 591 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 592 | /** |
Randy Dunlap | d758a8f | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 593 | * acpi_bus_register_driver - register a driver with the ACPI bus |
| 594 | * @driver: driver being registered |
| 595 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | * Registers a driver with the ACPI bus. Searches the namespace for all |
Bjorn Helgaas | 9d9f749 | 2006-03-28 17:04:00 -0500 | [diff] [blame] | 597 | * devices that match the driver's criteria and binds. Returns zero for |
| 598 | * success or a negative error status for failure. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | */ |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 600 | int acpi_bus_register_driver(struct acpi_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 601 | { |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 602 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | |
| 604 | if (acpi_disabled) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 605 | return -ENODEV; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 606 | driver->drv.name = driver->name; |
| 607 | driver->drv.bus = &acpi_bus_type; |
| 608 | driver->drv.owner = driver->owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 609 | |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 610 | ret = driver_register(&driver->drv); |
| 611 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 613 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 614 | EXPORT_SYMBOL(acpi_bus_register_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | |
| 616 | /** |
Randy Dunlap | d758a8f | 2006-01-06 01:31:00 -0500 | [diff] [blame] | 617 | * acpi_bus_unregister_driver - unregisters a driver with the APIC bus |
| 618 | * @driver: driver to unregister |
| 619 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | * Unregisters a driver with the ACPI bus. Searches the namespace for all |
| 621 | * devices that match the driver's criteria and unbinds. |
| 622 | */ |
Bjorn Helgaas | 06ea8e08 | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 623 | void acpi_bus_unregister_driver(struct acpi_driver *driver) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | { |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 625 | driver_unregister(&driver->drv); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 626 | } |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 627 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | EXPORT_SYMBOL(acpi_bus_unregister_driver); |
| 629 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 630 | /* -------------------------------------------------------------------------- |
| 631 | Device Enumeration |
| 632 | -------------------------------------------------------------------------- */ |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 633 | static struct acpi_device *acpi_bus_get_parent(acpi_handle handle) |
| 634 | { |
| 635 | acpi_status status; |
| 636 | int ret; |
| 637 | struct acpi_device *device; |
| 638 | |
| 639 | /* |
| 640 | * Fixed hardware devices do not appear in the namespace and do not |
| 641 | * have handles, but we fabricate acpi_devices for them, so we have |
| 642 | * to deal with them specially. |
| 643 | */ |
| 644 | if (handle == NULL) |
| 645 | return acpi_root; |
| 646 | |
| 647 | do { |
| 648 | status = acpi_get_parent(handle, &handle); |
| 649 | if (status == AE_NULL_ENTRY) |
| 650 | return NULL; |
| 651 | if (ACPI_FAILURE(status)) |
| 652 | return acpi_root; |
| 653 | |
| 654 | ret = acpi_bus_get_device(handle, &device); |
| 655 | if (ret == 0) |
| 656 | return device; |
| 657 | } while (1); |
| 658 | } |
| 659 | |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 660 | acpi_status |
| 661 | acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd) |
| 662 | { |
| 663 | acpi_status status; |
| 664 | acpi_handle tmp; |
| 665 | struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 666 | union acpi_object *obj; |
| 667 | |
| 668 | status = acpi_get_handle(handle, "_EJD", &tmp); |
| 669 | if (ACPI_FAILURE(status)) |
| 670 | return status; |
| 671 | |
| 672 | status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer); |
| 673 | if (ACPI_SUCCESS(status)) { |
| 674 | obj = buffer.pointer; |
Holger Macht | 3b5fee5 | 2008-02-14 13:40:34 +0100 | [diff] [blame] | 675 | status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer, |
| 676 | ejd); |
Len Brown | c8f7a62 | 2006-07-09 17:22:28 -0400 | [diff] [blame] | 677 | kfree(buffer.pointer); |
| 678 | } |
| 679 | return status; |
| 680 | } |
| 681 | EXPORT_SYMBOL_GPL(acpi_bus_get_ejd); |
| 682 | |
Bob Moore | 8e4319c | 2009-06-29 13:43:27 +0800 | [diff] [blame] | 683 | void acpi_bus_data_handler(acpi_handle handle, void *context) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 684 | { |
| 685 | |
| 686 | /* TBD */ |
| 687 | |
| 688 | return; |
| 689 | } |
| 690 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 691 | static int acpi_bus_get_perf_flags(struct acpi_device *device) |
| 692 | { |
| 693 | device->performance.state = ACPI_STATE_UNKNOWN; |
| 694 | return 0; |
| 695 | } |
| 696 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | static acpi_status |
| 698 | acpi_bus_extract_wakeup_device_power_package(struct acpi_device *device, |
| 699 | union acpi_object *package) |
| 700 | { |
| 701 | int i = 0; |
| 702 | union acpi_object *element = NULL; |
| 703 | |
| 704 | if (!device || !package || (package->package.count < 2)) |
| 705 | return AE_BAD_PARAMETER; |
| 706 | |
| 707 | element = &(package->package.elements[0]); |
| 708 | if (!element) |
| 709 | return AE_BAD_PARAMETER; |
| 710 | if (element->type == ACPI_TYPE_PACKAGE) { |
| 711 | if ((element->package.count < 2) || |
| 712 | (element->package.elements[0].type != |
| 713 | ACPI_TYPE_LOCAL_REFERENCE) |
| 714 | || (element->package.elements[1].type != ACPI_TYPE_INTEGER)) |
| 715 | return AE_BAD_DATA; |
| 716 | device->wakeup.gpe_device = |
| 717 | element->package.elements[0].reference.handle; |
| 718 | device->wakeup.gpe_number = |
| 719 | (u32) element->package.elements[1].integer.value; |
| 720 | } else if (element->type == ACPI_TYPE_INTEGER) { |
| 721 | device->wakeup.gpe_number = element->integer.value; |
| 722 | } else |
| 723 | return AE_BAD_DATA; |
| 724 | |
| 725 | element = &(package->package.elements[1]); |
| 726 | if (element->type != ACPI_TYPE_INTEGER) { |
| 727 | return AE_BAD_DATA; |
| 728 | } |
| 729 | device->wakeup.sleep_state = element->integer.value; |
| 730 | |
| 731 | if ((package->package.count - 2) > ACPI_MAX_HANDLES) { |
| 732 | return AE_NO_MEMORY; |
| 733 | } |
| 734 | device->wakeup.resources.count = package->package.count - 2; |
| 735 | for (i = 0; i < device->wakeup.resources.count; i++) { |
| 736 | element = &(package->package.elements[i + 2]); |
Bob Moore | cd0b224 | 2008-04-10 19:06:43 +0400 | [diff] [blame] | 737 | if (element->type != ACPI_TYPE_LOCAL_REFERENCE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 738 | return AE_BAD_DATA; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | |
| 740 | device->wakeup.resources.handles[i] = element->reference.handle; |
| 741 | } |
| 742 | |
| 743 | return AE_OK; |
| 744 | } |
| 745 | |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 746 | static void acpi_bus_set_run_wake_flags(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 748 | struct acpi_device_id button_device_ids[] = { |
| 749 | {"PNP0C0D", 0}, |
| 750 | {"PNP0C0C", 0}, |
| 751 | {"PNP0C0E", 0}, |
| 752 | {"", 0}, |
| 753 | }; |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 754 | acpi_status status; |
| 755 | acpi_event_status event_status; |
| 756 | |
| 757 | device->wakeup.run_wake_count = 0; |
Rafael J. Wysocki | b67ea76 | 2010-02-17 23:44:09 +0100 | [diff] [blame] | 758 | device->wakeup.flags.notifier_present = 0; |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 759 | |
| 760 | /* Power button, Lid switch always enable wakeup */ |
| 761 | if (!acpi_match_device_ids(device, button_device_ids)) { |
| 762 | device->wakeup.flags.run_wake = 1; |
| 763 | device->wakeup.flags.always_enabled = 1; |
| 764 | return; |
| 765 | } |
| 766 | |
| 767 | status = acpi_get_gpe_status(NULL, device->wakeup.gpe_number, |
Lin Ming | 0f849d2 | 2010-04-06 14:52:37 +0800 | [diff] [blame] | 768 | &event_status); |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 769 | if (status == AE_OK) |
| 770 | device->wakeup.flags.run_wake = |
| 771 | !!(event_status & ACPI_EVENT_FLAG_HANDLE); |
| 772 | } |
| 773 | |
| 774 | static int acpi_bus_get_wakeup_device_flags(struct acpi_device *device) |
| 775 | { |
| 776 | acpi_status status = 0; |
| 777 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 778 | union acpi_object *package = NULL; |
| 779 | int psw_error; |
Thomas Renninger | 29b71a1 | 2007-07-23 14:43:51 +0200 | [diff] [blame] | 780 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | /* _PRW */ |
| 782 | status = acpi_evaluate_object(device->handle, "_PRW", NULL, &buffer); |
| 783 | if (ACPI_FAILURE(status)) { |
| 784 | ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW")); |
| 785 | goto end; |
| 786 | } |
| 787 | |
| 788 | package = (union acpi_object *)buffer.pointer; |
| 789 | status = acpi_bus_extract_wakeup_device_power_package(device, package); |
| 790 | if (ACPI_FAILURE(status)) { |
| 791 | ACPI_EXCEPTION((AE_INFO, status, "Extracting _PRW package")); |
| 792 | goto end; |
| 793 | } |
| 794 | |
| 795 | kfree(buffer.pointer); |
| 796 | |
| 797 | device->wakeup.flags.valid = 1; |
Rafael J. Wysocki | 9b83ccd | 2009-09-08 23:15:31 +0200 | [diff] [blame] | 798 | device->wakeup.prepare_count = 0; |
Rafael J. Wysocki | f517709 | 2010-02-17 23:41:49 +0100 | [diff] [blame] | 799 | acpi_bus_set_run_wake_flags(device); |
Zhao Yakui | 729b2bd | 2008-03-19 13:26:54 +0800 | [diff] [blame] | 800 | /* Call _PSW/_DSW object to disable its ability to wake the sleeping |
| 801 | * system for the ACPI device with the _PRW object. |
| 802 | * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW. |
| 803 | * So it is necessary to call _DSW object first. Only when it is not |
| 804 | * present will the _PSW object used. |
| 805 | */ |
Rafael J. Wysocki | 77e7660 | 2008-07-07 03:33:34 +0200 | [diff] [blame] | 806 | psw_error = acpi_device_sleep_wake(device, 0, 0, 0); |
| 807 | if (psw_error) |
| 808 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 809 | "error in _DSW or _PSW evaluation\n")); |
| 810 | |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 811 | end: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | if (ACPI_FAILURE(status)) |
| 813 | device->flags.wake_capable = 0; |
| 814 | return 0; |
| 815 | } |
| 816 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 817 | static int acpi_bus_get_power_flags(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | { |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 819 | acpi_status status = 0; |
| 820 | acpi_handle handle = NULL; |
| 821 | u32 i = 0; |
| 822 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | |
| 824 | /* |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 825 | * Power Management Flags |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | */ |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 827 | status = acpi_get_handle(device->handle, "_PSC", &handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 828 | if (ACPI_SUCCESS(status)) |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 829 | device->power.flags.explicit_get = 1; |
| 830 | status = acpi_get_handle(device->handle, "_IRC", &handle); |
| 831 | if (ACPI_SUCCESS(status)) |
| 832 | device->power.flags.inrush_current = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | |
| 834 | /* |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 835 | * Enumerate supported power management states |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 836 | */ |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 837 | for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3; i++) { |
| 838 | struct acpi_device_power_state *ps = &device->power.states[i]; |
| 839 | char object_name[5] = { '_', 'P', 'R', '0' + i, '\0' }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 841 | /* Evaluate "_PRx" to se if power resources are referenced */ |
| 842 | acpi_evaluate_reference(device->handle, object_name, NULL, |
| 843 | &ps->resources); |
| 844 | if (ps->resources.count) { |
| 845 | device->power.flags.power_resources = 1; |
| 846 | ps->flags.valid = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 847 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 849 | /* Evaluate "_PSx" to see if we can do explicit sets */ |
| 850 | object_name[2] = 'S'; |
| 851 | status = acpi_get_handle(device->handle, object_name, &handle); |
| 852 | if (ACPI_SUCCESS(status)) { |
| 853 | ps->flags.explicit_set = 1; |
| 854 | ps->flags.valid = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 855 | } |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 856 | |
| 857 | /* State is valid if we have some power control */ |
| 858 | if (ps->resources.count || ps->flags.explicit_set) |
| 859 | ps->flags.valid = 1; |
| 860 | |
| 861 | ps->power = -1; /* Unknown - driver assigned */ |
| 862 | ps->latency = -1; /* Unknown - driver assigned */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 865 | /* Set defaults for D0 and D3 states (always valid) */ |
| 866 | device->power.states[ACPI_STATE_D0].flags.valid = 1; |
| 867 | device->power.states[ACPI_STATE_D0].power = 100; |
| 868 | device->power.states[ACPI_STATE_D3].flags.valid = 1; |
| 869 | device->power.states[ACPI_STATE_D3].power = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 871 | /* TBD: System wake support and resource requirements. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 872 | |
Zhang Rui | 9e89dde | 2006-12-07 20:56:16 +0800 | [diff] [blame] | 873 | device->power.state = ACPI_STATE_UNKNOWN; |
Zhao Yakui | a51e145 | 2008-08-11 14:55:05 +0800 | [diff] [blame] | 874 | acpi_bus_get_power(device->handle, &(device->power.state)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 875 | |
| 876 | return 0; |
| 877 | } |
| 878 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 879 | static int acpi_bus_get_flags(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 881 | acpi_status status = AE_OK; |
| 882 | acpi_handle temp = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 883 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 884 | |
| 885 | /* Presence of _STA indicates 'dynamic_status' */ |
| 886 | status = acpi_get_handle(device->handle, "_STA", &temp); |
| 887 | if (ACPI_SUCCESS(status)) |
| 888 | device->flags.dynamic_status = 1; |
| 889 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 890 | /* Presence of _RMV indicates 'removable' */ |
| 891 | status = acpi_get_handle(device->handle, "_RMV", &temp); |
| 892 | if (ACPI_SUCCESS(status)) |
| 893 | device->flags.removable = 1; |
| 894 | |
| 895 | /* Presence of _EJD|_EJ0 indicates 'ejectable' */ |
| 896 | status = acpi_get_handle(device->handle, "_EJD", &temp); |
| 897 | if (ACPI_SUCCESS(status)) |
| 898 | device->flags.ejectable = 1; |
| 899 | else { |
| 900 | status = acpi_get_handle(device->handle, "_EJ0", &temp); |
| 901 | if (ACPI_SUCCESS(status)) |
| 902 | device->flags.ejectable = 1; |
| 903 | } |
| 904 | |
| 905 | /* Presence of _LCK indicates 'lockable' */ |
| 906 | status = acpi_get_handle(device->handle, "_LCK", &temp); |
| 907 | if (ACPI_SUCCESS(status)) |
| 908 | device->flags.lockable = 1; |
| 909 | |
| 910 | /* Presence of _PS0|_PR0 indicates 'power manageable' */ |
| 911 | status = acpi_get_handle(device->handle, "_PS0", &temp); |
| 912 | if (ACPI_FAILURE(status)) |
| 913 | status = acpi_get_handle(device->handle, "_PR0", &temp); |
| 914 | if (ACPI_SUCCESS(status)) |
| 915 | device->flags.power_manageable = 1; |
| 916 | |
| 917 | /* Presence of _PRW indicates wake capable */ |
| 918 | status = acpi_get_handle(device->handle, "_PRW", &temp); |
| 919 | if (ACPI_SUCCESS(status)) |
| 920 | device->flags.wake_capable = 1; |
| 921 | |
Joe Perches | 3c5f9be4 | 2008-02-03 17:06:17 +0200 | [diff] [blame] | 922 | /* TBD: Performance management */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 924 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 925 | } |
| 926 | |
Bjorn Helgaas | c7bcb4e | 2009-09-21 19:29:25 +0000 | [diff] [blame] | 927 | static void acpi_device_get_busid(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 929 | char bus_id[5] = { '?', 0 }; |
| 930 | struct acpi_buffer buffer = { sizeof(bus_id), bus_id }; |
| 931 | int i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 932 | |
| 933 | /* |
| 934 | * Bus ID |
| 935 | * ------ |
| 936 | * The device's Bus ID is simply the object name. |
| 937 | * TBD: Shouldn't this value be unique (within the ACPI namespace)? |
| 938 | */ |
Bjorn Helgaas | 859ac9a4 | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 939 | if (ACPI_IS_ROOT_DEVICE(device)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 940 | strcpy(device->pnp.bus_id, "ACPI"); |
Bjorn Helgaas | 859ac9a4 | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 941 | return; |
| 942 | } |
| 943 | |
| 944 | switch (device->device_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | case ACPI_BUS_TYPE_POWER_BUTTON: |
| 946 | strcpy(device->pnp.bus_id, "PWRF"); |
| 947 | break; |
| 948 | case ACPI_BUS_TYPE_SLEEP_BUTTON: |
| 949 | strcpy(device->pnp.bus_id, "SLPF"); |
| 950 | break; |
| 951 | default: |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 952 | acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | /* Clean up trailing underscores (if any) */ |
| 954 | for (i = 3; i > 1; i--) { |
| 955 | if (bus_id[i] == '_') |
| 956 | bus_id[i] = '\0'; |
| 957 | else |
| 958 | break; |
| 959 | } |
| 960 | strcpy(device->pnp.bus_id, bus_id); |
| 961 | break; |
| 962 | } |
| 963 | } |
| 964 | |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 965 | /* |
| 966 | * acpi_bay_match - see if a device is an ejectable driver bay |
| 967 | * |
| 968 | * If an acpi object is ejectable and has one of the ACPI ATA methods defined, |
| 969 | * then we can safely call it an ejectable drive bay |
| 970 | */ |
| 971 | static int acpi_bay_match(struct acpi_device *device){ |
| 972 | acpi_status status; |
| 973 | acpi_handle handle; |
| 974 | acpi_handle tmp; |
| 975 | acpi_handle phandle; |
| 976 | |
| 977 | handle = device->handle; |
| 978 | |
| 979 | status = acpi_get_handle(handle, "_EJ0", &tmp); |
| 980 | if (ACPI_FAILURE(status)) |
| 981 | return -ENODEV; |
| 982 | |
| 983 | if ((ACPI_SUCCESS(acpi_get_handle(handle, "_GTF", &tmp))) || |
| 984 | (ACPI_SUCCESS(acpi_get_handle(handle, "_GTM", &tmp))) || |
| 985 | (ACPI_SUCCESS(acpi_get_handle(handle, "_STM", &tmp))) || |
| 986 | (ACPI_SUCCESS(acpi_get_handle(handle, "_SDD", &tmp)))) |
| 987 | return 0; |
| 988 | |
| 989 | if (acpi_get_parent(handle, &phandle)) |
| 990 | return -ENODEV; |
| 991 | |
| 992 | if ((ACPI_SUCCESS(acpi_get_handle(phandle, "_GTF", &tmp))) || |
| 993 | (ACPI_SUCCESS(acpi_get_handle(phandle, "_GTM", &tmp))) || |
| 994 | (ACPI_SUCCESS(acpi_get_handle(phandle, "_STM", &tmp))) || |
| 995 | (ACPI_SUCCESS(acpi_get_handle(phandle, "_SDD", &tmp)))) |
| 996 | return 0; |
| 997 | |
| 998 | return -ENODEV; |
| 999 | } |
| 1000 | |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1001 | /* |
| 1002 | * acpi_dock_match - see if a device has a _DCK method |
| 1003 | */ |
| 1004 | static int acpi_dock_match(struct acpi_device *device) |
| 1005 | { |
| 1006 | acpi_handle tmp; |
| 1007 | return acpi_get_handle(device->handle, "_DCK", &tmp); |
| 1008 | } |
| 1009 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1010 | char *acpi_device_hid(struct acpi_device *device) |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1011 | { |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1012 | struct acpi_hardware_id *hid; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1013 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1014 | hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list); |
| 1015 | return hid->id; |
| 1016 | } |
| 1017 | EXPORT_SYMBOL(acpi_device_hid); |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1018 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1019 | static void acpi_add_id(struct acpi_device *device, const char *dev_id) |
| 1020 | { |
| 1021 | struct acpi_hardware_id *id; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1022 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1023 | id = kmalloc(sizeof(*id), GFP_KERNEL); |
| 1024 | if (!id) |
| 1025 | return; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1026 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1027 | id->id = kmalloc(strlen(dev_id) + 1, GFP_KERNEL); |
| 1028 | if (!id->id) { |
| 1029 | kfree(id); |
| 1030 | return; |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1031 | } |
| 1032 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1033 | strcpy(id->id, dev_id); |
| 1034 | list_add_tail(&id->list, &device->pnp.ids); |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1035 | } |
| 1036 | |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1037 | /* |
| 1038 | * Old IBM workstations have a DSDT bug wherein the SMBus object |
| 1039 | * lacks the SMBUS01 HID and the methods do not have the necessary "_" |
| 1040 | * prefix. Work around this. |
| 1041 | */ |
| 1042 | static int acpi_ibm_smbus_match(struct acpi_device *device) |
| 1043 | { |
| 1044 | acpi_handle h_dummy; |
| 1045 | struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL}; |
| 1046 | int result; |
| 1047 | |
| 1048 | if (!dmi_name_in_vendors("IBM")) |
| 1049 | return -ENODEV; |
| 1050 | |
| 1051 | /* Look for SMBS object */ |
| 1052 | result = acpi_get_name(device->handle, ACPI_SINGLE_NAME, &path); |
| 1053 | if (result) |
| 1054 | return result; |
| 1055 | |
| 1056 | if (strcmp("SMBS", path.pointer)) { |
| 1057 | result = -ENODEV; |
| 1058 | goto out; |
| 1059 | } |
| 1060 | |
| 1061 | /* Does it have the necessary (but misnamed) methods? */ |
| 1062 | result = -ENODEV; |
| 1063 | if (ACPI_SUCCESS(acpi_get_handle(device->handle, "SBI", &h_dummy)) && |
| 1064 | ACPI_SUCCESS(acpi_get_handle(device->handle, "SBR", &h_dummy)) && |
| 1065 | ACPI_SUCCESS(acpi_get_handle(device->handle, "SBW", &h_dummy))) |
| 1066 | result = 0; |
| 1067 | out: |
| 1068 | kfree(path.pointer); |
| 1069 | return result; |
| 1070 | } |
| 1071 | |
Bjorn Helgaas | c7bcb4e | 2009-09-21 19:29:25 +0000 | [diff] [blame] | 1072 | static void acpi_device_set_id(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1073 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1074 | acpi_status status; |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1075 | struct acpi_device_info *info; |
| 1076 | struct acpica_device_id_list *cid_list; |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1077 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1078 | |
Bjorn Helgaas | c7bcb4e | 2009-09-21 19:29:25 +0000 | [diff] [blame] | 1079 | switch (device->device_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1080 | case ACPI_BUS_TYPE_DEVICE: |
Bjorn Helgaas | 859ac9a4 | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 1081 | if (ACPI_IS_ROOT_DEVICE(device)) { |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1082 | acpi_add_id(device, ACPI_SYSTEM_HID); |
Bjorn Helgaas | 859ac9a4 | 2009-09-21 19:29:50 +0000 | [diff] [blame] | 1083 | break; |
| 1084 | } |
| 1085 | |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 1086 | status = acpi_get_object_info(device->handle, &info); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1087 | if (ACPI_FAILURE(status)) { |
Harvey Harrison | 96b2dd1 | 2008-03-05 18:24:51 -0800 | [diff] [blame] | 1088 | printk(KERN_ERR PREFIX "%s: Error reading device info\n", __func__); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1089 | return; |
| 1090 | } |
| 1091 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1092 | if (info->valid & ACPI_VALID_HID) |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1093 | acpi_add_id(device, info->hardware_id.string); |
| 1094 | if (info->valid & ACPI_VALID_CID) { |
Bob Moore | 15b8dd5 | 2009-06-29 13:39:29 +0800 | [diff] [blame] | 1095 | cid_list = &info->compatible_id_list; |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1096 | for (i = 0; i < cid_list->count; i++) |
| 1097 | acpi_add_id(device, cid_list->ids[i].string); |
| 1098 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | if (info->valid & ACPI_VALID_ADR) { |
| 1100 | device->pnp.bus_address = info->address; |
| 1101 | device->flags.bus_address = 1; |
| 1102 | } |
Zhang Rui | ae84333 | 2006-12-07 20:57:10 +0800 | [diff] [blame] | 1103 | |
Bjorn Helgaas | a83893ae | 2009-10-02 11:03:12 -0400 | [diff] [blame] | 1104 | kfree(info); |
| 1105 | |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1106 | /* |
| 1107 | * Some devices don't reliably have _HIDs & _CIDs, so add |
| 1108 | * synthetic HIDs to make sure drivers can find them. |
| 1109 | */ |
Thomas Renninger | c3d6de6 | 2008-08-01 17:37:55 +0200 | [diff] [blame] | 1110 | if (acpi_is_video_device(device)) |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1111 | acpi_add_id(device, ACPI_VIDEO_HID); |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1112 | else if (ACPI_SUCCESS(acpi_bay_match(device))) |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1113 | acpi_add_id(device, ACPI_BAY_HID); |
Frank Seidel | 3620f2f | 2007-12-07 13:20:34 +0100 | [diff] [blame] | 1114 | else if (ACPI_SUCCESS(acpi_dock_match(device))) |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1115 | acpi_add_id(device, ACPI_DOCK_HID); |
Darrick J. Wong | 222e82a | 2010-03-24 14:38:37 +0100 | [diff] [blame] | 1116 | else if (!acpi_ibm_smbus_match(device)) |
| 1117 | acpi_add_id(device, ACPI_SMBUS_IBM_HID); |
Bjorn Helgaas | b7b30de | 2010-03-24 10:44:33 -0600 | [diff] [blame] | 1118 | else if (!acpi_device_hid(device) && |
| 1119 | ACPI_IS_ROOT_DEVICE(device->parent)) { |
| 1120 | acpi_add_id(device, ACPI_BUS_HID); /* \_SB, LNXSYBUS */ |
| 1121 | strcpy(device->pnp.device_name, ACPI_BUS_DEVICE_NAME); |
| 1122 | strcpy(device->pnp.device_class, ACPI_BUS_CLASS); |
| 1123 | } |
Zhang Rui | 5473526 | 2007-01-11 02:09:09 -0500 | [diff] [blame] | 1124 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1125 | break; |
| 1126 | case ACPI_BUS_TYPE_POWER: |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1127 | acpi_add_id(device, ACPI_POWER_HID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1128 | break; |
| 1129 | case ACPI_BUS_TYPE_PROCESSOR: |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1130 | acpi_add_id(device, ACPI_PROCESSOR_OBJECT_HID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1131 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1132 | case ACPI_BUS_TYPE_THERMAL: |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1133 | acpi_add_id(device, ACPI_THERMAL_HID); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1134 | break; |
| 1135 | case ACPI_BUS_TYPE_POWER_BUTTON: |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1136 | acpi_add_id(device, ACPI_BUTTON_HID_POWERF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1137 | break; |
| 1138 | case ACPI_BUS_TYPE_SLEEP_BUTTON: |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1139 | acpi_add_id(device, ACPI_BUTTON_HID_SLEEPF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1140 | break; |
| 1141 | } |
| 1142 | |
Bjorn Helgaas | b1fbfb2 | 2009-09-21 13:35:14 -0600 | [diff] [blame] | 1143 | /* |
| 1144 | * We build acpi_devices for some objects that don't have _HID or _CID, |
| 1145 | * e.g., PCI bridges and slots. Drivers can't bind to these objects, |
| 1146 | * but we do use them indirectly by traversing the acpi_device tree. |
| 1147 | * This generic ID isn't useful for driver binding, but it provides |
| 1148 | * the useful property that "every acpi_device has an ID." |
| 1149 | */ |
Bjorn Helgaas | 57f3674 | 2009-09-21 13:35:40 -0600 | [diff] [blame] | 1150 | if (list_empty(&device->pnp.ids)) |
| 1151 | acpi_add_id(device, "device"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | } |
| 1153 | |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1154 | static int acpi_device_set_context(struct acpi_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | { |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1156 | acpi_status status; |
| 1157 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | /* |
| 1159 | * Context |
| 1160 | * ------- |
| 1161 | * Attach this 'struct acpi_device' to the ACPI object. This makes |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1162 | * resolutions from handle->device very efficient. Fixed hardware |
| 1163 | * devices have no handles, so we skip them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | */ |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1165 | if (!device->handle) |
| 1166 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1167 | |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1168 | status = acpi_attach_data(device->handle, |
| 1169 | acpi_bus_data_handler, device); |
| 1170 | if (ACPI_SUCCESS(status)) |
| 1171 | return 0; |
| 1172 | |
| 1173 | printk(KERN_ERR PREFIX "Error attaching device data\n"); |
| 1174 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | } |
| 1176 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1177 | static int acpi_bus_remove(struct acpi_device *dev, int rmdevice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | if (!dev) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1180 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1181 | |
Li Shaohua | 9633357 | 2006-12-07 20:56:46 +0800 | [diff] [blame] | 1182 | dev->removal_type = ACPI_BUS_REMOVAL_EJECT; |
Patrick Mochel | 1890a97 | 2006-12-07 20:56:31 +0800 | [diff] [blame] | 1183 | device_release_driver(&dev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | |
| 1185 | if (!rmdevice) |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1186 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1187 | |
Rui Zhang | 2786f6e | 2006-12-21 02:21:13 -0500 | [diff] [blame] | 1188 | /* |
| 1189 | * unbind _ADR-Based Devices when hot removal |
| 1190 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1191 | if (dev->flags.bus_address) { |
| 1192 | if ((dev->parent) && (dev->parent->ops.unbind)) |
| 1193 | dev->parent->ops.unbind(dev); |
| 1194 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1195 | acpi_device_unregister(dev, ACPI_BUS_REMOVAL_EJECT); |
| 1196 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1197 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1198 | } |
| 1199 | |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1200 | static int acpi_add_single_object(struct acpi_device **child, |
| 1201 | acpi_handle handle, int type, |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1202 | unsigned long long sta, |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1203 | struct acpi_bus_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1204 | { |
Bjorn Helgaas | 77c2488 | 2009-09-21 19:29:30 +0000 | [diff] [blame] | 1205 | int result; |
| 1206 | struct acpi_device *device; |
Bjorn Helgaas | 29aaefa | 2009-09-21 19:28:54 +0000 | [diff] [blame] | 1207 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1208 | |
Burman Yan | 36bcbec | 2006-12-19 12:56:11 -0800 | [diff] [blame] | 1209 | device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | if (!device) { |
Len Brown | 6468463 | 2006-06-26 23:41:38 -0400 | [diff] [blame] | 1211 | printk(KERN_ERR PREFIX "Memory allocation error\n"); |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1212 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1214 | |
Bjorn Helgaas | 7f47fa6 | 2009-09-21 13:35:19 -0600 | [diff] [blame] | 1215 | INIT_LIST_HEAD(&device->pnp.ids); |
Bjorn Helgaas | caaa6ef | 2009-09-21 19:29:10 +0000 | [diff] [blame] | 1216 | device->device_type = type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | device->handle = handle; |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1218 | device->parent = acpi_bus_get_parent(handle); |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1219 | device->bus_ops = *ops; /* workround for not call .start */ |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1220 | STRUCT_TO_INT(device->status) = sta; |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1221 | |
Bjorn Helgaas | c7bcb4e | 2009-09-21 19:29:25 +0000 | [diff] [blame] | 1222 | acpi_device_get_busid(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1223 | |
| 1224 | /* |
| 1225 | * Flags |
| 1226 | * ----- |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1227 | * Note that we only look for object handles -- cannot evaluate objects |
| 1228 | * until we know the device is present and properly initialized. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | */ |
| 1230 | result = acpi_bus_get_flags(device); |
| 1231 | if (result) |
| 1232 | goto end; |
| 1233 | |
| 1234 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | * Initialize Device |
| 1236 | * ----------------- |
| 1237 | * TBD: Synch with Core's enumeration/initialization process. |
| 1238 | */ |
Bjorn Helgaas | c7bcb4e | 2009-09-21 19:29:25 +0000 | [diff] [blame] | 1239 | acpi_device_set_id(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1240 | |
| 1241 | /* |
| 1242 | * Power Management |
| 1243 | * ---------------- |
| 1244 | */ |
| 1245 | if (device->flags.power_manageable) { |
| 1246 | result = acpi_bus_get_power_flags(device); |
| 1247 | if (result) |
| 1248 | goto end; |
| 1249 | } |
| 1250 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1251 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | * Wakeup device management |
| 1253 | *----------------------- |
| 1254 | */ |
| 1255 | if (device->flags.wake_capable) { |
| 1256 | result = acpi_bus_get_wakeup_device_flags(device); |
| 1257 | if (result) |
| 1258 | goto end; |
| 1259 | } |
| 1260 | |
| 1261 | /* |
| 1262 | * Performance Management |
| 1263 | * ---------------------- |
| 1264 | */ |
| 1265 | if (device->flags.performance_manageable) { |
| 1266 | result = acpi_bus_get_perf_flags(device); |
| 1267 | if (result) |
| 1268 | goto end; |
| 1269 | } |
| 1270 | |
Bjorn Helgaas | bc3b077 | 2009-09-21 19:29:20 +0000 | [diff] [blame] | 1271 | if ((result = acpi_device_set_context(device))) |
Len Brown | f61f925 | 2009-09-05 13:33:23 -0400 | [diff] [blame] | 1272 | goto end; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1273 | |
Bjorn Helgaas | 66b7ed4 | 2009-09-21 19:29:05 +0000 | [diff] [blame] | 1274 | result = acpi_device_register(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1275 | |
| 1276 | /* |
Rui Zhang | 2786f6e | 2006-12-21 02:21:13 -0500 | [diff] [blame] | 1277 | * Bind _ADR-Based Devices when hot add |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1278 | */ |
| 1279 | if (device->flags.bus_address) { |
| 1280 | if (device->parent && device->parent->ops.bind) |
| 1281 | device->parent->ops.bind(device); |
| 1282 | } |
| 1283 | |
Alex Chiang | 0c526d9 | 2009-05-14 08:31:37 -0600 | [diff] [blame] | 1284 | end: |
Bjorn Helgaas | 29aaefa | 2009-09-21 19:28:54 +0000 | [diff] [blame] | 1285 | if (!result) { |
| 1286 | acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer); |
| 1287 | ACPI_DEBUG_PRINT((ACPI_DB_INFO, |
| 1288 | "Adding %s [%s] parent %s\n", dev_name(&device->dev), |
| 1289 | (char *) buffer.pointer, |
| 1290 | device->parent ? dev_name(&device->parent->dev) : |
| 1291 | "(null)")); |
| 1292 | kfree(buffer.pointer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | *child = device; |
Bjorn Helgaas | 29aaefa | 2009-09-21 19:28:54 +0000 | [diff] [blame] | 1294 | } else |
Hugh Dickins | 718fb0d | 2009-08-06 23:18:12 +0000 | [diff] [blame] | 1295 | acpi_device_release(&device->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1297 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1298 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1300 | #define ACPI_STA_DEFAULT (ACPI_STA_DEVICE_PRESENT | ACPI_STA_DEVICE_ENABLED | \ |
| 1301 | ACPI_STA_DEVICE_UI | ACPI_STA_DEVICE_FUNCTIONING) |
| 1302 | |
| 1303 | static int acpi_bus_type_and_status(acpi_handle handle, int *type, |
| 1304 | unsigned long long *sta) |
| 1305 | { |
| 1306 | acpi_status status; |
| 1307 | acpi_object_type acpi_type; |
| 1308 | |
| 1309 | status = acpi_get_type(handle, &acpi_type); |
| 1310 | if (ACPI_FAILURE(status)) |
| 1311 | return -ENODEV; |
| 1312 | |
| 1313 | switch (acpi_type) { |
| 1314 | case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */ |
| 1315 | case ACPI_TYPE_DEVICE: |
| 1316 | *type = ACPI_BUS_TYPE_DEVICE; |
| 1317 | status = acpi_bus_get_status_handle(handle, sta); |
| 1318 | if (ACPI_FAILURE(status)) |
| 1319 | return -ENODEV; |
| 1320 | break; |
| 1321 | case ACPI_TYPE_PROCESSOR: |
| 1322 | *type = ACPI_BUS_TYPE_PROCESSOR; |
| 1323 | status = acpi_bus_get_status_handle(handle, sta); |
| 1324 | if (ACPI_FAILURE(status)) |
| 1325 | return -ENODEV; |
| 1326 | break; |
| 1327 | case ACPI_TYPE_THERMAL: |
| 1328 | *type = ACPI_BUS_TYPE_THERMAL; |
| 1329 | *sta = ACPI_STA_DEFAULT; |
| 1330 | break; |
| 1331 | case ACPI_TYPE_POWER: |
| 1332 | *type = ACPI_BUS_TYPE_POWER; |
| 1333 | *sta = ACPI_STA_DEFAULT; |
| 1334 | break; |
| 1335 | default: |
| 1336 | return -ENODEV; |
| 1337 | } |
| 1338 | |
| 1339 | return 0; |
| 1340 | } |
| 1341 | |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1342 | static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl, |
| 1343 | void *context, void **return_value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1344 | { |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1345 | struct acpi_bus_ops *ops = context; |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1346 | int type; |
| 1347 | unsigned long long sta; |
Bjorn Helgaas | e3b87f8 | 2009-09-21 19:30:11 +0000 | [diff] [blame] | 1348 | struct acpi_device *device; |
| 1349 | acpi_status status; |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1350 | int result; |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1351 | |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1352 | result = acpi_bus_type_and_status(handle, &type, &sta); |
| 1353 | if (result) |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1354 | return AE_OK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1356 | if (!(sta & ACPI_STA_DEVICE_PRESENT) && |
| 1357 | !(sta & ACPI_STA_DEVICE_FUNCTIONING)) |
| 1358 | return AE_CTRL_DEPTH; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | |
Bjorn Helgaas | e3b87f8 | 2009-09-21 19:30:11 +0000 | [diff] [blame] | 1360 | /* |
| 1361 | * We may already have an acpi_device from a previous enumeration. If |
| 1362 | * so, we needn't add it again, but we may still have to start it. |
| 1363 | */ |
| 1364 | device = NULL; |
| 1365 | acpi_bus_get_device(handle, &device); |
| 1366 | if (ops->acpi_op_add && !device) |
| 1367 | acpi_add_single_object(&device, handle, type, sta, ops); |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1368 | |
Bjorn Helgaas | e3b87f8 | 2009-09-21 19:30:11 +0000 | [diff] [blame] | 1369 | if (!device) |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1370 | return AE_CTRL_DEPTH; |
| 1371 | |
| 1372 | if (ops->acpi_op_start && !(ops->acpi_op_add)) { |
| 1373 | status = acpi_start_single_object(device); |
| 1374 | if (ACPI_FAILURE(status)) |
| 1375 | return AE_CTRL_DEPTH; |
| 1376 | } |
| 1377 | |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1378 | if (!*return_value) |
| 1379 | *return_value = device; |
| 1380 | return AE_OK; |
| 1381 | } |
| 1382 | |
| 1383 | static int acpi_bus_scan(acpi_handle handle, struct acpi_bus_ops *ops, |
| 1384 | struct acpi_device **child) |
| 1385 | { |
| 1386 | acpi_status status; |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1387 | void *device = NULL; |
| 1388 | |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1389 | status = acpi_bus_check_add(handle, 0, ops, &device); |
| 1390 | if (ACPI_SUCCESS(status)) |
| 1391 | acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX, |
Lin Ming | 2263576 | 2009-11-13 10:06:08 +0800 | [diff] [blame] | 1392 | acpi_bus_check_add, NULL, ops, &device); |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1393 | |
| 1394 | if (child) |
| 1395 | *child = device; |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 1396 | |
| 1397 | if (device) |
| 1398 | return 0; |
| 1399 | else |
| 1400 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1401 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1402 | |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 1403 | /* |
| 1404 | * acpi_bus_add and acpi_bus_start |
| 1405 | * |
| 1406 | * scan a given ACPI tree and (probably recently hot-plugged) |
| 1407 | * create and add or starts found devices. |
| 1408 | * |
| 1409 | * If no devices were found -ENODEV is returned which does not |
| 1410 | * mean that this is a real error, there just have been no suitable |
| 1411 | * ACPI objects in the table trunk from which the kernel could create |
| 1412 | * a device and add/start an appropriate driver. |
| 1413 | */ |
| 1414 | |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1415 | int |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1416 | acpi_bus_add(struct acpi_device **child, |
| 1417 | struct acpi_device *parent, acpi_handle handle, int type) |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1418 | { |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1419 | struct acpi_bus_ops ops; |
| 1420 | |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1421 | memset(&ops, 0, sizeof(ops)); |
| 1422 | ops.acpi_op_add = 1; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1423 | |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 1424 | return acpi_bus_scan(handle, &ops, child); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1425 | } |
| 1426 | EXPORT_SYMBOL(acpi_bus_add); |
| 1427 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1428 | int acpi_bus_start(struct acpi_device *device) |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1429 | { |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1430 | struct acpi_bus_ops ops; |
| 1431 | |
Thomas Renninger | d2f6650 | 2010-01-29 17:48:51 +0100 | [diff] [blame] | 1432 | if (!device) |
| 1433 | return -EINVAL; |
| 1434 | |
Bjorn Helgaas | 8e029bf | 2009-09-21 19:29:40 +0000 | [diff] [blame] | 1435 | memset(&ops, 0, sizeof(ops)); |
| 1436 | ops.acpi_op_start = 1; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1437 | |
Thomas Renninger | 7779688 | 2010-01-29 17:48:52 +0100 | [diff] [blame] | 1438 | return acpi_bus_scan(device->handle, &ops, NULL); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1439 | } |
| 1440 | EXPORT_SYMBOL(acpi_bus_start); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | |
Kristen Accardi | ceaba66 | 2006-02-23 17:56:01 -0800 | [diff] [blame] | 1442 | int acpi_bus_trim(struct acpi_device *start, int rmdevice) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1443 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1444 | acpi_status status; |
| 1445 | struct acpi_device *parent, *child; |
| 1446 | acpi_handle phandle, chandle; |
| 1447 | acpi_object_type type; |
| 1448 | u32 level = 1; |
| 1449 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1451 | parent = start; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | phandle = start->handle; |
| 1453 | child = chandle = NULL; |
| 1454 | |
| 1455 | while ((level > 0) && parent && (!err)) { |
| 1456 | status = acpi_get_next_object(ACPI_TYPE_ANY, phandle, |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1457 | chandle, &chandle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1458 | |
| 1459 | /* |
| 1460 | * If this scope is exhausted then move our way back up. |
| 1461 | */ |
| 1462 | if (ACPI_FAILURE(status)) { |
| 1463 | level--; |
| 1464 | chandle = phandle; |
| 1465 | acpi_get_parent(phandle, &phandle); |
| 1466 | child = parent; |
| 1467 | parent = parent->parent; |
| 1468 | |
| 1469 | if (level == 0) |
| 1470 | err = acpi_bus_remove(child, rmdevice); |
| 1471 | else |
| 1472 | err = acpi_bus_remove(child, 1); |
| 1473 | |
| 1474 | continue; |
| 1475 | } |
| 1476 | |
| 1477 | status = acpi_get_type(chandle, &type); |
| 1478 | if (ACPI_FAILURE(status)) { |
| 1479 | continue; |
| 1480 | } |
| 1481 | /* |
| 1482 | * If there is a device corresponding to chandle then |
| 1483 | * parse it (depth-first). |
| 1484 | */ |
| 1485 | if (acpi_bus_get_device(chandle, &child) == 0) { |
| 1486 | level++; |
| 1487 | phandle = chandle; |
| 1488 | chandle = NULL; |
| 1489 | parent = child; |
| 1490 | } |
| 1491 | continue; |
| 1492 | } |
| 1493 | return err; |
| 1494 | } |
Kristen Accardi | ceaba66 | 2006-02-23 17:56:01 -0800 | [diff] [blame] | 1495 | EXPORT_SYMBOL_GPL(acpi_bus_trim); |
| 1496 | |
Bjorn Helgaas | e8b945c | 2009-09-21 19:28:59 +0000 | [diff] [blame] | 1497 | static int acpi_bus_scan_fixed(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | { |
Len Brown | 4be44fc | 2005-08-05 00:44:28 -0400 | [diff] [blame] | 1499 | int result = 0; |
| 1500 | struct acpi_device *device = NULL; |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1501 | struct acpi_bus_ops ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1502 | |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1503 | memset(&ops, 0, sizeof(ops)); |
| 1504 | ops.acpi_op_add = 1; |
| 1505 | ops.acpi_op_start = 1; |
| 1506 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1507 | /* |
| 1508 | * Enumerate all fixed-feature devices. |
| 1509 | */ |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1510 | if ((acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON) == 0) { |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1511 | result = acpi_add_single_object(&device, NULL, |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1512 | ACPI_BUS_TYPE_POWER_BUTTON, |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1513 | ACPI_STA_DEFAULT, |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1514 | &ops); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1516 | |
Alexey Starikovskiy | cee324b | 2007-02-02 19:48:22 +0300 | [diff] [blame] | 1517 | if ((acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON) == 0) { |
Bjorn Helgaas | 5c478f4 | 2009-09-21 19:29:35 +0000 | [diff] [blame] | 1518 | result = acpi_add_single_object(&device, NULL, |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1519 | ACPI_BUS_TYPE_SLEEP_BUTTON, |
Bjorn Helgaas | 778cbc1 | 2009-09-21 19:30:06 +0000 | [diff] [blame] | 1520 | ACPI_STA_DEFAULT, |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1521 | &ops); |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1522 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1523 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1524 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1525 | } |
| 1526 | |
Bjorn Helgaas | e747f27 | 2009-03-24 16:49:43 -0600 | [diff] [blame] | 1527 | int __init acpi_scan_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1528 | { |
| 1529 | int result; |
Rajesh Shah | 3fb0273 | 2005-04-28 00:25:52 -0700 | [diff] [blame] | 1530 | struct acpi_bus_ops ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1532 | memset(&ops, 0, sizeof(ops)); |
| 1533 | ops.acpi_op_add = 1; |
| 1534 | ops.acpi_op_start = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1535 | |
Patrick Mochel | 5b32726 | 2006-05-10 10:33:00 -0400 | [diff] [blame] | 1536 | result = bus_register(&acpi_bus_type); |
| 1537 | if (result) { |
| 1538 | /* We don't want to quit even if we failed to add suspend/resume */ |
| 1539 | printk(KERN_ERR PREFIX "Could not register bus type\n"); |
| 1540 | } |
| 1541 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | * Enumerate devices in the ACPI namespace. |
| 1544 | */ |
Bjorn Helgaas | 51a85fa | 2009-09-21 19:29:56 +0000 | [diff] [blame] | 1545 | result = acpi_bus_scan(ACPI_ROOT_OBJECT, &ops, &acpi_root); |
Alexey Starikovskiy | c04209a | 2008-01-01 14:12:55 -0500 | [diff] [blame] | 1546 | |
Li Shaohua | c4168bf | 2006-12-07 20:56:41 +0800 | [diff] [blame] | 1547 | if (!result) |
Bjorn Helgaas | adc08e2 | 2009-09-21 19:29:45 +0000 | [diff] [blame] | 1548 | result = acpi_bus_scan_fixed(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1549 | |
| 1550 | if (result) |
| 1551 | acpi_device_unregister(acpi_root, ACPI_BUS_REMOVAL_NORMAL); |
| 1552 | |
Patrick Mochel | d550d98 | 2006-06-27 00:41:40 -0400 | [diff] [blame] | 1553 | return result; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1554 | } |