* [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit
@ 2026-03-20 23:43 Thierry Reding
2026-03-20 23:43 ` [PATCH 2/2] arm64: tegra: Add Jetson AGX Thor Developer Kit support Thierry Reding
2026-03-25 1:25 ` [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit Rob Herring (Arm)
0 siblings, 2 replies; 3+ messages in thread
From: Thierry Reding @ 2026-03-20 23:43 UTC (permalink / raw)
To: Thierry Reding
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jon Hunter,
devicetree, linux-tegra
From: Thierry Reding <treding@nvidia.com>
The Jetson AGX Thor Developer Kit uses the same module (P3834) as the
P3971 reference platform but a slightly different carrier board (P4071).
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
Documentation/devicetree/bindings/arm/tegra.yaml | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/Documentation/devicetree/bindings/arm/tegra.yaml b/Documentation/devicetree/bindings/arm/tegra.yaml
index 50a31dba7bec..df257102bfa0 100644
--- a/Documentation/devicetree/bindings/arm/tegra.yaml
+++ b/Documentation/devicetree/bindings/arm/tegra.yaml
@@ -268,5 +268,10 @@ properties:
- const: nvidia,p3971-0089+p3834-0008
- const: nvidia,p3834-0008
- const: nvidia,tegra264
+ - description: Jetson AGX Thor Developer Kit
+ items:
+ - const: nvidia,p4071-0000+p3834-0008
+ - const: nvidia,p3834-0008
+ - const: nvidia,tegra264
additionalProperties: true
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] arm64: tegra: Add Jetson AGX Thor Developer Kit support
2026-03-20 23:43 [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit Thierry Reding
@ 2026-03-20 23:43 ` Thierry Reding
2026-03-25 1:25 ` [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit Rob Herring (Arm)
1 sibling, 0 replies; 3+ messages in thread
From: Thierry Reding @ 2026-03-20 23:43 UTC (permalink / raw)
To: Thierry Reding
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jon Hunter,
devicetree, linux-tegra
From: Thierry Reding <treding@nvidia.com>
Add basic support for the Jetson AGX Thor Developer Kit. It's quite
similar to the existing reference platform but has a slightly different
carrier board with different mass storage options and I/O.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
arch/arm64/boot/dts/nvidia/Makefile | 2 ++
.../dts/nvidia/tegra264-p4071-0000+p3834-0008.dts | 11 +++++++++++
.../boot/dts/nvidia/tegra264-p4071-0000+p3834.dtsi | 12 ++++++++++++
3 files changed, 25 insertions(+)
create mode 100644 arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834-0008.dts
create mode 100644 arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834.dtsi
diff --git a/arch/arm64/boot/dts/nvidia/Makefile b/arch/arm64/boot/dts/nvidia/Makefile
index b139cbd14442..72c0cb5efa47 100644
--- a/arch/arm64/boot/dts/nvidia/Makefile
+++ b/arch/arm64/boot/dts/nvidia/Makefile
@@ -14,6 +14,7 @@ DTC_FLAGS_tegra234-p3740-0002+p3701-0008 := -@
DTC_FLAGS_tegra234-p3768-0000+p3767-0000 := -@
DTC_FLAGS_tegra234-p3768-0000+p3767-0005 := -@
DTC_FLAGS_tegra264-p3971-0089+p3834-0008 := -@
+DTC_FLAGS_tegra264-p4071-0000+p3834-0008 := -@
dtb-$(CONFIG_ARCH_TEGRA_132_SOC) += tegra132-norrin.dtb
dtb-$(CONFIG_ARCH_TEGRA_210_SOC) += tegra210-p2371-0000.dtb
@@ -35,3 +36,4 @@ dtb-$(CONFIG_ARCH_TEGRA_234_SOC) += tegra234-p3740-0002+p3701-0008.dtb
dtb-$(CONFIG_ARCH_TEGRA_234_SOC) += tegra234-p3768-0000+p3767-0000.dtb
dtb-$(CONFIG_ARCH_TEGRA_234_SOC) += tegra234-p3768-0000+p3767-0005.dtb
dtb-$(CONFIG_ARCH_TEGRA_264_SOC) += tegra264-p3971-0089+p3834-0008.dtb
+dtb-$(CONFIG_ARCH_TEGRA_264_SOC) += tegra264-p4071-0000+p3834-0008.dtb
diff --git a/arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834-0008.dts b/arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834-0008.dts
new file mode 100644
index 000000000000..df6555b6d0e0
--- /dev/null
+++ b/arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834-0008.dts
@@ -0,0 +1,11 @@
+// SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+/dts-v1/;
+
+// module files must be included first
+#include "tegra264-p3834-0008.dtsi"
+#include "tegra264-p4071-0000+p3834.dtsi"
+
+/ {
+ model = "NVIDIA Jetson AGX Thor Developer Kit";
+ compatible = "nvidia,p4071-0000+p3834-0008", "nvidia,p3834-0008", "nvidia,tegra264";
+};
diff --git a/arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834.dtsi b/arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834.dtsi
new file mode 100644
index 000000000000..45f8df9bbfd6
--- /dev/null
+++ b/arch/arm64/boot/dts/nvidia/tegra264-p4071-0000+p3834.dtsi
@@ -0,0 +1,12 @@
+// SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
+
+/ {
+ aliases {
+ serial0 = &{/bus@0/serial@c4e0000};
+ serial1 = &{/bus@0/serial@c5a0000};
+ };
+
+ chosen {
+ stdout-path = "serial0:115200n8";
+ };
+};
--
2.52.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit
2026-03-20 23:43 [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit Thierry Reding
2026-03-20 23:43 ` [PATCH 2/2] arm64: tegra: Add Jetson AGX Thor Developer Kit support Thierry Reding
@ 2026-03-25 1:25 ` Rob Herring (Arm)
1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring (Arm) @ 2026-03-25 1:25 UTC (permalink / raw)
To: Thierry Reding
Cc: Krzysztof Kozlowski, devicetree, Jon Hunter, Conor Dooley,
linux-tegra
On Sat, 21 Mar 2026 00:43:28 +0100, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> The Jetson AGX Thor Developer Kit uses the same module (P3834) as the
> P3971 reference platform but a slightly different carrier board (P4071).
>
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
> Documentation/devicetree/bindings/arm/tegra.yaml | 5 +++++
> 1 file changed, 5 insertions(+)
>
Acked-by: Rob Herring (Arm) <robh@kernel.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-25 1:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-20 23:43 [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit Thierry Reding
2026-03-20 23:43 ` [PATCH 2/2] arm64: tegra: Add Jetson AGX Thor Developer Kit support Thierry Reding
2026-03-25 1:25 ` [PATCH 1/2] dt-bindings: arm: tegra: Document Jetson AGX Thor DevKit Rob Herring (Arm)
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.