blob: 2157cd7de00ced20c2d253bce59f6a5f37401841 [file] [log] [blame]
Phil Blundell78a56aa2007-01-18 00:44:09 -05001/*
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>
Phil Blundell78a56aa2007-01-18 00:44:09 -050012
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>
David Brownell49015be2007-03-05 00:30:22 -080024#include <linux/gpio_keys.h>
Alek Du0b346832009-06-11 02:00:35 -070025#include <linux/workqueue.h>
Phil Blundell78a56aa2007-01-18 00:44:09 -050026
Philipp Zabel0d98f6b2007-02-18 01:40:46 -050027#include <asm/gpio.h>
Phil Blundell78a56aa2007-01-18 00:44:09 -050028
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040029struct gpio_button_data {
30 struct gpio_keys_button *button;
31 struct input_dev *input;
Alek Du0b346832009-06-11 02:00:35 -070032 struct delayed_work work;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040033};
34
35struct gpio_keys_drvdata {
36 struct input_dev *input;
37 struct gpio_button_data data[0];
38};
39
Alek Du0b346832009-06-11 02:00:35 -070040static void gpio_keys_report_event(struct work_struct *work)
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040041{
Alek Du0b346832009-06-11 02:00:35 -070042 struct gpio_button_data *bdata =
43 container_of(work, struct gpio_button_data, work.work);
Uwe Kleine-Königce25d7e2008-08-08 12:14:36 -040044 struct gpio_keys_button *button = bdata->button;
45 struct input_dev *input = bdata->input;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040046 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
Phil Blundell78a56aa2007-01-18 00:44:09 -050053static irqreturn_t gpio_keys_isr(int irq, void *dev_id)
54{
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -040055 struct gpio_button_data *bdata = dev_id;
56 struct gpio_keys_button *button = bdata->button;
Alek Du0b346832009-06-11 02:00:35 -070057 unsigned long delay;
Phil Blundell78a56aa2007-01-18 00:44:09 -050058
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -040059 BUG_ON(irq != gpio_to_irq(button->gpio));
Phil Blundell78a56aa2007-01-18 00:44:09 -050060
Alek Du0b346832009-06-11 02:00:35 -070061 delay = button->debounce_interval ?
62 msecs_to_jiffies(button->debounce_interval) : 0;
63 schedule_delayed_work(&bdata->work, delay);
Roman Moravcik84767d02007-05-01 00:39:13 -040064
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -040065 return IRQ_HANDLED;
Phil Blundell78a56aa2007-01-18 00:44:09 -050066}
67
68static int __devinit gpio_keys_probe(struct platform_device *pdev)
69{
70 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040071 struct gpio_keys_drvdata *ddata;
Phil Blundell78a56aa2007-01-18 00:44:09 -050072 struct input_dev *input;
73 int i, error;
Anti Sulline15b0212007-09-26 00:01:17 -040074 int wakeup = 0;
Phil Blundell78a56aa2007-01-18 00:44:09 -050075
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040076 ddata = kzalloc(sizeof(struct gpio_keys_drvdata) +
77 pdata->nbuttons * sizeof(struct gpio_button_data),
78 GFP_KERNEL);
Phil Blundell78a56aa2007-01-18 00:44:09 -050079 input = input_allocate_device();
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040080 if (!ddata || !input) {
81 error = -ENOMEM;
82 goto fail1;
83 }
Phil Blundell78a56aa2007-01-18 00:44:09 -050084
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040085 platform_set_drvdata(pdev, ddata);
Phil Blundell78a56aa2007-01-18 00:44:09 -050086
87 input->name = pdev->name;
88 input->phys = "gpio-keys/input0";
Dmitry Torokhov469ba4d2007-04-12 01:34:58 -040089 input->dev.parent = &pdev->dev;
Phil Blundell78a56aa2007-01-18 00:44:09 -050090
91 input->id.bustype = BUS_HOST;
92 input->id.vendor = 0x0001;
93 input->id.product = 0x0001;
94 input->id.version = 0x0100;
95
Dominic Curranb67b4b12008-10-27 22:30:53 -040096 /* Enable auto repeat feature of Linux input subsystem */
97 if (pdata->rep)
98 __set_bit(EV_REP, input->evbit);
99
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400100 ddata->input = input;
101
Phil Blundell78a56aa2007-01-18 00:44:09 -0500102 for (i = 0; i < pdata->nbuttons; i++) {
Roman Moravcik84767d02007-05-01 00:39:13 -0400103 struct gpio_keys_button *button = &pdata->buttons[i];
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400104 struct gpio_button_data *bdata = &ddata->data[i];
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500105 int irq;
Roman Moravcik84767d02007-05-01 00:39:13 -0400106 unsigned int type = button->type ?: EV_KEY;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500107
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400108 bdata->input = input;
Uwe Kleine-König74dd4392008-07-30 10:33:43 -0400109 bdata->button = button;
Alek Du0b346832009-06-11 02:00:35 -0700110 INIT_DELAYED_WORK(&bdata->work, gpio_keys_report_event);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400111
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500112 error = gpio_request(button->gpio, button->desc ?: "gpio_keys");
113 if (error < 0) {
114 pr_err("gpio-keys: failed to request GPIO %d,"
115 " error %d\n", button->gpio, error);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400116 goto fail2;
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500117 }
118
119 error = gpio_direction_input(button->gpio);
120 if (error < 0) {
121 pr_err("gpio-keys: failed to configure input"
122 " direction for GPIO %d, error %d\n",
123 button->gpio, error);
124 gpio_free(button->gpio);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400125 goto fail2;
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500126 }
127
128 irq = gpio_to_irq(button->gpio);
Anti Sullin006df302007-09-26 00:01:03 -0400129 if (irq < 0) {
130 error = irq;
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500131 pr_err("gpio-keys: Unable to get irq number"
132 " for GPIO %d, error %d\n",
Anti Sullin006df302007-09-26 00:01:03 -0400133 button->gpio, error);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500134 gpio_free(button->gpio);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400135 goto fail2;
Anti Sullin006df302007-09-26 00:01:03 -0400136 }
137
138 error = request_irq(irq, gpio_keys_isr,
Dmitry Torokhov64e85632009-04-18 18:45:17 -0700139 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Anti Sullin006df302007-09-26 00:01:03 -0400140 button->desc ? button->desc : "gpio_keys",
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -0400141 bdata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500142 if (error) {
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500143 pr_err("gpio-keys: Unable to claim irq %d; error %d\n",
Philipp Zabel0d98f6b2007-02-18 01:40:46 -0500144 irq, error);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500145 gpio_free(button->gpio);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400146 goto fail2;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500147 }
Roman Moravcik84767d02007-05-01 00:39:13 -0400148
Anti Sulline15b0212007-09-26 00:01:17 -0400149 if (button->wakeup)
150 wakeup = 1;
151
Roman Moravcik84767d02007-05-01 00:39:13 -0400152 input_set_capability(input, type, button->code);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500153 }
154
155 error = input_register_device(input);
156 if (error) {
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500157 pr_err("gpio-keys: Unable to register input device, "
Anti Sullin006df302007-09-26 00:01:03 -0400158 "error: %d\n", error);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400159 goto fail2;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500160 }
161
Anti Sulline15b0212007-09-26 00:01:17 -0400162 device_init_wakeup(&pdev->dev, wakeup);
163
Phil Blundell78a56aa2007-01-18 00:44:09 -0500164 return 0;
165
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400166 fail2:
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500167 while (--i >= 0) {
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -0400168 free_irq(gpio_to_irq(pdata->buttons[i].gpio), &ddata->data[i]);
Alek Du0b346832009-06-11 02:00:35 -0700169 cancel_delayed_work_sync(&ddata->data[i].work);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500170 gpio_free(pdata->buttons[i].gpio);
171 }
Phil Blundell78a56aa2007-01-18 00:44:09 -0500172
Anti Sullin006df302007-09-26 00:01:03 -0400173 platform_set_drvdata(pdev, NULL);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400174 fail1:
Phil Blundell78a56aa2007-01-18 00:44:09 -0500175 input_free_device(input);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400176 kfree(ddata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500177
178 return error;
179}
180
181static int __devexit gpio_keys_remove(struct platform_device *pdev)
182{
183 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400184 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev);
185 struct input_dev *input = ddata->input;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500186 int i;
187
Anti Sulline15b0212007-09-26 00:01:17 -0400188 device_init_wakeup(&pdev->dev, 0);
189
Phil Blundell78a56aa2007-01-18 00:44:09 -0500190 for (i = 0; i < pdata->nbuttons; i++) {
Philipp Zabel0d98f6b2007-02-18 01:40:46 -0500191 int irq = gpio_to_irq(pdata->buttons[i].gpio);
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -0400192 free_irq(irq, &ddata->data[i]);
Alek Du0b346832009-06-11 02:00:35 -0700193 cancel_delayed_work_sync(&ddata->data[i].work);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500194 gpio_free(pdata->buttons[i].gpio);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500195 }
196
197 input_unregister_device(input);
198
199 return 0;
200}
201
Anti Sulline15b0212007-09-26 00:01:17 -0400202
203#ifdef CONFIG_PM
204static int gpio_keys_suspend(struct platform_device *pdev, pm_message_t state)
205{
206 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
207 int i;
208
209 if (device_may_wakeup(&pdev->dev)) {
210 for (i = 0; i < pdata->nbuttons; i++) {
211 struct gpio_keys_button *button = &pdata->buttons[i];
212 if (button->wakeup) {
213 int irq = gpio_to_irq(button->gpio);
214 enable_irq_wake(irq);
215 }
216 }
217 }
218
219 return 0;
220}
221
222static int gpio_keys_resume(struct platform_device *pdev)
223{
224 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
225 int i;
226
227 if (device_may_wakeup(&pdev->dev)) {
228 for (i = 0; i < pdata->nbuttons; i++) {
229 struct gpio_keys_button *button = &pdata->buttons[i];
230 if (button->wakeup) {
231 int irq = gpio_to_irq(button->gpio);
232 disable_irq_wake(irq);
233 }
234 }
235 }
236
237 return 0;
238}
239#else
240#define gpio_keys_suspend NULL
241#define gpio_keys_resume NULL
242#endif
243
Uwe Kleine-König9b070442008-07-30 10:34:02 -0400244static struct platform_driver gpio_keys_device_driver = {
Phil Blundell78a56aa2007-01-18 00:44:09 -0500245 .probe = gpio_keys_probe,
246 .remove = __devexit_p(gpio_keys_remove),
Anti Sulline15b0212007-09-26 00:01:17 -0400247 .suspend = gpio_keys_suspend,
248 .resume = gpio_keys_resume,
Phil Blundell78a56aa2007-01-18 00:44:09 -0500249 .driver = {
250 .name = "gpio-keys",
Kay Sieversd7b52472008-04-18 00:24:42 -0400251 .owner = THIS_MODULE,
Phil Blundell78a56aa2007-01-18 00:44:09 -0500252 }
253};
254
255static int __init gpio_keys_init(void)
256{
257 return platform_driver_register(&gpio_keys_device_driver);
258}
259
260static void __exit gpio_keys_exit(void)
261{
262 platform_driver_unregister(&gpio_keys_device_driver);
263}
264
265module_init(gpio_keys_init);
266module_exit(gpio_keys_exit);
267
268MODULE_LICENSE("GPL");
269MODULE_AUTHOR("Phil Blundell <pb@handhelds.org>");
270MODULE_DESCRIPTION("Keyboard driver for CPU GPIOs");
Kay Sieversd7b52472008-04-18 00:24:42 -0400271MODULE_ALIAS("platform:gpio-keys");