1 // SPDX-License-Identifier: GPL-2.0-only
3 * Link physical devices with ACPI devices support
5 * Copyright (c) 2005 David Shaohua Li <shaohua.li@intel.com>
6 * Copyright (c) 2005 Intel Corp.
9 #include <linux/acpi_iort.h>
10 #include <linux/export.h>
11 #include <linux/init.h>
12 #include <linux/list.h>
13 #include <linux/device.h>
14 #include <linux/slab.h>
15 #include <linux/rwsem.h>
16 #include <linux/acpi.h>
17 #include <linux/dma-mapping.h>
18 #include <linux/platform_device.h>
22 #define ACPI_GLUE_DEBUG 0
24 #define DBG(fmt, ...) \
25 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__)
27 #define DBG(fmt, ...) \
30 printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__); \
33 static LIST_HEAD(bus_type_list);
34 static DECLARE_RWSEM(bus_type_sem);
36 #define PHYSICAL_NODE_STRING "physical_node"
37 #define PHYSICAL_NODE_NAME_SIZE (sizeof(PHYSICAL_NODE_STRING) + 10)
39 int register_acpi_bus_type(struct acpi_bus_type *type)
43 if (type && type->match && type->find_companion) {
44 down_write(&bus_type_sem);
45 list_add_tail(&type->list, &bus_type_list);
46 up_write(&bus_type_sem);
47 printk(KERN_INFO PREFIX "bus type %s registered\n", type->name);
52 EXPORT_SYMBOL_GPL(register_acpi_bus_type);
54 int unregister_acpi_bus_type(struct acpi_bus_type *type)
59 down_write(&bus_type_sem);
60 list_del_init(&type->list);
61 up_write(&bus_type_sem);
62 printk(KERN_INFO PREFIX "bus type %s unregistered\n",
68 EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);
70 static struct acpi_bus_type *acpi_get_bus_type(struct device *dev)
72 struct acpi_bus_type *tmp, *ret = NULL;
74 down_read(&bus_type_sem);
75 list_for_each_entry(tmp, &bus_type_list, list) {
76 if (tmp->match(dev)) {
81 up_read(&bus_type_sem);
85 #define FIND_CHILD_MIN_SCORE 1
86 #define FIND_CHILD_MAX_SCORE 2
88 static int find_child_checks(struct acpi_device *adev, bool check_children)
90 bool sta_present = true;
91 unsigned long long sta;
94 status = acpi_evaluate_integer(adev->handle, "_STA", NULL, &sta);
95 if (status == AE_NOT_FOUND)
97 else if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_ENABLED))
100 if (check_children && list_empty(&adev->children))
104 * If the device has a _HID returning a valid ACPI/PNP device ID, it is
105 * better to make it look less attractive here, so that the other device
106 * with the same _ADR value (that may not have a valid device ID) can be
107 * matched going forward. [This means a second spec violation in a row,
108 * so whatever we do here is best effort anyway.]
110 return sta_present && !adev->pnp.type.platform_id ?
111 FIND_CHILD_MAX_SCORE : FIND_CHILD_MIN_SCORE;
114 struct acpi_device *acpi_find_child_device(struct acpi_device *parent,
115 u64 address, bool check_children)
117 struct acpi_device *adev, *ret = NULL;
123 list_for_each_entry(adev, &parent->children, node) {
124 unsigned long long addr;
128 status = acpi_evaluate_integer(adev->handle, METHOD_NAME__ADR,
130 if (ACPI_FAILURE(status) || addr != address)
134 /* This is the first matching object. Save it. */
139 * There is more than one matching device object with the same
140 * _ADR value. That really is unexpected, so we are kind of
141 * beyond the scope of the spec here. We have to choose which
142 * one to return, though.
144 * First, check if the previously found object is good enough
145 * and return it if so. Second, do the same for the object that
149 ret_score = find_child_checks(ret, check_children);
150 if (ret_score == FIND_CHILD_MAX_SCORE)
153 score = find_child_checks(adev, check_children);
154 if (score == FIND_CHILD_MAX_SCORE) {
156 } else if (score > ret_score) {
163 EXPORT_SYMBOL_GPL(acpi_find_child_device);
165 static void acpi_physnode_link_name(char *buf, unsigned int node_id)
168 snprintf(buf, PHYSICAL_NODE_NAME_SIZE,
169 PHYSICAL_NODE_STRING "%u", node_id);
171 strcpy(buf, PHYSICAL_NODE_STRING);
174 int acpi_bind_one(struct device *dev, struct acpi_device *acpi_dev)
176 struct acpi_device_physical_node *physical_node, *pn;
177 char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
178 struct list_head *physnode_list;
179 unsigned int node_id;
180 int retval = -EINVAL;
182 if (has_acpi_companion(dev)) {
184 dev_warn(dev, "ACPI companion already set\n");
187 acpi_dev = ACPI_COMPANION(dev);
193 get_device(&acpi_dev->dev);
195 physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL);
196 if (!physical_node) {
201 mutex_lock(&acpi_dev->physical_node_lock);
204 * Keep the list sorted by node_id so that the IDs of removed nodes can
205 * be recycled easily.
207 physnode_list = &acpi_dev->physical_node_list;
209 list_for_each_entry(pn, &acpi_dev->physical_node_list, node) {
211 if (pn->dev == dev) {
212 mutex_unlock(&acpi_dev->physical_node_lock);
214 dev_warn(dev, "Already associated with ACPI node\n");
215 kfree(physical_node);
216 if (ACPI_COMPANION(dev) != acpi_dev)
220 put_device(&acpi_dev->dev);
223 if (pn->node_id == node_id) {
224 physnode_list = &pn->node;
229 physical_node->node_id = node_id;
230 physical_node->dev = dev;
231 list_add(&physical_node->node, physnode_list);
232 acpi_dev->physical_node_count++;
234 if (!has_acpi_companion(dev))
235 ACPI_COMPANION_SET(dev, acpi_dev);
237 acpi_physnode_link_name(physical_node_name, node_id);
238 retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
241 dev_err(&acpi_dev->dev, "Failed to create link %s (%d)\n",
242 physical_node_name, retval);
244 retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
247 dev_err(dev, "Failed to create link firmware_node (%d)\n",
250 mutex_unlock(&acpi_dev->physical_node_lock);
252 if (acpi_dev->wakeup.flags.valid)
253 device_set_wakeup_capable(dev, true);
258 ACPI_COMPANION_SET(dev, NULL);
260 put_device(&acpi_dev->dev);
263 EXPORT_SYMBOL_GPL(acpi_bind_one);
265 int acpi_unbind_one(struct device *dev)
267 struct acpi_device *acpi_dev = ACPI_COMPANION(dev);
268 struct acpi_device_physical_node *entry;
273 mutex_lock(&acpi_dev->physical_node_lock);
275 list_for_each_entry(entry, &acpi_dev->physical_node_list, node)
276 if (entry->dev == dev) {
277 char physnode_name[PHYSICAL_NODE_NAME_SIZE];
279 list_del(&entry->node);
280 acpi_dev->physical_node_count--;
282 acpi_physnode_link_name(physnode_name, entry->node_id);
283 sysfs_remove_link(&acpi_dev->dev.kobj, physnode_name);
284 sysfs_remove_link(&dev->kobj, "firmware_node");
285 ACPI_COMPANION_SET(dev, NULL);
286 /* Drop references taken by acpi_bind_one(). */
288 put_device(&acpi_dev->dev);
293 mutex_unlock(&acpi_dev->physical_node_lock);
296 EXPORT_SYMBOL_GPL(acpi_unbind_one);
298 static int acpi_device_notify(struct device *dev)
300 struct acpi_bus_type *type = acpi_get_bus_type(dev);
301 struct acpi_device *adev;
304 ret = acpi_bind_one(dev, NULL);
306 struct acpi_device *adev;
308 adev = type->find_companion(dev);
310 DBG("Unable to get handle for %s\n", dev_name(dev));
314 ret = acpi_bind_one(dev, adev);
318 adev = ACPI_COMPANION(dev);
322 if (dev_is_platform(dev))
323 acpi_configure_pmsi_domain(dev);
325 if (type && type->setup)
327 else if (adev->handler && adev->handler->bind)
328 adev->handler->bind(dev);
333 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
335 acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer);
336 DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
337 kfree(buffer.pointer);
339 DBG("Device %s -> No ACPI support\n", dev_name(dev));
345 static int acpi_device_notify_remove(struct device *dev)
347 struct acpi_device *adev = ACPI_COMPANION(dev);
348 struct acpi_bus_type *type;
353 type = acpi_get_bus_type(dev);
354 if (type && type->cleanup)
356 else if (adev->handler && adev->handler->unbind)
357 adev->handler->unbind(dev);
359 acpi_unbind_one(dev);
363 int acpi_platform_notify(struct device *dev, enum kobject_action action)
367 acpi_device_notify(dev);
370 acpi_device_notify_remove(dev);