David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Link physical devices with ACPI devices support |
| 3 | * |
| 4 | * Copyright (c) 2005 David Shaohua Li <shaohua.li@intel.com> |
| 5 | * Copyright (c) 2005 Intel Corp. |
| 6 | * |
| 7 | * This file is released under the GPLv2. |
| 8 | */ |
Paul Gortmaker | 214f2c9 | 2011-10-26 16:22:14 -0400 | [diff] [blame] | 9 | #include <linux/export.h> |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 10 | #include <linux/init.h> |
| 11 | #include <linux/list.h> |
| 12 | #include <linux/device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 14 | #include <linux/rwsem.h> |
| 15 | #include <linux/acpi.h> |
| 16 | |
Len Brown | a192a95 | 2009-07-28 16:45:54 -0400 | [diff] [blame] | 17 | #include "internal.h" |
| 18 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 19 | #define ACPI_GLUE_DEBUG 0 |
| 20 | #if ACPI_GLUE_DEBUG |
Joe Perches | 23415eb | 2012-12-18 06:31:30 +0000 | [diff] [blame] | 21 | #define DBG(fmt, ...) \ |
| 22 | printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 23 | #else |
Joe Perches | 23415eb | 2012-12-18 06:31:30 +0000 | [diff] [blame] | 24 | #define DBG(fmt, ...) \ |
| 25 | do { \ |
| 26 | if (0) \ |
| 27 | printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \ |
| 28 | } while (0) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 29 | #endif |
| 30 | static LIST_HEAD(bus_type_list); |
| 31 | static DECLARE_RWSEM(bus_type_sem); |
| 32 | |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 33 | #define PHYSICAL_NODE_STRING "physical_node" |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 34 | #define PHYSICAL_NODE_NAME_SIZE (sizeof(PHYSICAL_NODE_STRING) + 10) |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 35 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 36 | int register_acpi_bus_type(struct acpi_bus_type *type) |
| 37 | { |
| 38 | if (acpi_disabled) |
| 39 | return -ENODEV; |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 40 | if (type && type->match && type->find_device) { |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 41 | down_write(&bus_type_sem); |
| 42 | list_add_tail(&type->list, &bus_type_list); |
| 43 | up_write(&bus_type_sem); |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 44 | printk(KERN_INFO PREFIX "bus type %s registered\n", type->name); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 45 | return 0; |
| 46 | } |
| 47 | return -ENODEV; |
| 48 | } |
Jeff Garzik | 91e4d5a | 2012-07-25 14:24:13 -0400 | [diff] [blame] | 49 | EXPORT_SYMBOL_GPL(register_acpi_bus_type); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 50 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 51 | int unregister_acpi_bus_type(struct acpi_bus_type *type) |
| 52 | { |
| 53 | if (acpi_disabled) |
| 54 | return 0; |
| 55 | if (type) { |
| 56 | down_write(&bus_type_sem); |
| 57 | list_del_init(&type->list); |
| 58 | up_write(&bus_type_sem); |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 59 | printk(KERN_INFO PREFIX "bus type %s unregistered\n", |
| 60 | type->name); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 61 | return 0; |
| 62 | } |
| 63 | return -ENODEV; |
| 64 | } |
Jeff Garzik | 91e4d5a | 2012-07-25 14:24:13 -0400 | [diff] [blame] | 65 | EXPORT_SYMBOL_GPL(unregister_acpi_bus_type); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 66 | |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 67 | static struct acpi_bus_type *acpi_get_bus_type(struct device *dev) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 68 | { |
| 69 | struct acpi_bus_type *tmp, *ret = NULL; |
| 70 | |
| 71 | down_read(&bus_type_sem); |
| 72 | list_for_each_entry(tmp, &bus_type_list, list) { |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 73 | if (tmp->match(dev)) { |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 74 | ret = tmp; |
| 75 | break; |
| 76 | } |
| 77 | } |
| 78 | up_read(&bus_type_sem); |
| 79 | return ret; |
| 80 | } |
| 81 | |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 82 | static acpi_status acpi_dev_present(acpi_handle handle, u32 lvl_not_used, |
| 83 | void *not_used, void **ret_p) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 84 | { |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 85 | struct acpi_device *adev = NULL; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 86 | |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 87 | acpi_bus_get_device(handle, &adev); |
| 88 | if (adev) { |
Rafael J. Wysocki | 33f767d | 2013-01-10 13:13:49 +0100 | [diff] [blame] | 89 | *ret_p = handle; |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 90 | return AE_CTRL_TERMINATE; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 91 | } |
| 92 | return AE_OK; |
| 93 | } |
| 94 | |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 95 | static bool acpi_extra_checks_passed(acpi_handle handle, bool is_bridge) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 96 | { |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 97 | unsigned long long sta; |
| 98 | acpi_status status; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 99 | |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 100 | status = acpi_bus_get_status_handle(handle, &sta); |
| 101 | if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_ENABLED)) |
| 102 | return false; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 103 | |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 104 | if (is_bridge) { |
| 105 | void *test = NULL; |
| 106 | |
| 107 | /* Check if this object has at least one child device. */ |
| 108 | acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1, |
| 109 | acpi_dev_present, NULL, NULL, &test); |
| 110 | return !!test; |
| 111 | } |
| 112 | return true; |
Rafael J. Wysocki | 33f767d | 2013-01-10 13:13:49 +0100 | [diff] [blame] | 113 | } |
Rafael J. Wysocki | 60f75b8 | 2013-08-07 22:55:00 +0200 | [diff] [blame] | 114 | |
| 115 | struct find_child_context { |
| 116 | u64 addr; |
| 117 | bool is_bridge; |
| 118 | acpi_handle ret; |
| 119 | bool ret_checked; |
| 120 | }; |
| 121 | |
| 122 | static acpi_status do_find_child(acpi_handle handle, u32 lvl_not_used, |
| 123 | void *data, void **not_used) |
| 124 | { |
| 125 | struct find_child_context *context = data; |
| 126 | unsigned long long addr; |
| 127 | acpi_status status; |
| 128 | |
| 129 | status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, &addr); |
| 130 | if (ACPI_FAILURE(status) || addr != context->addr) |
| 131 | return AE_OK; |
| 132 | |
| 133 | if (!context->ret) { |
| 134 | /* This is the first matching object. Save its handle. */ |
| 135 | context->ret = handle; |
| 136 | return AE_OK; |
| 137 | } |
| 138 | /* |
| 139 | * There is more than one matching object with the same _ADR value. |
| 140 | * That really is unexpected, so we are kind of beyond the scope of the |
| 141 | * spec here. We have to choose which one to return, though. |
| 142 | * |
| 143 | * First, check if the previously found object is good enough and return |
| 144 | * its handle if so. Second, check the same for the object that we've |
| 145 | * just found. |
| 146 | */ |
| 147 | if (!context->ret_checked) { |
| 148 | if (acpi_extra_checks_passed(context->ret, context->is_bridge)) |
| 149 | return AE_CTRL_TERMINATE; |
| 150 | else |
| 151 | context->ret_checked = true; |
| 152 | } |
| 153 | if (acpi_extra_checks_passed(handle, context->is_bridge)) { |
| 154 | context->ret = handle; |
| 155 | return AE_CTRL_TERMINATE; |
| 156 | } |
| 157 | return AE_OK; |
| 158 | } |
| 159 | |
| 160 | acpi_handle acpi_find_child(acpi_handle parent, u64 addr, bool is_bridge) |
| 161 | { |
| 162 | if (parent) { |
| 163 | struct find_child_context context = { |
| 164 | .addr = addr, |
| 165 | .is_bridge = is_bridge, |
| 166 | }; |
| 167 | |
| 168 | acpi_walk_namespace(ACPI_TYPE_DEVICE, parent, 1, do_find_child, |
| 169 | NULL, &context, NULL); |
| 170 | return context.ret; |
| 171 | } |
| 172 | return NULL; |
| 173 | } |
| 174 | EXPORT_SYMBOL_GPL(acpi_find_child); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 175 | |
Rafael J. Wysocki | bdbdbf9 | 2013-08-07 01:19:23 +0200 | [diff] [blame] | 176 | static void acpi_physnode_link_name(char *buf, unsigned int node_id) |
| 177 | { |
| 178 | if (node_id > 0) |
| 179 | snprintf(buf, PHYSICAL_NODE_NAME_SIZE, |
| 180 | PHYSICAL_NODE_STRING "%u", node_id); |
| 181 | else |
| 182 | strcpy(buf, PHYSICAL_NODE_STRING); |
| 183 | } |
| 184 | |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 185 | int acpi_bind_one(struct device *dev, acpi_handle handle) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 186 | { |
David Brownell | 1071695 | 2008-02-22 21:54:24 -0800 | [diff] [blame] | 187 | struct acpi_device *acpi_dev; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 188 | acpi_status status; |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 189 | struct acpi_device_physical_node *physical_node, *pn; |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 190 | char physical_node_name[PHYSICAL_NODE_NAME_SIZE]; |
| 191 | struct list_head *physnode_list; |
| 192 | unsigned int node_id; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 193 | int retval = -EINVAL; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 194 | |
Rafael J. Wysocki | 95f8a08 | 2012-11-21 00:21:50 +0100 | [diff] [blame] | 195 | if (ACPI_HANDLE(dev)) { |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 196 | if (handle) { |
| 197 | dev_warn(dev, "ACPI handle is already set\n"); |
| 198 | return -EINVAL; |
| 199 | } else { |
Rafael J. Wysocki | 95f8a08 | 2012-11-21 00:21:50 +0100 | [diff] [blame] | 200 | handle = ACPI_HANDLE(dev); |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 201 | } |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 202 | } |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 203 | if (!handle) |
| 204 | return -EINVAL; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 205 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 206 | get_device(dev); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 207 | status = acpi_bus_get_device(handle, &acpi_dev); |
| 208 | if (ACPI_FAILURE(status)) |
| 209 | goto err; |
| 210 | |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 211 | physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 212 | if (!physical_node) { |
| 213 | retval = -ENOMEM; |
| 214 | goto err; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 215 | } |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 216 | |
| 217 | mutex_lock(&acpi_dev->physical_node_lock); |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 218 | |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 219 | /* |
| 220 | * Keep the list sorted by node_id so that the IDs of removed nodes can |
| 221 | * be recycled easily. |
| 222 | */ |
| 223 | physnode_list = &acpi_dev->physical_node_list; |
| 224 | node_id = 0; |
| 225 | list_for_each_entry(pn, &acpi_dev->physical_node_list, node) { |
| 226 | /* Sanity check. */ |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 227 | if (pn->dev == dev) { |
Rafael J. Wysocki | 3342c75 | 2013-08-08 16:19:10 +0200 | [diff] [blame^] | 228 | mutex_unlock(&acpi_dev->physical_node_lock); |
Rafael J. Wysocki | 3fe444a | 2013-08-07 01:15:25 +0200 | [diff] [blame] | 229 | |
Rafael J. Wysocki | 3342c75 | 2013-08-08 16:19:10 +0200 | [diff] [blame^] | 230 | dev_warn(dev, "Already associated with ACPI node\n"); |
| 231 | kfree(physical_node); |
| 232 | if (ACPI_HANDLE(dev) != handle) |
| 233 | goto err; |
| 234 | |
| 235 | put_device(dev); |
| 236 | return 0; |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 237 | } |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 238 | if (pn->node_id == node_id) { |
| 239 | physnode_list = &pn->node; |
| 240 | node_id++; |
| 241 | } |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 242 | } |
| 243 | |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 244 | physical_node->node_id = node_id; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 245 | physical_node->dev = dev; |
Rafael J. Wysocki | 007ccfc | 2013-08-06 14:32:54 +0200 | [diff] [blame] | 246 | list_add(&physical_node->node, physnode_list); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 247 | acpi_dev->physical_node_count++; |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 248 | |
Rafael J. Wysocki | 95f8a08 | 2012-11-21 00:21:50 +0100 | [diff] [blame] | 249 | if (!ACPI_HANDLE(dev)) |
| 250 | ACPI_HANDLE_SET(dev, acpi_dev->handle); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 251 | |
Rafael J. Wysocki | bdbdbf9 | 2013-08-07 01:19:23 +0200 | [diff] [blame] | 252 | acpi_physnode_link_name(physical_node_name, node_id); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 253 | retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj, |
Rafael J. Wysocki | f501b6e | 2013-08-07 01:19:52 +0200 | [diff] [blame] | 254 | physical_node_name); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 255 | retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj, |
Rafael J. Wysocki | f501b6e | 2013-08-07 01:19:52 +0200 | [diff] [blame] | 256 | "firmware_node"); |
David Brownell | 1071695 | 2008-02-22 21:54:24 -0800 | [diff] [blame] | 257 | |
Rafael J. Wysocki | 4005520 | 2013-08-07 01:19:37 +0200 | [diff] [blame] | 258 | mutex_unlock(&acpi_dev->physical_node_lock); |
| 259 | |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 260 | if (acpi_dev->wakeup.flags.valid) |
| 261 | device_set_wakeup_capable(dev, true); |
David Brownell | 1071695 | 2008-02-22 21:54:24 -0800 | [diff] [blame] | 262 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 263 | return 0; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 264 | |
| 265 | err: |
Rafael J. Wysocki | 95f8a08 | 2012-11-21 00:21:50 +0100 | [diff] [blame] | 266 | ACPI_HANDLE_SET(dev, NULL); |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 267 | put_device(dev); |
| 268 | return retval; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 269 | } |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 270 | EXPORT_SYMBOL_GPL(acpi_bind_one); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 271 | |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 272 | int acpi_unbind_one(struct device *dev) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 273 | { |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 274 | struct acpi_device_physical_node *entry; |
| 275 | struct acpi_device *acpi_dev; |
| 276 | acpi_status status; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 277 | |
Rafael J. Wysocki | 95f8a08 | 2012-11-21 00:21:50 +0100 | [diff] [blame] | 278 | if (!ACPI_HANDLE(dev)) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 279 | return 0; |
David Brownell | 1071695 | 2008-02-22 21:54:24 -0800 | [diff] [blame] | 280 | |
Rafael J. Wysocki | 95f8a08 | 2012-11-21 00:21:50 +0100 | [diff] [blame] | 281 | status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev); |
Rafael J. Wysocki | 38e88839 | 2013-08-07 01:22:51 +0200 | [diff] [blame] | 282 | if (ACPI_FAILURE(status)) { |
| 283 | dev_err(dev, "Oops, ACPI handle corrupt in %s()\n", __func__); |
| 284 | return -EINVAL; |
| 285 | } |
David Brownell | 1071695 | 2008-02-22 21:54:24 -0800 | [diff] [blame] | 286 | |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 287 | mutex_lock(&acpi_dev->physical_node_lock); |
David Brownell | 1071695 | 2008-02-22 21:54:24 -0800 | [diff] [blame] | 288 | |
Rafael J. Wysocki | 3e33278 | 2013-08-07 01:22:08 +0200 | [diff] [blame] | 289 | list_for_each_entry(entry, &acpi_dev->physical_node_list, node) |
| 290 | if (entry->dev == dev) { |
| 291 | char physnode_name[PHYSICAL_NODE_NAME_SIZE]; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 292 | |
Rafael J. Wysocki | 3e33278 | 2013-08-07 01:22:08 +0200 | [diff] [blame] | 293 | list_del(&entry->node); |
| 294 | acpi_dev->physical_node_count--; |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 295 | |
Rafael J. Wysocki | 3e33278 | 2013-08-07 01:22:08 +0200 | [diff] [blame] | 296 | acpi_physnode_link_name(physnode_name, entry->node_id); |
| 297 | sysfs_remove_link(&acpi_dev->dev.kobj, physnode_name); |
| 298 | sysfs_remove_link(&dev->kobj, "firmware_node"); |
| 299 | ACPI_HANDLE_SET(dev, NULL); |
| 300 | /* acpi_bind_one() increase refcnt by one. */ |
| 301 | put_device(dev); |
| 302 | kfree(entry); |
| 303 | break; |
| 304 | } |
| 305 | |
Lan Tianyu | 1033f90 | 2012-08-17 14:44:09 +0800 | [diff] [blame] | 306 | mutex_unlock(&acpi_dev->physical_node_lock); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 307 | return 0; |
| 308 | } |
Rafael J. Wysocki | ac212b6 | 2013-05-03 00:26:22 +0200 | [diff] [blame] | 309 | EXPORT_SYMBOL_GPL(acpi_unbind_one); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 310 | |
| 311 | static int acpi_platform_notify(struct device *dev) |
| 312 | { |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 313 | struct acpi_bus_type *type = acpi_get_bus_type(dev); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 314 | acpi_handle handle; |
Rafael J. Wysocki | 11909ca | 2012-12-23 00:02:13 +0100 | [diff] [blame] | 315 | int ret; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 316 | |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 317 | ret = acpi_bind_one(dev, NULL); |
Rafael J. Wysocki | 9241448 | 2013-03-03 22:35:44 +0100 | [diff] [blame] | 318 | if (ret && type) { |
Rafael J. Wysocki | 11909ca | 2012-12-23 00:02:13 +0100 | [diff] [blame] | 319 | ret = type->find_device(dev, &handle); |
| 320 | if (ret) { |
| 321 | DBG("Unable to get handle for %s\n", dev_name(dev)); |
| 322 | goto out; |
| 323 | } |
| 324 | ret = acpi_bind_one(dev, handle); |
| 325 | if (ret) |
| 326 | goto out; |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 327 | } |
Rafael J. Wysocki | 11909ca | 2012-12-23 00:02:13 +0100 | [diff] [blame] | 328 | |
| 329 | if (type && type->setup) |
| 330 | type->setup(dev); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 331 | |
Rafael J. Wysocki | f3fd0c8 | 2012-11-21 00:21:39 +0100 | [diff] [blame] | 332 | out: |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 333 | #if ACPI_GLUE_DEBUG |
| 334 | if (!ret) { |
| 335 | struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; |
| 336 | |
Yinghai Lu | a412a11 | 2013-01-12 14:00:06 +0100 | [diff] [blame] | 337 | acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer); |
Kay Sievers | db1461a | 2009-01-25 23:40:56 +0100 | [diff] [blame] | 338 | DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer); |
Len Brown | 02438d8 | 2006-06-30 03:19:10 -0400 | [diff] [blame] | 339 | kfree(buffer.pointer); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 340 | } else |
Kay Sievers | db1461a | 2009-01-25 23:40:56 +0100 | [diff] [blame] | 341 | DBG("Device %s -> No ACPI support\n", dev_name(dev)); |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 342 | #endif |
| 343 | |
| 344 | return ret; |
| 345 | } |
| 346 | |
| 347 | static int acpi_platform_notify_remove(struct device *dev) |
| 348 | { |
Rafael J. Wysocki | 11909ca | 2012-12-23 00:02:13 +0100 | [diff] [blame] | 349 | struct acpi_bus_type *type; |
| 350 | |
Rafael J. Wysocki | 5354009 | 2013-03-03 22:35:20 +0100 | [diff] [blame] | 351 | type = acpi_get_bus_type(dev); |
Rafael J. Wysocki | 11909ca | 2012-12-23 00:02:13 +0100 | [diff] [blame] | 352 | if (type && type->cleanup) |
| 353 | type->cleanup(dev); |
| 354 | |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 355 | acpi_unbind_one(dev); |
| 356 | return 0; |
| 357 | } |
| 358 | |
Bjorn Helgaas | 0e46517d | 2009-03-24 16:50:09 -0600 | [diff] [blame] | 359 | int __init init_acpi_device_notify(void) |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 360 | { |
David Shaohua Li | 4e10d12 | 2005-03-18 18:45:35 -0500 | [diff] [blame] | 361 | if (platform_notify || platform_notify_remove) { |
| 362 | printk(KERN_ERR PREFIX "Can't use platform_notify\n"); |
| 363 | return 0; |
| 364 | } |
| 365 | platform_notify = acpi_platform_notify; |
| 366 | platform_notify_remove = acpi_platform_notify_remove; |
| 367 | return 0; |
| 368 | } |