Message ID | 20231027065930.1187405-1-n-yadav@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v3] arm64: boot: dts: ti: k3-am62a-main: Fix GPIO pin count in DT nodes. | expand |
Hi Nitin Yadav, On Fri, 27 Oct 2023 12:29:30 +0530, Nitin Yadav wrote: > Fix number of gpio pins in main_gpio0 & main_gpio1 DT nodes according > to AM62A7 datasheet[0]. > > [0]https://www.ti.com/lit/gpn/am62a3 Section: 6.3.10 GPIO (Page No. 52-55) > > I have applied the following to branch ti-k3-dts-next on [1]. Thank you! [1/1] arm64: boot: dts: ti: k3-am62a-main: Fix GPIO pin count in DT nodes. commit: 7dc4af358cc382c5d20bd5b726e53ef0f526eb6d NOTE: fixes sha is 12 chars and not 13 (generates a checkpatch warning - which you should have run before posting) and the $subject line does'nt need "boot:" - I have fixed this locally before I applied, but please take care of this in the future. 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] https://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
diff --git a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi index 3198af08fb9f..de36abb243f1 100644 --- a/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi +++ b/arch/arm64/boot/dts/ti/k3-am62a-main.dtsi @@ -462,7 +462,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>; @@ -480,7 +480,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>;
Fix number of gpio pins in main_gpio0 & main_gpio1 DT nodes according to AM62A7 datasheet[0]. [0]https://www.ti.com/lit/gpn/am62a3 Section: 6.3.10 GPIO (Page No. 52-55) Fixes: 5fc6b1b62639c ("arm64: dts: ti: Introduce AM62A7 family of SoCs") Signed-off-by: Nitin Yadav <n-yadav@ti.com> --- v3: - Updated AM62A SK -> AM62A7 in commit description. v2: https://lore.kernel.org/all/20231027061833.1185703-1-n-yadav@ti.com/ - Updated commit msge to include links. - Updated fixes tag v1: https://lore.kernel.org/all/20231025110252.1089979-1-n-yadav@ti.com/ arch/arm64/boot/dts/ti/k3-am62a-main.dtsi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)