All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
@ 2023-02-02  8:59 ` Nitin Yadav
  0 siblings, 0 replies; 6+ messages in thread
From: Nitin Yadav @ 2023-02-02  8:59 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel, Nitin Yadav

Fix number of gpio pins in main_gpio0 & main_gpio1
DT nodes according to AM62x SK datasheet. The Link
of datasheet is in the following line:
https://www.ti.com/lit/ds/symlink/am625.pdf?ts=1673852494660

Section: 6.3.10 GPIO (Page No. 63-67)

Signed-off-by: Nitin Yadav <n-yadav@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index 072903649d6e..73104b5b00b7 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -461,7 +461,7 @@ main_gpio0: gpio@600000 {
 			     <193>, <194>, <195>;
 		interrupt-controller;
 		#interrupt-cells = <2>;
-		ti,ngpio = <87>;
+		ti,ngpio = <92>;
 		ti,davinci-gpio-unbanked = <0>;
 		power-domains = <&k3_pds 77 TI_SCI_PD_EXCLUSIVE>;
 		clocks = <&k3_clks 77 0>;
@@ -478,7 +478,7 @@ main_gpio1: gpio@601000 {
 			     <183>, <184>, <185>;
 		interrupt-controller;
 		#interrupt-cells = <2>;
-		ti,ngpio = <88>;
+		ti,ngpio = <52>;
 		ti,davinci-gpio-unbanked = <0>;
 		power-domains = <&k3_pds 78 TI_SCI_PD_EXCLUSIVE>;
 		clocks = <&k3_clks 78 0>;
-- 
2.25.1


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

* [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
@ 2023-02-02  8:59 ` Nitin Yadav
  0 siblings, 0 replies; 6+ messages in thread
From: Nitin Yadav @ 2023-02-02  8:59 UTC (permalink / raw)
  To: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski
  Cc: linux-arm-kernel, devicetree, linux-kernel, Nitin Yadav

Fix number of gpio pins in main_gpio0 & main_gpio1
DT nodes according to AM62x SK datasheet. The Link
of datasheet is in the following line:
https://www.ti.com/lit/ds/symlink/am625.pdf?ts=1673852494660

Section: 6.3.10 GPIO (Page No. 63-67)

Signed-off-by: Nitin Yadav <n-yadav@ti.com>
---
 arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
