]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
arm64: tegra: Fix HSUART for Jetson AGX Orin
authorJon Hunter <jonathanh@nvidia.com>
Mon, 3 Jul 2023 11:36:17 +0000 (12:36 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 13 Sep 2023 07:48:12 +0000 (09:48 +0200)
[ Upstream commit 861dbb2b15b1049113887fb95e856f7123eea0cc ]

After commit 71de0a054d0e ("arm64: tegra: Drop serial clock-names and
reset-names") was applied, the HSUART failed to probe and the following
error is seen:

 serial-tegra 3100000.serial: Couldn't get the reset
 serial-tegra: probe of 3100000.serial failed with error -2

Commit 71de0a054d0e ("arm64: tegra: Drop serial clock-names and
reset-names") is correct because the "reset-names" property is not
needed for 8250 UARTs. However, the "reset-names" is required for the
HSUART and should have been populated as part of commit ff578db7b693
("arm64: tegra: Enable UART instance on 40-pin header") that
enabled the HSUART for Jetson AGX Orin. Fix this by populating the
"reset-names" property for the HSUART on Jetson AGX Orin.

Fixes: ff578db7b693 ("arm64: tegra: Enable UART instance on 40-pin header")
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/arm64/boot/dts/nvidia/tegra234-p3737-0000+p3701-0000.dts

index caa9e952a149c981c6e38104482c7b7fe10d97da..a1194c4e15f0e9228c0e543aacfc5876edf83e08 100644 (file)
 
                serial@3100000 {
                        compatible = "nvidia,tegra194-hsuart";
+                       reset-names = "serial";
                        status = "okay";
                };