All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] pinctrl: imx: Add the zero base flag for imx93
@ 2022-06-13  3:18 Jacky Bai
  2022-06-23  1:41 ` Jacky Bai
  2022-06-28 13:17 ` Linus Walleij
  0 siblings, 2 replies; 5+ messages in thread
From: Jacky Bai @ 2022-06-13  3:18 UTC (permalink / raw)
  To: linus.walleij, shawnguo, aisheng.dong
  Cc: festevam, kernel, linux-imx, linux-gpio

On i.MX93, the pin mux reg offset is from 0x0,
so need to add the 'ZERO_OFFSET_VALID' flag to make
sure the pin at mux offset 0 can be found.

Signed-off-by: Jacky Bai <ping.bai@nxp.com>
---
 drivers/pinctrl/freescale/pinctrl-imx93.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/pinctrl/freescale/pinctrl-imx93.c b/drivers/pinctrl/freescale/pinctrl-imx93.c
index c0630f69e995..417e41b37a6f 100644
--- a/drivers/pinctrl/freescale/pinctrl-imx93.c
+++ b/drivers/pinctrl/freescale/pinctrl-imx93.c
@@ -239,6 +239,7 @@ static const struct pinctrl_pin_desc imx93_pinctrl_pads[] = {
 static const struct imx_pinctrl_soc_info imx93_pinctrl_info = {
 	.pins = imx93_pinctrl_pads,
 	.npins = ARRAY_SIZE(imx93_pinctrl_pads),
+	.flags = ZERO_OFFSET_VALID,
 	.gpr_compatible = "fsl,imx93-iomuxc-gpr",
 };
 
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* RE: [PATCH] pinctrl: imx: Add the zero base flag for imx93
  2022-06-13  3:18 [PATCH] pinctrl: imx: Add the zero base flag for imx93 Jacky Bai
@ 2022-06-23  1:41 ` Jacky Bai
  2022-06-28 13:17 ` Linus Walleij
  1 sibling, 0 replies; 5+ messages in thread
From: Jacky Bai @ 2022-06-23  1:41 UTC (permalink / raw)
  To: linus.walleij, shawnguo, Aisheng Dong
  Cc: festevam, kernel, dl-linux-imx, linux-gpio

Ping...

BR
> Subject: [PATCH] pinctrl: imx: Add the zero base flag for imx93
> 
> On i.MX93, the pin mux reg offset is from 0x0, so need to add the
> 'ZERO_OFFSET_VALID' flag to make sure the pin at mux offset 0 can be found.
> 
> Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> ---
>  drivers/pinctrl/freescale/pinctrl-imx93.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/pinctrl/freescale/pinctrl-imx93.c
> b/drivers/pinctrl/freescale/pinctrl-imx93.c
> index c0630f69e995..417e41b37a6f 100644
> --- a/drivers/pinctrl/freescale/pinctrl-imx93.c
> +++ b/drivers/pinctrl/freescale/pinctrl-imx93.c
> @@ -239,6 +239,7 @@ static const struct pinctrl_pin_desc
> imx93_pinctrl_pads[] = {  static const struct imx_pinctrl_soc_info
> imx93_pinctrl_info = {
>  	.pins = imx93_pinctrl_pads,
>  	.npins = ARRAY_SIZE(imx93_pinctrl_pads),
> +	.flags = ZERO_OFFSET_VALID,
>  	.gpr_compatible = "fsl,imx93-iomuxc-gpr",  };
> 
> --
> 2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] pinctrl: imx: Add the zero base flag for imx93
  2022-06-13  3:18 [PATCH] pinctrl: imx: Add the zero base flag for imx93 Jacky Bai
  2022-06-23  1:41 ` Jacky Bai
@ 2022-06-28 13:17 ` Linus Walleij
  2022-07-04  6:04   ` Jacky Bai
  1 sibling, 1 reply; 5+ messages in thread
From: Linus Walleij @ 2022-06-28 13:17 UTC (permalink / raw)
  To: Jacky Bai, Sascha Hauer
  Cc: shawnguo, aisheng.dong, festevam, linux-imx, linux-gpio

On Mon, Jun 13, 2022 at 5:17 AM Jacky Bai <ping.bai@nxp.com> wrote:

> On i.MX93, the pin mux reg offset is from 0x0,
> so need to add the 'ZERO_OFFSET_VALID' flag to make
> sure the pin at mux offset 0 can be found.
>
> Signed-off-by: Jacky Bai <ping.bai@nxp.com>

No reply from maintainers for an urgent fix for two weeks -> patch applied.

Jacky, maybe you should be listed as comaintainer for the freescale
pin controller if you are doing active maintenance on it?

Yours,
Linus Walleij

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: [PATCH] pinctrl: imx: Add the zero base flag for imx93
  2022-06-28 13:17 ` Linus Walleij
@ 2022-07-04  6:04   ` Jacky Bai
  2022-07-06 12:51     ` Linus Walleij
  0 siblings, 1 reply; 5+ messages in thread
From: Jacky Bai @ 2022-07-04  6:04 UTC (permalink / raw)
  To: Linus Walleij, Sascha Hauer
  Cc: shawnguo, Aisheng Dong, festevam, dl-linux-imx, linux-gpio

> Subject: Re: [PATCH] pinctrl: imx: Add the zero base flag for imx93
> 
> On Mon, Jun 13, 2022 at 5:17 AM Jacky Bai <ping.bai@nxp.com> wrote:
> 
> > On i.MX93, the pin mux reg offset is from 0x0, so need to add the
> > 'ZERO_OFFSET_VALID' flag to make sure the pin at mux offset 0 can be
> > found.
> >
> > Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> 
> No reply from maintainers for an urgent fix for two weeks -> patch applied.
> 
> Jacky, maybe you should be listed as comaintainer for the freescale pin
> controller if you are doing active maintenance on it?
> 

Yes, I can help on this.

BR

> Yours,
> Linus Walleij

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] pinctrl: imx: Add the zero base flag for imx93
  2022-07-04  6:04   ` Jacky Bai
@ 2022-07-06 12:51     ` Linus Walleij
  0 siblings, 0 replies; 5+ messages in thread
