blob: be09e7526890431c2bfe4646323f20497a0f6a12 [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 Westerberg936e15d2013-10-10 11:01:08 +030014#include <linux/gpio/consumer.h>
Mika Westerberg5ccff852014-01-08 12:40:56 +020015#include <linux/gpio/driver.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010016#include <linux/export.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010017#include <linux/acpi.h>
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020018#include <linux/interrupt.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010019
Mika Westerberg5ccff852014-01-08 12:40:56 +020020#include "gpiolib.h"
21
Mika Westerberg4b01a142014-03-10 14:54:52 +020022struct acpi_gpio_event {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020023 struct list_head node;
Mika Westerberg4b01a142014-03-10 14:54:52 +020024 acpi_handle handle;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020025 unsigned int pin;
26 unsigned int irq;
27};
28
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020029struct acpi_gpio_chip {
30 struct gpio_chip *chip;
Mika Westerberg4b01a142014-03-10 14:54:52 +020031 struct list_head events;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020032};
33
Mathias Nymane29482e2012-11-30 12:37:36 +010034static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
35{
36 if (!gc->dev)
37 return false;
38
39 return ACPI_HANDLE(gc->dev) == data;
40}
41
42/**
Mika Westerberg936e15d2013-10-10 11:01:08 +030043 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
Mathias Nymane29482e2012-11-30 12:37:36 +010044 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
45 * @pin: ACPI GPIO pin number (0-based, controller-relative)
46 *
Mika Westerberg936e15d2013-10-10 11:01:08 +030047 * Returns GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
48 * error value
Mathias Nymane29482e2012-11-30 12:37:36 +010049 */
50
Mika Westerberg936e15d2013-10-10 11:01:08 +030051static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
Mathias Nymane29482e2012-11-30 12:37:36 +010052{
53 struct gpio_chip *chip;
54 acpi_handle handle;
55 acpi_status status;
56
57 status = acpi_get_handle(NULL, path, &handle);
58 if (ACPI_FAILURE(status))
Mika Westerberg936e15d2013-10-10 11:01:08 +030059 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +010060
61 chip = gpiochip_find(handle, acpi_gpiochip_find);
62 if (!chip)
Mika Westerberg936e15d2013-10-10 11:01:08 +030063 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +010064
Mika Westerberg936e15d2013-10-10 11:01:08 +030065 if (pin < 0 || pin > chip->ngpio)
66 return ERR_PTR(-EINVAL);
Mathias Nymane29482e2012-11-30 12:37:36 +010067
Alexandre Courbot390d82e2014-02-09 17:43:55 +090068 return gpiochip_get_desc(chip, pin);
Mathias Nymane29482e2012-11-30 12:37:36 +010069}
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020070
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020071static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
72{
73 acpi_handle handle = data;
74
75 acpi_evaluate_object(handle, NULL, NULL, NULL);
76
77 return IRQ_HANDLED;
78}
79
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020080static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
81{
Mika Westerberg4b01a142014-03-10 14:54:52 +020082 struct acpi_gpio_event *event = data;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020083
Mika Westerberg4b01a142014-03-10 14:54:52 +020084 acpi_execute_simple_method(event->handle, NULL, event->pin);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020085
86 return IRQ_HANDLED;
87}
88
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020089static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020090{
91 /* The address of this function is used as a key. */
92}
93
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020094/**
95 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020096 * @acpi_gpio: ACPI GPIO chip
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020097 *
98 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
99 * handled by ACPI event methods which need to be called from the GPIO
100 * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
101 * gpio pins have acpi event methods and assigns interrupt handlers that calls
102 * the acpi event methods for those pins.
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200103 */
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200104static void acpi_gpiochip_request_interrupts(struct acpi_gpio_chip *acpi_gpio)
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200105{
106 struct acpi_buffer buf = {ACPI_ALLOCATE_BUFFER, NULL};
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200107 struct gpio_chip *chip = acpi_gpio->chip;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200108 struct acpi_resource *res;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200109 acpi_handle handle, evt_handle;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200110 acpi_status status;
Mathias Nyman1107ca12013-02-04 11:32:22 +0200111 unsigned int pin;
112 int irq, ret;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200113 char ev_name[5];
114
115 if (!chip->dev || !chip->to_irq)
116 return;
117
118 handle = ACPI_HANDLE(chip->dev);
119 if (!handle)
120 return;
121
Mika Westerberg4b01a142014-03-10 14:54:52 +0200122 INIT_LIST_HEAD(&acpi_gpio->events);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200123
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200124 /*
125 * If a GPIO interrupt has an ACPI event handler method, or _EVT is
126 * present, set up an interrupt handler that calls the ACPI event
127 * handler.
128 */
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200129 for (res = buf.pointer;
130 res && (res->type != ACPI_RESOURCE_TYPE_END_TAG);
131 res = ACPI_NEXT_RESOURCE(res)) {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200132 irq_handler_t handler = NULL;
133 void *data;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200134
135 if (res->type != ACPI_RESOURCE_TYPE_GPIO ||
136 res->data.gpio.connection_type !=
137 ACPI_RESOURCE_GPIO_TYPE_INT)
138 continue;
139
140 pin = res->data.gpio.pin_table[0];
141 if (pin > chip->ngpio)
142 continue;
143
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200144 irq = chip->to_irq(chip, pin);
145 if (irq < 0)
146 continue;
147
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200148 if (pin <= 255) {
149 acpi_handle ev_handle;
150
151 sprintf(ev_name, "_%c%02X",
152 res->data.gpio.triggering ? 'E' : 'L', pin);
153 status = acpi_get_handle(handle, ev_name, &ev_handle);
154 if (ACPI_SUCCESS(status)) {
155 handler = acpi_gpio_irq_handler;
156 data = ev_handle;
157 }
158 }
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200159 if (!handler) {
Mika Westerberg4b01a142014-03-10 14:54:52 +0200160 struct acpi_gpio_event *event;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200161
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200162 status = acpi_get_handle(handle, "_EVT", &evt_handle);
163 if (ACPI_FAILURE(status))
164 continue
165
Mika Westerberg4b01a142014-03-10 14:54:52 +0200166 event = kzalloc(sizeof(*event), GFP_KERNEL);
167 if (!event)
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200168 continue;
169
Mika Westerberg4b01a142014-03-10 14:54:52 +0200170 list_add_tail(&event->node, &acpi_gpio->events);
171 event->handle = evt_handle;
172 event->pin = pin;
173 event->irq = irq;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200174 handler = acpi_gpio_irq_handler_evt;
Mika Westerberg4b01a142014-03-10 14:54:52 +0200175 data = event;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200176 }
177 if (!handler)
178 continue;
179
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200180 /* Assume BIOS sets the triggering, so no flags */
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200181 ret = devm_request_threaded_irq(chip->dev, irq, NULL, handler,
182 0, "GPIO-signaled-ACPI-event",
183 data);
Mathias Nyman1107ca12013-02-04 11:32:22 +0200184 if (ret)
185 dev_err(chip->dev,
186 "Failed to request IRQ %d ACPI event handler\n",
187 irq);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200188 }
189}
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200190
Mika Westerberg70b53412013-10-10 11:01:07 +0300191/**
192 * acpi_gpiochip_free_interrupts() - Free GPIO _EVT ACPI event interrupts.
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200193 * @acpi_gpio: ACPI GPIO chip
Mika Westerberg70b53412013-10-10 11:01:07 +0300194 *
195 * Free interrupts associated with the _EVT method for the given GPIO chip.
196 *
197 * The remaining ACPI event interrupts associated with the chip are freed
198 * automatically.
199 */
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200200static void acpi_gpiochip_free_interrupts(struct acpi_gpio_chip *acpi_gpio)
Mika Westerberg70b53412013-10-10 11:01:07 +0300201{
Mika Westerberg4b01a142014-03-10 14:54:52 +0200202 struct acpi_gpio_event *event, *ep;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200203 struct gpio_chip *chip = acpi_gpio->chip;
Mika Westerberg70b53412013-10-10 11:01:07 +0300204
205 if (!chip->dev || !chip->to_irq)
206 return;
207
Mika Westerberg4b01a142014-03-10 14:54:52 +0200208 list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
209 devm_free_irq(chip->dev, event->irq, event);
210 list_del(&event->node);
211 kfree(event);
Mika Westerberg70b53412013-10-10 11:01:07 +0300212 }
Mika Westerberg70b53412013-10-10 11:01:07 +0300213}
Mika Westerberg70b53412013-10-10 11:01:07 +0300214
Mika Westerberg12028d22013-04-03 13:56:54 +0300215struct acpi_gpio_lookup {
216 struct acpi_gpio_info info;
217 int index;
Mika Westerberg936e15d2013-10-10 11:01:08 +0300218 struct gpio_desc *desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300219 int n;
220};
221
222static int acpi_find_gpio(struct acpi_resource *ares, void *data)
223{
224 struct acpi_gpio_lookup *lookup = data;
225
226 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
227 return 1;
228
Mika Westerberg936e15d2013-10-10 11:01:08 +0300229 if (lookup->n++ == lookup->index && !lookup->desc) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300230 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
231
Mika Westerberg936e15d2013-10-10 11:01:08 +0300232 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
233 agpio->pin_table[0]);
Mika Westerberg12028d22013-04-03 13:56:54 +0300234 lookup->info.gpioint =
235 agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
Mika Westerberge01f4402013-10-10 11:01:10 +0300236 lookup->info.active_low =
237 agpio->polarity == ACPI_ACTIVE_LOW;
Mika Westerberg12028d22013-04-03 13:56:54 +0300238 }
239
240 return 1;
241}
242
243/**
Mika Westerberg936e15d2013-10-10 11:01:08 +0300244 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
Mika Westerberg12028d22013-04-03 13:56:54 +0300245 * @dev: pointer to a device to get GPIO from
246 * @index: index of GpioIo/GpioInt resource (starting from %0)
247 * @info: info pointer to fill in (optional)
248 *
249 * Function goes through ACPI resources for @dev and based on @index looks
Mika Westerberg936e15d2013-10-10 11:01:08 +0300250 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
Mika Westerberg12028d22013-04-03 13:56:54 +0300251 * and returns it. @index matches GpioIo/GpioInt resources only so if there
252 * are total %3 GPIO resources, the index goes from %0 to %2.
253 *
Mika Westerberg936e15d2013-10-10 11:01:08 +0300254 * If the GPIO cannot be translated or there is an error an ERR_PTR is
Mika Westerberg12028d22013-04-03 13:56:54 +0300255 * returned.
256 *
257 * Note: if the GPIO resource has multiple entries in the pin list, this
258 * function only returns the first.
259 */
Mika Westerberg936e15d2013-10-10 11:01:08 +0300260struct gpio_desc *acpi_get_gpiod_by_index(struct device *dev, int index,
261 struct acpi_gpio_info *info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300262{
263 struct acpi_gpio_lookup lookup;
264 struct list_head resource_list;
265 struct acpi_device *adev;
266 acpi_handle handle;
267 int ret;
268
269 if (!dev)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300270 return ERR_PTR(-EINVAL);
Mika Westerberg12028d22013-04-03 13:56:54 +0300271
272 handle = ACPI_HANDLE(dev);
273 if (!handle || acpi_bus_get_device(handle, &adev))
Mika Westerberg936e15d2013-10-10 11:01:08 +0300274 return ERR_PTR(-ENODEV);
Mika Westerberg12028d22013-04-03 13:56:54 +0300275
276 memset(&lookup, 0, sizeof(lookup));
277 lookup.index = index;
Mika Westerberg12028d22013-04-03 13:56:54 +0300278
279 INIT_LIST_HEAD(&resource_list);
280 ret = acpi_dev_get_resources(adev, &resource_list, acpi_find_gpio,
281 &lookup);
282 if (ret < 0)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300283 return ERR_PTR(ret);
Mika Westerberg12028d22013-04-03 13:56:54 +0300284
285 acpi_dev_free_resource_list(&resource_list);
286
Mika Westerberg936e15d2013-10-10 11:01:08 +0300287 if (lookup.desc && info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300288 *info = lookup.info;
289
Mika Westerberga00580c2013-12-10 12:00:27 +0200290 return lookup.desc ? lookup.desc : ERR_PTR(-ENOENT);
Mika Westerberg12028d22013-04-03 13:56:54 +0300291}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200292
293void acpi_gpiochip_add(struct gpio_chip *chip)
294{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200295 struct acpi_gpio_chip *acpi_gpio;
296 acpi_handle handle;
297 acpi_status status;
298
299 handle = ACPI_HANDLE(chip->dev);
300 if (!handle)
301 return;
302
303 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
304 if (!acpi_gpio) {
305 dev_err(chip->dev,
306 "Failed to allocate memory for ACPI GPIO chip\n");
307 return;
308 }
309
310 acpi_gpio->chip = chip;
311
312 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
313 if (ACPI_FAILURE(status)) {
314 dev_err(chip->dev, "Failed to attach ACPI GPIO chip\n");
315 kfree(acpi_gpio);
316 return;
317 }
318
319 acpi_gpiochip_request_interrupts(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200320}
321
322void acpi_gpiochip_remove(struct gpio_chip *chip)
323{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200324 struct acpi_gpio_chip *acpi_gpio;
325 acpi_handle handle;
326 acpi_status status;
327
328 handle = ACPI_HANDLE(chip->dev);
329 if (!handle)
330 return;
331
332 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
333 if (ACPI_FAILURE(status)) {
334 dev_warn(chip->dev, "Failed to retrieve ACPI GPIO chip\n");
335 return;
336 }
337
338 acpi_gpiochip_free_interrupts(acpi_gpio);
339
340 acpi_detach_data(handle, acpi_gpio_chip_dh);
341 kfree(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200342}