glue.c 8.7 KB
Newer Older
1 2 3 4 5 6 7 8
/*
 * Link physical devices with ACPI devices support
 *
 * Copyright (c) 2005 David Shaohua Li <shaohua.li@intel.com>
 * Copyright (c) 2005 Intel Corp.
 *
 * This file is released under the GPLv2.
 */
9
#include <linux/export.h>
10 11 12
#include <linux/init.h>
#include <linux/list.h>
#include <linux/device.h>
13
#include <linux/slab.h>
14 15 16
#include <linux/rwsem.h>
#include <linux/acpi.h>

17 18
#include "internal.h"

19 20
#define ACPI_GLUE_DEBUG	0
#if ACPI_GLUE_DEBUG
21 22
#define DBG(fmt, ...)						\
	printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__)
23
#else
24 25 26 27 28
#define DBG(fmt, ...)						\
do {								\
	if (0)							\
		printk(KERN_DEBUG PREFIX fmt, ##__VA_ARGS__);	\
} while (0)
29 30 31 32
#endif
static LIST_HEAD(bus_type_list);
static DECLARE_RWSEM(bus_type_sem);

33
#define PHYSICAL_NODE_STRING "physical_node"
34
#define PHYSICAL_NODE_NAME_SIZE (sizeof(PHYSICAL_NODE_STRING) + 10)
35

36 37 38 39
int register_acpi_bus_type(struct acpi_bus_type *type)
{
	if (acpi_disabled)
		return -ENODEV;
40
	if (type && type->match && type->find_device) {
41 42 43
		down_write(&bus_type_sem);
		list_add_tail(&type->list, &bus_type_list);
		up_write(&bus_type_sem);
44
		printk(KERN_INFO PREFIX "bus type %s registered\n", type->name);
45 46 47 48
		return 0;
	}
	return -ENODEV;
}
49
EXPORT_SYMBOL_GPL(register_acpi_bus_type);
50 51 52 53 54 55 56 57 58

int unregister_acpi_bus_type(struct acpi_bus_type *type)
{
	if (acpi_disabled)
		return 0;
	if (type) {
		down_write(&bus_type_sem);
		list_del_init(&type->list);
		up_write(&bus_type_sem);
59 60
		printk(KERN_INFO PREFIX "bus type %s unregistered\n",
		       type->name);
61 62 63 64
		return 0;
	}
	return -ENODEV;
}
65
EXPORT_SYMBOL_GPL(unregister_acpi_bus_type);
66

67
static struct acpi_bus_type *acpi_get_bus_type(struct device *dev)
68 69 70 71 72
{
	struct acpi_bus_type *tmp, *ret = NULL;

	down_read(&bus_type_sem);
	list_for_each_entry(tmp, &bus_type_list, list) {
73
		if (tmp->match(dev)) {
74 75 76 77 78 79 80 81
			ret = tmp;
			break;
		}
	}
	up_read(&bus_type_sem);
	return ret;
}

82 83
static acpi_status acpi_dev_present(acpi_handle handle, u32 lvl_not_used,
				  void *not_used, void **ret_p)
84
{
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	struct acpi_device *adev = NULL;

	acpi_bus_get_device(handle, &adev);
	if (adev) {
		*ret_p = handle;
		return AE_CTRL_TERMINATE;
	}
	return AE_OK;
}

static bool acpi_extra_checks_passed(acpi_handle handle, bool is_bridge)
{
	unsigned long long sta;
	acpi_status status;

	status = acpi_bus_get_status_handle(handle, &sta);
	if (ACPI_FAILURE(status) || !(sta & ACPI_STA_DEVICE_ENABLED))
		return false;

	if (is_bridge) {
		void *test = NULL;

		/* Check if this object has at least one child device. */
		acpi_walk_namespace(ACPI_TYPE_DEVICE, handle, 1,
				    acpi_dev_present, NULL, NULL, &test);
		return !!test;
	}
	return true;
}

struct find_child_context {
	u64 addr;
	bool is_bridge;
	acpi_handle ret;
	bool ret_checked;
};

static acpi_status do_find_child(acpi_handle handle, u32 lvl_not_used,
				 void *data, void **not_used)
{
	struct find_child_context *context = data;
	unsigned long long addr;
127
	acpi_status status;
128 129

	status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL, &addr);
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
	if (ACPI_FAILURE(status) || addr != context->addr)
		return AE_OK;

	if (!context->ret) {
		/* This is the first matching object.  Save its handle. */
		context->ret = handle;
		return AE_OK;
	}
	/*
	 * There is more than one matching object with the same _ADR value.
	 * That really is unexpected, so we are kind of beyond the scope of the
	 * spec here.  We have to choose which one to return, though.
	 *
	 * First, check if the previously found object is good enough and return
	 * its handle if so.  Second, check the same for the object that we've
	 * just found.
	 */
	if (!context->ret_checked) {
		if (acpi_extra_checks_passed(context->ret, context->is_bridge))
149
			return AE_CTRL_TERMINATE;
150 151 152 153 154 155
		else
			context->ret_checked = true;
	}
	if (acpi_extra_checks_passed(handle, context->is_bridge)) {
		context->ret = handle;
		return AE_CTRL_TERMINATE;
156 157 158 159
	}
	return AE_OK;
}

