]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/input/keyboard/gpio_keys.c
Input: gpio_keys - clean up device tree parser
[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
fd05d089 5 * Copyright 2010, 2011 David Jander <david@protonic.nl>
78a56aab
PB
6 *
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>
78a56aab
PB
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>
5a0e3ad6 20#include <linux/slab.h>
78a56aab
PB
21#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>
49015bee 26#include <linux/gpio_keys.h>
da0d03fe 27#include <linux/workqueue.h>
111bc59c 28#include <linux/gpio.h>
fd05d089
DJ
29#include <linux/of_platform.h>
30#include <linux/of_gpio.h>
d8ee4a1c 31#include <linux/spinlock.h>
78a56aab 32
a33466e3 33struct gpio_button_data {
d9080921 34 const struct gpio_keys_button *button;
a33466e3 35 struct input_dev *input;
ca865a77 36 struct timer_list timer;
da0d03fe 37 struct work_struct work;
d8ee4a1c
LD
38 unsigned int timer_debounce; /* in msecs */
39 unsigned int irq;
40 spinlock_t lock;
9e3af04f 41 bool disabled;
d8ee4a1c 42 bool key_pressed;
a33466e3
DB
43};
44
45struct gpio_keys_drvdata {
219edc71 46 const struct gpio_keys_platform_data *pdata;
a33466e3 47 struct input_dev *input;
9e3af04f 48 struct mutex disable_lock;
a33466e3
DB
49 struct gpio_button_data data[0];
50};
51
9e3af04f
MW
52/*
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 */
d8ee4a1c 119 disable_irq(bdata->irq);
28ed684f 120 if (bdata->timer_debounce)
9e3af04f
MW
121 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) {
d8ee4a1c 140 enable_irq(bdata->irq);
9e3af04f
MW
141 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
219edc71 172 for (i = 0; i < ddata->pdata->nbuttons; i++) {
9e3af04f
MW
173 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
a16ca239 200 * GPIO buttons accordingly. Returns 0 on success and negative error
9e3af04f
MW
201 * 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 */
219edc71 220 for (i = 0; i < ddata->pdata->nbuttons; i++) {
9e3af04f
MW
221 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
219edc71 235 for (i = 0; i < ddata->pdata->nbuttons; i++) {
9e3af04f
MW
236 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
d8ee4a1c 325static void gpio_keys_gpio_report_event(struct gpio_button_data *bdata)
a33466e3 326{
d9080921 327 const struct gpio_keys_button *button = bdata->button;
ce25d7e9 328 struct input_dev *input = bdata->input;
a33466e3 329 unsigned int type = button->type ?: EV_KEY;
94a8cab8 330 int state = (gpio_get_value_cansleep(button->gpio) ? 1 : 0) ^ button->active_low;
a33466e3 331
92a47674
AS
332 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 }
a33466e3
DB
338 input_sync(input);
339}
340
d8ee4a1c 341static void gpio_keys_gpio_work_func(struct work_struct *work)
6ee88d71
DM
342{
343 struct gpio_button_data *bdata =
344 container_of(work, struct gpio_button_data, work);
345
d8ee4a1c 346 gpio_keys_gpio_report_event(bdata);
6ee88d71
DM
347}
348
d8ee4a1c 349static void gpio_keys_gpio_timer(unsigned long _data)
ca865a77 350{
d8ee4a1c 351 struct gpio_button_data *bdata = (struct gpio_button_data *)_data;
ca865a77 352
d8ee4a1c 353 schedule_work(&bdata->work);
ca865a77
JN
354}
355
d8ee4a1c 356static irqreturn_t gpio_keys_gpio_isr(int irq, void *dev_id)
78a56aab 357{
57ffe9d5 358 struct gpio_button_data *bdata = dev_id;
78a56aab 359
d8ee4a1c 360 BUG_ON(irq != bdata->irq);
84767d00 361
28ed684f 362 if (bdata->timer_debounce)
ca865a77 363 mod_timer(&bdata->timer,
28ed684f 364 jiffies + msecs_to_jiffies(bdata->timer_debounce));
ca865a77 365 else
da0d03fe 366 schedule_work(&bdata->work);
78a56aab 367
57ffe9d5 368 return IRQ_HANDLED;
78a56aab
PB
369}
370
d8ee4a1c
LD
371static void gpio_keys_irq_timer(unsigned long _data)
372{
373 struct gpio_button_data *bdata = (struct gpio_button_data *)_data;
374 struct input_dev *input = bdata->input;
375 unsigned long flags;
376
377 spin_lock_irqsave(&bdata->lock, flags);
378 if (bdata->key_pressed) {
379 input_event(input, EV_KEY, bdata->button->code, 0);
380 input_sync(input);
381 bdata->key_pressed = false;
382 }
383 spin_unlock_irqrestore(&bdata->lock, flags);
384}
385
386static irqreturn_t gpio_keys_irq_isr(int irq, void *dev_id)
387{
388 struct gpio_button_data *bdata = dev_id;
389 const struct gpio_keys_button *button = bdata->button;
390 struct input_dev *input = bdata->input;
391 unsigned long flags;
392
393 BUG_ON(irq != bdata->irq);
394
395 spin_lock_irqsave(&bdata->lock, flags);
396
397 if (!bdata->key_pressed) {
398 input_event(input, EV_KEY, button->code, 1);
399 input_sync(input);
400
401 if (!bdata->timer_debounce) {
402 input_event(input, EV_KEY, button->code, 0);
403 input_sync(input);
404 goto out;
405 }
406
407 bdata->key_pressed = true;
408 }
409
410 if (bdata->timer_debounce)
411 mod_timer(&bdata->timer,
412 jiffies + msecs_to_jiffies(bdata->timer_debounce));
413out:
414 spin_unlock_irqrestore(&bdata->lock, flags);
415 return IRQ_HANDLED;
416}
417
9e3af04f 418static int __devinit gpio_keys_setup_key(struct platform_device *pdev,
d9080921 419 struct input_dev *input,
bc8f1eaf 420 struct gpio_button_data *bdata,
d9080921 421 const struct gpio_keys_button *button)
bc8f1eaf 422{
92a47674 423 const char *desc = button->desc ? button->desc : "gpio_keys";
9e3af04f 424 struct device *dev = &pdev->dev;
d8ee4a1c 425 irq_handler_t isr;
9e3af04f 426 unsigned long irqflags;
bc8f1eaf
BD
427 int irq, error;
428
d9080921
DT
429 bdata->input = input;
430 bdata->button = button;
d8ee4a1c 431 spin_lock_init(&bdata->lock);
bc8f1eaf 432
d8ee4a1c 433 if (gpio_is_valid(button->gpio)) {
bc8f1eaf 434
d8ee4a1c
LD
435 error = gpio_request(button->gpio, desc);
436 if (error < 0) {
437 dev_err(dev, "Failed to request GPIO %d, error %d\n",
438 button->gpio, error);
439 return error;
440 }
bc8f1eaf 441
d8ee4a1c
LD
442 error = gpio_direction_input(button->gpio);
443 if (error < 0) {
444 dev_err(dev,
445 "Failed to configure direction for GPIO %d, error %d\n",
446 button->gpio, error);
447 goto fail;
448 }
28ed684f 449
d8ee4a1c
LD
450 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;
bc8f1eaf
BD
494 }
495
d8ee4a1c
LD
496 input_set_capability(input, button->type ?: EV_KEY, button->code);
497
9e3af04f
MW
498 /*
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
d8ee4a1c 505 error = request_any_context_irq(bdata->irq, isr, irqflags, desc, bdata);
94a8cab8 506 if (error < 0) {
bc8f1eaf 507 dev_err(dev, "Unable to claim irq %d; error %d\n",
d8ee4a1c
LD
508 bdata->irq, error);
509 goto fail;
bc8f1eaf
BD
510 }
511
512 return 0;
513
d8ee4a1c
LD
514fail:
515 if (gpio_is_valid(button->gpio))
516 gpio_free(button->gpio);
517
bc8f1eaf
BD
518 return error;
519}
520
173bdd74
S
521static int gpio_keys_open(struct input_dev *input)
522{
523 struct gpio_keys_drvdata *ddata = input_get_drvdata(input);
219edc71 524 const struct gpio_keys_platform_data *pdata = ddata->pdata;
173bdd74 525
219edc71 526 return pdata->enable ? pdata->enable(input->dev.parent) : 0;
173bdd74
S
527}
528
529static void gpio_keys_close(struct input_dev *input)
530{
531 struct gpio_keys_drvdata *ddata = input_get_drvdata(input);
219edc71 532 const struct gpio_keys_platform_data *pdata = ddata->pdata;
173bdd74 533
219edc71
APS
534 if (pdata->disable)
535 pdata->disable(input->dev.parent);
173bdd74
S
536}
537
fd05d089
DJ
538/*
539 * Handlers for alternative sources of platform_data
540 */
219edc71 541
fd05d089
DJ
542#ifdef CONFIG_OF
543/*
544 * Translate OpenFirmware node properties into platform_data
545 */
219edc71
APS
546static struct gpio_keys_platform_data * __devinit
547gpio_keys_get_devtree_pdata(struct device *dev)
fd05d089
DJ
548{
549 struct device_node *node, *pp;
219edc71
APS
550 struct gpio_keys_platform_data *pdata;
551 struct gpio_keys_button *button;
552 int error;
553 int nbuttons;
fd05d089 554 int i;
fd05d089
DJ
555
556 node = dev->of_node;
219edc71
APS
557 if (!node) {
558 error = -ENODEV;
559 goto err_out;
560 }
fd05d089 561
219edc71
APS
562 nbuttons = of_get_child_count(node);
563 if (nbuttons == 0) {
564 error = -ENODEV;
565 goto err_out;
566 }
fd05d089 567
219edc71
APS
568 pdata = kzalloc(sizeof(*pdata) + nbuttons * (sizeof *button),
569 GFP_KERNEL);
570 if (!pdata) {
571 error = -ENOMEM;
572 goto err_out;
573 }
fd05d089 574
219edc71
APS
575 pdata->buttons = (struct gpio_keys_button *)(pdata + 1);
576 pdata->nbuttons = nbuttons;
fd05d089 577
219edc71 578 pdata->rep = !!of_get_property(node, "autorepeat", NULL);
fd05d089 579
fd05d089 580 i = 0;
219edc71 581 for_each_child_of_node(node, pp) {
fd05d089
DJ
582 enum of_gpio_flags flags;
583
584 if (!of_find_property(pp, "gpios", NULL)) {
585 pdata->nbuttons--;
586 dev_warn(dev, "Found button without gpios\n");
587 continue;
588 }
fd05d089 589
219edc71 590 button = &pdata->buttons[i++];
fd05d089 591
219edc71
APS
592 button->gpio = of_get_gpio_flags(pp, 0, &flags);
593 button->active_low = flags & OF_GPIO_ACTIVE_LOW;
fd05d089 594
219edc71
APS
595 if (of_property_read_u32(pp, "linux,code", &button->code)) {
596 dev_err(dev, "Button without keycode: 0x%x\n",
597 button->gpio);
598 error = -EINVAL;
599 goto err_free_pdata;
600 }
fd05d089 601
219edc71 602 button->desc = of_get_property(pp, "label", NULL);
fd05d089 603
219edc71
APS
604 if (of_property_read_u32(pp, "linux,input-type", &button->type))
605 button->type = EV_KEY;
606
607 button->wakeup = !!of_get_property(pp, "gpio-key,wakeup", NULL);
fd05d089 608
219edc71
APS
609 if (of_property_read_u32(pp, "debounce-interval",
610 &button->debounce_interval))
611 button->debounce_interval = 5;
fd05d089
DJ
612 }
613
219edc71
APS
614 if (pdata->nbuttons == 0) {
615 error = -EINVAL;
616 goto err_free_pdata;
617 }
fd05d089 618
219edc71 619 return pdata;
fd05d089 620
219edc71
APS
621err_free_pdata:
622 kfree(pdata);
623err_out:
624 return ERR_PTR(error);
fd05d089
DJ
625}
626
627static struct of_device_id gpio_keys_of_match[] = {
628 { .compatible = "gpio-keys", },
629 { },
630};
631MODULE_DEVICE_TABLE(of, gpio_keys_of_match);
632
633#else
634
219edc71
APS
635static inline struct gpio_keys_platform_data *
636gpio_keys_get_devtree_pdata(struct device *dev)
fd05d089 637{
219edc71 638 return ERR_PTR(-ENODEV);
fd05d089
DJ
639}
640
fd05d089
DJ
641#endif
642
a16ca239
DT
643static void gpio_remove_key(struct gpio_button_data *bdata)
644{
d8ee4a1c 645 free_irq(bdata->irq, bdata);
a16ca239
DT
646 if (bdata->timer_debounce)
647 del_timer_sync(&bdata->timer);
648 cancel_work_sync(&bdata->work);
d8ee4a1c
LD
649 if (gpio_is_valid(bdata->button->gpio))
650 gpio_free(bdata->button->gpio);
a16ca239
DT
651}
652
78a56aab
PB
653static int __devinit gpio_keys_probe(struct platform_device *pdev)
654{
db19fd8b 655 struct device *dev = &pdev->dev;
219edc71
APS
656 const struct gpio_keys_platform_data *pdata = dev_get_platdata(dev);
657 struct gpio_keys_drvdata *ddata;
78a56aab
PB
658 struct input_dev *input;
659 int i, error;
e15b0213 660 int wakeup = 0;
78a56aab 661
fd05d089 662 if (!pdata) {
219edc71
APS
663 pdata = gpio_keys_get_devtree_pdata(dev);
664 if (IS_ERR(pdata))
665 return PTR_ERR(pdata);
fd05d089
DJ
666 }
667
a33466e3
DB
668 ddata = kzalloc(sizeof(struct gpio_keys_drvdata) +
669 pdata->nbuttons * sizeof(struct gpio_button_data),
670 GFP_KERNEL);
78a56aab 671 input = input_allocate_device();
a33466e3 672 if (!ddata || !input) {
db19fd8b 673 dev_err(dev, "failed to allocate state\n");
a33466e3
DB
674 error = -ENOMEM;
675 goto fail1;
676 }
78a56aab 677
219edc71 678 ddata->pdata = pdata;
9e3af04f 679 ddata->input = input;
9e3af04f
MW
680 mutex_init(&ddata->disable_lock);
681
a33466e3 682 platform_set_drvdata(pdev, ddata);
173bdd74 683 input_set_drvdata(input, ddata);
78a56aab 684
46711277 685 input->name = pdata->name ? : pdev->name;
78a56aab 686 input->phys = "gpio-keys/input0";
469ba4df 687 input->dev.parent = &pdev->dev;
173bdd74
S
688 input->open = gpio_keys_open;
689 input->close = gpio_keys_close;
78a56aab
PB
690
691 input->id.bustype = BUS_HOST;
692 input->id.vendor = 0x0001;
693 input->id.product = 0x0001;
694 input->id.version = 0x0100;
695
b67b4b11
DC
696 /* Enable auto repeat feature of Linux input subsystem */
697 if (pdata->rep)
698 __set_bit(EV_REP, input->evbit);
699
78a56aab 700 for (i = 0; i < pdata->nbuttons; i++) {
d9080921 701 const struct gpio_keys_button *button = &pdata->buttons[i];
a33466e3 702 struct gpio_button_data *bdata = &ddata->data[i];
78a56aab 703
d9080921 704 error = gpio_keys_setup_key(pdev, input, bdata, button);
bc8f1eaf 705 if (error)
a33466e3 706 goto fail2;
84767d00 707
e15b0213
AS
708 if (button->wakeup)
709 wakeup = 1;
78a56aab
PB
710 }
711
9e3af04f 712 error = sysfs_create_group(&pdev->dev.kobj, &gpio_keys_attr_group);
78a56aab 713 if (error) {
9e3af04f
MW
714 dev_err(dev, "Unable to export keys/switches, error: %d\n",
715 error);
a33466e3 716 goto fail2;
78a56aab
PB
717 }
718
9e3af04f
MW
719 error = input_register_device(input);
720 if (error) {
721 dev_err(dev, "Unable to register input device, error: %d\n",
722 error);
723 goto fail3;
724 }
725
d8ee4a1c
LD
726 /* get current state of buttons that are connected to GPIOs */
727 for (i = 0; i < pdata->nbuttons; i++) {
728 struct gpio_button_data *bdata = &ddata->data[i];
729 if (gpio_is_valid(bdata->button->gpio))
730 gpio_keys_gpio_report_event(bdata);
731 }
6ee88d71
DM
732 input_sync(input);
733
e15b0213
AS
734 device_init_wakeup(&pdev->dev, wakeup);
735
78a56aab
PB
736 return 0;
737
9e3af04f
MW
738 fail3:
739 sysfs_remove_group(&pdev->dev.kobj, &gpio_keys_attr_group);
a33466e3 740 fail2:
a16ca239
DT
741 while (--i >= 0)
742 gpio_remove_key(&ddata->data[i]);
78a56aab 743
006df302 744 platform_set_drvdata(pdev, NULL);
a33466e3 745 fail1:
78a56aab 746 input_free_device(input);
a33466e3 747 kfree(ddata);
219edc71
APS
748 /* If we have no platform data, we allocated pdata dynamically. */
749 if (!dev_get_platdata(&pdev->dev))
750 kfree(pdata);
78a56aab
PB
751
752 return error;
753}
754
755static int __devexit gpio_keys_remove(struct platform_device *pdev)
756{
a33466e3
DB
757 struct gpio_keys_drvdata *ddata = platform_get_drvdata(pdev);
758 struct input_dev *input = ddata->input;
78a56aab
PB
759 int i;
760
9e3af04f
MW
761 sysfs_remove_group(&pdev->dev.kobj, &gpio_keys_attr_group);
762
e15b0213
AS
763 device_init_wakeup(&pdev->dev, 0);
764
219edc71 765 for (i = 0; i < ddata->pdata->nbuttons; i++)
a16ca239 766 gpio_remove_key(&ddata->data[i]);
78a56aab
PB
767
768 input_unregister_device(input);
fd05d089 769
219edc71
APS
770 /* If we have no platform data, we allocated pdata dynamically. */
771 if (!dev_get_platdata(&pdev->dev))
772 kfree(ddata->pdata);
fd05d089 773
16382079 774 kfree(ddata);
78a56aab
PB
775
776 return 0;
777}
778
bdda8216 779#ifdef CONFIG_PM_SLEEP
ae78e0e0 780static int gpio_keys_suspend(struct device *dev)
e15b0213 781{
fd05d089 782 struct gpio_keys_drvdata *ddata = dev_get_drvdata(dev);
e15b0213
AS
783 int i;
784
fd05d089 785 if (device_may_wakeup(dev)) {
219edc71 786 for (i = 0; i < ddata->pdata->nbuttons; i++) {
d8ee4a1c
LD
787 struct gpio_button_data *bdata = &ddata->data[i];
788 if (bdata->button->wakeup)
789 enable_irq_wake(bdata->irq);
e15b0213
AS
790 }
791 }
792
793 return 0;
794}
795
ae78e0e0 796static int gpio_keys_resume(struct device *dev)
e15b0213 797{
fd05d089 798 struct gpio_keys_drvdata *ddata = dev_get_drvdata(dev);
e15b0213
AS
799 int i;
800
219edc71 801 for (i = 0; i < ddata->pdata->nbuttons; i++) {
d8ee4a1c
LD
802 struct gpio_button_data *bdata = &ddata->data[i];
803 if (bdata->button->wakeup && device_may_wakeup(dev))
804 disable_irq_wake(bdata->irq);
6ee88d71 805
d8ee4a1c
LD
806 if (gpio_is_valid(bdata->button->gpio))
807 gpio_keys_gpio_report_event(bdata);
e15b0213 808 }
6ee88d71 809 input_sync(ddata->input);
e15b0213
AS
810
811 return 0;
812}
e15b0213
AS
813#endif
814
bdda8216
DT
815static SIMPLE_DEV_PM_OPS(gpio_keys_pm_ops, gpio_keys_suspend, gpio_keys_resume);
816
9b07044c 817static struct platform_driver gpio_keys_device_driver = {
78a56aab
PB
818 .probe = gpio_keys_probe,
819 .remove = __devexit_p(gpio_keys_remove),
820 .driver = {
821 .name = "gpio-keys",
d7b5247b 822 .owner = THIS_MODULE,
ae78e0e0 823 .pm = &gpio_keys_pm_ops,
219edc71 824 .of_match_table = of_match_ptr(gpio_keys_of_match),
78a56aab
PB
825 }
826};
827
828static int __init gpio_keys_init(void)
829{
830 return platform_driver_register(&gpio_keys_device_driver);
831}
832
833static void __exit gpio_keys_exit(void)
834{
835 platform_driver_unregister(&gpio_keys_device_driver);
836}
837
b2330205 838late_initcall(gpio_keys_init);
78a56aab
PB
839module_exit(gpio_keys_exit);
840
841MODULE_LICENSE("GPL");
842MODULE_AUTHOR("Phil Blundell <pb@handhelds.org>");
7e2ecdf4 843MODULE_DESCRIPTION("Keyboard driver for GPIOs");
d7b5247b 844MODULE_ALIAS("platform:gpio-keys");