blob: 5a4d061e787e7c2bc27c871d1842cc2713ab8252 [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>
Mika Westerberg473ed7b2014-03-14 17:58:07 +020019#include <linux/mutex.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010020
Mika Westerberg5ccff852014-01-08 12:40:56 +020021#include "gpiolib.h"
22
Mika Westerberg4b01a142014-03-10 14:54:52 +020023struct acpi_gpio_event {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020024 struct list_head node;
Mika Westerberg4b01a142014-03-10 14:54:52 +020025 acpi_handle handle;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020026 unsigned int pin;
27 unsigned int irq;
Alexandre Courbote46cf322014-08-19 10:06:08 -070028 struct gpio_desc *desc;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020029};
30
Mika Westerberg473ed7b2014-03-14 17:58:07 +020031struct acpi_gpio_connection {
32 struct list_head node;
Alexandre Courbote46cf322014-08-19 10:06:08 -070033 unsigned int pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +020034 struct gpio_desc *desc;
35};
36
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020037struct acpi_gpio_chip {
Mika Westerberg473ed7b2014-03-14 17:58:07 +020038 /*
39 * ACPICA requires that the first field of the context parameter
40 * passed to acpi_install_address_space_handler() is large enough
41 * to hold struct acpi_connection_info.
42 */
43 struct acpi_connection_info conn_info;
44 struct list_head conns;
45 struct mutex conn_lock;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020046 struct gpio_chip *chip;
Mika Westerberg4b01a142014-03-10 14:54:52 +020047 struct list_head events;
Mika Westerbergaa92b6f2014-03-10 14:54:51 +020048};
49
Mathias Nymane29482e2012-11-30 12:37:36 +010050static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
51{
52 if (!gc->dev)
53 return false;
54
55 return ACPI_HANDLE(gc->dev) == data;
56}
57
58/**
Mika Westerberg936e15d2013-10-10 11:01:08 +030059 * acpi_get_gpiod() - Translate ACPI GPIO pin to GPIO descriptor usable with GPIO API
Mathias Nymane29482e2012-11-30 12:37:36 +010060 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
61 * @pin: ACPI GPIO pin number (0-based, controller-relative)
62 *
Mika Westerberg936e15d2013-10-10 11:01:08 +030063 * Returns GPIO descriptor to use with Linux generic GPIO API, or ERR_PTR
64 * error value
Mathias Nymane29482e2012-11-30 12:37:36 +010065 */
66
Mika Westerberg936e15d2013-10-10 11:01:08 +030067static struct gpio_desc *acpi_get_gpiod(char *path, int pin)
Mathias Nymane29482e2012-11-30 12:37:36 +010068{
69 struct gpio_chip *chip;
70 acpi_handle handle;
71 acpi_status status;
72
73 status = acpi_get_handle(NULL, path, &handle);
74 if (ACPI_FAILURE(status))
Mika Westerberg936e15d2013-10-10 11:01:08 +030075 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +010076
77 chip = gpiochip_find(handle, acpi_gpiochip_find);
78 if (!chip)
Mika Westerberg936e15d2013-10-10 11:01:08 +030079 return ERR_PTR(-ENODEV);
Mathias Nymane29482e2012-11-30 12:37:36 +010080
Mika Westerberg936e15d2013-10-10 11:01:08 +030081 if (pin < 0 || pin > chip->ngpio)
82 return ERR_PTR(-EINVAL);
Mathias Nymane29482e2012-11-30 12:37:36 +010083
Alexandre Courbot390d82e2014-02-09 17:43:55 +090084 return gpiochip_get_desc(chip, pin);
Mathias Nymane29482e2012-11-30 12:37:36 +010085}
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020086
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020087static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
88{
Mika Westerberg6072b9d2014-03-10 14:54:53 +020089 struct acpi_gpio_event *event = data;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020090
Mika Westerberg6072b9d2014-03-10 14:54:53 +020091 acpi_evaluate_object(event->handle, NULL, NULL, NULL);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020092
93 return IRQ_HANDLED;
94}
95
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020096static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
97{
Mika Westerberg4b01a142014-03-10 14:54:52 +020098 struct acpi_gpio_event *event = data;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020099
Mika Westerberg4b01a142014-03-10 14:54:52 +0200100 acpi_execute_simple_method(event->handle, NULL, event->pin);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200101
102 return IRQ_HANDLED;
103}
104
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200105static void acpi_gpio_chip_dh(acpi_handle handle, void *data)
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200106{
107 /* The address of this function is used as a key. */
108}
109
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200110static acpi_status acpi_gpiochip_request_interrupt(struct acpi_resource *ares,
111 void *context)
112{
113 struct acpi_gpio_chip *acpi_gpio = context;
114 struct gpio_chip *chip = acpi_gpio->chip;
115 struct acpi_resource_gpio *agpio;
116 acpi_handle handle, evt_handle;
117 struct acpi_gpio_event *event;
118 irq_handler_t handler = NULL;
119 struct gpio_desc *desc;
120 unsigned long irqflags;
121 int ret, pin, irq;
122
123 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
124 return AE_OK;
125
126 agpio = &ares->data.gpio;
127 if (agpio->connection_type != ACPI_RESOURCE_GPIO_TYPE_INT)
128 return AE_OK;
129
130 handle = ACPI_HANDLE(chip->dev);
131 pin = agpio->pin_table[0];
132
133 if (pin <= 255) {
134 char ev_name[5];
135 sprintf(ev_name, "_%c%02X",
136 agpio->triggering == ACPI_EDGE_SENSITIVE ? 'E' : 'L',
137 pin);
138 if (ACPI_SUCCESS(acpi_get_handle(handle, ev_name, &evt_handle)))
139 handler = acpi_gpio_irq_handler;
140 }
141 if (!handler) {
142 if (ACPI_SUCCESS(acpi_get_handle(handle, "_EVT", &evt_handle)))
143 handler = acpi_gpio_irq_handler_evt;
144 }
145 if (!handler)
146 return AE_BAD_PARAMETER;
147
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700148 desc = gpiochip_request_own_desc(chip, pin, "ACPI:Event");
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200149 if (IS_ERR(desc)) {
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200150 dev_err(chip->dev, "Failed to request GPIO\n");
151 return AE_ERROR;
152 }
153
154 gpiod_direction_input(desc);
155
Alexandre Courbotd74be6d2014-07-22 16:17:42 +0900156 ret = gpio_lock_as_irq(chip, pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200157 if (ret) {
158 dev_err(chip->dev, "Failed to lock GPIO as interrupt\n");
159 goto fail_free_desc;
160 }
161
162 irq = gpiod_to_irq(desc);
163 if (irq < 0) {
164 dev_err(chip->dev, "Failed to translate GPIO to IRQ\n");
165 goto fail_unlock_irq;
166 }
167
168 irqflags = IRQF_ONESHOT;
169 if (agpio->triggering == ACPI_LEVEL_SENSITIVE) {
170 if (agpio->polarity == ACPI_ACTIVE_HIGH)
171 irqflags |= IRQF_TRIGGER_HIGH;
172 else
173 irqflags |= IRQF_TRIGGER_LOW;
174 } else {
175 switch (agpio->polarity) {
176 case ACPI_ACTIVE_HIGH:
177 irqflags |= IRQF_TRIGGER_RISING;
178 break;
179 case ACPI_ACTIVE_LOW:
180 irqflags |= IRQF_TRIGGER_FALLING;
181 break;
182 default:
183 irqflags |= IRQF_TRIGGER_RISING |
184 IRQF_TRIGGER_FALLING;
185 break;
186 }
187 }
188
189 event = kzalloc(sizeof(*event), GFP_KERNEL);
190 if (!event)
191 goto fail_unlock_irq;
192
193 event->handle = evt_handle;
194 event->irq = irq;
195 event->pin = pin;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700196 event->desc = desc;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200197
198 ret = request_threaded_irq(event->irq, NULL, handler, irqflags,
199 "ACPI:Event", event);
200 if (ret) {
201 dev_err(chip->dev, "Failed to setup interrupt handler for %d\n",
202 event->irq);
203 goto fail_free_event;
204 }
205
206 list_add_tail(&event->node, &acpi_gpio->events);
207 return AE_OK;
208
209fail_free_event:
210 kfree(event);
211fail_unlock_irq:
Alexandre Courbotd74be6d2014-07-22 16:17:42 +0900212 gpio_unlock_as_irq(chip, pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200213fail_free_desc:
214 gpiochip_free_own_desc(desc);
215
216 return AE_ERROR;
217}
218
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200219/**
220 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300221 * @chip: GPIO chip
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200222 *
223 * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
224 * handled by ACPI event methods which need to be called from the GPIO
225 * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
226 * gpio pins have acpi event methods and assigns interrupt handlers that calls
227 * the acpi event methods for those pins.
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200228 */
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300229void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200230{
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300231 struct acpi_gpio_chip *acpi_gpio;
232 acpi_handle handle;
233 acpi_status status;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200234
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300235 if (!chip->dev || !chip->to_irq)
236 return;
237
238 handle = ACPI_HANDLE(chip->dev);
239 if (!handle)
240 return;
241
242 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
243 if (ACPI_FAILURE(status))
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200244 return;
245
Mika Westerberg4b01a142014-03-10 14:54:52 +0200246 INIT_LIST_HEAD(&acpi_gpio->events);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200247 acpi_walk_resources(ACPI_HANDLE(chip->dev), "_AEI",
248 acpi_gpiochip_request_interrupt, acpi_gpio);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200249}
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200250
Mika Westerberg70b53412013-10-10 11:01:07 +0300251/**
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200252 * acpi_gpiochip_free_interrupts() - Free GPIO ACPI event interrupts.
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300253 * @chip: GPIO chip
Mika Westerberg70b53412013-10-10 11:01:07 +0300254 *
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200255 * Free interrupts associated with GPIO ACPI event method for the given
256 * GPIO chip.
Mika Westerberg70b53412013-10-10 11:01:07 +0300257 */
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300258void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
Mika Westerberg70b53412013-10-10 11:01:07 +0300259{
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300260 struct acpi_gpio_chip *acpi_gpio;
Mika Westerberg4b01a142014-03-10 14:54:52 +0200261 struct acpi_gpio_event *event, *ep;
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300262 acpi_handle handle;
263 acpi_status status;
Mika Westerberg70b53412013-10-10 11:01:07 +0300264
Mika Westerbergafa82fa2014-07-25 09:54:48 +0300265 if (!chip->dev || !chip->to_irq)
266 return;
267
268 handle = ACPI_HANDLE(chip->dev);
269 if (!handle)
270 return;
271
272 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
273 if (ACPI_FAILURE(status))
Mika Westerberg70b53412013-10-10 11:01:07 +0300274 return;
275
Mika Westerberg4b01a142014-03-10 14:54:52 +0200276 list_for_each_entry_safe_reverse(event, ep, &acpi_gpio->events, node) {
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200277 struct gpio_desc *desc;
278
279 free_irq(event->irq, event);
Alexandre Courbote46cf322014-08-19 10:06:08 -0700280 desc = event->desc;
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200281 if (WARN_ON(IS_ERR(desc)))
282 continue;
Alexandre Courbotd74be6d2014-07-22 16:17:42 +0900283 gpio_unlock_as_irq(chip, event->pin);
Mika Westerberg6072b9d2014-03-10 14:54:53 +0200284 gpiochip_free_own_desc(desc);
Mika Westerberg4b01a142014-03-10 14:54:52 +0200285 list_del(&event->node);
286 kfree(event);
Mika Westerberg70b53412013-10-10 11:01:07 +0300287 }
Mika Westerberg70b53412013-10-10 11:01:07 +0300288}
Mika Westerberg70b53412013-10-10 11:01:07 +0300289
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100290int acpi_dev_add_driver_gpios(struct acpi_device *adev,
291 const struct acpi_gpio_mapping *gpios)
292{
293 if (adev && gpios) {
294 adev->driver_gpios = gpios;
295 return 0;
296 }
297 return -EINVAL;
298}
299EXPORT_SYMBOL_GPL(acpi_dev_add_driver_gpios);
300
301static bool acpi_get_driver_gpio_data(struct acpi_device *adev,
302 const char *name, int index,
303 struct acpi_reference_args *args)
304{
305 const struct acpi_gpio_mapping *gm;
306
307 if (!adev->driver_gpios)
308 return false;
309
310 for (gm = adev->driver_gpios; gm->name; gm++)
311 if (!strcmp(name, gm->name) && gm->data && index < gm->size) {
312 const struct acpi_gpio_params *par = gm->data + index;
313
314 args->adev = adev;
315 args->args[0] = par->crs_entry_index;
316 args->args[1] = par->line_index;
317 args->args[2] = par->active_low;
318 args->nargs = 3;
319 return true;
320 }
321
322 return false;
323}
324
Mika Westerberg12028d22013-04-03 13:56:54 +0300325struct acpi_gpio_lookup {
326 struct acpi_gpio_info info;
327 int index;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100328 int pin_index;
Mika Westerberg936e15d2013-10-10 11:01:08 +0300329 struct gpio_desc *desc;
Mika Westerberg12028d22013-04-03 13:56:54 +0300330 int n;
331};
332
333static int acpi_find_gpio(struct acpi_resource *ares, void *data)
334{
335 struct acpi_gpio_lookup *lookup = data;
336
337 if (ares->type != ACPI_RESOURCE_TYPE_GPIO)
338 return 1;
339
Mika Westerberg936e15d2013-10-10 11:01:08 +0300340 if (lookup->n++ == lookup->index && !lookup->desc) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300341 const struct acpi_resource_gpio *agpio = &ares->data.gpio;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100342 int pin_index = lookup->pin_index;
343
344 if (pin_index >= agpio->pin_table_length)
345 return 1;
Mika Westerberg12028d22013-04-03 13:56:54 +0300346
Mika Westerberg936e15d2013-10-10 11:01:08 +0300347 lookup->desc = acpi_get_gpiod(agpio->resource_source.string_ptr,
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100348 agpio->pin_table[pin_index]);
Mika Westerberg12028d22013-04-03 13:56:54 +0300349 lookup->info.gpioint =
350 agpio->connection_type == ACPI_RESOURCE_GPIO_TYPE_INT;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100351
352 /*
353 * ActiveLow is only specified for GpioInt resource. If
354 * GpioIo is used then the only way to set the flag is
355 * to use _DSD "gpios" property.
356 */
357 if (lookup->info.gpioint)
358 lookup->info.active_low =
359 agpio->polarity == ACPI_ACTIVE_LOW;
Mika Westerberg12028d22013-04-03 13:56:54 +0300360 }
361
362 return 1;
363}
364
365/**
Mika Westerberg936e15d2013-10-10 11:01:08 +0300366 * acpi_get_gpiod_by_index() - get a GPIO descriptor from device resources
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100367 * @adev: pointer to a ACPI device to get GPIO from
368 * @propname: Property name of the GPIO (optional)
Mika Westerberg12028d22013-04-03 13:56:54 +0300369 * @index: index of GpioIo/GpioInt resource (starting from %0)
370 * @info: info pointer to fill in (optional)
371 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100372 * Function goes through ACPI resources for @adev and based on @index looks
Mika Westerberg936e15d2013-10-10 11:01:08 +0300373 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO descriptor,
Mika Westerberg12028d22013-04-03 13:56:54 +0300374 * and returns it. @index matches GpioIo/GpioInt resources only so if there
375 * are total %3 GPIO resources, the index goes from %0 to %2.
376 *
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100377 * If @propname is specified the GPIO is looked using device property. In
378 * that case @index is used to select the GPIO entry in the property value
379 * (in case of multiple).
380 *
Mika Westerberg936e15d2013-10-10 11:01:08 +0300381 * If the GPIO cannot be translated or there is an error an ERR_PTR is
Mika Westerberg12028d22013-04-03 13:56:54 +0300382 * returned.
383 *
384 * Note: if the GPIO resource has multiple entries in the pin list, this
385 * function only returns the first.
386 */
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100387struct gpio_desc *acpi_get_gpiod_by_index(struct acpi_device *adev,
388 const char *propname, int index,
Mika Westerberg936e15d2013-10-10 11:01:08 +0300389 struct acpi_gpio_info *info)
Mika Westerberg12028d22013-04-03 13:56:54 +0300390{
391 struct acpi_gpio_lookup lookup;
392 struct list_head resource_list;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100393 bool active_low = false;
Mika Westerberg12028d22013-04-03 13:56:54 +0300394 int ret;
395
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100396 if (!adev)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300397 return ERR_PTR(-ENODEV);
Mika Westerberg12028d22013-04-03 13:56:54 +0300398
399 memset(&lookup, 0, sizeof(lookup));
400 lookup.index = index;
Mika Westerberg12028d22013-04-03 13:56:54 +0300401
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100402 if (propname) {
403 struct acpi_reference_args args;
404
405 dev_dbg(&adev->dev, "GPIO: looking up %s\n", propname);
406
407 memset(&args, 0, sizeof(args));
408 ret = acpi_dev_get_property_reference(adev, propname, NULL,
409 index, &args);
Rafael J. Wysockif028d522014-11-03 23:39:41 +0100410 if (ret) {
411 bool found = acpi_get_driver_gpio_data(adev, propname,
412 index, &args);
413 if (!found)
414 return ERR_PTR(ret);
415 }
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100416
417 /*
418 * The property was found and resolved so need to
419 * lookup the GPIO based on returned args instead.
420 */
421 adev = args.adev;
422 if (args.nargs >= 2) {
423 lookup.index = args.args[0];
424 lookup.pin_index = args.args[1];
425 /*
426 * 3rd argument, if present is used to
427 * specify active_low.
428 */
429 if (args.nargs >= 3)
430 active_low = !!args.args[2];
431 }
432
433 dev_dbg(&adev->dev, "GPIO: _DSD returned %s %zd %llu %llu %llu\n",
434 dev_name(&adev->dev), args.nargs,
435 args.args[0], args.args[1], args.args[2]);
436 } else {
437 dev_dbg(&adev->dev, "GPIO: looking up %d in _CRS\n", index);
438 }
439
Mika Westerberg12028d22013-04-03 13:56:54 +0300440 INIT_LIST_HEAD(&resource_list);
441 ret = acpi_dev_get_resources(adev, &resource_list, acpi_find_gpio,
442 &lookup);
443 if (ret < 0)
Mika Westerberg936e15d2013-10-10 11:01:08 +0300444 return ERR_PTR(ret);
Mika Westerberg12028d22013-04-03 13:56:54 +0300445
446 acpi_dev_free_resource_list(&resource_list);
447
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100448 if (lookup.desc && info) {
Mika Westerberg12028d22013-04-03 13:56:54 +0300449 *info = lookup.info;
Mika Westerberg0d9a6932014-10-29 15:41:01 +0100450 if (active_low)
451 info->active_low = active_low;
452 }
Mika Westerberg12028d22013-04-03 13:56:54 +0300453
Mika Westerberga00580c2013-12-10 12:00:27 +0200454 return lookup.desc ? lookup.desc : ERR_PTR(-ENOENT);
Mika Westerberg12028d22013-04-03 13:56:54 +0300455}
Mika Westerberg664e3e52014-01-08 12:40:54 +0200456
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200457static acpi_status
458acpi_gpio_adr_space_handler(u32 function, acpi_physical_address address,
459 u32 bits, u64 *value, void *handler_context,
460 void *region_context)
461{
462 struct acpi_gpio_chip *achip = region_context;
463 struct gpio_chip *chip = achip->chip;
464 struct acpi_resource_gpio *agpio;
465 struct acpi_resource *ares;
Srinivas Pandruvadac15d8212014-09-23 10:35:54 +0800466 int pin_index = (int)address;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200467 acpi_status status;
468 bool pull_up;
Srinivas Pandruvadac15d8212014-09-23 10:35:54 +0800469 int length;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200470 int i;
471
472 status = acpi_buffer_to_resource(achip->conn_info.connection,
473 achip->conn_info.length, &ares);
474 if (ACPI_FAILURE(status))
475 return status;
476
477 if (WARN_ON(ares->type != ACPI_RESOURCE_TYPE_GPIO)) {
478 ACPI_FREE(ares);
479 return AE_BAD_PARAMETER;
480 }
481
482 agpio = &ares->data.gpio;
483 pull_up = agpio->pin_config == ACPI_PIN_CONFIG_PULLUP;
484
485 if (WARN_ON(agpio->io_restriction == ACPI_IO_RESTRICT_INPUT &&
486 function == ACPI_WRITE)) {
487 ACPI_FREE(ares);
488 return AE_BAD_PARAMETER;
489 }
490
Srinivas Pandruvadac15d8212014-09-23 10:35:54 +0800491 length = min(agpio->pin_table_length, (u16)(pin_index + bits));
492 for (i = pin_index; i < length; ++i) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200493 unsigned pin = agpio->pin_table[i];
494 struct acpi_gpio_connection *conn;
495 struct gpio_desc *desc;
496 bool found;
497
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200498 mutex_lock(&achip->conn_lock);
499
500 found = false;
501 list_for_each_entry(conn, &achip->conns, node) {
Alexandre Courbote46cf322014-08-19 10:06:08 -0700502 if (conn->pin == pin) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200503 found = true;
Alexandre Courbote46cf322014-08-19 10:06:08 -0700504 desc = conn->desc;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200505 break;
506 }
507 }
508 if (!found) {
Alexandre Courbotabdc08a2014-08-19 10:06:09 -0700509 desc = gpiochip_request_own_desc(chip, pin,
510 "ACPI:OpRegion");
Alexandre Courbote46cf322014-08-19 10:06:08 -0700511 if (IS_ERR(desc)) {
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200512 status = AE_ERROR;
513 mutex_unlock(&achip->conn_lock);
514 goto out;
515 }
516
517 switch (agpio->io_restriction) {
518 case ACPI_IO_RESTRICT_INPUT:
519 gpiod_direction_input(desc);
520 break;
521 case ACPI_IO_RESTRICT_OUTPUT:
522 /*
523 * ACPI GPIO resources don't contain an
524 * initial value for the GPIO. Therefore we
525 * deduce that value from the pull field
526 * instead. If the pin is pulled up we
527 * assume default to be high, otherwise
528 * low.
529 */
530 gpiod_direction_output(desc, pull_up);
531 break;
532 default:
533 /*
534 * Assume that the BIOS has configured the
535 * direction and pull accordingly.
536 */
537 break;
538 }
539
540 conn = kzalloc(sizeof(*conn), GFP_KERNEL);
541 if (!conn) {
542 status = AE_NO_MEMORY;
543 gpiochip_free_own_desc(desc);
544 mutex_unlock(&achip->conn_lock);
545 goto out;
546 }
547
Alexandre Courbote46cf322014-08-19 10:06:08 -0700548 conn->pin = pin;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200549 conn->desc = desc;
550 list_add_tail(&conn->node, &achip->conns);
551 }
552
553 mutex_unlock(&achip->conn_lock);
554
555 if (function == ACPI_WRITE)
Aaron Ludc62b562014-05-20 17:07:38 +0800556 gpiod_set_raw_value_cansleep(desc,
557 !!((1 << i) & *value));
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200558 else
Aaron Ludc62b562014-05-20 17:07:38 +0800559 *value |= (u64)gpiod_get_raw_value_cansleep(desc) << i;
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200560 }
561
562out:
563 ACPI_FREE(ares);
564 return status;
565}
566
567static void acpi_gpiochip_request_regions(struct acpi_gpio_chip *achip)
568{
569 struct gpio_chip *chip = achip->chip;
570 acpi_handle handle = ACPI_HANDLE(chip->dev);
571 acpi_status status;
572
573 INIT_LIST_HEAD(&achip->conns);
574 mutex_init(&achip->conn_lock);
575 status = acpi_install_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
576 acpi_gpio_adr_space_handler,
577 NULL, achip);
578 if (ACPI_FAILURE(status))
579 dev_err(chip->dev, "Failed to install GPIO OpRegion handler\n");
580}
581
582static void acpi_gpiochip_free_regions(struct acpi_gpio_chip *achip)
583{
584 struct gpio_chip *chip = achip->chip;
585 acpi_handle handle = ACPI_HANDLE(chip->dev);
586 struct acpi_gpio_connection *conn, *tmp;
587 acpi_status status;
588
589 status = acpi_remove_address_space_handler(handle, ACPI_ADR_SPACE_GPIO,
590 acpi_gpio_adr_space_handler);
591 if (ACPI_FAILURE(status)) {
592 dev_err(chip->dev, "Failed to remove GPIO OpRegion handler\n");
593 return;
594 }
595
596 list_for_each_entry_safe_reverse(conn, tmp, &achip->conns, node) {
597 gpiochip_free_own_desc(conn->desc);
598 list_del(&conn->node);
599 kfree(conn);
600 }
601}
602
Mika Westerberg664e3e52014-01-08 12:40:54 +0200603void acpi_gpiochip_add(struct gpio_chip *chip)
604{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200605 struct acpi_gpio_chip *acpi_gpio;
606 acpi_handle handle;
607 acpi_status status;
608
Mika Westerberge9595f82014-03-31 15:16:49 +0300609 if (!chip || !chip->dev)
610 return;
611
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200612 handle = ACPI_HANDLE(chip->dev);
613 if (!handle)
614 return;
615
616 acpi_gpio = kzalloc(sizeof(*acpi_gpio), GFP_KERNEL);
617 if (!acpi_gpio) {
618 dev_err(chip->dev,
619 "Failed to allocate memory for ACPI GPIO chip\n");
620 return;
621 }
622
623 acpi_gpio->chip = chip;
624
625 status = acpi_attach_data(handle, acpi_gpio_chip_dh, acpi_gpio);
626 if (ACPI_FAILURE(status)) {
627 dev_err(chip->dev, "Failed to attach ACPI GPIO chip\n");
628 kfree(acpi_gpio);
629 return;
630 }
631
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200632 acpi_gpiochip_request_regions(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200633}
634
635void acpi_gpiochip_remove(struct gpio_chip *chip)
636{
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200637 struct acpi_gpio_chip *acpi_gpio;
638 acpi_handle handle;
639 acpi_status status;
640
Mika Westerberge9595f82014-03-31 15:16:49 +0300641 if (!chip || !chip->dev)
642 return;
643
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200644 handle = ACPI_HANDLE(chip->dev);
645 if (!handle)
646 return;
647
648 status = acpi_get_data(handle, acpi_gpio_chip_dh, (void **)&acpi_gpio);
649 if (ACPI_FAILURE(status)) {
650 dev_warn(chip->dev, "Failed to retrieve ACPI GPIO chip\n");
651 return;
652 }
653
Mika Westerberg473ed7b2014-03-14 17:58:07 +0200654 acpi_gpiochip_free_regions(acpi_gpio);
Mika Westerbergaa92b6f2014-03-10 14:54:51 +0200655
656 acpi_detach_data(handle, acpi_gpio_chip_dh);
657 kfree(acpi_gpio);
Mika Westerberg664e3e52014-01-08 12:40:54 +0200658}