blob: d327f5a2bb0eadb3884c9dc42ce518cd29be2ebd [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
David Janderfd05d082011-07-09 12:41:46 -07005 * Copyright 2010, 2011 David Jander <david@protonic.nl>
Phil Blundell78a56aa2007-01-18 00:44:09 -05006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11
12#include <linux/module.h>
Phil Blundell78a56aa2007-01-18 00:44:09 -050013
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Phil Blundell78a56aa2007-01-18 00:44:09 -050021#include <linux/sysctl.h>
22#include <linux/proc_fs.h>
23#include <linux/delay.h>
24#include <linux/platform_device.h>
25#include <linux/input.h>
David Brownell49015be2007-03-05 00:30:22 -080026#include <linux/gpio_keys.h>
Jani Nikulada0d03f2009-06-28 22:38:56 -070027#include <linux/workqueue.h>
Ben Dooks111bc592009-11-10 21:01:31 -080028#include <linux/gpio.h>
David Janderfd05d082011-07-09 12:41:46 -070029#include <linux/of_platform.h>
30#include <linux/of_gpio.h>
Laxman Dewangand8ee4a12012-03-19 17:54:31 -070031#include <linux/spinlock.h>
Phil Blundell78a56aa2007-01-18 00:44:09 -050032
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040033struct gpio_button_data {
Dmitry Torokhovd9080922012-03-18 23:36:29 -070034 const struct gpio_keys_button *button;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040035 struct input_dev *input;
Jani Nikulaca865a72009-06-28 22:38:44 -070036 struct timer_list timer;
Jani Nikulada0d03f2009-06-28 22:38:56 -070037 struct work_struct work;
Laxman Dewangand8ee4a12012-03-19 17:54:31 -070038 unsigned int timer_debounce; /* in msecs */
39 unsigned int irq;
40 spinlock_t lock;
Mika Westerberg9e3af042010-02-04 00:48:00 -080041 bool disabled;
Laxman Dewangand8ee4a12012-03-19 17:54:31 -070042 bool key_pressed;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040043};
44
45struct gpio_keys_drvdata {
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -070046 const struct gpio_keys_platform_data *pdata;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040047 struct input_dev *input;
Mika Westerberg9e3af042010-02-04 00:48:00 -080048 struct mutex disable_lock;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -040049 struct gpio_button_data data[0];
50};
51
Mika Westerberg9e3af042010-02-04 00:48:00 -080052/*
53 * SYSFS interface for enabling/disabling keys and switches:
54 *
55 * There are 4 attributes under /sys/devices/platform/gpio-keys/
56 * keys [ro] - bitmap of keys (EV_KEY) which can be
57 * disabled
58 * switches [ro] - bitmap of switches (EV_SW) which can be
59 * disabled
60 * disabled_keys [rw] - bitmap of keys currently disabled
61 * disabled_switches [rw] - bitmap of switches currently disabled
62 *
63 * Userland can change these values and hence disable event generation
64 * for each key (or switch). Disabling a key means its interrupt line
65 * is disabled.
66 *
67 * For example, if we have following switches set up as gpio-keys:
68 * SW_DOCK = 5
69 * SW_CAMERA_LENS_COVER = 9
70 * SW_KEYPAD_SLIDE = 10
71 * SW_FRONT_PROXIMITY = 11
72 * This is read from switches:
73 * 11-9,5
74 * Next we want to disable proximity (11) and dock (5), we write:
75 * 11,5
76 * to file disabled_switches. Now proximity and dock IRQs are disabled.
77 * This can be verified by reading the file disabled_switches:
78 * 11,5
79 * If we now want to enable proximity (11) switch we write:
80 * 5
81 * to disabled_switches.
82 *
83 * We can disable only those keys which don't allow sharing the irq.
84 */
85
86/**
87 * get_n_events_by_type() - returns maximum number of events per @type
88 * @type: type of button (%EV_KEY, %EV_SW)
89 *
90 * Return value of this function can be used to allocate bitmap
91 * large enough to hold all bits for given type.
92 */
93static inline int get_n_events_by_type(int type)
94{
95 BUG_ON(type != EV_SW && type != EV_KEY);
96
97 return (type == EV_KEY) ? KEY_CNT : SW_CNT;
98}
99
100/**
101 * gpio_keys_disable_button() - disables given GPIO button
102 * @bdata: button data for button to be disabled
103 *
104 * Disables button pointed by @bdata. This is done by masking
105 * IRQ line. After this function is called, button won't generate
106 * input events anymore. Note that one can only disable buttons
107 * that don't share IRQs.
108 *
109 * Make sure that @bdata->disable_lock is locked when entering
110 * this function to avoid races when concurrent threads are
111 * disabling buttons at the same time.
112 */
113static void gpio_keys_disable_button(struct gpio_button_data *bdata)
114{
115 if (!bdata->disabled) {
116 /*
117 * Disable IRQ and possible debouncing timer.
118 */
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700119 disable_irq(bdata->irq);
Grazvydas Ignotas28ed6842010-06-28 10:59:32 -0700120 if (bdata->timer_debounce)
Mika Westerberg9e3af042010-02-04 00:48:00 -0800121 del_timer_sync(&bdata->timer);
122
123 bdata->disabled = true;
124 }
125}
126
127/**
128 * gpio_keys_enable_button() - enables given GPIO button
129 * @bdata: button data for button to be disabled
130 *
131 * Enables given button pointed by @bdata.
132 *
133 * Make sure that @bdata->disable_lock is locked when entering
134 * this function to avoid races with concurrent threads trying
135 * to enable the same button at the same time.
136 */
137static void gpio_keys_enable_button(struct gpio_button_data *bdata)
138{
139 if (bdata->disabled) {
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700140 enable_irq(bdata->irq);
Mika Westerberg9e3af042010-02-04 00:48:00 -0800141 bdata->disabled = false;
142 }
143}
144
145/**
146 * gpio_keys_attr_show_helper() - fill in stringified bitmap of buttons
147 * @ddata: pointer to drvdata
148 * @buf: buffer where stringified bitmap is written
149 * @type: button type (%EV_KEY, %EV_SW)
150 * @only_disabled: does caller want only those buttons that are
151 * currently disabled or all buttons that can be
152 * disabled
153 *
154 * This function writes buttons that can be disabled to @buf. If
155 * @only_disabled is true, then @buf contains only those buttons
156 * that are currently disabled. Returns 0 on success or negative
157 * errno on failure.
158 */
159static ssize_t gpio_keys_attr_show_helper(struct gpio_keys_drvdata *ddata,
160 char *buf, unsigned int type,
161 bool only_disabled)
162{
163 int n_events = get_n_events_by_type(type);
164 unsigned long *bits;
165 ssize_t ret;
166 int i;
167
168 bits = kcalloc(BITS_TO_LONGS(n_events), sizeof(*bits), GFP_KERNEL);
169 if (!bits)
170 return -ENOMEM;
171
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700172 for (i = 0; i < ddata->pdata->nbuttons; i++) {
Mika Westerberg9e3af042010-02-04 00:48:00 -0800173 struct gpio_button_data *bdata = &ddata->data[i];
174
175 if (bdata->button->type != type)
176 continue;
177
178 if (only_disabled && !bdata->disabled)
179 continue;
180
181 __set_bit(bdata->button->code, bits);
182 }
183
184 ret = bitmap_scnlistprintf(buf, PAGE_SIZE - 2, bits, n_events);
185 buf[ret++] = '\n';
186 buf[ret] = '\0';
187
188 kfree(bits);
189
190 return ret;
191}
192
193/**
194 * gpio_keys_attr_store_helper() - enable/disable buttons based on given bitmap
195 * @ddata: pointer to drvdata
196 * @buf: buffer from userspace that contains stringified bitmap
197 * @type: button type (%EV_KEY, %EV_SW)
198 *
199 * This function parses stringified bitmap from @buf and disables/enables
Dmitry Torokhova16ca232012-03-18 23:36:30 -0700200 * GPIO buttons accordingly. Returns 0 on success and negative error
Mika Westerberg9e3af042010-02-04 00:48:00 -0800201 * on failure.
202 */
203static ssize_t gpio_keys_attr_store_helper(struct gpio_keys_drvdata *ddata,
204 const char *buf, unsigned int type)
205{
206 int n_events = get_n_events_by_type(type);
207 unsigned long *bits;
208 ssize_t error;
209 int i;
210
211 bits = kcalloc(BITS_TO_LONGS(n_events), sizeof(*bits), GFP_KERNEL);
212 if (!bits)
213 return -ENOMEM;
214
215 error = bitmap_parselist(buf, bits, n_events);
216 if (error)
217 goto out;
218
219 /* First validate */
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700220 for (i = 0; i < ddata->pdata->nbuttons; i++) {
Mika Westerberg9e3af042010-02-04 00:48:00 -0800221 struct gpio_button_data *bdata = &ddata->data[i];
222
223 if (bdata->button->type != type)
224 continue;
225
226 if (test_bit(bdata->button->code, bits) &&
227 !bdata->button->can_disable) {
228 error = -EINVAL;
229 goto out;
230 }
231 }
232
233 mutex_lock(&ddata->disable_lock);
234
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700235 for (i = 0; i < ddata->pdata->nbuttons; i++) {
Mika Westerberg9e3af042010-02-04 00:48:00 -0800236 struct gpio_button_data *bdata = &ddata->data[i];
237
238 if (bdata->button->type != type)
239 continue;
240
241 if (test_bit(bdata->button->code, bits))
242 gpio_keys_disable_button(bdata);
243 else
244 gpio_keys_enable_button(bdata);
245 }
246
247 mutex_unlock(&ddata->disable_lock);
248
249out:
250 kfree(bits);
251 return error;
252}
253
254#define ATTR_SHOW_FN(name, type, only_disabled) \
255static ssize_t gpio_keys_show_##name(struct device *dev, \
256 struct device_attribute *attr, \
257 char *buf) \
258{ \
259 struct platform_device *pdev = to_platform_device(dev); \
260 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev); \
261 \
262 return gpio_keys_attr_show_helper(ddata, buf, \
263 type, only_disabled); \
264}
265
266ATTR_SHOW_FN(keys, EV_KEY, false);
267ATTR_SHOW_FN(switches, EV_SW, false);
268ATTR_SHOW_FN(disabled_keys, EV_KEY, true);
269ATTR_SHOW_FN(disabled_switches, EV_SW, true);
270
271/*
272 * ATTRIBUTES:
273 *
274 * /sys/devices/platform/gpio-keys/keys [ro]
275 * /sys/devices/platform/gpio-keys/switches [ro]
276 */
277static DEVICE_ATTR(keys, S_IRUGO, gpio_keys_show_keys, NULL);
278static DEVICE_ATTR(switches, S_IRUGO, gpio_keys_show_switches, NULL);
279
280#define ATTR_STORE_FN(name, type) \
281static ssize_t gpio_keys_store_##name(struct device *dev, \
282 struct device_attribute *attr, \
283 const char *buf, \
284 size_t count) \
285{ \
286 struct platform_device *pdev = to_platform_device(dev); \
287 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev); \
288 ssize_t error; \
289 \
290 error = gpio_keys_attr_store_helper(ddata, buf, type); \
291 if (error) \
292 return error; \
293 \
294 return count; \
295}
296
297ATTR_STORE_FN(disabled_keys, EV_KEY);
298ATTR_STORE_FN(disabled_switches, EV_SW);
299
300/*
301 * ATTRIBUTES:
302 *
303 * /sys/devices/platform/gpio-keys/disabled_keys [rw]
304 * /sys/devices/platform/gpio-keys/disables_switches [rw]
305 */
306static DEVICE_ATTR(disabled_keys, S_IWUSR | S_IRUGO,
307 gpio_keys_show_disabled_keys,
308 gpio_keys_store_disabled_keys);
309static DEVICE_ATTR(disabled_switches, S_IWUSR | S_IRUGO,
310 gpio_keys_show_disabled_switches,
311 gpio_keys_store_disabled_switches);
312
313static struct attribute *gpio_keys_attrs[] = {
314 &dev_attr_keys.attr,
315 &dev_attr_switches.attr,
316 &dev_attr_disabled_keys.attr,
317 &dev_attr_disabled_switches.attr,
318 NULL,
319};
320
321static struct attribute_group gpio_keys_attr_group = {
322 .attrs = gpio_keys_attrs,
323};
324
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700325static void gpio_keys_gpio_report_event(struct gpio_button_data *bdata)
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400326{
Dmitry Torokhovd9080922012-03-18 23:36:29 -0700327 const struct gpio_keys_button *button = bdata->button;
Uwe Kleine-Königce25d7e2008-08-08 12:14:36 -0400328 struct input_dev *input = bdata->input;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400329 unsigned int type = button->type ?: EV_KEY;
Philippe Langlais94a8cab2011-01-20 23:09:30 -0800330 int state = (gpio_get_value_cansleep(button->gpio) ? 1 : 0) ^ button->active_low;
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400331
Alexander Stein92a47672011-04-11 23:34:37 -0700332 if (type == EV_ABS) {
333 if (state)
334 input_event(input, type, button->code, button->value);
335 } else {
336 input_event(input, type, button->code, !!state);
337 }
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400338 input_sync(input);
339}
340
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700341static void gpio_keys_gpio_work_func(struct work_struct *work)
Daniel Mack6ee88d72009-11-30 00:04:02 -0800342{
343 struct gpio_button_data *bdata =
344 container_of(work, struct gpio_button_data, work);
345
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700346 gpio_keys_gpio_report_event(bdata);
NeilBrown2fba26c2012-07-29 22:18:47 -0700347
348 if (bdata->button->wakeup)
349 pm_relax(bdata->input->dev.parent);
Daniel Mack6ee88d72009-11-30 00:04:02 -0800350}
351
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700352static void gpio_keys_gpio_timer(unsigned long _data)
Jani Nikulaca865a72009-06-28 22:38:44 -0700353{
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700354 struct gpio_button_data *bdata = (struct gpio_button_data *)_data;
Jani Nikulaca865a72009-06-28 22:38:44 -0700355
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700356 schedule_work(&bdata->work);
Jani Nikulaca865a72009-06-28 22:38:44 -0700357}
358
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700359static irqreturn_t gpio_keys_gpio_isr(int irq, void *dev_id)
Phil Blundell78a56aa2007-01-18 00:44:09 -0500360{
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -0400361 struct gpio_button_data *bdata = dev_id;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500362
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700363 BUG_ON(irq != bdata->irq);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500364
NeilBrown2fba26c2012-07-29 22:18:47 -0700365 if (bdata->button->wakeup)
366 pm_stay_awake(bdata->input->dev.parent);
Grazvydas Ignotas28ed6842010-06-28 10:59:32 -0700367 if (bdata->timer_debounce)
Jani Nikulaca865a72009-06-28 22:38:44 -0700368 mod_timer(&bdata->timer,
Grazvydas Ignotas28ed6842010-06-28 10:59:32 -0700369 jiffies + msecs_to_jiffies(bdata->timer_debounce));
Jani Nikulaca865a72009-06-28 22:38:44 -0700370 else
Jani Nikulada0d03f2009-06-28 22:38:56 -0700371 schedule_work(&bdata->work);
Roman Moravcik84767d02007-05-01 00:39:13 -0400372
Uwe Kleine-König57ffe9d2008-08-08 12:14:34 -0400373 return IRQ_HANDLED;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500374}
375
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700376static void gpio_keys_irq_timer(unsigned long _data)
377{
378 struct gpio_button_data *bdata = (struct gpio_button_data *)_data;
379 struct input_dev *input = bdata->input;
380 unsigned long flags;
381
382 spin_lock_irqsave(&bdata->lock, flags);
383 if (bdata->key_pressed) {
384 input_event(input, EV_KEY, bdata->button->code, 0);
385 input_sync(input);
386 bdata->key_pressed = false;
387 }
388 spin_unlock_irqrestore(&bdata->lock, flags);
389}
390
391static irqreturn_t gpio_keys_irq_isr(int irq, void *dev_id)
392{
393 struct gpio_button_data *bdata = dev_id;
394 const struct gpio_keys_button *button = bdata->button;
395 struct input_dev *input = bdata->input;
396 unsigned long flags;
397
398 BUG_ON(irq != bdata->irq);
399
400 spin_lock_irqsave(&bdata->lock, flags);
401
402 if (!bdata->key_pressed) {
NeilBrown2fba26c2012-07-29 22:18:47 -0700403 if (bdata->button->wakeup)
404 pm_wakeup_event(bdata->input->dev.parent, 0);
405
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700406 input_event(input, EV_KEY, button->code, 1);
407 input_sync(input);
408
409 if (!bdata->timer_debounce) {
410 input_event(input, EV_KEY, button->code, 0);
411 input_sync(input);
412 goto out;
413 }
414
415 bdata->key_pressed = true;
416 }
417
418 if (bdata->timer_debounce)
419 mod_timer(&bdata->timer,
420 jiffies + msecs_to_jiffies(bdata->timer_debounce));
421out:
422 spin_unlock_irqrestore(&bdata->lock, flags);
423 return IRQ_HANDLED;
424}
425
Bill Pemberton5298cc42012-11-23 21:38:25 -0800426static int gpio_keys_setup_key(struct platform_device *pdev,
427 struct input_dev *input,
428 struct gpio_button_data *bdata,
429 const struct gpio_keys_button *button)
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800430{
Alexander Stein92a47672011-04-11 23:34:37 -0700431 const char *desc = button->desc ? button->desc : "gpio_keys";
Mika Westerberg9e3af042010-02-04 00:48:00 -0800432 struct device *dev = &pdev->dev;
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700433 irq_handler_t isr;
Mika Westerberg9e3af042010-02-04 00:48:00 -0800434 unsigned long irqflags;
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800435 int irq, error;
436
Dmitry Torokhovd9080922012-03-18 23:36:29 -0700437 bdata->input = input;
438 bdata->button = button;
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700439 spin_lock_init(&bdata->lock);
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800440
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700441 if (gpio_is_valid(button->gpio)) {
442
Dmitry Torokhov333e34b2012-11-29 09:00:19 -0800443 error = gpio_request_one(button->gpio, GPIOF_IN, desc);
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700444 if (error < 0) {
445 dev_err(dev, "Failed to request GPIO %d, error %d\n",
446 button->gpio, error);
447 return error;
448 }
449
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700450 if (button->debounce_interval) {
451 error = gpio_set_debounce(button->gpio,
452 button->debounce_interval * 1000);
453 /* use timer if gpiolib doesn't provide debounce */
454 if (error < 0)
455 bdata->timer_debounce =
456 button->debounce_interval;
457 }
458
459 irq = gpio_to_irq(button->gpio);
460 if (irq < 0) {
461 error = irq;
462 dev_err(dev,
463 "Unable to get irq number for GPIO %d, error %d\n",
464 button->gpio, error);
465 goto fail;
466 }
467 bdata->irq = irq;
468
469 INIT_WORK(&bdata->work, gpio_keys_gpio_work_func);
470 setup_timer(&bdata->timer,
471 gpio_keys_gpio_timer, (unsigned long)bdata);
472
473 isr = gpio_keys_gpio_isr;
474 irqflags = IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING;
475
476 } else {
477 if (!button->irq) {
478 dev_err(dev, "No IRQ specified\n");
479 return -EINVAL;
480 }
481 bdata->irq = button->irq;
482
483 if (button->type && button->type != EV_KEY) {
484 dev_err(dev, "Only EV_KEY allowed for IRQ buttons.\n");
485 return -EINVAL;
486 }
487
488 bdata->timer_debounce = button->debounce_interval;
489 setup_timer(&bdata->timer,
490 gpio_keys_irq_timer, (unsigned long)bdata);
491
492 isr = gpio_keys_irq_isr;
493 irqflags = 0;
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800494 }
495
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700496 input_set_capability(input, button->type ?: EV_KEY, button->code);
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800497
Mika Westerberg9e3af042010-02-04 00:48:00 -0800498 /*
499 * If platform has specified that the button can be disabled,
500 * we don't want it to share the interrupt line.
501 */
502 if (!button->can_disable)
503 irqflags |= IRQF_SHARED;
504
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700505 error = request_any_context_irq(bdata->irq, isr, irqflags, desc, bdata);
Philippe Langlais94a8cab2011-01-20 23:09:30 -0800506 if (error < 0) {
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800507 dev_err(dev, "Unable to claim irq %d; error %d\n",
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700508 bdata->irq, error);
509 goto fail;
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800510 }
511
512 return 0;
513
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700514fail:
515 if (gpio_is_valid(button->gpio))
516 gpio_free(button->gpio);
517
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800518 return error;
519}
520
Dmitry Torokhov5b76d7b2012-11-24 01:22:43 -0800521static void gpio_keys_report_state(struct gpio_keys_drvdata *ddata)
522{
523 struct input_dev *input = ddata->input;
524 int i;
525
526 for (i = 0; i < ddata->pdata->nbuttons; i++) {
527 struct gpio_button_data *bdata = &ddata->data[i];
528 if (gpio_is_valid(bdata->button->gpio))
529 gpio_keys_gpio_report_event(bdata);
530 }
531 input_sync(input);
532}
533
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700534static int gpio_keys_open(struct input_dev *input)
535{
536 struct gpio_keys_drvdata *ddata = input_get_drvdata(input);
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700537 const struct gpio_keys_platform_data *pdata = ddata->pdata;
Dmitry Torokhov5b76d7b2012-11-24 01:22:43 -0800538 int error;
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700539
Dmitry Torokhov5b76d7b2012-11-24 01:22:43 -0800540 if (pdata->enable) {
541 error = pdata->enable(input->dev.parent);
542 if (error)
543 return error;
544 }
545
546 /* Report current state of buttons that are connected to GPIOs */
547 gpio_keys_report_state(ddata);
548
549 return 0;
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700550}
551
552static void gpio_keys_close(struct input_dev *input)
553{
554 struct gpio_keys_drvdata *ddata = input_get_drvdata(input);
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700555 const struct gpio_keys_platform_data *pdata = ddata->pdata;
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700556
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700557 if (pdata->disable)
558 pdata->disable(input->dev.parent);
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700559}
560
David Janderfd05d082011-07-09 12:41:46 -0700561/*
562 * Handlers for alternative sources of platform_data
563 */
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700564
David Janderfd05d082011-07-09 12:41:46 -0700565#ifdef CONFIG_OF
566/*
567 * Translate OpenFirmware node properties into platform_data
568 */
Bill Pemberton5298cc42012-11-23 21:38:25 -0800569static struct gpio_keys_platform_data *
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700570gpio_keys_get_devtree_pdata(struct device *dev)
David Janderfd05d082011-07-09 12:41:46 -0700571{
572 struct device_node *node, *pp;
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700573 struct gpio_keys_platform_data *pdata;
574 struct gpio_keys_button *button;
575 int error;
576 int nbuttons;
David Janderfd05d082011-07-09 12:41:46 -0700577 int i;
David Janderfd05d082011-07-09 12:41:46 -0700578
579 node = dev->of_node;
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700580 if (!node) {
581 error = -ENODEV;
582 goto err_out;
583 }
David Janderfd05d082011-07-09 12:41:46 -0700584
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700585 nbuttons = of_get_child_count(node);
586 if (nbuttons == 0) {
587 error = -ENODEV;
588 goto err_out;
589 }
590
591 pdata = kzalloc(sizeof(*pdata) + nbuttons * (sizeof *button),
592 GFP_KERNEL);
593 if (!pdata) {
594 error = -ENOMEM;
595 goto err_out;
596 }
597
598 pdata->buttons = (struct gpio_keys_button *)(pdata + 1);
599 pdata->nbuttons = nbuttons;
David Janderfd05d082011-07-09 12:41:46 -0700600
Tobias Klausercca84692011-09-09 11:09:50 -0700601 pdata->rep = !!of_get_property(node, "autorepeat", NULL);
David Janderfd05d082011-07-09 12:41:46 -0700602
David Janderfd05d082011-07-09 12:41:46 -0700603 i = 0;
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700604 for_each_child_of_node(node, pp) {
David Janderfd05d082011-07-09 12:41:46 -0700605 enum of_gpio_flags flags;
606
607 if (!of_find_property(pp, "gpios", NULL)) {
608 pdata->nbuttons--;
609 dev_warn(dev, "Found button without gpios\n");
610 continue;
611 }
David Janderfd05d082011-07-09 12:41:46 -0700612
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700613 button = &pdata->buttons[i++];
614
615 button->gpio = of_get_gpio_flags(pp, 0, &flags);
616 button->active_low = flags & OF_GPIO_ACTIVE_LOW;
617
618 if (of_property_read_u32(pp, "linux,code", &button->code)) {
619 dev_err(dev, "Button without keycode: 0x%x\n",
620 button->gpio);
621 error = -EINVAL;
622 goto err_free_pdata;
David Janderfd05d082011-07-09 12:41:46 -0700623 }
David Janderfd05d082011-07-09 12:41:46 -0700624
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700625 button->desc = of_get_property(pp, "label", NULL);
David Janderfd05d082011-07-09 12:41:46 -0700626
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700627 if (of_property_read_u32(pp, "linux,input-type", &button->type))
628 button->type = EV_KEY;
David Janderfd05d082011-07-09 12:41:46 -0700629
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700630 button->wakeup = !!of_get_property(pp, "gpio-key,wakeup", NULL);
David Janderfd05d082011-07-09 12:41:46 -0700631
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700632 if (of_property_read_u32(pp, "debounce-interval",
633 &button->debounce_interval))
634 button->debounce_interval = 5;
David Janderfd05d082011-07-09 12:41:46 -0700635 }
636
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700637 if (pdata->nbuttons == 0) {
638 error = -EINVAL;
639 goto err_free_pdata;
640 }
David Janderfd05d082011-07-09 12:41:46 -0700641
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700642 return pdata;
David Janderfd05d082011-07-09 12:41:46 -0700643
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700644err_free_pdata:
645 kfree(pdata);
646err_out:
647 return ERR_PTR(error);
David Janderfd05d082011-07-09 12:41:46 -0700648}
649
650static struct of_device_id gpio_keys_of_match[] = {
651 { .compatible = "gpio-keys", },
652 { },
653};
654MODULE_DEVICE_TABLE(of, gpio_keys_of_match);
655
656#else
657
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700658static inline struct gpio_keys_platform_data *
659gpio_keys_get_devtree_pdata(struct device *dev)
David Janderfd05d082011-07-09 12:41:46 -0700660{
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700661 return ERR_PTR(-ENODEV);
David Janderfd05d082011-07-09 12:41:46 -0700662}
663
David Janderfd05d082011-07-09 12:41:46 -0700664#endif
665
Dmitry Torokhova16ca232012-03-18 23:36:30 -0700666static void gpio_remove_key(struct gpio_button_data *bdata)
667{
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700668 free_irq(bdata->irq, bdata);
Dmitry Torokhova16ca232012-03-18 23:36:30 -0700669 if (bdata->timer_debounce)
670 del_timer_sync(&bdata->timer);
671 cancel_work_sync(&bdata->work);
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700672 if (gpio_is_valid(bdata->button->gpio))
673 gpio_free(bdata->button->gpio);
Dmitry Torokhova16ca232012-03-18 23:36:30 -0700674}
675
Bill Pemberton5298cc42012-11-23 21:38:25 -0800676static int gpio_keys_probe(struct platform_device *pdev)
Phil Blundell78a56aa2007-01-18 00:44:09 -0500677{
Ben Dooksdb19fd82009-11-10 21:00:35 -0800678 struct device *dev = &pdev->dev;
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700679 const struct gpio_keys_platform_data *pdata = dev_get_platdata(dev);
680 struct gpio_keys_drvdata *ddata;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500681 struct input_dev *input;
682 int i, error;
Anti Sulline15b0212007-09-26 00:01:17 -0400683 int wakeup = 0;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500684
David Janderfd05d082011-07-09 12:41:46 -0700685 if (!pdata) {
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700686 pdata = gpio_keys_get_devtree_pdata(dev);
687 if (IS_ERR(pdata))
688 return PTR_ERR(pdata);
David Janderfd05d082011-07-09 12:41:46 -0700689 }
690
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400691 ddata = kzalloc(sizeof(struct gpio_keys_drvdata) +
692 pdata->nbuttons * sizeof(struct gpio_button_data),
693 GFP_KERNEL);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500694 input = input_allocate_device();
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400695 if (!ddata || !input) {
Ben Dooksdb19fd82009-11-10 21:00:35 -0800696 dev_err(dev, "failed to allocate state\n");
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400697 error = -ENOMEM;
698 goto fail1;
699 }
Phil Blundell78a56aa2007-01-18 00:44:09 -0500700
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700701 ddata->pdata = pdata;
Mika Westerberg9e3af042010-02-04 00:48:00 -0800702 ddata->input = input;
Mika Westerberg9e3af042010-02-04 00:48:00 -0800703 mutex_init(&ddata->disable_lock);
704
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400705 platform_set_drvdata(pdev, ddata);
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700706 input_set_drvdata(input, ddata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500707
Alexander Stein46711272011-04-11 23:34:48 -0700708 input->name = pdata->name ? : pdev->name;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500709 input->phys = "gpio-keys/input0";
Dmitry Torokhov469ba4d2007-04-12 01:34:58 -0400710 input->dev.parent = &pdev->dev;
Shubhrajyoti D173bdd72010-08-03 19:44:40 -0700711 input->open = gpio_keys_open;
712 input->close = gpio_keys_close;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500713
714 input->id.bustype = BUS_HOST;
715 input->id.vendor = 0x0001;
716 input->id.product = 0x0001;
717 input->id.version = 0x0100;
718
Dominic Curranb67b4b12008-10-27 22:30:53 -0400719 /* Enable auto repeat feature of Linux input subsystem */
720 if (pdata->rep)
721 __set_bit(EV_REP, input->evbit);
722
Phil Blundell78a56aa2007-01-18 00:44:09 -0500723 for (i = 0; i < pdata->nbuttons; i++) {
Dmitry Torokhovd9080922012-03-18 23:36:29 -0700724 const struct gpio_keys_button *button = &pdata->buttons[i];
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400725 struct gpio_button_data *bdata = &ddata->data[i];
Phil Blundell78a56aa2007-01-18 00:44:09 -0500726
Dmitry Torokhovd9080922012-03-18 23:36:29 -0700727 error = gpio_keys_setup_key(pdev, input, bdata, button);
Ben Dooksbc8f1ea2009-11-10 21:01:31 -0800728 if (error)
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400729 goto fail2;
Roman Moravcik84767d02007-05-01 00:39:13 -0400730
Anti Sulline15b0212007-09-26 00:01:17 -0400731 if (button->wakeup)
732 wakeup = 1;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500733 }
734
Mika Westerberg9e3af042010-02-04 00:48:00 -0800735 error = sysfs_create_group(&pdev->dev.kobj, &gpio_keys_attr_group);
736 if (error) {
737 dev_err(dev, "Unable to export keys/switches, error: %d\n",
738 error);
739 goto fail2;
740 }
741
Phil Blundell78a56aa2007-01-18 00:44:09 -0500742 error = input_register_device(input);
743 if (error) {
Mika Westerberg9e3af042010-02-04 00:48:00 -0800744 dev_err(dev, "Unable to register input device, error: %d\n",
745 error);
746 goto fail3;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500747 }
748
Anti Sulline15b0212007-09-26 00:01:17 -0400749 device_init_wakeup(&pdev->dev, wakeup);
750
Phil Blundell78a56aa2007-01-18 00:44:09 -0500751 return 0;
752
Mika Westerberg9e3af042010-02-04 00:48:00 -0800753 fail3:
754 sysfs_remove_group(&pdev->dev.kobj, &gpio_keys_attr_group);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400755 fail2:
Dmitry Torokhova16ca232012-03-18 23:36:30 -0700756 while (--i >= 0)
757 gpio_remove_key(&ddata->data[i]);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500758
Anti Sullin006df302007-09-26 00:01:03 -0400759 platform_set_drvdata(pdev, NULL);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400760 fail1:
Phil Blundell78a56aa2007-01-18 00:44:09 -0500761 input_free_device(input);
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400762 kfree(ddata);
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700763 /* If we have no platform data, we allocated pdata dynamically. */
764 if (!dev_get_platdata(&pdev->dev))
765 kfree(pdata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500766
767 return error;
768}
769
Bill Pembertone2619cf2012-11-23 21:50:47 -0800770static int gpio_keys_remove(struct platform_device *pdev)
Phil Blundell78a56aa2007-01-18 00:44:09 -0500771{
Dmitry Baryshkova33466e2008-05-07 16:30:15 -0400772 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev);
773 struct input_dev *input = ddata->input;
Phil Blundell78a56aa2007-01-18 00:44:09 -0500774 int i;
775
Mika Westerberg9e3af042010-02-04 00:48:00 -0800776 sysfs_remove_group(&pdev->dev.kobj, &gpio_keys_attr_group);
777
Anti Sulline15b0212007-09-26 00:01:17 -0400778 device_init_wakeup(&pdev->dev, 0);
779
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700780 for (i = 0; i < ddata->pdata->nbuttons; i++)
Dmitry Torokhova16ca232012-03-18 23:36:30 -0700781 gpio_remove_key(&ddata->data[i]);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500782
783 input_unregister_device(input);
David Janderfd05d082011-07-09 12:41:46 -0700784
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700785 /* If we have no platform data, we allocated pdata dynamically. */
786 if (!dev_get_platdata(&pdev->dev))
787 kfree(ddata->pdata);
David Janderfd05d082011-07-09 12:41:46 -0700788
Axel Lin16382072011-06-28 14:23:30 -0700789 kfree(ddata);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500790
791 return 0;
792}
793
Dmitry Torokhovbdda8212011-07-09 12:41:46 -0700794#ifdef CONFIG_PM_SLEEP
Mike Rapoportae78e0e2009-07-22 23:02:54 -0700795static int gpio_keys_suspend(struct device *dev)
Anti Sulline15b0212007-09-26 00:01:17 -0400796{
David Janderfd05d082011-07-09 12:41:46 -0700797 struct gpio_keys_drvdata *ddata = dev_get_drvdata(dev);
Jonas Aabergdda19a92012-11-24 00:10:29 -0800798 struct input_dev *input = ddata->input;
Anti Sulline15b0212007-09-26 00:01:17 -0400799 int i;
800
David Janderfd05d082011-07-09 12:41:46 -0700801 if (device_may_wakeup(dev)) {
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700802 for (i = 0; i < ddata->pdata->nbuttons; i++) {
Laxman Dewangand8ee4a12012-03-19 17:54:31 -0700803 struct gpio_button_data *bdata = &ddata->data[i];
804 if (bdata->button->wakeup)
805 enable_irq_wake(bdata->irq);
Anti Sulline15b0212007-09-26 00:01:17 -0400806 }
Jonas Aabergdda19a92012-11-24 00:10:29 -0800807 } else {
808 mutex_lock(&input->mutex);
809 if (input->users)
810 gpio_keys_close(input);
811 mutex_unlock(&input->mutex);
Anti Sulline15b0212007-09-26 00:01:17 -0400812 }
813
814 return 0;
815}
816
Mike Rapoportae78e0e2009-07-22 23:02:54 -0700817static int gpio_keys_resume(struct device *dev)
Anti Sulline15b0212007-09-26 00:01:17 -0400818{
David Janderfd05d082011-07-09 12:41:46 -0700819 struct gpio_keys_drvdata *ddata = dev_get_drvdata(dev);
Jonas Aabergdda19a92012-11-24 00:10:29 -0800820 struct input_dev *input = ddata->input;
821 int error = 0;
Anti Sulline15b0212007-09-26 00:01:17 -0400822 int i;
823
Jonas Aabergdda19a92012-11-24 00:10:29 -0800824 if (device_may_wakeup(dev)) {
825 for (i = 0; i < ddata->pdata->nbuttons; i++) {
826 struct gpio_button_data *bdata = &ddata->data[i];
827 if (bdata->button->wakeup)
828 disable_irq_wake(bdata->irq);
829 }
830 } else {
831 mutex_lock(&input->mutex);
832 if (input->users)
833 error = gpio_keys_open(input);
834 mutex_unlock(&input->mutex);
Anti Sulline15b0212007-09-26 00:01:17 -0400835 }
Dmitry Torokhov5b76d7b2012-11-24 01:22:43 -0800836
Jonas Aabergdda19a92012-11-24 00:10:29 -0800837 if (error)
838 return error;
Anti Sulline15b0212007-09-26 00:01:17 -0400839
Jonas Aabergdda19a92012-11-24 00:10:29 -0800840 gpio_keys_report_state(ddata);
Anti Sulline15b0212007-09-26 00:01:17 -0400841 return 0;
842}
Anti Sulline15b0212007-09-26 00:01:17 -0400843#endif
844
Dmitry Torokhovbdda8212011-07-09 12:41:46 -0700845static SIMPLE_DEV_PM_OPS(gpio_keys_pm_ops, gpio_keys_suspend, gpio_keys_resume);
846
Uwe Kleine-König9b070442008-07-30 10:34:02 -0400847static struct platform_driver gpio_keys_device_driver = {
Phil Blundell78a56aa2007-01-18 00:44:09 -0500848 .probe = gpio_keys_probe,
Bill Pemberton1cb0aa82012-11-23 21:27:39 -0800849 .remove = gpio_keys_remove,
Phil Blundell78a56aa2007-01-18 00:44:09 -0500850 .driver = {
851 .name = "gpio-keys",
Kay Sieversd7b52472008-04-18 00:24:42 -0400852 .owner = THIS_MODULE,
Mike Rapoportae78e0e2009-07-22 23:02:54 -0700853 .pm = &gpio_keys_pm_ops,
Alexandre Pereira da Silva219edc72012-07-29 22:18:47 -0700854 .of_match_table = of_match_ptr(gpio_keys_of_match),
Phil Blundell78a56aa2007-01-18 00:44:09 -0500855 }
856};
857
858static int __init gpio_keys_init(void)
859{
860 return platform_driver_register(&gpio_keys_device_driver);
861}
862
863static void __exit gpio_keys_exit(void)
864{
865 platform_driver_unregister(&gpio_keys_device_driver);
866}
867
David Janderb2330202011-06-23 01:30:09 -0700868late_initcall(gpio_keys_init);
Phil Blundell78a56aa2007-01-18 00:44:09 -0500869module_exit(gpio_keys_exit);
870
871MODULE_LICENSE("GPL");
872MODULE_AUTHOR("Phil Blundell <pb@handhelds.org>");
David Jander7e2ecdf2011-06-21 14:26:18 -0700873MODULE_DESCRIPTION("Keyboard driver for GPIOs");
Kay Sieversd7b52472008-04-18 00:24:42 -0400874MODULE_ALIAS("platform:gpio-keys");