gpiolib-acpi.c 13.8 KB
Newer Older
M
Mathias Nyman 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * ACPI helpers for GPIO API
 *
 * Copyright (C) 2012, Intel Corporation
 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
 *          Mika Westerberg <mika.westerberg@linux.intel.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/errno.h>
14
#include <linux/gpio/consumer.h>
15
#include <linux/gpio/driver.h>
M
Mathias Nyman 已提交
16 17
#include <linux/export.h>
#include <linux/acpi.h>
18
#include <linux/interrupt.h>
19
#include <linux/mutex.h>
M
Mathias Nyman 已提交
20

21 22
#include "gpiolib.h"

23
struct acpi_gpio_event {
24
	struct list_head node;
25
	acpi_handle handle;
26 27
	unsigned int pin;
	unsigned int irq;
28
	struct gpio_desc *desc;
29 30
};

31 32
struct acpi_gpio_connection {
	struct list_head node;
33
	unsigned int pin;
34 35 36
	struct gpio_desc *desc;
};

37
struct acpi_gpio_chip {
38 39 40 41 42 43 44 45
	/*
	 * ACPICA requires that the first field of the context parameter
	 * passed to acpi_install_address_space_handler() is large enough
	 * to hold struct acpi_connection_info.
	 */
	struct acpi_connection_info conn_info;
	struct list_head conns;
	struct mutex conn_lock;
46
	struct gpio_chip *chip;
47
	struct list_head events;
48 49
};

M
Mathias Nyman 已提交
50 51 52 53 54 55 56 57 58
static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
{
	if (!gc->dev)
		return false;

	return ACPI_HANDLE(gc->dev) == data;
}

/**
59
 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
M
Mathias Nyman 已提交
60 61 62
 * @path:	ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
 * @pin:	ACPI GPIO pin number (0-based, controller-relative)
 *
63 64
 * Returns GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
 * error value
M
Mathias Nyman 已提交
65 66
 */

67
static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
M
Mathias Nyman 已提交
68 69 70 71 72 73 74
{
	struct gpio_chip *chip;
	acpi_handle handle;
	acpi_status status;

	status = acpi_get_handle(NULL, path, &handle);
	if (ACPI_FAILURE(status))
75
		return ERR_PTR(-ENODEV);
M
Mathias Nyman 已提交
76 77 78

	chip = gpiochip_find(handle, acpi_gpiochip_find);
	if (!chip)
79
		return ERR_PTR(-ENODEV);
M
Mathias Nyman 已提交
80

81 82
	if (pin < 0 || pin > chip->ngpio)
		return ERR_PTR(-EINVAL);
M
Mathias Nyman 已提交
83

84
	return gpiochip_get_desc(chip, pin);
M
Mathias Nyman 已提交
85
}
86 87 88

static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
{
89
	struct acpi_gpio_event *event = data;
90

91
	acpi_evaluate_object(event->handle, NULL, NULL, NULL);
92 93 94 95

	return IRQ_HANDLED;
}

96 97
static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
{
98
	struct acpi_gpio_event *event = data;
99

100
	acpi_execute_simple_method(event->handle, NULL, event->pin);
101 102 103 104

	return IRQ_HANDLED;
}

105
static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
106 107 108 109
{
	/* The address of this function is used as a key. */
}

110 111
static acpi_status acpi_gpiochip_request_interrupt(struct acpi_resource *ares,
						   void *context)
