glue.c 8.5 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
int acpi_bind_one(struct device *dev, acpi_handle handle)
177
{
178
	struct acpi_device *acpi_dev;
179
	acpi_status status;
180
	struct acpi_device_physical_node *physical_node, *pn;
181 182 183
	char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
	struct list_head *physnode_list;
	unsigned int node_id;
184
	int retval = -EINVAL;
185

186
	if (ACPI_HANDLE(dev)) {
187 188 189 190
		if (handle) {
			dev_warn(dev, "ACPI handle is already set\n");
			return -EINVAL;
		} else {
191
			handle = ACPI_HANDLE(dev);
192
		}
193
	}
194 195
	if (!handle)
		return -EINVAL;
196

197
	get_device(dev);
198 199 200 201
	status = acpi_bus_get_device(handle, &acpi_dev);
	if (ACPI_FAILURE(status))
		goto err;

202
	physical_node = kzalloc(sizeof(*physical_node), GFP_KERNEL);
203 204 205
	if (!physical_node) {
		retval = -ENOMEM;
		goto err;
206 207
	}

208
	mutex_lock(&acpi_dev->physical_node_lock);
209

210 211 212 213 214 215 216 217
	/*
	 * 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. */
218 219 220 221
		if (pn->dev == dev) {
			dev_warn(dev, "Already associated with ACPI node\n");
			goto err_free;
		}
222 223 224 225
		if (pn->node_id == node_id) {
			physnode_list = &pn->node;
			node_id++;
		}
226 227
	}

228
	physical_node->node_id = node_id;
229
	physical_node->dev = dev;
230
	list_add(&physical_node->node, physnode_list);
231
	acpi_dev->physical_node_count++;
232

233 234
	mutex_unlock(&acpi_dev->physical_node_lock);

235 236
	if (!ACPI_HANDLE(dev))
		ACPI_HANDLE_SET(dev, acpi_dev->handle);
237 238 239 240 241 242 243 244 245 246 247 248 249 250

	if (!physical_node->node_id)
		strcpy(physical_node_name, PHYSICAL_NODE_STRING);
	else
		sprintf(physical_node_name,
			"physical_node%d", physical_node->node_id);
	retval = sysfs_create_link(&acpi_dev->dev.kobj, &dev->kobj,
			physical_node_name);
	retval = sysfs_create_link(&dev->kobj, &acpi_dev->dev.kobj,
		"firmware_node");

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

251
	return 0;
252 253

 err:
254
	ACPI_HANDLE_SET(dev, NULL);
255 256
	put_device(dev);
	return retval;
257 258 259 260 261

 err_free:
	mutex_unlock(&acpi_dev->physical_node_lock);
	kfree(physical_node);
	goto err;
262
}
263
EXPORT_SYMBOL_GPL(acpi_bind_one);
264

265
int acpi_unbind_one(struct device *dev)
266
{
267 268 269 270 271
	struct acpi_device_physical_node *entry;
	struct acpi_device *acpi_dev;
	acpi_status status;
	struct list_head *node, *next;

272
	if (!ACPI_HANDLE(dev))
273
		return 0;
274

275
	status = acpi_bus_get_device(ACPI_HANDLE(dev), &acpi_dev);
276 277
	if (ACPI_FAILURE(status))
		goto err;
278

279 280
	mutex_lock(&acpi_dev->physical_node_lock);
	list_for_each_safe(node, next, &acpi_dev->physical_node_list) {
281
		char physical_node_name[PHYSICAL_NODE_NAME_SIZE];
282 283 284 285 286 287 288

		entry = list_entry(node, struct acpi_device_physical_node,
			node);
		if (entry->dev != dev)
			continue;

		list_del(node);
289

290 291 292 293 294 295 296 297 298 299
		acpi_dev->physical_node_count--;

		if (!entry->node_id)
			strcpy(physical_node_name, PHYSICAL_NODE_STRING);
		else
			sprintf(physical_node_name,
				"physical_node%d", entry->node_id);

		sysfs_remove_link(&acpi_dev->dev.kobj, physical_node_name);
		sysfs_remove_link(&dev->kobj, "firmware_node");
300
		ACPI_HANDLE_SET(dev, NULL);
301 302
		/* acpi_bind_one increase refcnt by one */
		put_device(dev);
303
		kfree(entry);
304
	}
305 306
	mutex_unlock(&acpi_dev->physical_node_lock);

307
	return 0;
308 309 310 311

err:
	dev_err(dev, "Oops, 'acpi_handle' corrupt\n");
	return -EINVAL;
312
}
313
EXPORT_SYMBOL_GPL(acpi_unbind_one);
314 315 316

static int acpi_platform_notify(struct device *dev)
{
317
	struct acpi_bus_type *type = acpi_get_bus_type(dev);
318
	acpi_handle handle;
319
	int ret;
320

321
	ret = acpi_bind_one(dev, NULL);
322
	if (ret && type) {
323 324 325 326 327 328 329 330
		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;
331
	}
332 333 334

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

336
 out:
337 338 339 340
#if ACPI_GLUE_DEBUG
	if (!ret) {
		struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };

341
		acpi_get_name(ACPI_HANDLE(dev), ACPI_FULL_PATHNAME, &buffer);
342
		DBG("Device %s -> %s\n", dev_name(dev), (char *)buffer.pointer);
343
		kfree(buffer.pointer);
344
	} else
345
		DBG("Device %s -> No ACPI support\n", dev_name(dev));
346 347 348 349 350 351 352
#endif

	return ret;
}

static int acpi_platform_notify_remove(struct device *dev)
{
353 354
	struct acpi_bus_type *type;

355
	type = acpi_get_bus_type(dev);
356 357 358
	if (type && type->cleanup)
		type->cleanup(dev);

359 360 361 362
	acpi_unbind_one(dev);
	return 0;
}

363
int __init init_acpi_device_notify(void)
364 365 366 367 368 369 370 371 372
{
	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;
}