160
acpi_handle acpi_find_child(acpi_handle parent, u64 addr, bool is_bridge)
161
{
162 163 164 165 166
	if (parent) {
		struct find_child_context context = {
			.addr = addr,
			.is_bridge = is_bridge,
		};
167

168 169 170 171 172
		acpi_walk_namespace(ACPI_TYPE_DEVICE, parent, 1, do_find_child,
				    NULL, &context, NULL);
		return context.ret;
	}
	return NULL;
173
}
174
EXPORT_SYMBOL_GPL(acpi_find_child);
175

176 177 178 179 180 181 182 183 184
static void acpi_physnode_link_name(char *buf, unsigned int node_id)
{
	if (node_id > 0)
		snprintf(buf, PHYSICAL_NODE_NAME_SIZE,
			 PHYSICAL_NODE_STRING "%u", node_id);
	else
		strcpy(buf, PHYSICAL_NODE_STRING);
}

185
int acpi_bind_one(struct device *dev, acpi_handle handle)
186
{
187
	struct acpi_device *acpi_dev;
188
	acpi_status status;
189
	struct acpi_device_physical_node *physical_node, *pn;
190 191 192
	char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
	struct list_head *physnode_list;
	unsigned int node_id;
193
	int retval = -EINVAL;
194

195
	if (ACPI_HANDLE(dev)) {
196 197 198 199
		if (handle) {
			dev_warn(dev, "ACPI handle is already set\n");
			return -EINVAL;
		} else {
200
			handle = ACPI_HANDLE(dev);
201
		}
202
	}
203 204
	if (!handle)
		return -EINVAL;
205

206
	get_device(dev);
207 208 209 210
	status = acpi_bus_get_device(handle, &acpi_dev);
	if (ACPI_FAILURE(status))
		goto err;

211
	physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL);
212 213 214
	if (!physical_node) {
		retval = -ENOMEM;
		goto err;
215 216
	}

217
	mutex_lock(&acpi_dev->physical_node_lock);
218

219 220 221 222 223 224 225 226
	/*
	 * Keep the list sorted by node_id so that the IDs of removed nodes can
	 * be recycled easily.
	 */
	physnode_list = &acpi_dev->physical_node_list;
	node_id = 0;
	list_for_each_entry(pn, &acpi_dev->physical_node_list, node) {
		/* Sanity check. */
227 228
		if (pn->dev == dev) {
			dev_warn(dev, "Already associated with ACPI node\n");
229 230 231 232
			if (ACPI_HANDLE(dev) == handle)
				retval = 0;

			goto out_free;
233
		}
234 235 236 237
		if (pn->node_id == node_id) {
			physnode_list = &pn->node;
			node_id++;
		}
238 239
	}

240
	physical_node->node_id = node_id;
241
	physical_node->dev = dev;
242
	list_add(&physical_node->node, physnode_list);
243
	acpi_dev->physical_node_count++;
244

