2 * Driver for buttons on GPIO lines not capable of generating interrupts
4 * Copyright (C) 2007-2010 Gabor Juhos <juhosg@openwrt.org>
5 * Copyright (C) 2010 Nuno Goncalves <nunojpg@gmail.com>
7 * This file was based on: /drivers/input/misc/cobalt_btns.c
8 * Copyright (C) 2007 Yoichi Yuasa <yoichi_yuasa@tripeaks.co.jp>
10 * also was based on: /drivers/input/keyboard/gpio_keys.c
11 * Copyright 2005 Phil Blundell
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License version 2 as
15 * published by the Free Software Foundation.
18 #include <linux/kernel.h>
19 #include <linux/module.h>
20 #include <linux/slab.h>
21 #include <linux/input.h>
22 #include <linux/input-polldev.h>
23 #include <linux/ioport.h>
24 #include <linux/platform_device.h>
25 #include <linux/gpio.h>
26 #include <linux/gpio/consumer.h>
27 #include <linux/gpio_keys.h>
28 #include <linux/property.h>
30 #define DRV_NAME "gpio-keys-polled"
32 struct gpio_keys_button_data
{
39 struct gpio_keys_polled_dev
{
40 struct input_polled_dev
*poll_dev
;
42 const struct gpio_keys_platform_data
*pdata
;
43 unsigned long rel_axis_seen
[BITS_TO_LONGS(REL_CNT
)];
44 unsigned long abs_axis_seen
[BITS_TO_LONGS(ABS_CNT
)];
45 struct gpio_keys_button_data data
[0];
48 static void gpio_keys_button_event(struct input_polled_dev
*dev
,
49 struct gpio_keys_button
*button
,
52 struct gpio_keys_polled_dev
*bdev
= dev
->private;
53 struct input_dev
*input
= dev
->input
;
54 unsigned int type
= button
->type
?: EV_KEY
;
58 input_event(input
, type
, button
->code
, button
->value
);
59 __set_bit(button
->code
, bdev
->rel_axis_seen
);
61 } else if (type
== EV_ABS
) {
63 input_event(input
, type
, button
->code
, button
->value
);
64 __set_bit(button
->code
, bdev
->abs_axis_seen
);
67 input_event(input
, type
, button
->code
, state
);
72 static void gpio_keys_polled_check_state(struct input_polled_dev
*dev
,
73 struct gpio_keys_button
*button
,
74 struct gpio_keys_button_data
*bdata
)
79 state
= !!gpiod_get_value_cansleep(button
->gpiod
);
81 state
= !!gpiod_get_value(button
->gpiod
);
83 gpio_keys_button_event(dev
, button
, state
);
85 if (state
!= bdata
->last_state
) {
87 bdata
->last_state
= state
;
91 static void gpio_keys_polled_poll(struct input_polled_dev
*dev
)
93 struct gpio_keys_polled_dev
*bdev
= dev
->private;
94 const struct gpio_keys_platform_data
*pdata
= bdev
->pdata
;
95 struct input_dev
*input
= dev
->input
;
98 memset(bdev
->rel_axis_seen
, 0, sizeof(bdev
->rel_axis_seen
));
99 memset(bdev
->abs_axis_seen
, 0, sizeof(bdev
->abs_axis_seen
));
101 for (i
= 0; i
< pdata
->nbuttons
; i
++) {
102 struct gpio_keys_button_data
*bdata
= &bdev
->data
[i
];
104 if (bdata
->count
< bdata
->threshold
) {
106 gpio_keys_button_event(dev
, &pdata
->buttons
[i
],
109 gpio_keys_polled_check_state(dev
, &pdata
->buttons
[i
],
114 for_each_set_bit(i
, input
->relbit
, REL_CNT
) {
115 if (!test_bit(i
, bdev
->rel_axis_seen
))
116 input_event(input
, EV_REL
, i
, 0);
119 for_each_set_bit(i
, input
->absbit
, ABS_CNT
) {
120 if (!test_bit(i
, bdev
->abs_axis_seen
))
121 input_event(input
, EV_ABS
, i
, 0);
127 static void gpio_keys_polled_open(struct input_polled_dev
*dev
)
129 struct gpio_keys_polled_dev
*bdev
= dev
->private;
130 const struct gpio_keys_platform_data
*pdata
= bdev
->pdata
;
133 pdata
->enable(bdev
->dev
);
136 static void gpio_keys_polled_close(struct input_polled_dev
*dev
)
138 struct gpio_keys_polled_dev
*bdev
= dev
->private;
139 const struct gpio_keys_platform_data
*pdata
= bdev
->pdata
;
142 pdata
->disable(bdev
->dev
);
145 static struct gpio_keys_platform_data
*gpio_keys_polled_get_devtree_pdata(struct device
*dev
)
147 struct gpio_keys_platform_data
*pdata
;
148 struct gpio_keys_button
*button
;
149 struct fwnode_handle
*child
;
153 nbuttons
= device_get_child_node_count(dev
);
157 pdata
= devm_kzalloc(dev
, sizeof(*pdata
) + nbuttons
* sizeof(*button
),
160 return ERR_PTR(-ENOMEM
);
162 pdata
->buttons
= (struct gpio_keys_button
*)(pdata
+ 1);
164 pdata
->rep
= device_property_present(dev
, "autorepeat");
165 device_property_read_u32(dev
, "poll-interval", &pdata
->poll_interval
);
167 device_for_each_child_node(dev
, child
) {
168 struct gpio_desc
*desc
;
170 desc
= devm_get_gpiod_from_child(dev
, NULL
, child
);
172 error
= PTR_ERR(desc
);
173 if (error
!= -EPROBE_DEFER
)
175 "Failed to get gpio flags, error: %d\n",
177 fwnode_handle_put(child
);
178 return ERR_PTR(error
);
181 button
= &pdata
->buttons
[pdata
->nbuttons
++];
182 button
->gpiod
= desc
;
184 if (fwnode_property_read_u32(child
, "linux,code", &button
->code
)) {
185 dev_err(dev
, "Button without keycode: %d\n",
186 pdata
->nbuttons
- 1);
187 fwnode_handle_put(child
);
188 return ERR_PTR(-EINVAL
);
191 fwnode_property_read_string(child
, "label", &button
->desc
);
193 if (fwnode_property_read_u32(child
, "linux,input-type",
195 button
->type
= EV_KEY
;
197 if (fwnode_property_read_u32(child
, "linux,input-value",
198 (u32
*)&button
->value
))
202 fwnode_property_read_bool(child
, "wakeup-source") ||
204 fwnode_property_read_bool(child
, "gpio-key,wakeup");
206 if (fwnode_property_read_u32(child
, "debounce-interval",
207 &button
->debounce_interval
))
208 button
->debounce_interval
= 5;
211 if (pdata
->nbuttons
== 0)
212 return ERR_PTR(-EINVAL
);
217 static void gpio_keys_polled_set_abs_params(struct input_dev
*input
,
218 const struct gpio_keys_platform_data
*pdata
, unsigned int code
)
220 int i
, min
= 0, max
= 0;
222 for (i
= 0; i
< pdata
->nbuttons
; i
++) {
223 struct gpio_keys_button
*button
= &pdata
->buttons
[i
];
225 if (button
->type
!= EV_ABS
|| button
->code
!= code
)
228 if (button
->value
< min
)
230 if (button
->value
> max
)
233 input_set_abs_params(input
, code
, min
, max
, 0, 0);
236 static const struct of_device_id gpio_keys_polled_of_match
[] = {
237 { .compatible
= "gpio-keys-polled", },
240 MODULE_DEVICE_TABLE(of
, gpio_keys_polled_of_match
);
242 static int gpio_keys_polled_probe(struct platform_device
*pdev
)
244 struct device
*dev
= &pdev
->dev
;
245 const struct gpio_keys_platform_data
*pdata
= dev_get_platdata(dev
);
246 struct gpio_keys_polled_dev
*bdev
;
247 struct input_polled_dev
*poll_dev
;
248 struct input_dev
*input
;
254 pdata
= gpio_keys_polled_get_devtree_pdata(dev
);
256 return PTR_ERR(pdata
);
258 dev_err(dev
, "missing platform data\n");
263 if (!pdata
->poll_interval
) {
264 dev_err(dev
, "missing poll_interval value\n");
268 size
= sizeof(struct gpio_keys_polled_dev
) +
269 pdata
->nbuttons
* sizeof(struct gpio_keys_button_data
);
270 bdev
= devm_kzalloc(&pdev
->dev
, size
, GFP_KERNEL
);
272 dev_err(dev
, "no memory for private data\n");
276 poll_dev
= devm_input_allocate_polled_device(&pdev
->dev
);
278 dev_err(dev
, "no memory for polled device\n");
282 poll_dev
->private = bdev
;
283 poll_dev
->poll
= gpio_keys_polled_poll
;
284 poll_dev
->poll_interval
= pdata
->poll_interval
;
285 poll_dev
->open
= gpio_keys_polled_open
;
286 poll_dev
->close
= gpio_keys_polled_close
;
288 input
= poll_dev
->input
;
290 input
->name
= pdev
->name
;
291 input
->phys
= DRV_NAME
"/input0";
293 input
->id
.bustype
= BUS_HOST
;
294 input
->id
.vendor
= 0x0001;
295 input
->id
.product
= 0x0001;
296 input
->id
.version
= 0x0100;
298 __set_bit(EV_KEY
, input
->evbit
);
300 __set_bit(EV_REP
, input
->evbit
);
302 for (i
= 0; i
< pdata
->nbuttons
; i
++) {
303 struct gpio_keys_button
*button
= &pdata
->buttons
[i
];
304 struct gpio_keys_button_data
*bdata
= &bdev
->data
[i
];
305 unsigned int type
= button
->type
?: EV_KEY
;
307 if (button
->wakeup
) {
308 dev_err(dev
, DRV_NAME
" does not support wakeup\n");
313 * Legacy GPIO number so request the GPIO here and
314 * convert it to descriptor.
316 if (!button
->gpiod
&& gpio_is_valid(button
->gpio
)) {
317 unsigned flags
= GPIOF_IN
;
319 if (button
->active_low
)
320 flags
|= GPIOF_ACTIVE_LOW
;
322 error
= devm_gpio_request_one(&pdev
->dev
, button
->gpio
,
323 flags
, button
->desc
? : DRV_NAME
);
325 dev_err(dev
, "unable to claim gpio %u, err=%d\n",
326 button
->gpio
, error
);
330 button
->gpiod
= gpio_to_desc(button
->gpio
);
333 if (IS_ERR(button
->gpiod
))
334 return PTR_ERR(button
->gpiod
);
336 bdata
->can_sleep
= gpiod_cansleep(button
->gpiod
);
337 bdata
->last_state
= -1;
338 bdata
->threshold
= DIV_ROUND_UP(button
->debounce_interval
,
339 pdata
->poll_interval
);
341 input_set_capability(input
, type
, button
->code
);
343 gpio_keys_polled_set_abs_params(input
, pdata
,
347 bdev
->poll_dev
= poll_dev
;
350 platform_set_drvdata(pdev
, bdev
);
352 error
= input_register_polled_device(poll_dev
);
354 dev_err(dev
, "unable to register polled device, err=%d\n",
359 /* report initial state of the buttons */
360 for (i
= 0; i
< pdata
->nbuttons
; i
++)
361 gpio_keys_polled_check_state(poll_dev
, &pdata
->buttons
[i
],
369 static struct platform_driver gpio_keys_polled_driver
= {
370 .probe
= gpio_keys_polled_probe
,
373 .of_match_table
= gpio_keys_polled_of_match
,
376 module_platform_driver(gpio_keys_polled_driver
);
378 MODULE_LICENSE("GPL v2");
379 MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org>");
380 MODULE_DESCRIPTION("Polled GPIO Buttons driver");
381 MODULE_ALIAS("platform:" DRV_NAME
);