blob: 2b6fdc9947f7de9083303092f8b0e4b15b488da5 [file] [log] [blame]
Linus Walleijdae5f0a2018-09-25 09:08:48 +02001// SPDX-License-Identifier: GPL-2.0
Mathias Nymane29482e2012-11-30 12:37:36 +01002/*
3 * ACPI helpers for GPIO API
4 *
5 * Copyright (C) 2012, Intel Corporation
6 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
7 * Mika Westerberg <mika.westerberg@linux.intel.com>
Mathias Nymane29482e2012-11-30 12:37:36 +01008 */
9
10#include <linux/errno.h>
Mika Westerberg936e15d2013-10-10 11:01:08 +030011#include <linux/gpio/consumer.h>
Mika Westerberg5ccff852014-01-08 12:40:56 +020012#include <linux/gpio/driver.h>
Linus Walleij031ba282016-10-03 10:40:03 +020013#include <linux/gpio/machine.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010014#include <linux/export.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010015#include <linux/acpi.h>
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020016#include <linux/interrupt.h>
Mika Westerberg473ed7b2014-03-14 17:58:07 +020017#include <linux/mutex.h>
Mika Westerberg354567e2014-11-03 13:01:32 +020018#include <linux/pinctrl/pinctrl.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010019
Mika Westerberg5ccff852014-01-08 12:40:56 +020020#include "gpiolib.h"
Andy Shevchenko77cb9072019-07-30 13:43:36 +030021#include "gpiolib-acpi.h"
Mika Westerberg5ccff852014-01-08 12:40:56 +020022
Hans de Goedee59f5e02018-11-28 17:57:55 +010023/**
24 * struct acpi_gpio_event - ACPI GPIO event handler data
25 *
26 * @node: list-entry of the events list of the struct acpi_gpio_chip
27 * @handle: handle of ACPI method to execute when the IRQ triggers
Andy Shevchenko85edcd02019-03-30 00:33:45 +030028 * @handler: handler function to pass to request_irq() when requesting the IRQ
29 * @pin: GPIO pin number on the struct gpio_chip
30 * @irq: Linux IRQ number for the event, for request_irq() / free_irq()
31 * @irqflags: flags to pass to request_irq() when requesting the IRQ
Hans de Goedee59f5e02018-11-28 17:57:55 +010032 * @irq_is_wake: If the ACPI flags indicate the IRQ is a wakeup source
Andy Shevchenko85edcd02019-03-30 00:33:45 +030033 * @irq_requested:True if request_irq() has been done
34 * @desc: struct gpio_desc for the GPIO pin for this event
Hans de Goedee59f5e02018-11-28 17:57:55 +010035 */
Mika Westerberg4b01a142014-03-10 14:54:52 +020036struct acpi_gpio_event {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020037 struct list_head node;
Mika Westerberg4b01a142014-03-10 14:54:52 +020038 acpi_handle handle;
Hans de Goedee59f5e02018-11-28 17:57:55 +010039 irq_handler_t handler;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020040 unsigned int pin;
41 unsigned int irq;
Hans de Goedee59f5e02018-11-28 17:57:55 +010042 unsigned long irqflags;
43 bool irq_is_wake;
44 bool irq_requested;
Alexandre Courbote46cf322014-08-19 10:06:08 -070045 struct gpio_desc *desc;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020046};
47
Mika Westerberg473ed7b2014-03-14 17:58:07 +020048struct acpi_gpio_connection {
49 struct list_head node;
Alexandre Courbote46cf322014-08-19 10:06:08 -070050 unsigned int pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +020051 struct gpio_desc *desc;
52};
53
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020054struct acpi_gpio_chip {
Mika Westerberg473ed7b2014-03-14 17:58:07 +020055 /*
56 * ACPICA requires that the first field of the context parameter
57 * passed to acpi_install_address_space_handler() is large enough
58 * to hold struct acpi_connection_info.
59 */
60 struct acpi_connection_info conn_info;
61 struct list_head conns;
62 struct mutex conn_lock;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020063 struct gpio_chip *chip;
Mika Westerberg4b01a142014-03-10 14:54:52 +020064 struct list_head events;
Hans de Goede78d3a922018-08-14 16:07:03 +020065 struct list_head deferred_req_irqs_list_entry;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020066};
67
Hans de Goede78d3a922018-08-14 16:07:03 +020068/*
Andy Shevchenko85edcd02019-03-30 00:33:45 +030069 * For GPIO chips which call acpi_gpiochip_request_interrupts() before late_init
Hans de Goedee59f5e02018-11-28 17:57:55 +010070 * (so builtin drivers) we register the ACPI GpioInt IRQ handlers from a
Andy Shevchenko85edcd02019-03-30 00:33:45 +030071 * late_initcall_sync() handler, so that other builtin drivers can register their
72 * OpRegions before the event handlers can run. This list contains GPIO chips
Hans de Goedee59f5e02018-11-28 17:57:55 +010073 * for which the acpi_gpiochip_request_irqs() call has been deferred.
Hans de Goede78d3a922018-08-14 16:07:03 +020074 */
75static DEFINE_MUTEX(acpi_gpio_deferred_req_irqs_lock);
76static LIST_HEAD(acpi_gpio_deferred_req_irqs_list);
77static bool acpi_gpio_deferred_req_irqs_done;
Benjamin Tissoiresca876c72018-07-12 17:25:06 +020078
Mathias Nymane29482e2012-11-30 12:37:36 +010079static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
80{
Linus Walleij58383c782015-11-04 09:56:26 +010081 if (!gc->parent)
Mathias Nymane29482e2012-11-30 12:37:36 +010082 return false;
83
Linus Walleij58383c782015-11-04 09:56:26 +010084 return ACPI_HANDLE(gc->parent) == data;
Mathias Nymane29482e2012-11-30 12:37:36 +010085}
86
87/**
Mika Westerberg936e15d2013-10-10 11:01:08 +030088 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
Mathias Nymane29482e2012-11-30 12:37:36 +010089 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
90 * @pin: ACPI GPIO pin number (0-based, controller-relative)
91 *
Mika Westerbergf35bbf62015-06-10 16:05:05 +030092 * Return: GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
93 * error value. Specifically returns %-EPROBE_DEFER if the referenced GPIO
Andy Shevchenko85edcd02019-03-30 00:33:45 +030094 * controller does not have GPIO chip registered at the moment. This is to
Mika Westerbergf35bbf62015-06-10 16:05:05 +030095 * support probe deferral.
Mathias Nymane29482e2012-11-30 12:37:36 +010096 */
Mika Westerberg936e15d2013-10-10 11:01:08 +030097static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
Mathias Nymane29482e2012-11-30 12:37:36 +010098{
99 struct gpio_chip *chip;
100 acpi_handle handle;
101 acpi_status status;
102
103 status = acpi_get_handle(NULL, path, &handle);
104 if (ACPI_FAILURE(status))
Mika Westerberg936e15d2013-10-10 11:01:08 +0300105 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +0100106
107 chip = gpiochip_find(handle, acpi_gpiochip_find);
108 if (!chip)
Mika Westerbergf35bbf62015-06-10 16:05:05 +0300109 return ERR_PTR(-EPROBE_DEFER);
Mathias Nymane29482e2012-11-30 12:37:36 +0100110
Mika Westerberg03c47492017-11-27 16:54:42 +0300111 return gpiochip_get_desc(chip, pin);
Mathias Nymane29482e2012-11-30 12:37:36 +0100112}
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200113
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200114static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
115{
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200116 struct acpi_gpio_event *event = data;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200117
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200118 acpi_evaluate_object(event->handle, NULL, NULL, NULL);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200119
120 return IRQ_HANDLED;
121}
122
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200123static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
124{
Mika Westerberg4b01a142014-03-10 14:54:52 +0200125 struct acpi_gpio_event *event = data;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200126
Mika Westerberg4b01a142014-03-10 14:54:52 +0200127 acpi_execute_simple_method(event->handle, NULL, event->pin);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200128
129 return IRQ_HANDLED;
130}
131
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200132static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200133{
134 /* The address of this function is used as a key. */
135}
136
Andy Shevchenko25e3ef82017-05-23 20:03:24 +0300137bool acpi_gpio_get_irq_resource(struct acpi_resource *ares,
138 struct acpi_resource_gpio **agpio)
139{
140 struct acpi_resource_gpio *gpio;
141
142 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
143 return false;
144
145 gpio = &ares->data.gpio;
146 if (gpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
147 return false;
148
149 *agpio = gpio;
150 return true;
151}
152EXPORT_SYMBOL_GPL(acpi_gpio_get_irq_resource);
153
Hans de Goedee59f5e02018-11-28 17:57:55 +0100154static void acpi_gpiochip_request_irq(struct acpi_gpio_chip *acpi_gpio,
155 struct acpi_gpio_event *event)
156{
157 int ret, value;
158
159 ret = request_threaded_irq(event->irq, NULL, event->handler,
160 event->irqflags, "ACPI:Event", event);
161 if (ret) {
162 dev_err(acpi_gpio->chip->parent,
163 "Failed to setup interrupt handler for %d\n",
164 event->irq);
165 return;
166 }
167
168 if (event->irq_is_wake)
169 enable_irq_wake(event->irq);
170
171 event->irq_requested = true;
172
173 /* Make sure we trigger the initial state of edge-triggered IRQs */
174 value = gpiod_get_raw_value_cansleep(event->desc);
175 if (((event->irqflags & IRQF_TRIGGER_RISING) && value == 1) ||
176 ((event->irqflags & IRQF_TRIGGER_FALLING) && value == 0))
177 event->handler(event->irq, event);
178}
179
180static void acpi_gpiochip_request_irqs(struct acpi_gpio_chip *acpi_gpio)
181{
182 struct acpi_gpio_event *event;
183
184 list_for_each_entry(event, &acpi_gpio->events, node)
185 acpi_gpiochip_request_irq(acpi_gpio, event);
186}
187
188static acpi_status acpi_gpiochip_alloc_event(struct acpi_resource *ares,
189 void *context)
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200190{
191 struct acpi_gpio_chip *acpi_gpio = context;
192 struct gpio_chip *chip = acpi_gpio->chip;
193 struct acpi_resource_gpio *agpio;
194 acpi_handle handle, evt_handle;
195 struct acpi_gpio_event *event;
196 irq_handler_t handler = NULL;
197 struct gpio_desc *desc;
Hans de Goedee59f5e02018-11-28 17:57:55 +0100198 int ret, pin, irq;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200199
Andy Shevchenko25e3ef82017-05-23 20:03:24 +0300200 if (!acpi_gpio_get_irq_resource(ares, &agpio))
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200201 return AE_OK;
202
Linus Walleij58383c782015-11-04 09:56:26 +0100203 handle = ACPI_HANDLE(chip->parent);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200204 pin = agpio->pin_table[0];
205
206 if (pin <= 255) {
207 char ev_name[5];
Arnd Bergmanne40a3ae2017-09-06 17:47:45 +0200208 sprintf(ev_name, "_%c%02hhX",
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200209 agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
210 pin);
211 if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
212 handler = acpi_gpio_irq_handler;
213 }
214 if (!handler) {
215 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
216 handler = acpi_gpio_irq_handler_evt;
217 }
218 if (!handler)
Hans de Goedec06632e2017-06-23 09:26:13 +0200219 return AE_OK;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200220
Linus Walleij5923ea62019-04-26 14:40:18 +0200221 desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event",
222 GPIO_ACTIVE_HIGH, GPIOD_IN);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200223 if (IS_ERR(desc)) {
Linus Walleij58383c782015-11-04 09:56:26 +0100224 dev_err(chip->parent, "Failed to request GPIO\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200225 return AE_ERROR;
226 }
227
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900228 ret = gpiochip_lock_as_irq(chip, pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200229 if (ret) {
Linus Walleij58383c782015-11-04 09:56:26 +0100230 dev_err(chip->parent, "Failed to lock GPIO as interrupt\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200231 goto fail_free_desc;
232 }
233
234 irq = gpiod_to_irq(desc);
235 if (irq < 0) {
Linus Walleij58383c782015-11-04 09:56:26 +0100236 dev_err(chip->parent, "Failed to translate GPIO to IRQ\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200237 goto fail_unlock_irq;
238 }
239
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200240 event = kzalloc(sizeof(*event), GFP_KERNEL);
241 if (!event)
242 goto fail_unlock_irq;
243
Hans de Goedee59f5e02018-11-28 17:57:55 +0100244 event->irqflags = IRQF_ONESHOT;
245 if (agpio->triggering == ACPI_LEVEL_SENSITIVE) {
246 if (agpio->polarity == ACPI_ACTIVE_HIGH)
247 event->irqflags |= IRQF_TRIGGER_HIGH;
248 else
249 event->irqflags |= IRQF_TRIGGER_LOW;
250 } else {
251 switch (agpio->polarity) {
252 case ACPI_ACTIVE_HIGH:
253 event->irqflags |= IRQF_TRIGGER_RISING;
254 break;
255 case ACPI_ACTIVE_LOW:
256 event->irqflags |= IRQF_TRIGGER_FALLING;
257 break;
258 default:
259 event->irqflags |= IRQF_TRIGGER_RISING |
260 IRQF_TRIGGER_FALLING;
261 break;
262 }
263 }
264
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200265 event->handle = evt_handle;
Hans de Goedee59f5e02018-11-28 17:57:55 +0100266 event->handler = handler;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200267 event->irq = irq;
Hans de Goedee59f5e02018-11-28 17:57:55 +0100268 event->irq_is_wake = agpio->wake_capable == ACPI_WAKE_CAPABLE;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200269 event->pin = pin;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700270 event->desc = desc;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200271
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200272 list_add_tail(&event->node, &acpi_gpio->events);
Benjamin Tissoiresca876c72018-07-12 17:25:06 +0200273
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200274 return AE_OK;
275
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200276fail_unlock_irq:
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900277 gpiochip_unlock_as_irq(chip, pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200278fail_free_desc:
279 gpiochip_free_own_desc(desc);
280
281 return AE_ERROR;
282}
283
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200284/**
285 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300286 * @chip: GPIO chip
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200287 *
288 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
289 * handled by ACPI event methods which need to be called from the GPIO
Andy Shevchenko85edcd02019-03-30 00:33:45 +0300290 * chip's interrupt handler. acpi_gpiochip_request_interrupts() finds out which
291 * GPIO pins have ACPI event methods and assigns interrupt handlers that calls
292 * the ACPI event methods for those pins.
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200293 */
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300294void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200295{
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300296 struct acpi_gpio_chip *acpi_gpio;
297 acpi_handle handle;
298 acpi_status status;
Hans de Goede78d3a922018-08-14 16:07:03 +0200299 bool defer;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200300
Linus Walleij58383c782015-11-04 09:56:26 +0100301 if (!chip->parent || !chip->to_irq)
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300302 return;
303
Linus Walleij58383c782015-11-04 09:56:26 +0100304 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300305 if (!handle)
306 return;
307
308 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
309 if (ACPI_FAILURE(status))
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200310 return;
311
Hans de Goedee59f5e02018-11-28 17:57:55 +0100312 acpi_walk_resources(handle, "_AEI",
313 acpi_gpiochip_alloc_event, acpi_gpio);
314
Hans de Goede78d3a922018-08-14 16:07:03 +0200315 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
316 defer = !acpi_gpio_deferred_req_irqs_done;
317 if (defer)
318 list_add(&acpi_gpio->deferred_req_irqs_list_entry,
319 &acpi_gpio_deferred_req_irqs_list);
320 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
321
322 if (defer)
323 return;
324
Hans de Goedee59f5e02018-11-28 17:57:55 +0100325 acpi_gpiochip_request_irqs(acpi_gpio);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200326}
Hanjun Guo2b528ff2015-06-10 17:12:07 +0800327EXPORT_SYMBOL_GPL(acpi_gpiochip_request_interrupts);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200328
Mika Westerberg70b534112013-10-10 11:01:07 +0300329/**
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200330 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300331 * @chip: GPIO chip
Mika Westerberg70b534112013-10-10 11:01:07 +0300332 *
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200333 * Free interrupts associated with GPIO ACPI event method for the given
334 * GPIO chip.
Mika Westerberg70b534112013-10-10 11:01:07 +0300335 */
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300336void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
Mika Westerberg70b534112013-10-10 11:01:07 +0300337{
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300338 struct acpi_gpio_chip *acpi_gpio;
Mika Westerberg4b01a142014-03-10 14:54:52 +0200339 struct acpi_gpio_event *event, *ep;
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300340 acpi_handle handle;
341 acpi_status status;
Mika Westerberg70b534112013-10-10 11:01:07 +0300342
Linus Walleij58383c782015-11-04 09:56:26 +0100343 if (!chip->parent || !chip->to_irq)
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300344 return;
345
Linus Walleij58383c782015-11-04 09:56:26 +0100346 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300347 if (!handle)
348 return;
349
350 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
351 if (ACPI_FAILURE(status))
Mika Westerberg70b534112013-10-10 11:01:07 +0300352 return;
353
Hans de Goede78d3a922018-08-14 16:07:03 +0200354 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
355 if (!list_empty(&acpi_gpio->deferred_req_irqs_list_entry))
356 list_del_init(&acpi_gpio->deferred_req_irqs_list_entry);
357 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
358
Mika Westerberg4b01a142014-03-10 14:54:52 +0200359 list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
Hans de Goedee59f5e02018-11-28 17:57:55 +0100360 if (event->irq_requested) {
361 if (event->irq_is_wake)
362 disable_irq_wake(event->irq);
Hans de Goede8a146fb2017-03-24 11:08:47 +0100363
Hans de Goedee59f5e02018-11-28 17:57:55 +0100364 free_irq(event->irq, event);
365 }
366
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900367 gpiochip_unlock_as_irq(chip, event->pin);
Hans de Goede86252322018-11-28 17:57:56 +0100368 gpiochip_free_own_desc(event->desc);
Mika Westerberg4b01a142014-03-10 14:54:52 +0200369 list_del(&event->node);
370 kfree(event);
Mika Westerberg70b534112013-10-10 11:01:07 +0300371 }
Mika Westerberg70b534112013-10-10 11:01:07 +0300372}
Hanjun Guo2b528ff2015-06-10 17:12:07 +0800373EXPORT_SYMBOL_GPL(acpi_gpiochip_free_interrupts);
Mika Westerberg70b534112013-10-10 11:01:07 +0300374
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100375int acpi_dev_add_driver_gpios(struct acpi_device *adev,
376 const struct acpi_gpio_mapping *gpios)
377{
378 if (adev && gpios) {
379 adev->driver_gpios = gpios;
380 return 0;
381 }
382 return -EINVAL;
383}
384EXPORT_SYMBOL_GPL(acpi_dev_add_driver_gpios);
385
Andy Shevchenko2838bf92019-07-30 13:43:37 +0300386void acpi_dev_remove_driver_gpios(struct acpi_device *adev)
387{
388 if (adev)
389 adev->driver_gpios = NULL;
390}
391EXPORT_SYMBOL_GPL(acpi_dev_remove_driver_gpios);
392
Andy Shevchenko85c73d52017-03-02 15:48:05 +0200393static void devm_acpi_dev_release_driver_gpios(struct device *dev, void *res)
394{
395 acpi_dev_remove_driver_gpios(ACPI_COMPANION(dev));
396}
397
398int devm_acpi_dev_add_driver_gpios(struct device *dev,
399 const struct acpi_gpio_mapping *gpios)
400{
401 void *res;
402 int ret;
403
404 res = devres_alloc(devm_acpi_dev_release_driver_gpios, 0, GFP_KERNEL);
405 if (!res)
406 return -ENOMEM;
407
408 ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(dev), gpios);
409 if (ret) {
410 devres_free(res);
411 return ret;
412 }
413 devres_add(dev, res);
414 return 0;
415}
416EXPORT_SYMBOL_GPL(devm_acpi_dev_add_driver_gpios);
417
418void devm_acpi_dev_remove_driver_gpios(struct device *dev)
419{
420 WARN_ON(devres_release(dev, devm_acpi_dev_release_driver_gpios, NULL, NULL));
421}
422EXPORT_SYMBOL_GPL(devm_acpi_dev_remove_driver_gpios);
423
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100424static bool acpi_get_driver_gpio_data(struct acpi_device *adev,
425 const char *name, int index,
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300426 struct fwnode_reference_args *args,
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200427 unsigned int *quirks)
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100428{
429 const struct acpi_gpio_mapping *gm;
430
431 if (!adev->driver_gpios)
432 return false;
433
434 for (gm = adev->driver_gpios; gm->name; gm++)
435 if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
436 const struct acpi_gpio_params *par = gm->data + index;
437
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300438 args->fwnode = acpi_fwnode_handle(adev);
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100439 args->args[0] = par->crs_entry_index;
440 args->args[1] = par->line_index;
441 args->args[2] = par->active_low;
442 args->nargs = 3;
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200443
444 *quirks = gm->quirks;
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100445 return true;
446 }
447
448 return false;
449}
450
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300451static enum gpiod_flags
452acpi_gpio_to_gpiod_flags(const struct acpi_resource_gpio *agpio)
453{
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300454 switch (agpio->io_restriction) {
455 case ACPI_IO_RESTRICT_INPUT:
456 return GPIOD_IN;
457 case ACPI_IO_RESTRICT_OUTPUT:
458 /*
459 * ACPI GPIO resources don't contain an initial value for the
460 * GPIO. Therefore we deduce that value from the pull field
461 * instead. If the pin is pulled up we assume default to be
Andy Shevchenko24a49542019-04-10 18:39:19 +0300462 * high, if it is pulled down we assume default to be low,
463 * otherwise we leave pin untouched.
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300464 */
Andy Shevchenko24a49542019-04-10 18:39:19 +0300465 switch (agpio->pin_config) {
466 case ACPI_PIN_CONFIG_PULLUP:
467 return GPIOD_OUT_HIGH;
468 case ACPI_PIN_CONFIG_PULLDOWN:
469 return GPIOD_OUT_LOW;
470 default:
471 break;
472 }
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300473 default:
Andy Shevchenko24a49542019-04-10 18:39:19 +0300474 break;
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300475 }
Andy Shevchenko24a49542019-04-10 18:39:19 +0300476
477 /*
478 * Assume that the BIOS has configured the direction and pull
479 * accordingly.
480 */
481 return GPIOD_ASIS;
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300482}
483
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200484static int
485__acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, enum gpiod_flags update)
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300486{
Hans de Goede72893f02018-12-31 21:55:21 +0100487 const enum gpiod_flags mask =
488 GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT |
489 GPIOD_FLAGS_BIT_DIR_VAL;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300490 int ret = 0;
491
492 /*
493 * Check if the BIOS has IoRestriction with explicitly set direction
494 * and update @flags accordingly. Otherwise use whatever caller asked
495 * for.
496 */
497 if (update & GPIOD_FLAGS_BIT_DIR_SET) {
498 enum gpiod_flags diff = *flags ^ update;
499
500 /*
501 * Check if caller supplied incompatible GPIO initialization
502 * flags.
503 *
504 * Return %-EINVAL to notify that firmware has different
505 * settings and we are going to use them.
506 */
507 if (((*flags & GPIOD_FLAGS_BIT_DIR_SET) && (diff & GPIOD_FLAGS_BIT_DIR_OUT)) ||
508 ((*flags & GPIOD_FLAGS_BIT_DIR_OUT) && (diff & GPIOD_FLAGS_BIT_DIR_VAL)))
509 ret = -EINVAL;
Hans de Goede72893f02018-12-31 21:55:21 +0100510 *flags = (*flags & ~mask) | (update & mask);
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300511 }
512 return ret;
513}
514
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200515int
516acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, struct acpi_gpio_info *info)
517{
518 struct device *dev = &info->adev->dev;
Andy Shevchenko1b2ca322017-11-10 15:40:33 +0200519 enum gpiod_flags old = *flags;
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200520 int ret;
521
Andy Shevchenko1b2ca322017-11-10 15:40:33 +0200522 ret = __acpi_gpio_update_gpiod_flags(&old, info->flags);
523 if (info->quirks & ACPI_GPIO_QUIRK_NO_IO_RESTRICTION) {
524 if (ret)
525 dev_warn(dev, FW_BUG "GPIO not in correct mode, fixing\n");
526 } else {
527 if (ret)
528 dev_dbg(dev, "Override GPIO initialization flags\n");
529 *flags = old;
530 }
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200531
532 return ret;
533}
534
Andy Shevchenko606be342019-04-10 18:39:20 +0300535int acpi_gpio_update_gpiod_lookup_flags(unsigned long *lookupflags,
536 struct acpi_gpio_info *info)
537{
Andy Shevchenko2d3b6db2019-04-10 18:39:21 +0300538 switch (info->pin_config) {
539 case ACPI_PIN_CONFIG_PULLUP:
540 *lookupflags |= GPIO_PULL_UP;
541 break;
542 case ACPI_PIN_CONFIG_PULLDOWN:
543 *lookupflags |= GPIO_PULL_DOWN;
544 break;
545 default:
546 break;
547 }
548
Andy Shevchenko606be342019-04-10 18:39:20 +0300549 if (info->polarity == GPIO_ACTIVE_LOW)
550 *lookupflags |= GPIO_ACTIVE_LOW;
551
552 return 0;
553}
554
Mika Westerberg12028d22013-04-03 13:56:54 +0300555struct acpi_gpio_lookup {
556 struct acpi_gpio_info info;
557 int index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100558 int pin_index;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200559 bool active_low;
Mika Westerberg936e15d2013-10-10 11:01:08 +0300560 struct gpio_desc *desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300561 int n;
562};
563
Linus Walleij031ba282016-10-03 10:40:03 +0200564static int acpi_populate_gpio_lookup(struct acpi_resource *ares, void *data)
Mika Westerberg12028d22013-04-03 13:56:54 +0300565{
566 struct acpi_gpio_lookup *lookup = data;
567
568 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
569 return 1;
570
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200571 if (!lookup->desc) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300572 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200573 bool gpioint = agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
574 int pin_index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100575
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200576 if (lookup->info.quirks & ACPI_GPIO_QUIRK_ONLY_GPIOIO && gpioint)
577 lookup->index++;
578
579 if (lookup->n++ != lookup->index)
580 return 1;
581
582 pin_index = lookup->pin_index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100583 if (pin_index >= agpio->pin_table_length)
584 return 1;
Mika Westerberg12028d22013-04-03 13:56:54 +0300585
Mika Westerberg936e15d2013-10-10 11:01:08 +0300586 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100587 agpio->pin_table[pin_index]);
Andy Shevchenko2d3b6db2019-04-10 18:39:21 +0300588 lookup->info.pin_config = agpio->pin_config;
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200589 lookup->info.gpioint = gpioint;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100590
591 /*
Andy Shevchenkoe567c352017-01-03 19:01:18 +0200592 * Polarity and triggering are only specified for GpioInt
593 * resource.
Christophe RICARD52044722015-12-23 23:25:34 +0100594 * Note: we expect here:
595 * - ACPI_ACTIVE_LOW == GPIO_ACTIVE_LOW
596 * - ACPI_ACTIVE_HIGH == GPIO_ACTIVE_HIGH
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100597 */
Christophe RICARD52044722015-12-23 23:25:34 +0100598 if (lookup->info.gpioint) {
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300599 lookup->info.flags = GPIOD_IN;
Christophe RICARD52044722015-12-23 23:25:34 +0100600 lookup->info.polarity = agpio->polarity;
601 lookup->info.triggering = agpio->triggering;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300602 } else {
603 lookup->info.flags = acpi_gpio_to_gpiod_flags(agpio);
Andy Shevchenkof67a6c12017-11-10 15:40:28 +0200604 lookup->info.polarity = lookup->active_low;
Christophe RICARD52044722015-12-23 23:25:34 +0100605 }
Mika Westerberg12028d22013-04-03 13:56:54 +0300606 }
607
608 return 1;
609}
610
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200611static int acpi_gpio_resource_lookup(struct acpi_gpio_lookup *lookup,
612 struct acpi_gpio_info *info)
613{
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200614 struct acpi_device *adev = lookup->info.adev;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200615 struct list_head res_list;
616 int ret;
617
618 INIT_LIST_HEAD(&res_list);
619
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200620 ret = acpi_dev_get_resources(adev, &res_list,
Linus Walleij031ba282016-10-03 10:40:03 +0200621 acpi_populate_gpio_lookup,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200622 lookup);
623 if (ret < 0)
624 return ret;
625
626 acpi_dev_free_resource_list(&res_list);
627
628 if (!lookup->desc)
629 return -ENOENT;
630
Andy Shevchenkof67a6c12017-11-10 15:40:28 +0200631 if (info)
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200632 *info = lookup->info;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200633 return 0;
634}
635
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200636static int acpi_gpio_property_lookup(struct fwnode_handle *fwnode,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200637 const char *propname, int index,
638 struct acpi_gpio_lookup *lookup)
639{
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300640 struct fwnode_reference_args args;
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200641 unsigned int quirks = 0;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200642 int ret;
643
644 memset(&args, 0, sizeof(args));
Mika Westerberg6f7194a2016-10-21 17:21:29 +0300645 ret = __acpi_node_get_property_reference(fwnode, propname, index, 3,
646 &args);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200647 if (ret) {
648 struct acpi_device *adev = to_acpi_device_node(fwnode);
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200649
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200650 if (!adev)
651 return ret;
652
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200653 if (!acpi_get_driver_gpio_data(adev, propname, index, &args,
654 &quirks))
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200655 return ret;
656 }
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200657 /*
658 * The property was found and resolved, so need to lookup the GPIO based
659 * on returned args.
660 */
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300661 if (!to_acpi_device_node(args.fwnode))
662 return -EINVAL;
Mika Westerberg6f7194a2016-10-21 17:21:29 +0300663 if (args.nargs != 3)
664 return -EPROTO;
665
666 lookup->index = args.args[0];
667 lookup->pin_index = args.args[1];
668 lookup->active_low = !!args.args[2];
669
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300670 lookup->info.adev = to_acpi_device_node(args.fwnode);
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200671 lookup->info.quirks = quirks;
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300672
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200673 return 0;
674}
675
Mika Westerberg12028d22013-04-03 13:56:54 +0300676/**
Mika Westerberg936e15d2013-10-10 11:01:08 +0300677 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100678 * @adev: pointer to a ACPI device to get GPIO from
679 * @propname: Property name of the GPIO (optional)
Mika Westerberg12028d22013-04-03 13:56:54 +0300680 * @index: index of GpioIo/GpioInt resource (starting from %0)
681 * @info: info pointer to fill in (optional)
682 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100683 * Function goes through ACPI resources for @adev and based on @index looks
Mika Westerberg936e15d2013-10-10 11:01:08 +0300684 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
Mika Westerberg12028d22013-04-03 13:56:54 +0300685 * and returns it. @index matches GpioIo/GpioInt resources only so if there
686 * are total %3 GPIO resources, the index goes from %0 to %2.
687 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100688 * If @propname is specified the GPIO is looked using device property. In
689 * that case @index is used to select the GPIO entry in the property value
690 * (in case of multiple).
691 *
Andy Shevchenko85edcd02019-03-30 00:33:45 +0300692 * If the GPIO cannot be translated or there is an error, an ERR_PTR is
Mika Westerberg12028d22013-04-03 13:56:54 +0300693 * returned.
694 *
695 * Note: if the GPIO resource has multiple entries in the pin list, this
696 * function only returns the first.
697 */
Linus Walleij031ba282016-10-03 10:40:03 +0200698static struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100699 const char *propname, int index,
Mika Westerberg936e15d2013-10-10 11:01:08 +0300700 struct acpi_gpio_info *info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300701{
702 struct acpi_gpio_lookup lookup;
Mika Westerberg12028d22013-04-03 13:56:54 +0300703 int ret;
704
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100705 if (!adev)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300706 return ERR_PTR(-ENODEV);
Mika Westerberg12028d22013-04-03 13:56:54 +0300707
708 memset(&lookup, 0, sizeof(lookup));
709 lookup.index = index;
Mika Westerberg12028d22013-04-03 13:56:54 +0300710
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100711 if (propname) {
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100712 dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);
713
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200714 ret = acpi_gpio_property_lookup(acpi_fwnode_handle(adev),
715 propname, index, &lookup);
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200716 if (ret)
717 return ERR_PTR(ret);
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100718
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200719 dev_dbg(&adev->dev, "GPIO: _DSD returned %s %d %d %u\n",
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200720 dev_name(&lookup.info.adev->dev), lookup.index,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200721 lookup.pin_index, lookup.active_low);
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100722 } else {
723 dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200724 lookup.info.adev = adev;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100725 }
726
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200727 ret = acpi_gpio_resource_lookup(&lookup, info);
728 return ret ? ERR_PTR(ret) : lookup.desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300729}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200730
Dmitry Torokhov4f78d912019-09-04 10:26:24 -0700731static bool acpi_can_fallback_to_crs(struct acpi_device *adev,
732 const char *con_id)
733{
734 /* Never allow fallback if the device has properties */
735 if (acpi_dev_has_props(adev) || adev->driver_gpios)
736 return false;
737
738 return con_id == NULL;
739}
740
Linus Walleij031ba282016-10-03 10:40:03 +0200741struct gpio_desc *acpi_find_gpio(struct device *dev,
742 const char *con_id,
743 unsigned int idx,
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300744 enum gpiod_flags *dflags,
Andy Shevchenkofed70262019-04-10 18:39:16 +0300745 unsigned long *lookupflags)
Linus Walleij031ba282016-10-03 10:40:03 +0200746{
747 struct acpi_device *adev = ACPI_COMPANION(dev);
748 struct acpi_gpio_info info;
749 struct gpio_desc *desc;
750 char propname[32];
751 int i;
752
753 /* Try first from _DSD */
754 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Andy Shevchenko9e665042017-05-23 20:03:17 +0300755 if (con_id) {
Linus Walleij031ba282016-10-03 10:40:03 +0200756 snprintf(propname, sizeof(propname), "%s-%s",
757 con_id, gpio_suffixes[i]);
758 } else {
759 snprintf(propname, sizeof(propname), "%s",
760 gpio_suffixes[i]);
761 }
762
763 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
Dmitry Torokhov693bdaa2017-03-23 13:21:38 -0700764 if (!IS_ERR(desc))
Linus Walleij031ba282016-10-03 10:40:03 +0200765 break;
Dmitry Torokhov693bdaa2017-03-23 13:21:38 -0700766 if (PTR_ERR(desc) == -EPROBE_DEFER)
767 return ERR_CAST(desc);
Linus Walleij031ba282016-10-03 10:40:03 +0200768 }
769
770 /* Then from plain _CRS GPIOs */
771 if (IS_ERR(desc)) {
772 if (!acpi_can_fallback_to_crs(adev, con_id))
773 return ERR_PTR(-ENOENT);
774
775 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
776 if (IS_ERR(desc))
777 return desc;
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300778 }
Linus Walleij031ba282016-10-03 10:40:03 +0200779
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300780 if (info.gpioint &&
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300781 (*dflags == GPIOD_OUT_LOW || *dflags == GPIOD_OUT_HIGH)) {
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300782 dev_dbg(dev, "refusing GpioInt() entry when doing GPIOD_OUT_* lookup\n");
783 return ERR_PTR(-ENOENT);
Linus Walleij031ba282016-10-03 10:40:03 +0200784 }
785
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200786 acpi_gpio_update_gpiod_flags(dflags, &info);
Andy Shevchenko606be342019-04-10 18:39:20 +0300787 acpi_gpio_update_gpiod_lookup_flags(lookupflags, &info);
Linus Walleij031ba282016-10-03 10:40:03 +0200788 return desc;
789}
790
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300791/**
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200792 * acpi_node_get_gpiod() - get a GPIO descriptor from ACPI resources
793 * @fwnode: pointer to an ACPI firmware node to get the GPIO information from
794 * @propname: Property name of the GPIO
795 * @index: index of GpioIo/GpioInt resource (starting from %0)
796 * @info: info pointer to fill in (optional)
797 *
Andy Shevchenko85edcd02019-03-30 00:33:45 +0300798 * If @fwnode is an ACPI device object, call acpi_get_gpiod_by_index() for it.
799 * Otherwise (i.e. it is a data-only non-device object), use the property-based
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200800 * GPIO lookup to get to the GPIO resource with the relevant information and use
801 * that to obtain the GPIO descriptor to return.
Andy Shevchenko85edcd02019-03-30 00:33:45 +0300802 *
803 * If the GPIO cannot be translated or there is an error an ERR_PTR is
804 * returned.
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200805 */
806struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
807 const char *propname, int index,
808 struct acpi_gpio_info *info)
809{
810 struct acpi_gpio_lookup lookup;
811 struct acpi_device *adev;
812 int ret;
813
814 adev = to_acpi_device_node(fwnode);
815 if (adev)
816 return acpi_get_gpiod_by_index(adev, propname, index, info);
817
818 if (!is_acpi_data_node(fwnode))
819 return ERR_PTR(-ENODEV);
820
821 if (!propname)
822 return ERR_PTR(-EINVAL);
823
824 memset(&lookup, 0, sizeof(lookup));
825 lookup.index = index;
826
827 ret = acpi_gpio_property_lookup(fwnode, propname, index, &lookup);
828 if (ret)
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200829 return ERR_PTR(ret);
830
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200831 ret = acpi_gpio_resource_lookup(&lookup, info);
832 return ret ? ERR_PTR(ret) : lookup.desc;
Mika Westerberg664e3e52014-01-08 12:40:54 +0200833}
834
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300835/**
836 * acpi_dev_gpio_irq_get() - Find GpioInt and translate it to Linux IRQ number
837 * @adev: pointer to a ACPI device to get IRQ from
838 * @index: index of GpioInt resource (starting from %0)
839 *
840 * If the device has one or more GpioInt resources, this function can be
841 * used to translate from the GPIO offset in the resource to the Linux IRQ
842 * number.
843 *
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300844 * The function is idempotent, though each time it runs it will configure GPIO
845 * pin direction according to the flags in GpioInt resource.
846 *
Thierry Redingdb05c7e2017-07-24 16:57:25 +0200847 * Return: Linux IRQ number (> %0) on success, negative errno on failure.
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300848 */
849int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index)
850{
851 int idx, i;
Christophe RICARD52044722015-12-23 23:25:34 +0100852 unsigned int irq_flags;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300853 int ret;
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300854
855 for (i = 0, idx = 0; idx <= index; i++) {
856 struct acpi_gpio_info info;
857 struct gpio_desc *desc;
858
859 desc = acpi_get_gpiod_by_index(adev, NULL, i, &info);
Christophe RICARD52044722015-12-23 23:25:34 +0100860
Hans de Goede6798d722017-03-13 23:04:21 +0100861 /* Ignore -EPROBE_DEFER, it only matters if idx matches */
862 if (IS_ERR(desc) && PTR_ERR(desc) != -EPROBE_DEFER)
863 return PTR_ERR(desc);
864
865 if (info.gpioint && idx++ == index) {
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +0300866 unsigned long lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300867 char label[32];
Hans de Goede6798d722017-03-13 23:04:21 +0100868 int irq;
869
870 if (IS_ERR(desc))
871 return PTR_ERR(desc);
872
873 irq = gpiod_to_irq(desc);
Christophe RICARD52044722015-12-23 23:25:34 +0100874 if (irq < 0)
875 return irq;
876
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300877 snprintf(label, sizeof(label), "GpioInt() %d", index);
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +0300878 ret = gpiod_configure_flags(desc, label, lflags, info.flags);
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300879 if (ret < 0)
880 return ret;
881
Christophe RICARD52044722015-12-23 23:25:34 +0100882 irq_flags = acpi_dev_get_irq_type(info.triggering,
883 info.polarity);
884
885 /* Set type if specified and different than the current one */
886 if (irq_flags != IRQ_TYPE_NONE &&
887 irq_flags != irq_get_trigger_type(irq))
888 irq_set_irq_type(irq, irq_flags);
889
890 return irq;
891 }
892
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300893 }
Hans de Goede6798d722017-03-13 23:04:21 +0100894 return -ENOENT;
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300895}
896EXPORT_SYMBOL_GPL(acpi_dev_gpio_irq_get);
897
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200898static acpi_status
899acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
900 u32 bits, u64 *value, void *handler_context,
901 void *region_context)
902{
903 struct acpi_gpio_chip *achip = region_context;
904 struct gpio_chip *chip = achip->chip;
905 struct acpi_resource_gpio *agpio;
906 struct acpi_resource *ares;
907 int pin_index = (int)address;
908 acpi_status status;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200909 int length;
910 int i;
911
912 status = acpi_buffer_to_resource(achip->conn_info.connection,
913 achip->conn_info.length, &ares);
914 if (ACPI_FAILURE(status))
915 return status;
916
917 if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
918 ACPI_FREE(ares);
919 return AE_BAD_PARAMETER;
920 }
921
922 agpio = &ares->data.gpio;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200923
924 if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
925 function == ACPI_WRITE)) {
926 ACPI_FREE(ares);
927 return AE_BAD_PARAMETER;
928 }
929
930 length = min(agpio->pin_table_length, (u16)(pin_index + bits));
931 for (i = pin_index; i < length; ++i) {
Qipeng Zhaa4811622015-04-10 06:25:10 +0800932 int pin = agpio->pin_table[i];
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200933 struct acpi_gpio_connection *conn;
934 struct gpio_desc *desc;
935 bool found;
936
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200937 mutex_lock(&achip->conn_lock);
938
939 found = false;
940 list_for_each_entry(conn, &achip->conns, node) {
Alexandre Courbote46cf322014-08-19 10:06:08 -0700941 if (conn->pin == pin) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200942 found = true;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700943 desc = conn->desc;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200944 break;
945 }
946 }
Mika Westerbergc103a102015-10-30 12:02:05 +0200947
948 /*
949 * The same GPIO can be shared between operation region and
950 * event but only if the access here is ACPI_READ. In that
951 * case we "borrow" the event GPIO instead.
952 */
Erik Schmaussc163f90c2019-02-15 13:36:19 -0800953 if (!found && agpio->shareable == ACPI_SHARED &&
Mika Westerbergc103a102015-10-30 12:02:05 +0200954 function == ACPI_READ) {
955 struct acpi_gpio_event *event;
956
957 list_for_each_entry(event, &achip->events, node) {
958 if (event->pin == pin) {
959 desc = event->desc;
960 found = true;
961 break;
962 }
963 }
964 }
965
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200966 if (!found) {
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300967 enum gpiod_flags flags = acpi_gpio_to_gpiod_flags(agpio);
968 const char *label = "ACPI:OpRegion";
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300969
Linus Walleij21abf102018-09-04 13:31:45 +0200970 desc = gpiochip_request_own_desc(chip, pin, label,
Linus Walleij5923ea62019-04-26 14:40:18 +0200971 GPIO_ACTIVE_HIGH,
Linus Walleij21abf102018-09-04 13:31:45 +0200972 flags);
Alexandre Courbote46cf322014-08-19 10:06:08 -0700973 if (IS_ERR(desc)) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200974 status = AE_ERROR;
975 mutex_unlock(&achip->conn_lock);
976 goto out;
977 }
978
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200979 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
980 if (!conn) {
981 status = AE_NO_MEMORY;
982 gpiochip_free_own_desc(desc);
983 mutex_unlock(&achip->conn_lock);
984 goto out;
985 }
986
Alexandre Courbote46cf322014-08-19 10:06:08 -0700987 conn->pin = pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200988 conn->desc = desc;
989 list_add_tail(&conn->node, &achip->conns);
990 }
991
992 mutex_unlock(&achip->conn_lock);
993
994 if (function == ACPI_WRITE)
Aaron Ludc62b562014-05-20 17:07:38 +0800995 gpiod_set_raw_value_cansleep(desc,
996 !!((1 << i) & *value));
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200997 else
Aaron Ludc62b562014-05-20 17:07:38 +0800998 *value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200999 }
1000
1001out:
1002 ACPI_FREE(ares);
1003 return status;
1004}
1005
1006static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
1007{
1008 struct gpio_chip *chip = achip->chip;
Linus Walleij58383c782015-11-04 09:56:26 +01001009 acpi_handle handle = ACPI_HANDLE(chip->parent);
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001010 acpi_status status;
1011
1012 INIT_LIST_HEAD(&achip->conns);
1013 mutex_init(&achip->conn_lock);
1014 status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
1015 acpi_gpio_adr_space_handler,
1016 NULL, achip);
1017 if (ACPI_FAILURE(status))
Linus Walleij58383c782015-11-04 09:56:26 +01001018 dev_err(chip->parent,
1019 "Failed to install GPIO OpRegion handler\n");
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001020}
1021
1022static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
1023{
1024 struct gpio_chip *chip = achip->chip;
Linus Walleij58383c782015-11-04 09:56:26 +01001025 acpi_handle handle = ACPI_HANDLE(chip->parent);
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001026 struct acpi_gpio_connection *conn, *tmp;
1027 acpi_status status;
1028
1029 status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
1030 acpi_gpio_adr_space_handler);
1031 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001032 dev_err(chip->parent,
1033 "Failed to remove GPIO OpRegion handler\n");
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001034 return;
1035 }
1036
1037 list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
1038 gpiochip_free_own_desc(conn->desc);
1039 list_del(&conn->node);
1040 kfree(conn);
1041 }
1042}
1043
Andy Shevchenkofed70262019-04-10 18:39:16 +03001044static struct gpio_desc *
1045acpi_gpiochip_parse_own_gpio(struct acpi_gpio_chip *achip,
1046 struct fwnode_handle *fwnode,
1047 const char **name,
1048 unsigned long *lflags,
Andy Shevchenko80c8d922019-04-10 18:39:18 +03001049 enum gpiod_flags *dflags)
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001050{
1051 struct gpio_chip *chip = achip->chip;
1052 struct gpio_desc *desc;
1053 u32 gpios[2];
1054 int ret;
1055
Andy Shevchenko2d6c06f2019-04-10 18:39:17 +03001056 *lflags = GPIO_LOOKUP_FLAGS_DEFAULT;
Arnd Bergmannc82064f2016-11-08 14:40:06 +01001057 *dflags = 0;
1058 *name = NULL;
1059
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001060 ret = fwnode_property_read_u32_array(fwnode, "gpios", gpios,
1061 ARRAY_SIZE(gpios));
1062 if (ret < 0)
1063 return ERR_PTR(ret);
1064
Mika Westerberg03c47492017-11-27 16:54:42 +03001065 desc = gpiochip_get_desc(chip, gpios[0]);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001066 if (IS_ERR(desc))
1067 return desc;
1068
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001069 if (gpios[1])
1070 *lflags |= GPIO_ACTIVE_LOW;
1071
1072 if (fwnode_property_present(fwnode, "input"))
1073 *dflags |= GPIOD_IN;
1074 else if (fwnode_property_present(fwnode, "output-low"))
1075 *dflags |= GPIOD_OUT_LOW;
1076 else if (fwnode_property_present(fwnode, "output-high"))
1077 *dflags |= GPIOD_OUT_HIGH;
1078 else
1079 return ERR_PTR(-EINVAL);
1080
1081 fwnode_property_read_string(fwnode, "line-name", name);
1082
1083 return desc;
1084}
1085
1086static void acpi_gpiochip_scan_gpios(struct acpi_gpio_chip *achip)
1087{
1088 struct gpio_chip *chip = achip->chip;
1089 struct fwnode_handle *fwnode;
1090
1091 device_for_each_child_node(chip->parent, fwnode) {
Andy Shevchenkofed70262019-04-10 18:39:16 +03001092 unsigned long lflags;
Andy Shevchenko80c8d922019-04-10 18:39:18 +03001093 enum gpiod_flags dflags;
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001094 struct gpio_desc *desc;
1095 const char *name;
1096 int ret;
1097
1098 if (!fwnode_property_present(fwnode, "gpio-hog"))
1099 continue;
1100
1101 desc = acpi_gpiochip_parse_own_gpio(achip, fwnode, &name,
1102 &lflags, &dflags);
1103 if (IS_ERR(desc))
1104 continue;
1105
1106 ret = gpiod_hog(desc, name, lflags, dflags);
1107 if (ret) {
1108 dev_err(chip->parent, "Failed to hog GPIO\n");
Wei Yongjun1b6998c2016-10-29 16:11:57 +00001109 fwnode_handle_put(fwnode);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001110 return;
1111 }
1112 }
1113}
1114
Mika Westerberg664e3e52014-01-08 12:40:54 +02001115void acpi_gpiochip_add(struct gpio_chip *chip)
1116{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001117 struct acpi_gpio_chip *acpi_gpio;
1118 acpi_handle handle;
1119 acpi_status status;
1120
Linus Walleij58383c782015-11-04 09:56:26 +01001121 if (!chip || !chip->parent)
Mika Westerberge9595f82014-03-31 15:16:49 +03001122 return;
1123
Linus Walleij58383c782015-11-04 09:56:26 +01001124 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001125 if (!handle)
1126 return;
1127
1128 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
1129 if (!acpi_gpio) {
Linus Walleij58383c782015-11-04 09:56:26 +01001130 dev_err(chip->parent,
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001131 "Failed to allocate memory for ACPI GPIO chip\n");
1132 return;
1133 }
1134
1135 acpi_gpio->chip = chip;
Mika Westerbergc103a102015-10-30 12:02:05 +02001136 INIT_LIST_HEAD(&acpi_gpio->events);
Hans de Goede78d3a922018-08-14 16:07:03 +02001137 INIT_LIST_HEAD(&acpi_gpio->deferred_req_irqs_list_entry);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001138
1139 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
1140 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001141 dev_err(chip->parent, "Failed to attach ACPI GPIO chip\n");
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001142 kfree(acpi_gpio);
1143 return;
1144 }
1145
Mika Westerberg4035cc12016-10-21 17:21:32 +03001146 if (!chip->names)
Christophe Leroy82270332017-12-15 15:02:33 +01001147 devprop_gpiochip_set_names(chip, dev_fwnode(chip->parent));
Mika Westerberg4035cc12016-10-21 17:21:32 +03001148
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001149 acpi_gpiochip_request_regions(acpi_gpio);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001150 acpi_gpiochip_scan_gpios(acpi_gpio);
Rui Zhang3f86a632016-06-15 08:47:51 +02001151 acpi_walk_dep_device_list(handle);
Mika Westerberg664e3e52014-01-08 12:40:54 +02001152}
1153
1154void acpi_gpiochip_remove(struct gpio_chip *chip)
1155{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001156 struct acpi_gpio_chip *acpi_gpio;
1157 acpi_handle handle;
1158 acpi_status status;
1159
Linus Walleij58383c782015-11-04 09:56:26 +01001160 if (!chip || !chip->parent)
Mika Westerberge9595f82014-03-31 15:16:49 +03001161 return;
1162
Linus Walleij58383c782015-11-04 09:56:26 +01001163 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001164 if (!handle)
1165 return;
1166
1167 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
1168 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001169 dev_warn(chip->parent, "Failed to retrieve ACPI GPIO chip\n");
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001170 return;
1171 }
1172
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001173 acpi_gpiochip_free_regions(acpi_gpio);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001174
1175 acpi_detach_data(handle, acpi_gpio_chip_dh);
1176 kfree(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +02001177}
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001178
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001179static int acpi_gpio_package_count(const union acpi_object *obj)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001180{
1181 const union acpi_object *element = obj->package.elements;
1182 const union acpi_object *end = element + obj->package.count;
1183 unsigned int count = 0;
1184
1185 while (element < end) {
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001186 switch (element->type) {
1187 case ACPI_TYPE_LOCAL_REFERENCE:
1188 element += 3;
1189 /* Fallthrough */
1190 case ACPI_TYPE_INTEGER:
1191 element++;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001192 count++;
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001193 break;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001194
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001195 default:
1196 return -EPROTO;
1197 }
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001198 }
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001199
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001200 return count;
1201}
1202
1203static int acpi_find_gpio_count(struct acpi_resource *ares, void *data)
1204{
1205 unsigned int *count = data;
1206
1207 if (ares->type == ACPI_RESOURCE_TYPE_GPIO)
1208 *count += ares->data.gpio.pin_table_length;
1209
1210 return 1;
1211}
1212
1213/**
Andy Shevchenko85edcd02019-03-30 00:33:45 +03001214 * acpi_gpio_count - count the GPIOs associated with a device / function
1215 * @dev: GPIO consumer, can be %NULL for system-global GPIOs
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001216 * @con_id: function within the GPIO consumer
Andy Shevchenko85edcd02019-03-30 00:33:45 +03001217 *
1218 * Return:
1219 * The number of GPIOs associated with a device / function or %-ENOENT,
1220 * if no GPIO has been assigned to the requested function.
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001221 */
1222int acpi_gpio_count(struct device *dev, const char *con_id)
1223{
1224 struct acpi_device *adev = ACPI_COMPANION(dev);
1225 const union acpi_object *obj;
1226 const struct acpi_gpio_mapping *gm;
1227 int count = -ENOENT;
1228 int ret;
1229 char propname[32];
1230 unsigned int i;
1231
1232 /* Try first from _DSD */
1233 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Andy Shevchenko9e665042017-05-23 20:03:17 +03001234 if (con_id)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001235 snprintf(propname, sizeof(propname), "%s-%s",
1236 con_id, gpio_suffixes[i]);
1237 else
1238 snprintf(propname, sizeof(propname), "%s",
1239 gpio_suffixes[i]);
1240
1241 ret = acpi_dev_get_property(adev, propname, ACPI_TYPE_ANY,
1242 &obj);
1243 if (ret == 0) {
1244 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE)
1245 count = 1;
1246 else if (obj->type == ACPI_TYPE_PACKAGE)
1247 count = acpi_gpio_package_count(obj);
1248 } else if (adev->driver_gpios) {
1249 for (gm = adev->driver_gpios; gm->name; gm++)
1250 if (strcmp(propname, gm->name) == 0) {
1251 count = gm->size;
1252 break;
1253 }
1254 }
Andy Shevchenko4ed55012017-02-20 18:15:46 +02001255 if (count > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001256 break;
1257 }
1258
1259 /* Then from plain _CRS GPIOs */
1260 if (count < 0) {
1261 struct list_head resource_list;
1262 unsigned int crs_count = 0;
1263
Andy Shevchenko6fe9da42017-05-23 20:03:20 +03001264 if (!acpi_can_fallback_to_crs(adev, con_id))
1265 return count;
1266
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001267 INIT_LIST_HEAD(&resource_list);
1268 acpi_dev_get_resources(adev, &resource_list,
1269 acpi_find_gpio_count, &crs_count);
1270 acpi_dev_free_resource_list(&resource_list);
1271 if (crs_count > 0)
1272 count = crs_count;
1273 }
Andy Shevchenko4ed55012017-02-20 18:15:46 +02001274 return count ? count : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001275}
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001276
Hans de Goedee59f5e02018-11-28 17:57:55 +01001277/* Run deferred acpi_gpiochip_request_irqs() */
1278static int acpi_gpio_handle_deferred_request_irqs(void)
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001279{
Hans de Goede78d3a922018-08-14 16:07:03 +02001280 struct acpi_gpio_chip *acpi_gpio, *tmp;
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001281
Hans de Goede78d3a922018-08-14 16:07:03 +02001282 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
1283 list_for_each_entry_safe(acpi_gpio, tmp,
1284 &acpi_gpio_deferred_req_irqs_list,
Hans de Goedee59f5e02018-11-28 17:57:55 +01001285 deferred_req_irqs_list_entry)
1286 acpi_gpiochip_request_irqs(acpi_gpio);
Hans de Goede78d3a922018-08-14 16:07:03 +02001287
1288 acpi_gpio_deferred_req_irqs_done = true;
1289 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001290
1291 return 0;
1292}
1293/* We must use _sync so that this runs after the first deferred_probe run */
Hans de Goedee59f5e02018-11-28 17:57:55 +01001294late_initcall_sync(acpi_gpio_handle_deferred_request_irqs);