Skip to content

Commit

Permalink
arm64: tegra: Fix HSUART for Jetson AGX Orin
Browse files Browse the repository at this point in the history
[ Upstream commit 861dbb2 ]

After commit 71de0a0 ("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 71de0a0 ("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 ff578db
("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: ff578db ("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>
  • Loading branch information
jonhunter authored and gregkh committed Sep 13, 2023
1 parent f5ff689 commit 0f0e696
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -2004,6 +2004,7 @@

serial@3100000 {
compatible = "nvidia,tegra194-hsuart";
reset-names = "serial";
status = "okay";
};

Expand Down

0 comments on commit 0f0e696

Please sign in to comment.