245 246
	if (!ACPI_HANDLE(dev))
		ACPI_HANDLE_SET(dev, acpi_dev->handle);
247

248
	acpi_physnode_link_name(physical_node_name, node_id);
249
	retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
250
				   physical_node_name);
251
	retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
252
				   "firmware_node");
253

254 255
	mutex_unlock(&acpi_dev->physical_node_lock);

256 257 258
	if (acpi_dev->wakeup.flags.valid)
		device_set_wakeup_capable(dev, true);

259
	return 0;
260 261

 err:
262
	ACPI_HANDLE_SET(dev, NULL);
263 264
	put_device(dev);
	return retval;
265

266
 out_free:
267 268
	mutex_unlock(&acpi_dev->physical_node_lock);
	kfree(physical_node);
269 270 271 272 273
	if (retval)
		goto err;

	put_device(dev);
	return 0;
274
}
275
EXPORT_SYMBOL_GPL(acpi_bind_one);
276

277
int acpi_unbind_one(struct device *dev)
278
{
279 280 281 282 283
	struct acpi_device_physical_node *entry;
	struct acpi_device *acpi_dev;
	acpi_status status;
	struct list_head *node, *next;

284
	if (!ACPI_HANDLE(dev))
285
		return 0;
286

287
	status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev);
288 289
	if (ACPI_FAILURE(status))
		goto err;
290

291 292
	mutex_lock(&acpi_dev->physical_node_lock);
	list_for_each_safe(node, next, &acpi_dev->physical_node_list) {
293
		char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
294 295

		entry = list_entry(node, struct acpi_device_physical_node,
296
				   node);
297 298 299 300 301 302
		if (entry->dev != dev)
			continue;

		list_del(node);
		acpi_dev->physical_node_count--;

303
		acpi_physnode_link_name(physical_node_name, entry->node_id);
304 305
		sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name);
		sysfs_remove_link(&dev->kobj, "firmware_node");
306
		ACPI_HANDLE_SET(dev, NULL);
307 308
		/* acpi_bind_one increase refcnt by one */
		put_device(dev);
309
		kfree(entry);
310
	}
311 312
	mutex_unlock(&acpi_dev->physical_node_lock);

313
	return 0;
314 315 316 317

err:
	dev_err(dev, "Oops, 'acpi_handle' corrupt\n");
	return -EINVAL;
318
}
319
EXPORT_SYMBOL_GPL(acpi_unbind_one);
320 321 322

static int acpi_platform_notify(struct device *dev)
{
323
	struct acpi_bus_type *type = acpi_get_bus_type(dev);
324
	acpi_handle handle;
325
	int ret;
326

327
	ret = acpi_bind_one(dev, NULL);
328
	if (ret && type) {
329 330 331 332 333 334 335 336
		ret = type->find_device(dev, &handle);
		if (ret) {
			DBG("Unable to get handle for %s\n", dev_name(dev));
			goto out;
		}
		ret = acpi_bind_one(dev, handle);
		if (ret)
			goto out;
337
	}
338 339 340

	if (type && type->setup)
		type->setup(dev);
341

342
 out:
343 344 345 346
#if ACPI_GLUE_DEBUG
	if (!ret) {
		struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };

347
		acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer);
348
		DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
349
		kfree(buffer.pointer);
350
	} else
351
		DBG("Device %s -> No ACPI support\n", dev_name(dev));
352 353 354 355 356 357 358
#endif

	return ret;
}

static int acpi_platform_notify_remove(struct device *dev)
{
359 360
	struct acpi_bus_type *type;

361
	type = acpi_get_bus_type(dev);
362 363 364
	if (type && type->cleanup)
		type->cleanup(dev);

365 366 367 368
	acpi_unbind_one(dev);
	return 0;
}

369
int __init init_acpi_device_notify(void)
370 371 372 373 374 375 376 377 378
{
	if (platform_notify || platform_notify_remove) {
		printk(KERN_ERR PREFIX "Can't use platform_notify\n");
		return 0;
	}
	platform_notify = acpi_platform_notify;
	platform_notify_remove = acpi_platform_notify_remove;
	return 0;
}