mbox series

[v2,0/2] Initial step for Linux DT sync on Qcom SoCs

Message ID 20220727082204.3677784-1-sumit.garg@linaro.org
Headers show
Series Initial step for Linux DT sync on Qcom SoCs | expand

Message

Sumit Garg July 27, 2022, 8:22 a.m. UTC
This is an initial step towards achieving complete Linux DT sync on Qcom
SoCs/boards. It syncs up DT compatibles for pinctrl and GPIO drivers.

Changes in v2:
- Separate patch for CONFIG_SDM845 check removal.
- Fix pinctrl DT compatibles for db410c and db820c.

Sumit Garg (2):
  pinctrl: sdm845: Remove redundant CONFIG_SDM845 check
  arm: dts: qcom: Sync pinctrl DT nodes with Linux bindings

 arch/arm/dts/dragonboard410c-uboot.dtsi       |  2 +-
 arch/arm/dts/dragonboard410c.dts              | 17 +++-----
 arch/arm/dts/dragonboard820c-uboot.dtsi       |  2 +-
 arch/arm/dts/dragonboard820c.dts              |  4 +-
 arch/arm/dts/qcom-ipq4019.dtsi                | 18 +++------
 arch/arm/dts/qcs404-evb.dts                   |  2 +-
 arch/arm/dts/sdm845.dtsi                      |  2 +-
 arch/arm/mach-ipq40xx/pinctrl-snapdragon.c    | 31 ++++++++++++++-
 arch/arm/mach-snapdragon/Makefile             |  2 +-
 arch/arm/mach-snapdragon/pinctrl-snapdragon.c | 39 ++++++++++++++++---
 drivers/gpio/msm_gpio.c                       | 10 +----
 11 files changed, 83 insertions(+), 46 deletions(-)

Comments

Sumit Garg Aug. 4, 2022, 2:39 p.m. UTC | #1
Hi,

On Wed, 27 Jul 2022 at 13:52, Sumit Garg <sumit.garg@linaro.org> wrote:
>
> This is an initial step towards achieving complete Linux DT sync on Qcom
> SoCs/boards. It syncs up DT compatibles for pinctrl and GPIO drivers.
>
> Changes in v2:
> - Separate patch for CONFIG_SDM845 check removal.
> - Fix pinctrl DT compatibles for db410c and db820c.
>

Do we have any further comments on this?

-Sumit

> Sumit Garg (2):
>   pinctrl: sdm845: Remove redundant CONFIG_SDM845 check
>   arm: dts: qcom: Sync pinctrl DT nodes with Linux bindings
>
>  arch/arm/dts/dragonboard410c-uboot.dtsi       |  2 +-
>  arch/arm/dts/dragonboard410c.dts              | 17 +++-----
>  arch/arm/dts/dragonboard820c-uboot.dtsi       |  2 +-
>  arch/arm/dts/dragonboard820c.dts              |  4 +-
>  arch/arm/dts/qcom-ipq4019.dtsi                | 18 +++------
>  arch/arm/dts/qcs404-evb.dts                   |  2 +-
>  arch/arm/dts/sdm845.dtsi                      |  2 +-
>  arch/arm/mach-ipq40xx/pinctrl-snapdragon.c    | 31 ++++++++++++++-
>  arch/arm/mach-snapdragon/Makefile             |  2 +-
>  arch/arm/mach-snapdragon/pinctrl-snapdragon.c | 39 ++++++++++++++++---
>  drivers/gpio/msm_gpio.c                       | 10 +----
>  11 files changed, 83 insertions(+), 46 deletions(-)
>
> --
> 2.25.1
>
Sumit Garg Aug. 16, 2022, 8:02 a.m. UTC | #2
Hi Tom,

On Thu, 4 Aug 2022 at 20:09, Sumit Garg <sumit.garg@linaro.org> wrote:
>
> Hi,
>
> On Wed, 27 Jul 2022 at 13:52, Sumit Garg <sumit.garg@linaro.org> wrote:
> >
> > This is an initial step towards achieving complete Linux DT sync on Qcom
> > SoCs/boards. It syncs up DT compatibles for pinctrl and GPIO drivers.
> >
> > Changes in v2:
> > - Separate patch for CONFIG_SDM845 check removal.
> > - Fix pinctrl DT compatibles for db410c and db820c.
> >
>
> Do we have any further comments on this?
>