From: Linus Walleij @ 2022-07-06 12:51 UTC (permalink / raw)
  To: Jacky Bai
  Cc: Sascha Hauer, shawnguo, Aisheng Dong, festevam, dl-linux-imx, linux-gpio

On Mon, Jul 4, 2022 at 8:04 AM Jacky Bai <ping.bai@nxp.com> wrote:
> > Subject: Re: [PATCH] pinctrl: imx: Add the zero base flag for imx93
> > On Mon, Jun 13, 2022 at 5:17 AM Jacky Bai <ping.bai@nxp.com> wrote:
> >
> > > On i.MX93, the pin mux reg offset is from 0x0, so need to add the
> > > 'ZERO_OFFSET_VALID' flag to make sure the pin at mux offset 0 can be
> > > found.
> > >
> > > Signed-off-by: Jacky Bai <ping.bai@nxp.com>
> >
> > No reply from maintainers for an urgent fix for two weeks -> patch applied.
> >
> > Jacky, maybe you should be listed as comaintainer for the freescale pin
> > controller if you are doing active maintenance on it?
>
> Yes, I can help on this.

Please send a patch to MAINATINERS adding yourself as maintainer
and CC the other maintainers listed there.

Maybe you have some internal NXP mail list and procedure to follow
too, no idea :D discuss amongs yourselves if necessary, but I really
like active maintainers.

Thanks!
Linus Walleij

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-07-06 12:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-13  3:18 [PATCH] pinctrl: imx: Add the zero base flag for imx93 Jacky Bai
2022-06-23  1:41 ` Jacky Bai
2022-06-28 13:17 ` Linus Walleij
2022-07-04  6:04   ` Jacky Bai
2022-07-06 12:51     ` Linus Walleij

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.