]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpio/gpiolib-acpi.c
gpiolib-acpi: Add ACPI5 event model support to gpio.
[karo-tx-linux.git] / drivers / gpio / gpiolib-acpi.c
1 /*
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>
18 #include <linux/interrupt.h>
19
20 static int acpi_gpiochip_find(struct gpio_chip *gc, void *data)
21 {
22         if (!gc->dev)
23                 return false;
24
25         return ACPI_HANDLE(gc->dev) == data;
26 }
27
28 /**
29  * acpi_get_gpio() - Translate ACPI GPIO pin to GPIO number usable with GPIO API
30  * @path:       ACPI GPIO controller full path name, (e.g. "\\_SB.GPO1")
31  * @pin:        ACPI GPIO pin number (0-based, controller-relative)
32  *
33  * Returns GPIO number to use with Linux generic GPIO API, or errno error value
34  */
35
36 int acpi_get_gpio(char *path, int pin)
37 {
38         struct gpio_chip *chip;
39         acpi_handle handle;
40         acpi_status status;
41
42         status = acpi_get_handle(NULL, path, &handle);
43         if (ACPI_FAILURE(status))
44                 return -ENODEV;
45
46         chip = gpiochip_find(handle, acpi_gpiochip_find);
47         if (!chip)
48                 return -ENODEV;
49
50         if (!gpio_is_valid(chip->base + pin))
51                 return -EINVAL;
52
53         return chip->base + pin;
54 }
55 EXPORT_SYMBOL_GPL(acpi_get_gpio);
56
57
58 static irqreturn_t acpi_gpio_irq_handler(int irq, void *data)
59 {
60         acpi_handle handle = data;
61
62         acpi_evaluate_object(handle, NULL, NULL, NULL);
63
64         return IRQ_HANDLED;
65 }
66
67 /**
68  * acpi_gpiochip_request_interrupts() - Register isr for gpio chip ACPI events
69  * @chip:      gpio chip
70  *
71  * ACPI5 platforms can use GPIO signaled ACPI events. These GPIO interrupts are
72  * handled by ACPI event methods which need to be called from the GPIO
73  * chip's interrupt handler. acpi_gpiochip_request_interrupts finds out which
74  * gpio pins have acpi event methods and assigns interrupt handlers that calls
75  * the acpi event methods for those pins.
76  *
77  * Interrupts are automatically freed on driver detach
78  */
79
80 void acpi_gpiochip_request_interrupts(struct gpio_chip *chip)
81 {
82         struct acpi_buffer buf = {ACPI_ALLOCATE_BUFFER, NULL};
83         struct acpi_resource *res;
84         acpi_handle handle, ev_handle;
85         acpi_status status;
86         unsigned int pin, irq;
87         char ev_name[5];
88
89         if (!chip->dev || !chip->to_irq)
90                 return;
91
92         handle = ACPI_HANDLE(chip->dev);
93         if (!handle)
94                 return;
95
96         status = acpi_get_event_resources(handle, &buf);
97         if (ACPI_FAILURE(status))
98                 return;
99
100         /* If a gpio interrupt has an acpi event handler method, then
101          * set up an interrupt handler that calls the acpi event handler
102          */
103
104         for (res = buf.pointer;
105              res && (res->type != ACPI_RESOURCE_TYPE_END_TAG);
106              res = ACPI_NEXT_RESOURCE(res)) {
107
108                 if (res->type != ACPI_RESOURCE_TYPE_GPIO ||
109                     res->data.gpio.connection_type !=
110                     ACPI_RESOURCE_GPIO_TYPE_INT)
111                         continue;
112
113                 pin = res->data.gpio.pin_table[0];
114                 if (pin > chip->ngpio)
115                         continue;
116
117                 sprintf(ev_name, "_%c%02X",
118                 res->data.gpio.triggering ? 'E' : 'L', pin);
119
120                 status = acpi_get_handle(handle, ev_name, &ev_handle);
121                 if (ACPI_FAILURE(status))
122                         continue;
123
124                 irq = chip->to_irq(chip, pin);
125                 if (irq < 0)
126                         continue;
127
128                 /* Assume BIOS sets the triggering, so no flags */
129                 devm_request_threaded_irq(chip->dev, irq, NULL,
130                                           acpi_gpio_irq_handler,
131                                           0,
132                                           "GPIO-signaled-ACPI-event",
133                                           ev_handle);
134         }
135 }
136 EXPORT_SYMBOL(acpi_gpiochip_request_interrupts);