gpiolib-acpi.c 27.6 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.h>
15
#include <linux/gpio/consumer.h>
16
#include <linux/gpio/driver.h>
L
Linus Walleij 已提交
17
#include <linux/gpio/machine.h>
M
Mathias Nyman 已提交
18 19
#include <linux/export.h>
#include <linux/acpi.h>
20
#include <linux/interrupt.h>
21
#include <linux/mutex.h>
22
#include <linux/pinctrl/pinctrl.h>
M
Mathias Nyman 已提交
23

24 25
#include "gpiolib.h"

26
struct acpi_gpio_event {
27
	struct list_head node;
28
	acpi_handle handle;
29 30
	unsigned int pin;
	unsigned int irq;
31
	struct gpio_desc *desc;
32 33
};

34 35
struct acpi_gpio_connection {
	struct list_head node;
36
	unsigned int pin;
37 38 39
	struct gpio_desc *desc;
};

40
struct acpi_gpio_chip {
41 42 43 44 45 46 47 48
	/*
	 * 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;
49
	struct gpio_chip *chip;
50
	struct list_head events;
51 52
};

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

58
	return ACPI_HANDLE(gc->parent) == data;
M
Mathias Nyman 已提交
59 60
}

61 62 63 64 65 66 67 68 69 70 71
#ifdef CONFIG_PINCTRL
/**
 * acpi_gpiochip_pin_to_gpio_offset() - translates ACPI GPIO to Linux GPIO
 * @chip: GPIO chip
 * @pin: ACPI GPIO pin number from GpioIo/GpioInt resource
 *
 * Function takes ACPI GpioIo/GpioInt pin number as a parameter and
 * translates it to a corresponding offset suitable to be passed to a
 * GPIO controller driver.
 *
 * Typically the returned offset is same as @pin, but if the GPIO
72
 * controller uses pin controller and the mapping is not contiguous the
73 74
 * offset might be different.
 */
75
static int acpi_gpiochip_pin_to_gpio_offset(struct gpio_device *gdev, int pin)
76 77 78 79
{
	struct gpio_pin_range *pin_range;

	/* If there are no ranges in this chip, use 1:1 mapping */
80
	if (list_empty(&gdev->pin_ranges))
81 82
		return pin;

83
	list_for_each_entry(pin_range, &gdev->pin_ranges, node) {
84 85 86 87 88 89
		const struct pinctrl_gpio_range *range = &pin_range->range;
		int i;

		if (range->pins) {
			for (i = 0; i < range->npins; i++) {
				if (range->pins[i] == pin)
90
					return range->base + i - gdev->base;
91 92 93 94 95 96
			}
		} else {
			if (pin >= range->pin_base &&
			    pin < range->pin_base + range->npins) {
				unsigned gpio_base;

97
				gpio_base = range->base - gdev->base;
98 99 100 101 102 103 104 105
				return gpio_base + pin - range->pin_base;
			}
		}
	}

	return -EINVAL;
}
#else
106
static inline int acpi_gpiochip_pin_to_gpio_offset(struct gpio_device *gdev,
107 108 109 110 111 112
						   int pin)
{
	return pin;
}
#endif

M
Mathias Nyman 已提交
113
/**
114
 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
M
Mathias Nyman 已提交
115 116 117
 * @path:	ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
 * @pin:	ACPI GPIO pin number (0-based, controller-relative)
 *
118 119 120 121
 * Return: GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
 * error value. Specifically returns %-EPROBE_DEFER if the referenced GPIO
 * controller does not have gpiochip registered at the moment. This is to
 * support probe deferral.
M
Mathias Nyman 已提交
122
 */
123
static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
M
Mathias Nyman 已提交
124 125 126 127
{
	struct gpio_chip *chip;
	acpi_handle handle;
	acpi_status status;
128
	int offset;
M
Mathias Nyman 已提交
129 130 131

	status = acpi_get_handle(NULL, path, &handle);
	if (ACPI_FAILURE(status))
132
		return ERR_PTR(-ENODEV);
M
Mathias Nyman 已提交
133 134 135

	chip = gpiochip_find(handle, acpi_gpiochip_find);
	if (!chip)
136
		return ERR_PTR(-EPROBE_DEFER);
M
Mathias Nyman 已提交
137

138
	offset = acpi_gpiochip_pin_to_gpio_offset(chip->gpiodev, pin);
139 140
	if (offset < 0)
		return ERR_PTR(offset);
M
Mathias Nyman 已提交
141

142
	return gpiochip_get_desc(chip, offset);
M
Mathias Nyman 已提交
143
}
144 145 146

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

149
	acpi_evaluate_object(event->handle, NULL, NULL, NULL);
150 151 152 153

