blob: 1a92f4b04c176d4af11a2631a549c790f8f170bf [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>
12#include <linux/version.h>
13
14#include <linux/init.h>
15#include <linux/fs.h>
16#include <linux/interrupt.h>
17#include <linux/irq.h>
18#include <linux/sched.h>
19#include <linux/pm.h>
20#include <linux/sysctl.h>
21#include <linux/proc_fs.h>
22#include <linux/delay.h>
23#include <linux/platform_device.h>
24#include <linux/input.h>
David Brownell49015be2007-03-05 00:30:22 -080025#include <linux/gpio_keys.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;
32 struct timer_list timer;
33};
34
35struct gpio_keys_drvdata {
36 struct input_dev *input;
37 struct gpio_button_data data[0];
38};
39
40static void gpio_keys_report_event(struct gpio_keys_button *button,
41 struct input_dev *input)
42{
43 unsigned int type = button->type ?: EV_KEY;
44 int state = (gpio_get_value(button->gpio) ? 1 : 0) ^ button->active_low;
45
46 input_event(input, type, button->code, !!state);
47 input_sync(input);
48}
49
50static void gpio_check_button(unsigned long _data)
51{
52 struct gpio_button_data *data = (struct gpio_button_data *)_data;
53
54 gpio_keys_report_event(data->button, data->input);
55}
56
Phil Blundell78a56aa2007-01-18 00:44:09 -050057static irqreturn_t gpio_keys_isr(int irq, void *dev_id)
58{
Phil Blundell78a56aa2007-01-18 00:44:09 -050059 struct platform_device *pdev = dev_id;
60 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040061 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev);
62 int i;
Phil Blundell78a56aa2007-01-18 00:44:09 -050063
64 for (i = 0; i < pdata->nbuttons; i++) {
Roman Moravcik84767d02007-05-01 00:39:13 -040065 struct gpio_keys_button *button = &pdata->buttons[i];
Phil Blundell78a56aa2007-01-18 00:44:09 -050066
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040067 if (irq == gpio_to_irq(button->gpio)) {
68 struct gpio_button_data *bdata = &ddata->data[i];
Roman Moravcik84767d02007-05-01 00:39:13 -040069
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040070 if (button->debounce_interval)
71 mod_timer(&bdata->timer,
72 jiffies +
73 msecs_to_jiffies(button->debounce_interval));
74 else
75 gpio_keys_report_event(button, bdata->input);
76
David Brownell1164ec12008-04-15 01:31:13 -040077 return IRQ_HANDLED;
Phil Blundell78a56aa2007-01-18 00:44:09 -050078 }
79 }
80
David Brownell1164ec12008-04-15 01:31:13 -040081 return IRQ_NONE;
Phil Blundell78a56aa2007-01-18 00:44:09 -050082}
83
84static int __devinit gpio_keys_probe(struct platform_device *pdev)
85{
86 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040087 struct gpio_keys_drvdata *ddata;
Phil Blundell78a56aa2007-01-18 00:44:09 -050088 struct input_dev *input;
89 int i, error;
Anti Sulline15b0212007-09-26 00:01:17 -040090 int wakeup = 0;
Phil Blundell78a56aa2007-01-18 00:44:09 -050091
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040092 ddata = kzalloc(sizeof(struct gpio_keys_drvdata) +
93 pdata->nbuttons * sizeof(struct gpio_button_data),
94 GFP_KERNEL);
Phil Blundell78a56aa2007-01-18 00:44:09 -050095 input = input_allocate_device();
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040096 if (!ddata || !input) {
97 error = -ENOMEM;
98 goto fail1;
99 }
Phil Blundell78a56aa2007-01-18 00:44:09 -0500100
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400101 platform_set_drvdata(pdev, ddata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500102
103 input->name = pdev->name;
104 input->phys = "gpio-keys/input0";
Dmitry Torokhov469ba4d2007-04-12 01:34:58 -0400105 input->dev.parent = &pdev->dev;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500106
107 input->id.bustype = BUS_HOST;
108 input->id.vendor = 0x0001;
109 input->id.product = 0x0001;
110 input->id.version = 0x0100;
111
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400112 ddata->input = input;
113
Phil Blundell78a56aa2007-01-18 00:44:09 -0500114 for (i = 0; i < pdata->nbuttons; i++) {
Roman Moravcik84767d02007-05-01 00:39:13 -0400115 struct gpio_keys_button *button = &pdata->buttons[i];
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400116 struct gpio_button_data *bdata = &ddata->data[i];
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500117 int irq;
Roman Moravcik84767d02007-05-01 00:39:13 -0400118 unsigned int type = button->type ?: EV_KEY;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500119
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400120 bdata->input = input;
Uwe Kleine-König74dd4392008-07-30 10:33:43 -0400121 bdata->button = button;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400122 setup_timer(&bdata->timer,
123 gpio_check_button, (unsigned long)bdata);
124
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500125 error = gpio_request(button->gpio, button->desc ?: "gpio_keys");
126 if (error < 0) {
127 pr_err("gpio-keys: failed to request GPIO %d,"
128 " error %d\n", button->gpio, error);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400129 goto fail2;
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500130 }
131
132 error = gpio_direction_input(button->gpio);
133 if (error < 0) {
134 pr_err("gpio-keys: failed to configure input"
135 " direction for GPIO %d, error %d\n",
136 button->gpio, error);
137 gpio_free(button->gpio);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400138 goto fail2;
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500139 }
140
141 irq = gpio_to_irq(button->gpio);
Anti Sullin006df302007-09-26 00:01:03 -0400142 if (irq < 0) {
143 error = irq;
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500144 pr_err("gpio-keys: Unable to get irq number"
145 " for GPIO %d, error %d\n",
Anti Sullin006df302007-09-26 00:01:03 -0400146 button->gpio, error);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500147 gpio_free(button->gpio);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400148 goto fail2;
Anti Sullin006df302007-09-26 00:01:03 -0400149 }
150
151 error = request_irq(irq, gpio_keys_isr,
152 IRQF_SAMPLE_RANDOM | IRQF_TRIGGER_RISING |
153 IRQF_TRIGGER_FALLING,
154 button->desc ? button->desc : "gpio_keys",
155 pdev);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500156 if (error) {
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500157 pr_err("gpio-keys: Unable to claim irq %d; error %d\n",
Philipp Zabel0d98f6b2007-02-18 01:40:46 -0500158 irq, error);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500159 gpio_free(button->gpio);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400160 goto fail2;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500161 }
Roman Moravcik84767d02007-05-01 00:39:13 -0400162
Anti Sulline15b0212007-09-26 00:01:17 -0400163 if (button->wakeup)
164 wakeup = 1;
165
Roman Moravcik84767d02007-05-01 00:39:13 -0400166 input_set_capability(input, type, button->code);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500167 }
168
169 error = input_register_device(input);
170 if (error) {
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500171 pr_err("gpio-keys: Unable to register input device, "
Anti Sullin006df302007-09-26 00:01:03 -0400172 "error: %d\n", error);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400173 goto fail2;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500174 }
175
Anti Sulline15b0212007-09-26 00:01:17 -0400176 device_init_wakeup(&pdev->dev, wakeup);
177
Phil Blundell78a56aa2007-01-18 00:44:09 -0500178 return 0;
179
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400180 fail2:
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500181 while (--i >= 0) {
Philipp Zabel0d98f6b2007-02-18 01:40:46 -0500182 free_irq(gpio_to_irq(pdata->buttons[i].gpio), pdev);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400183 if (pdata->buttons[i].debounce_interval)
184 del_timer_sync(&ddata->data[i].timer);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500185 gpio_free(pdata->buttons[i].gpio);
186 }
Phil Blundell78a56aa2007-01-18 00:44:09 -0500187
Anti Sullin006df302007-09-26 00:01:03 -0400188 platform_set_drvdata(pdev, NULL);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400189 fail1:
Phil Blundell78a56aa2007-01-18 00:44:09 -0500190 input_free_device(input);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400191 kfree(ddata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500192
193 return error;
194}
195
196static int __devexit gpio_keys_remove(struct platform_device *pdev)
197{
198 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400199 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev);
200 struct input_dev *input = ddata->input;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500201 int i;
202
Anti Sulline15b0212007-09-26 00:01:17 -0400203 device_init_wakeup(&pdev->dev, 0);
204
Phil Blundell78a56aa2007-01-18 00:44:09 -0500205 for (i = 0; i < pdata->nbuttons; i++) {
Philipp Zabel0d98f6b2007-02-18 01:40:46 -0500206 int irq = gpio_to_irq(pdata->buttons[i].gpio);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500207 free_irq(irq, pdev);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400208 if (pdata->buttons[i].debounce_interval)
209 del_timer_sync(&ddata->data[i].timer);
Herbert Valerio Riedel6a2e3912007-11-21 14:42:33 -0500210 gpio_free(pdata->buttons[i].gpio);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500211 }
212
213 input_unregister_device(input);
214
215 return 0;
216}
217
Anti Sulline15b0212007-09-26 00:01:17 -0400218
219#ifdef CONFIG_PM
220static int gpio_keys_suspend(struct platform_device *pdev, pm_message_t state)
221{
222 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
223 int i;
224
225 if (device_may_wakeup(&pdev->dev)) {
226 for (i = 0; i < pdata->nbuttons; i++) {
227 struct gpio_keys_button *button = &pdata->buttons[i];
228 if (button->wakeup) {
229 int irq = gpio_to_irq(button->gpio);
230 enable_irq_wake(irq);
231 }
232 }
233 }
234
235 return 0;
236}
237
238static int gpio_keys_resume(struct platform_device *pdev)
239{
240 struct gpio_keys_platform_data *pdata = pdev->dev.platform_data;
241 int i;
242
243 if (device_may_wakeup(&pdev->dev)) {
244 for (i = 0; i < pdata->nbuttons; i++) {
245 struct gpio_keys_button *button = &pdata->buttons[i];
246 if (button->wakeup) {
247 int irq = gpio_to_irq(button->gpio);
248 disable_irq_wake(irq);
249 }
250 }
251 }
252
253 return 0;
254}
255#else
256#define gpio_keys_suspend NULL
257#define gpio_keys_resume NULL
258#endif
259
Phil Blundell78a56aa2007-01-18 00:44:09 -0500260struct platform_driver gpio_keys_device_driver = {
261 .probe = gpio_keys_probe,
262 .remove = __devexit_p(gpio_keys_remove),
Anti Sulline15b0212007-09-26 00:01:17 -0400263 .suspend = gpio_keys_suspend,
264 .resume = gpio_keys_resume,
Phil Blundell78a56aa2007-01-18 00:44:09 -0500265 .driver = {
266 .name = "gpio-keys",
Kay Sieversd7b52472008-04-18 00:24:42 -0400267 .owner = THIS_MODULE,
Phil Blundell78a56aa2007-01-18 00:44:09 -0500268 }
269};
270
271static int __init gpio_keys_init(void)
272{
273 return platform_driver_register(&gpio_keys_device_driver);
274}
275
276static void __exit gpio_keys_exit(void)
277{
278 platform_driver_unregister(&gpio_keys_device_driver);
279}
280
281module_init(gpio_keys_init);
282module_exit(gpio_keys_exit);
283
284MODULE_LICENSE("GPL");
285MODULE_AUTHOR("Phil Blundell <pb@handhelds.org>");
286MODULE_DESCRIPTION("Keyboard driver for CPU GPIOs");
Kay Sieversd7b52472008-04-18 00:24:42 -0400287MODULE_ALIAS("platform:gpio-keys");