blob: c5e009f610210d5781dfef0e90f8049ce19eaa86 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001/*
2 * ACPI helpers for GPIO API
3 *
4 * Copyright (C) 2012, Intel Corporation
5 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
6 * Mika Westerberg <mika.westerberg@linux.intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/errno.h>
14#include <linux/gpio.h>
15#include <linux/gpio/consumer.h>
16#include <linux/gpio/driver.h>
17#include <linux/gpio/machine.h>
18#include <linux/export.h>
19#include <linux/acpi.h>
20#include <linux/interrupt.h>
21#include <linux/mutex.h>
22#include <linux/pinctrl/pinctrl.h>
23
24#include "gpiolib.h"
25
26/**
27 * struct acpi_gpio_event - ACPI GPIO event handler data
28 *
29 * @node: list-entry of the events list of the struct acpi_gpio_chip
30 * @handle: handle of ACPI method to execute when the IRQ triggers
31 * @handler: irq_handler to pass to request_irq when requesting the IRQ
32 * @pin: GPIO pin number on the gpio_chip
33 * @irq: Linux IRQ number for the event, for request_ / free_irq
34 * @irqflags: flags to pass to request_irq when requesting the IRQ
35 * @irq_is_wake: If the ACPI flags indicate the IRQ is a wakeup source
36 * @is_requested: True if request_irq has been done
37 * @desc: gpio_desc for the GPIO pin for this event
38 */
39struct acpi_gpio_event {
40 struct list_head node;
41 acpi_handle handle;
42 irq_handler_t handler;
43 unsigned int pin;
44 unsigned int irq;
45 unsigned long irqflags;
46 bool irq_is_wake;
47 bool irq_requested;
48 struct gpio_desc *desc;
49};
50
51struct acpi_gpio_connection {
52 struct list_head node;
53 unsigned int pin;
54 struct gpio_desc *desc;
55};
56
57struct acpi_gpio_chip {
58 /*
59 * ACPICA requires that the first field of the context parameter
60 * passed to acpi_install_address_space_handler() is large enough
61 * to hold struct acpi_connection_info.
62 */
63 struct acpi_connection_info conn_info;
64 struct list_head conns;
65 struct mutex conn_lock;
66 struct gpio_chip *chip;
67 struct list_head events;
68 struct list_head deferred_req_irqs_list_entry;
69};
70
71/*
72 * For gpiochips which call acpi_gpiochip_request_interrupts() before late_init
73 * (so builtin drivers) we register the ACPI GpioInt IRQ handlers from a
74 * late_initcall_sync handler, so that other builtin drivers can register their
75 * OpRegions before the event handlers can run. This list contains gpiochips
76 * for which the acpi_gpiochip_request_irqs() call has been deferred.
77 */
78static DEFINE_MUTEX(acpi_gpio_deferred_req_irqs_lock);
79static LIST_HEAD(acpi_gpio_deferred_req_irqs_list);
80static bool acpi_gpio_deferred_req_irqs_done;
81
82static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
83{
84 if (!gc->parent)
85 return false;
86
87 return ACPI_HANDLE(gc->parent) == data;
88}
89
90/**
91 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
92 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
93 * @pin: ACPI GPIO pin number (0-based, controller-relative)
94 *
95 * Return: GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
96 * error value. Specifically returns %-EPROBE_DEFER if the referenced GPIO
97 * controller does not have gpiochip registered at the moment. This is to
98 * support probe deferral.
99 */
100static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
101{
102 struct gpio_chip *chip;
103 acpi_handle handle;
104 acpi_status status;
105
106 status = acpi_get_handle(NULL, path, &handle);
107 if (ACPI_FAILURE(status))
108 return ERR_PTR(-ENODEV);
109
110 chip = gpiochip_find(handle, acpi_gpiochip_find);
111 if (!chip)
112 return ERR_PTR(-EPROBE_DEFER);
113
114 return gpiochip_get_desc(chip, pin);
115}
116
117static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
118{
119 struct acpi_gpio_event *event = data;
120
121 acpi_evaluate_object(event->handle, NULL, NULL, NULL);
122
123 return IRQ_HANDLED;
124}
125
126static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
127{
128 struct acpi_gpio_event *event = data;
129
130 acpi_execute_simple_method(event->handle, NULL, event->pin);
131
132 return IRQ_HANDLED;
133}
134
135static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
136{
137 /* The address of this function is used as a key. */
138}
139
140bool acpi_gpio_get_irq_resource(struct acpi_resource *ares,
141 struct acpi_resource_gpio **agpio)
142{
143 struct acpi_resource_gpio *gpio;
144
145 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
146 return false;
147
148 gpio = &ares->data.gpio;
149 if (gpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
150 return false;
151
152 *agpio = gpio;
153 return true;
154}
155EXPORT_SYMBOL_GPL(acpi_gpio_get_irq_resource);
156
157static void acpi_gpiochip_request_irq(struct acpi_gpio_chip *acpi_gpio,
158 struct acpi_gpio_event *event)
159{
160 int ret, value;
161
162 ret = request_threaded_irq(event->irq, NULL, event->handler,
163 event->irqflags, "ACPI:Event", event);
164 if (ret) {
165 dev_err(acpi_gpio->chip->parent,
166 "Failed to setup interrupt handler for %d\n",
167 event->irq);
168 return;
169 }
170
171 if (event->irq_is_wake)
172 enable_irq_wake(event->irq);
173
174 event->irq_requested = true;
175
176 /* Make sure we trigger the initial state of edge-triggered IRQs */
177 value = gpiod_get_raw_value_cansleep(event->desc);
178 if (((event->irqflags & IRQF_TRIGGER_RISING) && value == 1) ||
179 ((event->irqflags & IRQF_TRIGGER_FALLING) && value == 0))
180 event->handler(event->irq, event);
181}
182
183static void acpi_gpiochip_request_irqs(struct acpi_gpio_chip *acpi_gpio)
184{
185 struct acpi_gpio_event *event;
186
187 list_for_each_entry(event, &acpi_gpio->events, node)
188 acpi_gpiochip_request_irq(acpi_gpio, event);
189}
190
191static acpi_status acpi_gpiochip_alloc_event(struct acpi_resource *ares,
192 void *context)
193{
194 struct acpi_gpio_chip *acpi_gpio = context;
195 struct gpio_chip *chip = acpi_gpio->chip;
196 struct acpi_resource_gpio *agpio;
197 acpi_handle handle, evt_handle;
198 struct acpi_gpio_event *event;
199 irq_handler_t handler = NULL;
200 struct gpio_desc *desc;
201 int ret, pin, irq;
202
203 if (!acpi_gpio_get_irq_resource(ares, &agpio))
204 return AE_OK;
205
206 handle = ACPI_HANDLE(chip->parent);
207 pin = agpio->pin_table[0];
208
209 if (pin <= 255) {
210 char ev_name[5];
211 sprintf(ev_name, "_%c%02hhX",
212 agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
213 pin);
214 if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
215 handler = acpi_gpio_irq_handler;
216 }
217 if (!handler) {
218 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
219 handler = acpi_gpio_irq_handler_evt;
220 }
221 if (!handler)
222 return AE_OK;
223
224 desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event");
225 if (IS_ERR(desc)) {
226 dev_err(chip->parent, "Failed to request GPIO\n");
227 return AE_ERROR;
228 }
229
230 gpiod_direction_input(desc);
231
232 ret = gpiochip_lock_as_irq(chip, pin);
233 if (ret) {
234 dev_err(chip->parent, "Failed to lock GPIO as interrupt\n");
235 goto fail_free_desc;
236 }
237
238 irq = gpiod_to_irq(desc);
239 if (irq < 0) {
240 dev_err(chip->parent, "Failed to translate GPIO to IRQ\n");
241 goto fail_unlock_irq;
242 }
243
244 event = kzalloc(sizeof(*event), GFP_KERNEL);
245 if (!event)
246 goto fail_unlock_irq;
247
248 event->irqflags = IRQF_ONESHOT;
249 if (agpio->triggering == ACPI_LEVEL_SENSITIVE) {
250 if (agpio->polarity == ACPI_ACTIVE_HIGH)
251 event->irqflags |= IRQF_TRIGGER_HIGH;
252 else
253 event->irqflags |= IRQF_TRIGGER_LOW;
254 } else {
255 switch (agpio->polarity) {
256 case ACPI_ACTIVE_HIGH:
257 event->irqflags |= IRQF_TRIGGER_RISING;
258 break;
259 case ACPI_ACTIVE_LOW:
260 event->irqflags |= IRQF_TRIGGER_FALLING;
261 break;
262 default:
263 event->irqflags |= IRQF_TRIGGER_RISING |
264 IRQF_TRIGGER_FALLING;
265 break;
266 }
267 }
268
269 event->handle = evt_handle;
270 event->handler = handler;
271 event->irq = irq;
272 event->irq_is_wake = agpio->wake_capable == ACPI_WAKE_CAPABLE;
273 event->pin = pin;
274 event->desc = desc;
275
276 list_add_tail(&event->node, &acpi_gpio->events);
277
278 return AE_OK;
279
280fail_unlock_irq:
281 gpiochip_unlock_as_irq(chip, pin);
282fail_free_desc:
283 gpiochip_free_own_desc(desc);
284
285 return AE_ERROR;
286}
287
288/**
289 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
290 * @chip: GPIO chip
291 *
292 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
293 * handled by ACPI event methods which need to be called from the GPIO
294 * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
295 * gpio pins have acpi event methods and assigns interrupt handlers that calls
296 * the acpi event methods for those pins.
297 */
298void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
299{
300 struct acpi_gpio_chip *acpi_gpio;
301 acpi_handle handle;
302 acpi_status status;
303 bool defer;
304
305 if (!chip->parent || !chip->to_irq)
306 return;
307
308 handle = ACPI_HANDLE(chip->parent);
309 if (!handle)
310 return;
311
312 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
313 if (ACPI_FAILURE(status))
314 return;
315
316 acpi_walk_resources(handle, "_AEI",
317 acpi_gpiochip_alloc_event, acpi_gpio);
318
319 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
320 defer = !acpi_gpio_deferred_req_irqs_done;
321 if (defer)
322 list_add(&acpi_gpio->deferred_req_irqs_list_entry,
323 &acpi_gpio_deferred_req_irqs_list);
324 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
325
326 if (defer)
327 return;
328
329 acpi_gpiochip_request_irqs(acpi_gpio);
330}
331EXPORT_SYMBOL_GPL(acpi_gpiochip_request_interrupts);
332
333/**
334 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
335 * @chip: GPIO chip
336 *
337 * Free interrupts associated with GPIO ACPI event method for the given
338 * GPIO chip.
339 */
340void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
341{
342 struct acpi_gpio_chip *acpi_gpio;
343 struct acpi_gpio_event *event, *ep;
344 acpi_handle handle;
345 acpi_status status;
346
347 if (!chip->parent || !chip->to_irq)
348 return;
349
350 handle = ACPI_HANDLE(chip->parent);
351 if (!handle)
352 return;
353
354 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
355 if (ACPI_FAILURE(status))
356 return;
357
358 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
359 if (!list_empty(&acpi_gpio->deferred_req_irqs_list_entry))
360 list_del_init(&acpi_gpio->deferred_req_irqs_list_entry);
361 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
362
363 list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
364 struct gpio_desc *desc;
365
366 if (event->irq_requested) {
367 if (event->irq_is_wake)
368 disable_irq_wake(event->irq);
369
370 free_irq(event->irq, event);
371 }
372
373 desc = event->desc;
374 if (WARN_ON(IS_ERR(desc)))
375 continue;
376 gpiochip_unlock_as_irq(chip, event->pin);
377 gpiochip_free_own_desc(desc);
378 list_del(&event->node);
379 kfree(event);
380 }
381}
382EXPORT_SYMBOL_GPL(acpi_gpiochip_free_interrupts);
383
384int acpi_dev_add_driver_gpios(struct acpi_device *adev,
385 const struct acpi_gpio_mapping *gpios)
386{
387 if (adev && gpios) {
388 adev->driver_gpios = gpios;
389 return 0;
390 }
391 return -EINVAL;
392}
393EXPORT_SYMBOL_GPL(acpi_dev_add_driver_gpios);
394
395static void devm_acpi_dev_release_driver_gpios(struct device *dev, void *res)
396{
397 acpi_dev_remove_driver_gpios(ACPI_COMPANION(dev));
398}
399
400int devm_acpi_dev_add_driver_gpios(struct device *dev,
401 const struct acpi_gpio_mapping *gpios)
402{
403 void *res;
404 int ret;
405
406 res = devres_alloc(devm_acpi_dev_release_driver_gpios, 0, GFP_KERNEL);
407 if (!res)
408 return -ENOMEM;
409
410 ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(dev), gpios);
411 if (ret) {
412 devres_free(res);
413 return ret;
414 }
415 devres_add(dev, res);
416 return 0;
417}
418EXPORT_SYMBOL_GPL(devm_acpi_dev_add_driver_gpios);
419
420void devm_acpi_dev_remove_driver_gpios(struct device *dev)
421{
422 WARN_ON(devres_release(dev, devm_acpi_dev_release_driver_gpios, NULL, NULL));
423}
424EXPORT_SYMBOL_GPL(devm_acpi_dev_remove_driver_gpios);
425
426static bool acpi_get_driver_gpio_data(struct acpi_device *adev,
427 const char *name, int index,
428 struct fwnode_reference_args *args,
429 unsigned int *quirks)
430{
431 const struct acpi_gpio_mapping *gm;
432
433 if (!adev->driver_gpios)
434 return false;
435
436 for (gm = adev->driver_gpios; gm->name; gm++)
437 if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
438 const struct acpi_gpio_params *par = gm->data + index;
439
440 args->fwnode = acpi_fwnode_handle(adev);
441 args->args[0] = par->crs_entry_index;
442 args->args[1] = par->line_index;
443 args->args[2] = par->active_low;
444 args->nargs = 3;
445
446 *quirks = gm->quirks;
447 return true;
448 }
449
450 return false;
451}
452
453static enum gpiod_flags
454acpi_gpio_to_gpiod_flags(const struct acpi_resource_gpio *agpio)
455{
456 bool pull_up = agpio->pin_config == ACPI_PIN_CONFIG_PULLUP;
457
458 switch (agpio->io_restriction) {
459 case ACPI_IO_RESTRICT_INPUT:
460 return GPIOD_IN;
461 case ACPI_IO_RESTRICT_OUTPUT:
462 /*
463 * ACPI GPIO resources don't contain an initial value for the
464 * GPIO. Therefore we deduce that value from the pull field
465 * instead. If the pin is pulled up we assume default to be
466 * high, otherwise low.
467 */
468 return pull_up ? GPIOD_OUT_HIGH : GPIOD_OUT_LOW;
469 default:
470 /*
471 * Assume that the BIOS has configured the direction and pull
472 * accordingly.
473 */
474 return GPIOD_ASIS;
475 }
476}
477
478static int
479__acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, enum gpiod_flags update)
480{
481 int ret = 0;
482
483 /*
484 * Check if the BIOS has IoRestriction with explicitly set direction
485 * and update @flags accordingly. Otherwise use whatever caller asked
486 * for.
487 */
488 if (update & GPIOD_FLAGS_BIT_DIR_SET) {
489 enum gpiod_flags diff = *flags ^ update;
490
491 /*
492 * Check if caller supplied incompatible GPIO initialization
493 * flags.
494 *
495 * Return %-EINVAL to notify that firmware has different
496 * settings and we are going to use them.
497 */
498 if (((*flags & GPIOD_FLAGS_BIT_DIR_SET) && (diff & GPIOD_FLAGS_BIT_DIR_OUT)) ||
499 ((*flags & GPIOD_FLAGS_BIT_DIR_OUT) && (diff & GPIOD_FLAGS_BIT_DIR_VAL)))
500 ret = -EINVAL;
501 *flags = update;
502 }
503 return ret;
504}
505
506int
507acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, struct acpi_gpio_info *info)
508{
509 struct device *dev = &info->adev->dev;
510 enum gpiod_flags old = *flags;
511 int ret;
512
513 ret = __acpi_gpio_update_gpiod_flags(&old, info->flags);
514 if (info->quirks & ACPI_GPIO_QUIRK_NO_IO_RESTRICTION) {
515 if (ret)
516 dev_warn(dev, FW_BUG "GPIO not in correct mode, fixing\n");
517 } else {
518 if (ret)
519 dev_dbg(dev, "Override GPIO initialization flags\n");
520 *flags = old;
521 }
522
523 return ret;
524}
525
526struct acpi_gpio_lookup {
527 struct acpi_gpio_info info;
528 int index;
529 int pin_index;
530 bool active_low;
531 struct gpio_desc *desc;
532 int n;
533};
534
535static int acpi_populate_gpio_lookup(struct acpi_resource *ares, void *data)
536{
537 struct acpi_gpio_lookup *lookup = data;
538
539 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
540 return 1;
541
542 if (lookup->n++ == lookup->index && !lookup->desc) {
543 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
544 int pin_index = lookup->pin_index;
545
546 if (pin_index >= agpio->pin_table_length)
547 return 1;
548
549 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
550 agpio->pin_table[pin_index]);
551 lookup->info.gpioint =
552 agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
553
554 /*
555 * Polarity and triggering are only specified for GpioInt
556 * resource.
557 * Note: we expect here:
558 * - ACPI_ACTIVE_LOW == GPIO_ACTIVE_LOW
559 * - ACPI_ACTIVE_HIGH == GPIO_ACTIVE_HIGH
560 */
561 if (lookup->info.gpioint) {
562 lookup->info.flags = GPIOD_IN;
563 lookup->info.polarity = agpio->polarity;
564 lookup->info.triggering = agpio->triggering;
565 } else {
566 lookup->info.flags = acpi_gpio_to_gpiod_flags(agpio);
567 lookup->info.polarity = lookup->active_low;
568 }
569 }
570
571 return 1;
572}
573
574static int acpi_gpio_resource_lookup(struct acpi_gpio_lookup *lookup,
575 struct acpi_gpio_info *info)
576{
577 struct acpi_device *adev = lookup->info.adev;
578 struct list_head res_list;
579 int ret;
580
581 INIT_LIST_HEAD(&res_list);
582
583 ret = acpi_dev_get_resources(adev, &res_list,
584 acpi_populate_gpio_lookup,
585 lookup);
586 if (ret < 0)
587 return ret;
588
589 acpi_dev_free_resource_list(&res_list);
590
591 if (!lookup->desc)
592 return -ENOENT;
593
594 if (info)
595 *info = lookup->info;
596 return 0;
597}
598
599static int acpi_gpio_property_lookup(struct fwnode_handle *fwnode,
600 const char *propname, int index,
601 struct acpi_gpio_lookup *lookup)
602{
603 struct fwnode_reference_args args;
604 unsigned int quirks = 0;
605 int ret;
606
607 memset(&args, 0, sizeof(args));
608 ret = __acpi_node_get_property_reference(fwnode, propname, index, 3,
609 &args);
610 if (ret) {
611 struct acpi_device *adev = to_acpi_device_node(fwnode);
612
613 if (!adev)
614 return ret;
615
616 if (!acpi_get_driver_gpio_data(adev, propname, index, &args,
617 &quirks))
618 return ret;
619 }
620 /*
621 * The property was found and resolved, so need to lookup the GPIO based
622 * on returned args.
623 */
624 if (!to_acpi_device_node(args.fwnode))
625 return -EINVAL;
626 if (args.nargs != 3)
627 return -EPROTO;
628
629 lookup->index = args.args[0];
630 lookup->pin_index = args.args[1];
631 lookup->active_low = !!args.args[2];
632
633 lookup->info.adev = to_acpi_device_node(args.fwnode);
634 lookup->info.quirks = quirks;
635
636 return 0;
637}
638
639/**
640 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
641 * @adev: pointer to a ACPI device to get GPIO from
642 * @propname: Property name of the GPIO (optional)
643 * @index: index of GpioIo/GpioInt resource (starting from %0)
644 * @info: info pointer to fill in (optional)
645 *
646 * Function goes through ACPI resources for @adev and based on @index looks
647 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
648 * and returns it. @index matches GpioIo/GpioInt resources only so if there
649 * are total %3 GPIO resources, the index goes from %0 to %2.
650 *
651 * If @propname is specified the GPIO is looked using device property. In
652 * that case @index is used to select the GPIO entry in the property value
653 * (in case of multiple).
654 *
655 * If the GPIO cannot be translated or there is an error an ERR_PTR is
656 * returned.
657 *
658 * Note: if the GPIO resource has multiple entries in the pin list, this
659 * function only returns the first.
660 */
661static struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
662 const char *propname, int index,
663 struct acpi_gpio_info *info)
664{
665 struct acpi_gpio_lookup lookup;
666 int ret;
667
668 if (!adev)
669 return ERR_PTR(-ENODEV);
670
671 memset(&lookup, 0, sizeof(lookup));
672 lookup.index = index;
673
674 if (propname) {
675 dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);
676
677 ret = acpi_gpio_property_lookup(acpi_fwnode_handle(adev),
678 propname, index, &lookup);
679 if (ret)
680 return ERR_PTR(ret);
681
682 dev_dbg(&adev->dev, "GPIO: _DSD returned %s %d %d %u\n",
683 dev_name(&lookup.info.adev->dev), lookup.index,
684 lookup.pin_index, lookup.active_low);
685 } else {
686 dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
687 lookup.info.adev = adev;
688 }
689
690 ret = acpi_gpio_resource_lookup(&lookup, info);
691 return ret ? ERR_PTR(ret) : lookup.desc;
692}
693
694struct gpio_desc *acpi_find_gpio(struct device *dev,
695 const char *con_id,
696 unsigned int idx,
697 enum gpiod_flags *dflags,
698 enum gpio_lookup_flags *lookupflags)
699{
700 struct acpi_device *adev = ACPI_COMPANION(dev);
701 struct acpi_gpio_info info;
702 struct gpio_desc *desc;
703 char propname[32];
704 int i;
705
706 /* Try first from _DSD */
707 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
708 if (con_id) {
709 snprintf(propname, sizeof(propname), "%s-%s",
710 con_id, gpio_suffixes[i]);
711 } else {
712 snprintf(propname, sizeof(propname), "%s",
713 gpio_suffixes[i]);
714 }
715
716 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
717 if (!IS_ERR(desc))
718 break;
719 if (PTR_ERR(desc) == -EPROBE_DEFER)
720 return ERR_CAST(desc);
721 }
722
723 /* Then from plain _CRS GPIOs */
724 if (IS_ERR(desc)) {
725 if (!acpi_can_fallback_to_crs(adev, con_id))
726 return ERR_PTR(-ENOENT);
727
728 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
729 if (IS_ERR(desc))
730 return desc;
731 }
732
733 if (info.gpioint &&
734 (*dflags == GPIOD_OUT_LOW || *dflags == GPIOD_OUT_HIGH)) {
735 dev_dbg(dev, "refusing GpioInt() entry when doing GPIOD_OUT_* lookup\n");
736 return ERR_PTR(-ENOENT);
737 }
738
739 if (info.polarity == GPIO_ACTIVE_LOW)
740 *lookupflags |= GPIO_ACTIVE_LOW;
741
742 acpi_gpio_update_gpiod_flags(dflags, &info);
743 return desc;
744}
745
746/**
747 * acpi_node_get_gpiod() - get a GPIO descriptor from ACPI resources
748 * @fwnode: pointer to an ACPI firmware node to get the GPIO information from
749 * @propname: Property name of the GPIO
750 * @index: index of GpioIo/GpioInt resource (starting from %0)
751 * @info: info pointer to fill in (optional)
752 *
753 * If @fwnode is an ACPI device object, call %acpi_get_gpiod_by_index() for it.
754 * Otherwise (ie. it is a data-only non-device object), use the property-based
755 * GPIO lookup to get to the GPIO resource with the relevant information and use
756 * that to obtain the GPIO descriptor to return.
757 */
758struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
759 const char *propname, int index,
760 struct acpi_gpio_info *info)
761{
762 struct acpi_gpio_lookup lookup;
763 struct acpi_device *adev;
764 int ret;
765
766 adev = to_acpi_device_node(fwnode);
767 if (adev)
768 return acpi_get_gpiod_by_index(adev, propname, index, info);
769
770 if (!is_acpi_data_node(fwnode))
771 return ERR_PTR(-ENODEV);
772
773 if (!propname)
774 return ERR_PTR(-EINVAL);
775
776 memset(&lookup, 0, sizeof(lookup));
777 lookup.index = index;
778
779 ret = acpi_gpio_property_lookup(fwnode, propname, index, &lookup);
780 if (ret)
781 return ERR_PTR(ret);
782
783 ret = acpi_gpio_resource_lookup(&lookup, info);
784 return ret ? ERR_PTR(ret) : lookup.desc;
785}
786
787/**
788 * acpi_dev_gpio_irq_get() - Find GpioInt and translate it to Linux IRQ number
789 * @adev: pointer to a ACPI device to get IRQ from
790 * @index: index of GpioInt resource (starting from %0)
791 *
792 * If the device has one or more GpioInt resources, this function can be
793 * used to translate from the GPIO offset in the resource to the Linux IRQ
794 * number.
795 *
796 * The function is idempotent, though each time it runs it will configure GPIO
797 * pin direction according to the flags in GpioInt resource.
798 *
799 * Return: Linux IRQ number (> %0) on success, negative errno on failure.
800 */
801int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index)
802{
803 int idx, i;
804 unsigned int irq_flags;
805 int ret;
806
807 for (i = 0, idx = 0; idx <= index; i++) {
808 struct acpi_gpio_info info;
809 struct gpio_desc *desc;
810
811 desc = acpi_get_gpiod_by_index(adev, NULL, i, &info);
812
813 /* Ignore -EPROBE_DEFER, it only matters if idx matches */
814 if (IS_ERR(desc) && PTR_ERR(desc) != -EPROBE_DEFER)
815 return PTR_ERR(desc);
816
817 if (info.gpioint && idx++ == index) {
818 char label[32];
819 int irq;
820
821 if (IS_ERR(desc))
822 return PTR_ERR(desc);
823
824 irq = gpiod_to_irq(desc);
825 if (irq < 0)
826 return irq;
827
828 snprintf(label, sizeof(label), "GpioInt() %d", index);
829 ret = gpiod_configure_flags(desc, label, 0, info.flags);
830 if (ret < 0)
831 return ret;
832
833 irq_flags = acpi_dev_get_irq_type(info.triggering,
834 info.polarity);
835
836 /* Set type if specified and different than the current one */
837 if (irq_flags != IRQ_TYPE_NONE &&
838 irq_flags != irq_get_trigger_type(irq))
839 irq_set_irq_type(irq, irq_flags);
840
841 return irq;
842 }
843
844 }
845 return -ENOENT;
846}
847EXPORT_SYMBOL_GPL(acpi_dev_gpio_irq_get);
848
849static acpi_status
850acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
851 u32 bits, u64 *value, void *handler_context,
852 void *region_context)
853{
854 struct acpi_gpio_chip *achip = region_context;
855 struct gpio_chip *chip = achip->chip;
856 struct acpi_resource_gpio *agpio;
857 struct acpi_resource *ares;
858 int pin_index = (int)address;
859 acpi_status status;
860 int length;
861 int i;
862
863 status = acpi_buffer_to_resource(achip->conn_info.connection,
864 achip->conn_info.length, &ares);
865 if (ACPI_FAILURE(status))
866 return status;
867
868 if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
869 ACPI_FREE(ares);
870 return AE_BAD_PARAMETER;
871 }
872
873 agpio = &ares->data.gpio;
874
875 if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
876 function == ACPI_WRITE)) {
877 ACPI_FREE(ares);
878 return AE_BAD_PARAMETER;
879 }
880
881 length = min(agpio->pin_table_length, (u16)(pin_index + bits));
882 for (i = pin_index; i < length; ++i) {
883 int pin = agpio->pin_table[i];
884 struct acpi_gpio_connection *conn;
885 struct gpio_desc *desc;
886 bool found;
887
888 mutex_lock(&achip->conn_lock);
889
890 found = false;
891 list_for_each_entry(conn, &achip->conns, node) {
892 if (conn->pin == pin) {
893 found = true;
894 desc = conn->desc;
895 break;
896 }
897 }
898
899 /*
900 * The same GPIO can be shared between operation region and
901 * event but only if the access here is ACPI_READ. In that
902 * case we "borrow" the event GPIO instead.
903 */
904 if (!found && agpio->sharable == ACPI_SHARED &&
905 function == ACPI_READ) {
906 struct acpi_gpio_event *event;
907
908 list_for_each_entry(event, &achip->events, node) {
909 if (event->pin == pin) {
910 desc = event->desc;
911 found = true;
912 break;
913 }
914 }
915 }
916
917 if (!found) {
918 enum gpiod_flags flags = acpi_gpio_to_gpiod_flags(agpio);
919 const char *label = "ACPI:OpRegion";
920 int err;
921
922 desc = gpiochip_request_own_desc(chip, pin, label);
923 if (IS_ERR(desc)) {
924 status = AE_ERROR;
925 mutex_unlock(&achip->conn_lock);
926 goto out;
927 }
928
929 err = gpiod_configure_flags(desc, label, 0, flags);
930 if (err < 0) {
931 status = AE_NOT_CONFIGURED;
932 gpiochip_free_own_desc(desc);
933 mutex_unlock(&achip->conn_lock);
934 goto out;
935 }
936
937 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
938 if (!conn) {
939 status = AE_NO_MEMORY;
940 gpiochip_free_own_desc(desc);
941 mutex_unlock(&achip->conn_lock);
942 goto out;
943 }
944
945 conn->pin = pin;
946 conn->desc = desc;
947 list_add_tail(&conn->node, &achip->conns);
948 }
949
950 mutex_unlock(&achip->conn_lock);
951
952 if (function == ACPI_WRITE)
953 gpiod_set_raw_value_cansleep(desc,
954 !!((1 << i) & *value));
955 else
956 *value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
957 }
958
959out:
960 ACPI_FREE(ares);
961 return status;
962}
963
964static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
965{
966 struct gpio_chip *chip = achip->chip;
967 acpi_handle handle = ACPI_HANDLE(chip->parent);
968 acpi_status status;
969
970 INIT_LIST_HEAD(&achip->conns);
971 mutex_init(&achip->conn_lock);
972 status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
973 acpi_gpio_adr_space_handler,
974 NULL, achip);
975 if (ACPI_FAILURE(status))
976 dev_err(chip->parent,
977 "Failed to install GPIO OpRegion handler\n");
978}
979
980static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
981{
982 struct gpio_chip *chip = achip->chip;
983 acpi_handle handle = ACPI_HANDLE(chip->parent);
984 struct acpi_gpio_connection *conn, *tmp;
985 acpi_status status;
986
987 status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
988 acpi_gpio_adr_space_handler);
989 if (ACPI_FAILURE(status)) {
990 dev_err(chip->parent,
991 "Failed to remove GPIO OpRegion handler\n");
992 return;
993 }
994
995 list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
996 gpiochip_free_own_desc(conn->desc);
997 list_del(&conn->node);
998 kfree(conn);
999 }
1000}
1001
1002static struct gpio_desc *acpi_gpiochip_parse_own_gpio(
1003 struct acpi_gpio_chip *achip, struct fwnode_handle *fwnode,
1004 const char **name, unsigned int *lflags, unsigned int *dflags)
1005{
1006 struct gpio_chip *chip = achip->chip;
1007 struct gpio_desc *desc;
1008 u32 gpios[2];
1009 int ret;
1010
1011 *lflags = 0;
1012 *dflags = 0;
1013 *name = NULL;
1014
1015 ret = fwnode_property_read_u32_array(fwnode, "gpios", gpios,
1016 ARRAY_SIZE(gpios));
1017 if (ret < 0)
1018 return ERR_PTR(ret);
1019
1020 desc = gpiochip_get_desc(chip, gpios[0]);
1021 if (IS_ERR(desc))
1022 return desc;
1023
1024 if (gpios[1])
1025 *lflags |= GPIO_ACTIVE_LOW;
1026
1027 if (fwnode_property_present(fwnode, "input"))
1028 *dflags |= GPIOD_IN;
1029 else if (fwnode_property_present(fwnode, "output-low"))
1030 *dflags |= GPIOD_OUT_LOW;
1031 else if (fwnode_property_present(fwnode, "output-high"))
1032 *dflags |= GPIOD_OUT_HIGH;
1033 else
1034 return ERR_PTR(-EINVAL);
1035
1036 fwnode_property_read_string(fwnode, "line-name", name);
1037
1038 return desc;
1039}
1040
1041static void acpi_gpiochip_scan_gpios(struct acpi_gpio_chip *achip)
1042{
1043 struct gpio_chip *chip = achip->chip;
1044 struct fwnode_handle *fwnode;
1045
1046 device_for_each_child_node(chip->parent, fwnode) {
1047 unsigned int lflags, dflags;
1048 struct gpio_desc *desc;
1049 const char *name;
1050 int ret;
1051
1052 if (!fwnode_property_present(fwnode, "gpio-hog"))
1053 continue;
1054
1055 desc = acpi_gpiochip_parse_own_gpio(achip, fwnode, &name,
1056 &lflags, &dflags);
1057 if (IS_ERR(desc))
1058 continue;
1059
1060 ret = gpiod_hog(desc, name, lflags, dflags);
1061 if (ret) {
1062 dev_err(chip->parent, "Failed to hog GPIO\n");
1063 fwnode_handle_put(fwnode);
1064 return;
1065 }
1066 }
1067}
1068
1069void acpi_gpiochip_add(struct gpio_chip *chip)
1070{
1071 struct acpi_gpio_chip *acpi_gpio;
1072 acpi_handle handle;
1073 acpi_status status;
1074
1075 if (!chip || !chip->parent)
1076 return;
1077
1078 handle = ACPI_HANDLE(chip->parent);
1079 if (!handle)
1080 return;
1081
1082 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
1083 if (!acpi_gpio) {
1084 dev_err(chip->parent,
1085 "Failed to allocate memory for ACPI GPIO chip\n");
1086 return;
1087 }
1088
1089 acpi_gpio->chip = chip;
1090 INIT_LIST_HEAD(&acpi_gpio->events);
1091 INIT_LIST_HEAD(&acpi_gpio->deferred_req_irqs_list_entry);
1092
1093 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
1094 if (ACPI_FAILURE(status)) {
1095 dev_err(chip->parent, "Failed to attach ACPI GPIO chip\n");
1096 kfree(acpi_gpio);
1097 return;
1098 }
1099
1100 if (!chip->names)
1101 devprop_gpiochip_set_names(chip, dev_fwnode(chip->parent));
1102
1103 acpi_gpiochip_request_regions(acpi_gpio);
1104 acpi_gpiochip_scan_gpios(acpi_gpio);
1105 acpi_walk_dep_device_list(handle);
1106}
1107
1108void acpi_gpiochip_remove(struct gpio_chip *chip)
1109{
1110 struct acpi_gpio_chip *acpi_gpio;
1111 acpi_handle handle;
1112 acpi_status status;
1113
1114 if (!chip || !chip->parent)
1115 return;
1116
1117 handle = ACPI_HANDLE(chip->parent);
1118 if (!handle)
1119 return;
1120
1121 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
1122 if (ACPI_FAILURE(status)) {
1123 dev_warn(chip->parent, "Failed to retrieve ACPI GPIO chip\n");
1124 return;
1125 }
1126
1127 acpi_gpiochip_free_regions(acpi_gpio);
1128
1129 acpi_detach_data(handle, acpi_gpio_chip_dh);
1130 kfree(acpi_gpio);
1131}
1132
1133static int acpi_gpio_package_count(const union acpi_object *obj)
1134{
1135 const union acpi_object *element = obj->package.elements;
1136 const union acpi_object *end = element + obj->package.count;
1137 unsigned int count = 0;
1138
1139 while (element < end) {
1140 switch (element->type) {
1141 case ACPI_TYPE_LOCAL_REFERENCE:
1142 element += 3;
1143 /* Fallthrough */
1144 case ACPI_TYPE_INTEGER:
1145 element++;
1146 count++;
1147 break;
1148
1149 default:
1150 return -EPROTO;
1151 }
1152 }
1153
1154 return count;
1155}
1156
1157static int acpi_find_gpio_count(struct acpi_resource *ares, void *data)
1158{
1159 unsigned int *count = data;
1160
1161 if (ares->type == ACPI_RESOURCE_TYPE_GPIO)
1162 *count += ares->data.gpio.pin_table_length;
1163
1164 return 1;
1165}
1166
1167/**
1168 * acpi_gpio_count - return the number of GPIOs associated with a
1169 * device / function or -ENOENT if no GPIO has been
1170 * assigned to the requested function.
1171 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1172 * @con_id: function within the GPIO consumer
1173 */
1174int acpi_gpio_count(struct device *dev, const char *con_id)
1175{
1176 struct acpi_device *adev = ACPI_COMPANION(dev);
1177 const union acpi_object *obj;
1178 const struct acpi_gpio_mapping *gm;
1179 int count = -ENOENT;
1180 int ret;
1181 char propname[32];
1182 unsigned int i;
1183
1184 /* Try first from _DSD */
1185 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
1186 if (con_id)
1187 snprintf(propname, sizeof(propname), "%s-%s",
1188 con_id, gpio_suffixes[i]);
1189 else
1190 snprintf(propname, sizeof(propname), "%s",
1191 gpio_suffixes[i]);
1192
1193 ret = acpi_dev_get_property(adev, propname, ACPI_TYPE_ANY,
1194 &obj);
1195 if (ret == 0) {
1196 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE)
1197 count = 1;
1198 else if (obj->type == ACPI_TYPE_PACKAGE)
1199 count = acpi_gpio_package_count(obj);
1200 } else if (adev->driver_gpios) {
1201 for (gm = adev->driver_gpios; gm->name; gm++)
1202 if (strcmp(propname, gm->name) == 0) {
1203 count = gm->size;
1204 break;
1205 }
1206 }
1207 if (count > 0)
1208 break;
1209 }
1210
1211 /* Then from plain _CRS GPIOs */
1212 if (count < 0) {
1213 struct list_head resource_list;
1214 unsigned int crs_count = 0;
1215
1216 if (!acpi_can_fallback_to_crs(adev, con_id))
1217 return count;
1218
1219 INIT_LIST_HEAD(&resource_list);
1220 acpi_dev_get_resources(adev, &resource_list,
1221 acpi_find_gpio_count, &crs_count);
1222 acpi_dev_free_resource_list(&resource_list);
1223 if (crs_count > 0)
1224 count = crs_count;
1225 }
1226 return count ? count : -ENOENT;
1227}
1228
1229bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id)
1230{
1231 /* Never allow fallback if the device has properties */
1232 if (adev->data.properties || adev->driver_gpios)
1233 return false;
1234
1235 return con_id == NULL;
1236}
1237
1238/* Run deferred acpi_gpiochip_request_irqs() */
1239static int acpi_gpio_handle_deferred_request_irqs(void)
1240{
1241 struct acpi_gpio_chip *acpi_gpio, *tmp;
1242
1243 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
1244 list_for_each_entry_safe(acpi_gpio, tmp,
1245 &acpi_gpio_deferred_req_irqs_list,
1246 deferred_req_irqs_list_entry)
1247 acpi_gpiochip_request_irqs(acpi_gpio);
1248
1249 acpi_gpio_deferred_req_irqs_done = true;
1250 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
1251
1252 return 0;
1253}
1254/* We must use _sync so that this runs after the first deferred_probe run */
1255late_initcall_sync(acpi_gpio_handle_deferred_request_irqs);