	return IRQ_HANDLED;
}

154 155
static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
{
156
	struct acpi_gpio_event *event = data;
157

158
	acpi_execute_simple_method(event->handle, NULL, event->pin);
159 160 161 162

	return IRQ_HANDLED;
}

163
static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
164 165 166 167
{
	/* The address of this function is used as a key. */
}

168 169
static acpi_status acpi_gpiochip_request_interrupt(struct acpi_resource *ares,
						   void *context)
170
{
171
	struct acpi_gpio_chip *acpi_gpio = context;
172
	struct gpio_chip *chip = acpi_gpio->chip;
173
	struct acpi_resource_gpio *agpio;
174
	acpi_handle handle, evt_handle;
175 176 177 178 179
	struct acpi_gpio_event *event;
	irq_handler_t handler = NULL;
	struct gpio_desc *desc;
	unsigned long irqflags;
	int ret, pin, irq;
180

181 182 183 184 185 186
	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;
187

188
	handle = ACPI_HANDLE(chip->parent);
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
	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;
205

206
	pin = acpi_gpiochip_pin_to_gpio_offset(chip->gpiodev, pin);
207 208 209
	if (pin < 0)
		return AE_BAD_PARAMETER;

210
	desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event");
211
	if (IS_ERR(desc)) {
212
		dev_err(chip->parent, "Failed to request GPIO\n");
213 214
		return AE_ERROR;
	}
215

216
	gpiod_direction_input(desc);
217

218
	ret = gpiochip_lock_as_irq(chip, pin);
219
	if (ret) {
220
		dev_err(chip->parent, "Failed to lock GPIO as interrupt\n");
221 222
		goto fail_free_desc;
	}
223

224 225
	irq = gpiod_to_irq(desc);
	if (irq < 0) {
226
		dev_err(chip->parent, "Failed to translate GPIO to IRQ\n");
227 228
		goto fail_unlock_irq;
	}
229

230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
	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;
248
		}
249
	}
250

251 252 253
	event = kzalloc(sizeof(*event), GFP_KERNEL);
	if (!event)
		goto fail_unlock_irq;
254

255 256 257
	event->handle = evt_handle;
	event->irq = irq;
	event->pin = pin;
258
	event->desc = desc;
259

260 261 262
	ret = request_threaded_irq(event->irq, NULL, handler, irqflags,
				   "ACPI:Event", event);
	if (ret) {
263 264
		dev_err(chip->parent,
			"Failed to setup interrupt handler for %d\n",
265 266
			event->irq);
		goto fail_free_event;
267
	}
268 269 270 271 272 273 274

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

fail_free_event:
	kfree(event);
fail_unlock_irq:
275
	gpiochip_unlock_as_irq(chip, pin);
276 277 278 279
fail_free_desc:
	gpiochip_free_own_desc(desc);

	return AE_ERROR;
280
}
281

282
/**
283
 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
284
 * @chip:      GPIO chip
285
 *
286 287 288 289 290 291
 * 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.
 */
