From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH 4/4] input: gpio-keys: Add devicetree probe support
Date: Fri, 14 Feb 2014 16:38:54 +0100 [thread overview]
Message-ID: <1392392334-20254-5-git-send-email-s.hauer@pengutronix.de> (raw)
In-Reply-To: <1392392334-20254-1-git-send-email-s.hauer@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
drivers/input/gpio_keys.c | 90 ++++++++++++++++++++++++++++++++++++++++-------
1 file changed, 77 insertions(+), 13 deletions(-)
diff --git a/drivers/input/gpio_keys.c b/drivers/input/gpio_keys.c
index 418158f..9486b9a 100644
--- a/drivers/input/gpio_keys.c
+++ b/drivers/input/gpio_keys.c
@@ -11,6 +11,8 @@
#include <gpio_keys.h>
#include <poller.h>
#include <gpio.h>
+#include <of_gpio.h>
+#include <input/keyboard.h>
struct gpio_key {
int code;
@@ -31,6 +33,8 @@ struct gpio_keys {
struct kfifo *recv_fifo;
struct poller_struct poller;
struct console_device cdev;
+
+ int use_keycodes;
};
static inline struct gpio_keys *
@@ -77,33 +81,29 @@ static int gpio_keys_getc(struct console_device *cdev)
struct gpio_keys *gk = cdev_to_gk_pdata(cdev);
kfifo_get(gk->recv_fifo, (u_char*)&code, sizeof(int));
- return code;
+
+ if (IS_ENABLED(CONFIG_OFDEVICE) && gk->use_keycodes)
+ return keycode_bb_keys[code];
+ else
+ return code;
}
-static int __init gpio_keys_probe(struct device_d *dev)
+static int gpio_keys_probe_pdata(struct gpio_keys *gk, struct device_d *dev)
{
- int ret, i, gpio;
struct gpio_keys_platform_data *pdata;
- struct console_device *cdev;
- struct gpio_keys *gk;
+ int i;
pdata = dev->platform_data;
if (!pdata) {
/* small (so we copy it) but critical! */
- pr_err("missing platform_data\n");
+ dev_err(dev, "missing platform_data\n");
return -ENODEV;
}
- gk = xzalloc(sizeof(*gk));
-
- gk->fifo_size = 50;
-
if (pdata->fifo_size)
gk->fifo_size = pdata->fifo_size;
- gk->recv_fifo = kfifo_alloc(pdata->fifo_size);
-
gk->buttons = xzalloc(pdata->nbuttons * sizeof(*gk->buttons));
gk->nbuttons = pdata->nbuttons;
@@ -113,7 +113,65 @@ static int __init gpio_keys_probe(struct device_d *dev)
gk->buttons[i].active_low = pdata->buttons[i].active_low;
}
- for (i = 0; i < pdata->nbuttons; i++) {
+ return 0;
+}
+
+static int gpio_keys_probe_dt(struct gpio_keys *gk, struct device_d *dev)
+{
+ struct device_node *npkey, *np = dev->device_node;
+ int i = 0, ret;
+
+ if (!IS_ENABLED(CONFIG_OFDEVICE))
+ return -ENODEV;
+
+ gk->nbuttons = of_get_child_count(np);
+ gk->buttons = xzalloc(gk->nbuttons * sizeof(*gk->buttons));
+
+ for_each_child_of_node(np, npkey) {
+ enum of_gpio_flags gpioflags;
+ uint32_t keycode;
+
+ gk->buttons[i].gpio = of_get_named_gpio_flags(npkey, "gpios", 0, &gpioflags);
+ if (gk->buttons[i].gpio < 0)
+ return gk->buttons[i].gpio;
+
+ if (gpioflags & OF_GPIO_ACTIVE_LOW)
+ gk->buttons[i].active_low = 1;
+
+ ret = of_property_read_u32(npkey, "linux,code", &keycode);
+ if (ret)
+ return ret;
+
+ gk->buttons[i].code = keycode;
+
+ i++;
+ }
+
+ gk->use_keycodes = 1;
+
+ return 0;
+}
+
+static int __init gpio_keys_probe(struct device_d *dev)
+{
+ int ret, i, gpio;
+ struct console_device *cdev;
+ struct gpio_keys *gk;
+
+ gk = xzalloc(sizeof(*gk));
+ gk->fifo_size = 50;
+
+ if (dev->device_node)
+ ret = gpio_keys_probe_dt(gk, dev);
+ else
+ ret = gpio_keys_probe_pdata(gk, dev);
+
+ if (ret)
+ return ret;
+
+ gk->recv_fifo = kfifo_alloc(gk->fifo_size);
+
+ for (i = 0; i < gk->nbuttons; i++) {
gpio = gk->buttons[i].gpio;
ret = gpio_request(gpio, "gpio_keys");
if (ret) {
@@ -137,8 +195,14 @@ static int __init gpio_keys_probe(struct device_d *dev)
return poller_register(&gk->poller);
}
+static struct of_device_id key_gpio_of_ids[] = {
+ { .compatible = "gpio-keys", },
+ { }
+};
+
static struct driver_d gpio_keys_driver = {
.name = "gpio_keys",
.probe = gpio_keys_probe,
+ .of_compatible = DRV_OF_COMPAT(key_gpio_of_ids),
};
device_platform_driver(gpio_keys_driver);
--
1.8.5.3
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
prev parent reply other threads:[~2014-02-14 15:39 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-14 15:38 Add devicetree support to gpio-keys driver Sascha Hauer
2014-02-14 15:38 ` [PATCH 1/4] input: Add BB_ prefix to KEY_ defines Sascha Hauer
2014-02-14 15:38 ` [PATCH 2/4] input: gpio-keys: separate internal data from platform_data Sascha Hauer
2014-02-14 15:38 ` [PATCH 3/4] input: Add keycode to barebox key translation table Sascha Hauer
2014-02-14 15:38 ` Sascha Hauer [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1392392334-20254-5-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox