blob: 89336c4f82cd34f1257c7bca1109fa332c71eac6 [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>
14#include <linux/gpio.h>
15#include <linux/export.h>
16#include <linux/acpi_gpio.h>
17#include <linux/acpi.h>
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020018#include <linux/interrupt.h>
Mathias Nymane29482e2012-11-30 12:37:36 +010019
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020020struct acpi_gpio_evt_pin {
21 struct list_head node;
22 acpi_handle *evt_handle;
23 unsigned int pin;
24 unsigned int irq;
25};
26
Mathias Nymane29482e2012-11-30 12:37:36 +010027static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
28{
29 if (!gc->dev)
30 return false;
31
32 return ACPI_HANDLE(gc->dev) == data;
33}
34
35/**
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)
39 *
40 * Returns GPIO number to use with Linux generic GPIO API, or errno error value
41 */
42
43int acpi_get_gpio(char *path, int pin)
44{
45 struct gpio_chip *chip;
46 acpi_handle handle;
47 acpi_status status;
48
49 status = acpi_get_handle(NULL, path, &handle);
50 if (ACPI_FAILURE(status))
51 return -ENODEV;
52
53 chip = gpiochip_find(handle, acpi_gpiochip_find);
54 if (!chip)
55 return -ENODEV;
56
57 if (!gpio_is_valid(chip->base + pin))
58 return -EINVAL;
59
60 return chip->base + pin;
61}
62EXPORT_SYMBOL_GPL(acpi_get_gpio);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020063
Mathias Nyman0d1c28a2013-01-28 16:23:10 +020064static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
65{
66 acpi_handle handle = data;
67
68 acpi_evaluate_object(handle, NULL, NULL, NULL);
69
70 return IRQ_HANDLED;
71}
72
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +020073static irqreturn_t acpi_gpio_irq_handler_evt(int irq, void *data)
74{
75 struct acpi_gpio_evt_pin *evt_pin = data;
76 struct acpi_object_list args;
77 union acpi_object arg;
78
79 arg.type = ACPI_TYPE_INTEGER;
80 arg.integer.value = evt_pin->pin;
81 args.count = 1;
82 args.pointer = &arg;
83
84 acpi_evaluate_object(evt_pin->evt_handle, NULL, &args, NULL);
85
86 return IRQ_HANDLED;
87}
88
89static void acpi_gpio_evt_dh(acpi_handle handle, void *data)
90{
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
96 * @chip: gpio chip
97 *
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 */
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200104void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
105{
106 struct acpi_buffer buf = {ACPI_ALLOCATE_BUFFER, NULL};
107 struct acpi_resource *res;
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200108 acpi_handle handle, evt_handle;
109 struct list_head *evt_pins = NULL;
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
122 status = acpi_get_event_resources(handle, &buf);
123 if (ACPI_FAILURE(status))
124 return;
125
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200126 status = acpi_get_handle(handle, "_EVT", &evt_handle);
127 if (ACPI_SUCCESS(status)) {
128 evt_pins = kzalloc(sizeof(*evt_pins), GFP_KERNEL);
129 if (evt_pins) {
130 INIT_LIST_HEAD(evt_pins);
131 status = acpi_attach_data(handle, acpi_gpio_evt_dh,
132 evt_pins);
133 if (ACPI_FAILURE(status)) {
134 kfree(evt_pins);
135 evt_pins = NULL;
136 }
137 }
138 }
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200139
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200140 /*
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
143 * handler.
144 */
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200145 for (res = buf.pointer;
146 res && (res->type != ACPI_RESOURCE_TYPE_END_TAG);
147 res = ACPI_NEXT_RESOURCE(res)) {
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200148 irq_handler_t handler = NULL;
149 void *data;
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200150
151 if (res->type != ACPI_RESOURCE_TYPE_GPIO ||
152 res->data.gpio.connection_type !=
153 ACPI_RESOURCE_GPIO_TYPE_INT)
154 continue;
155
156 pin = res->data.gpio.pin_table[0];
157 if (pin > chip->ngpio)
158 continue;
159
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200160 irq = chip->to_irq(chip, pin);
161 if (irq < 0)
162 continue;
163
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200164 if (pin <= 255) {
165 acpi_handle ev_handle;
166
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;
172 data = ev_handle;
173 }
174 }
175 if (!handler && evt_pins) {
176 struct acpi_gpio_evt_pin *evt_pin;
177
178 evt_pin = kzalloc(sizeof(*evt_pin), GFP_KERNEL);
179 if (!evt_pin)
180 continue;
181
182 list_add_tail(&evt_pin->node, evt_pins);
183 evt_pin->evt_handle = evt_handle;
184 evt_pin->pin = pin;
185 evt_pin->irq = irq;
186 handler = acpi_gpio_irq_handler_evt;
187 data = evt_pin;
188 }
189 if (!handler)
190 continue;
191
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200192 /* Assume BIOS sets the triggering, so no flags */
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200193 ret = devm_request_threaded_irq(chip->dev, irq, NULL, handler,
194 0, "GPIO-signaled-ACPI-event",
195 data);
Mathias Nyman1107ca12013-02-04 11:32:22 +0200196 if (ret)
197 dev_err(chip->dev,
198 "Failed to request IRQ %d ACPI event handler\n",
199 irq);
Mathias Nyman0d1c28a2013-01-28 16:23:10 +0200200 }
201}
202EXPORT_SYMBOL(acpi_gpiochip_request_interrupts);
Rafael J. Wysocki7fc7acb2013-04-09 15:57:25 +0200203
204
205/**
206 * acpi_gpiochip_free_interrupts() - Free GPIO _EVT ACPI event interrupts.
207 * @chip: gpio chip
208 *
209 * Free interrupts associated with the _EVT method for the given GPIO chip.
210 *
211 * The remaining ACPI event interrupts associated with the chip are freed
212 * automatically.
213 */
214void acpi_gpiochip_free_interrupts(struct gpio_chip *chip)
215{
216 acpi_handle handle;
217 acpi_status status;
218 struct list_head *evt_pins;
219 struct acpi_gpio_evt_pin *evt_pin, *ep;
220
221 if (!chip->dev || !chip->to_irq)
222 return;
223
224 handle = ACPI_HANDLE(chip->dev);
225 if (!handle)
226 return;
227
228 status = acpi_get_data(handle, acpi_gpio_evt_dh, (void **)&evt_pins);
229 if (ACPI_FAILURE(status))
230 return;
231
232 list_for_each_entry_safe_reverse(evt_pin, ep, evt_pins, node) {
233 devm_free_irq(chip->dev, evt_pin->irq, evt_pin);
234 list_del(&evt_pin->node);
235 kfree(evt_pin);
236 }
237
238 acpi_detach_data(handle, acpi_gpio_evt_dh);
239 kfree(evt_pins);
240}
241EXPORT_SYMBOL(acpi_gpiochip_free_interrupts);