292
void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
293
{
294 295 296 297
	struct acpi_gpio_chip *acpi_gpio;
	acpi_handle handle;
	acpi_status status;

298
	if (!chip->parent || !chip->to_irq)
299
		return;
300

301
	handle = ACPI_HANDLE(chip->parent);
302 303 304 305 306
	if (!handle)
		return;

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

309
	acpi_walk_resources(handle, "_AEI",
310 311
			    acpi_gpiochip_request_interrupt, acpi_gpio);
}
312
EXPORT_SYMBOL_GPL(acpi_gpiochip_request_interrupts);
313 314 315

/**
 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
316
 * @chip:      GPIO chip
317
 *
318 319
 * Free interrupts associated with GPIO ACPI event method for the given
 * GPIO chip.
320
 */
321
void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
322
{
323
	struct acpi_gpio_chip *acpi_gpio;
324
	struct acpi_gpio_event *event, *ep;
325 326 327
	acpi_handle handle;
	acpi_status status;

328
	if (!chip->parent || !chip->to_irq)
329
		return;
330

331
	handle = ACPI_HANDLE(chip->parent);
332 333 334 335 336
	if (!handle)
		return;

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

339
	list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
340 341 342
		struct gpio_desc *desc;

		free_irq(event->irq, event);
343
		desc = event->desc;
344 345
		if (WARN_ON(IS_ERR(desc)))
			continue;
346
		gpiochip_unlock_as_irq(chip, event->pin);
347
		gpiochip_free_own_desc(desc);
348 349
		list_del(&event->node);
		kfree(event);
350 351
	}
}
352
EXPORT_SYMBOL_GPL(acpi_gpiochip_free_interrupts);
353

354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388
int acpi_dev_add_driver_gpios(struct acpi_device *adev,
			      const struct acpi_gpio_mapping *gpios)
{
	if (adev && gpios) {
		adev->driver_gpios = gpios;
		return 0;
	}
	return -EINVAL;
}
EXPORT_SYMBOL_GPL(acpi_dev_add_driver_gpios);

static bool acpi_get_driver_gpio_data(struct acpi_device *adev,
				      const char *name, int index,
				      struct acpi_reference_args *args)
{
	const struct acpi_gpio_mapping *gm;

	if (!adev->driver_gpios)
		return false;

	for (gm = adev->driver_gpios; gm->name; gm++)
		if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
			const struct acpi_gpio_params *par = gm->data + index;

			args->adev = adev;
			args->args[0] = par->crs_entry_index;
			args->args[1] = par->line_index;
			args->args[2] = par->active_low;
			args->nargs = 3;
			return true;
		}

	return false;
}

389 390 391
struct acpi_gpio_lookup {
	struct acpi_gpio_info info;
	int index;
392
	int pin_index;
393 394
	bool active_low;
	struct acpi_device *adev;
395
	struct gpio_desc *desc;
396 397 398
	int n;
};

L
Linus Walleij 已提交
399
static int acpi_populate_gpio_lookup(struct acpi_resource *ares, void *data)
400 401 402 403 404 405
{
	struct acpi_gpio_lookup *lookup = data;

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

406
	if (lookup->n++ == lookup->index && !lookup->desc) {
407
		const struct acpi_resource_gpio *agpio = &ares->data.gpio;
408 409 410 411
		int pin_index = lookup->pin_index;

		if (pin_index >= agpio->pin_table_length)
			return 1;
412

413
		lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
414
					      agpio->pin_table[pin_index]);
415 416
		lookup->info.gpioint =
			agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
417 418 419 420 421

		/*
		 * ActiveLow is only specified for GpioInt resource. If
		 * GpioIo is used then the only way to set the flag is
		 * to use _DSD "gpios" property.
422 423 424
		 * Note: we expect here:
		 * - ACPI_ACTIVE_LOW == GPIO_ACTIVE_LOW
		 * - ACPI_ACTIVE_HIGH == GPIO_ACTIVE_HIGH
425
		 */
426 427 428 429 430
		if (lookup->info.gpioint) {
			lookup->info.polarity = agpio->polarity;
			lookup->info.triggering = agpio->triggering;
		}

431 432 433 434 435
	}

	return 1;
}

436 437 438 439 440 441 442 443
static int acpi_gpio_resource_lookup(struct acpi_gpio_lookup *lookup,
				     struct acpi_gpio_info *info)
{
	struct list_head res_list;
	int ret;

	INIT_LIST_HEAD(&res_list);

L
Linus Walleij 已提交
444 445
	ret = acpi_dev_get_resources(lookup->adev, &res_list,
				     acpi_populate_gpio_lookup,
446 447 448 449 450 451 452 453 454 455 456 457
				     lookup);
	if (ret < 0)
		return ret;

	acpi_dev_free_resource_list(&res_list);

	if (!lookup->desc)
		return -ENOENT;

	if (info) {
		*info = lookup->info;
		if (lookup->active_low)
458
			info->polarity = lookup->active_low;
459 460 461 462
	}
	return 0;
}

463
static int acpi_gpio_property_lookup(struct fwnode_handle *fwnode,
464 465 466 467 468 469 470
				     const char *propname, int index,
				     struct acpi_gpio_lookup *lookup)
{
	struct acpi_reference_args args;
	int ret;

	memset(&args, 0, sizeof(args));
471 472
	ret = __acpi_node_get_property_reference(fwnode, propname, index, 3,
						 &args);
473 474
	if (ret) {
		struct acpi_device *adev = to_acpi_device_node(fwnode);
475

476 477 478 479 480 481
		if (!adev)
			return ret;

		if (!acpi_get_driver_gpio_data(adev, propname, index, &args))
			return ret;
	}
482 483 484 485 486
	/*
	 * The property was found and resolved, so need to lookup the GPIO based
	 * on returned args.
	 */
	lookup->adev = args.adev;
487 488 489 490 491 492 493
	if (args.nargs != 3)
		return -EPROTO;

	lookup->index = args.args[0];
	lookup->pin_index = args.args[1];
	lookup->active_low = !!args.args[2];

494 495 496
	return 0;
}

497
/**
498
 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
499 500
 * @adev: pointer to a ACPI device to get GPIO from
 * @propname: Property name of the GPIO (optional)
501 502 503
 * @index: index of GpioIo/GpioInt resource (starting from %0)
 * @info: info pointer to fill in (optional)
 *
504
 * Function goes through ACPI resources for @adev and based on @index looks
505
 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
506 507 508
 * and returns it. @index matches GpioIo/GpioInt resources only so if there
 * are total %3 GPIO resources, the index goes from %0 to %2.
 *
509 510 511 512
 * If @propname is specified the GPIO is looked using device property. In
 * that case @index is used to select the GPIO entry in the property value
 * (in case of multiple).
 *
513
 * If the GPIO cannot be translated or there is an error an ERR_PTR is
514 515 516 517 518
 * returned.
 *
 * Note: if the GPIO resource has multiple entries in the pin list, this
 * function only returns the first.
 */
L
Linus Walleij 已提交
519
static struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
520
					  const char *propname, int index,
521
					  struct acpi_gpio_info *info)
522 523 524 525
{
	struct acpi_gpio_lookup lookup;
	int ret;

526
	if (!adev)
527
		return ERR_PTR(-ENODEV);
528 529 530 531

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

532 533 534
	if (propname) {
		dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);

535 536
		ret = acpi_gpio_property_lookup(acpi_fwnode_handle(adev),
						propname, index, &lookup);
537 538
		if (ret)
			return ERR_PTR(ret);
539

540 541 542
		dev_dbg(&adev->dev, "GPIO: _DSD returned %s %d %d %u\n",
			dev_name(&lookup.adev->dev), lookup.index,
			lookup.pin_index, lookup.active_low);
543 544
	} else {
		dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
545
		lookup.adev = adev;
546 547
	}

548 549
	ret = acpi_gpio_resource_lookup(&lookup, info);
	return ret ? ERR_PTR(ret) : lookup.desc;
550
}
551

