Re: [PATCH v2 0/2] Initial step for Linux DT sync on Qcom SoCs

2022-08-24 Thread Sumit Garg
On Tue, 16 Aug 2022 at 13:32, Sumit Garg  wrote:
>
> Hi Tom,
>
> On Thu, 4 Aug 2022 at 20:09, Sumit Garg  wrote:
> >
> > Hi,
> >
> > On Wed, 27 Jul 2022 at 13:52, Sumit Garg  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
> > >


Re: [PATCH v2 0/2] Initial step for Linux DT sync on Qcom SoCs

2022-08-16 Thread Sumit Garg
Hi Tom,

On Thu, 4 Aug 2022 at 20:09, Sumit Garg  wrote:
>
> Hi,
>
> On Wed, 27 Jul 2022 at 13:52, Sumit Garg  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
> >


Re: [PATCH v2 0/2] Initial step for Linux DT sync on Qcom SoCs

2022-08-04 Thread Sumit Garg
Hi,

On Wed, 27 Jul 2022 at 13:52, Sumit Garg  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
>


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

2022-07-27 Thread Sumit Garg
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(-)

-- 
2.25.1