]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/input/keyboard/gpio_keys.c
Input: keyboard - add locking around event handling
[mirror_ubuntu-jammy-kernel.git] / drivers / input / keyboard / gpio_keys.c
CommitLineData
78a56aab
PB
1/*
2 * Driver for keys on GPIO lines capable of generating interrupts.
3 *
4 * Copyright 2005 Phil Blundell
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/module.h>
78a56aab
PB
12
13#include <linux/init.h>
14#include <linux/fs.h>
15#include <linux/interrupt.h>
16#include <linux/irq.h>
17#include <linux/sched.h>
18#include <linux/pm.h>
19#include <linux/sysctl.h>
20#include <linux/proc_fs.h>
21#include <linux/delay.h>
22#include <linux/platform_device.h>
23#include <linux/input.h>
49015bee 24#include <linux/gpio_keys.h>
da0d03fe 25#include <linux/workqueue.h>
111bc59c 26#include <linux/gpio.h>
78a56aab 27
a33466e3
DB
28struct gpio_button_data {
29 struct gpio_keys_button *button;
30 struct input_dev *input;
ca865a77 31 struct timer_list timer;
da0d03fe 32 struct work_struct work;
a33466e3
DB
33};
34
35struct gpio_keys_drvdata {
36 struct input_dev *input;
37 struct gpio_button_data data[0];
38};
39
da0d03fe 40static void gpio_keys_report_event(struct work_struct *work)
a33466e3 41{
da0d03fe
JN
42 struct gpio_button_data *bdata =
43 container_of(work, struct gpio_button_data, work);
ce25d7e9
UKK
44 struct gpio_keys_button *button = bdata->button;
45 struct input_dev *input = bdata->input;
a33466e3
DB
46 unsigned int type = button->type ?: EV_KEY;
47 int state = (gpio_get_value(button->gpio) ? 1 : 0) ^ button->active_low;
48
49 input_event(input, type, button->code, !!state);
50 input_sync(input);
51}
52
da0d03fe 53static void gpio_keys_timer(unsigned long _data)
ca865a77
JN
54{
55 struct gpio_button_data *data = (struct gpio_button_data *)_data;
56
da0d03fe 57 schedule_work(&data->work);
ca865a77
JN
58}
59
78a56aab
PB
60static irqreturn_t gpio_keys_isr(int irq, void *dev_id)
61{
57ffe9d5
UKK
62 struct gpio_button_data *bdata = dev_id;
63 struct gpio_keys_button *button = bdata->button;
78a56aab 64
57ffe9d5 65 BUG_ON(irq != gpio_to_irq(button->gpio));
84767d00 66
ca865a77
JN
67 if (button->debounce_interval)
68 mod_timer(&bdata->timer,
69 jiffies + msecs_to_jiffies(button->debounce_interval));
70 else
da0d03fe 71 schedule_work(&bdata->work);
78a56aab 72
57ffe9d5 73 return IRQ_HANDLED;
78a56aab
PB
74}
75
bc8f1eaf
BD
76static int __devinit gpio_keys_setup_key(struct device *dev,
77 struct gpio_button_data *bdata,
78 struct gpio_keys_button *button)
79{
80 char *desc = button->desc ? button->desc : "gpio_keys";
81 int irq, error;
82
83 setup_timer(&bdata->timer, gpio_keys_timer, (unsigned long)bdata);
84 INIT_WORK(&bdata->work, gpio_keys_report_event);
85
86 error = gpio_request(button->gpio, desc);
87 if (error < 0) {
88 dev_err(dev, "failed to request GPIO %d, error %d\n",
89 button->gpio, error);
90 goto fail2;
91 }
92
93 error = gpio_direction_input(button->gpio);
94 if (error < 0) {
95 dev_err(dev, "failed to configure"
96 " direction for GPIO %d, error %d\n",
97 button->gpio, error);
98 goto fail3;
99 }
100
101 irq = gpio_to_irq(button->gpio);
102 if (irq < 0) {
103 error = irq;
104 dev_err(dev, "Unable to get irq number for GPIO %d, error %d\n",
105 button->gpio, error);
106 goto fail3;
107 }
108
109 error = request_irq(irq, gpio_keys_isr,
110 IRQF_SHARED |
111 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
112 desc, bdata);
113 if (error) {
114 dev_err(dev, "Unable to claim irq %d; error %d\n",
115 irq, error);
116 goto fail3;
117 }
118
119 return 0;
120
121fail3:
122 gpio_free(button->gpio);
123fail2:
124 return error;
125}
126
78a56aab
PB
127static int __devinit gpio_keys_probe(struct platform_device *pdev)
128{
129 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
a33466e3 130 struct gpio_keys_drvdata *ddata;
db19fd8b 131 struct device *dev = &pdev->dev;
78a56aab
PB
132 struct input_dev *input;
133 int i, error;
e15b0213 134 int wakeup = 0;
78a56aab 135
a33466e3
DB
136 ddata = kzalloc(sizeof(struct gpio_keys_drvdata) +
137 pdata->nbuttons * sizeof(struct gpio_button_data),
138 GFP_KERNEL);
78a56aab 139 input = input_allocate_device();
a33466e3 140 if (!ddata || !input) {
db19fd8b 141 dev_err(dev, "failed to allocate state\n");
a33466e3
DB
142 error = -ENOMEM;
143 goto fail1;
144 }
78a56aab 145
a33466e3 146 platform_set_drvdata(pdev, ddata);
78a56aab
PB
147
148 input->name = pdev->name;
149 input->phys = "gpio-keys/input0";
469ba4df 150 input->dev.parent = &pdev->dev;
78a56aab
PB
151
152 input->id.bustype = BUS_HOST;
153 input->id.vendor = 0x0001;
154 input->id.product = 0x0001;
155 input->id.version = 0x0100;
156
b67b4b11
DC
157 /* Enable auto repeat feature of Linux input subsystem */
158 if (pdata->rep)
159 __set_bit(EV_REP, input->evbit);
160
a33466e3
DB
161 ddata->input = input;
162
78a56aab 163 for (i = 0; i < pdata->nbuttons; i++) {
84767d00 164 struct gpio_keys_button *button = &pdata->buttons[i];
a33466e3 165 struct gpio_button_data *bdata = &ddata->data[i];
84767d00 166 unsigned int type = button->type ?: EV_KEY;
78a56aab 167
a33466e3 168 bdata->input = input;
74dd4393 169 bdata->button = button;
bc8f1eaf
BD
170
171 error = gpio_keys_setup_key(dev, bdata, button);
172 if (error)
a33466e3 173 goto fail2;
84767d00 174
e15b0213
AS
175 if (button->wakeup)
176 wakeup = 1;
177
84767d00 178 input_set_capability(input, type, button->code);
78a56aab
PB
179 }
180
181 error = input_register_device(input);
182 if (error) {
db19fd8b 183 dev_err(dev, "Unable to register input device, "
006df302 184 "error: %d\n", error);
a33466e3 185 goto fail2;
78a56aab
PB
186 }
187
e15b0213
AS
188 device_init_wakeup(&pdev->dev, wakeup);
189
78a56aab
PB
190 return 0;
191
a33466e3 192 fail2:
6a2e3911 193 while (--i >= 0) {
57ffe9d5 194 free_irq(gpio_to_irq(pdata->buttons[i].gpio), &ddata->data[i]);
ca865a77
JN
195 if (pdata->buttons[i].debounce_interval)
196 del_timer_sync(&ddata->data[i].timer);
da0d03fe 197 cancel_work_sync(&ddata->data[i].work);
6a2e3911
HVR
198 gpio_free(pdata->buttons[i].gpio);
199 }
78a56aab 200
006df302 201 platform_set_drvdata(pdev, NULL);
a33466e3 202 fail1:
78a56aab 203 input_free_device(input);
a33466e3 204 kfree(ddata);
78a56aab
PB
205
206 return error;
207}
208
209static int __devexit gpio_keys_remove(struct platform_device *pdev)
210{
211 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
a33466e3
DB
212 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev);
213 struct input_dev *input = ddata->input;
78a56aab
PB
214 int i;
215
e15b0213
AS
216 device_init_wakeup(&pdev->dev, 0);
217
78a56aab 218 for (i = 0; i < pdata->nbuttons; i++) {
0d98f6bb 219 int irq = gpio_to_irq(pdata->buttons[i].gpio);
57ffe9d5 220 free_irq(irq, &ddata->data[i]);
ca865a77
JN
221 if (pdata->buttons[i].debounce_interval)
222 del_timer_sync(&ddata->data[i].timer);
da0d03fe 223 cancel_work_sync(&ddata->data[i].work);
6a2e3911 224 gpio_free(pdata->buttons[i].gpio);
78a56aab
PB
225 }
226
227 input_unregister_device(input);
228
229 return 0;
230}
231
e15b0213
AS
232
233#ifdef CONFIG_PM
ae78e0e0 234static int gpio_keys_suspend(struct device *dev)
e15b0213 235{
ae78e0e0 236 struct platform_device *pdev = to_platform_device(dev);
e15b0213
AS
237 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
238 int i;
239
240 if (device_may_wakeup(&pdev->dev)) {
241 for (i = 0; i < pdata->nbuttons; i++) {
242 struct gpio_keys_button *button = &pdata->buttons[i];
243 if (button->wakeup) {
244 int irq = gpio_to_irq(button->gpio);
245 enable_irq_wake(irq);
246 }
247 }
248 }
249
250 return 0;
251}
252
ae78e0e0 253static int gpio_keys_resume(struct device *dev)
e15b0213 254{
ae78e0e0 255 struct platform_device *pdev = to_platform_device(dev);
e15b0213
AS
256 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
257 int i;
258
259 if (device_may_wakeup(&pdev->dev)) {
260 for (i = 0; i < pdata->nbuttons; i++) {
261 struct gpio_keys_button *button = &pdata->buttons[i];
262 if (button->wakeup) {
263 int irq = gpio_to_irq(button->gpio);
264 disable_irq_wake(irq);
265 }
266 }
267 }
268
269 return 0;
270}
ae78e0e0
MR
271
272static const struct dev_pm_ops gpio_keys_pm_ops = {
273 .suspend = gpio_keys_suspend,
274 .resume = gpio_keys_resume,
275};
e15b0213
AS
276#endif
277
9b07044c 278static struct platform_driver gpio_keys_device_driver = {
78a56aab
PB
279 .probe = gpio_keys_probe,
280 .remove = __devexit_p(gpio_keys_remove),
281 .driver = {
282 .name = "gpio-keys",
d7b5247b 283 .owner = THIS_MODULE,
ae78e0e0
MR
284#ifdef CONFIG_PM
285 .pm = &gpio_keys_pm_ops,
286#endif
78a56aab
PB
287 }
288};
289
290static int __init gpio_keys_init(void)
291{
292 return platform_driver_register(&gpio_keys_device_driver);
293}
294
295static void __exit gpio_keys_exit(void)
296{
297 platform_driver_unregister(&gpio_keys_device_driver);
298}
299
300module_init(gpio_keys_init);
301module_exit(gpio_keys_exit);
302
303MODULE_LICENSE("GPL");
304MODULE_AUTHOR("Phil Blundell <pb@handhelds.org>");
305MODULE_DESCRIPTION("Keyboard driver for CPU GPIOs");
d7b5247b 306MODULE_ALIAS("platform:gpio-keys");