L
Linus Walleij 已提交
552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600
struct gpio_desc *acpi_find_gpio(struct device *dev,
				 const char *con_id,
				 unsigned int idx,
				 enum gpiod_flags flags,
				 enum gpio_lookup_flags *lookupflags)
{
	struct acpi_device *adev = ACPI_COMPANION(dev);
	struct acpi_gpio_info info;
	struct gpio_desc *desc;
	char propname[32];
	int i;

	/* Try first from _DSD */
	for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
		if (con_id && strcmp(con_id, "gpios")) {
			snprintf(propname, sizeof(propname), "%s-%s",
				 con_id, gpio_suffixes[i]);
		} else {
			snprintf(propname, sizeof(propname), "%s",
				 gpio_suffixes[i]);
		}

		desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
		if (!IS_ERR(desc) || (PTR_ERR(desc) == -EPROBE_DEFER))
			break;
	}

	/* Then from plain _CRS GPIOs */
	if (IS_ERR(desc)) {
		if (!acpi_can_fallback_to_crs(adev, con_id))
			return ERR_PTR(-ENOENT);

		desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
		if (IS_ERR(desc))
			return desc;

		if ((flags == GPIOD_OUT_LOW || flags == GPIOD_OUT_HIGH) &&
		    info.gpioint) {
			dev_dbg(dev, "refusing GpioInt() entry when doing GPIOD_OUT_* lookup\n");
			return ERR_PTR(-ENOENT);
		}
	}

	if (info.polarity == GPIO_ACTIVE_LOW)
		*lookupflags |= GPIO_ACTIVE_LOW;

	return desc;
}

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619
/**
 * acpi_node_get_gpiod() - get a GPIO descriptor from ACPI resources
 * @fwnode: pointer to an ACPI firmware node to get the GPIO information from
 * @propname: Property name of the GPIO
 * @index: index of GpioIo/GpioInt resource (starting from %0)
 * @info: info pointer to fill in (optional)
 *
 * If @fwnode is an ACPI device object, call %acpi_get_gpiod_by_index() for it.
 * Otherwise (ie. it is a data-only non-device object), use the property-based
 * GPIO lookup to get to the GPIO resource with the relevant information and use
 * that to obtain the GPIO descriptor to return.
 */
struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
				      const char *propname, int index,
				      struct acpi_gpio_info *info)
{
	struct acpi_gpio_lookup lookup;
	struct acpi_device *adev;
	int ret;
620

621 622 623
	adev = to_acpi_device_node(fwnode);
	if (adev)
		return acpi_get_gpiod_by_index(adev, propname, index, info);
624

625 626 627 628 629 630 631 632 633 634 635 636
	if (!is_acpi_data_node(fwnode))
		return ERR_PTR(-ENODEV);

	if (!propname)
		return ERR_PTR(-EINVAL);

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

	ret = acpi_gpio_property_lookup(fwnode, propname, index, &lookup);
	if (ret)
		return ERR_PTR(ret);
637

638 639
	ret = acpi_gpio_resource_lookup(&lookup, info);
	return ret ? ERR_PTR(ret) : lookup.desc;
640
}
641

642 643 644 645 646 647 648 649 650 651 652 653 654 655
/**
 * acpi_dev_gpio_irq_get() - Find GpioInt and translate it to Linux IRQ number
 * @adev: pointer to a ACPI device to get IRQ from
 * @index: index of GpioInt resource (starting from %0)
 *
 * If the device has one or more GpioInt resources, this function can be
 * used to translate from the GPIO offset in the resource to the Linux IRQ
 * number.
 *
 * Return: Linux IRQ number (>%0) on success, negative errno on failure.
 */
