* [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq()
@ 2012-07-25 18:25 Daniel Mack
2012-07-25 18:25 ` [PATCH v3 2/3] input: rotary-encoder: use gpio_request_one() Daniel Mack
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Daniel Mack @ 2012-07-25 18:25 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, jhovold, hartleys, Daniel Mack
Don't call gpio_to_irq() on GPIOs before gpio_request() succeeded on
them. This avoids Ooopses with incorrect DT bindings.
Signed-off-by: Daniel Mack <zonque@gmail.com>
---
drivers/input/misc/rotary_encoder.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
index f07f784..00a7bda 100644
--- a/drivers/input/misc/rotary_encoder.c
+++ b/drivers/input/misc/rotary_encoder.c
@@ -163,8 +163,6 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
encoder->input = input;
encoder->pdata = pdata;
- encoder->irq_a = gpio_to_irq(pdata->gpio_a);
- encoder->irq_b = gpio_to_irq(pdata->gpio_b);
/* create and register the input driver */
input->name = pdev->name;
@@ -215,6 +213,9 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
goto exit_free_gpio_a;
}
+ encoder->irq_a = gpio_to_irq(pdata->gpio_a);
+ encoder->irq_b = gpio_to_irq(pdata->gpio_b);
+
/* request the IRQs */
if (pdata->half_period) {
handler = &rotary_encoder_half_period_irq;
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 2/3] input: rotary-encoder: use gpio_request_one()
2012-07-25 18:25 [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
@ 2012-07-25 18:25 ` Daniel Mack
2012-07-25 18:25 ` [PATCH v3 3/3] input: rotary-encoder: add DT bindings Daniel Mack
2012-07-30 9:39 ` [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
2 siblings, 0 replies; 8+ messages in thread
From: Daniel Mack @ 2012-07-25 18:25 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, jhovold, hartleys, Daniel Mack
Use gpio_request_one() instead of separate calls to gpio_request() and
gpio_direction_input() to simplify the code.
Signed-off-by: Daniel Mack <zonque@gmail.com>
---
drivers/input/misc/rotary_encoder.c | 33 ++++++++-------------------------
1 file changed, 8 insertions(+), 25 deletions(-)
diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
index 00a7bda..e261ad4 100644
--- a/drivers/input/misc/rotary_encoder.c
+++ b/drivers/input/misc/rotary_encoder.c
@@ -145,6 +145,7 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
struct rotary_encoder_platform_data *pdata = pdev->dev.platform_data;
struct rotary_encoder *encoder;
struct input_dev *input;
+ struct device *dev = &pdev->dev;
irq_handler_t handler;
int err;
@@ -180,36 +181,20 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
err = input_register_device(input);
if (err) {
- dev_err(&pdev->dev, "failed to register input device\n");
+ dev_err(dev, "failed to register input device\n");
goto exit_free_mem;
}
/* request the GPIOs */
- err = gpio_request(pdata->gpio_a, DRV_NAME);
+ err = gpio_request_one(pdata->gpio_a, GPIOF_IN, dev_name(dev));
if (err) {
- dev_err(&pdev->dev, "unable to request GPIO %d\n",
- pdata->gpio_a);
+ dev_err(dev, "unable to request GPIO %d\n", pdata->gpio_a);
goto exit_unregister_input;
}
- err = gpio_direction_input(pdata->gpio_a);
+ err = gpio_request_one(pdata->gpio_b, GPIOF_IN, dev_name(dev));
if (err) {
- dev_err(&pdev->dev, "unable to set GPIO %d for input\n",
- pdata->gpio_a);
- goto exit_unregister_input;
- }
-
- err = gpio_request(pdata->gpio_b, DRV_NAME);
- if (err) {
- dev_err(&pdev->dev, "unable to request GPIO %d\n",
- pdata->gpio_b);
- goto exit_free_gpio_a;
- }
-
- err = gpio_direction_input(pdata->gpio_b);
- if (err) {
- dev_err(&pdev->dev, "unable to set GPIO %d for input\n",
- pdata->gpio_b);
+ dev_err(dev, "unable to request GPIO %d\n", pdata->gpio_b);
goto exit_free_gpio_a;
}
@@ -228,8 +213,7 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
DRV_NAME, encoder);
if (err) {
- dev_err(&pdev->dev, "unable to request IRQ %d\n",
- encoder->irq_a);
+ dev_err(dev, "unable to request IRQ %d\n", encoder->irq_a);
goto exit_free_gpio_b;
}
@@ -237,8 +221,7 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
DRV_NAME, encoder);
if (err) {
- dev_err(&pdev->dev, "unable to request IRQ %d\n",
- encoder->irq_b);
+ dev_err(dev, "unable to request IRQ %d\n", encoder->irq_b);
goto exit_free_irq_a;
}
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 3/3] input: rotary-encoder: add DT bindings
2012-07-25 18:25 [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
2012-07-25 18:25 ` [PATCH v3 2/3] input: rotary-encoder: use gpio_request_one() Daniel Mack
@ 2012-07-25 18:25 ` Daniel Mack
2012-07-31 6:12 ` Dmitry Torokhov
2012-07-30 9:39 ` [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
2 siblings, 1 reply; 8+ messages in thread
From: Daniel Mack @ 2012-07-25 18:25 UTC (permalink / raw)
To: linux-input; +Cc: dmitry.torokhov, jhovold, hartleys, Daniel Mack
This adds devicetree bindings to the rotary encoder driver and some
documentation about how to use them. Tested on a PXA3xx platform.
To allow kernel provided data to override DT values, and to avoid
touching the pdev->platform_data, a copy of struct
rotary_encoder_platform_data is now kept privately in
struct rotary_encoder.
Signed-off-by: Daniel Mack <zonque@gmail.com>
---
.../devicetree/bindings/input/rotary-encoder.txt | 37 +++++++
drivers/input/misc/rotary_encoder.c | 101 ++++++++++++++++----
2 files changed, 120 insertions(+), 18 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/rotary-encoder.txt
diff --git a/Documentation/devicetree/bindings/input/rotary-encoder.txt b/Documentation/devicetree/bindings/input/rotary-encoder.txt
new file mode 100644
index 0000000..dd1f634
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/rotary-encoder.txt
@@ -0,0 +1,37 @@
+Rotary encoder DT bindings
+
+Required properties:
+- gpios: a spec for two GPIOs to be used
+
+Optional properties:
+- linux,axis: the input subsystem axis to map to this rotary encoder.
+ Defaults to 0 (ABS_X / REL_X)
+- rotary-encoder,steps: Number of steps in a full turnaround of the
+ encoder. Only relevant for absolute axis. Defaults to 24 which is a
+ typical value for such devices.
+- rotary-encoder,relative-axis: register a relative axis rather than an
+ absolute one. Relative axis will only generate +1/-1 events on the input
+ device, hence no steps need to be passed.
+- rotary-encoder,rollover: Automatic rollove when the rotary value becomes
+ greater than the specified steps or smaller than 0. For absolute axis only.
+- rotary-encoder,half-period: Makes the driver work on half-period mode.
+
+See Documentation/input/rotary-encoder.txt for more information.
+
+Example:
+
+ rotary@0 {
+ compatible = "rotary-encoder";
+ gpios = <&gpio 19 1>, <&gpio 20 0>; /* GPIO19 is inverted */
+ linux,axis = <0>; /* REL_X */
+ rotary-encoder,relative-axis;
+ };
+
+ rotary@1 {
+ compatible = "rotary-encoder";
+ gpios = <&gpio 21 0>, <&gpio 22 0>;
+ linux,axis = <1>; /* ABS_Y */
+ rotary-encoder,steps = <24>;
+ rotary-encoder,rollover;
+ };
+
diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
index e261ad4..91c661d 100644
--- a/drivers/input/misc/rotary_encoder.c
+++ b/drivers/input/misc/rotary_encoder.c
@@ -24,12 +24,14 @@
#include <linux/gpio.h>
#include <linux/rotary_encoder.h>
#include <linux/slab.h>
+#include <linux/of_platform.h>
+#include <linux/of_gpio.h>
#define DRV_NAME "rotary-encoder"
struct rotary_encoder {
struct input_dev *input;
- struct rotary_encoder_platform_data *pdata;
+ struct rotary_encoder_platform_data pdata;
unsigned int axis;
unsigned int pos;
@@ -56,7 +58,7 @@ static int rotary_encoder_get_state(struct rotary_encoder_platform_data *pdata)
static void rotary_encoder_report_event(struct rotary_encoder *encoder)
{
- struct rotary_encoder_platform_data *pdata = encoder->pdata;
+ struct rotary_encoder_platform_data *pdata = &encoder->pdata;
if (pdata->relative_axis) {
input_report_rel(encoder->input,
@@ -91,7 +93,7 @@ static irqreturn_t rotary_encoder_irq(int irq, void *dev_id)
struct rotary_encoder *encoder = dev_id;
int state;
- state = rotary_encoder_get_state(encoder->pdata);
+ state = rotary_encoder_get_state(&encoder->pdata);
switch (state) {
case 0x0:
@@ -120,7 +122,7 @@ static irqreturn_t rotary_encoder_half_period_irq(int irq, void *dev_id)
struct rotary_encoder *encoder = dev_id;
int state;
- state = rotary_encoder_get_state(encoder->pdata);
+ state = rotary_encoder_get_state(&encoder->pdata);
switch (state) {
case 0x00:
@@ -140,35 +142,96 @@ static irqreturn_t rotary_encoder_half_period_irq(int irq, void *dev_id)
return IRQ_HANDLED;
}
+#ifdef CONFIG_OF
+static struct of_device_id rotary_encoder_of_match[] = {
+ { .compatible = "rotary-encoder", },
+ { },
+};
+MODULE_DEVICE_TABLE(of, rotary_encoder_of_match);
+
+static int rotary_encoder_probe_dt(struct platform_device *pdev,
+ struct rotary_encoder *encoder)
+{
+ int tmp;
+ enum of_gpio_flags flags;
+ struct rotary_encoder_platform_data *pdata = &encoder->pdata;
+ struct device_node *np = pdev->dev.of_node;
+ const struct of_device_id *of_id =
+ of_match_device(rotary_encoder_of_match, &pdev->dev);
+
+ if (!of_id)
+ return 0;
+
+ if (of_property_read_u32(np, "rotary-encoder,steps", &tmp) == 0)
+ pdata->steps = tmp;
+ if (of_property_read_u32(np, "linux,axis", &tmp) == 0)
+ pdata->axis = tmp;
+
+ pdata->gpio_a = of_get_gpio_flags(np, 0, &flags);
+ pdata->inverted_a = flags & OF_GPIO_ACTIVE_LOW;
+
+ pdata->gpio_b = of_get_gpio_flags(np, 1, &flags);
+ pdata->inverted_b = flags & OF_GPIO_ACTIVE_LOW;
+
+ if (of_get_property(np, "rotary-encoder,relative-axis", NULL))
+ pdata->relative_axis = 1;
+ if (of_get_property(np, "rotary-encoder,rollover", NULL))
+ pdata->rollover = 1;
+ if (of_get_property(np, "rotary-encoder,half-period", NULL))
+ pdata->half_period = 1;
+
+ return 1;
+}
+#else
+static inline int rotary_encoder_probe_dt(struct platform_device *)
+{
+ return 0;
+}
+#endif
+
static int __devinit rotary_encoder_probe(struct platform_device *pdev)
{
- struct rotary_encoder_platform_data *pdata = pdev->dev.platform_data;
+ struct rotary_encoder_platform_data *pdata;
struct rotary_encoder *encoder;
struct input_dev *input;
struct device *dev = &pdev->dev;
irq_handler_t handler;
+ bool use_of = 0;
int err;
- if (!pdata) {
+ encoder = kzalloc(sizeof(struct rotary_encoder), GFP_KERNEL);
+ if (!encoder)
+ return -ENOMEM;
+
+ err = rotary_encoder_probe_dt(pdev, encoder);
+ if (err < 0)
+ return err;
+ if (err > 0)
+ use_of = 1;
+
+ if (!&pdev->dev.platform_data && !use_of) {
dev_err(&pdev->dev, "missing platform data\n");
return -ENOENT;
}
- encoder = kzalloc(sizeof(struct rotary_encoder), GFP_KERNEL);
+ pdata = &encoder->pdata;
+
+ /* if kernel data was provided, copy it over to our local copy */
+ if (pdev->dev.platform_data)
+ memcpy(pdata, &pdev->dev.platform_data, sizeof(*pdata));
+
+ /* create and register the input driver */
input = input_allocate_device();
- if (!encoder || !input) {
- dev_err(&pdev->dev, "failed to allocate memory for device\n");
+ if (!input) {
+ dev_err(&pdev->dev, "failed to allocate input device\n");
err = -ENOMEM;
- goto exit_free_mem;
+ goto exit_free_encoder;
}
- encoder->input = input;
- encoder->pdata = pdata;
-
- /* create and register the input driver */
input->name = pdev->name;
input->id.bustype = BUS_HOST;
- input->dev.parent = &pdev->dev;
+ input->dev.parent = dev;
+ encoder->input = input;
if (pdata->relative_axis) {
input->evbit[0] = BIT_MASK(EV_REL);
@@ -182,7 +245,7 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
err = input_register_device(input);
if (err) {
dev_err(dev, "failed to register input device\n");
- goto exit_free_mem;
+ goto exit_free_input;
}
/* request the GPIOs */
@@ -238,8 +301,9 @@ exit_free_gpio_a:
exit_unregister_input:
input_unregister_device(input);
input = NULL; /* so we don't try to free it */
-exit_free_mem:
+exit_free_input:
input_free_device(input);
+exit_free_encoder:
kfree(encoder);
return err;
}
@@ -247,7 +311,7 @@ exit_free_mem:
static int __devexit rotary_encoder_remove(struct platform_device *pdev)
{
struct rotary_encoder *encoder = platform_get_drvdata(pdev);
- struct rotary_encoder_platform_data *pdata = pdev->dev.platform_data;
+ struct rotary_encoder_platform_data *pdata = &encoder->pdata;
free_irq(encoder->irq_a, encoder);
free_irq(encoder->irq_b, encoder);
@@ -266,6 +330,7 @@ static struct platform_driver rotary_encoder_driver = {
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
+ .of_match_table = of_match_ptr(rotary_encoder_of_match),
}
};
module_platform_driver(rotary_encoder_driver);
--
1.7.10.4
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq()
2012-07-25 18:25 [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
2012-07-25 18:25 ` [PATCH v3 2/3] input: rotary-encoder: use gpio_request_one() Daniel Mack
2012-07-25 18:25 ` [PATCH v3 3/3] input: rotary-encoder: add DT bindings Daniel Mack
@ 2012-07-30 9:39 ` Daniel Mack
2 siblings, 0 replies; 8+ messages in thread
From: Daniel Mack @ 2012-07-30 9:39 UTC (permalink / raw)
To: Daniel Mack; +Cc: linux-input, dmitry.torokhov, jhovold, hartleys
Hi Dmitry and Hartley,
does that new approach look better to you?
Daniel
On 25.07.2012 20:25, Daniel Mack wrote:
> Don't call gpio_to_irq() on GPIOs before gpio_request() succeeded on
> them. This avoids Ooopses with incorrect DT bindings.
>
> Signed-off-by: Daniel Mack <zonque@gmail.com>
> ---
> drivers/input/misc/rotary_encoder.c | 5 +++--
> 1 file changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
> index f07f784..00a7bda 100644
> --- a/drivers/input/misc/rotary_encoder.c
> +++ b/drivers/input/misc/rotary_encoder.c
> @@ -163,8 +163,6 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
>
> encoder->input = input;
> encoder->pdata = pdata;
> - encoder->irq_a = gpio_to_irq(pdata->gpio_a);
> - encoder->irq_b = gpio_to_irq(pdata->gpio_b);
>
> /* create and register the input driver */
> input->name = pdev->name;
> @@ -215,6 +213,9 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
> goto exit_free_gpio_a;
> }
>
> + encoder->irq_a = gpio_to_irq(pdata->gpio_a);
> + encoder->irq_b = gpio_to_irq(pdata->gpio_b);
> +
> /* request the IRQs */
> if (pdata->half_period) {
> handler = &rotary_encoder_half_period_irq;
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 3/3] input: rotary-encoder: add DT bindings
2012-07-25 18:25 ` [PATCH v3 3/3] input: rotary-encoder: add DT bindings Daniel Mack
@ 2012-07-31 6:12 ` Dmitry Torokhov
2012-07-31 13:56 ` Daniel Mack
0 siblings, 1 reply; 8+ messages in thread
From: Dmitry Torokhov @ 2012-07-31 6:12 UTC (permalink / raw)
To: Daniel Mack; +Cc: linux-input, jhovold, hartleys
Hi Daniel,
On Wed, Jul 25, 2012 at 08:25:14PM +0200, Daniel Mack wrote:
> +#ifdef CONFIG_OF
> +static struct of_device_id rotary_encoder_of_match[] = {
> + { .compatible = "rotary-encoder", },
> + { },
> +};
> +MODULE_DEVICE_TABLE(of, rotary_encoder_of_match);
> +
> +static int rotary_encoder_probe_dt(struct platform_device *pdev,
> + struct rotary_encoder *encoder)
> +{
> + int tmp;
> + enum of_gpio_flags flags;
> + struct rotary_encoder_platform_data *pdata = &encoder->pdata;
> + struct device_node *np = pdev->dev.of_node;
> + const struct of_device_id *of_id =
> + of_match_device(rotary_encoder_of_match, &pdev->dev);
> +
> + if (!of_id)
> + return 0;
> +
> + if (of_property_read_u32(np, "rotary-encoder,steps", &tmp) == 0)
> + pdata->steps = tmp;
> + if (of_property_read_u32(np, "linux,axis", &tmp) == 0)
> + pdata->axis = tmp;
You should be able to simply say
of_property_read_u32(np, "linux,axis", &pdata->axis);
> +
> + pdata->gpio_a = of_get_gpio_flags(np, 0, &flags);
> + pdata->inverted_a = flags & OF_GPIO_ACTIVE_LOW;
> +
> + pdata->gpio_b = of_get_gpio_flags(np, 1, &flags);
> + pdata->inverted_b = flags & OF_GPIO_ACTIVE_LOW;
> +
> + if (of_get_property(np, "rotary-encoder,relative-axis", NULL))
> + pdata->relative_axis = 1;
> + if (of_get_property(np, "rotary-encoder,rollover", NULL))
> + pdata->rollover = 1;
> + if (of_get_property(np, "rotary-encoder,half-period", NULL))
> + pdata->half_period = 1;
> +
> + return 1;
> +}
> +#else
> +static inline int rotary_encoder_probe_dt(struct platform_device *)
This does not match the other instance (you are missing the 2nd
argument).
> +{
> + return 0;
> +}
> +#endif
> +
> static int __devinit rotary_encoder_probe(struct platform_device *pdev)
> {
> - struct rotary_encoder_platform_data *pdata = pdev->dev.platform_data;
> + struct rotary_encoder_platform_data *pdata;
> struct rotary_encoder *encoder;
> struct input_dev *input;
> struct device *dev = &pdev->dev;
> irq_handler_t handler;
> + bool use_of = 0;
> int err;
>
> - if (!pdata) {
> + encoder = kzalloc(sizeof(struct rotary_encoder), GFP_KERNEL);
> + if (!encoder)
> + return -ENOMEM;
> +
> + err = rotary_encoder_probe_dt(pdev, encoder);
> + if (err < 0)
> + return err;
Not that your implementation can fail, but why do you fail device
initialization even if we have kernel-supplied platform data?
> + if (err > 0)
> + use_of = 1;
> +
> + if (!&pdev->dev.platform_data && !use_of) {
!&pdev->dev.platform_data is never false, you meant
!pdev->dev.platform_data
BTW, we have an accessor function dev_get_platdata().
Still, I do not line the copying of pdata over, maybe we coudl have
something like the patch below?
Thanks!
--
Dmitry
Input: rotary-encoder - add DT bindings
From: Daniel Mack <zonque@gmail.com>
This adds devicetree bindings to the rotary encoder driver and some
documentation about how to use them. Tested on a PXA3xx platform.
Signed-off-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
.../devicetree/bindings/input/rotary-encoder.txt | 36 ++++++++
drivers/input/misc/rotary_encoder.c | 96 +++++++++++++++++---
2 files changed, 116 insertions(+), 16 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/rotary-encoder.txt
diff --git a/Documentation/devicetree/bindings/input/rotary-encoder.txt b/Documentation/devicetree/bindings/input/rotary-encoder.txt
new file mode 100644
index 0000000..3315495
--- /dev/null
+++ b/Documentation/devicetree/bindings/input/rotary-encoder.txt
@@ -0,0 +1,36 @@
+Rotary encoder DT bindings
+
+Required properties:
+- gpios: a spec for two GPIOs to be used
+
+Optional properties:
+- linux,axis: the input subsystem axis to map to this rotary encoder.
+ Defaults to 0 (ABS_X / REL_X)
+- rotary-encoder,steps: Number of steps in a full turnaround of the
+ encoder. Only relevant for absolute axis. Defaults to 24 which is a
+ typical value for such devices.
+- rotary-encoder,relative-axis: register a relative axis rather than an
+ absolute one. Relative axis will only generate +1/-1 events on the input
+ device, hence no steps need to be passed.
+- rotary-encoder,rollover: Automatic rollove when the rotary value becomes
+ greater than the specified steps or smaller than 0. For absolute axis only.
+- rotary-encoder,half-period: Makes the driver work on half-period mode.
+
+See Documentation/input/rotary-encoder.txt for more information.
+
+Example:
+
+ rotary@0 {
+ compatible = "rotary-encoder";
+ gpios = <&gpio 19 1>, <&gpio 20 0>; /* GPIO19 is inverted */
+ linux,axis = <0>; /* REL_X */
+ rotary-encoder,relative-axis;
+ };
+
+ rotary@1 {
+ compatible = "rotary-encoder";
+ gpios = <&gpio 21 0>, <&gpio 22 0>;
+ linux,axis = <1>; /* ABS_Y */
+ rotary-encoder,steps = <24>;
+ rotary-encoder,rollover;
+ };
diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
index ea51265..0f9d746 100644
--- a/drivers/input/misc/rotary_encoder.c
+++ b/drivers/input/misc/rotary_encoder.c
@@ -24,6 +24,8 @@
#include <linux/gpio.h>
#include <linux/rotary_encoder.h>
#include <linux/slab.h>
+#include <linux/of_platform.h>
+#include <linux/of_gpio.h>
#define DRV_NAME "rotary-encoder"
@@ -140,6 +142,56 @@ static irqreturn_t rotary_encoder_half_period_irq(int irq, void *dev_id)
return IRQ_HANDLED;
}
+#ifdef CONFIG_OF
+static struct of_device_id rotary_encoder_of_match[] = {
+ { .compatible = "rotary-encoder", },
+ { },
+};
+MODULE_DEVICE_TABLE(of, rotary_encoder_of_match);
+
+static struct rotary_encoder_platform_data * __devinit
+rotary_encoder_parse_dt(struct device *dev)
+{
+ const struct of_device_id *of_id =
+ of_match_device(rotary_encoder_of_match, dev);
+ struct device_node *np = dev->of_node;
+ struct rotary_encoder_platform_data *pdata;
+ enum of_gpio_flags flags;
+
+ if (!of_id || !np)
+ return NULL;
+
+ pdata = kzalloc(sizeof(struct rotary_encoder_platform_data),
+ GFP_KERNEL);
+ if (!pdata)
+ return ERR_PTR(-ENOMEM);
+
+ of_property_read_u32(np, "rotary-encoder,steps", &pdata->steps);
+ of_property_read_u32(np, "linux,axis", &pdata->axis);
+
+ pdata->gpio_a = of_get_gpio_flags(np, 0, &flags);
+ pdata->inverted_a = flags & OF_GPIO_ACTIVE_LOW;
+
+ pdata->gpio_b = of_get_gpio_flags(np, 1, &flags);
+ pdata->inverted_b = flags & OF_GPIO_ACTIVE_LOW;
+
+ pdata->relative_axis = !!of_get_property(np,
+ "rotary-encoder,relative-axis", NULL);
+ pdata->rollover = !!of_get_property(np,
+ "rotary-encoder,rollover", NULL);
+ pdata->half_period = !!of_get_property(np,
+ "rotary-encoder,half-period", NULL))
+
+ return pdata;
+}
+#else
+static inline struct rotary_encoder_platform_data *
+rotary_encoder_parse_dt(struct device *dev)
+{
+ return NULL;
+}
+#endif
+
static int __devinit rotary_encoder_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
@@ -150,14 +202,19 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
int err;
if (!pdata) {
- dev_err(&pdev->dev, "missing platform data\n");
- return -ENOENT;
+ pdata = rotary_encoder_parse_dt(dev);
+ if (IS_ERR(pdata))
+ return PTR_ERR(pdata);
+
+ if (!pdata) {
+ dev_err(dev, "missing platform data\n");
+ return -EINVAL;
+ }
}
encoder = kzalloc(sizeof(struct rotary_encoder), GFP_KERNEL);
input = input_allocate_device();
if (!encoder || !input) {
- dev_err(&pdev->dev, "failed to allocate memory for device\n");
err = -ENOMEM;
goto exit_free_mem;
}
@@ -165,10 +222,9 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
encoder->input = input;
encoder->pdata = pdata;
- /* create and register the input driver */
input->name = pdev->name;
input->id.bustype = BUS_HOST;
- input->dev.parent = &pdev->dev;
+ input->dev.parent = dev;
if (pdata->relative_axis) {
input->evbit[0] = BIT_MASK(EV_REL);
@@ -179,17 +235,11 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
pdata->axis, 0, pdata->steps, 0, 1);
}
- err = input_register_device(input);
- if (err) {
- dev_err(dev, "failed to register input device\n");
- goto exit_free_mem;
- }
-
/* request the GPIOs */
err = gpio_request_one(pdata->gpio_a, GPIOF_IN, dev_name(dev));
if (err) {
dev_err(dev, "unable to request GPIO %d\n", pdata->gpio_a);
- goto exit_unregister_input;
+ goto exit_free_mem;
}
err = gpio_request_one(pdata->gpio_b, GPIOF_IN, dev_name(dev));
@@ -225,22 +275,30 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
goto exit_free_irq_a;
}
+ err = input_register_device(input);
+ if (err) {
+ dev_err(dev, "failed to register input device\n");
+ goto exit_free_irq_b;
+ }
+
platform_set_drvdata(pdev, encoder);
return 0;
+exit_free_irq_b:
+ free_irq(encoder->irq_b, encoder);
exit_free_irq_a:
free_irq(encoder->irq_a, encoder);
exit_free_gpio_b:
gpio_free(pdata->gpio_b);
exit_free_gpio_a:
gpio_free(pdata->gpio_a);
-exit_unregister_input:
- input_unregister_device(input);
- input = NULL; /* so we don't try to free it */
exit_free_mem:
input_free_device(input);
kfree(encoder);
+ if (!dev_get_platdata(&pdev->dev))
+ kfree(pdata);
+
return err;
}
@@ -253,10 +311,15 @@ static int __devexit rotary_encoder_remove(struct platform_device *pdev)
free_irq(encoder->irq_b, encoder);
gpio_free(pdata->gpio_a);
gpio_free(pdata->gpio_b);
+
input_unregister_device(encoder->input);
- platform_set_drvdata(pdev, NULL);
kfree(encoder);
+ if (!dev_get_platdata(&pdev->dev))
+ kfree(pdata);
+
+ platform_set_drvdata(pdev, NULL);
+
return 0;
}
@@ -266,6 +329,7 @@ static struct platform_driver rotary_encoder_driver = {
.driver = {
.name = DRV_NAME,
.owner = THIS_MODULE,
+ .of_match_table = of_match_ptr(rotary_encoder_of_match),
}
};
module_platform_driver(rotary_encoder_driver);
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v3 3/3] input: rotary-encoder: add DT bindings
2012-07-31 6:12 ` Dmitry Torokhov
@ 2012-07-31 13:56 ` Daniel Mack
2012-08-03 4:59 ` Daniel Mack
2012-08-21 7:58 ` Daniel Mack
0 siblings, 2 replies; 8+ messages in thread
From: Daniel Mack @ 2012-07-31 13:56 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, jhovold, hartleys
On 31.07.2012 08:12, Dmitry Torokhov wrote:
> Still, I do not line the copying of pdata over, maybe we coudl have
> something like the patch below?
[...]
> diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
> index ea51265..0f9d746 100644
> --- a/drivers/input/misc/rotary_encoder.c
> +++ b/drivers/input/misc/rotary_encoder.c
> @@ -24,6 +24,8 @@
> #include <linux/gpio.h>
> #include <linux/rotary_encoder.h>
> #include <linux/slab.h>
> +#include <linux/of_platform.h>
> +#include <linux/of_gpio.h>
>
> #define DRV_NAME "rotary-encoder"
>
> @@ -140,6 +142,56 @@ static irqreturn_t rotary_encoder_half_period_irq(int irq, void *dev_id)
> return IRQ_HANDLED;
> }
>
> +#ifdef CONFIG_OF
> +static struct of_device_id rotary_encoder_of_match[] = {
> + { .compatible = "rotary-encoder", },
> + { },
> +};
> +MODULE_DEVICE_TABLE(of, rotary_encoder_of_match);
> +
> +static struct rotary_encoder_platform_data * __devinit
> +rotary_encoder_parse_dt(struct device *dev)
> +{
> + const struct of_device_id *of_id =
> + of_match_device(rotary_encoder_of_match, dev);
> + struct device_node *np = dev->of_node;
> + struct rotary_encoder_platform_data *pdata;
> + enum of_gpio_flags flags;
> +
> + if (!of_id || !np)
> + return NULL;
> +
> + pdata = kzalloc(sizeof(struct rotary_encoder_platform_data),
> + GFP_KERNEL);
> + if (!pdata)
> + return ERR_PTR(-ENOMEM);
> +
> + of_property_read_u32(np, "rotary-encoder,steps", &pdata->steps);
> + of_property_read_u32(np, "linux,axis", &pdata->axis);
> +
> + pdata->gpio_a = of_get_gpio_flags(np, 0, &flags);
> + pdata->inverted_a = flags & OF_GPIO_ACTIVE_LOW;
> +
> + pdata->gpio_b = of_get_gpio_flags(np, 1, &flags);
> + pdata->inverted_b = flags & OF_GPIO_ACTIVE_LOW;
> +
> + pdata->relative_axis = !!of_get_property(np,
> + "rotary-encoder,relative-axis", NULL);
> + pdata->rollover = !!of_get_property(np,
> + "rotary-encoder,rollover", NULL);
> + pdata->half_period = !!of_get_property(np,
> + "rotary-encoder,half-period", NULL))
Syntax error.
> +
> + return pdata;
> +}
> +#else
> +static inline struct rotary_encoder_platform_data *
> +rotary_encoder_parse_dt(struct device *dev)
> +{
> + return NULL;
> +}
> +#endif
> +
> static int __devinit rotary_encoder_probe(struct platform_device *pdev)
> {
> struct device *dev = &pdev->dev;
> @@ -150,14 +202,19 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
> int err;
>
> if (!pdata) {
> - dev_err(&pdev->dev, "missing platform data\n");
> - return -ENOENT;
> + pdata = rotary_encoder_parse_dt(dev);
> + if (IS_ERR(pdata))
> + return PTR_ERR(pdata);
> +
> + if (!pdata) {
> + dev_err(dev, "missing platform data\n");
> + return -EINVAL;
> + }
Well, then you would only parse DT parameters in case of no kernel
provided struct. I thought you were up to a solution where board file
data could override just parts of the DT provided information. But I
don't think the latter would be any useful anyway, so I'm happy with
your solution :)
Thanks for your help,
Daniel
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 3/3] input: rotary-encoder: add DT bindings
2012-07-31 13:56 ` Daniel Mack
@ 2012-08-03 4:59 ` Daniel Mack
2012-08-21 7:58 ` Daniel Mack
1 sibling, 0 replies; 8+ messages in thread
From: Daniel Mack @ 2012-08-03 4:59 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, jhovold, hartleys
On 31.07.2012 15:56, Daniel Mack wrote:
> On 31.07.2012 08:12, Dmitry Torokhov wrote:
>> Still, I do not line the copying of pdata over, maybe we coudl have
>> something like the patch below?
Was that merged yet? Sorry, just want to forget about it :)
>
> [...]
>
>> diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
>> index ea51265..0f9d746 100644
>> --- a/drivers/input/misc/rotary_encoder.c
>> +++ b/drivers/input/misc/rotary_encoder.c
>> @@ -24,6 +24,8 @@
>> #include <linux/gpio.h>
>> #include <linux/rotary_encoder.h>
>> #include <linux/slab.h>
>> +#include <linux/of_platform.h>
>> +#include <linux/of_gpio.h>
>>
>> #define DRV_NAME "rotary-encoder"
>>
>> @@ -140,6 +142,56 @@ static irqreturn_t rotary_encoder_half_period_irq(int irq, void *dev_id)
>> return IRQ_HANDLED;
>> }
>>
>> +#ifdef CONFIG_OF
>> +static struct of_device_id rotary_encoder_of_match[] = {
>> + { .compatible = "rotary-encoder", },
>> + { },
>> +};
>> +MODULE_DEVICE_TABLE(of, rotary_encoder_of_match);
>> +
>> +static struct rotary_encoder_platform_data * __devinit
>> +rotary_encoder_parse_dt(struct device *dev)
>> +{
>> + const struct of_device_id *of_id =
>> + of_match_device(rotary_encoder_of_match, dev);
>> + struct device_node *np = dev->of_node;
>> + struct rotary_encoder_platform_data *pdata;
>> + enum of_gpio_flags flags;
>> +
>> + if (!of_id || !np)
>> + return NULL;
>> +
>> + pdata = kzalloc(sizeof(struct rotary_encoder_platform_data),
>> + GFP_KERNEL);
>> + if (!pdata)
>> + return ERR_PTR(-ENOMEM);
>> +
>> + of_property_read_u32(np, "rotary-encoder,steps", &pdata->steps);
>> + of_property_read_u32(np, "linux,axis", &pdata->axis);
>> +
>> + pdata->gpio_a = of_get_gpio_flags(np, 0, &flags);
>> + pdata->inverted_a = flags & OF_GPIO_ACTIVE_LOW;
>> +
>> + pdata->gpio_b = of_get_gpio_flags(np, 1, &flags);
>> + pdata->inverted_b = flags & OF_GPIO_ACTIVE_LOW;
>> +
>> + pdata->relative_axis = !!of_get_property(np,
>> + "rotary-encoder,relative-axis", NULL);
>> + pdata->rollover = !!of_get_property(np,
>> + "rotary-encoder,rollover", NULL);
>> + pdata->half_period = !!of_get_property(np,
>> + "rotary-encoder,half-period", NULL))
>
> Syntax error.
>
>> +
>> + return pdata;
>> +}
>> +#else
>> +static inline struct rotary_encoder_platform_data *
>> +rotary_encoder_parse_dt(struct device *dev)
>> +{
>> + return NULL;
>> +}
>> +#endif
>> +
>> static int __devinit rotary_encoder_probe(struct platform_device *pdev)
>> {
>> struct device *dev = &pdev->dev;
>> @@ -150,14 +202,19 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
>> int err;
>>
>> if (!pdata) {
>> - dev_err(&pdev->dev, "missing platform data\n");
>> - return -ENOENT;
>> + pdata = rotary_encoder_parse_dt(dev);
>> + if (IS_ERR(pdata))
>> + return PTR_ERR(pdata);
>> +
>> + if (!pdata) {
>> + dev_err(dev, "missing platform data\n");
>> + return -EINVAL;
>> + }
>
> Well, then you would only parse DT parameters in case of no kernel
> provided struct. I thought you were up to a solution where board file
> data could override just parts of the DT provided information. But I
> don't think the latter would be any useful anyway, so I'm happy with
> your solution :)
>
>
> Thanks for your help,
> Daniel
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 3/3] input: rotary-encoder: add DT bindings
2012-07-31 13:56 ` Daniel Mack
2012-08-03 4:59 ` Daniel Mack
@ 2012-08-21 7:58 ` Daniel Mack
1 sibling, 0 replies; 8+ messages in thread
From: Daniel Mack @ 2012-08-21 7:58 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, jhovold, hartleys
Dmitry,
can we merge this series? Your approach with a fix of that trivial
syntax error I pointed out above is fine for me.
Many thanks,
Daniel
On 31.07.2012 15:56, Daniel Mack wrote:
> On 31.07.2012 08:12, Dmitry Torokhov wrote:
>> Still, I do not line the copying of pdata over, maybe we coudl have
>> something like the patch below?
>
> [...]
>
>> diff --git a/drivers/input/misc/rotary_encoder.c b/drivers/input/misc/rotary_encoder.c
>> index ea51265..0f9d746 100644
>> --- a/drivers/input/misc/rotary_encoder.c
>> +++ b/drivers/input/misc/rotary_encoder.c
>> @@ -24,6 +24,8 @@
>> #include <linux/gpio.h>
>> #include <linux/rotary_encoder.h>
>> #include <linux/slab.h>
>> +#include <linux/of_platform.h>
>> +#include <linux/of_gpio.h>
>>
>> #define DRV_NAME "rotary-encoder"
>>
>> @@ -140,6 +142,56 @@ static irqreturn_t rotary_encoder_half_period_irq(int irq, void *dev_id)
>> return IRQ_HANDLED;
>> }
>>
>> +#ifdef CONFIG_OF
>> +static struct of_device_id rotary_encoder_of_match[] = {
>> + { .compatible = "rotary-encoder", },
>> + { },
>> +};
>> +MODULE_DEVICE_TABLE(of, rotary_encoder_of_match);
>> +
>> +static struct rotary_encoder_platform_data * __devinit
>> +rotary_encoder_parse_dt(struct device *dev)
>> +{
>> + const struct of_device_id *of_id =
>> + of_match_device(rotary_encoder_of_match, dev);
>> + struct device_node *np = dev->of_node;
>> + struct rotary_encoder_platform_data *pdata;
>> + enum of_gpio_flags flags;
>> +
>> + if (!of_id || !np)
>> + return NULL;
>> +
>> + pdata = kzalloc(sizeof(struct rotary_encoder_platform_data),
>> + GFP_KERNEL);
>> + if (!pdata)
>> + return ERR_PTR(-ENOMEM);
>> +
>> + of_property_read_u32(np, "rotary-encoder,steps", &pdata->steps);
>> + of_property_read_u32(np, "linux,axis", &pdata->axis);
>> +
>> + pdata->gpio_a = of_get_gpio_flags(np, 0, &flags);
>> + pdata->inverted_a = flags & OF_GPIO_ACTIVE_LOW;
>> +
>> + pdata->gpio_b = of_get_gpio_flags(np, 1, &flags);
>> + pdata->inverted_b = flags & OF_GPIO_ACTIVE_LOW;
>> +
>> + pdata->relative_axis = !!of_get_property(np,
>> + "rotary-encoder,relative-axis", NULL);
>> + pdata->rollover = !!of_get_property(np,
>> + "rotary-encoder,rollover", NULL);
>> + pdata->half_period = !!of_get_property(np,
>> + "rotary-encoder,half-period", NULL))
>
> Syntax error.
>
>> +
>> + return pdata;
>> +}
>> +#else
>> +static inline struct rotary_encoder_platform_data *
>> +rotary_encoder_parse_dt(struct device *dev)
>> +{
>> + return NULL;
>> +}
>> +#endif
>> +
>> static int __devinit rotary_encoder_probe(struct platform_device *pdev)
>> {
>> struct device *dev = &pdev->dev;
>> @@ -150,14 +202,19 @@ static int __devinit rotary_encoder_probe(struct platform_device *pdev)
>> int err;
>>
>> if (!pdata) {
>> - dev_err(&pdev->dev, "missing platform data\n");
>> - return -ENOENT;
>> + pdata = rotary_encoder_parse_dt(dev);
>> + if (IS_ERR(pdata))
>> + return PTR_ERR(pdata);
>> +
>> + if (!pdata) {
>> + dev_err(dev, "missing platform data\n");
>> + return -EINVAL;
>> + }
>
> Well, then you would only parse DT parameters in case of no kernel
> provided struct. I thought you were up to a solution where board file
> data could override just parts of the DT provided information. But I
> don't think the latter would be any useful anyway, so I'm happy with
> your solution :)
>
>
> Thanks for your help,
> Daniel
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-08-21 7:58 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-25 18:25 [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
2012-07-25 18:25 ` [PATCH v3 2/3] input: rotary-encoder: use gpio_request_one() Daniel Mack
2012-07-25 18:25 ` [PATCH v3 3/3] input: rotary-encoder: add DT bindings Daniel Mack
2012-07-31 6:12 ` Dmitry Torokhov
2012-07-31 13:56 ` Daniel Mack
2012-08-03 4:59 ` Daniel Mack
2012-08-21 7:58 ` Daniel Mack
2012-07-30 9:39 ` [PATCH v3 1/3] input: rotary-encoder: defer calls gpio_to_irq() Daniel Mack
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).