2012-11-21 07:38:49

by Linus Walleij

[permalink] [raw]
Subject: [PATCH] gpiolib: fix bug and clarify OF use of ranges

From: Linus Walleij <[email protected]>

In commit c905165f5946f56dca195871641bd4e488eca24a
"gpiolib: let gpiochip_add_pin_range() specify offset"
I forgot to update the OF use of the function
gpiochip_add_pin_range().

It turns out that this reveal a weakness in the
OF range mappings: ranges cannot currently be sparse.
So put in a comment so we can fix this later.

Signed-off-by: Linus Walleij <[email protected]>
---
drivers/gpio/gpiolib-of.c | 12 ++++++++++++
1 file changed, 12 insertions(+)

diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
index a40cd84..d542a14 100644
--- a/drivers/gpio/gpiolib-of.c
+++ b/drivers/gpio/gpiolib-of.c
@@ -238,8 +238,20 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
if (!pctldev)
break;

+ /*
+ * This assumes that the n GPIO pins are consecutive in the
+ * GPIO number space, and that the pins are also consecutive
+ * in their local number space. Currently it is not possible
+ * to add different ranges for one and the same GPIO chip,
+ * as the code assumes that we have one consecutive range
+ * on both, mapping 1-to-1.
+ *
+ * TODO: make the OF bindings handle multiple sparse ranges
+ * on the same GPIO chip.
+ */
ret = gpiochip_add_pin_range(chip,
pinctrl_dev_get_name(pctldev),
+ 0, /* offset in gpiochip */
pinspec.args[0],
pinspec.args[1]);

--
1.7.11.3


2012-11-21 07:42:44

by Viresh Kumar

[permalink] [raw]
Subject: Re: [PATCH] gpiolib: fix bug and clarify OF use of ranges

On 21 November 2012 13:07, Linus Walleij <[email protected]> wrote:
> From: Linus Walleij <[email protected]>
>
> In commit c905165f5946f56dca195871641bd4e488eca24a
> "gpiolib: let gpiochip_add_pin_range() specify offset"
> I forgot to update the OF use of the function
> gpiochip_add_pin_range().
>
> It turns out that this reveal a weakness in the
> OF range mappings: ranges cannot currently be sparse.
> So put in a comment so we can fix this later.
>
> Signed-off-by: Linus Walleij <[email protected]>
> ---
> drivers/gpio/gpiolib-of.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/gpio/gpiolib-of.c b/drivers/gpio/gpiolib-of.c
> index a40cd84..d542a14 100644
> --- a/drivers/gpio/gpiolib-of.c
> +++ b/drivers/gpio/gpiolib-of.c
> @@ -238,8 +238,20 @@ static void of_gpiochip_add_pin_range(struct gpio_chip *chip)
> if (!pctldev)
> break;
>
> + /*
> + * This assumes that the n GPIO pins are consecutive in the
> + * GPIO number space, and that the pins are also consecutive
> + * in their local number space. Currently it is not possible
> + * to add different ranges for one and the same GPIO chip,
> + * as the code assumes that we have one consecutive range
> + * on both, mapping 1-to-1.
> + *
> + * TODO: make the OF bindings handle multiple sparse ranges
> + * on the same GPIO chip.
> + */
> ret = gpiochip_add_pin_range(chip,
> pinctrl_dev_get_name(pctldev),
> + 0, /* offset in gpiochip */
> pinspec.args[0],
> pinspec.args[1]);

Reviewed-by: Viresh Kumar <[email protected]>

This is what i was asking you earlier: "Doesn't gpiochip_add_pin_range
have any users?" and you said NO and i didn't cross checked :(

2012-11-21 07:56:49

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] gpiolib: fix bug and clarify OF use of ranges

On Wed, Nov 21, 2012 at 8:37 AM, Linus Walleij
<[email protected]> wrote:

> From: Linus Walleij <[email protected]>
>
> In commit c905165f5946f56dca195871641bd4e488eca24a
> "gpiolib: let gpiochip_add_pin_range() specify offset"
> I forgot to update the OF use of the function
> gpiochip_add_pin_range().
>
> It turns out that this reveal a weakness in the
> OF range mappings: ranges cannot currently be sparse.
> So put in a comment so we can fix this later.
>
> Signed-off-by: Linus Walleij <[email protected]>

BTW I've squashed this into the original commit above to avoid any
git bisect issues.

Linus Walleij

2012-11-21 07:57:44

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] gpiolib: fix bug and clarify OF use of ranges

On Wed, Nov 21, 2012 at 8:42 AM, Viresh Kumar <[email protected]> wrote:

> Reviewed-by: Viresh Kumar <[email protected]>
>
> This is what i was asking you earlier: "Doesn't gpiochip_add_pin_range
> have any users?" and you said NO and i didn't cross checked :(

Yes I forgot that I refactored the OF code to actually use this
function.... sorry.

Thanks,
Linus Walleij