2020-09-13 21:19:40

by Drew Fustini

[permalink] [raw]
Subject: [PATCH] pinctrl: single: check if #pinctrl-cells exceeds 3

The property #pinctrl-cells can either be 2 or 3. There is currently
only a check to make sure that #pinctrl-cells is 2 or greater. This
patch adds a check to make sure it is not greater than 3.

Fixes: a13395418888 ("pinctrl: single: parse #pinctrl-cells = 2")
Reported-by: Trent Piepho <[email protected]>
Link: https://lore.kernel.org/linux-omap/[email protected]/
Signed-off-by: Drew Fustini <[email protected]>
---
drivers/pinctrl/pinctrl-single.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c
index efe41abc5d47..5cbf0e55087c 100644
--- a/drivers/pinctrl/pinctrl-single.c
+++ b/drivers/pinctrl/pinctrl-single.c
@@ -1014,7 +1014,7 @@ static int pcs_parse_one_pinctrl_entry(struct pcs_device *pcs,
if (res)
return res;

- if (pinctrl_spec.args_count < 2) {
+ if (pinctrl_spec.args_count < 2 || pinctrl_spec.args_count > 3) {
dev_err(pcs->dev, "invalid args_count for spec: %i\n",
pinctrl_spec.args_count);
break;
--
2.25.1


2020-09-29 12:52:52

by Linus Walleij

[permalink] [raw]
Subject: Re: [PATCH] pinctrl: single: check if #pinctrl-cells exceeds 3

On Sun, Sep 13, 2020 at 11:17 PM Drew Fustini <[email protected]> wrote:

> The property #pinctrl-cells can either be 2 or 3. There is currently
> only a check to make sure that #pinctrl-cells is 2 or greater. This
> patch adds a check to make sure it is not greater than 3.
>
> Fixes: a13395418888 ("pinctrl: single: parse #pinctrl-cells = 2")
> Reported-by: Trent Piepho <[email protected]>
> Link: https://lore.kernel.org/linux-omap/[email protected]/
> Signed-off-by: Drew Fustini <[email protected]>

Tony, does this and the other patch look good to you?

Yours,
Linus Walleij

2020-09-30 05:18:52

by Tony Lindgren

[permalink] [raw]
Subject: Re: [PATCH] pinctrl: single: check if #pinctrl-cells exceeds 3

* Linus Walleij <[email protected]> [200929 12:51]:
> On Sun, Sep 13, 2020 at 11:17 PM Drew Fustini <[email protected]> wrote:
>
> > The property #pinctrl-cells can either be 2 or 3. There is currently
> > only a check to make sure that #pinctrl-cells is 2 or greater. This
> > patch adds a check to make sure it is not greater than 3.
> >
> > Fixes: a13395418888 ("pinctrl: single: parse #pinctrl-cells = 2")
> > Reported-by: Trent Piepho <[email protected]>
> > Link: https://lore.kernel.org/linux-omap/[email protected]/
> > Signed-off-by: Drew Fustini <[email protected]>
>
> Tony, does this and the other patch look good to you?

Hmm well the description looks a bit confusing, #pinctrl-cells can
also be 1 that's the default. Might be worth clarifying that part.

Regards,

Tony

2020-09-30 17:55:01

by Drew Fustini

[permalink] [raw]
Subject: Re: [PATCH] pinctrl: single: check if #pinctrl-cells exceeds 3

On Wed, Sep 30, 2020 at 08:16:59AM +0300, Tony Lindgren wrote:
> * Linus Walleij <[email protected]> [200929 12:51]:
> > On Sun, Sep 13, 2020 at 11:17 PM Drew Fustini <[email protected]> wrote:
> >
> > > The property #pinctrl-cells can either be 2 or 3. There is currently
> > > only a check to make sure that #pinctrl-cells is 2 or greater. This
> > > patch adds a check to make sure it is not greater than 3.
> > >
> > > Fixes: a13395418888 ("pinctrl: single: parse #pinctrl-cells = 2")
> > > Reported-by: Trent Piepho <[email protected]>
> > > Link: https://lore.kernel.org/linux-omap/[email protected]/
> > > Signed-off-by: Drew Fustini <[email protected]>
> >
> > Tony, does this and the other patch look good to you?
>
> Hmm well the description looks a bit confusing, #pinctrl-cells can
> also be 1 that's the default. Might be worth clarifying that part.
>
> Regards,
>
> Tony

Yes, that was my fault for confusing #pinctrl-cells with
pinctrl_spec.args_count.

- if #pinctrl-cells = <1>, then pinctrl_spec.args_count = 2
- if #pinctrl-cells = <2>, then pinctrl_spec.args_count = 3
- all other values are not valid

I will post a v2.

Thanks,
Drew