blob: 30d0baf7ddaed0e07d6fa94d5ceee8c06ada68df [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"
21
Hans de Goedee59f5e02018-11-28 17:57:55 +010022/**
23 * struct acpi_gpio_event - ACPI GPIO event handler data
24 *
25 * @node: list-entry of the events list of the struct acpi_gpio_chip
26 * @handle: handle of ACPI method to execute when the IRQ triggers
27 * @handler: irq_handler to pass to request_irq when requesting the IRQ
28 * @pin: GPIO pin number on the gpio_chip
29 * @irq: Linux IRQ number for the event, for request_ / free_irq
30 * @irqflags: flags to pass to request_irq when requesting the IRQ
31 * @irq_is_wake: If the ACPI flags indicate the IRQ is a wakeup source
Andy Shevchenko876811f2019-01-25 19:03:02 +020032 * @irq_requested:True if request_irq has been done
Hans de Goedee59f5e02018-11-28 17:57:55 +010033 * @desc: gpio_desc for the GPIO pin for this event
34 */
Mika Westerberg4b01a142014-03-10 14:54:52 +020035struct acpi_gpio_event {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020036 struct list_head node;
Mika Westerberg4b01a142014-03-10 14:54:52 +020037 acpi_handle handle;
Hans de Goedee59f5e02018-11-28 17:57:55 +010038 irq_handler_t handler;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020039 unsigned int pin;
40 unsigned int irq;
Hans de Goedee59f5e02018-11-28 17:57:55 +010041 unsigned long irqflags;
42 bool irq_is_wake;
43 bool irq_requested;
Alexandre Courbote46cf322014-08-19 10:06:08 -070044 struct gpio_desc *desc;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020045};
46
Mika Westerberg473ed7b2014-03-14 17:58:07 +020047struct acpi_gpio_connection {
48 struct list_head node;
Alexandre Courbote46cf322014-08-19 10:06:08 -070049 unsigned int pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +020050 struct gpio_desc *desc;
51};
52
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020053struct acpi_gpio_chip {
Mika Westerberg473ed7b2014-03-14 17:58:07 +020054 /*
55 * ACPICA requires that the first field of the context parameter
56 * passed to acpi_install_address_space_handler() is large enough
57 * to hold struct acpi_connection_info.
58 */
59 struct acpi_connection_info conn_info;
60 struct list_head conns;
61 struct mutex conn_lock;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020062 struct gpio_chip *chip;
Mika Westerberg4b01a142014-03-10 14:54:52 +020063 struct list_head events;
Hans de Goede78d3a922018-08-14 16:07:03 +020064 struct list_head deferred_req_irqs_list_entry;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020065};
66
Hans de Goede78d3a922018-08-14 16:07:03 +020067/*
68 * For gpiochips which call acpi_gpiochip_request_interrupts() before late_init
Hans de Goedee59f5e02018-11-28 17:57:55 +010069 * (so builtin drivers) we register the ACPI GpioInt IRQ handlers from a
Hans de Goede78d3a922018-08-14 16:07:03 +020070 * late_initcall_sync handler, so that other builtin drivers can register their
71 * OpRegions before the event handlers can run. This list contains gpiochips
Hans de Goedee59f5e02018-11-28 17:57:55 +010072 * for which the acpi_gpiochip_request_irqs() call has been deferred.
Hans de Goede78d3a922018-08-14 16:07:03 +020073 */
74static DEFINE_MUTEX(acpi_gpio_deferred_req_irqs_lock);
75static LIST_HEAD(acpi_gpio_deferred_req_irqs_list);
76static bool acpi_gpio_deferred_req_irqs_done;
Benjamin Tissoiresca876c72018-07-12 17:25:06 +020077
Mathias Nymane29482e2012-11-30 12:37:36 +010078static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
79{
Linus Walleij58383c782015-11-04 09:56:26 +010080 if (!gc->parent)
Mathias Nymane29482e2012-11-30 12:37:36 +010081 return false;
82
Linus Walleij58383c782015-11-04 09:56:26 +010083 return ACPI_HANDLE(gc->parent) == data;
Mathias Nymane29482e2012-11-30 12:37:36 +010084}
85
86/**
Mika Westerberg936e15d2013-10-10 11:01:08 +030087 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
Mathias Nymane29482e2012-11-30 12:37:36 +010088 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
89 * @pin: ACPI GPIO pin number (0-based, controller-relative)
90 *
Mika Westerbergf35bbf62015-06-10 16:05:05 +030091 * Return: GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
92 * error value. Specifically returns %-EPROBE_DEFER if the referenced GPIO
93 * controller does not have gpiochip registered at the moment. This is to
94 * support probe deferral.
Mathias Nymane29482e2012-11-30 12:37:36 +010095 */
Mika Westerberg936e15d2013-10-10 11:01:08 +030096static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
Mathias Nymane29482e2012-11-30 12:37:36 +010097{
98 struct gpio_chip *chip;
99 acpi_handle handle;
100 acpi_status status;
101
102 status = acpi_get_handle(NULL, path, &handle);
103 if (ACPI_FAILURE(status))
Mika Westerberg936e15d2013-10-10 11:01:08 +0300104 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +0100105
106 chip = gpiochip_find(handle, acpi_gpiochip_find);
107 if (!chip)
Mika Westerbergf35bbf62015-06-10 16:05:05 +0300108 return ERR_PTR(-EPROBE_DEFER);
Mathias Nymane29482e2012-11-30 12:37:36 +0100109
Mika Westerberg03c47492017-11-27 16:54:42 +0300110 return gpiochip_get_desc(chip, pin);
Mathias Nymane29482e2012-11-30 12:37:36 +0100111}
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200112
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200113static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
114{
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200115 struct acpi_gpio_event *event = data;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200116
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200117 acpi_evaluate_object(event->handle, NULL, NULL, NULL);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200118
119 return IRQ_HANDLED;
120}
121
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200122static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
123{
Mika Westerberg4b01a142014-03-10 14:54:52 +0200124 struct acpi_gpio_event *event = data;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200125
Mika Westerberg4b01a142014-03-10 14:54:52 +0200126 acpi_execute_simple_method(event->handle, NULL, event->pin);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200127
128 return IRQ_HANDLED;
129}
130
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200131static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200132{
133 /* The address of this function is used as a key. */
134}
135
Andy Shevchenko25e3ef82017-05-23 20:03:24 +0300136bool acpi_gpio_get_irq_resource(struct acpi_resource *ares,
137 struct acpi_resource_gpio **agpio)
138{
139 struct acpi_resource_gpio *gpio;
140
141 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
142 return false;
143
144 gpio = &ares->data.gpio;
145 if (gpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
146 return false;
147
148 *agpio = gpio;
149 return true;
150}
151EXPORT_SYMBOL_GPL(acpi_gpio_get_irq_resource);
152
Hans de Goedee59f5e02018-11-28 17:57:55 +0100153static void acpi_gpiochip_request_irq(struct acpi_gpio_chip *acpi_gpio,
154 struct acpi_gpio_event *event)
155{
156 int ret, value;
157
158 ret = request_threaded_irq(event->irq, NULL, event->handler,
159 event->irqflags, "ACPI:Event", event);
160 if (ret) {
161 dev_err(acpi_gpio->chip->parent,
162 "Failed to setup interrupt handler for %d\n",
163 event->irq);
164 return;
165 }
166
167 if (event->irq_is_wake)
168 enable_irq_wake(event->irq);
169
170 event->irq_requested = true;
171
172 /* Make sure we trigger the initial state of edge-triggered IRQs */
173 value = gpiod_get_raw_value_cansleep(event->desc);
174 if (((event->irqflags & IRQF_TRIGGER_RISING) && value == 1) ||
175 ((event->irqflags & IRQF_TRIGGER_FALLING) && value == 0))
176 event->handler(event->irq, event);
177}
178
179static void acpi_gpiochip_request_irqs(struct acpi_gpio_chip *acpi_gpio)
180{
181 struct acpi_gpio_event *event;
182
183 list_for_each_entry(event, &acpi_gpio->events, node)
184 acpi_gpiochip_request_irq(acpi_gpio, event);
185}
186
187static acpi_status acpi_gpiochip_alloc_event(struct acpi_resource *ares,
188 void *context)
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200189{
190 struct acpi_gpio_chip *acpi_gpio = context;
191 struct gpio_chip *chip = acpi_gpio->chip;
192 struct acpi_resource_gpio *agpio;
193 acpi_handle handle, evt_handle;
194 struct acpi_gpio_event *event;
195 irq_handler_t handler = NULL;
196 struct gpio_desc *desc;
Hans de Goedee59f5e02018-11-28 17:57:55 +0100197 int ret, pin, irq;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200198
Andy Shevchenko25e3ef82017-05-23 20:03:24 +0300199 if (!acpi_gpio_get_irq_resource(ares, &agpio))
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200200 return AE_OK;
201
Linus Walleij58383c782015-11-04 09:56:26 +0100202 handle = ACPI_HANDLE(chip->parent);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200203 pin = agpio->pin_table[0];
204
205 if (pin <= 255) {
206 char ev_name[5];
Arnd Bergmanne40a3ae2017-09-06 17:47:45 +0200207 sprintf(ev_name, "_%c%02hhX",
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200208 agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
209 pin);
210 if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
211 handler = acpi_gpio_irq_handler;
212 }
213 if (!handler) {
214 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
215 handler = acpi_gpio_irq_handler_evt;
216 }
217 if (!handler)
Hans de Goedec06632e2017-06-23 09:26:13 +0200218 return AE_OK;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200219
Linus Walleij21abf1032018-09-04 13:31:45 +0200220 desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event", 0);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200221 if (IS_ERR(desc)) {
Linus Walleij58383c782015-11-04 09:56:26 +0100222 dev_err(chip->parent, "Failed to request GPIO\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200223 return AE_ERROR;
224 }
225
226 gpiod_direction_input(desc);
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
290 * 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 Shevchenko85c73d52017-03-02 15:48:05 +0200386static void devm_acpi_dev_release_driver_gpios(struct device *dev, void *res)
387{
388 acpi_dev_remove_driver_gpios(ACPI_COMPANION(dev));
389}
390
391int devm_acpi_dev_add_driver_gpios(struct device *dev,
392 const struct acpi_gpio_mapping *gpios)
393{
394 void *res;
395 int ret;
396
397 res = devres_alloc(devm_acpi_dev_release_driver_gpios, 0, GFP_KERNEL);
398 if (!res)
399 return -ENOMEM;
400
401 ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(dev), gpios);
402 if (ret) {
403 devres_free(res);
404 return ret;
405 }
406 devres_add(dev, res);
407 return 0;
408}
409EXPORT_SYMBOL_GPL(devm_acpi_dev_add_driver_gpios);
410
411void devm_acpi_dev_remove_driver_gpios(struct device *dev)
412{
413 WARN_ON(devres_release(dev, devm_acpi_dev_release_driver_gpios, NULL, NULL));
414}
415EXPORT_SYMBOL_GPL(devm_acpi_dev_remove_driver_gpios);
416
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100417static bool acpi_get_driver_gpio_data(struct acpi_device *adev,
418 const char *name, int index,
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300419 struct fwnode_reference_args *args,
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200420 unsigned int *quirks)
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100421{
422 const struct acpi_gpio_mapping *gm;
423
424 if (!adev->driver_gpios)
425 return false;
426
427 for (gm = adev->driver_gpios; gm->name; gm++)
428 if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
429 const struct acpi_gpio_params *par = gm->data + index;
430
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300431 args->fwnode = acpi_fwnode_handle(adev);
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100432 args->args[0] = par->crs_entry_index;
433 args->args[1] = par->line_index;
434 args->args[2] = par->active_low;
435 args->nargs = 3;
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200436
437 *quirks = gm->quirks;
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100438 return true;
439 }
440
441 return false;
442}
443
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300444static enum gpiod_flags
445acpi_gpio_to_gpiod_flags(const struct acpi_resource_gpio *agpio)
446{
447 bool pull_up = agpio->pin_config == ACPI_PIN_CONFIG_PULLUP;
448
449 switch (agpio->io_restriction) {
450 case ACPI_IO_RESTRICT_INPUT:
451 return GPIOD_IN;
452 case ACPI_IO_RESTRICT_OUTPUT:
453 /*
454 * ACPI GPIO resources don't contain an initial value for the
455 * GPIO. Therefore we deduce that value from the pull field
456 * instead. If the pin is pulled up we assume default to be
457 * high, otherwise low.
458 */
459 return pull_up ? GPIOD_OUT_HIGH : GPIOD_OUT_LOW;
460 default:
461 /*
462 * Assume that the BIOS has configured the direction and pull
463 * accordingly.
464 */
465 return GPIOD_ASIS;
466 }
467}
468
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200469static int
470__acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, enum gpiod_flags update)
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300471{
Hans de Goede72893f02018-12-31 21:55:21 +0100472 const enum gpiod_flags mask =
473 GPIOD_FLAGS_BIT_DIR_SET | GPIOD_FLAGS_BIT_DIR_OUT |
474 GPIOD_FLAGS_BIT_DIR_VAL;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300475 int ret = 0;
476
477 /*
478 * Check if the BIOS has IoRestriction with explicitly set direction
479 * and update @flags accordingly. Otherwise use whatever caller asked
480 * for.
481 */
482 if (update & GPIOD_FLAGS_BIT_DIR_SET) {
483 enum gpiod_flags diff = *flags ^ update;
484
485 /*
486 * Check if caller supplied incompatible GPIO initialization
487 * flags.
488 *
489 * Return %-EINVAL to notify that firmware has different
490 * settings and we are going to use them.
491 */
492 if (((*flags & GPIOD_FLAGS_BIT_DIR_SET) && (diff & GPIOD_FLAGS_BIT_DIR_OUT)) ||
493 ((*flags & GPIOD_FLAGS_BIT_DIR_OUT) && (diff & GPIOD_FLAGS_BIT_DIR_VAL)))
494 ret = -EINVAL;
Hans de Goede72893f02018-12-31 21:55:21 +0100495 *flags = (*flags & ~mask) | (update & mask);
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300496 }
497 return ret;
498}
499
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200500int
501acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, struct acpi_gpio_info *info)
502{
503 struct device *dev = &info->adev->dev;
Andy Shevchenko1b2ca322017-11-10 15:40:33 +0200504 enum gpiod_flags old = *flags;
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200505 int ret;
506
Andy Shevchenko1b2ca322017-11-10 15:40:33 +0200507 ret = __acpi_gpio_update_gpiod_flags(&old, info->flags);
508 if (info->quirks & ACPI_GPIO_QUIRK_NO_IO_RESTRICTION) {
509 if (ret)
510 dev_warn(dev, FW_BUG "GPIO not in correct mode, fixing\n");
511 } else {
512 if (ret)
513 dev_dbg(dev, "Override GPIO initialization flags\n");
514 *flags = old;
515 }
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200516
517 return ret;
518}
519
Mika Westerberg12028d22013-04-03 13:56:54 +0300520struct acpi_gpio_lookup {
521 struct acpi_gpio_info info;
522 int index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100523 int pin_index;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200524 bool active_low;
Mika Westerberg936e15d2013-10-10 11:01:08 +0300525 struct gpio_desc *desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300526 int n;
527};
528
Linus Walleij031ba282016-10-03 10:40:03 +0200529static int acpi_populate_gpio_lookup(struct acpi_resource *ares, void *data)
Mika Westerberg12028d22013-04-03 13:56:54 +0300530{
531 struct acpi_gpio_lookup *lookup = data;
532
533 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
534 return 1;
535
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200536 if (!lookup->desc) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300537 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200538 bool gpioint = agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
539 int pin_index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100540
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200541 if (lookup->info.quirks & ACPI_GPIO_QUIRK_ONLY_GPIOIO && gpioint)
542 lookup->index++;
543
544 if (lookup->n++ != lookup->index)
545 return 1;
546
547 pin_index = lookup->pin_index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100548 if (pin_index >= agpio->pin_table_length)
549 return 1;
Mika Westerberg12028d22013-04-03 13:56:54 +0300550
Mika Westerberg936e15d2013-10-10 11:01:08 +0300551 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100552 agpio->pin_table[pin_index]);
Andy Shevchenko4d1f7a62019-02-06 22:49:46 +0200553 lookup->info.gpioint = gpioint;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100554
555 /*
Andy Shevchenkoe567c352017-01-03 19:01:18 +0200556 * Polarity and triggering are only specified for GpioInt
557 * resource.
Christophe RICARD52044722015-12-23 23:25:34 +0100558 * Note: we expect here:
559 * - ACPI_ACTIVE_LOW == GPIO_ACTIVE_LOW
560 * - ACPI_ACTIVE_HIGH == GPIO_ACTIVE_HIGH
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100561 */
Christophe RICARD52044722015-12-23 23:25:34 +0100562 if (lookup->info.gpioint) {
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300563 lookup->info.flags = GPIOD_IN;
Christophe RICARD52044722015-12-23 23:25:34 +0100564 lookup->info.polarity = agpio->polarity;
565 lookup->info.triggering = agpio->triggering;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300566 } else {
567 lookup->info.flags = acpi_gpio_to_gpiod_flags(agpio);
Andy Shevchenkof67a6c12017-11-10 15:40:28 +0200568 lookup->info.polarity = lookup->active_low;
Christophe RICARD52044722015-12-23 23:25:34 +0100569 }
Mika Westerberg12028d22013-04-03 13:56:54 +0300570 }
571
572 return 1;
573}
574
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200575static int acpi_gpio_resource_lookup(struct acpi_gpio_lookup *lookup,
576 struct acpi_gpio_info *info)
577{
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200578 struct acpi_device *adev = lookup->info.adev;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200579 struct list_head res_list;
580 int ret;
581
582 INIT_LIST_HEAD(&res_list);
583
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200584 ret = acpi_dev_get_resources(adev, &res_list,
Linus Walleij031ba282016-10-03 10:40:03 +0200585 acpi_populate_gpio_lookup,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200586 lookup);
587 if (ret < 0)
588 return ret;
589
590 acpi_dev_free_resource_list(&res_list);
591
592 if (!lookup->desc)
593 return -ENOENT;
594
Andy Shevchenkof67a6c12017-11-10 15:40:28 +0200595 if (info)
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200596 *info = lookup->info;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200597 return 0;
598}
599
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200600static int acpi_gpio_property_lookup(struct fwnode_handle *fwnode,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200601 const char *propname, int index,
602 struct acpi_gpio_lookup *lookup)
603{
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300604 struct fwnode_reference_args args;
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200605 unsigned int quirks = 0;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200606 int ret;
607
608 memset(&args, 0, sizeof(args));
Mika Westerberg6f7194a2016-10-21 17:21:29 +0300609 ret = __acpi_node_get_property_reference(fwnode, propname, index, 3,
610 &args);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200611 if (ret) {
612 struct acpi_device *adev = to_acpi_device_node(fwnode);
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200613
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200614 if (!adev)
615 return ret;
616
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200617 if (!acpi_get_driver_gpio_data(adev, propname, index, &args,
618 &quirks))
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200619 return ret;
620 }
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200621 /*
622 * The property was found and resolved, so need to lookup the GPIO based
623 * on returned args.
624 */
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300625 if (!to_acpi_device_node(args.fwnode))
626 return -EINVAL;
Mika Westerberg6f7194a2016-10-21 17:21:29 +0300627 if (args.nargs != 3)
628 return -EPROTO;
629
630 lookup->index = args.args[0];
631 lookup->pin_index = args.args[1];
632 lookup->active_low = !!args.args[2];
633
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300634 lookup->info.adev = to_acpi_device_node(args.fwnode);
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200635 lookup->info.quirks = quirks;
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300636
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200637 return 0;
638}
639
Mika Westerberg12028d22013-04-03 13:56:54 +0300640/**
Mika Westerberg936e15d2013-10-10 11:01:08 +0300641 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100642 * @adev: pointer to a ACPI device to get GPIO from
643 * @propname: Property name of the GPIO (optional)
Mika Westerberg12028d22013-04-03 13:56:54 +0300644 * @index: index of GpioIo/GpioInt resource (starting from %0)
645 * @info: info pointer to fill in (optional)
646 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100647 * Function goes through ACPI resources for @adev and based on @index looks
Mika Westerberg936e15d2013-10-10 11:01:08 +0300648 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
Mika Westerberg12028d22013-04-03 13:56:54 +0300649 * and returns it. @index matches GpioIo/GpioInt resources only so if there
650 * are total %3 GPIO resources, the index goes from %0 to %2.
651 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100652 * If @propname is specified the GPIO is looked using device property. In
653 * that case @index is used to select the GPIO entry in the property value
654 * (in case of multiple).
655 *
Mika Westerberg936e15d2013-10-10 11:01:08 +0300656 * If the GPIO cannot be translated or there is an error an ERR_PTR is
Mika Westerberg12028d22013-04-03 13:56:54 +0300657 * returned.
658 *
659 * Note: if the GPIO resource has multiple entries in the pin list, this
660 * function only returns the first.
661 */
Linus Walleij031ba282016-10-03 10:40:03 +0200662static struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100663 const char *propname, int index,
Mika Westerberg936e15d2013-10-10 11:01:08 +0300664 struct acpi_gpio_info *info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300665{
666 struct acpi_gpio_lookup lookup;
Mika Westerberg12028d22013-04-03 13:56:54 +0300667 int ret;
668
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100669 if (!adev)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300670 return ERR_PTR(-ENODEV);
Mika Westerberg12028d22013-04-03 13:56:54 +0300671
672 memset(&lookup, 0, sizeof(lookup));
673 lookup.index = index;
Mika Westerberg12028d22013-04-03 13:56:54 +0300674
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100675 if (propname) {
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100676 dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);
677
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200678 ret = acpi_gpio_property_lookup(acpi_fwnode_handle(adev),
679 propname, index, &lookup);
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200680 if (ret)
681 return ERR_PTR(ret);
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100682
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200683 dev_dbg(&adev->dev, "GPIO: _DSD returned %s %d %d %u\n",
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200684 dev_name(&lookup.info.adev->dev), lookup.index,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200685 lookup.pin_index, lookup.active_low);
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100686 } else {
687 dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200688 lookup.info.adev = adev;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100689 }
690
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200691 ret = acpi_gpio_resource_lookup(&lookup, info);
692 return ret ? ERR_PTR(ret) : lookup.desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300693}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200694
Linus Walleij031ba282016-10-03 10:40:03 +0200695struct gpio_desc *acpi_find_gpio(struct device *dev,
696 const char *con_id,
697 unsigned int idx,
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300698 enum gpiod_flags *dflags,
Linus Walleij031ba282016-10-03 10:40:03 +0200699 enum gpio_lookup_flags *lookupflags)
700{
701 struct acpi_device *adev = ACPI_COMPANION(dev);
702 struct acpi_gpio_info info;
703 struct gpio_desc *desc;
704 char propname[32];
705 int i;
706
707 /* Try first from _DSD */
708 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Andy Shevchenko9e665042017-05-23 20:03:17 +0300709 if (con_id) {
Linus Walleij031ba282016-10-03 10:40:03 +0200710 snprintf(propname, sizeof(propname), "%s-%s",
711 con_id, gpio_suffixes[i]);
712 } else {
713 snprintf(propname, sizeof(propname), "%s",
714 gpio_suffixes[i]);
715 }
716
717 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
Dmitry Torokhov693bdaa2017-03-23 13:21:38 -0700718 if (!IS_ERR(desc))
Linus Walleij031ba282016-10-03 10:40:03 +0200719 break;
Dmitry Torokhov693bdaa2017-03-23 13:21:38 -0700720 if (PTR_ERR(desc) == -EPROBE_DEFER)
721 return ERR_CAST(desc);
Linus Walleij031ba282016-10-03 10:40:03 +0200722 }
723
724 /* Then from plain _CRS GPIOs */
725 if (IS_ERR(desc)) {
726 if (!acpi_can_fallback_to_crs(adev, con_id))
727 return ERR_PTR(-ENOENT);
728
729 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
730 if (IS_ERR(desc))
731 return desc;
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300732 }
Linus Walleij031ba282016-10-03 10:40:03 +0200733
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300734 if (info.gpioint &&
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300735 (*dflags == GPIOD_OUT_LOW || *dflags == GPIOD_OUT_HIGH)) {
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300736 dev_dbg(dev, "refusing GpioInt() entry when doing GPIOD_OUT_* lookup\n");
737 return ERR_PTR(-ENOENT);
Linus Walleij031ba282016-10-03 10:40:03 +0200738 }
739
740 if (info.polarity == GPIO_ACTIVE_LOW)
741 *lookupflags |= GPIO_ACTIVE_LOW;
742
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200743 acpi_gpio_update_gpiod_flags(dflags, &info);
Linus Walleij031ba282016-10-03 10:40:03 +0200744 return desc;
745}
746
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300747/**
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200748 * acpi_node_get_gpiod() - get a GPIO descriptor from ACPI resources
749 * @fwnode: pointer to an ACPI firmware node to get the GPIO information from
750 * @propname: Property name of the GPIO
751 * @index: index of GpioIo/GpioInt resource (starting from %0)
752 * @info: info pointer to fill in (optional)
753 *
754 * If @fwnode is an ACPI device object, call %acpi_get_gpiod_by_index() for it.
755 * Otherwise (ie. it is a data-only non-device object), use the property-based
756 * GPIO lookup to get to the GPIO resource with the relevant information and use
757 * that to obtain the GPIO descriptor to return.
758 */
759struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
760 const char *propname, int index,
761 struct acpi_gpio_info *info)
762{
763 struct acpi_gpio_lookup lookup;
764 struct acpi_device *adev;
765 int ret;
766
767 adev = to_acpi_device_node(fwnode);
768 if (adev)
769 return acpi_get_gpiod_by_index(adev, propname, index, info);
770
771 if (!is_acpi_data_node(fwnode))
772 return ERR_PTR(-ENODEV);
773
774 if (!propname)
775 return ERR_PTR(-EINVAL);
776
777 memset(&lookup, 0, sizeof(lookup));
778 lookup.index = index;
779
780 ret = acpi_gpio_property_lookup(fwnode, propname, index, &lookup);
781 if (ret)
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200782 return ERR_PTR(ret);
783
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200784 ret = acpi_gpio_resource_lookup(&lookup, info);
785 return ret ? ERR_PTR(ret) : lookup.desc;
Mika Westerberg664e3e52014-01-08 12:40:54 +0200786}
787
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300788/**
789 * acpi_dev_gpio_irq_get() - Find GpioInt and translate it to Linux IRQ number
790 * @adev: pointer to a ACPI device to get IRQ from
791 * @index: index of GpioInt resource (starting from %0)
792 *
793 * If the device has one or more GpioInt resources, this function can be
794 * used to translate from the GPIO offset in the resource to the Linux IRQ
795 * number.
796 *
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300797 * The function is idempotent, though each time it runs it will configure GPIO
798 * pin direction according to the flags in GpioInt resource.
799 *
Thierry Redingdb05c7e2017-07-24 16:57:25 +0200800 * Return: Linux IRQ number (> %0) on success, negative errno on failure.
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300801 */
802int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index)
803{
804 int idx, i;
Christophe RICARD52044722015-12-23 23:25:34 +0100805 unsigned int irq_flags;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300806 int ret;
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300807
808 for (i = 0, idx = 0; idx <= index; i++) {
809 struct acpi_gpio_info info;
810 struct gpio_desc *desc;
811
812 desc = acpi_get_gpiod_by_index(adev, NULL, i, &info);
Christophe RICARD52044722015-12-23 23:25:34 +0100813
Hans de Goede6798d722017-03-13 23:04:21 +0100814 /* Ignore -EPROBE_DEFER, it only matters if idx matches */
815 if (IS_ERR(desc) && PTR_ERR(desc) != -EPROBE_DEFER)
816 return PTR_ERR(desc);
817
818 if (info.gpioint && idx++ == index) {
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300819 char label[32];
Hans de Goede6798d722017-03-13 23:04:21 +0100820 int irq;
821
822 if (IS_ERR(desc))
823 return PTR_ERR(desc);
824
825 irq = gpiod_to_irq(desc);
Christophe RICARD52044722015-12-23 23:25:34 +0100826 if (irq < 0)
827 return irq;
828
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300829 snprintf(label, sizeof(label), "GpioInt() %d", index);
830 ret = gpiod_configure_flags(desc, label, 0, info.flags);
831 if (ret < 0)
832 return ret;
833
Christophe RICARD52044722015-12-23 23:25:34 +0100834 irq_flags = acpi_dev_get_irq_type(info.triggering,
835 info.polarity);
836
837 /* Set type if specified and different than the current one */
838 if (irq_flags != IRQ_TYPE_NONE &&
839 irq_flags != irq_get_trigger_type(irq))
840 irq_set_irq_type(irq, irq_flags);
841
842 return irq;
843 }
844
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300845 }
Hans de Goede6798d722017-03-13 23:04:21 +0100846 return -ENOENT;
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300847}
848EXPORT_SYMBOL_GPL(acpi_dev_gpio_irq_get);
849
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200850static acpi_status
851acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
852 u32 bits, u64 *value, void *handler_context,
853 void *region_context)
854{
855 struct acpi_gpio_chip *achip = region_context;
856 struct gpio_chip *chip = achip->chip;
857 struct acpi_resource_gpio *agpio;
858 struct acpi_resource *ares;
859 int pin_index = (int)address;
860 acpi_status status;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200861 int length;
862 int i;
863
864 status = acpi_buffer_to_resource(achip->conn_info.connection,
865 achip->conn_info.length, &ares);
866 if (ACPI_FAILURE(status))
867 return status;
868
869 if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
870 ACPI_FREE(ares);
871 return AE_BAD_PARAMETER;
872 }
873
874 agpio = &ares->data.gpio;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200875
876 if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
877 function == ACPI_WRITE)) {
878 ACPI_FREE(ares);
879 return AE_BAD_PARAMETER;
880 }
881
882 length = min(agpio->pin_table_length, (u16)(pin_index + bits));
883 for (i = pin_index; i < length; ++i) {
Qipeng Zhaa4811622015-04-10 06:25:10 +0800884 int pin = agpio->pin_table[i];
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200885 struct acpi_gpio_connection *conn;
886 struct gpio_desc *desc;
887 bool found;
888
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200889 mutex_lock(&achip->conn_lock);
890
891 found = false;
892 list_for_each_entry(conn, &achip->conns, node) {
Alexandre Courbote46cf322014-08-19 10:06:08 -0700893 if (conn->pin == pin) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200894 found = true;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700895 desc = conn->desc;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200896 break;
897 }
898 }
Mika Westerbergc103a102015-10-30 12:02:05 +0200899
900 /*
901 * The same GPIO can be shared between operation region and
902 * event but only if the access here is ACPI_READ. In that
903 * case we "borrow" the event GPIO instead.
904 */
Erik Schmaussc163f90c2019-02-15 13:36:19 -0800905 if (!found && agpio->shareable == ACPI_SHARED &&
Mika Westerbergc103a102015-10-30 12:02:05 +0200906 function == ACPI_READ) {
907 struct acpi_gpio_event *event;
908
909 list_for_each_entry(event, &achip->events, node) {
910 if (event->pin == pin) {
911 desc = event->desc;
912 found = true;
913 break;
914 }
915 }
916 }
917
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200918 if (!found) {
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300919 enum gpiod_flags flags = acpi_gpio_to_gpiod_flags(agpio);
920 const char *label = "ACPI:OpRegion";
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300921
Linus Walleij21abf1032018-09-04 13:31:45 +0200922 desc = gpiochip_request_own_desc(chip, pin, label,
923 flags);
Alexandre Courbote46cf322014-08-19 10:06:08 -0700924 if (IS_ERR(desc)) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200925 status = AE_ERROR;
926 mutex_unlock(&achip->conn_lock);
927 goto out;
928 }
929
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200930 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
931 if (!conn) {
932 status = AE_NO_MEMORY;
933 gpiochip_free_own_desc(desc);
934 mutex_unlock(&achip->conn_lock);
935 goto out;
936 }
937
Alexandre Courbote46cf322014-08-19 10:06:08 -0700938 conn->pin = pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200939 conn->desc = desc;
940 list_add_tail(&conn->node, &achip->conns);
941 }
942
943 mutex_unlock(&achip->conn_lock);
944
945 if (function == ACPI_WRITE)
Aaron Ludc62b562014-05-20 17:07:38 +0800946 gpiod_set_raw_value_cansleep(desc,
947 !!((1 << i) & *value));
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200948 else
Aaron Ludc62b562014-05-20 17:07:38 +0800949 *value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200950 }
951
952out:
953 ACPI_FREE(ares);
954 return status;
955}
956
957static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
958{
959 struct gpio_chip *chip = achip->chip;
Linus Walleij58383c782015-11-04 09:56:26 +0100960 acpi_handle handle = ACPI_HANDLE(chip->parent);
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200961 acpi_status status;
962
963 INIT_LIST_HEAD(&achip->conns);
964 mutex_init(&achip->conn_lock);
965 status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
966 acpi_gpio_adr_space_handler,
967 NULL, achip);
968 if (ACPI_FAILURE(status))
Linus Walleij58383c782015-11-04 09:56:26 +0100969 dev_err(chip->parent,
970 "Failed to install GPIO OpRegion handler\n");
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200971}
972
973static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
974{
975 struct gpio_chip *chip = achip->chip;
Linus Walleij58383c782015-11-04 09:56:26 +0100976 acpi_handle handle = ACPI_HANDLE(chip->parent);
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200977 struct acpi_gpio_connection *conn, *tmp;
978 acpi_status status;
979
980 status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
981 acpi_gpio_adr_space_handler);
982 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +0100983 dev_err(chip->parent,
984 "Failed to remove GPIO OpRegion handler\n");
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200985 return;
986 }
987
988 list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
989 gpiochip_free_own_desc(conn->desc);
990 list_del(&conn->node);
991 kfree(conn);
992 }
993}
994
Wei Yongjun550a9532016-10-29 16:13:12 +0000995static struct gpio_desc *acpi_gpiochip_parse_own_gpio(
996 struct acpi_gpio_chip *achip, struct fwnode_handle *fwnode,
997 const char **name, unsigned int *lflags, unsigned int *dflags)
Mika Westerbergc80f1ba2016-10-21 17:21:30 +0300998{
999 struct gpio_chip *chip = achip->chip;
1000 struct gpio_desc *desc;
1001 u32 gpios[2];
1002 int ret;
1003
Arnd Bergmannc82064f2016-11-08 14:40:06 +01001004 *lflags = 0;
1005 *dflags = 0;
1006 *name = NULL;
1007
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001008 ret = fwnode_property_read_u32_array(fwnode, "gpios", gpios,
1009 ARRAY_SIZE(gpios));
1010 if (ret < 0)
1011 return ERR_PTR(ret);
1012
Mika Westerberg03c47492017-11-27 16:54:42 +03001013 desc = gpiochip_get_desc(chip, gpios[0]);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001014 if (IS_ERR(desc))
1015 return desc;
1016
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001017 if (gpios[1])
1018 *lflags |= GPIO_ACTIVE_LOW;
1019
1020 if (fwnode_property_present(fwnode, "input"))
1021 *dflags |= GPIOD_IN;
1022 else if (fwnode_property_present(fwnode, "output-low"))
1023 *dflags |= GPIOD_OUT_LOW;
1024 else if (fwnode_property_present(fwnode, "output-high"))
1025 *dflags |= GPIOD_OUT_HIGH;
1026 else
1027 return ERR_PTR(-EINVAL);
1028
1029 fwnode_property_read_string(fwnode, "line-name", name);
1030
1031 return desc;
1032}
1033
1034static void acpi_gpiochip_scan_gpios(struct acpi_gpio_chip *achip)
1035{
1036 struct gpio_chip *chip = achip->chip;
1037 struct fwnode_handle *fwnode;
1038
1039 device_for_each_child_node(chip->parent, fwnode) {
1040 unsigned int lflags, dflags;
1041 struct gpio_desc *desc;
1042 const char *name;
1043 int ret;
1044
1045 if (!fwnode_property_present(fwnode, "gpio-hog"))
1046 continue;
1047
1048 desc = acpi_gpiochip_parse_own_gpio(achip, fwnode, &name,
1049 &lflags, &dflags);
1050 if (IS_ERR(desc))
1051 continue;
1052
1053 ret = gpiod_hog(desc, name, lflags, dflags);
1054 if (ret) {
1055 dev_err(chip->parent, "Failed to hog GPIO\n");
Wei Yongjun1b6998c2016-10-29 16:11:57 +00001056 fwnode_handle_put(fwnode);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001057 return;
1058 }
1059 }
1060}
1061
Mika Westerberg664e3e52014-01-08 12:40:54 +02001062void acpi_gpiochip_add(struct gpio_chip *chip)
1063{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001064 struct acpi_gpio_chip *acpi_gpio;
1065 acpi_handle handle;
1066 acpi_status status;
1067
Linus Walleij58383c782015-11-04 09:56:26 +01001068 if (!chip || !chip->parent)
Mika Westerberge9595f82014-03-31 15:16:49 +03001069 return;
1070
Linus Walleij58383c782015-11-04 09:56:26 +01001071 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001072 if (!handle)
1073 return;
1074
1075 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
1076 if (!acpi_gpio) {
Linus Walleij58383c782015-11-04 09:56:26 +01001077 dev_err(chip->parent,
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001078 "Failed to allocate memory for ACPI GPIO chip\n");
1079 return;
1080 }
1081
1082 acpi_gpio->chip = chip;
Mika Westerbergc103a102015-10-30 12:02:05 +02001083 INIT_LIST_HEAD(&acpi_gpio->events);
Hans de Goede78d3a922018-08-14 16:07:03 +02001084 INIT_LIST_HEAD(&acpi_gpio->deferred_req_irqs_list_entry);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001085
1086 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
1087 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001088 dev_err(chip->parent, "Failed to attach ACPI GPIO chip\n");
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001089 kfree(acpi_gpio);
1090 return;
1091 }
1092
Mika Westerberg4035cc12016-10-21 17:21:32 +03001093 if (!chip->names)
Christophe Leroy82270332017-12-15 15:02:33 +01001094 devprop_gpiochip_set_names(chip, dev_fwnode(chip->parent));
Mika Westerberg4035cc12016-10-21 17:21:32 +03001095
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001096 acpi_gpiochip_request_regions(acpi_gpio);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001097 acpi_gpiochip_scan_gpios(acpi_gpio);
Rui Zhang3f86a632016-06-15 08:47:51 +02001098 acpi_walk_dep_device_list(handle);
Mika Westerberg664e3e52014-01-08 12:40:54 +02001099}
1100
1101void acpi_gpiochip_remove(struct gpio_chip *chip)
1102{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001103 struct acpi_gpio_chip *acpi_gpio;
1104 acpi_handle handle;
1105 acpi_status status;
1106
Linus Walleij58383c782015-11-04 09:56:26 +01001107 if (!chip || !chip->parent)
Mika Westerberge9595f82014-03-31 15:16:49 +03001108 return;
1109
Linus Walleij58383c782015-11-04 09:56:26 +01001110 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001111 if (!handle)
1112 return;
1113
1114 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
1115 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001116 dev_warn(chip->parent, "Failed to retrieve ACPI GPIO chip\n");
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001117 return;
1118 }
1119
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001120 acpi_gpiochip_free_regions(acpi_gpio);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001121
1122 acpi_detach_data(handle, acpi_gpio_chip_dh);
1123 kfree(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +02001124}
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001125
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001126static int acpi_gpio_package_count(const union acpi_object *obj)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001127{
1128 const union acpi_object *element = obj->package.elements;
1129 const union acpi_object *end = element + obj->package.count;
1130 unsigned int count = 0;
1131
1132 while (element < end) {
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001133 switch (element->type) {
1134 case ACPI_TYPE_LOCAL_REFERENCE:
1135 element += 3;
1136 /* Fallthrough */
1137 case ACPI_TYPE_INTEGER:
1138 element++;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001139 count++;
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001140 break;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001141
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001142 default:
1143 return -EPROTO;
1144 }
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001145 }
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001146
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001147 return count;
1148}
1149
1150static int acpi_find_gpio_count(struct acpi_resource *ares, void *data)
1151{
1152 unsigned int *count = data;
1153
1154 if (ares->type == ACPI_RESOURCE_TYPE_GPIO)
1155 *count += ares->data.gpio.pin_table_length;
1156
1157 return 1;
1158}
1159
1160/**
1161 * acpi_gpio_count - return the number of GPIOs associated with a
1162 * device / function or -ENOENT if no GPIO has been
1163 * assigned to the requested function.
1164 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1165 * @con_id: function within the GPIO consumer
1166 */
1167int acpi_gpio_count(struct device *dev, const char *con_id)
1168{
1169 struct acpi_device *adev = ACPI_COMPANION(dev);
1170 const union acpi_object *obj;
1171 const struct acpi_gpio_mapping *gm;
1172 int count = -ENOENT;
1173 int ret;
1174 char propname[32];
1175 unsigned int i;
1176
1177 /* Try first from _DSD */
1178 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Andy Shevchenko9e665042017-05-23 20:03:17 +03001179 if (con_id)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001180 snprintf(propname, sizeof(propname), "%s-%s",
1181 con_id, gpio_suffixes[i]);
1182 else
1183 snprintf(propname, sizeof(propname), "%s",
1184 gpio_suffixes[i]);
1185
1186 ret = acpi_dev_get_property(adev, propname, ACPI_TYPE_ANY,
1187 &obj);
1188 if (ret == 0) {
1189 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE)
1190 count = 1;
1191 else if (obj->type == ACPI_TYPE_PACKAGE)
1192 count = acpi_gpio_package_count(obj);
1193 } else if (adev->driver_gpios) {
1194 for (gm = adev->driver_gpios; gm->name; gm++)
1195 if (strcmp(propname, gm->name) == 0) {
1196 count = gm->size;
1197 break;
1198 }
1199 }
Andy Shevchenko4ed55012017-02-20 18:15:46 +02001200 if (count > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001201 break;
1202 }
1203
1204 /* Then from plain _CRS GPIOs */
1205 if (count < 0) {
1206 struct list_head resource_list;
1207 unsigned int crs_count = 0;
1208
Andy Shevchenko6fe9da42017-05-23 20:03:20 +03001209 if (!acpi_can_fallback_to_crs(adev, con_id))
1210 return count;
1211
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001212 INIT_LIST_HEAD(&resource_list);
1213 acpi_dev_get_resources(adev, &resource_list,
1214 acpi_find_gpio_count, &crs_count);
1215 acpi_dev_free_resource_list(&resource_list);
1216 if (crs_count > 0)
1217 count = crs_count;
1218 }
Andy Shevchenko4ed55012017-02-20 18:15:46 +02001219 return count ? count : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001220}
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001221
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001222bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id)
1223{
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001224 /* Never allow fallback if the device has properties */
Mika Westerberg5f5e4892018-09-27 16:57:05 -05001225 if (acpi_dev_has_props(adev) || adev->driver_gpios)
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001226 return false;
1227
Andy Shevchenkof10e4bf2017-05-23 20:03:19 +03001228 return con_id == NULL;
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001229}
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001230
Hans de Goedee59f5e02018-11-28 17:57:55 +01001231/* Run deferred acpi_gpiochip_request_irqs() */
1232static int acpi_gpio_handle_deferred_request_irqs(void)
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001233{
Hans de Goede78d3a922018-08-14 16:07:03 +02001234 struct acpi_gpio_chip *acpi_gpio, *tmp;
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001235
Hans de Goede78d3a922018-08-14 16:07:03 +02001236 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
1237 list_for_each_entry_safe(acpi_gpio, tmp,
1238 &acpi_gpio_deferred_req_irqs_list,
Hans de Goedee59f5e02018-11-28 17:57:55 +01001239 deferred_req_irqs_list_entry)
1240 acpi_gpiochip_request_irqs(acpi_gpio);
Hans de Goede78d3a922018-08-14 16:07:03 +02001241
1242 acpi_gpio_deferred_req_irqs_done = true;
1243 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001244
1245 return 0;
1246}
1247/* We must use _sync so that this runs after the first deferred_probe run */
Hans de Goedee59f5e02018-11-28 17:57:55 +01001248late_initcall_sync(acpi_gpio_handle_deferred_request_irqs);