112
{
113
	struct acpi_gpio_chip *acpi_gpio = context;
114
	struct gpio_chip *chip = acpi_gpio->chip;
115
	struct acpi_resource_gpio *agpio;
116
	acpi_handle handle, evt_handle;
117 118 119 120 121
	struct acpi_gpio_event *event;
	irq_handler_t handler = NULL;
	struct gpio_desc *desc;
	unsigned long irqflags;
	int ret, pin, irq;
122

123 124 125 126 127 128
	if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
		return AE_OK;

	agpio = &ares->data.gpio;
	if (agpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
		return AE_OK;
129 130

	handle = ACPI_HANDLE(chip->dev);
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
	pin = agpio->pin_table[0];

	if (pin <= 255) {
		char ev_name[5];
		sprintf(ev_name, "_%c%02X",
			agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
			pin);
		if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
			handler = acpi_gpio_irq_handler;
	}
	if (!handler) {
		if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
			handler = acpi_gpio_irq_handler_evt;
	}
	if (!handler)
		return AE_BAD_PARAMETER;
147

148 149 150 151 152
	desc = gpiochip_get_desc(chip, pin);
	if (IS_ERR(desc)) {
		dev_err(chip->dev, "Failed to get GPIO descriptor\n");
		return AE_ERROR;
	}
153

154 155 156 157 158
	ret = gpiochip_request_own_desc(desc, "ACPI:Event");
	if (ret) {
		dev_err(chip->dev, "Failed to request GPIO\n");
		return AE_ERROR;
	}
159

160
	gpiod_direction_input(desc);
161

162
	ret = gpio_lock_as_irq(chip, pin);
163 164 165 166
	if (ret) {
		dev_err(chip->dev, "Failed to lock GPIO as interrupt\n");
		goto fail_free_desc;
	}
167

168 169 170 171 172
	irq = gpiod_to_irq(desc);
	if (irq < 0) {
		dev_err(chip->dev, "Failed to translate GPIO to IRQ\n");
		goto fail_unlock_irq;
	}
173

174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
	irqflags = IRQF_ONESHOT;
	if (agpio->triggering == ACPI_LEVEL_SENSITIVE) {
		if (agpio->polarity == ACPI_ACTIVE_HIGH)
			irqflags |= IRQF_TRIGGER_HIGH;
		else
			irqflags |= IRQF_TRIGGER_LOW;
	} else {
		switch (agpio->polarity) {
		case ACPI_ACTIVE_HIGH:
			irqflags |= IRQF_TRIGGER_RISING;
			break;
		case ACPI_ACTIVE_LOW:
			irqflags |= IRQF_TRIGGER_FALLING;
			break;
		default:
			irqflags |= IRQF_TRIGGER_RISING |
				    IRQF_TRIGGER_FALLING;
			break;
192
		}
193
	}
194

195 196 197
	event = kzalloc(sizeof(*event), GFP_KERNEL);
	if (!event)
		goto fail_unlock_irq;
198

199 200 201
	event->handle = evt_handle;
	event->irq = irq;
	event->pin = pin;
202
	event->desc = desc;
203

204 205 206 207 208 209
	ret = request_threaded_irq(event->irq, NULL, handler, irqflags,
				   "ACPI:Event", event);
	if (ret) {
		dev_err(chip->dev, "Failed to setup interrupt handler for %d\n",
			event->irq);
		goto fail_free_event;
210
	}
211 212 213 214 215 216 217

	list_add_tail(&event->node, &acpi_gpio->events);
	return AE_OK;

fail_free_event:
	kfree(event);
fail_unlock_irq:
218
	gpio_unlock_as_irq(chip, pin);
219 220 221 222
fail_free_desc:
	gpiochip_free_own_desc(desc);

	return AE_ERROR;
223
}
224

225
/**
226
 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
227
 * @chip:      GPIO chip
228
 *
229 230 231 232 233 234
 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
 * handled by ACPI event methods which need to be called from the GPIO
 * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
 * gpio pins have acpi event methods and assigns interrupt handlers that calls
 * the acpi event methods for those pins.
 */
235
void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
236
{
237 238 239 240 241 242
	struct acpi_gpio_chip *acpi_gpio;
	acpi_handle handle;
	acpi_status status;

	if (!chip->dev || !chip->to_irq)
		return;
243

244 245 246 247 248 249
	handle = ACPI_HANDLE(chip->dev);
	if (!handle)
		return;

	status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
	if (ACPI_FAILURE(status))
250 251 252 253 254 255 256 257 258
		return;

	INIT_LIST_HEAD(&acpi_gpio->events);
	acpi_walk_resources(ACPI_HANDLE(chip->dev), "_AEI",
			    acpi_gpiochip_request_interrupt, acpi_gpio);
}

/**
 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
259
 * @chip:      GPIO chip
260
 *
261 262
 * Free interrupts associated with GPIO ACPI event method for the given
 * GPIO chip.
263
 */
264
void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
265
{
266
	struct acpi_gpio_chip *acpi_gpio;
267
	struct acpi_gpio_event *event, *ep;
268 269 270 271 272
	acpi_handle handle;
	acpi_status status;

	if (!chip->dev || !chip->to_irq)
		return;
273

274 275 276 277 278 279
	handle = ACPI_HANDLE(chip->dev);
	if (!handle)
		return;

	status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
	if (ACPI_FAILURE(status))
280 281
		return;

282
	list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
283 284 285
		struct gpio_desc *desc;

		free_irq(event->irq, event);
286
		desc = event->desc;
287 288
		if (WARN_ON(IS_ERR(desc)))
			continue;
289
		gpio_unlock_as_irq(chip, event->pin);
290
		gpiochip_free_own_desc(desc);
291 292
		list_del(&event->node);
		kfree(event);
293 294 295
	}
}