int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index)
{
	int idx, i;
656
	unsigned int irq_flags;
657
	int ret = -ENOENT;
658 659 660 661 662 663

	for (i = 0, idx = 0; idx <= index; i++) {
		struct acpi_gpio_info info;
		struct gpio_desc *desc;

		desc = acpi_get_gpiod_by_index(adev, NULL, i, &info);
664 665
		if (IS_ERR(desc)) {
			ret = PTR_ERR(desc);
666
			break;
667
		}
668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684
		if (info.gpioint && idx++ == index) {
			int irq = gpiod_to_irq(desc);

			if (irq < 0)
				return irq;

			irq_flags = acpi_dev_get_irq_type(info.triggering,
							  info.polarity);

			/* Set type if specified and different than the current one */
			if (irq_flags != IRQ_TYPE_NONE &&
			    irq_flags != irq_get_trigger_type(irq))
				irq_set_irq_type(irq, irq_flags);

			return irq;
		}

685
	}
686
	return ret;
687 688 689
}
EXPORT_SYMBOL_GPL(acpi_dev_gpio_irq_get);

690 691 692 693 694 695 696 697 698
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;
699
	int pin_index = (int)address;
700 701
	acpi_status status;
	bool pull_up;
702
	int length;
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723
	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;
	}

724 725
	length = min(agpio->pin_table_length, (u16)(pin_index + bits));
	for (i = pin_index; i < length; ++i) {
726
		int pin = agpio->pin_table[i];
727 728 729 730
		struct acpi_gpio_connection *conn;
		struct gpio_desc *desc;
		bool found;

731
		pin = acpi_gpiochip_pin_to_gpio_offset(chip->gpiodev, pin);
732 733 734 735 736
		if (pin < 0) {
			status = AE_BAD_PARAMETER;
			goto out;
		}

737 738 739 740
		mutex_lock(&achip->conn_lock);

		found = false;
		list_for_each_entry(conn, &achip->conns, node) {
741
			if (conn->pin == pin) {
742
				found = true;
743
				desc = conn->desc;
744 745 746
				break;
			}
		}
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765

		/*
		 * The same GPIO can be shared between operation region and
		 * event but only if the access here is ACPI_READ. In that
		 * case we "borrow" the event GPIO instead.
		 */
		if (!found && agpio->sharable == ACPI_SHARED &&
		     function == ACPI_READ) {
			struct acpi_gpio_event *event;

			list_for_each_entry(event, &achip->events, node) {
				if (event->pin == pin) {
					desc = event->desc;
					found = true;
					break;
				}
			}
		}

766
		if (!found) {
767 768
			desc = gpiochip_request_own_desc(chip, pin,
							 "ACPI:OpRegion");
769
			if (IS_ERR(desc)) {
770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805
				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;
			}

806
			conn->pin = pin;
807 808 809 810 811 812 813
			conn->desc = desc;
			list_add_tail(&conn->node, &achip->conns);
		}

		mutex_unlock(&achip->conn_lock);

		if (function == ACPI_WRITE)
814 815
			gpiod_set_raw_value_cansleep(desc,
						     !!((1 << i) & *value));
816
		else
817
			*value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
818 819 820 821 822 823 824 825 826 827
	}

out:
	ACPI_FREE(ares);
	return status;
}

static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
{
	struct gpio_chip *chip = achip->chip;
828
	acpi_handle handle = ACPI_HANDLE(chip->parent);
829 830 831 832 833 834 835 836
	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))
837 838
		dev_err(chip->parent,
		        "Failed to install GPIO OpRegion handler\n");
839 840 841 842 843
}

static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
{
	struct gpio_chip *chip = achip->chip;
844
	acpi_handle handle = ACPI_HANDLE(chip->parent);
845 846 847 848 849 850
	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)) {
851 852
		dev_err(chip->parent,
			"Failed to remove GPIO OpRegion handler\n");
853 854 855 856 857 858 859 860 861 862
		return;
	}

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

863 864 865
static struct gpio_desc *acpi_gpiochip_parse_own_gpio(
	struct acpi_gpio_chip *achip, struct fwnode_handle *fwnode,
	const char **name, unsigned int *lflags, unsigned int *dflags)