I haven't heard any comments on this patch-set. Would it be fine with
you to merge it?

-Sumit

>
> > Sumit Garg (2):
> >   pinctrl: sdm845: Remove redundant CONFIG_SDM845 check
> >   arm: dts: qcom: Sync pinctrl DT nodes with Linux bindings
> >
> >  arch/arm/dts/dragonboard410c-uboot.dtsi       |  2 +-
> >  arch/arm/dts/dragonboard410c.dts              | 17 +++-----
> >  arch/arm/dts/dragonboard820c-uboot.dtsi       |  2 +-
> >  arch/arm/dts/dragonboard820c.dts              |  4 +-
> >  arch/arm/dts/qcom-ipq4019.dtsi                | 18 +++------
> >  arch/arm/dts/qcs404-evb.dts                   |  2 +-
> >  arch/arm/dts/sdm845.dtsi                      |  2 +-
> >  arch/arm/mach-ipq40xx/pinctrl-snapdragon.c    | 31 ++++++++++++++-
> >  arch/arm/mach-snapdragon/Makefile             |  2 +-
> >  arch/arm/mach-snapdragon/pinctrl-snapdragon.c | 39 ++++++++++++++++---
> >  drivers/gpio/msm_gpio.c                       | 10 +----
> >  11 files changed, 83 insertions(+), 46 deletions(-)
> >
> > --
> > 2.25.1
> >
Sumit Garg Aug. 25, 2022, 5:22 a.m. UTC | #3
On Tue, 16 Aug 2022 at 13:32, Sumit Garg <sumit.garg@linaro.org> wrote:
>
> Hi Tom,
>
> On Thu, 4 Aug 2022 at 20:09, Sumit Garg <sumit.garg@linaro.org> wrote:
> >
> > Hi,
> >
> > On Wed, 27 Jul 2022 at 13:52, Sumit Garg <sumit.garg@linaro.org> wrote:
> > >
> > > This is an initial step towards achieving complete Linux DT sync on Qcom
> > > SoCs/boards. It syncs up DT compatibles for pinctrl and GPIO drivers.
> > >
> > > Changes in v2:
> > > - Separate patch for CONFIG_SDM845 check removal.
> > > - Fix pinctrl DT compatibles for db410c and db820c.
> > >
> >
> > Do we have any further comments on this?
> >
>
> I haven't heard any comments on this patch-set. Would it be fine with
> you to merge it?
>

Gentle ping.

-Sumit

>
> >
> > > Sumit Garg (2):
> > >   pinctrl: sdm845: Remove redundant CONFIG_SDM845 check
> > >   arm: dts: qcom: Sync pinctrl DT nodes with Linux bindings
> > >
> > >  arch/arm/dts/dragonboard410c-uboot.dtsi       |  2 +-
> > >  arch/arm/dts/dragonboard410c.dts              | 17 +++-----
> > >  arch/arm/dts/dragonboard820c-uboot.dtsi       |  2 +-
> > >  arch/arm/dts/dragonboard820c.dts              |  4 +-
> > >  arch/arm/dts/qcom-ipq4019.dtsi                | 18 +++------
> > >  arch/arm/dts/qcs404-evb.dts                   |  2 +-
> > >  arch/arm/dts/sdm845.dtsi                      |  2 +-
> > >  arch/arm/mach-ipq40xx/pinctrl-snapdragon.c    | 31 ++++++++++++++-
> > >  arch/arm/mach-snapdragon/Makefile             |  2 +-
> > >  arch/arm/mach-snapdragon/pinctrl-snapdragon.c | 39 ++++++++++++++++---
> > >  drivers/gpio/msm_gpio.c                       | 10 +----
> > >  11 files changed, 83 insertions(+), 46 deletions(-)
> > >
> > > --
> > > 2.25.1
> > >