296 297 298
struct acpi_gpio_lookup {
	struct acpi_gpio_info info;
	int index;
299
	struct gpio_desc *desc;
300 301 302 303 304 305 306 307 308 309
	int n;
};

static int acpi_find_gpio(struct acpi_resource *ares, void *data)
{
	struct acpi_gpio_lookup *lookup = data;

	if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
		return 1;

310
	if (lookup->n++ == lookup->index && !lookup->desc) {
311 312
		const struct acpi_resource_gpio *agpio = &ares->data.gpio;

313 314
		lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
					      agpio->pin_table[0]);
315 316
		lookup->info.gpioint =
			agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
317 318
		lookup->info.active_low =
			agpio->polarity == ACPI_ACTIVE_LOW;
319 320 321 322 323 324
	}

	return 1;
}

/**
325
 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
326 327 328 329 330
 * @dev: pointer to a device to get GPIO from
 * @index: index of GpioIo/GpioInt resource (starting from %0)
 * @info: info pointer to fill in (optional)
 *
 * Function goes through ACPI resources for @dev and based on @index looks
331
 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
332 333 334
 * and returns it. @index matches GpioIo/GpioInt resources only so if there
 * are total %3 GPIO resources, the index goes from %0 to %2.
 *
335
 * If the GPIO cannot be translated or there is an error an ERR_PTR is
336 337 338 339 340
 * returned.
 *
 * Note: if the GPIO resource has multiple entries in the pin list, this
 * function only returns the first.
 */
341 342
struct gpio_desc *acpi_get_gpiod_by_index(struct device *dev, int index,
					  struct acpi_gpio_info *info)
343 344 345 346 347 348 349 350
{
	struct acpi_gpio_lookup lookup;
	struct list_head resource_list;
	struct acpi_device *adev;
	acpi_handle handle;
	int ret;

	if (!dev)
351
		return ERR_PTR(-EINVAL);
352 353 354

	handle = ACPI_HANDLE(dev);
	if (!handle || acpi_bus_get_device(handle, &adev))
355
		return ERR_PTR(-ENODEV);
356 357 358 359 360 361 362 363

	memset(&lookup, 0, sizeof(lookup));
	lookup.index = index;

	INIT_LIST_HEAD(&resource_list);
	ret = acpi_dev_get_resources(adev, &resource_list, acpi_find_gpio,
				     &lookup);
	if (ret < 0)
364
		return ERR_PTR(ret);
365 366 367

	acpi_dev_free_resource_list(&resource_list);

368
	if (lookup.desc && info)
369 370
		*info = lookup.info;

371
	return lookup.desc ? lookup.desc : ERR_PTR(-ENOENT);
372
}
373

