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