index 072903649d6e..73104b5b00b7 100644
--- a/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
+++ b/arch/arm64/boot/dts/ti/k3-am62-main.dtsi
@@ -461,7 +461,7 @@ main_gpio0: gpio@600000 {
 			     <193>, <194>, <195>;
 		interrupt-controller;
 		#interrupt-cells = <2>;
-		ti,ngpio = <87>;
+		ti,ngpio = <92>;
 		ti,davinci-gpio-unbanked = <0>;
 		power-domains = <&k3_pds 77 TI_SCI_PD_EXCLUSIVE>;
 		clocks = <&k3_clks 77 0>;
@@ -478,7 +478,7 @@ main_gpio1: gpio@601000 {
 			     <183>, <184>, <185>;
 		interrupt-controller;
 		#interrupt-cells = <2>;
-		ti,ngpio = <88>;
+		ti,ngpio = <52>;
 		ti,davinci-gpio-unbanked = <0>;
 		power-domains = <&k3_pds 78 TI_SCI_PD_EXCLUSIVE>;
 		clocks = <&k3_clks 78 0>;
-- 
2.25.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
  2023-02-02  8:59 ` Nitin Yadav
@ 2023-03-09 16:48   ` Bryan Brattlof
  -1 siblings, 0 replies; 6+ messages in thread
From: Bryan Brattlof @ 2023-03-09 16:48 UTC (permalink / raw)
  To: Nitin Yadav
  Cc: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, linux-arm-kernel, devicetree, linux-kernel

Hi Nitin!

On February  2, 2023 thus sayeth Nitin Yadav:
> Fix number of gpio pins in main_gpio0 & main_gpio1
> DT nodes according to AM62x SK datasheet. The Link
> of datasheet is in the following line:
> https://www.ti.com/lit/ds/symlink/am625.pdf?ts=1673852494660
> 
> Section: 6.3.10 GPIO (Page No. 63-67)
>

Thanks for getting this fixed. Should we add a fixes tag to help get 
this back ported?

Fixes: f1d17330a5bedc ("arm64: dts: ti: Introduce base support for AM62x SoC")

> Signed-off-by: Nitin Yadav <n-yadav@ti.com>
> ---
>  arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Reviewed-by: Bryan Brattlof <bb@ti.com>

~Bryan

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
@ 2023-03-09 16:48   ` Bryan Brattlof
  0 siblings, 0 replies; 6+ messages in thread
From: Bryan Brattlof @ 2023-03-09 16:48 UTC (permalink / raw)
  To: Nitin Yadav
  Cc: Nishanth Menon, Vignesh Raghavendra, Tero Kristo, Rob Herring,
	Krzysztof Kozlowski, linux-arm-kernel, devicetree, linux-kernel

Hi Nitin!

On February  2, 2023 thus sayeth Nitin Yadav:
> Fix number of gpio pins in main_gpio0 & main_gpio1
> DT nodes according to AM62x SK datasheet. The Link
> of datasheet is in the following line:
> https://www.ti.com/lit/ds/symlink/am625.pdf?ts=1673852494660
> 
> Section: 6.3.10 GPIO (Page No. 63-67)
>

Thanks for getting this fixed. Should we add a fixes tag to help get 
this back ported?

Fixes: f1d17330a5bedc ("arm64: dts: ti: Introduce base support for AM62x SoC")

> Signed-off-by: Nitin Yadav <n-yadav@ti.com>
> ---
>  arch/arm64/boot/dts/ti/k3-am62-main.dtsi | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 

Reviewed-by: Bryan Brattlof <bb@ti.com>

~Bryan

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

* Re: [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
  2023-02-02  8:59 ` Nitin Yadav
@ 2023-03-10  4:49   ` Nishanth Menon
  -1 siblings, 0 replies; 6+ messages in thread
From: Nishanth Menon @ 2023-03-10  4:49 UTC (permalink / raw)
  To: krzysztof.kozlowski+dt, n-yadav, vigneshr, kristo, robh+dt
  Cc: Nishanth Menon, devicetree, linux-kernel, linux-arm-kernel

Hi Nitin Yadav,

On Thu, 2 Feb 2023 14:29:17 +0530, Nitin Yadav wrote:
> Fix number of gpio pins in main_gpio0 & main_gpio1
> DT nodes according to AM62x SK datasheet. The Link
> of datasheet is in the following line:
> https://www.ti.com/lit/ds/symlink/am625.pdf?ts=1673852494660
> 
> Section: 6.3.10 GPIO (Page No. 63-67)
> 
> [...]

I have applied the following to branch ti-dts-next on [1].
Thank you!

[1/1] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
      commit: 21609ca1f13fc1feca7b4b4aa63d21d95b2e69e2

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Nishanth Menon <nm@ti.com>

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

* Re: [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
@ 2023-03-10  4:49   ` Nishanth Menon
  0 siblings, 0 replies; 6+ messages in thread
From: Nishanth Menon @ 2023-03-10  4:49 UTC (permalink / raw)
  To: krzysztof.kozlowski+dt, n-yadav, vigneshr, kristo, robh+dt
  Cc: Nishanth Menon, devicetree, linux-kernel, linux-arm-kernel

Hi Nitin Yadav,

On Thu, 2 Feb 2023 14:29:17 +0530, Nitin Yadav wrote:
> Fix number of gpio pins in main_gpio0 & main_gpio1
> DT nodes according to AM62x SK datasheet. The Link
> of datasheet is in the following line:
> https://www.ti.com/lit/ds/symlink/am625.pdf?ts=1673852494660
> 
> Section: 6.3.10 GPIO (Page No. 63-67)
> 
> [...]

I have applied the following to branch ti-dts-next on [1].
Thank you!

[1/1] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT
      commit: 21609ca1f13fc1feca7b4b4aa63d21d95b2e69e2

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent up the chain during
the next merge window (or sooner if it is a relevant bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

[1] git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
-- 
Nishanth Menon <nm@ti.com>

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2023-03-10  4:51 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-02  8:59 [PATCH] arm64: dts: ti: k3-am62-main: Fix GPIO numbers in DT Nitin Yadav
2023-02-02  8:59 ` Nitin Yadav
2023-03-09 16:48 ` Bryan Brattlof
2023-03-09 16:48   ` Bryan Brattlof
2023-03-10  4:49 ` Nishanth Menon
2023-03-10  4:49   ` Nishanth Menon

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.