374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
static acpi_status
acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
			    u32 bits, u64 *value, void *handler_context,
			    void *region_context)
{
	struct acpi_gpio_chip *achip = region_context;
	struct gpio_chip *chip = achip->chip;
	struct acpi_resource_gpio *agpio;
	struct acpi_resource *ares;
	acpi_status status;
	bool pull_up;
	int i;

	status = acpi_buffer_to_resource(achip->conn_info.connection,
					 achip->conn_info.length, &ares);
	if (ACPI_FAILURE(status))
		return status;

	if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
		ACPI_FREE(ares);
		return AE_BAD_PARAMETER;
	}

	agpio = &ares->data.gpio;
	pull_up = agpio->pin_config == ACPI_PIN_CONFIG_PULLUP;

	if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
	    function == ACPI_WRITE)) {
		ACPI_FREE(ares);
		return AE_BAD_PARAMETER;
	}

	for (i = 0; i < agpio->pin_table_length; i++) {
		unsigned pin = agpio->pin_table[i];
		struct acpi_gpio_connection *conn;
		struct gpio_desc *desc;
		bool found;

		mutex_lock(&achip->conn_lock);

		found = false;
		list_for_each_entry(conn, &achip->conns, node) {
416
			if (conn->pin == pin) {
417
				found = true;
418
				desc = conn->desc;
419 420 421 422 423 424
				break;
			}
		}
		if (!found) {
			int ret;

425 426 427 428 429 430 431
			desc = gpiochip_get_desc(chip, pin);
			if (IS_ERR(desc)) {
				status = AE_ERROR;
				mutex_unlock(&achip->conn_lock);
				goto out;
			}

432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469
			ret = gpiochip_request_own_desc(desc, "ACPI:OpRegion");
			if (ret) {
				status = AE_ERROR;
				mutex_unlock(&achip->conn_lock);
				goto out;
			}

			switch (agpio->io_restriction) {
			case ACPI_IO_RESTRICT_INPUT:
				gpiod_direction_input(desc);
				break;
			case ACPI_IO_RESTRICT_OUTPUT:
				/*
				 * ACPI GPIO resources don't contain an
				 * initial value for the GPIO. Therefore we
				 * deduce that value from the pull field
				 * instead. If the pin is pulled up we
				 * assume default to be high, otherwise
				 * low.
				 */
				gpiod_direction_output(desc, pull_up);
				break;
			default:
				/*
				 * Assume that the BIOS has configured the
				 * direction and pull accordingly.
				 */
				break;
			}

			conn = kzalloc(sizeof(*conn), GFP_KERNEL);
			if (!conn) {
				status = AE_NO_MEMORY;
				gpiochip_free_own_desc(desc);
				mutex_unlock(&achip->conn_lock);
				goto out;
			}

470
			conn->pin = pin;
471 472 473 474 475 476 477
			conn->desc = desc;
			list_add_tail(&conn->node, &achip->conns);
		}

		mutex_unlock(&achip->conn_lock);

		if (function == ACPI_WRITE)
478 479
			gpiod_set_raw_value_cansleep(desc,
						     !!((1 << i) & *value));
480
		else
481
			*value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
	}

out:
	ACPI_FREE(ares);
	return status;
}

static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
{
	struct gpio_chip *chip = achip->chip;
	acpi_handle handle = ACPI_HANDLE(chip->dev);
	acpi_status status;

	INIT_LIST_HEAD(&achip->conns);
	mutex_init(&achip->conn_lock);
	status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
						    acpi_gpio_adr_space_handler,
						    NULL, achip);
	if (ACPI_FAILURE(status))
		dev_err(chip->dev, "Failed to install GPIO OpRegion handler\n");
}

static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
{
	struct gpio_chip *chip = achip->chip;
	acpi_handle handle = ACPI_HANDLE(chip->dev);
	struct acpi_gpio_connection *conn, *tmp;
	acpi_status status;

	status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
						   acpi_gpio_adr_space_handler);
	if (ACPI_FAILURE(status)) {
		dev_err(chip->dev, "Failed to remove GPIO OpRegion handler\n");
		return;
	}

	list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
		gpiochip_free_own_desc(conn->desc);
		list_del(&conn->node);
		kfree(conn);
	}
}

525 526
void acpi_gpiochip_add(struct gpio_chip *chip)
{
527 528 529 530
	struct acpi_gpio_chip *acpi_gpio;
	acpi_handle handle;
	acpi_status status;

531 532 533
	if (!chip || !chip->dev)
		return;

534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553
	handle = ACPI_HANDLE(chip->dev);
	if (!handle)
		return;

	acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
	if (!acpi_gpio) {
		dev_err(chip->dev,
			"Failed to allocate memory for ACPI GPIO chip\n");
		return;
	}

	acpi_gpio->chip = chip;

	status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
	if (ACPI_FAILURE(status)) {
		dev_err(chip->dev, "Failed to attach ACPI GPIO chip\n");
		kfree(acpi_gpio);
		return;
	}

554
	acpi_gpiochip_request_regions(acpi_gpio);
555 556 557 558
}

void acpi_gpiochip_remove(struct gpio_chip *chip)
{
559 560 561 562
	struct acpi_gpio_chip *acpi_gpio;
	acpi_handle handle;
	acpi_status status;

563 564 565
	if (!chip || !chip->dev)
		return;

566 567 568 569 570 571 572 573 574 575
	handle = ACPI_HANDLE(chip->dev);
	if (!handle)
		return;

	status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
	if (ACPI_FAILURE(status)) {
		dev_warn(chip->dev, "Failed to retrieve ACPI GPIO chip\n");
		return;
	}

576
	acpi_gpiochip_free_regions(acpi_gpio);
577 578 579

	acpi_detach_data(handle, acpi_gpio_chip_dh);
	kfree(acpi_gpio);
580
}