2 * ACPI helpers for GPIO API
4 * Copyright (C) 2012, Intel Corporation
5 * Authors: Mathias Nyman <mathias.nyman@linux.intel.com>
6 * Mika Westerberg <mika.westerberg@linux.intel.com>
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.
13 #include <linux/errno.h>
14 #include <linux/gpio.h>
15 #include <linux/export.h>
16 #include <linux/acpi_gpio.h>
17 #include <linux/acpi.h>
18 #include <linux/interrupt.h>
20 struct acpi_gpio_evt_pin
{
21 struct list_head node
;
22 acpi_handle
*evt_handle
;
27 static int acpi_gpiochip_find(struct gpio_chip
*gc
, void *data
)
32 return ACPI_HANDLE(gc
->dev
) == data
;
36 * acpi_get_gpio() - Translate ACPI GPIO pin to GPIO number usable with GPIO API
37 * @path: ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
38 * @pin: ACPI GPIO pin number (0-based, controller-relative)
40 * Returns GPIO number to use with Linux generic GPIO API, or errno error value
43 int acpi_get_gpio(char *path
, int pin
)
45 struct gpio_chip
*chip
;
49 status
= acpi_get_handle(NULL
, path
, &handle
);
50 if (ACPI_FAILURE(status
))
53 chip
= gpiochip_find(handle
, acpi_gpiochip_find
);
57 if (!gpio_is_valid(chip
->base
+ pin
))
60 return chip
->base
+ pin
;
62 EXPORT_SYMBOL_GPL(acpi_get_gpio
);
64 static irqreturn_t
acpi_gpio_irq_handler(int irq
, void *data
)
66 acpi_handle handle
= data
;
68 acpi_evaluate_object(handle
, NULL
, NULL
, NULL
);
73 static irqreturn_t
acpi_gpio_irq_handler_evt(int irq
, void *data
)
75 struct acpi_gpio_evt_pin
*evt_pin
= data
;
76 struct acpi_object_list args
;
77 union acpi_object arg
;
79 arg
.type
= ACPI_TYPE_INTEGER
;
80 arg
.integer
.value
= evt_pin
->pin
;
84 acpi_evaluate_object(evt_pin
->evt_handle
, NULL
, &args
, NULL
);
89 static void acpi_gpio_evt_dh(acpi_handle handle
, void *data
)
91 /* The address of this function is used as a key. */
95 * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
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.
104 void acpi_gpiochip_request_interrupts(struct gpio_chip
*chip
)
106 struct acpi_buffer buf
= {ACPI_ALLOCATE_BUFFER
, NULL
};
107 struct acpi_resource
*res
;
108 acpi_handle handle
, evt_handle
;
109 struct list_head
*evt_pins
= NULL
;
115 if (!chip
->dev
|| !chip
->to_irq
)
118 handle
= ACPI_HANDLE(chip
->dev
);
122 status
= acpi_get_event_resources(handle
, &buf
);
123 if (ACPI_FAILURE(status
))
126 status
= acpi_get_handle(handle
, "_EVT", &evt_handle
);
127 if (ACPI_SUCCESS(status
)) {
128 evt_pins
= kzalloc(sizeof(*evt_pins
), GFP_KERNEL
);
130 INIT_LIST_HEAD(evt_pins
);
131 status
= acpi_attach_data(handle
, acpi_gpio_evt_dh
,
133 if (ACPI_FAILURE(status
)) {
141 * If a GPIO interrupt has an ACPI event handler method, or _EVT is
142 * present, set up an interrupt handler that calls the ACPI event
145 for (res
= buf
.pointer
;
146 res
&& (res
->type
!= ACPI_RESOURCE_TYPE_END_TAG
);
147 res
= ACPI_NEXT_RESOURCE(res
)) {
148 irq_handler_t handler
= NULL
;
151 if (res
->type
!= ACPI_RESOURCE_TYPE_GPIO
||
152 res
->data
.gpio
.connection_type
!=
153 ACPI_RESOURCE_GPIO_TYPE_INT
)
156 pin
= res
->data
.gpio
.pin_table
[0];
157 if (pin
> chip
->ngpio
)
160 irq
= chip
->to_irq(chip
, pin
);
165 acpi_handle ev_handle
;
167 sprintf(ev_name
, "_%c%02X",
168 res
->data
.gpio
.triggering
? 'E' : 'L', pin
);
169 status
= acpi_get_handle(handle
, ev_name
, &ev_handle
);
170 if (ACPI_SUCCESS(status
)) {
171 handler
= acpi_gpio_irq_handler
;
175 if (!handler
&& evt_pins
) {
176 struct acpi_gpio_evt_pin
*evt_pin
;
178 evt_pin
= kzalloc(sizeof(*evt_pin
), GFP_KERNEL
);
182 list_add_tail(&evt_pin
->node
, evt_pins
);
183 evt_pin
->evt_handle
= evt_handle
;
186 handler
= acpi_gpio_irq_handler_evt
;
192 /* Assume BIOS sets the triggering, so no flags */
193 ret
= devm_request_threaded_irq(chip
->dev
, irq
, NULL
, handler
,
194 0, "GPIO-signaled-ACPI-event",
198 "Failed to request IRQ %d ACPI event handler\n",
202 EXPORT_SYMBOL(acpi_gpiochip_request_interrupts
);
204 struct acpi_gpio_lookup
{
205 struct acpi_gpio_info info
;
211 static int acpi_find_gpio(struct acpi_resource
*ares
, void *data
)
213 struct acpi_gpio_lookup
*lookup
= data
;
215 if (ares
->type
!= ACPI_RESOURCE_TYPE_GPIO
)
218 if (lookup
->n
++ == lookup
->index
&& lookup
->gpio
< 0) {
219 const struct acpi_resource_gpio
*agpio
= &ares
->data
.gpio
;
221 lookup
->gpio
= acpi_get_gpio(agpio
->resource_source
.string_ptr
,
222 agpio
->pin_table
[0]);
223 lookup
->info
.gpioint
=
224 agpio
->connection_type
== ACPI_RESOURCE_GPIO_TYPE_INT
;
231 * acpi_get_gpio_by_index() - get a GPIO number from device resources
232 * @dev: pointer to a device to get GPIO from
233 * @index: index of GpioIo/GpioInt resource (starting from %0)
234 * @info: info pointer to fill in (optional)
236 * Function goes through ACPI resources for @dev and based on @index looks
237 * up a GpioIo/GpioInt resource, translates it to the Linux GPIO number,
238 * and returns it. @index matches GpioIo/GpioInt resources only so if there
239 * are total %3 GPIO resources, the index goes from %0 to %2.
241 * If the GPIO cannot be translated or there is an error, negative errno is
244 * Note: if the GPIO resource has multiple entries in the pin list, this
245 * function only returns the first.
247 int acpi_get_gpio_by_index(struct device
*dev
, int index
,
248 struct acpi_gpio_info
*info
)
250 struct acpi_gpio_lookup lookup
;
251 struct list_head resource_list
;
252 struct acpi_device
*adev
;
259 handle
= ACPI_HANDLE(dev
);
260 if (!handle
|| acpi_bus_get_device(handle
, &adev
))
263 memset(&lookup
, 0, sizeof(lookup
));
264 lookup
.index
= index
;
265 lookup
.gpio
= -ENODEV
;
267 INIT_LIST_HEAD(&resource_list
);
268 ret
= acpi_dev_get_resources(adev
, &resource_list
, acpi_find_gpio
,
273 acpi_dev_free_resource_list(&resource_list
);
275 if (lookup
.gpio
>= 0 && info
)
280 EXPORT_SYMBOL_GPL(acpi_get_gpio_by_index
);
283 * acpi_gpiochip_free_interrupts() - Free GPIO _EVT ACPI event interrupts.
286 * Free interrupts associated with the _EVT method for the given GPIO chip.
288 * The remaining ACPI event interrupts associated with the chip are freed
291 void acpi_gpiochip_free_interrupts(struct gpio_chip
*chip
)
295 struct list_head
*evt_pins
;
296 struct acpi_gpio_evt_pin
*evt_pin
, *ep
;
298 if (!chip
->dev
|| !chip
->to_irq
)
301 handle
= ACPI_HANDLE(chip
->dev
);
305 status
= acpi_get_data(handle
, acpi_gpio_evt_dh
, (void **)&evt_pins
);
306 if (ACPI_FAILURE(status
))
309 list_for_each_entry_safe_reverse(evt_pin
, ep
, evt_pins
, node
) {
310 devm_free_irq(chip
->dev
, evt_pin
->irq
, evt_pin
);
311 list_del(&evt_pin
->node
);
315 acpi_detach_data(handle
, acpi_gpio_evt_dh
);
318 EXPORT_SYMBOL(acpi_gpiochip_free_interrupts
);