M
Mika Westerberg 已提交
866 867 868 869 870 871
{
	struct gpio_chip *chip = achip->chip;
	struct gpio_desc *desc;
	u32 gpios[2];
	int ret;

872 873 874 875
	*lflags = 0;
	*dflags = 0;
	*name = NULL;

M
Mika Westerberg 已提交
876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927
	ret = fwnode_property_read_u32_array(fwnode, "gpios", gpios,
					     ARRAY_SIZE(gpios));
	if (ret < 0)
		return ERR_PTR(ret);

	ret = acpi_gpiochip_pin_to_gpio_offset(chip->gpiodev, gpios[0]);
	if (ret < 0)
		return ERR_PTR(ret);

	desc = gpiochip_get_desc(chip, ret);
	if (IS_ERR(desc))
		return desc;

	if (gpios[1])
		*lflags |= GPIO_ACTIVE_LOW;

	if (fwnode_property_present(fwnode, "input"))
		*dflags |= GPIOD_IN;
	else if (fwnode_property_present(fwnode, "output-low"))
		*dflags |= GPIOD_OUT_LOW;
	else if (fwnode_property_present(fwnode, "output-high"))
		*dflags |= GPIOD_OUT_HIGH;
	else
		return ERR_PTR(-EINVAL);

	fwnode_property_read_string(fwnode, "line-name", name);

	return desc;
}

static void acpi_gpiochip_scan_gpios(struct acpi_gpio_chip *achip)
{
	struct gpio_chip *chip = achip->chip;
	struct fwnode_handle *fwnode;

	device_for_each_child_node(chip->parent, fwnode) {
		unsigned int lflags, dflags;
		struct gpio_desc *desc;
		const char *name;
		int ret;

		if (!fwnode_property_present(fwnode, "gpio-hog"))
			continue;

		desc = acpi_gpiochip_parse_own_gpio(achip, fwnode, &name,
						    &lflags, &dflags);
		if (IS_ERR(desc))
			continue;

		ret = gpiod_hog(desc, name, lflags, dflags);
		if (ret) {
			dev_err(chip->parent, "Failed to hog GPIO\n");
928
			fwnode_handle_put(fwnode);
M
Mika Westerberg 已提交
929 930 931 932 933
			return;
		}
	}
}

934 935
void acpi_gpiochip_add(struct gpio_chip *chip)
{
936 937 938 939
	struct acpi_gpio_chip *acpi_gpio;
	acpi_handle handle;
	acpi_status status;

940
	if (!chip || !chip->parent)
941 942
		return;

943
	handle = ACPI_HANDLE(chip->parent);
944 945 946 947 948
	if (!handle)
		return;

	acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
	if (!acpi_gpio) {
949
		dev_err(chip->parent,
950 951 952 953 954
			"Failed to allocate memory for ACPI GPIO chip\n");
		return;
	}

	acpi_gpio->chip = chip;
955
	INIT_LIST_HEAD(&acpi_gpio->events);
956 957 958

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

964 965 966
	if (!chip->names)
		devprop_gpiochip_set_names(chip);

967
	acpi_gpiochip_request_regions(acpi_gpio);
M
Mika Westerberg 已提交
968
	acpi_gpiochip_scan_gpios(acpi_gpio);
969
	acpi_walk_dep_device_list(handle);
970 971 972 973
}

void acpi_gpiochip_remove(struct gpio_chip *chip)
{
974 975 976 977
	struct acpi_gpio_chip *acpi_gpio;
	acpi_handle handle;
	acpi_status status;

978
	if (!chip || !chip->parent)
979 980
		return;

981
	handle = ACPI_HANDLE(chip->parent);
982 983 984 985 986
	if (!handle)
		return;

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

991
	acpi_gpiochip_free_regions(acpi_gpio);
992 993 994

	acpi_detach_data(handle, acpi_gpio_chip_dh);
	kfree(acpi_gpio);
995
}
996

