diff options
author | Jon Hunter <jonathanh@nvidia.com> | 2023-05-26 12:17:27 +0100 |
---|---|---|
committer | Thierry Reding <treding@nvidia.com> | 2023-05-26 17:05:27 +0200 |
commit | 2a7318b2586684e842f58cb7eeada2d8cb5d8151 (patch) | |
tree | 5befa3e8ecd4ac4f7532470af36e1d23f751c805 | |
parent | 1582e1d1b244e195c869957e08f06c53aa78c688 (diff) | |
download | lwn-2a7318b2586684e842f58cb7eeada2d8cb5d8151.tar.gz lwn-2a7318b2586684e842f58cb7eeada2d8cb5d8151.zip |
arm64: tegra: Fix PCIe regulator for Orin Jetson AGX
The PCIe slot on the Jetson Orin AGX is not working and PCIe cards
are not detected. The regulator for the 3.3V regulator for the PCIe is
using the wrong GPIO for turning on the regulator. Fix this by updating
the 3.3V regulator to use the correct GPIO.
Signed-off-by: Jon Hunter <jonathanh@nvidia.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r-- | arch/arm64/boot/dts/nvidia/tegra234-p3701-0000.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/nvidia/tegra234-p3701-0000.dtsi b/arch/arm64/boot/dts/nvidia/tegra234-p3701-0000.dtsi index 2378da324273..812499918085 100644 --- a/arch/arm64/boot/dts/nvidia/tegra234-p3701-0000.dtsi +++ b/arch/arm64/boot/dts/nvidia/tegra234-p3701-0000.dtsi @@ -126,7 +126,7 @@ regulator-name = "VDD_3V3_PCIE"; regulator-min-microvolt = <3300000>; regulator-max-microvolt = <3300000>; - gpio = <&gpio TEGRA234_MAIN_GPIO(Z, 2) GPIO_ACTIVE_HIGH>; + gpio = <&gpio TEGRA234_MAIN_GPIO(H, 4) GPIO_ACTIVE_HIGH>; regulator-boot-on; enable-active-high; }; |