blob: 56421a921a2b33eb5ae50babf9251604016e3550 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * scan.c - support for transforming the ACPI namespace into individual objects
3 */
4
5#include <linux/module.h>
6#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09007#include <linux/slab.h>
Randy Dunlap9b6d97b2006-07-12 02:08:00 -04008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/acpi.h>
Alok N Kataria74523c92008-06-13 12:54:24 -040010#include <linux/signal.h>
11#include <linux/kthread.h>
Darrick J. Wong222e82a2010-03-24 14:38:37 +010012#include <linux/dmi.h>
Lance Ortizd1efe3c2012-10-02 12:43:23 -060013#include <linux/nls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060015#include "internal.h"
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#define _COMPONENT ACPI_BUS_COMPONENT
Len Brownf52fd662007-02-12 22:42:12 -050018ACPI_MODULE_NAME("scan");
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define STRUCT_TO_INT(s) (*((int*)&s))
Len Brown4be44fc2005-08-05 00:44:28 -040020extern struct acpi_device *acpi_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#define ACPI_BUS_CLASS "system_bus"
Thomas Renninger29b71a12007-07-23 14:43:51 +020023#define ACPI_BUS_HID "LNXSYBUS"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#define ACPI_BUS_DEVICE_NAME "System Bus"
25
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +000026#define ACPI_IS_ROOT_DEVICE(device) (!(device)->parent)
27
Rafael J. Wysocki683058e2013-05-03 00:26:16 +020028/*
29 * If set, devices will be hot-removed even if they cannot be put offline
30 * gracefully (from the kernel's standpoint).
31 */
32bool acpi_force_hot_remove;
33
Thomas Renninger620e1122010-10-01 10:54:00 +020034static const char *dummy_hid = "device";
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020035
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080036static LIST_HEAD(acpi_bus_id_list);
Rafael J. Wysockic511cc12013-01-27 21:17:29 +010037static DEFINE_MUTEX(acpi_scan_lock);
Rafael J. Wysockica589f92013-01-30 14:27:29 +010038static LIST_HEAD(acpi_scan_handlers_list);
Shaohua Li90905892009-04-07 10:24:29 +080039DEFINE_MUTEX(acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040LIST_HEAD(acpi_wakeup_device_list);
41
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080042struct acpi_device_bus_id{
Zhang Ruibb095852007-01-04 15:03:18 +080043 char bus_id[15];
Zhang Ruie49bd2dd2006-12-08 17:23:43 +080044 unsigned int instance_no;
45 struct list_head node;
46};
Thomas Renninger29b71a12007-07-23 14:43:51 +020047
Rafael J. Wysocki3757b942013-02-13 14:36:47 +010048void acpi_scan_lock_acquire(void)
49{
50 mutex_lock(&acpi_scan_lock);
51}
52EXPORT_SYMBOL_GPL(acpi_scan_lock_acquire);
53
54void acpi_scan_lock_release(void)
55{
56 mutex_unlock(&acpi_scan_lock);
57}
58EXPORT_SYMBOL_GPL(acpi_scan_lock_release);
59
Rafael J. Wysockica589f92013-01-30 14:27:29 +010060int acpi_scan_add_handler(struct acpi_scan_handler *handler)
61{
62 if (!handler || !handler->attach)
63 return -EINVAL;
64
65 list_add_tail(&handler->list_node, &acpi_scan_handlers_list);
66 return 0;
67}
68
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +010069int acpi_scan_add_handler_with_hotplug(struct acpi_scan_handler *handler,
70 const char *hotplug_profile_name)
71{
72 int error;
73
74 error = acpi_scan_add_handler(handler);
75 if (error)
76 return error;
77
78 acpi_sysfs_add_hotplug_profile(&handler->hotplug, hotplug_profile_name);
79 return 0;
80}
81
Thomas Renninger29b71a12007-07-23 14:43:51 +020082/*
83 * Creates hid/cid(s) string needed for modalias and uevent
84 * e.g. on a device with hid:IBM0001 and cid:ACPI0001 you get:
85 * char *modalias: "acpi:IBM0001:ACPI0001"
86*/
Adrian Bunkb3e572d2007-08-14 23:22:35 +020087static int create_modalias(struct acpi_device *acpi_dev, char *modalias,
88 int size)
89{
Thomas Renninger29b71a12007-07-23 14:43:51 +020090 int len;
Zhang Rui5c9fcb52008-03-20 16:40:32 +080091 int count;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -060092 struct acpi_hardware_id *id;
Thomas Renninger29b71a12007-07-23 14:43:51 +020093
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +020094 if (list_empty(&acpi_dev->pnp.ids))
95 return 0;
96
Zhang Rui5c9fcb52008-03-20 16:40:32 +080097 len = snprintf(modalias, size, "acpi:");
Thomas Renninger29b71a12007-07-23 14:43:51 +020098 size -= len;
99
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600100 list_for_each_entry(id, &acpi_dev->pnp.ids, list) {
101 count = snprintf(&modalias[len], size, "%s:", id->id);
Zhang Rui5c9fcb52008-03-20 16:40:32 +0800102 if (count < 0 || count >= size)
103 return -EINVAL;
104 len += count;
105 size -= count;
106 }
107
Thomas Renninger29b71a12007-07-23 14:43:51 +0200108 modalias[len] = '\0';
109 return len;
110}
111
112static ssize_t
113acpi_device_modalias_show(struct device *dev, struct device_attribute *attr, char *buf) {
114 struct acpi_device *acpi_dev = to_acpi_device(dev);
115 int len;
116
117 /* Device has no HID and no CID or string is >1024 */
118 len = create_modalias(acpi_dev, buf, 1024);
119 if (len <= 0)
120 return 0;
121 buf[len++] = '\n';
122 return len;
123}
124static DEVICE_ATTR(modalias, 0444, acpi_device_modalias_show, NULL);
125
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100126static acpi_status acpi_bus_offline(acpi_handle handle, u32 lvl, void *data,
127 void **ret_p)
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200128{
129 struct acpi_device *device = NULL;
130 struct acpi_device_physical_node *pn;
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200131 bool second_pass = (bool)data;
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200132 acpi_status status = AE_OK;
133
134 if (acpi_bus_get_device(handle, &device))
135 return AE_OK;
136
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100137 if (device->handler && !device->handler->hotplug.enabled) {
138 *ret_p = &device->dev;
139 return AE_SUPPORT;
140 }
141
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200142 mutex_lock(&device->physical_node_lock);
143
144 list_for_each_entry(pn, &device->physical_node_list, node) {
145 int ret;
146
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200147 if (second_pass) {
148 /* Skip devices offlined by the first pass. */
149 if (pn->put_online)
150 continue;
151 } else {
152 pn->put_online = false;
153 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200154 ret = device_offline(pn->dev);
155 if (acpi_force_hot_remove)
156 continue;
157
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200158 if (ret >= 0) {
159 pn->put_online = !ret;
160 } else {
161 *ret_p = pn->dev;
162 if (second_pass) {
163 status = AE_ERROR;
164 break;
165 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200166 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200167 }
168
169 mutex_unlock(&device->physical_node_lock);
170
171 return status;
172}
173
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100174static acpi_status acpi_bus_online(acpi_handle handle, u32 lvl, void *data,
175 void **ret_p)
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200176{
177 struct acpi_device *device = NULL;
178 struct acpi_device_physical_node *pn;
179
180 if (acpi_bus_get_device(handle, &device))
181 return AE_OK;
182
183 mutex_lock(&device->physical_node_lock);
184
185 list_for_each_entry(pn, &device->physical_node_list, node)
186 if (pn->put_online) {
187 device_online(pn->dev);
188 pn->put_online = false;
189 }
190
191 mutex_unlock(&device->physical_node_lock);
192
193 return AE_OK;
194}
195
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100196static int acpi_scan_hot_remove(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197{
Yinghai Lu5993c462013-01-11 22:40:41 +0000198 acpi_handle handle = device->handle;
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200199 struct device *errdev;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100200 acpi_status status;
Toshi Kani882fd122013-03-13 19:29:26 +0000201 unsigned long long sta;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100202
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100203 /* If there is no handle, the device node has been unregistered. */
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100204 if (!handle) {
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100205 dev_dbg(&device->dev, "ACPI handle missing\n");
206 put_device(&device->dev);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100207 return -EINVAL;
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100208 }
209
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200210 /*
211 * Carry out two passes here and ignore errors in the first pass,
212 * because if the devices in question are memory blocks and
213 * CONFIG_MEMCG is set, one of the blocks may hold data structures
214 * that the other blocks depend on, but it is not known in advance which
215 * block holds them.
216 *
217 * If the first pass is successful, the second one isn't needed, though.
218 */
219 errdev = NULL;
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100220 status = acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
221 NULL, acpi_bus_offline, (void *)false,
222 (void **)&errdev);
223 if (status == AE_SUPPORT) {
224 dev_warn(errdev, "Offline disabled.\n");
225 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
226 acpi_bus_online, NULL, NULL, NULL);
227 put_device(&device->dev);
228 return -EPERM;
229 }
230 acpi_bus_offline(handle, 0, (void *)false, (void **)&errdev);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200231 if (errdev) {
232 errdev = NULL;
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200233 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100234 NULL, acpi_bus_offline, (void *)true,
235 (void **)&errdev);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200236 if (!errdev || acpi_force_hot_remove)
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100237 acpi_bus_offline(handle, 0, (void *)true,
238 (void **)&errdev);
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200239
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200240 if (errdev && !acpi_force_hot_remove) {
241 dev_warn(errdev, "Offline failed.\n");
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100242 acpi_bus_online(handle, 0, NULL, NULL);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200243 acpi_walk_namespace(ACPI_TYPE_ANY, handle,
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100244 ACPI_UINT32_MAX, acpi_bus_online,
245 NULL, NULL, NULL);
Rafael J. Wysocki303bfdb2013-05-23 10:43:13 +0200246 put_device(&device->dev);
247 return -EBUSY;
248 }
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200249 }
250
Zhang Rui26d46862008-04-29 02:35:48 -0400251 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
Kay Sievers07944692008-10-30 01:18:59 +0100252 "Hot-removing device %s...\n", dev_name(&device->dev)));
Zhang Rui26d46862008-04-29 02:35:48 -0400253
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +0100254 acpi_bus_trim(device);
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200255
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100256 /* Device node has been unregistered. */
257 put_device(&device->dev);
Toshi Kanib3c450c2012-10-26 13:38:57 +0200258 device = NULL;
259
Jiang Liu7d2421f2013-06-29 00:24:40 +0800260 acpi_evaluate_lck(handle, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /*
262 * TBD: _EJD support.
263 */
Jiang Liu7d2421f2013-06-29 00:24:40 +0800264 status = acpi_evaluate_ej0(handle);
265 if (status == AE_NOT_FOUND)
266 return -ENODEV;
267 else if (ACPI_FAILURE(status))
268 return -EIO;
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100269
Toshi Kani882fd122013-03-13 19:29:26 +0000270 /*
271 * Verify if eject was indeed successful. If not, log an error
272 * message. No need to call _OST since _EJ0 call was made OK.
273 */
274 status = acpi_evaluate_integer(handle, "_STA", NULL, &sta);
275 if (ACPI_FAILURE(status)) {
276 acpi_handle_warn(handle,
277 "Status check after eject failed (0x%x)\n", status);
278 } else if (sta & ACPI_STA_DEVICE_ENABLED) {
279 acpi_handle_warn(handle,
280 "Eject incomplete - status 0x%llx\n", sta);
281 }
282
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100283 return 0;
284}
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100285
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100286void acpi_bus_device_eject(void *data, u32 ost_src)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100287{
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100288 struct acpi_device *device = data;
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100289 acpi_handle handle = device->handle;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100290 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200291 int error;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100292
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200293 lock_device_hotplug();
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100294 mutex_lock(&acpi_scan_lock);
295
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100296 if (ost_src == ACPI_NOTIFY_EJECT_REQUEST)
297 acpi_evaluate_hotplug_ost(handle, ACPI_NOTIFY_EJECT_REQUEST,
298 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
299
Rafael J. Wysockic1beb0b2013-11-14 00:54:08 +0100300 if (device->handler && device->handler->hotplug.mode == AHM_CONTAINER)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100301 kobject_uevent(&device->dev.kobj, KOBJ_OFFLINE);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100302
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200303 error = acpi_scan_hot_remove(device);
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100304 if (error == -EPERM) {
305 goto err_support;
306 } else if (error) {
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200307 goto err_out;
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Rafael J. Wysocki3757b942013-02-13 14:36:47 +0100310 out:
Rafael J. Wysockif058cdf2013-02-09 15:29:11 +0100311 mutex_unlock(&acpi_scan_lock);
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200312 unlock_device_hotplug();
Zhang Ruic8d72a52009-06-22 11:31:16 +0800313 return;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100314
Rafael J. Wysocki7f28dde2013-11-07 01:41:14 +0100315 err_support:
316 ost_code = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100317 err_out:
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100318 acpi_evaluate_hotplug_ost(handle, ost_src, ost_code, NULL);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100319 goto out;
320}
321
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100322static void acpi_scan_bus_device_check(void *data, u32 ost_source)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100323{
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100324 acpi_handle handle = data;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100325 struct acpi_device *device = NULL;
326 u32 ost_code = ACPI_OST_SC_NON_SPECIFIC_FAILURE;
327 int error;
328
Rafael J. Wysocki683058e2013-05-03 00:26:16 +0200329 lock_device_hotplug();
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200330 mutex_lock(&acpi_scan_lock);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100331
Rafael J. Wysocki8832f7e2013-07-08 02:01:53 +0200332 if (ost_source != ACPI_NOTIFY_BUS_CHECK) {
333 acpi_bus_get_device(handle, &device);
334 if (device) {
335 dev_warn(&device->dev, "Attempt to re-insert\n");
336 goto out;
337 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100338 }
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100339 error = acpi_bus_scan(handle);
340 if (error) {
341 acpi_handle_warn(handle, "Namespace scan failure\n");
342 goto out;
343 }
344 error = acpi_bus_get_device(handle, &device);
345 if (error) {
346 acpi_handle_warn(handle, "Missing device node object\n");
347 goto out;
348 }
349 ost_code = ACPI_OST_SC_SUCCESS;
350 if (device->handler && device->handler->hotplug.mode == AHM_CONTAINER)
351 kobject_uevent(&device->dev.kobj, KOBJ_ONLINE);
352
353 out:
354 acpi_evaluate_hotplug_ost(handle, ost_source, ost_code, NULL);
355 mutex_unlock(&acpi_scan_lock);
Rafael J. Wysockie0ae8fe2013-08-30 14:19:29 +0200356 unlock_device_hotplug();
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100357}
358
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000359static void acpi_hotplug_unsupported(acpi_handle handle, u32 type)
360{
361 u32 ost_status;
362
363 switch (type) {
364 case ACPI_NOTIFY_BUS_CHECK:
365 acpi_handle_debug(handle,
366 "ACPI_NOTIFY_BUS_CHECK event: unsupported\n");
367 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
368 break;
369 case ACPI_NOTIFY_DEVICE_CHECK:
370 acpi_handle_debug(handle,
371 "ACPI_NOTIFY_DEVICE_CHECK event: unsupported\n");
372 ost_status = ACPI_OST_SC_INSERT_NOT_SUPPORTED;
373 break;
374 case ACPI_NOTIFY_EJECT_REQUEST:
375 acpi_handle_debug(handle,
376 "ACPI_NOTIFY_EJECT_REQUEST event: unsupported\n");
377 ost_status = ACPI_OST_SC_EJECT_NOT_SUPPORTED;
378 break;
379 default:
380 /* non-hotplug event; possibly handled by other handler */
381 return;
382 }
383
384 acpi_evaluate_hotplug_ost(handle, type, ost_status, NULL);
385}
386
387static void acpi_hotplug_notify_cb(acpi_handle handle, u32 type, void *data)
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100388{
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000389 struct acpi_scan_handler *handler = data;
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100390 struct acpi_device *adev;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100391 acpi_status status;
392
Toshi Kani2cbb14f2013-03-05 22:33:31 +0000393 if (!handler->hotplug.enabled)
394 return acpi_hotplug_unsupported(handle, type);
395
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100396 switch (type) {
397 case ACPI_NOTIFY_BUS_CHECK:
398 acpi_handle_debug(handle, "ACPI_NOTIFY_BUS_CHECK event\n");
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100399 break;
400 case ACPI_NOTIFY_DEVICE_CHECK:
401 acpi_handle_debug(handle, "ACPI_NOTIFY_DEVICE_CHECK event\n");
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100402 break;
403 case ACPI_NOTIFY_EJECT_REQUEST:
404 acpi_handle_debug(handle, "ACPI_NOTIFY_EJECT_REQUEST event\n");
Rafael J. Wysocki5beaee42013-11-14 00:54:00 +0100405 if (acpi_bus_get_device(handle, &adev))
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100406 goto err_out;
407
408 get_device(&adev->dev);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100409 status = acpi_hotplug_execute(acpi_bus_device_eject, adev, type);
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100410 if (ACPI_SUCCESS(status))
411 return;
412
413 put_device(&adev->dev);
414 goto err_out;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100415 default:
416 /* non-hotplug event; possibly handled by other handler */
417 return;
418 }
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100419 status = acpi_hotplug_execute(acpi_scan_bus_device_check, handle, type);
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100420 if (ACPI_SUCCESS(status))
421 return;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100422
Rafael J. Wysockia3b1b1e2013-11-07 01:41:58 +0100423 err_out:
424 acpi_evaluate_hotplug_ost(handle, type,
425 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100426}
427
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100428static ssize_t real_power_state_show(struct device *dev,
429 struct device_attribute *attr, char *buf)
430{
431 struct acpi_device *adev = to_acpi_device(dev);
432 int state;
433 int ret;
434
435 ret = acpi_device_get_power(adev, &state);
436 if (ret)
437 return ret;
438
439 return sprintf(buf, "%s\n", acpi_power_state_string(state));
440}
441
442static DEVICE_ATTR(real_power_state, 0444, real_power_state_show, NULL);
443
444static ssize_t power_state_show(struct device *dev,
445 struct device_attribute *attr, char *buf)
446{
447 struct acpi_device *adev = to_acpi_device(dev);
448
449 return sprintf(buf, "%s\n", acpi_power_state_string(adev->power.state));
450}
451
452static DEVICE_ATTR(power_state, 0444, power_state_show, NULL);
453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454static ssize_t
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800455acpi_eject_store(struct device *d, struct device_attribute *attr,
456 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800458 struct acpi_device *acpi_device = to_acpi_device(d);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100459 acpi_object_type not_used;
460 acpi_status status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100462 if (!count || buf[0] != '1')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100465 if ((!acpi_device->handler || !acpi_device->handler->hotplug.enabled)
466 && !acpi_device->driver)
467 return -ENODEV;
468
469 status = acpi_get_type(acpi_device->handle, &not_used);
470 if (ACPI_FAILURE(status) || !acpi_device->flags.ejectable)
471 return -ENODEV;
472
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200473 acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100474 ACPI_OST_SC_EJECT_IN_PROGRESS, NULL);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100475 get_device(&acpi_device->dev);
Rafael J. Wysocki7b981182013-11-07 01:45:40 +0100476 status = acpi_hotplug_execute(acpi_bus_device_eject, acpi_device,
477 ACPI_OST_EC_OSPM_EJECT);
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200478 if (ACPI_SUCCESS(status))
479 return count;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100480
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200481 put_device(&acpi_device->dev);
Rafael J. Wysockif943db42013-08-28 21:41:07 +0200482 acpi_evaluate_hotplug_ost(acpi_device->handle, ACPI_OST_EC_OSPM_EJECT,
Rafael J. Wysockia33ec392013-03-03 23:05:29 +0100483 ACPI_OST_SC_NON_SPECIFIC_FAILURE, NULL);
Rafael J. Wysocki5add99c2013-11-07 01:41:39 +0100484 return status == AE_NO_MEMORY ? -ENOMEM : -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
486
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800487static DEVICE_ATTR(eject, 0200, NULL, acpi_eject_store);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800489static ssize_t
490acpi_device_hid_show(struct device *dev, struct device_attribute *attr, char *buf) {
491 struct acpi_device *acpi_dev = to_acpi_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Bjorn Helgaasea8d82f2009-09-21 13:35:09 -0600493 return sprintf(buf, "%s\n", acpi_device_hid(acpi_dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800494}
495static DEVICE_ATTR(hid, 0444, acpi_device_hid_show, NULL);
496
Lv Zheng923d4a42012-10-30 14:43:26 +0100497static ssize_t acpi_device_uid_show(struct device *dev,
498 struct device_attribute *attr, char *buf)
499{
500 struct acpi_device *acpi_dev = to_acpi_device(dev);
501
502 return sprintf(buf, "%s\n", acpi_dev->pnp.unique_id);
503}
504static DEVICE_ATTR(uid, 0444, acpi_device_uid_show, NULL);
505
506static ssize_t acpi_device_adr_show(struct device *dev,
507 struct device_attribute *attr, char *buf)
508{
509 struct acpi_device *acpi_dev = to_acpi_device(dev);
510
511 return sprintf(buf, "0x%08x\n",
512 (unsigned int)(acpi_dev->pnp.bus_address));
513}
514static DEVICE_ATTR(adr, 0444, acpi_device_adr_show, NULL);
515
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800516static ssize_t
517acpi_device_path_show(struct device *dev, struct device_attribute *attr, char *buf) {
518 struct acpi_device *acpi_dev = to_acpi_device(dev);
519 struct acpi_buffer path = {ACPI_ALLOCATE_BUFFER, NULL};
520 int result;
521
522 result = acpi_get_name(acpi_dev->handle, ACPI_FULL_PATHNAME, &path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600523 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800524 goto end;
525
526 result = sprintf(buf, "%s\n", (char*)path.pointer);
527 kfree(path.pointer);
Alex Chiang0c526d92009-05-14 08:31:37 -0600528end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800529 return result;
530}
531static DEVICE_ATTR(path, 0444, acpi_device_path_show, NULL);
532
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600533/* sysfs file that shows description text from the ACPI _STR method */
534static ssize_t description_show(struct device *dev,
535 struct device_attribute *attr,
536 char *buf) {
537 struct acpi_device *acpi_dev = to_acpi_device(dev);
538 int result;
539
540 if (acpi_dev->pnp.str_obj == NULL)
541 return 0;
542
543 /*
544 * The _STR object contains a Unicode identifier for a device.
545 * We need to convert to utf-8 so it can be displayed.
546 */
547 result = utf16s_to_utf8s(
548 (wchar_t *)acpi_dev->pnp.str_obj->buffer.pointer,
549 acpi_dev->pnp.str_obj->buffer.length,
550 UTF16_LITTLE_ENDIAN, buf,
551 PAGE_SIZE);
552
553 buf[result++] = '\n';
554
555 return result;
556}
557static DEVICE_ATTR(description, 0444, description_show, NULL);
558
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100559static ssize_t
560acpi_device_sun_show(struct device *dev, struct device_attribute *attr,
561 char *buf) {
562 struct acpi_device *acpi_dev = to_acpi_device(dev);
563
564 return sprintf(buf, "%lu\n", acpi_dev->pnp.sun);
565}
566static DEVICE_ATTR(sun, 0444, acpi_device_sun_show, NULL);
567
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800568static int acpi_device_setup_files(struct acpi_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600570 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800571 acpi_status status;
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100572 unsigned long long sun;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800573 int result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800575 /*
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800576 * Devices gotten from FADT don't have a "path" attribute
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800577 */
Alex Chiang0c526d92009-05-14 08:31:37 -0600578 if (dev->handle) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800579 result = device_create_file(&dev->dev, &dev_attr_path);
Alex Chiang0c526d92009-05-14 08:31:37 -0600580 if (result)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800581 goto end;
582 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200584 if (!list_empty(&dev->pnp.ids)) {
585 result = device_create_file(&dev->dev, &dev_attr_hid);
586 if (result)
587 goto end;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200589 result = device_create_file(&dev->dev, &dev_attr_modalias);
590 if (result)
591 goto end;
592 }
Thomas Renninger29b71a12007-07-23 14:43:51 +0200593
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600594 /*
595 * If device has _STR, 'description' file is created
596 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800597 if (acpi_has_method(dev->handle, "_STR")) {
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600598 status = acpi_evaluate_object(dev->handle, "_STR",
599 NULL, &buffer);
600 if (ACPI_FAILURE(status))
601 buffer.pointer = NULL;
602 dev->pnp.str_obj = buffer.pointer;
603 result = device_create_file(&dev->dev, &dev_attr_description);
604 if (result)
605 goto end;
606 }
607
Toshi Kanid4e1a692013-03-04 21:30:41 +0000608 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100609 result = device_create_file(&dev->dev, &dev_attr_adr);
610 if (dev->pnp.unique_id)
611 result = device_create_file(&dev->dev, &dev_attr_uid);
612
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100613 status = acpi_evaluate_integer(dev->handle, "_SUN", NULL, &sun);
614 if (ACPI_SUCCESS(status)) {
615 dev->pnp.sun = (unsigned long)sun;
616 result = device_create_file(&dev->dev, &dev_attr_sun);
617 if (result)
618 goto end;
619 } else {
620 dev->pnp.sun = (unsigned long)-1;
621 }
622
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800623 /*
624 * If device has _EJ0, 'eject' file is created that is used to trigger
625 * hot-removal function from userland.
626 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800627 if (acpi_has_method(dev->handle, "_EJ0")) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800628 result = device_create_file(&dev->dev, &dev_attr_eject);
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100629 if (result)
630 return result;
631 }
632
633 if (dev->flags.power_manageable) {
634 result = device_create_file(&dev->dev, &dev_attr_power_state);
635 if (result)
636 return result;
637
638 if (dev->power.flags.power_resources)
639 result = device_create_file(&dev->dev,
640 &dev_attr_real_power_state);
641 }
642
Alex Chiang0c526d92009-05-14 08:31:37 -0600643end:
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800644 return result;
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800645}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800647static void acpi_device_remove_files(struct acpi_device *dev)
648{
Rafael J. Wysocki836aedb2013-01-24 12:49:59 +0100649 if (dev->flags.power_manageable) {
650 device_remove_file(&dev->dev, &dev_attr_power_state);
651 if (dev->power.flags.power_resources)
652 device_remove_file(&dev->dev,
653 &dev_attr_real_power_state);
654 }
655
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800656 /*
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600657 * If device has _STR, remove 'description' file
658 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800659 if (acpi_has_method(dev->handle, "_STR")) {
Lance Ortizd1efe3c2012-10-02 12:43:23 -0600660 kfree(dev->pnp.str_obj);
661 device_remove_file(&dev->dev, &dev_attr_description);
662 }
663 /*
664 * If device has _EJ0, remove 'eject' file.
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800665 */
Jiang Liu952c63e2013-06-29 00:24:38 +0800666 if (acpi_has_method(dev->handle, "_EJ0"))
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800667 device_remove_file(&dev->dev, &dev_attr_eject);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800668
Jiang Liu952c63e2013-06-29 00:24:38 +0800669 if (acpi_has_method(dev->handle, "_SUN"))
Yasuaki Ishimatsubb74ac22012-11-16 02:56:59 +0100670 device_remove_file(&dev->dev, &dev_attr_sun);
671
Lv Zheng923d4a42012-10-30 14:43:26 +0100672 if (dev->pnp.unique_id)
673 device_remove_file(&dev->dev, &dev_attr_uid);
Toshi Kanid4e1a692013-03-04 21:30:41 +0000674 if (dev->pnp.type.bus_address)
Lv Zheng923d4a42012-10-30 14:43:26 +0100675 device_remove_file(&dev->dev, &dev_attr_adr);
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600676 device_remove_file(&dev->dev, &dev_attr_modalias);
677 device_remove_file(&dev->dev, &dev_attr_hid);
Alex Chiang0c526d92009-05-14 08:31:37 -0600678 if (dev->handle)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800679 device_remove_file(&dev->dev, &dev_attr_path);
Patrick Mochelf883d9d2006-12-07 20:56:38 +0800680}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681/* --------------------------------------------------------------------------
Zhang Rui9e89dde2006-12-07 20:56:16 +0800682 ACPI Bus operations
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 -------------------------------------------------------------------------- */
Thomas Renninger29b71a12007-07-23 14:43:51 +0200684
Mika Westerbergcf761af2012-10-31 22:44:41 +0100685static const struct acpi_device_id *__acpi_match_device(
686 struct acpi_device *device, const struct acpi_device_id *ids)
Thomas Renninger29b71a12007-07-23 14:43:51 +0200687{
688 const struct acpi_device_id *id;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600689 struct acpi_hardware_id *hwid;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200690
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800691 /*
692 * If the device is not present, it is unnecessary to load device
693 * driver for it.
694 */
695 if (!device->status.present)
Mika Westerbergcf761af2012-10-31 22:44:41 +0100696 return NULL;
Zhao Yakui39a0ad82008-08-11 13:40:22 +0800697
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600698 for (id = ids; id->id[0]; id++)
699 list_for_each_entry(hwid, &device->pnp.ids, list)
700 if (!strcmp((char *) id->id, hwid->id))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100701 return id;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200702
Mika Westerbergcf761af2012-10-31 22:44:41 +0100703 return NULL;
704}
705
706/**
707 * acpi_match_device - Match a struct device against a given list of ACPI IDs
708 * @ids: Array of struct acpi_device_id object to match against.
709 * @dev: The device structure to match.
710 *
711 * Check if @dev has a valid ACPI handle and if there is a struct acpi_device
712 * object for that handle and use that object to match against a given list of
713 * device IDs.
714 *
715 * Return a pointer to the first matching ID on success or %NULL on failure.
716 */
717const struct acpi_device_id *acpi_match_device(const struct acpi_device_id *ids,
718 const struct device *dev)
719{
720 struct acpi_device *adev;
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100721 acpi_handle handle = ACPI_HANDLE(dev);
Mika Westerbergcf761af2012-10-31 22:44:41 +0100722
Rafael J. Wysocki0613e1f2013-01-31 20:54:05 +0100723 if (!ids || !handle || acpi_bus_get_device(handle, &adev))
Mika Westerbergcf761af2012-10-31 22:44:41 +0100724 return NULL;
725
726 return __acpi_match_device(adev, ids);
727}
728EXPORT_SYMBOL_GPL(acpi_match_device);
729
730int acpi_match_device_ids(struct acpi_device *device,
731 const struct acpi_device_id *ids)
732{
733 return __acpi_match_device(device, ids) ? 0 : -ENOENT;
Thomas Renninger29b71a12007-07-23 14:43:51 +0200734}
735EXPORT_SYMBOL(acpi_match_device_ids);
736
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100737static void acpi_free_power_resources_lists(struct acpi_device *device)
738{
739 int i;
740
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +0100741 if (device->wakeup.flags.valid)
742 acpi_power_resources_list_free(&device->wakeup.resources);
743
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100744 if (!device->flags.power_manageable)
745 return;
746
747 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++) {
748 struct acpi_device_power_state *ps = &device->power.states[i];
749 acpi_power_resources_list_free(&ps->resources);
750 }
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -0600751}
752
Patrick Mochel1890a972006-12-07 20:56:31 +0800753static void acpi_device_release(struct device *dev)
754{
755 struct acpi_device *acpi_dev = to_acpi_device(dev);
756
Toshi Kanic0af4172013-03-04 21:30:42 +0000757 acpi_free_pnp_ids(&acpi_dev->pnp);
Rafael J. Wysocki0b224522013-01-17 14:11:06 +0100758 acpi_free_power_resources_lists(acpi_dev);
Patrick Mochel1890a972006-12-07 20:56:31 +0800759 kfree(acpi_dev);
760}
761
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800762static int acpi_bus_match(struct device *dev, struct device_driver *drv)
763{
764 struct acpi_device *acpi_dev = to_acpi_device(dev);
765 struct acpi_driver *acpi_drv = to_acpi_driver(drv);
766
Rafael J. Wysocki209d3b12012-12-21 00:36:48 +0100767 return acpi_dev->flags.match_driver
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +0100768 && !acpi_match_device_ids(acpi_dev, acpi_drv->ids);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800769}
770
Kay Sievers7eff2e72007-08-14 15:15:12 +0200771static int acpi_device_uevent(struct device *dev, struct kobj_uevent_env *env)
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800772{
773 struct acpi_device *acpi_dev = to_acpi_device(dev);
Kay Sievers7eff2e72007-08-14 15:15:12 +0200774 int len;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800775
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +0200776 if (list_empty(&acpi_dev->pnp.ids))
777 return 0;
778
Kay Sievers7eff2e72007-08-14 15:15:12 +0200779 if (add_uevent_var(env, "MODALIAS="))
780 return -ENOMEM;
781 len = create_modalias(acpi_dev, &env->buf[env->buflen - 1],
782 sizeof(env->buf) - env->buflen);
783 if (len >= (sizeof(env->buf) - env->buflen))
784 return -ENOMEM;
785 env->buflen += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return 0;
787}
788
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000789static void acpi_device_notify(acpi_handle handle, u32 event, void *data)
790{
791 struct acpi_device *device = data;
792
793 device->driver->ops.notify(device, event);
794}
795
796static acpi_status acpi_device_notify_fixed(void *data)
797{
798 struct acpi_device *device = data;
799
Bjorn Helgaas53de5352009-08-31 22:32:20 +0000800 /* Fixed hardware devices have no handles */
801 acpi_device_notify(NULL, ACPI_FIXED_HARDWARE_EVENT, device);
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000802 return AE_OK;
803}
804
805static int acpi_device_install_notify_handler(struct acpi_device *device)
806{
807 acpi_status status;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000808
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000809 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000810 status =
811 acpi_install_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
812 acpi_device_notify_fixed,
813 device);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000814 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000815 status =
816 acpi_install_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
817 acpi_device_notify_fixed,
818 device);
819 else
820 status = acpi_install_notify_handler(device->handle,
821 ACPI_DEVICE_NOTIFY,
822 acpi_device_notify,
823 device);
824
825 if (ACPI_FAILURE(status))
826 return -EINVAL;
827 return 0;
828}
829
830static void acpi_device_remove_notify_handler(struct acpi_device *device)
831{
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000832 if (device->device_type == ACPI_BUS_TYPE_POWER_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000833 acpi_remove_fixed_event_handler(ACPI_EVENT_POWER_BUTTON,
834 acpi_device_notify_fixed);
Bjorn Helgaasccba2a32009-09-21 19:29:15 +0000835 else if (device->device_type == ACPI_BUS_TYPE_SLEEP_BUTTON)
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000836 acpi_remove_fixed_event_handler(ACPI_EVENT_SLEEP_BUTTON,
837 acpi_device_notify_fixed);
838 else
839 acpi_remove_notify_handler(device->handle, ACPI_DEVICE_NOTIFY,
840 acpi_device_notify);
841}
842
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200843static int acpi_device_probe(struct device *dev)
Zhang Rui9e89dde2006-12-07 20:56:16 +0800844{
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800845 struct acpi_device *acpi_dev = to_acpi_device(dev);
846 struct acpi_driver *acpi_drv = to_acpi_driver(dev->driver);
847 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Rafael J. Wysocki24071f42013-06-16 00:36:41 +0200849 if (acpi_dev->handler)
850 return -EINVAL;
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000851
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200852 if (!acpi_drv->ops.add)
853 return -ENOSYS;
Li Shaohuac4168bf2006-12-07 20:56:41 +0800854
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200855 ret = acpi_drv->ops.add(acpi_dev);
856 if (ret)
857 return ret;
858
859 acpi_dev->driver = acpi_drv;
860 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
861 "Driver [%s] successfully bound to device [%s]\n",
862 acpi_drv->name, acpi_dev->pnp.bus_id));
863
864 if (acpi_drv->ops.notify) {
865 ret = acpi_device_install_notify_handler(acpi_dev);
866 if (ret) {
867 if (acpi_drv->ops.remove)
868 acpi_drv->ops.remove(acpi_dev);
869
870 acpi_dev->driver = NULL;
871 acpi_dev->driver_data = NULL;
872 return ret;
873 }
Zhang Rui9e89dde2006-12-07 20:56:16 +0800874 }
Rafael J. Wysockid9e455f2013-06-10 13:00:50 +0200875
876 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found driver [%s] for device [%s]\n",
877 acpi_drv->name, acpi_dev->pnp.bus_id));
878 get_device(dev);
879 return 0;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800880}
881
882static int acpi_device_remove(struct device * dev)
883{
884 struct acpi_device *acpi_dev = to_acpi_device(dev);
885 struct acpi_driver *acpi_drv = acpi_dev->driver;
886
887 if (acpi_drv) {
Bjorn Helgaas46ec8592009-03-30 17:48:13 +0000888 if (acpi_drv->ops.notify)
889 acpi_device_remove_notify_handler(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800890 if (acpi_drv->ops.remove)
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100891 acpi_drv->ops.remove(acpi_dev);
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800892 }
893 acpi_dev->driver = NULL;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700894 acpi_dev->driver_data = NULL;
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800895
896 put_device(dev);
Zhang Rui9e89dde2006-12-07 20:56:16 +0800897 return 0;
898}
899
David Brownell55955aa2007-05-08 00:28:35 -0700900struct bus_type acpi_bus_type = {
Zhang Rui9e89dde2006-12-07 20:56:16 +0800901 .name = "acpi",
Patrick Mochel5d9464a2006-12-07 20:56:27 +0800902 .match = acpi_bus_match,
903 .probe = acpi_device_probe,
904 .remove = acpi_device_remove,
905 .uevent = acpi_device_uevent,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906};
907
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +0200908static void acpi_bus_data_handler(acpi_handle handle, void *context)
909{
910 /* Intentionally empty. */
911}
912
913int acpi_bus_get_device(acpi_handle handle, struct acpi_device **device)
914{
915 acpi_status status;
916
917 if (!device)
918 return -EINVAL;
919
920 status = acpi_get_data(handle, acpi_bus_data_handler, (void **)device);
921 if (ACPI_FAILURE(status) || !*device) {
922 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No context for object [%p]\n",
923 handle));
924 return -ENODEV;
925 }
926 return 0;
927}
Rafael J. Wysocki65859252013-10-01 23:02:43 +0200928EXPORT_SYMBOL(acpi_bus_get_device);
Rafael J. Wysockicaf5c032013-07-30 14:38:34 +0200929
Rafael J. Wysockicf860be2013-01-24 12:49:49 +0100930int acpi_device_add(struct acpi_device *device,
931 void (*release)(struct device *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932{
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800933 int result;
934 struct acpi_device_bus_id *acpi_device_bus_id, *new_bus_id;
935 int found = 0;
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000936
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100937 if (device->handle) {
938 acpi_status status;
939
940 status = acpi_attach_data(device->handle, acpi_bus_data_handler,
941 device);
942 if (ACPI_FAILURE(status)) {
943 acpi_handle_err(device->handle,
944 "Unable to attach device data\n");
945 return -ENODEV;
946 }
947 }
948
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 /*
950 * Linkage
951 * -------
952 * Link this device to its parent and siblings.
953 */
954 INIT_LIST_HEAD(&device->children);
955 INIT_LIST_HEAD(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 INIT_LIST_HEAD(&device->wakeup_list);
Lan Tianyu1033f902012-08-17 14:44:09 +0800957 INIT_LIST_HEAD(&device->physical_node_list);
958 mutex_init(&device->physical_node_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800960 new_bus_id = kzalloc(sizeof(struct acpi_device_bus_id), GFP_KERNEL);
961 if (!new_bus_id) {
Rafael J. Wysockid43e1672013-01-17 14:11:05 +0100962 pr_err(PREFIX "Memory allocation error\n");
963 result = -ENOMEM;
964 goto err_detach;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800965 }
966
Shaohua Li90905892009-04-07 10:24:29 +0800967 mutex_lock(&acpi_device_lock);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800968 /*
969 * Find suitable bus_id and instance number in acpi_bus_id_list
970 * If failed, create one and link it into acpi_bus_id_list
971 */
972 list_for_each_entry(acpi_device_bus_id, &acpi_bus_id_list, node) {
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600973 if (!strcmp(acpi_device_bus_id->bus_id,
974 acpi_device_hid(device))) {
975 acpi_device_bus_id->instance_no++;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800976 found = 1;
977 kfree(new_bus_id);
978 break;
979 }
980 }
Alex Chiang0c526d92009-05-14 08:31:37 -0600981 if (!found) {
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800982 acpi_device_bus_id = new_bus_id;
Bjorn Helgaas1131b932009-09-21 13:35:29 -0600983 strcpy(acpi_device_bus_id->bus_id, acpi_device_hid(device));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800984 acpi_device_bus_id->instance_no = 0;
985 list_add_tail(&acpi_device_bus_id->node, &acpi_bus_id_list);
986 }
Kay Sievers07944692008-10-30 01:18:59 +0100987 dev_set_name(&device->dev, "%s:%02x", acpi_device_bus_id->bus_id, acpi_device_bus_id->instance_no);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +0800988
Len Brown33b57152008-12-15 22:09:26 -0500989 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 list_add_tail(&device->node, &device->parent->children);
Len Brown33b57152008-12-15 22:09:26 -0500991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (device->wakeup.flags.valid)
993 list_add_tail(&device->wakeup_list, &acpi_wakeup_device_list);
Shaohua Li90905892009-04-07 10:24:29 +0800994 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Patrick Mochel1890a972006-12-07 20:56:31 +0800996 if (device->parent)
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +0000997 device->dev.parent = &device->parent->dev;
Patrick Mochel1890a972006-12-07 20:56:31 +0800998 device->dev.bus = &acpi_bus_type;
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +0100999 device->dev.release = release;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001000 result = device_add(&device->dev);
Alex Chiang0c526d92009-05-14 08:31:37 -06001001 if (result) {
Alex Chiang8b12b922009-05-14 08:31:32 -06001002 dev_err(&device->dev, "Error registering device\n");
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001003 goto err;
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001004 }
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001005
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001006 result = acpi_device_setup_files(device);
Alex Chiang0c526d92009-05-14 08:31:37 -06001007 if (result)
Kay Sievers07944692008-10-30 01:18:59 +01001008 printk(KERN_ERR PREFIX "Error creating sysfs interface for device %s\n",
1009 dev_name(&device->dev));
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001010
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001011 return 0;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001012
1013 err:
Shaohua Li90905892009-04-07 10:24:29 +08001014 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -05001015 if (device->parent)
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001016 list_del(&device->node);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001017 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +08001018 mutex_unlock(&acpi_device_lock);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001019
1020 err_detach:
1021 acpi_detach_data(device->handle, acpi_bus_data_handler);
Zhang Ruie49bd2dd2006-12-08 17:23:43 +08001022 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
Rafael J. Wysockib17b5372013-01-15 13:23:44 +01001025static void acpi_device_unregister(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026{
Shaohua Li90905892009-04-07 10:24:29 +08001027 mutex_lock(&acpi_device_lock);
Len Brown33b57152008-12-15 22:09:26 -05001028 if (device->parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 list_del(&device->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 list_del(&device->wakeup_list);
Shaohua Li90905892009-04-07 10:24:29 +08001032 mutex_unlock(&acpi_device_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
1034 acpi_detach_data(device->handle, acpi_bus_data_handler);
Patrick Mochel1890a972006-12-07 20:56:31 +08001035
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +01001036 acpi_power_add_remove_device(device, false);
Patrick Mochelf883d9d2006-12-07 20:56:38 +08001037 acpi_device_remove_files(device);
Rafael J. Wysockib1c0f992013-01-24 12:50:09 +01001038 if (device->remove)
1039 device->remove(device);
1040
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001041 device_del(&device->dev);
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +01001042 /*
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +01001043 * Transition the device to D3cold to drop the reference counts of all
1044 * power resources the device depends on and turn off the ones that have
1045 * no more references.
Rafael J. Wysockibc9b6402013-01-17 14:11:05 +01001046 */
Rafael J. Wysocki0aa120a2013-02-09 15:29:20 +01001047 acpi_device_set_power(device, ACPI_STATE_D3_COLD);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001048 device->handle = NULL;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001049 put_device(&device->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Zhang Rui9e89dde2006-12-07 20:56:16 +08001052/* --------------------------------------------------------------------------
1053 Driver Management
1054 -------------------------------------------------------------------------- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055/**
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001056 * acpi_bus_register_driver - register a driver with the ACPI bus
1057 * @driver: driver being registered
1058 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 * Registers a driver with the ACPI bus. Searches the namespace for all
Bjorn Helgaas9d9f7492006-03-28 17:04:00 -05001060 * devices that match the driver's criteria and binds. Returns zero for
1061 * success or a negative error status for failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 */
Len Brown4be44fc2005-08-05 00:44:28 -04001063int acpi_bus_register_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064{
Patrick Mochel1890a972006-12-07 20:56:31 +08001065 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
1067 if (acpi_disabled)
Patrick Mocheld550d982006-06-27 00:41:40 -04001068 return -ENODEV;
Patrick Mochel1890a972006-12-07 20:56:31 +08001069 driver->drv.name = driver->name;
1070 driver->drv.bus = &acpi_bus_type;
1071 driver->drv.owner = driver->owner;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Patrick Mochel1890a972006-12-07 20:56:31 +08001073 ret = driver_register(&driver->drv);
1074 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Len Brown4be44fc2005-08-05 00:44:28 -04001077EXPORT_SYMBOL(acpi_bus_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
1079/**
Hanjun Guob27b14c2013-09-22 15:42:41 +08001080 * acpi_bus_unregister_driver - unregisters a driver with the ACPI bus
Randy Dunlapd758a8f2006-01-06 01:31:00 -05001081 * @driver: driver to unregister
1082 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 * Unregisters a driver with the ACPI bus. Searches the namespace for all
1084 * devices that match the driver's criteria and unbinds.
1085 */
Bjorn Helgaas06ea8e082006-04-27 05:25:00 -04001086void acpi_bus_unregister_driver(struct acpi_driver *driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Patrick Mochel1890a972006-12-07 20:56:31 +08001088 driver_unregister(&driver->drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089}
Len Brown4be44fc2005-08-05 00:44:28 -04001090
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091EXPORT_SYMBOL(acpi_bus_unregister_driver);
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093/* --------------------------------------------------------------------------
1094 Device Enumeration
1095 -------------------------------------------------------------------------- */
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001096static struct acpi_device *acpi_bus_get_parent(acpi_handle handle)
1097{
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001098 struct acpi_device *device = NULL;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001099 acpi_status status;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001100
1101 /*
1102 * Fixed hardware devices do not appear in the namespace and do not
1103 * have handles, but we fabricate acpi_devices for them, so we have
1104 * to deal with them specially.
1105 */
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001106 if (!handle)
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001107 return acpi_root;
1108
1109 do {
1110 status = acpi_get_parent(handle, &handle);
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001111 if (ACPI_FAILURE(status))
Rafael J. Wysocki456de892013-01-31 20:57:40 +01001112 return status == AE_NULL_ENTRY ? NULL : acpi_root;
1113 } while (acpi_bus_get_device(handle, &device));
1114 return device;
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001115}
1116
Len Brownc8f7a622006-07-09 17:22:28 -04001117acpi_status
1118acpi_bus_get_ejd(acpi_handle handle, acpi_handle *ejd)
1119{
1120 acpi_status status;
1121 acpi_handle tmp;
1122 struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
1123 union acpi_object *obj;
1124
1125 status = acpi_get_handle(handle, "_EJD", &tmp);
1126 if (ACPI_FAILURE(status))
1127 return status;
1128
1129 status = acpi_evaluate_object(handle, "_EJD", NULL, &buffer);
1130 if (ACPI_SUCCESS(status)) {
1131 obj = buffer.pointer;
Holger Macht3b5fee52008-02-14 13:40:34 +01001132 status = acpi_get_handle(ACPI_ROOT_OBJECT, obj->string.pointer,
1133 ejd);
Len Brownc8f7a622006-07-09 17:22:28 -04001134 kfree(buffer.pointer);
1135 }
1136 return status;
1137}
1138EXPORT_SYMBOL_GPL(acpi_bus_get_ejd);
1139
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001140static int acpi_bus_extract_wakeup_device_power_package(acpi_handle handle,
1141 struct acpi_device_wakeup *wakeup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001143 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
1144 union acpi_object *package = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 union acpi_object *element = NULL;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001146 acpi_status status;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001147 int err = -ENODATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001149 if (!wakeup)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001150 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001152 INIT_LIST_HEAD(&wakeup->resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001154 /* _PRW */
1155 status = acpi_evaluate_object(handle, "_PRW", NULL, &buffer);
1156 if (ACPI_FAILURE(status)) {
1157 ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PRW"));
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001158 return err;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001159 }
1160
1161 package = (union acpi_object *)buffer.pointer;
1162
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001163 if (!package || package->package.count < 2)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001164 goto out;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 element = &(package->package.elements[0]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001167 if (!element)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001168 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 if (element->type == ACPI_TYPE_PACKAGE) {
1171 if ((element->package.count < 2) ||
1172 (element->package.elements[0].type !=
1173 ACPI_TYPE_LOCAL_REFERENCE)
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001174 || (element->package.elements[1].type != ACPI_TYPE_INTEGER))
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001175 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001176
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001177 wakeup->gpe_device =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 element->package.elements[0].reference.handle;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001179 wakeup->gpe_number =
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 (u32) element->package.elements[1].integer.value;
1181 } else if (element->type == ACPI_TYPE_INTEGER) {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001182 wakeup->gpe_device = NULL;
1183 wakeup->gpe_number = element->integer.value;
1184 } else {
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001185 goto out;
1186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 element = &(package->package.elements[1]);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001189 if (element->type != ACPI_TYPE_INTEGER)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001190 goto out;
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001191
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001192 wakeup->sleep_state = element->integer.value;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001194 err = acpi_extract_power_resources(package, 2, &wakeup->resources);
1195 if (err)
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001196 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001198 if (!list_empty(&wakeup->resources)) {
1199 int sleep_state;
1200
Rafael J. Wysockib5d667e2013-02-23 23:15:21 +01001201 err = acpi_power_wakeup_list_init(&wakeup->resources,
1202 &sleep_state);
1203 if (err) {
1204 acpi_handle_warn(handle, "Retrieving current states "
1205 "of wakeup power resources failed\n");
1206 acpi_power_resources_list_free(&wakeup->resources);
1207 goto out;
1208 }
Rafael J. Wysocki0596a522013-01-17 14:11:07 +01001209 if (sleep_state < wakeup->sleep_state) {
1210 acpi_handle_warn(handle, "Overriding _PRW sleep state "
1211 "(S%d) by S%d from power resources\n",
1212 (int)wakeup->sleep_state, sleep_state);
1213 wakeup->sleep_state = sleep_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
Lin Mingbba63a22010-12-13 13:39:17 +08001216 acpi_setup_gpe_for_wake(handle, wakeup->gpe_device, wakeup->gpe_number);
Rafael J. Wysocki98746472010-07-08 00:43:36 +02001217
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001218 out:
1219 kfree(buffer.pointer);
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001220 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221}
1222
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001223static void acpi_bus_set_run_wake_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
Thomas Renninger29b71a12007-07-23 14:43:51 +02001225 struct acpi_device_id button_device_ids[] = {
Thomas Renninger29b71a12007-07-23 14:43:51 +02001226 {"PNP0C0C", 0},
Zhang Ruib7e38302012-12-04 23:23:16 +01001227 {"PNP0C0D", 0},
Thomas Renninger29b71a12007-07-23 14:43:51 +02001228 {"PNP0C0E", 0},
1229 {"", 0},
1230 };
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001231 acpi_status status;
1232 acpi_event_status event_status;
1233
Rafael J. Wysockib67ea762010-02-17 23:44:09 +01001234 device->wakeup.flags.notifier_present = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001235
1236 /* Power button, Lid switch always enable wakeup */
1237 if (!acpi_match_device_ids(device, button_device_ids)) {
1238 device->wakeup.flags.run_wake = 1;
Zhang Ruib7e38302012-12-04 23:23:16 +01001239 if (!acpi_match_device_ids(device, &button_device_ids[1])) {
1240 /* Do not use Lid/sleep button for S5 wakeup */
1241 if (device->wakeup.sleep_state == ACPI_STATE_S5)
1242 device->wakeup.sleep_state = ACPI_STATE_S4;
1243 }
Rafael J. Wysockif2b56bc2011-01-06 23:34:22 +01001244 device_set_wakeup_capable(&device->dev, true);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001245 return;
1246 }
1247
Rafael J. Wysockie8e18c92010-07-08 00:42:51 +02001248 status = acpi_get_gpe_status(device->wakeup.gpe_device,
1249 device->wakeup.gpe_number,
1250 &event_status);
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001251 if (status == AE_OK)
1252 device->wakeup.flags.run_wake =
1253 !!(event_status & ACPI_EVENT_FLAG_HANDLE);
1254}
1255
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001256static void acpi_bus_get_wakeup_device_flags(struct acpi_device *device)
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001257{
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001258 int err;
Thomas Renninger29b71a12007-07-23 14:43:51 +02001259
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001260 /* Presence of _PRW indicates wake capable */
Jiang Liu952c63e2013-06-29 00:24:38 +08001261 if (!acpi_has_method(device->handle, "_PRW"))
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001262 return;
1263
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001264 err = acpi_bus_extract_wakeup_device_power_package(device->handle,
1265 &device->wakeup);
1266 if (err) {
1267 dev_err(&device->dev, "_PRW evaluation error: %d\n", err);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001268 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 }
1270
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 device->wakeup.flags.valid = 1;
Rafael J. Wysocki9b83ccd2009-09-08 23:15:31 +02001272 device->wakeup.prepare_count = 0;
Rafael J. Wysockif5177092010-02-17 23:41:49 +01001273 acpi_bus_set_run_wake_flags(device);
Zhao Yakui729b2bd2008-03-19 13:26:54 +08001274 /* Call _PSW/_DSW object to disable its ability to wake the sleeping
1275 * system for the ACPI device with the _PRW object.
1276 * The _PSW object is depreciated in ACPI 3.0 and is replaced by _DSW.
1277 * So it is necessary to call _DSW object first. Only when it is not
1278 * present will the _PSW object used.
1279 */
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001280 err = acpi_device_sleep_wake(device, 0, 0, 0);
1281 if (err)
Rafael J. Wysocki77e76602008-07-07 03:33:34 +02001282 ACPI_DEBUG_PRINT((ACPI_DB_INFO,
1283 "error in _DSW or _PSW evaluation\n"));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001286static void acpi_bus_init_power_state(struct acpi_device *device, int state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287{
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001288 struct acpi_device_power_state *ps = &device->power.states[state];
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001289 char pathname[5] = { '_', 'P', 'R', '0' + state, '\0' };
1290 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001291 acpi_status status;
Zhang Rui9e89dde2006-12-07 20:56:16 +08001292
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001293 INIT_LIST_HEAD(&ps->resources);
1294
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001295 /* Evaluate "_PRx" to get referenced power resources */
1296 status = acpi_evaluate_object(device->handle, pathname, NULL, &buffer);
1297 if (ACPI_SUCCESS(status)) {
1298 union acpi_object *package = buffer.pointer;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001299
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001300 if (buffer.length && package
1301 && package->type == ACPI_TYPE_PACKAGE
1302 && package->package.count) {
Rafael J. Wysockie88c9c62013-01-17 14:11:07 +01001303 int err = acpi_extract_power_resources(package, 0,
1304 &ps->resources);
1305 if (!err)
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001306 device->power.flags.power_resources = 1;
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001307 }
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001308 ACPI_FREE(buffer.pointer);
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001309 }
1310
1311 /* Evaluate "_PSx" to see if we can do explicit sets */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001312 pathname[2] = 'S';
Jiang Liu952c63e2013-06-29 00:24:38 +08001313 if (acpi_has_method(device->handle, pathname))
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001314 ps->flags.explicit_set = 1;
1315
1316 /*
1317 * State is valid if there are means to put the device into it.
1318 * D3hot is only valid if _PR3 present.
1319 */
Rafael J. Wysockief85bdb2013-01-17 14:11:07 +01001320 if (!list_empty(&ps->resources)
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001321 || (ps->flags.explicit_set && state < ACPI_STATE_D3_HOT)) {
1322 ps->flags.valid = 1;
1323 ps->flags.os_accessible = 1;
1324 }
1325
1326 ps->power = -1; /* Unknown - driver assigned */
1327 ps->latency = -1; /* Unknown - driver assigned */
1328}
1329
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001330static void acpi_bus_get_power_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
Rafael J. Wysocki8bc50532013-01-17 14:11:07 +01001332 u32 i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001334 /* Presence of _PS0|_PR0 indicates 'power manageable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001335 if (!acpi_has_method(device->handle, "_PS0") &&
1336 !acpi_has_method(device->handle, "_PR0"))
1337 return;
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001338
1339 device->flags.power_manageable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
1341 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001342 * Power Management Flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
Jiang Liu952c63e2013-06-29 00:24:38 +08001344 if (acpi_has_method(device->handle, "_PSC"))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001345 device->power.flags.explicit_get = 1;
Jiang Liu952c63e2013-06-29 00:24:38 +08001346 if (acpi_has_method(device->handle, "_IRC"))
Zhang Rui9e89dde2006-12-07 20:56:16 +08001347 device->power.flags.inrush_current = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 /*
Zhang Rui9e89dde2006-12-07 20:56:16 +08001350 * Enumerate supported power management states
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 */
Rafael J. Wysockif33ce562013-01-17 14:11:06 +01001352 for (i = ACPI_STATE_D0; i <= ACPI_STATE_D3_HOT; i++)
1353 acpi_bus_init_power_state(device, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Rafael J. Wysocki0b224522013-01-17 14:11:06 +01001355 INIT_LIST_HEAD(&device->power.states[ACPI_STATE_D3_COLD].resources);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Zhang Rui9e89dde2006-12-07 20:56:16 +08001357 /* Set defaults for D0 and D3 states (always valid) */
1358 device->power.states[ACPI_STATE_D0].flags.valid = 1;
1359 device->power.states[ACPI_STATE_D0].power = 100;
Rafael J. Wysocki8ad928d2013-07-30 14:36:20 +02001360 device->power.states[ACPI_STATE_D3_COLD].flags.valid = 1;
1361 device->power.states[ACPI_STATE_D3_COLD].power = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Rafael J. Wysocki5c7dd712012-05-18 00:39:35 +02001363 /* Set D3cold's explicit_set flag if _PS3 exists. */
1364 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set)
1365 device->power.states[ACPI_STATE_D3_COLD].flags.explicit_set = 1;
1366
Aaron Lu1399dfc2012-11-21 23:33:40 +01001367 /* Presence of _PS3 or _PRx means we can put the device into D3 cold */
1368 if (device->power.states[ACPI_STATE_D3_HOT].flags.explicit_set ||
1369 device->power.flags.power_resources)
1370 device->power.states[ACPI_STATE_D3_COLD].flags.os_accessible = 1;
1371
Rafael J. Wysockib3785492013-02-01 23:43:02 +01001372 if (acpi_bus_init_power(device)) {
1373 acpi_free_power_resources_lists(device);
1374 device->flags.power_manageable = 0;
1375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001378static void acpi_bus_get_flags(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 /* Presence of _STA indicates 'dynamic_status' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001381 if (acpi_has_method(device->handle, "_STA"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 device->flags.dynamic_status = 1;
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 /* Presence of _RMV indicates 'removable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001385 if (acpi_has_method(device->handle, "_RMV"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 device->flags.removable = 1;
1387
1388 /* Presence of _EJD|_EJ0 indicates 'ejectable' */
Jiang Liu952c63e2013-06-29 00:24:38 +08001389 if (acpi_has_method(device->handle, "_EJD") ||
1390 acpi_has_method(device->handle, "_EJ0"))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 device->flags.ejectable = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392}
1393
Bjorn Helgaasc7bcb4e2009-09-21 19:29:25 +00001394static void acpi_device_get_busid(struct acpi_device *device)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395{
Len Brown4be44fc2005-08-05 00:44:28 -04001396 char bus_id[5] = { '?', 0 };
1397 struct acpi_buffer buffer = { sizeof(bus_id), bus_id };
1398 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
1400 /*
1401 * Bus ID
1402 * ------
1403 * The device's Bus ID is simply the object name.
1404 * TBD: Shouldn't this value be unique (within the ACPI namespace)?
1405 */
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001406 if (ACPI_IS_ROOT_DEVICE(device)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 strcpy(device->pnp.bus_id, "ACPI");
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001408 return;
1409 }
1410
1411 switch (device->device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 case ACPI_BUS_TYPE_POWER_BUTTON:
1413 strcpy(device->pnp.bus_id, "PWRF");
1414 break;
1415 case ACPI_BUS_TYPE_SLEEP_BUTTON:
1416 strcpy(device->pnp.bus_id, "SLPF");
1417 break;
1418 default:
Bjorn Helgaas66b7ed42009-09-21 19:29:05 +00001419 acpi_get_name(device->handle, ACPI_SINGLE_NAME, &buffer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 /* Clean up trailing underscores (if any) */
1421 for (i = 3; i > 1; i--) {
1422 if (bus_id[i] == '_')
1423 bus_id[i] = '\0';
1424 else
1425 break;
1426 }
1427 strcpy(device->pnp.bus_id, bus_id);
1428 break;
1429 }
1430}
1431
Zhang Rui54735262007-01-11 02:09:09 -05001432/*
Jiang Liuebf4df82013-06-29 00:24:41 +08001433 * acpi_ata_match - see if an acpi object is an ATA device
1434 *
1435 * If an acpi object has one of the ACPI ATA methods defined,
1436 * then we can safely call it an ATA device.
1437 */
1438bool acpi_ata_match(acpi_handle handle)
1439{
1440 return acpi_has_method(handle, "_GTF") ||
1441 acpi_has_method(handle, "_GTM") ||
1442 acpi_has_method(handle, "_STM") ||
1443 acpi_has_method(handle, "_SDD");
1444}
1445
1446/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001447 * acpi_bay_match - see if an acpi object is an ejectable driver bay
Zhang Rui54735262007-01-11 02:09:09 -05001448 *
1449 * If an acpi object is ejectable and has one of the ACPI ATA methods defined,
1450 * then we can safely call it an ejectable drive bay
1451 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001452bool acpi_bay_match(acpi_handle handle)
Toshi Kanid4e1a692013-03-04 21:30:41 +00001453{
Zhang Rui54735262007-01-11 02:09:09 -05001454 acpi_handle phandle;
1455
Jiang Liu952c63e2013-06-29 00:24:38 +08001456 if (!acpi_has_method(handle, "_EJ0"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001457 return false;
1458 if (acpi_ata_match(handle))
1459 return true;
1460 if (ACPI_FAILURE(acpi_get_parent(handle, &phandle)))
1461 return false;
Zhang Rui54735262007-01-11 02:09:09 -05001462
Jiang Liuebf4df82013-06-29 00:24:41 +08001463 return acpi_ata_match(phandle);
Zhang Rui54735262007-01-11 02:09:09 -05001464}
1465
Frank Seidel3620f2f2007-12-07 13:20:34 +01001466/*
Toshi Kanid4e1a692013-03-04 21:30:41 +00001467 * acpi_dock_match - see if an acpi object has a _DCK method
Frank Seidel3620f2f2007-12-07 13:20:34 +01001468 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001469bool acpi_dock_match(acpi_handle handle)
Frank Seidel3620f2f2007-12-07 13:20:34 +01001470{
Jiang Liuebf4df82013-06-29 00:24:41 +08001471 return acpi_has_method(handle, "_DCK");
Frank Seidel3620f2f2007-12-07 13:20:34 +01001472}
1473
Thomas Renninger620e1122010-10-01 10:54:00 +02001474const char *acpi_device_hid(struct acpi_device *device)
Bob Moore15b8dd52009-06-29 13:39:29 +08001475{
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001476 struct acpi_hardware_id *hid;
Bob Moore15b8dd52009-06-29 13:39:29 +08001477
Thomas Renninger2b2ae7c2010-10-01 10:53:59 +02001478 if (list_empty(&device->pnp.ids))
1479 return dummy_hid;
1480
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001481 hid = list_first_entry(&device->pnp.ids, struct acpi_hardware_id, list);
1482 return hid->id;
1483}
1484EXPORT_SYMBOL(acpi_device_hid);
Bob Moore15b8dd52009-06-29 13:39:29 +08001485
Toshi Kanid4e1a692013-03-04 21:30:41 +00001486static void acpi_add_id(struct acpi_device_pnp *pnp, const char *dev_id)
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001487{
1488 struct acpi_hardware_id *id;
Bob Moore15b8dd52009-06-29 13:39:29 +08001489
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001490 id = kmalloc(sizeof(*id), GFP_KERNEL);
1491 if (!id)
1492 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001493
Thomas Meyer581de592011-08-06 11:32:56 +02001494 id->id = kstrdup(dev_id, GFP_KERNEL);
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001495 if (!id->id) {
1496 kfree(id);
1497 return;
Bob Moore15b8dd52009-06-29 13:39:29 +08001498 }
1499
Toshi Kanid4e1a692013-03-04 21:30:41 +00001500 list_add_tail(&id->list, &pnp->ids);
1501 pnp->type.hardware_id = 1;
Bob Moore15b8dd52009-06-29 13:39:29 +08001502}
1503
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001504/*
1505 * Old IBM workstations have a DSDT bug wherein the SMBus object
1506 * lacks the SMBUS01 HID and the methods do not have the necessary "_"
1507 * prefix. Work around this.
1508 */
Jiang Liuebf4df82013-06-29 00:24:41 +08001509static bool acpi_ibm_smbus_match(acpi_handle handle)
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001510{
Jiang Liuebf4df82013-06-29 00:24:41 +08001511 char node_name[ACPI_PATH_SEGMENT_LENGTH];
1512 struct acpi_buffer path = { sizeof(node_name), node_name };
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001513
1514 if (!dmi_name_in_vendors("IBM"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001515 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001516
1517 /* Look for SMBS object */
Jiang Liuebf4df82013-06-29 00:24:41 +08001518 if (ACPI_FAILURE(acpi_get_name(handle, ACPI_SINGLE_NAME, &path)) ||
1519 strcmp("SMBS", path.pointer))
1520 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001521
1522 /* Does it have the necessary (but misnamed) methods? */
Jiang Liu952c63e2013-06-29 00:24:38 +08001523 if (acpi_has_method(handle, "SBI") &&
1524 acpi_has_method(handle, "SBR") &&
1525 acpi_has_method(handle, "SBW"))
Jiang Liuebf4df82013-06-29 00:24:41 +08001526 return true;
1527
1528 return false;
Darrick J. Wong222e82a2010-03-24 14:38:37 +01001529}
1530
Toshi Kanic0af4172013-03-04 21:30:42 +00001531static void acpi_set_pnp_ids(acpi_handle handle, struct acpi_device_pnp *pnp,
1532 int device_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533{
Len Brown4be44fc2005-08-05 00:44:28 -04001534 acpi_status status;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001535 struct acpi_device_info *info;
Lv Zheng78e25fe2012-10-31 02:25:24 +00001536 struct acpi_pnp_device_id_list *cid_list;
Bjorn Helgaas7f47fa62009-09-21 13:35:19 -06001537 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Toshi Kanic0af4172013-03-04 21:30:42 +00001539 switch (device_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 case ACPI_BUS_TYPE_DEVICE:
Toshi Kanic0af4172013-03-04 21:30:42 +00001541 if (handle == ACPI_ROOT_OBJECT) {
1542 acpi_add_id(pnp, ACPI_SYSTEM_HID);
Bjorn Helgaas859ac9a42009-09-21 19:29:50 +00001543 break;
1544 }
1545
Toshi Kanic0af4172013-03-04 21:30:42 +00001546 status = acpi_get_object_info(handle, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 if (ACPI_FAILURE(status)) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001548 pr_err(PREFIX "%s: Error reading device info\n",
1549 __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 return;
1551 }
1552
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (info->valid & ACPI_VALID_HID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001554 acpi_add_id(pnp, info->hardware_id.string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001555 if (info->valid & ACPI_VALID_CID) {
Bob Moore15b8dd52009-06-29 13:39:29 +08001556 cid_list = &info->compatible_id_list;
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001557 for (i = 0; i < cid_list->count; i++)
Toshi Kanic0af4172013-03-04 21:30:42 +00001558 acpi_add_id(pnp, cid_list->ids[i].string);
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 if (info->valid & ACPI_VALID_ADR) {
Toshi Kanic0af4172013-03-04 21:30:42 +00001561 pnp->bus_address = info->address;
1562 pnp->type.bus_address = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 }
Lv Zhengccf78042012-10-30 14:41:07 +01001564 if (info->valid & ACPI_VALID_UID)
Toshi Kanic0af4172013-03-04 21:30:42 +00001565 pnp->unique_id = kstrdup(info->unique_id.string,
Lv Zhengccf78042012-10-30 14:41:07 +01001566 GFP_KERNEL);
Zhang Ruiae843332006-12-07 20:57:10 +08001567
Bjorn Helgaasa83893ae2009-10-02 11:03:12 -04001568 kfree(info);
1569
Bjorn Helgaas57f36742009-09-21 13:35:40 -06001570 /*
1571 * Some devices don't reliably have _HIDs & _CIDs, so add
1572 * synthetic HIDs to make sure drivers can find them.
1573 */
Toshi Kanic0af4172013-03-04 21:30:42 +00001574 if (acpi_is_video_device(handle))
1575 acpi_add_id(pnp, ACPI_VIDEO_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08001576 else if (acpi_bay_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00001577 acpi_add_id(pnp, ACPI_BAY_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08001578 else if (acpi_dock_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00001579 acpi_add_id(pnp, ACPI_DOCK_HID);
Jiang Liuebf4df82013-06-29 00:24:41 +08001580 else if (acpi_ibm_smbus_match(handle))
Toshi Kanic0af4172013-03-04 21:30:42 +00001581 acpi_add_id(pnp, ACPI_SMBUS_IBM_HID);
1582 else if (list_empty(&pnp->ids) && handle == ACPI_ROOT_OBJECT) {
1583 acpi_add_id(pnp, ACPI_BUS_HID); /* \_SB, LNXSYBUS */
1584 strcpy(pnp->device_name, ACPI_BUS_DEVICE_NAME);
1585 strcpy(pnp->device_class, ACPI_BUS_CLASS);
Bjorn Helgaasb7b30de2010-03-24 10:44:33 -06001586 }
Zhang Rui54735262007-01-11 02:09:09 -05001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 break;
1589 case ACPI_BUS_TYPE_POWER:
Toshi Kanic0af4172013-03-04 21:30:42 +00001590 acpi_add_id(pnp, ACPI_POWER_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 break;
1592 case ACPI_BUS_TYPE_PROCESSOR:
Toshi Kanic0af4172013-03-04 21:30:42 +00001593 acpi_add_id(pnp, ACPI_PROCESSOR_OBJECT_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 case ACPI_BUS_TYPE_THERMAL:
Toshi Kanic0af4172013-03-04 21:30:42 +00001596 acpi_add_id(pnp, ACPI_THERMAL_HID);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 break;
1598 case ACPI_BUS_TYPE_POWER_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001599 acpi_add_id(pnp, ACPI_BUTTON_HID_POWERF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 break;
1601 case ACPI_BUS_TYPE_SLEEP_BUTTON:
Toshi Kanic0af4172013-03-04 21:30:42 +00001602 acpi_add_id(pnp, ACPI_BUTTON_HID_SLEEPF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 break;
1604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605}
1606
Toshi Kanic0af4172013-03-04 21:30:42 +00001607void acpi_free_pnp_ids(struct acpi_device_pnp *pnp)
1608{
1609 struct acpi_hardware_id *id, *tmp;
1610
1611 list_for_each_entry_safe(id, tmp, &pnp->ids, list) {
1612 kfree(id->id);
1613 kfree(id);
1614 }
1615 kfree(pnp->unique_id);
1616}
1617
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001618void acpi_init_device_object(struct acpi_device *device, acpi_handle handle,
1619 int type, unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001621 INIT_LIST_HEAD(&device->pnp.ids);
1622 device->device_type = type;
1623 device->handle = handle;
1624 device->parent = acpi_bus_get_parent(handle);
1625 STRUCT_TO_INT(device->status) = sta;
1626 acpi_device_get_busid(device);
Toshi Kanic0af4172013-03-04 21:30:42 +00001627 acpi_set_pnp_ids(handle, &device->pnp, type);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001628 acpi_bus_get_flags(device);
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001629 device->flags.match_driver = false;
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001630 device_initialize(&device->dev);
1631 dev_set_uevent_suppress(&device->dev, true);
1632}
Bjorn Helgaasbc3b0772009-09-21 19:29:20 +00001633
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001634void acpi_device_add_finalize(struct acpi_device *device)
1635{
1636 dev_set_uevent_suppress(&device->dev, false);
1637 kobject_uevent(&device->dev.kobj, KOBJ_ADD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638}
1639
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001640static int acpi_add_single_object(struct acpi_device **child,
1641 acpi_handle handle, int type,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001642 unsigned long long sta)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
Bjorn Helgaas77c24882009-09-21 19:29:30 +00001644 int result;
1645 struct acpi_device *device;
Bjorn Helgaas29aaefa2009-09-21 19:28:54 +00001646 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Burman Yan36bcbec2006-12-19 12:56:11 -08001648 device = kzalloc(sizeof(struct acpi_device), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 if (!device) {
Len Brown64684632006-06-26 23:41:38 -04001650 printk(KERN_ERR PREFIX "Memory allocation error\n");
Patrick Mocheld550d982006-06-27 00:41:40 -04001651 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001654 acpi_init_device_object(device, handle, type, sta);
1655 acpi_bus_get_power_flags(device);
Rafael J. Wysockid57d09a2011-01-06 23:41:27 +01001656 acpi_bus_get_wakeup_device_flags(device);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001658 result = acpi_device_add(device, acpi_device_release);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001659 if (result) {
Hugh Dickins718fb0d2009-08-06 23:18:12 +00001660 acpi_device_release(&device->dev);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001661 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
1663
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001664 acpi_power_add_remove_device(device, true);
Rafael J. Wysockicf860be2013-01-24 12:49:49 +01001665 acpi_device_add_finalize(device);
Rafael J. Wysockid43e1672013-01-17 14:11:05 +01001666 acpi_get_name(handle, ACPI_FULL_PATHNAME, &buffer);
1667 ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Added %s [%s] parent %s\n",
1668 dev_name(&device->dev), (char *) buffer.pointer,
1669 device->parent ? dev_name(&device->parent->dev) : "(null)"));
1670 kfree(buffer.pointer);
1671 *child = device;
1672 return 0;
Rafael J. Wysockibf325f92010-11-25 00:10:44 +01001673}
1674
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001675static int acpi_bus_type_and_status(acpi_handle handle, int *type,
1676 unsigned long long *sta)
1677{
1678 acpi_status status;
1679 acpi_object_type acpi_type;
1680
1681 status = acpi_get_type(handle, &acpi_type);
1682 if (ACPI_FAILURE(status))
1683 return -ENODEV;
1684
1685 switch (acpi_type) {
1686 case ACPI_TYPE_ANY: /* for ACPI_ROOT_OBJECT */
1687 case ACPI_TYPE_DEVICE:
1688 *type = ACPI_BUS_TYPE_DEVICE;
1689 status = acpi_bus_get_status_handle(handle, sta);
1690 if (ACPI_FAILURE(status))
1691 return -ENODEV;
1692 break;
1693 case ACPI_TYPE_PROCESSOR:
1694 *type = ACPI_BUS_TYPE_PROCESSOR;
1695 status = acpi_bus_get_status_handle(handle, sta);
1696 if (ACPI_FAILURE(status))
1697 return -ENODEV;
1698 break;
1699 case ACPI_TYPE_THERMAL:
1700 *type = ACPI_BUS_TYPE_THERMAL;
1701 *sta = ACPI_STA_DEFAULT;
1702 break;
1703 case ACPI_TYPE_POWER:
1704 *type = ACPI_BUS_TYPE_POWER;
1705 *sta = ACPI_STA_DEFAULT;
1706 break;
1707 default:
1708 return -ENODEV;
1709 }
1710
1711 return 0;
1712}
1713
Rafael J. Wysocki4b59cc12013-03-03 23:06:21 +01001714static bool acpi_scan_handler_matching(struct acpi_scan_handler *handler,
1715 char *idstr,
1716 const struct acpi_device_id **matchid)
1717{
1718 const struct acpi_device_id *devid;
1719
1720 for (devid = handler->ids; devid->id[0]; devid++)
1721 if (!strcmp((char *)devid->id, idstr)) {
1722 if (matchid)
1723 *matchid = devid;
1724
1725 return true;
1726 }
1727
1728 return false;
1729}
1730
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001731static struct acpi_scan_handler *acpi_scan_match_handler(char *idstr,
1732 const struct acpi_device_id **matchid)
1733{
1734 struct acpi_scan_handler *handler;
1735
1736 list_for_each_entry(handler, &acpi_scan_handlers_list, list_node)
1737 if (acpi_scan_handler_matching(handler, idstr, matchid))
1738 return handler;
1739
1740 return NULL;
1741}
1742
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001743void acpi_scan_hotplug_enabled(struct acpi_hotplug_profile *hotplug, bool val)
1744{
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001745 if (!!hotplug->enabled == !!val)
1746 return;
1747
1748 mutex_lock(&acpi_scan_lock);
1749
1750 hotplug->enabled = val;
Rafael J. Wysocki3f8055c2013-03-03 23:08:16 +01001751
1752 mutex_unlock(&acpi_scan_lock);
1753}
1754
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001755static void acpi_scan_init_hotplug(acpi_handle handle, int type)
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001756{
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001757 struct acpi_device_pnp pnp = {};
1758 struct acpi_hardware_id *hwid;
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001759 struct acpi_scan_handler *handler;
1760
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001761 INIT_LIST_HEAD(&pnp.ids);
1762 acpi_set_pnp_ids(handle, &pnp, type);
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001763
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001764 if (!pnp.type.hardware_id)
Catalin Marinas7a26b532013-05-15 16:49:35 +00001765 goto out;
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001766
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001767 /*
1768 * This relies on the fact that acpi_install_notify_handler() will not
1769 * install the same notify handler routine twice for the same handle.
1770 */
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001771 list_for_each_entry(hwid, &pnp.ids, list) {
1772 handler = acpi_scan_match_handler(hwid->id, NULL);
1773 if (handler) {
Toshi Kani2cbb14f2013-03-05 22:33:31 +00001774 acpi_install_notify_handler(handle, ACPI_SYSTEM_NOTIFY,
1775 acpi_hotplug_notify_cb, handler);
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001776 break;
1777 }
1778 }
1779
Catalin Marinas7a26b532013-05-15 16:49:35 +00001780out:
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001781 acpi_free_pnp_ids(&pnp);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001782}
1783
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001784static acpi_status acpi_bus_check_add(acpi_handle handle, u32 lvl_not_used,
1785 void *not_used, void **return_value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001787 struct acpi_device *device = NULL;
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001788 int type;
1789 unsigned long long sta;
1790 int result;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001791
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001792 acpi_bus_get_device(handle, &device);
1793 if (device)
1794 goto out;
1795
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001796 result = acpi_bus_type_and_status(handle, &type, &sta);
1797 if (result)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001798 return AE_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Rafael J. Wysocki82c7d5e2013-01-17 14:11:05 +01001800 if (type == ACPI_BUS_TYPE_POWER) {
1801 acpi_add_power_resource(handle);
1802 return AE_OK;
1803 }
1804
Toshi Kani6b772e8f2013-03-04 21:30:43 +00001805 acpi_scan_init_hotplug(handle, type);
Rafael J. Wysockia33ec392013-03-03 23:05:29 +01001806
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001807 if (!(sta & ACPI_STA_DEVICE_PRESENT) &&
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001808 !(sta & ACPI_STA_DEVICE_FUNCTIONING)) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001809 struct acpi_device_wakeup wakeup;
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001810
Jiang Liu952c63e2013-06-29 00:24:38 +08001811 if (acpi_has_method(handle, "_PRW")) {
Rafael J. Wysocki86e4e202011-01-06 23:40:00 +01001812 acpi_bus_extract_wakeup_device_power_package(handle,
1813 &wakeup);
Rafael J. Wysocki993cbe52013-01-17 14:11:06 +01001814 acpi_power_resources_list_free(&wakeup.resources);
1815 }
Bjorn Helgaas778cbc12009-09-21 19:30:06 +00001816 return AE_CTRL_DEPTH;
Rafael J. Wysockib581a7f2010-12-17 22:34:01 +01001817 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001819 acpi_add_single_object(&device, handle, type, sta);
Bjorn Helgaase3b87f82009-09-21 19:30:11 +00001820 if (!device)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001821 return AE_CTRL_DEPTH;
1822
Rafael J. Wysocki4002bf32012-12-21 00:36:44 +01001823 out:
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001824 if (!*return_value)
1825 *return_value = device;
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001826
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001827 return AE_OK;
1828}
1829
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001830static int acpi_scan_attach_handler(struct acpi_device *device)
1831{
1832 struct acpi_hardware_id *hwid;
1833 int ret = 0;
1834
1835 list_for_each_entry(hwid, &device->pnp.ids, list) {
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001836 const struct acpi_device_id *devid;
1837 struct acpi_scan_handler *handler;
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001838
Rafael J. Wysockic5698072013-03-03 23:05:14 +01001839 handler = acpi_scan_match_handler(hwid->id, &devid);
1840 if (handler) {
1841 ret = handler->attach(device, devid);
1842 if (ret > 0) {
1843 device->handler = handler;
1844 break;
1845 } else if (ret < 0) {
1846 break;
1847 }
1848 }
Rafael J. Wysocki87b85b32013-02-06 13:05:22 +01001849 }
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001850 return ret;
1851}
1852
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001853static acpi_status acpi_bus_device_attach(acpi_handle handle, u32 lvl_not_used,
1854 void *not_used, void **ret_not_used)
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001855{
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001856 struct acpi_device *device;
1857 unsigned long long sta_not_used;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001858 int ret;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001859
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001860 /*
1861 * Ignore errors ignored by acpi_bus_check_add() to avoid terminating
1862 * namespace walks prematurely.
1863 */
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001864 if (acpi_bus_type_and_status(handle, &ret, &sta_not_used))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001865 return AE_OK;
Bjorn Helgaas51a85fa2009-09-21 19:29:56 +00001866
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001867 if (acpi_bus_get_device(handle, &device))
1868 return AE_CTRL_DEPTH;
Thomas Renninger77796882010-01-29 17:48:52 +01001869
Rafael J. Wysocki3a391a32013-07-12 13:45:59 +02001870 if (device->handler)
1871 return AE_OK;
1872
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001873 ret = acpi_scan_attach_handler(device);
Rafael J. Wysocki69310072013-11-07 01:41:01 +01001874 if (ret < 0)
1875 return AE_CTRL_DEPTH;
1876
1877 device->flags.match_driver = true;
1878 if (ret > 0)
1879 return AE_OK;
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001880
1881 ret = device_attach(&device->dev);
1882 return ret >= 0 ? AE_OK : AE_CTRL_DEPTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001885/**
1886 * acpi_bus_scan - Add ACPI device node objects in a given namespace scope.
1887 * @handle: Root of the namespace scope to scan.
Thomas Renninger77796882010-01-29 17:48:52 +01001888 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001889 * Scan a given ACPI tree (probably recently hot-plugged) and create and add
1890 * found devices.
Thomas Renninger77796882010-01-29 17:48:52 +01001891 *
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001892 * If no devices were found, -ENODEV is returned, but it does not mean that
1893 * there has been a real error. There just have been no suitable ACPI objects
1894 * in the table trunk from which the kernel could create a device and add an
1895 * appropriate driver.
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001896 *
1897 * Must be called under acpi_scan_lock.
Thomas Renninger77796882010-01-29 17:48:52 +01001898 */
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001899int acpi_bus_scan(acpi_handle handle)
Rajesh Shah3fb02732005-04-28 00:25:52 -07001900{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 void *device = NULL;
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001902 int error = 0;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001903
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01001904 if (ACPI_SUCCESS(acpi_bus_check_add(handle, 0, NULL, &device)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysockie3863092012-12-21 00:36:47 +01001906 acpi_bus_check_add, NULL, NULL, &device);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001907
Thomas Renningerd2f66502010-01-29 17:48:51 +01001908 if (!device)
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001909 error = -ENODEV;
1910 else if (ACPI_SUCCESS(acpi_bus_device_attach(handle, 0, NULL, NULL)))
Rafael J. Wysocki805d410f2012-12-21 00:36:39 +01001911 acpi_walk_namespace(ACPI_TYPE_ANY, handle, ACPI_UINT32_MAX,
Rafael J. Wysocki0fc300b2012-12-21 00:36:41 +01001912 acpi_bus_device_attach, NULL, NULL, NULL);
Thomas Renningerd2f66502010-01-29 17:48:51 +01001913
Rafael J. Wysockic511cc12013-01-27 21:17:29 +01001914 return error;
Rajesh Shah3fb02732005-04-28 00:25:52 -07001915}
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01001916EXPORT_SYMBOL(acpi_bus_scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001918static acpi_status acpi_bus_device_detach(acpi_handle handle, u32 lvl_not_used,
1919 void *not_used, void **ret_not_used)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920{
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001921 struct acpi_device *device = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001923 if (!acpi_bus_get_device(handle, &device)) {
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001924 struct acpi_scan_handler *dev_handler = device->handler;
1925
Rafael J. Wysockica589f92013-01-30 14:27:29 +01001926 if (dev_handler) {
1927 if (dev_handler->detach)
1928 dev_handler->detach(device);
1929
1930 device->handler = NULL;
1931 } else {
1932 device_release_driver(&device->dev);
1933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001935 return AE_OK;
1936}
1937
1938static acpi_status acpi_bus_remove(acpi_handle handle, u32 lvl_not_used,
1939 void *not_used, void **ret_not_used)
1940{
1941 struct acpi_device *device = NULL;
1942
1943 if (!acpi_bus_get_device(handle, &device))
1944 acpi_device_unregister(device);
1945
1946 return AE_OK;
1947}
1948
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01001949/**
1950 * acpi_bus_trim - Remove ACPI device node and all of its descendants
1951 * @start: Root of the ACPI device nodes subtree to remove.
1952 *
1953 * Must be called under acpi_scan_lock.
1954 */
Rafael J. Wysockibfee26d2013-01-26 00:27:44 +01001955void acpi_bus_trim(struct acpi_device *start)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956{
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001957 /*
Rafael J. Wysocki05404d82013-01-15 13:24:13 +01001958 * Execute acpi_bus_device_detach() as a post-order callback to detach
1959 * all ACPI drivers from the device nodes being removed.
1960 */
1961 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1962 acpi_bus_device_detach, NULL, NULL);
1963 acpi_bus_device_detach(start->handle, 0, NULL, NULL);
1964 /*
Rafael J. Wysockicecdb192013-01-15 13:24:02 +01001965 * Execute acpi_bus_remove() as a post-order callback to remove device
1966 * nodes in the given namespace scope.
1967 */
1968 acpi_walk_namespace(ACPI_TYPE_ANY, start->handle, ACPI_UINT32_MAX, NULL,
1969 acpi_bus_remove, NULL, NULL);
1970 acpi_bus_remove(start->handle, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971}
Kristen Accardiceaba662006-02-23 17:56:01 -08001972EXPORT_SYMBOL_GPL(acpi_bus_trim);
1973
Bjorn Helgaase8b945c2009-09-21 19:28:59 +00001974static int acpi_bus_scan_fixed(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
Len Brown4be44fc2005-08-05 00:44:28 -04001976 int result = 0;
Li Shaohuac4168bf2006-12-07 20:56:41 +08001977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /*
1979 * Enumerate all fixed-feature devices.
1980 */
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001981 if (!(acpi_gbl_FADT.flags & ACPI_FADT_POWER_BUTTON)) {
1982 struct acpi_device *device = NULL;
1983
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00001984 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08001985 ACPI_BUS_TYPE_POWER_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001986 ACPI_STA_DEFAULT);
1987 if (result)
1988 return result;
1989
Rafael J. Wysocki88346162013-11-18 14:18:47 +01001990 device->flags.match_driver = true;
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001991 result = device_attach(&device->dev);
1992 if (result < 0)
1993 return result;
1994
Daniel Drakec10d7a12012-05-10 00:08:43 +01001995 device_init_wakeup(&device->dev, true);
Rajesh Shah3fb02732005-04-28 00:25:52 -07001996 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01001998 if (!(acpi_gbl_FADT.flags & ACPI_FADT_SLEEP_BUTTON)) {
1999 struct acpi_device *device = NULL;
2000
Bjorn Helgaas5c478f42009-09-21 19:29:35 +00002001 result = acpi_add_single_object(&device, NULL,
Li Shaohuac4168bf2006-12-07 20:56:41 +08002002 ACPI_BUS_TYPE_SLEEP_BUTTON,
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002003 ACPI_STA_DEFAULT);
2004 if (result)
2005 return result;
2006
Rafael J. Wysocki88346162013-11-18 14:18:47 +01002007 device->flags.match_driver = true;
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002008 result = device_attach(&device->dev);
Rajesh Shah3fb02732005-04-28 00:25:52 -07002009 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Rafael J. Wysocki2c0d4fe2013-01-29 13:57:20 +01002011 return result < 0 ? result : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013
Bjorn Helgaase747f272009-03-24 16:49:43 -06002014int __init acpi_scan_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 int result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Patrick Mochel5b327262006-05-10 10:33:00 -04002018 result = bus_register(&acpi_bus_type);
2019 if (result) {
2020 /* We don't want to quit even if we failed to add suspend/resume */
2021 printk(KERN_ERR PREFIX "Could not register bus type\n");
2022 }
2023
Rafael J. Wysocki92ef2a22012-12-21 00:36:40 +01002024 acpi_pci_root_init();
Rafael J. Wysocki4daeaf62013-01-30 14:27:37 +01002025 acpi_pci_link_init();
Rafael J. Wysockiac212b62013-05-03 00:26:22 +02002026 acpi_processor_init();
Rafael J. Wysocki141a2972013-01-30 14:27:40 +01002027 acpi_platform_init();
Rafael J. Wysockif58b0822013-03-06 23:46:20 +01002028 acpi_lpss_init();
Lan Tianyu2fa97fe2013-06-05 02:27:50 +00002029 acpi_cmos_rtc_init();
Rafael J. Wysocki737f1a92013-02-08 23:52:39 +01002030 acpi_container_init();
Rafael J. Wysocki0a347642013-03-03 23:18:03 +01002031 acpi_memory_hotplug_init();
Jiang Liu94add0f2013-06-23 00:59:55 +02002032 acpi_dock_init();
Rafael J. Wysocki97d9a9e2010-11-25 00:10:02 +01002033
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002034 mutex_lock(&acpi_scan_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 * Enumerate devices in the ACPI namespace.
2037 */
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002038 result = acpi_bus_scan(ACPI_ROOT_OBJECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002040 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Rafael J. Wysocki0cd6ac52012-12-21 00:36:49 +01002042 result = acpi_bus_get_device(ACPI_ROOT_OBJECT, &acpi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 if (result)
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002044 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002046 result = acpi_bus_scan_fixed();
2047 if (result) {
2048 acpi_device_unregister(acpi_root);
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002049 goto out;
Rafael J. Wysockib8bd7592013-01-19 01:27:35 +01002050 }
2051
2052 acpi_update_all_gpes();
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002053
Yinghai Lu668192b2013-01-21 13:20:48 -08002054 acpi_pci_root_hp_init();
2055
Rafael J. Wysocki3757b942013-02-13 14:36:47 +01002056 out:
2057 mutex_unlock(&acpi_scan_lock);
2058 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059}