blob: 5c0cf1d76c8b55865d59435afd1878f5c94f1648 [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
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020022struct acpi_gpio_evt_pin {
23 struct list_head node;
24 acpi_handle *evt_handle;
25 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;
31 struct list_head evt_pins;
32};
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{
82 struct acpi_gpio_evt_pin *evt_pin = data;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020083
Zhang Rui524c1082013-09-03 08:31:50 +080084 acpi_execute_simple_method(evt_pin->evt_handle, NULL, evt_pin->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 Westerbergaa92b6f2014-03-10 14:54:51 +0200122 INIT_LIST_HEAD(&acpi_gpio->evt_pins);
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) {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200160 struct acpi_gpio_evt_pin *evt_pin;
161
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200162 status = acpi_get_handle(handle, "_EVT", &evt_handle);
163 if (ACPI_FAILURE(status))
164 continue
165
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200166 evt_pin = kzalloc(sizeof(*evt_pin), GFP_KERNEL);
167 if (!evt_pin)
168 continue;
169
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200170 list_add_tail(&evt_pin->node, &acpi_gpio->evt_pins);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200171 evt_pin->evt_handle = evt_handle;
172 evt_pin->pin = pin;
173 evt_pin->irq = irq;
174 handler = acpi_gpio_irq_handler_evt;
175 data = evt_pin;
176 }
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 Westerberg70b53412013-10-10 11:01:07 +0300202 struct acpi_gpio_evt_pin *evt_pin, *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 Westerbergaa92b6f2014-03-10 14:54:51 +0200208 list_for_each_entry_safe_reverse(evt_pin, ep, &acpi_gpio->evt_pins,
209 node) {
Mika Westerberg70b53412013-10-10 11:01:07 +0300210 devm_free_irq(chip->dev, evt_pin->irq, evt_pin);
211 list_del(&evt_pin->node);
212 kfree(evt_pin);
213 }
Mika Westerberg70b53412013-10-10 11:01:07 +0300214}
Mika Westerberg70b53412013-10-10 11:01:07 +0300215
Mika Westerberg12028d22013-04-03 13:56:54 +0300216struct acpi_gpio_lookup {
217 struct acpi_gpio_info info;
218 int index;
Mika Westerberg936e15d2013-10-10 11:01:08 +0300219 struct gpio_desc *desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300220 int n;
221};
222
223static int acpi_find_gpio(struct acpi_resource *ares, void *data)
224{
225 struct acpi_gpio_lookup *lookup = data;
226
227 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
228 return 1;
229
Mika Westerberg936e15d2013-10-10 11:01:08 +0300230 if (lookup->n++ == lookup->index && !lookup->desc) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300231 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
232
Mika Westerberg936e15d2013-10-10 11:01:08 +0300233 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
234 agpio->pin_table[0]);
Mika Westerberg12028d22013-04-03 13:56:54 +0300235 lookup->info.gpioint =
236 agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
Mika Westerberge01f4402013-10-10 11:01:10 +0300237 lookup->info.active_low =
238 agpio->polarity == ACPI_ACTIVE_LOW;
Mika Westerberg12028d22013-04-03 13:56:54 +0300239 }
240
241 return 1;
242}
243
244/**
Mika Westerberg936e15d2013-10-10 11:01:08 +0300245 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
Mika Westerberg12028d22013-04-03 13:56:54 +0300246 * @dev: pointer to a device to get GPIO from
247 * @index: index of GpioIo/GpioInt resource (starting from %0)
248 * @info: info pointer to fill in (optional)
249 *
250 * Function goes through ACPI resources for @dev and based on @index looks
Mika Westerberg936e15d2013-10-10 11:01:08 +0300251 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
Mika Westerberg12028d22013-04-03 13:56:54 +0300252 * and returns it. @index matches GpioIo/GpioInt resources only so if there
253 * are total %3 GPIO resources, the index goes from %0 to %2.
254 *
Mika Westerberg936e15d2013-10-10 11:01:08 +0300255 * If the GPIO cannot be translated or there is an error an ERR_PTR is
Mika Westerberg12028d22013-04-03 13:56:54 +0300256 * returned.
257 *
258 * Note: if the GPIO resource has multiple entries in the pin list, this
259 * function only returns the first.
260 */
Mika Westerberg936e15d2013-10-10 11:01:08 +0300261struct gpio_desc *acpi_get_gpiod_by_index(struct device *dev, int index,
262 struct acpi_gpio_info *info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300263{
264 struct acpi_gpio_lookup lookup;
265 struct list_head resource_list;
266 struct acpi_device *adev;
267 acpi_handle handle;
268 int ret;
269
270 if (!dev)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300271 return ERR_PTR(-EINVAL);
Mika Westerberg12028d22013-04-03 13:56:54 +0300272
273 handle = ACPI_HANDLE(dev);
274 if (!handle || acpi_bus_get_device(handle, &adev))
Mika Westerberg936e15d2013-10-10 11:01:08 +0300275 return ERR_PTR(-ENODEV);
Mika Westerberg12028d22013-04-03 13:56:54 +0300276
277 memset(&lookup, 0, sizeof(lookup));
278 lookup.index = index;
Mika Westerberg12028d22013-04-03 13:56:54 +0300279
280 INIT_LIST_HEAD(&resource_list);
281 ret = acpi_dev_get_resources(adev, &resource_list, acpi_find_gpio,
282 &lookup);
283 if (ret < 0)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300284 return ERR_PTR(ret);
Mika Westerberg12028d22013-04-03 13:56:54 +0300285
286 acpi_dev_free_resource_list(&resource_list);
287
Mika Westerberg936e15d2013-10-10 11:01:08 +0300288 if (lookup.desc && info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300289 *info = lookup.info;
290
Mika Westerberga00580c2013-12-10 12:00:27 +0200291 return lookup.desc ? lookup.desc : ERR_PTR(-ENOENT);
Mika Westerberg12028d22013-04-03 13:56:54 +0300292}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200293
294void acpi_gpiochip_add(struct gpio_chip *chip)
295{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200296 struct acpi_gpio_chip *acpi_gpio;
297 acpi_handle handle;
298 acpi_status status;
299
300 handle = ACPI_HANDLE(chip->dev);
301 if (!handle)
302 return;
303
304 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
305 if (!acpi_gpio) {
306 dev_err(chip->dev,
307 "Failed to allocate memory for ACPI GPIO chip\n");
308 return;
309 }
310
311 acpi_gpio->chip = chip;
312
313 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
314 if (ACPI_FAILURE(status)) {
315 dev_err(chip->dev, "Failed to attach ACPI GPIO chip\n");
316 kfree(acpi_gpio);
317 return;
318 }
319
320 acpi_gpiochip_request_interrupts(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200321}
322
323void acpi_gpiochip_remove(struct gpio_chip *chip)
324{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200325 struct acpi_gpio_chip *acpi_gpio;
326 acpi_handle handle;
327 acpi_status status;
328
329 handle = ACPI_HANDLE(chip->dev);
330 if (!handle)
331 return;
332
333 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
334 if (ACPI_FAILURE(status)) {
335 dev_warn(chip->dev, "Failed to retrieve ACPI GPIO chip\n");
336 return;
337 }
338
339 acpi_gpiochip_free_interrupts(acpi_gpio);
340
341 acpi_detach_data(handle, acpi_gpio_chip_dh);
342 kfree(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200343}