997
static int acpi_gpio_package_count(const union acpi_object *obj)
998 999 1000 1001 1002 1003
{
	const union acpi_object *element = obj->package.elements;
	const union acpi_object *end = element + obj->package.count;
	unsigned int count = 0;

	while (element < end) {
1004 1005 1006 1007 1008 1009
		switch (element->type) {
		case ACPI_TYPE_LOCAL_REFERENCE:
			element += 3;
			/* Fallthrough */
		case ACPI_TYPE_INTEGER:
			element++;
1010
			count++;
1011
			break;
1012

1013 1014 1015
		default:
			return -EPROTO;
		}
1016
	}
1017

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088
	return count;
}

static int acpi_find_gpio_count(struct acpi_resource *ares, void *data)
{
	unsigned int *count = data;

	if (ares->type == ACPI_RESOURCE_TYPE_GPIO)
		*count += ares->data.gpio.pin_table_length;

	return 1;
}

/**
 * acpi_gpio_count - return the number of GPIOs associated with a
 *		device / function or -ENOENT if no GPIO has been
 *		assigned to the requested function.
 * @dev:	GPIO consumer, can be NULL for system-global GPIOs
 * @con_id:	function within the GPIO consumer
 */
int acpi_gpio_count(struct device *dev, const char *con_id)
{
	struct acpi_device *adev = ACPI_COMPANION(dev);
	const union acpi_object *obj;
	const struct acpi_gpio_mapping *gm;
	int count = -ENOENT;
	int ret;
	char propname[32];
	unsigned int i;

	/* Try first from _DSD */
	for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
		if (con_id && strcmp(con_id, "gpios"))
			snprintf(propname, sizeof(propname), "%s-%s",
				 con_id, gpio_suffixes[i]);
		else
			snprintf(propname, sizeof(propname), "%s",
				 gpio_suffixes[i]);

		ret = acpi_dev_get_property(adev, propname, ACPI_TYPE_ANY,
					    &obj);
		if (ret == 0) {
			if (obj->type == ACPI_TYPE_LOCAL_REFERENCE)
				count = 1;
			else if (obj->type == ACPI_TYPE_PACKAGE)
				count = acpi_gpio_package_count(obj);
		} else if (adev->driver_gpios) {
			for (gm = adev->driver_gpios; gm->name; gm++)
				if (strcmp(propname, gm->name) == 0) {
					count = gm->size;
					break;
				}
		}
		if (count >= 0)
			break;
	}

	/* Then from plain _CRS GPIOs */
	if (count < 0) {
		struct list_head resource_list;
		unsigned int crs_count = 0;

		INIT_LIST_HEAD(&resource_list);
		acpi_dev_get_resources(adev, &resource_list,
				       acpi_find_gpio_count, &crs_count);
		acpi_dev_free_resource_list(&resource_list);
		if (crs_count > 0)
			count = crs_count;
	}
	return count;
}
1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119

struct acpi_crs_lookup {
	struct list_head node;
	struct acpi_device *adev;
	const char *con_id;
};

static DEFINE_MUTEX(acpi_crs_lookup_lock);
static LIST_HEAD(acpi_crs_lookup_list);

bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id)
{
	struct acpi_crs_lookup *l, *lookup = NULL;

	/* Never allow fallback if the device has properties */
	if (adev->data.properties || adev->driver_gpios)
		return false;

	mutex_lock(&acpi_crs_lookup_lock);

	list_for_each_entry(l, &acpi_crs_lookup_list, node) {
		if (l->adev == adev) {
			lookup = l;
			break;
		}
	}

	if (!lookup) {
		lookup = kmalloc(sizeof(*lookup), GFP_KERNEL);
		if (lookup) {
			lookup->adev = adev;
1120
			lookup->con_id = kstrdup(con_id, GFP_KERNEL);
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
			list_add_tail(&lookup->node, &acpi_crs_lookup_list);
		}
	}

	mutex_unlock(&acpi_crs_lookup_lock);

	return lookup &&
		((!lookup->con_id && !con_id) ||
		 (lookup->con_id && con_id &&
		  strcmp(lookup->con_id, con_id) == 0));
}