blob: c5e009f610210d5781dfef0e90f8049ce19eaa86 [file] [log] [blame]
Mathias Nymane29482e2012-11-30 12:37:36 +01001/*
2 * ACPI helpers for GPIO API
3 *
4 * Copyright (C) 2012, Intel Corporation
5 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
6 * Mika Westerberg <mika.westerberg@linux.intel.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/errno.h>
Mika Westerberg354567e2014-11-03 13:01:32 +020014#include <linux/gpio.h>
Mika Westerberg936e15d2013-10-10 11:01:08 +030015#include <linux/gpio/consumer.h>
Mika Westerberg5ccff852014-01-08 12:40:56 +020016#include <linux/gpio/driver.h>
Linus Walleij031ba282016-10-03 10:40:03 +020017#include <linux/gpio/machine.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010018#include <linux/export.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010019#include <linux/acpi.h>
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020020#include <linux/interrupt.h>
Mika Westerberg473ed7b2014-03-14 17:58:07 +020021#include <linux/mutex.h>
Mika Westerberg354567e2014-11-03 13:01:32 +020022#include <linux/pinctrl/pinctrl.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010023
Mika Westerberg5ccff852014-01-08 12:40:56 +020024#include "gpiolib.h"
25
Hans de Goede1f515272018-11-28 17:57:55 +010026/**
27 * struct acpi_gpio_event - ACPI GPIO event handler data
28 *
29 * @node: list-entry of the events list of the struct acpi_gpio_chip
30 * @handle: handle of ACPI method to execute when the IRQ triggers
31 * @handler: irq_handler to pass to request_irq when requesting the IRQ
32 * @pin: GPIO pin number on the gpio_chip
33 * @irq: Linux IRQ number for the event, for request_ / free_irq
34 * @irqflags: flags to pass to request_irq when requesting the IRQ
35 * @irq_is_wake: If the ACPI flags indicate the IRQ is a wakeup source
36 * @is_requested: True if request_irq has been done
37 * @desc: gpio_desc for the GPIO pin for this event
38 */
Mika Westerberg4b01a142014-03-10 14:54:52 +020039struct acpi_gpio_event {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020040 struct list_head node;
Mika Westerberg4b01a142014-03-10 14:54:52 +020041 acpi_handle handle;
Hans de Goede1f515272018-11-28 17:57:55 +010042 irq_handler_t handler;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020043 unsigned int pin;
44 unsigned int irq;
Hans de Goede1f515272018-11-28 17:57:55 +010045 unsigned long irqflags;
46 bool irq_is_wake;
47 bool irq_requested;
Alexandre Courbote46cf322014-08-19 10:06:08 -070048 struct gpio_desc *desc;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020049};
50
Mika Westerberg473ed7b2014-03-14 17:58:07 +020051struct acpi_gpio_connection {
52 struct list_head node;
Alexandre Courbote46cf322014-08-19 10:06:08 -070053 unsigned int pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +020054 struct gpio_desc *desc;
55};
56
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020057struct acpi_gpio_chip {
Mika Westerberg473ed7b2014-03-14 17:58:07 +020058 /*
59 * ACPICA requires that the first field of the context parameter
60 * passed to acpi_install_address_space_handler() is large enough
61 * to hold struct acpi_connection_info.
62 */
63 struct acpi_connection_info conn_info;
64 struct list_head conns;
65 struct mutex conn_lock;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020066 struct gpio_chip *chip;
Mika Westerberg4b01a142014-03-10 14:54:52 +020067 struct list_head events;
Hans de Goede78d3a922018-08-14 16:07:03 +020068 struct list_head deferred_req_irqs_list_entry;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020069};
70
Hans de Goede78d3a922018-08-14 16:07:03 +020071/*
72 * For gpiochips which call acpi_gpiochip_request_interrupts() before late_init
Hans de Goede1f515272018-11-28 17:57:55 +010073 * (so builtin drivers) we register the ACPI GpioInt IRQ handlers from a
Hans de Goede78d3a922018-08-14 16:07:03 +020074 * late_initcall_sync handler, so that other builtin drivers can register their
75 * OpRegions before the event handlers can run. This list contains gpiochips
Hans de Goede1f515272018-11-28 17:57:55 +010076 * for which the acpi_gpiochip_request_irqs() call has been deferred.
Hans de Goede78d3a922018-08-14 16:07:03 +020077 */
78static DEFINE_MUTEX(acpi_gpio_deferred_req_irqs_lock);
79static LIST_HEAD(acpi_gpio_deferred_req_irqs_list);
80static bool acpi_gpio_deferred_req_irqs_done;
Benjamin Tissoiresca876c72018-07-12 17:25:06 +020081
Mathias Nymane29482e2012-11-30 12:37:36 +010082static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
83{
Linus Walleij58383c782015-11-04 09:56:26 +010084 if (!gc->parent)
Mathias Nymane29482e2012-11-30 12:37:36 +010085 return false;
86
Linus Walleij58383c782015-11-04 09:56:26 +010087 return ACPI_HANDLE(gc->parent) == data;
Mathias Nymane29482e2012-11-30 12:37:36 +010088}
89
90/**
Mika Westerberg936e15d2013-10-10 11:01:08 +030091 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
Mathias Nymane29482e2012-11-30 12:37:36 +010092 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
93 * @pin: ACPI GPIO pin number (0-based, controller-relative)
94 *
Mika Westerbergf35bbf612015-06-10 16:05:05 +030095 * Return: GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
96 * error value. Specifically returns %-EPROBE_DEFER if the referenced GPIO
97 * controller does not have gpiochip registered at the moment. This is to
98 * support probe deferral.
Mathias Nymane29482e2012-11-30 12:37:36 +010099 */
Mika Westerberg936e15d2013-10-10 11:01:08 +0300100static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
Mathias Nymane29482e2012-11-30 12:37:36 +0100101{
102 struct gpio_chip *chip;
103 acpi_handle handle;
104 acpi_status status;
105
106 status = acpi_get_handle(NULL, path, &handle);
107 if (ACPI_FAILURE(status))
Mika Westerberg936e15d2013-10-10 11:01:08 +0300108 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +0100109
110 chip = gpiochip_find(handle, acpi_gpiochip_find);
111 if (!chip)
Mika Westerbergf35bbf612015-06-10 16:05:05 +0300112 return ERR_PTR(-EPROBE_DEFER);
Mathias Nymane29482e2012-11-30 12:37:36 +0100113
Mika Westerberg03c47492017-11-27 16:54:42 +0300114 return gpiochip_get_desc(chip, pin);
Mathias Nymane29482e2012-11-30 12:37:36 +0100115}
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200116
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200117static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
118{
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200119 struct acpi_gpio_event *event = data;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200120
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200121 acpi_evaluate_object(event->handle, NULL, NULL, NULL);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200122
123 return IRQ_HANDLED;
124}
125
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200126static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
127{
Mika Westerberg4b01a142014-03-10 14:54:52 +0200128 struct acpi_gpio_event *event = data;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200129
Mika Westerberg4b01a142014-03-10 14:54:52 +0200130 acpi_execute_simple_method(event->handle, NULL, event->pin);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200131
132 return IRQ_HANDLED;
133}
134
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200135static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200136{
137 /* The address of this function is used as a key. */
138}
139
Andy Shevchenko25e3ef82017-05-23 20:03:24 +0300140bool acpi_gpio_get_irq_resource(struct acpi_resource *ares,
141 struct acpi_resource_gpio **agpio)
142{
143 struct acpi_resource_gpio *gpio;
144
145 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
146 return false;
147
148 gpio = &ares->data.gpio;
149 if (gpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
150 return false;
151
152 *agpio = gpio;
153 return true;
154}
155EXPORT_SYMBOL_GPL(acpi_gpio_get_irq_resource);
156
Hans de Goede1f515272018-11-28 17:57:55 +0100157static void acpi_gpiochip_request_irq(struct acpi_gpio_chip *acpi_gpio,
158 struct acpi_gpio_event *event)
159{
160 int ret, value;
161
162 ret = request_threaded_irq(event->irq, NULL, event->handler,
163 event->irqflags, "ACPI:Event", event);
164 if (ret) {
165 dev_err(acpi_gpio->chip->parent,
166 "Failed to setup interrupt handler for %d\n",
167 event->irq);
168 return;
169 }
170
171 if (event->irq_is_wake)
172 enable_irq_wake(event->irq);
173
174 event->irq_requested = true;
175
176 /* Make sure we trigger the initial state of edge-triggered IRQs */
177 value = gpiod_get_raw_value_cansleep(event->desc);
178 if (((event->irqflags & IRQF_TRIGGER_RISING) && value == 1) ||
179 ((event->irqflags & IRQF_TRIGGER_FALLING) && value == 0))
180 event->handler(event->irq, event);
181}
182
183static void acpi_gpiochip_request_irqs(struct acpi_gpio_chip *acpi_gpio)
184{
185 struct acpi_gpio_event *event;
186
187 list_for_each_entry(event, &acpi_gpio->events, node)
188 acpi_gpiochip_request_irq(acpi_gpio, event);
189}
190
191static acpi_status acpi_gpiochip_alloc_event(struct acpi_resource *ares,
192 void *context)
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200193{
194 struct acpi_gpio_chip *acpi_gpio = context;
195 struct gpio_chip *chip = acpi_gpio->chip;
196 struct acpi_resource_gpio *agpio;
197 acpi_handle handle, evt_handle;
198 struct acpi_gpio_event *event;
199 irq_handler_t handler = NULL;
200 struct gpio_desc *desc;
Hans de Goede1f515272018-11-28 17:57:55 +0100201 int ret, pin, irq;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200202
Andy Shevchenko25e3ef82017-05-23 20:03:24 +0300203 if (!acpi_gpio_get_irq_resource(ares, &agpio))
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200204 return AE_OK;
205
Linus Walleij58383c782015-11-04 09:56:26 +0100206 handle = ACPI_HANDLE(chip->parent);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200207 pin = agpio->pin_table[0];
208
209 if (pin <= 255) {
210 char ev_name[5];
Arnd Bergmanne40a3ae2017-09-06 17:47:45 +0200211 sprintf(ev_name, "_%c%02hhX",
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200212 agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
213 pin);
214 if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
215 handler = acpi_gpio_irq_handler;
216 }
217 if (!handler) {
218 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
219 handler = acpi_gpio_irq_handler_evt;
220 }
221 if (!handler)
Hans de Goedec06632e2017-06-23 09:26:13 +0200222 return AE_OK;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200223
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700224 desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200225 if (IS_ERR(desc)) {
Linus Walleij58383c782015-11-04 09:56:26 +0100226 dev_err(chip->parent, "Failed to request GPIO\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200227 return AE_ERROR;
228 }
229
230 gpiod_direction_input(desc);
231
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900232 ret = gpiochip_lock_as_irq(chip, pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200233 if (ret) {
Linus Walleij58383c782015-11-04 09:56:26 +0100234 dev_err(chip->parent, "Failed to lock GPIO as interrupt\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200235 goto fail_free_desc;
236 }
237
238 irq = gpiod_to_irq(desc);
239 if (irq < 0) {
Linus Walleij58383c782015-11-04 09:56:26 +0100240 dev_err(chip->parent, "Failed to translate GPIO to IRQ\n");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200241 goto fail_unlock_irq;
242 }
243
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200244 event = kzalloc(sizeof(*event), GFP_KERNEL);
245 if (!event)
246 goto fail_unlock_irq;
247
Hans de Goede1f515272018-11-28 17:57:55 +0100248 event->irqflags = IRQF_ONESHOT;
249 if (agpio->triggering == ACPI_LEVEL_SENSITIVE) {
250 if (agpio->polarity == ACPI_ACTIVE_HIGH)
251 event->irqflags |= IRQF_TRIGGER_HIGH;
252 else
253 event->irqflags |= IRQF_TRIGGER_LOW;
254 } else {
255 switch (agpio->polarity) {
256 case ACPI_ACTIVE_HIGH:
257 event->irqflags |= IRQF_TRIGGER_RISING;
258 break;
259 case ACPI_ACTIVE_LOW:
260 event->irqflags |= IRQF_TRIGGER_FALLING;
261 break;
262 default:
263 event->irqflags |= IRQF_TRIGGER_RISING |
264 IRQF_TRIGGER_FALLING;
265 break;
266 }
267 }
268
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200269 event->handle = evt_handle;
Hans de Goede1f515272018-11-28 17:57:55 +0100270 event->handler = handler;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200271 event->irq = irq;
Hans de Goede1f515272018-11-28 17:57:55 +0100272 event->irq_is_wake = agpio->wake_capable == ACPI_WAKE_CAPABLE;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200273 event->pin = pin;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700274 event->desc = desc;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200275
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200276 list_add_tail(&event->node, &acpi_gpio->events);
Benjamin Tissoiresca876c72018-07-12 17:25:06 +0200277
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200278 return AE_OK;
279
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200280fail_unlock_irq:
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900281 gpiochip_unlock_as_irq(chip, pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200282fail_free_desc:
283 gpiochip_free_own_desc(desc);
284
285 return AE_ERROR;
286}
287
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200288/**
289 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300290 * @chip: GPIO chip
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200291 *
292 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
293 * handled by ACPI event methods which need to be called from the GPIO
294 * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
295 * gpio pins have acpi event methods and assigns interrupt handlers that calls
296 * the acpi event methods for those pins.
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200297 */
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300298void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200299{
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300300 struct acpi_gpio_chip *acpi_gpio;
301 acpi_handle handle;
302 acpi_status status;
Hans de Goede78d3a922018-08-14 16:07:03 +0200303 bool defer;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200304
Linus Walleij58383c782015-11-04 09:56:26 +0100305 if (!chip->parent || !chip->to_irq)
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300306 return;
307
Linus Walleij58383c782015-11-04 09:56:26 +0100308 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300309 if (!handle)
310 return;
311
312 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
313 if (ACPI_FAILURE(status))
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200314 return;
315
Hans de Goede1f515272018-11-28 17:57:55 +0100316 acpi_walk_resources(handle, "_AEI",
317 acpi_gpiochip_alloc_event, acpi_gpio);
318
Hans de Goede78d3a922018-08-14 16:07:03 +0200319 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
320 defer = !acpi_gpio_deferred_req_irqs_done;
321 if (defer)
322 list_add(&acpi_gpio->deferred_req_irqs_list_entry,
323 &acpi_gpio_deferred_req_irqs_list);
324 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
325
326 if (defer)
327 return;
328
Hans de Goede1f515272018-11-28 17:57:55 +0100329 acpi_gpiochip_request_irqs(acpi_gpio);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200330}
Hanjun Guo2b528ff2015-06-10 17:12:07 +0800331EXPORT_SYMBOL_GPL(acpi_gpiochip_request_interrupts);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200332
Mika Westerberg70b53412013-10-10 11:01:07 +0300333/**
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200334 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300335 * @chip: GPIO chip
Mika Westerberg70b53412013-10-10 11:01:07 +0300336 *
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200337 * Free interrupts associated with GPIO ACPI event method for the given
338 * GPIO chip.
Mika Westerberg70b53412013-10-10 11:01:07 +0300339 */
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300340void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
Mika Westerberg70b53412013-10-10 11:01:07 +0300341{
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300342 struct acpi_gpio_chip *acpi_gpio;
Mika Westerberg4b01a142014-03-10 14:54:52 +0200343 struct acpi_gpio_event *event, *ep;
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300344 acpi_handle handle;
345 acpi_status status;
Mika Westerberg70b53412013-10-10 11:01:07 +0300346
Linus Walleij58383c782015-11-04 09:56:26 +0100347 if (!chip->parent || !chip->to_irq)
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300348 return;
349
Linus Walleij58383c782015-11-04 09:56:26 +0100350 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300351 if (!handle)
352 return;
353
354 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
355 if (ACPI_FAILURE(status))
Mika Westerberg70b53412013-10-10 11:01:07 +0300356 return;
357
Hans de Goede78d3a922018-08-14 16:07:03 +0200358 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
359 if (!list_empty(&acpi_gpio->deferred_req_irqs_list_entry))
360 list_del_init(&acpi_gpio->deferred_req_irqs_list_entry);
361 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
362
Mika Westerberg4b01a142014-03-10 14:54:52 +0200363 list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200364 struct gpio_desc *desc;
365
Hans de Goede1f515272018-11-28 17:57:55 +0100366 if (event->irq_requested) {
367 if (event->irq_is_wake)
368 disable_irq_wake(event->irq);
Hans de Goede8a146fb2017-03-24 11:08:47 +0100369
Hans de Goede1f515272018-11-28 17:57:55 +0100370 free_irq(event->irq, event);
371 }
372
Alexandre Courbote46cf322014-08-19 10:06:08 -0700373 desc = event->desc;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200374 if (WARN_ON(IS_ERR(desc)))
375 continue;
Alexandre Courbote3a2e872014-10-23 17:27:07 +0900376 gpiochip_unlock_as_irq(chip, event->pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200377 gpiochip_free_own_desc(desc);
Mika Westerberg4b01a142014-03-10 14:54:52 +0200378 list_del(&event->node);
379 kfree(event);
Mika Westerberg70b53412013-10-10 11:01:07 +0300380 }
Mika Westerberg70b53412013-10-10 11:01:07 +0300381}
Hanjun Guo2b528ff2015-06-10 17:12:07 +0800382EXPORT_SYMBOL_GPL(acpi_gpiochip_free_interrupts);
Mika Westerberg70b53412013-10-10 11:01:07 +0300383
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100384int acpi_dev_add_driver_gpios(struct acpi_device *adev,
385 const struct acpi_gpio_mapping *gpios)
386{
387 if (adev && gpios) {
388 adev->driver_gpios = gpios;
389 return 0;
390 }
391 return -EINVAL;
392}
393EXPORT_SYMBOL_GPL(acpi_dev_add_driver_gpios);
394
Andy Shevchenko85c73d52017-03-02 15:48:05 +0200395static void devm_acpi_dev_release_driver_gpios(struct device *dev, void *res)
396{
397 acpi_dev_remove_driver_gpios(ACPI_COMPANION(dev));
398}
399
400int devm_acpi_dev_add_driver_gpios(struct device *dev,
401 const struct acpi_gpio_mapping *gpios)
402{
403 void *res;
404 int ret;
405
406 res = devres_alloc(devm_acpi_dev_release_driver_gpios, 0, GFP_KERNEL);
407 if (!res)
408 return -ENOMEM;
409
410 ret = acpi_dev_add_driver_gpios(ACPI_COMPANION(dev), gpios);
411 if (ret) {
412 devres_free(res);
413 return ret;
414 }
415 devres_add(dev, res);
416 return 0;
417}
418EXPORT_SYMBOL_GPL(devm_acpi_dev_add_driver_gpios);
419
420void devm_acpi_dev_remove_driver_gpios(struct device *dev)
421{
422 WARN_ON(devres_release(dev, devm_acpi_dev_release_driver_gpios, NULL, NULL));
423}
424EXPORT_SYMBOL_GPL(devm_acpi_dev_remove_driver_gpios);
425
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100426static bool acpi_get_driver_gpio_data(struct acpi_device *adev,
427 const char *name, int index,
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300428 struct fwnode_reference_args *args,
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200429 unsigned int *quirks)
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100430{
431 const struct acpi_gpio_mapping *gm;
432
433 if (!adev->driver_gpios)
434 return false;
435
436 for (gm = adev->driver_gpios; gm->name; gm++)
437 if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
438 const struct acpi_gpio_params *par = gm->data + index;
439
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300440 args->fwnode = acpi_fwnode_handle(adev);
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100441 args->args[0] = par->crs_entry_index;
442 args->args[1] = par->line_index;
443 args->args[2] = par->active_low;
444 args->nargs = 3;
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200445
446 *quirks = gm->quirks;
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100447 return true;
448 }
449
450 return false;
451}
452
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300453static enum gpiod_flags
454acpi_gpio_to_gpiod_flags(const struct acpi_resource_gpio *agpio)
455{
456 bool pull_up = agpio->pin_config == ACPI_PIN_CONFIG_PULLUP;
457
458 switch (agpio->io_restriction) {
459 case ACPI_IO_RESTRICT_INPUT:
460 return GPIOD_IN;
461 case ACPI_IO_RESTRICT_OUTPUT:
462 /*
463 * ACPI GPIO resources don't contain an initial value for the
464 * GPIO. Therefore we deduce that value from the pull field
465 * instead. If the pin is pulled up we assume default to be
466 * high, otherwise low.
467 */
468 return pull_up ? GPIOD_OUT_HIGH : GPIOD_OUT_LOW;
469 default:
470 /*
471 * Assume that the BIOS has configured the direction and pull
472 * accordingly.
473 */
474 return GPIOD_ASIS;
475 }
476}
477
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200478static int
479__acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, enum gpiod_flags update)
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300480{
481 int ret = 0;
482
483 /*
484 * Check if the BIOS has IoRestriction with explicitly set direction
485 * and update @flags accordingly. Otherwise use whatever caller asked
486 * for.
487 */
488 if (update & GPIOD_FLAGS_BIT_DIR_SET) {
489 enum gpiod_flags diff = *flags ^ update;
490
491 /*
492 * Check if caller supplied incompatible GPIO initialization
493 * flags.
494 *
495 * Return %-EINVAL to notify that firmware has different
496 * settings and we are going to use them.
497 */
498 if (((*flags & GPIOD_FLAGS_BIT_DIR_SET) && (diff & GPIOD_FLAGS_BIT_DIR_OUT)) ||
499 ((*flags & GPIOD_FLAGS_BIT_DIR_OUT) && (diff & GPIOD_FLAGS_BIT_DIR_VAL)))
500 ret = -EINVAL;
501 *flags = update;
502 }
503 return ret;
504}
505
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200506int
507acpi_gpio_update_gpiod_flags(enum gpiod_flags *flags, struct acpi_gpio_info *info)
508{
509 struct device *dev = &info->adev->dev;
Andy Shevchenko1b2ca322017-11-10 15:40:33 +0200510 enum gpiod_flags old = *flags;
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200511 int ret;
512
Andy Shevchenko1b2ca322017-11-10 15:40:33 +0200513 ret = __acpi_gpio_update_gpiod_flags(&old, info->flags);
514 if (info->quirks & ACPI_GPIO_QUIRK_NO_IO_RESTRICTION) {
515 if (ret)
516 dev_warn(dev, FW_BUG "GPIO not in correct mode, fixing\n");
517 } else {
518 if (ret)
519 dev_dbg(dev, "Override GPIO initialization flags\n");
520 *flags = old;
521 }
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200522
523 return ret;
524}
525
Mika Westerberg12028d22013-04-03 13:56:54 +0300526struct acpi_gpio_lookup {
527 struct acpi_gpio_info info;
528 int index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100529 int pin_index;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200530 bool active_low;
Mika Westerberg936e15d2013-10-10 11:01:08 +0300531 struct gpio_desc *desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300532 int n;
533};
534
Linus Walleij031ba282016-10-03 10:40:03 +0200535static int acpi_populate_gpio_lookup(struct acpi_resource *ares, void *data)
Mika Westerberg12028d22013-04-03 13:56:54 +0300536{
537 struct acpi_gpio_lookup *lookup = data;
538
539 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
540 return 1;
541
Mika Westerberg936e15d2013-10-10 11:01:08 +0300542 if (lookup->n++ == lookup->index && !lookup->desc) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300543 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100544 int pin_index = lookup->pin_index;
545
546 if (pin_index >= agpio->pin_table_length)
547 return 1;
Mika Westerberg12028d22013-04-03 13:56:54 +0300548
Mika Westerberg936e15d2013-10-10 11:01:08 +0300549 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100550 agpio->pin_table[pin_index]);
Mika Westerberg12028d22013-04-03 13:56:54 +0300551 lookup->info.gpioint =
552 agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100553
554 /*
Andy Shevchenkoe567c352017-01-03 19:01:18 +0200555 * Polarity and triggering are only specified for GpioInt
556 * resource.
Christophe RICARD52044722015-12-23 23:25:34 +0100557 * Note: we expect here:
558 * - ACPI_ACTIVE_LOW == GPIO_ACTIVE_LOW
559 * - ACPI_ACTIVE_HIGH == GPIO_ACTIVE_HIGH
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100560 */
Christophe RICARD52044722015-12-23 23:25:34 +0100561 if (lookup->info.gpioint) {
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300562 lookup->info.flags = GPIOD_IN;
Christophe RICARD52044722015-12-23 23:25:34 +0100563 lookup->info.polarity = agpio->polarity;
564 lookup->info.triggering = agpio->triggering;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300565 } else {
566 lookup->info.flags = acpi_gpio_to_gpiod_flags(agpio);
Andy Shevchenkof67a6c12017-11-10 15:40:28 +0200567 lookup->info.polarity = lookup->active_low;
Christophe RICARD52044722015-12-23 23:25:34 +0100568 }
Mika Westerberg12028d22013-04-03 13:56:54 +0300569 }
570
571 return 1;
572}
573
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200574static int acpi_gpio_resource_lookup(struct acpi_gpio_lookup *lookup,
575 struct acpi_gpio_info *info)
576{
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200577 struct acpi_device *adev = lookup->info.adev;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200578 struct list_head res_list;
579 int ret;
580
581 INIT_LIST_HEAD(&res_list);
582
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200583 ret = acpi_dev_get_resources(adev, &res_list,
Linus Walleij031ba282016-10-03 10:40:03 +0200584 acpi_populate_gpio_lookup,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200585 lookup);
586 if (ret < 0)
587 return ret;
588
589 acpi_dev_free_resource_list(&res_list);
590
591 if (!lookup->desc)
592 return -ENOENT;
593
Andy Shevchenkof67a6c12017-11-10 15:40:28 +0200594 if (info)
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200595 *info = lookup->info;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200596 return 0;
597}
598
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200599static int acpi_gpio_property_lookup(struct fwnode_handle *fwnode,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200600 const char *propname, int index,
601 struct acpi_gpio_lookup *lookup)
602{
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300603 struct fwnode_reference_args args;
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200604 unsigned int quirks = 0;
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200605 int ret;
606
607 memset(&args, 0, sizeof(args));
Mika Westerberg6f7194a2016-10-21 17:21:29 +0300608 ret = __acpi_node_get_property_reference(fwnode, propname, index, 3,
609 &args);
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200610 if (ret) {
611 struct acpi_device *adev = to_acpi_device_node(fwnode);
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200612
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200613 if (!adev)
614 return ret;
615
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200616 if (!acpi_get_driver_gpio_data(adev, propname, index, &args,
617 &quirks))
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200618 return ret;
619 }
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200620 /*
621 * The property was found and resolved, so need to lookup the GPIO based
622 * on returned args.
623 */
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300624 if (!to_acpi_device_node(args.fwnode))
625 return -EINVAL;
Mika Westerberg6f7194a2016-10-21 17:21:29 +0300626 if (args.nargs != 3)
627 return -EPROTO;
628
629 lookup->index = args.args[0];
630 lookup->pin_index = args.args[1];
631 lookup->active_low = !!args.args[2];
632
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300633 lookup->info.adev = to_acpi_device_node(args.fwnode);
Andy Shevchenkoce0929d2017-11-10 15:40:32 +0200634 lookup->info.quirks = quirks;
Sakari Ailus977d5ad2018-07-17 17:19:11 +0300635
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200636 return 0;
637}
638
Mika Westerberg12028d22013-04-03 13:56:54 +0300639/**
Mika Westerberg936e15d2013-10-10 11:01:08 +0300640 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100641 * @adev: pointer to a ACPI device to get GPIO from
642 * @propname: Property name of the GPIO (optional)
Mika Westerberg12028d22013-04-03 13:56:54 +0300643 * @index: index of GpioIo/GpioInt resource (starting from %0)
644 * @info: info pointer to fill in (optional)
645 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100646 * Function goes through ACPI resources for @adev and based on @index looks
Mika Westerberg936e15d2013-10-10 11:01:08 +0300647 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
Mika Westerberg12028d22013-04-03 13:56:54 +0300648 * and returns it. @index matches GpioIo/GpioInt resources only so if there
649 * are total %3 GPIO resources, the index goes from %0 to %2.
650 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100651 * If @propname is specified the GPIO is looked using device property. In
652 * that case @index is used to select the GPIO entry in the property value
653 * (in case of multiple).
654 *
Mika Westerberg936e15d2013-10-10 11:01:08 +0300655 * If the GPIO cannot be translated or there is an error an ERR_PTR is
Mika Westerberg12028d22013-04-03 13:56:54 +0300656 * returned.
657 *
658 * Note: if the GPIO resource has multiple entries in the pin list, this
659 * function only returns the first.
660 */
Linus Walleij031ba282016-10-03 10:40:03 +0200661static struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100662 const char *propname, int index,
Mika Westerberg936e15d2013-10-10 11:01:08 +0300663 struct acpi_gpio_info *info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300664{
665 struct acpi_gpio_lookup lookup;
Mika Westerberg12028d22013-04-03 13:56:54 +0300666 int ret;
667
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100668 if (!adev)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300669 return ERR_PTR(-ENODEV);
Mika Westerberg12028d22013-04-03 13:56:54 +0300670
671 memset(&lookup, 0, sizeof(lookup));
672 lookup.index = index;
Mika Westerberg12028d22013-04-03 13:56:54 +0300673
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100674 if (propname) {
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100675 dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);
676
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200677 ret = acpi_gpio_property_lookup(acpi_fwnode_handle(adev),
678 propname, index, &lookup);
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200679 if (ret)
680 return ERR_PTR(ret);
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100681
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200682 dev_dbg(&adev->dev, "GPIO: _DSD returned %s %d %d %u\n",
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200683 dev_name(&lookup.info.adev->dev), lookup.index,
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200684 lookup.pin_index, lookup.active_low);
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100685 } else {
686 dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
Andy Shevchenko5870cff472017-11-10 15:40:30 +0200687 lookup.info.adev = adev;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100688 }
689
Rafael J. Wysockid0795242015-08-27 04:41:33 +0200690 ret = acpi_gpio_resource_lookup(&lookup, info);
691 return ret ? ERR_PTR(ret) : lookup.desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300692}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200693
Linus Walleij031ba282016-10-03 10:40:03 +0200694struct gpio_desc *acpi_find_gpio(struct device *dev,
695 const char *con_id,
696 unsigned int idx,
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300697 enum gpiod_flags *dflags,
Linus Walleij031ba282016-10-03 10:40:03 +0200698 enum gpio_lookup_flags *lookupflags)
699{
700 struct acpi_device *adev = ACPI_COMPANION(dev);
701 struct acpi_gpio_info info;
702 struct gpio_desc *desc;
703 char propname[32];
704 int i;
705
706 /* Try first from _DSD */
707 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Andy Shevchenko9e665042017-05-23 20:03:17 +0300708 if (con_id) {
Linus Walleij031ba282016-10-03 10:40:03 +0200709 snprintf(propname, sizeof(propname), "%s-%s",
710 con_id, gpio_suffixes[i]);
711 } else {
712 snprintf(propname, sizeof(propname), "%s",
713 gpio_suffixes[i]);
714 }
715
716 desc = acpi_get_gpiod_by_index(adev, propname, idx, &info);
Dmitry Torokhov693bdaa2017-03-23 13:21:38 -0700717 if (!IS_ERR(desc))
Linus Walleij031ba282016-10-03 10:40:03 +0200718 break;
Dmitry Torokhov693bdaa2017-03-23 13:21:38 -0700719 if (PTR_ERR(desc) == -EPROBE_DEFER)
720 return ERR_CAST(desc);
Linus Walleij031ba282016-10-03 10:40:03 +0200721 }
722
723 /* Then from plain _CRS GPIOs */
724 if (IS_ERR(desc)) {
725 if (!acpi_can_fallback_to_crs(adev, con_id))
726 return ERR_PTR(-ENOENT);
727
728 desc = acpi_get_gpiod_by_index(adev, NULL, idx, &info);
729 if (IS_ERR(desc))
730 return desc;
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300731 }
Linus Walleij031ba282016-10-03 10:40:03 +0200732
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300733 if (info.gpioint &&
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300734 (*dflags == GPIOD_OUT_LOW || *dflags == GPIOD_OUT_HIGH)) {
Andy Shevchenkofe06b562017-05-23 20:03:18 +0300735 dev_dbg(dev, "refusing GpioInt() entry when doing GPIOD_OUT_* lookup\n");
736 return ERR_PTR(-ENOENT);
Linus Walleij031ba282016-10-03 10:40:03 +0200737 }
738
739 if (info.polarity == GPIO_ACTIVE_LOW)
740 *lookupflags |= GPIO_ACTIVE_LOW;
741
Andy Shevchenko5c34b6c2017-11-10 15:40:31 +0200742 acpi_gpio_update_gpiod_flags(dflags, &info);
Linus Walleij031ba282016-10-03 10:40:03 +0200743 return desc;
744}
745
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300746/**
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200747 * acpi_node_get_gpiod() - get a GPIO descriptor from ACPI resources
748 * @fwnode: pointer to an ACPI firmware node to get the GPIO information from
749 * @propname: Property name of the GPIO
750 * @index: index of GpioIo/GpioInt resource (starting from %0)
751 * @info: info pointer to fill in (optional)
752 *
753 * If @fwnode is an ACPI device object, call %acpi_get_gpiod_by_index() for it.
754 * Otherwise (ie. it is a data-only non-device object), use the property-based
755 * GPIO lookup to get to the GPIO resource with the relevant information and use
756 * that to obtain the GPIO descriptor to return.
757 */
758struct gpio_desc *acpi_node_get_gpiod(struct fwnode_handle *fwnode,
759 const char *propname, int index,
760 struct acpi_gpio_info *info)
761{
762 struct acpi_gpio_lookup lookup;
763 struct acpi_device *adev;
764 int ret;
765
766 adev = to_acpi_device_node(fwnode);
767 if (adev)
768 return acpi_get_gpiod_by_index(adev, propname, index, info);
769
770 if (!is_acpi_data_node(fwnode))
771 return ERR_PTR(-ENODEV);
772
773 if (!propname)
774 return ERR_PTR(-EINVAL);
775
776 memset(&lookup, 0, sizeof(lookup));
777 lookup.index = index;
778
779 ret = acpi_gpio_property_lookup(fwnode, propname, index, &lookup);
780 if (ret)
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200781 return ERR_PTR(ret);
782
Rafael J. Wysocki504a3372015-08-27 04:42:33 +0200783 ret = acpi_gpio_resource_lookup(&lookup, info);
784 return ret ? ERR_PTR(ret) : lookup.desc;
Mika Westerberg664e3e52014-01-08 12:40:54 +0200785}
786
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300787/**
788 * acpi_dev_gpio_irq_get() - Find GpioInt and translate it to Linux IRQ number
789 * @adev: pointer to a ACPI device to get IRQ from
790 * @index: index of GpioInt resource (starting from %0)
791 *
792 * If the device has one or more GpioInt resources, this function can be
793 * used to translate from the GPIO offset in the resource to the Linux IRQ
794 * number.
795 *
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300796 * The function is idempotent, though each time it runs it will configure GPIO
797 * pin direction according to the flags in GpioInt resource.
798 *
Thierry Redingdb05c7e2017-07-24 16:57:25 +0200799 * Return: Linux IRQ number (> %0) on success, negative errno on failure.
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300800 */
801int acpi_dev_gpio_irq_get(struct acpi_device *adev, int index)
802{
803 int idx, i;
Christophe RICARD52044722015-12-23 23:25:34 +0100804 unsigned int irq_flags;
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300805 int ret;
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300806
807 for (i = 0, idx = 0; idx <= index; i++) {
808 struct acpi_gpio_info info;
809 struct gpio_desc *desc;
810
811 desc = acpi_get_gpiod_by_index(adev, NULL, i, &info);
Christophe RICARD52044722015-12-23 23:25:34 +0100812
Hans de Goede6798d722017-03-13 23:04:21 +0100813 /* Ignore -EPROBE_DEFER, it only matters if idx matches */
814 if (IS_ERR(desc) && PTR_ERR(desc) != -EPROBE_DEFER)
815 return PTR_ERR(desc);
816
817 if (info.gpioint && idx++ == index) {
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300818 char label[32];
Hans de Goede6798d722017-03-13 23:04:21 +0100819 int irq;
820
821 if (IS_ERR(desc))
822 return PTR_ERR(desc);
823
824 irq = gpiod_to_irq(desc);
Christophe RICARD52044722015-12-23 23:25:34 +0100825 if (irq < 0)
826 return irq;
827
Andy Shevchenkoa31f5c32017-05-23 20:03:23 +0300828 snprintf(label, sizeof(label), "GpioInt() %d", index);
829 ret = gpiod_configure_flags(desc, label, 0, info.flags);
830 if (ret < 0)
831 return ret;
832
Christophe RICARD52044722015-12-23 23:25:34 +0100833 irq_flags = acpi_dev_get_irq_type(info.triggering,
834 info.polarity);
835
836 /* Set type if specified and different than the current one */
837 if (irq_flags != IRQ_TYPE_NONE &&
838 irq_flags != irq_get_trigger_type(irq))
839 irq_set_irq_type(irq, irq_flags);
840
841 return irq;
842 }
843
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300844 }
Hans de Goede6798d722017-03-13 23:04:21 +0100845 return -ENOENT;
Mika Westerbergc884fbd2015-05-06 13:29:06 +0300846}
847EXPORT_SYMBOL_GPL(acpi_dev_gpio_irq_get);
848
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200849static acpi_status
850acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
851 u32 bits, u64 *value, void *handler_context,
852 void *region_context)
853{
854 struct acpi_gpio_chip *achip = region_context;
855 struct gpio_chip *chip = achip->chip;
856 struct acpi_resource_gpio *agpio;
857 struct acpi_resource *ares;
858 int pin_index = (int)address;
859 acpi_status status;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200860 int length;
861 int i;
862
863 status = acpi_buffer_to_resource(achip->conn_info.connection,
864 achip->conn_info.length, &ares);
865 if (ACPI_FAILURE(status))
866 return status;
867
868 if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
869 ACPI_FREE(ares);
870 return AE_BAD_PARAMETER;
871 }
872
873 agpio = &ares->data.gpio;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200874
875 if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
876 function == ACPI_WRITE)) {
877 ACPI_FREE(ares);
878 return AE_BAD_PARAMETER;
879 }
880
881 length = min(agpio->pin_table_length, (u16)(pin_index + bits));
882 for (i = pin_index; i < length; ++i) {
Qipeng Zhaa4811622015-04-10 06:25:10 +0800883 int pin = agpio->pin_table[i];
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200884 struct acpi_gpio_connection *conn;
885 struct gpio_desc *desc;
886 bool found;
887
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200888 mutex_lock(&achip->conn_lock);
889
890 found = false;
891 list_for_each_entry(conn, &achip->conns, node) {
Alexandre Courbote46cf322014-08-19 10:06:08 -0700892 if (conn->pin == pin) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200893 found = true;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700894 desc = conn->desc;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200895 break;
896 }
897 }
Mika Westerbergc103a102015-10-30 12:02:05 +0200898
899 /*
900 * The same GPIO can be shared between operation region and
901 * event but only if the access here is ACPI_READ. In that
902 * case we "borrow" the event GPIO instead.
903 */
904 if (!found && agpio->sharable == ACPI_SHARED &&
905 function == ACPI_READ) {
906 struct acpi_gpio_event *event;
907
908 list_for_each_entry(event, &achip->events, node) {
909 if (event->pin == pin) {
910 desc = event->desc;
911 found = true;
912 break;
913 }
914 }
915 }
916
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200917 if (!found) {
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300918 enum gpiod_flags flags = acpi_gpio_to_gpiod_flags(agpio);
919 const char *label = "ACPI:OpRegion";
920 int err;
921
922 desc = gpiochip_request_own_desc(chip, pin, label);
Alexandre Courbote46cf322014-08-19 10:06:08 -0700923 if (IS_ERR(desc)) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200924 status = AE_ERROR;
925 mutex_unlock(&achip->conn_lock);
926 goto out;
927 }
928
Andy Shevchenko2eca25a2017-05-23 20:03:22 +0300929 err = gpiod_configure_flags(desc, label, 0, flags);
930 if (err < 0) {
931 status = AE_NOT_CONFIGURED;
932 gpiochip_free_own_desc(desc);
933 mutex_unlock(&achip->conn_lock);
934 goto out;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200935 }
936
937 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
938 if (!conn) {
939 status = AE_NO_MEMORY;
940 gpiochip_free_own_desc(desc);
941 mutex_unlock(&achip->conn_lock);
942 goto out;
943 }
944
Alexandre Courbote46cf322014-08-19 10:06:08 -0700945 conn->pin = pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200946 conn->desc = desc;
947 list_add_tail(&conn->node, &achip->conns);
948 }
949
950 mutex_unlock(&achip->conn_lock);
951
952 if (function == ACPI_WRITE)
Aaron Ludc62b562014-05-20 17:07:38 +0800953 gpiod_set_raw_value_cansleep(desc,
954 !!((1 << i) & *value));
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200955 else
Aaron Ludc62b562014-05-20 17:07:38 +0800956 *value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200957 }
958
959out:
960 ACPI_FREE(ares);
961 return status;
962}
963
964static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
965{
966 struct gpio_chip *chip = achip->chip;
Linus Walleij58383c782015-11-04 09:56:26 +0100967 acpi_handle handle = ACPI_HANDLE(chip->parent);
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200968 acpi_status status;
969
970 INIT_LIST_HEAD(&achip->conns);
971 mutex_init(&achip->conn_lock);
972 status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
973 acpi_gpio_adr_space_handler,
974 NULL, achip);
975 if (ACPI_FAILURE(status))
Linus Walleij58383c782015-11-04 09:56:26 +0100976 dev_err(chip->parent,
977 "Failed to install GPIO OpRegion handler\n");
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200978}
979
980static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
981{
982 struct gpio_chip *chip = achip->chip;
Linus Walleij58383c782015-11-04 09:56:26 +0100983 acpi_handle handle = ACPI_HANDLE(chip->parent);
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200984 struct acpi_gpio_connection *conn, *tmp;
985 acpi_status status;
986
987 status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
988 acpi_gpio_adr_space_handler);
989 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +0100990 dev_err(chip->parent,
991 "Failed to remove GPIO OpRegion handler\n");
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200992 return;
993 }
994
995 list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
996 gpiochip_free_own_desc(conn->desc);
997 list_del(&conn->node);
998 kfree(conn);
999 }
1000}
1001
Wei Yongjun550a9532016-10-29 16:13:12 +00001002static struct gpio_desc *acpi_gpiochip_parse_own_gpio(
1003 struct acpi_gpio_chip *achip, struct fwnode_handle *fwnode,
1004 const char **name, unsigned int *lflags, unsigned int *dflags)
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001005{
1006 struct gpio_chip *chip = achip->chip;
1007 struct gpio_desc *desc;
1008 u32 gpios[2];
1009 int ret;
1010
Arnd Bergmannc82064f2016-11-08 14:40:06 +01001011 *lflags = 0;
1012 *dflags = 0;
1013 *name = NULL;
1014
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001015 ret = fwnode_property_read_u32_array(fwnode, "gpios", gpios,
1016 ARRAY_SIZE(gpios));
1017 if (ret < 0)
1018 return ERR_PTR(ret);
1019
Mika Westerberg03c47492017-11-27 16:54:42 +03001020 desc = gpiochip_get_desc(chip, gpios[0]);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001021 if (IS_ERR(desc))
1022 return desc;
1023
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001024 if (gpios[1])
1025 *lflags |= GPIO_ACTIVE_LOW;
1026
1027 if (fwnode_property_present(fwnode, "input"))
1028 *dflags |= GPIOD_IN;
1029 else if (fwnode_property_present(fwnode, "output-low"))
1030 *dflags |= GPIOD_OUT_LOW;
1031 else if (fwnode_property_present(fwnode, "output-high"))
1032 *dflags |= GPIOD_OUT_HIGH;
1033 else
1034 return ERR_PTR(-EINVAL);
1035
1036 fwnode_property_read_string(fwnode, "line-name", name);
1037
1038 return desc;
1039}
1040
1041static void acpi_gpiochip_scan_gpios(struct acpi_gpio_chip *achip)
1042{
1043 struct gpio_chip *chip = achip->chip;
1044 struct fwnode_handle *fwnode;
1045
1046 device_for_each_child_node(chip->parent, fwnode) {
1047 unsigned int lflags, dflags;
1048 struct gpio_desc *desc;
1049 const char *name;
1050 int ret;
1051
1052 if (!fwnode_property_present(fwnode, "gpio-hog"))
1053 continue;
1054
1055 desc = acpi_gpiochip_parse_own_gpio(achip, fwnode, &name,
1056 &lflags, &dflags);
1057 if (IS_ERR(desc))
1058 continue;
1059
1060 ret = gpiod_hog(desc, name, lflags, dflags);
1061 if (ret) {
1062 dev_err(chip->parent, "Failed to hog GPIO\n");
Wei Yongjun1b6998c2016-10-29 16:11:57 +00001063 fwnode_handle_put(fwnode);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001064 return;
1065 }
1066 }
1067}
1068
Mika Westerberg664e3e52014-01-08 12:40:54 +02001069void acpi_gpiochip_add(struct gpio_chip *chip)
1070{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001071 struct acpi_gpio_chip *acpi_gpio;
1072 acpi_handle handle;
1073 acpi_status status;
1074
Linus Walleij58383c782015-11-04 09:56:26 +01001075 if (!chip || !chip->parent)
Mika Westerberge9595f82014-03-31 15:16:49 +03001076 return;
1077
Linus Walleij58383c782015-11-04 09:56:26 +01001078 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001079 if (!handle)
1080 return;
1081
1082 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
1083 if (!acpi_gpio) {
Linus Walleij58383c782015-11-04 09:56:26 +01001084 dev_err(chip->parent,
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001085 "Failed to allocate memory for ACPI GPIO chip\n");
1086 return;
1087 }
1088
1089 acpi_gpio->chip = chip;
Mika Westerbergc103a102015-10-30 12:02:05 +02001090 INIT_LIST_HEAD(&acpi_gpio->events);
Hans de Goede78d3a922018-08-14 16:07:03 +02001091 INIT_LIST_HEAD(&acpi_gpio->deferred_req_irqs_list_entry);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001092
1093 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
1094 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001095 dev_err(chip->parent, "Failed to attach ACPI GPIO chip\n");
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001096 kfree(acpi_gpio);
1097 return;
1098 }
1099
Mika Westerberg4035cc12016-10-21 17:21:32 +03001100 if (!chip->names)
Christophe Leroy82270332017-12-15 15:02:33 +01001101 devprop_gpiochip_set_names(chip, dev_fwnode(chip->parent));
Mika Westerberg4035cc12016-10-21 17:21:32 +03001102
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001103 acpi_gpiochip_request_regions(acpi_gpio);
Mika Westerbergc80f1ba2016-10-21 17:21:30 +03001104 acpi_gpiochip_scan_gpios(acpi_gpio);
Rui Zhang3f86a632016-06-15 08:47:51 +02001105 acpi_walk_dep_device_list(handle);
Mika Westerberg664e3e52014-01-08 12:40:54 +02001106}
1107
1108void acpi_gpiochip_remove(struct gpio_chip *chip)
1109{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001110 struct acpi_gpio_chip *acpi_gpio;
1111 acpi_handle handle;
1112 acpi_status status;
1113
Linus Walleij58383c782015-11-04 09:56:26 +01001114 if (!chip || !chip->parent)
Mika Westerberge9595f82014-03-31 15:16:49 +03001115 return;
1116
Linus Walleij58383c782015-11-04 09:56:26 +01001117 handle = ACPI_HANDLE(chip->parent);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001118 if (!handle)
1119 return;
1120
1121 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
1122 if (ACPI_FAILURE(status)) {
Linus Walleij58383c782015-11-04 09:56:26 +01001123 dev_warn(chip->parent, "Failed to retrieve ACPI GPIO chip\n");
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001124 return;
1125 }
1126
Mika Westerberg473ed7b2014-03-14 17:58:07 +02001127 acpi_gpiochip_free_regions(acpi_gpio);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +02001128
1129 acpi_detach_data(handle, acpi_gpio_chip_dh);
1130 kfree(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +02001131}
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001132
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001133static int acpi_gpio_package_count(const union acpi_object *obj)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001134{
1135 const union acpi_object *element = obj->package.elements;
1136 const union acpi_object *end = element + obj->package.count;
1137 unsigned int count = 0;
1138
1139 while (element < end) {
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001140 switch (element->type) {
1141 case ACPI_TYPE_LOCAL_REFERENCE:
1142 element += 3;
1143 /* Fallthrough */
1144 case ACPI_TYPE_INTEGER:
1145 element++;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001146 count++;
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001147 break;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001148
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001149 default:
1150 return -EPROTO;
1151 }
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001152 }
Mika Westerberg6f7194a2016-10-21 17:21:29 +03001153
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001154 return count;
1155}
1156
1157static int acpi_find_gpio_count(struct acpi_resource *ares, void *data)
1158{
1159 unsigned int *count = data;
1160
1161 if (ares->type == ACPI_RESOURCE_TYPE_GPIO)
1162 *count += ares->data.gpio.pin_table_length;
1163
1164 return 1;
1165}
1166
1167/**
1168 * acpi_gpio_count - return the number of GPIOs associated with a
1169 * device / function or -ENOENT if no GPIO has been
1170 * assigned to the requested function.
1171 * @dev: GPIO consumer, can be NULL for system-global GPIOs
1172 * @con_id: function within the GPIO consumer
1173 */
1174int acpi_gpio_count(struct device *dev, const char *con_id)
1175{
1176 struct acpi_device *adev = ACPI_COMPANION(dev);
1177 const union acpi_object *obj;
1178 const struct acpi_gpio_mapping *gm;
1179 int count = -ENOENT;
1180 int ret;
1181 char propname[32];
1182 unsigned int i;
1183
1184 /* Try first from _DSD */
1185 for (i = 0; i < ARRAY_SIZE(gpio_suffixes); i++) {
Andy Shevchenko9e665042017-05-23 20:03:17 +03001186 if (con_id)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001187 snprintf(propname, sizeof(propname), "%s-%s",
1188 con_id, gpio_suffixes[i]);
1189 else
1190 snprintf(propname, sizeof(propname), "%s",
1191 gpio_suffixes[i]);
1192
1193 ret = acpi_dev_get_property(adev, propname, ACPI_TYPE_ANY,
1194 &obj);
1195 if (ret == 0) {
1196 if (obj->type == ACPI_TYPE_LOCAL_REFERENCE)
1197 count = 1;
1198 else if (obj->type == ACPI_TYPE_PACKAGE)
1199 count = acpi_gpio_package_count(obj);
1200 } else if (adev->driver_gpios) {
1201 for (gm = adev->driver_gpios; gm->name; gm++)
1202 if (strcmp(propname, gm->name) == 0) {
1203 count = gm->size;
1204 break;
1205 }
1206 }
Andy Shevchenko4ed55012017-02-20 18:15:46 +02001207 if (count > 0)
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001208 break;
1209 }
1210
1211 /* Then from plain _CRS GPIOs */
1212 if (count < 0) {
1213 struct list_head resource_list;
1214 unsigned int crs_count = 0;
1215
Andy Shevchenko6fe9da42017-05-23 20:03:20 +03001216 if (!acpi_can_fallback_to_crs(adev, con_id))
1217 return count;
1218
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001219 INIT_LIST_HEAD(&resource_list);
1220 acpi_dev_get_resources(adev, &resource_list,
1221 acpi_find_gpio_count, &crs_count);
1222 acpi_dev_free_resource_list(&resource_list);
1223 if (crs_count > 0)
1224 count = crs_count;
1225 }
Andy Shevchenko4ed55012017-02-20 18:15:46 +02001226 return count ? count : -ENOENT;
Rojhalat Ibrahim66858522015-02-11 17:27:58 +01001227}
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001228
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001229bool acpi_can_fallback_to_crs(struct acpi_device *adev, const char *con_id)
1230{
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001231 /* Never allow fallback if the device has properties */
1232 if (adev->data.properties || adev->driver_gpios)
1233 return false;
1234
Andy Shevchenkof10e4bf2017-05-23 20:03:19 +03001235 return con_id == NULL;
Dmitry Torokhov10cf4892015-11-11 11:45:30 -08001236}
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001237
Hans de Goede1f515272018-11-28 17:57:55 +01001238/* Run deferred acpi_gpiochip_request_irqs() */
1239static int acpi_gpio_handle_deferred_request_irqs(void)
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001240{
Hans de Goede78d3a922018-08-14 16:07:03 +02001241 struct acpi_gpio_chip *acpi_gpio, *tmp;
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001242
Hans de Goede78d3a922018-08-14 16:07:03 +02001243 mutex_lock(&acpi_gpio_deferred_req_irqs_lock);
1244 list_for_each_entry_safe(acpi_gpio, tmp,
1245 &acpi_gpio_deferred_req_irqs_list,
Hans de Goede1f515272018-11-28 17:57:55 +01001246 deferred_req_irqs_list_entry)
1247 acpi_gpiochip_request_irqs(acpi_gpio);
Hans de Goede78d3a922018-08-14 16:07:03 +02001248
1249 acpi_gpio_deferred_req_irqs_done = true;
1250 mutex_unlock(&acpi_gpio_deferred_req_irqs_lock);
Benjamin Tissoiresca876c72018-07-12 17:25:06 +02001251
1252 return 0;
1253}
1254/* We must use _sync so that this runs after the first deferred_probe run */
Hans de Goede1f515272018-11-28 17:57:55 +01001255late_initcall_sync(acpi_gpio_handle_deferred_request_irqs);