1b2441318SGreg Kroah-Hartman// SPDX-License-Identifier: GPL-2.0
234b4f6d0SThierry Reding#include <dt-bindings/clock/tegra124-car.h>
334b4f6d0SThierry Reding#include <dt-bindings/gpio/tegra-gpio.h>
434b4f6d0SThierry Reding#include <dt-bindings/memory/tegra124-mc.h>
534b4f6d0SThierry Reding#include <dt-bindings/pinctrl/pinctrl-tegra.h>
634b4f6d0SThierry Reding#include <dt-bindings/pinctrl/pinctrl-tegra-xusb.h>
734b4f6d0SThierry Reding#include <dt-bindings/interrupt-controller/arm-gic.h>
80fa2bfcdSWei Ni#include <dt-bindings/thermal/tegra124-soctherm.h>
9359ae651SSowjanya Komatineni#include <dt-bindings/soc/tegra-pmc.h>
1034b4f6d0SThierry Reding
1134b4f6d0SThierry Reding/ {
1234b4f6d0SThierry Reding	compatible = "nvidia,tegra132", "nvidia,tegra124";
1334b4f6d0SThierry Reding	interrupt-parent = <&lic>;
1434b4f6d0SThierry Reding	#address-cells = <2>;
1534b4f6d0SThierry Reding	#size-cells = <2>;
1634b4f6d0SThierry Reding
17475d99fcSRob Herring	pcie@1003000 {
1834b4f6d0SThierry Reding		compatible = "nvidia,tegra124-pcie";
1934b4f6d0SThierry Reding		device_type = "pci";
20644c569dSThierry Reding		reg = <0x0 0x01003000 0x0 0x00000800>, /* PADS registers */
21644c569dSThierry Reding		      <0x0 0x01003800 0x0 0x00000800>, /* AFI registers */
22644c569dSThierry Reding		      <0x0 0x02000000 0x0 0x10000000>; /* configuration space */
2334b4f6d0SThierry Reding		reg-names = "pads", "afi", "cs";
2434b4f6d0SThierry Reding		interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>, /* controller interrupt */
2534b4f6d0SThierry Reding			     <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>; /* MSI interrupt */
2634b4f6d0SThierry Reding		interrupt-names = "intr", "msi";
2734b4f6d0SThierry Reding
2834b4f6d0SThierry Reding		#interrupt-cells = <1>;
2934b4f6d0SThierry Reding		interrupt-map-mask = <0 0 0 0>;
3034b4f6d0SThierry Reding		interrupt-map = <0 0 0 0 &gic GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
3134b4f6d0SThierry Reding
3234b4f6d0SThierry Reding		bus-range = <0x00 0xff>;
3334b4f6d0SThierry Reding		#address-cells = <3>;
3434b4f6d0SThierry Reding		#size-cells = <2>;
3534b4f6d0SThierry Reding
36644c569dSThierry Reding		ranges = <0x02000000 0 0x01000000 0x0 0x01000000 0 0x00001000>, /* port 0 configuration space */
37644c569dSThierry Reding			 <0x02000000 0 0x01001000 0x0 0x01001000 0 0x00001000>, /* port 1 configuration space */
38644c569dSThierry Reding			 <0x01000000 0 0x0        0x0 0x12000000 0 0x00010000>, /* downstream I/O (64 KiB) */
39644c569dSThierry Reding			 <0x02000000 0 0x13000000 0x0 0x13000000 0 0x0d000000>, /* non-prefetchable memory (208 MiB) */
40644c569dSThierry Reding			 <0x42000000 0 0x20000000 0x0 0x20000000 0 0x20000000>; /* prefetchable memory (512 MiB) */
4134b4f6d0SThierry Reding
4234b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_PCIE>,
4334b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_AFI>,
4434b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_E>,
4534b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_CML0>;
4634b4f6d0SThierry Reding		clock-names = "pex", "afi", "pll_e", "cml";
4734b4f6d0SThierry Reding		resets = <&tegra_car 70>,
4834b4f6d0SThierry Reding			 <&tegra_car 72>,
4934b4f6d0SThierry Reding			 <&tegra_car 74>;
5034b4f6d0SThierry Reding		reset-names = "pex", "afi", "pcie_x";
5134b4f6d0SThierry Reding		status = "disabled";
5234b4f6d0SThierry Reding
5334b4f6d0SThierry Reding		pci@1,0 {
5434b4f6d0SThierry Reding			device_type = "pci";
5534b4f6d0SThierry Reding			assigned-addresses = <0x82000800 0 0x01000000 0 0x1000>;
5634b4f6d0SThierry Reding			reg = <0x000800 0 0 0 0>;
57475d99fcSRob Herring			bus-range = <0x00 0xff>;
5834b4f6d0SThierry Reding			status = "disabled";
5934b4f6d0SThierry Reding
6034b4f6d0SThierry Reding			#address-cells = <3>;
6134b4f6d0SThierry Reding			#size-cells = <2>;
6234b4f6d0SThierry Reding			ranges;
6334b4f6d0SThierry Reding
6434b4f6d0SThierry Reding			nvidia,num-lanes = <2>;
6534b4f6d0SThierry Reding		};
6634b4f6d0SThierry Reding
6734b4f6d0SThierry Reding		pci@2,0 {
6834b4f6d0SThierry Reding			device_type = "pci";
6934b4f6d0SThierry Reding			assigned-addresses = <0x82001000 0 0x01001000 0 0x1000>;
7034b4f6d0SThierry Reding			reg = <0x001000 0 0 0 0>;
71475d99fcSRob Herring			bus-range = <0x00 0xff>;
7234b4f6d0SThierry Reding			status = "disabled";
7334b4f6d0SThierry Reding
7434b4f6d0SThierry Reding			#address-cells = <3>;
7534b4f6d0SThierry Reding			#size-cells = <2>;
7634b4f6d0SThierry Reding			ranges;
7734b4f6d0SThierry Reding
7834b4f6d0SThierry Reding			nvidia,num-lanes = <1>;
7934b4f6d0SThierry Reding		};
8034b4f6d0SThierry Reding	};
8134b4f6d0SThierry Reding
82be70771dSThierry Reding	host1x@50000000 {
8301a9d523SThierry Reding		compatible = "nvidia,tegra132-host1x",
84ef126bc4SThierry Reding			     "nvidia,tegra124-host1x";
8534b4f6d0SThierry Reding		reg = <0x0 0x50000000 0x0 0x00034000>;
8634b4f6d0SThierry Reding		interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>, /* syncpt */
8734b4f6d0SThierry Reding			     <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>; /* general */
88052d3f65SThierry Reding		interrupt-names = "syncpt", "host1x";
8934b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_HOST1X>;
9034b4f6d0SThierry Reding		clock-names = "host1x";
9134b4f6d0SThierry Reding		resets = <&tegra_car 28>;
9234b4f6d0SThierry Reding		reset-names = "host1x";
9334b4f6d0SThierry Reding
9434b4f6d0SThierry Reding		#address-cells = <2>;
9534b4f6d0SThierry Reding		#size-cells = <2>;
9634b4f6d0SThierry Reding
9734b4f6d0SThierry Reding		ranges = <0 0x54000000 0 0x54000000 0 0x01000000>;
9834b4f6d0SThierry Reding
99be70771dSThierry Reding		dc@54200000 {
10034b4f6d0SThierry Reding			compatible = "nvidia,tegra124-dc";
10134b4f6d0SThierry Reding			reg = <0x0 0x54200000 0x0 0x00040000>;
10234b4f6d0SThierry Reding			interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
103352092b0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_DISP1>;
104352092b0SThierry Reding			clock-names = "dc";
10534b4f6d0SThierry Reding			resets = <&tegra_car 27>;
10634b4f6d0SThierry Reding			reset-names = "dc";
10734b4f6d0SThierry Reding
10834b4f6d0SThierry Reding			iommus = <&mc TEGRA_SWGROUP_DC>;
10934b4f6d0SThierry Reding
11034b4f6d0SThierry Reding			nvidia,head = <0>;
11134b4f6d0SThierry Reding		};
11234b4f6d0SThierry Reding
113be70771dSThierry Reding		dc@54240000 {
11434b4f6d0SThierry Reding			compatible = "nvidia,tegra124-dc";
11534b4f6d0SThierry Reding			reg = <0x0 0x54240000 0x0 0x00040000>;
11634b4f6d0SThierry Reding			interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
117352092b0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_DISP2>;
118352092b0SThierry Reding			clock-names = "dc";
11934b4f6d0SThierry Reding			resets = <&tegra_car 26>;
12034b4f6d0SThierry Reding			reset-names = "dc";
12134b4f6d0SThierry Reding
12234b4f6d0SThierry Reding			iommus = <&mc TEGRA_SWGROUP_DCB>;
12334b4f6d0SThierry Reding
12434b4f6d0SThierry Reding			nvidia,head = <1>;
12534b4f6d0SThierry Reding		};
12634b4f6d0SThierry Reding
127be70771dSThierry Reding		hdmi@54280000 {
12834b4f6d0SThierry Reding			compatible = "nvidia,tegra124-hdmi";
12934b4f6d0SThierry Reding			reg = <0x0 0x54280000 0x0 0x00040000>;
13034b4f6d0SThierry Reding			interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
13134b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_HDMI>,
13234b4f6d0SThierry Reding				 <&tegra_car TEGRA124_CLK_PLL_D2_OUT0>;
13334b4f6d0SThierry Reding			clock-names = "hdmi", "parent";
13434b4f6d0SThierry Reding			resets = <&tegra_car 51>;
13534b4f6d0SThierry Reding			reset-names = "hdmi";
13634b4f6d0SThierry Reding			status = "disabled";
13734b4f6d0SThierry Reding		};
13834b4f6d0SThierry Reding
139be70771dSThierry Reding		sor@54540000 {
14034b4f6d0SThierry Reding			compatible = "nvidia,tegra124-sor";
14134b4f6d0SThierry Reding			reg = <0x0 0x54540000 0x0 0x00040000>;
14234b4f6d0SThierry Reding			interrupts = <GIC_SPI 76 IRQ_TYPE_LEVEL_HIGH>;
14334b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_SOR0>,
14434b4f6d0SThierry Reding				 <&tegra_car TEGRA124_CLK_PLL_D_OUT0>,
14534b4f6d0SThierry Reding				 <&tegra_car TEGRA124_CLK_PLL_DP>,
14634b4f6d0SThierry Reding				 <&tegra_car TEGRA124_CLK_CLK_M>;
14734b4f6d0SThierry Reding			clock-names = "sor", "parent", "dp", "safe";
14834b4f6d0SThierry Reding			resets = <&tegra_car 182>;
14934b4f6d0SThierry Reding			reset-names = "sor";
15034b4f6d0SThierry Reding			status = "disabled";
15134b4f6d0SThierry Reding		};
15234b4f6d0SThierry Reding
153be70771dSThierry Reding		dpaux: dpaux@545c0000 {
15434b4f6d0SThierry Reding			compatible = "nvidia,tegra124-dpaux";
15534b4f6d0SThierry Reding			reg = <0x0 0x545c0000 0x0 0x00040000>;
15634b4f6d0SThierry Reding			interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>;
15734b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_DPAUX>,
15834b4f6d0SThierry Reding				 <&tegra_car TEGRA124_CLK_PLL_DP>;
15934b4f6d0SThierry Reding			clock-names = "dpaux", "parent";
16034b4f6d0SThierry Reding			resets = <&tegra_car 181>;
16134b4f6d0SThierry Reding			reset-names = "dpaux";
16234b4f6d0SThierry Reding			status = "disabled";
16334b4f6d0SThierry Reding		};
16434b4f6d0SThierry Reding	};
16534b4f6d0SThierry Reding
166be70771dSThierry Reding	gic: interrupt-controller@50041000 {
16734b4f6d0SThierry Reding		compatible = "arm,cortex-a15-gic";
16834b4f6d0SThierry Reding		#interrupt-cells = <3>;
16934b4f6d0SThierry Reding		interrupt-controller;
17034b4f6d0SThierry Reding		reg = <0x0 0x50041000 0x0 0x1000>,
17134b4f6d0SThierry Reding		      <0x0 0x50042000 0x0 0x2000>,
17234b4f6d0SThierry Reding		      <0x0 0x50044000 0x0 0x2000>,
17334b4f6d0SThierry Reding		      <0x0 0x50046000 0x0 0x2000>;
17434b4f6d0SThierry Reding		interrupts = <GIC_PPI 9
17534b4f6d0SThierry Reding			(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
17634b4f6d0SThierry Reding		interrupt-parent = <&gic>;
17734b4f6d0SThierry Reding	};
17834b4f6d0SThierry Reding
179be70771dSThierry Reding	gpu@57000000 {
18034b4f6d0SThierry Reding		compatible = "nvidia,gk20a";
18134b4f6d0SThierry Reding		reg = <0x0 0x57000000 0x0 0x01000000>,
18234b4f6d0SThierry Reding		      <0x0 0x58000000 0x0 0x01000000>;
18334b4f6d0SThierry Reding		interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
18434b4f6d0SThierry Reding			     <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
18534b4f6d0SThierry Reding		interrupt-names = "stall", "nonstall";
18634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_GPU>,
18734b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_P_OUT5>;
18834b4f6d0SThierry Reding		clock-names = "gpu", "pwr";
18934b4f6d0SThierry Reding		resets = <&tegra_car 184>;
19034b4f6d0SThierry Reding		reset-names = "gpu";
19134b4f6d0SThierry Reding		status = "disabled";
19234b4f6d0SThierry Reding	};
19334b4f6d0SThierry Reding
19434b4f6d0SThierry Reding	lic: interrupt-controller@60004000 {
19534b4f6d0SThierry Reding		compatible = "nvidia,tegra124-ictlr", "nvidia,tegra30-ictlr";
19634b4f6d0SThierry Reding		reg = <0x0 0x60004000 0x0 0x100>,
19734b4f6d0SThierry Reding		      <0x0 0x60004100 0x0 0x100>,
19834b4f6d0SThierry Reding		      <0x0 0x60004200 0x0 0x100>,
19934b4f6d0SThierry Reding		      <0x0 0x60004300 0x0 0x100>,
20034b4f6d0SThierry Reding		      <0x0 0x60004400 0x0 0x100>;
20134b4f6d0SThierry Reding		interrupt-controller;
20234b4f6d0SThierry Reding		#interrupt-cells = <3>;
20334b4f6d0SThierry Reding		interrupt-parent = <&gic>;
20434b4f6d0SThierry Reding	};
20534b4f6d0SThierry Reding
206be70771dSThierry Reding	timer@60005000 {
20734b4f6d0SThierry Reding		compatible = "nvidia,tegra124-timer", "nvidia,tegra20-timer";
20834b4f6d0SThierry Reding		reg = <0x0 0x60005000 0x0 0x400>;
20934b4f6d0SThierry Reding		interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>,
21034b4f6d0SThierry Reding			     <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>,
21134b4f6d0SThierry Reding			     <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
21234b4f6d0SThierry Reding			     <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>,
21334b4f6d0SThierry Reding			     <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>,
21434b4f6d0SThierry Reding			     <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>;
21534b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_TIMER>;
21634b4f6d0SThierry Reding		clock-names = "timer";
21734b4f6d0SThierry Reding	};
21834b4f6d0SThierry Reding
219be70771dSThierry Reding	tegra_car: clock@60006000 {
22034b4f6d0SThierry Reding		compatible = "nvidia,tegra132-car";
22134b4f6d0SThierry Reding		reg = <0x0 0x60006000 0x0 0x1000>;
22234b4f6d0SThierry Reding		#clock-cells = <1>;
22334b4f6d0SThierry Reding		#reset-cells = <1>;
22434b4f6d0SThierry Reding		nvidia,external-memory-controller = <&emc>;
22534b4f6d0SThierry Reding	};
22634b4f6d0SThierry Reding
227be70771dSThierry Reding	flow-controller@60007000 {
22818236a14SJon Hunter		compatible = "nvidia,tegra132-flowctrl", "nvidia,tegra124-flowctrl";
22934b4f6d0SThierry Reding		reg = <0x0 0x60007000 0x0 0x1000>;
23034b4f6d0SThierry Reding	};
23134b4f6d0SThierry Reding
232be70771dSThierry Reding	actmon@6000c800 {
23334b4f6d0SThierry Reding		compatible = "nvidia,tegra124-actmon";
23434b4f6d0SThierry Reding		reg = <0x0 0x6000c800 0x0 0x400>;
23534b4f6d0SThierry Reding		interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
23634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_ACTMON>,
23734b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_EMC>;
23834b4f6d0SThierry Reding		clock-names = "actmon", "emc";
23934b4f6d0SThierry Reding		resets = <&tegra_car 119>;
24034b4f6d0SThierry Reding		reset-names = "actmon";
24134b4f6d0SThierry Reding	};
24234b4f6d0SThierry Reding
243be70771dSThierry Reding	gpio: gpio@6000d000 {
24434b4f6d0SThierry Reding		compatible = "nvidia,tegra124-gpio", "nvidia,tegra30-gpio";
24534b4f6d0SThierry Reding		reg = <0x0 0x6000d000 0x0 0x1000>;
24634b4f6d0SThierry Reding		interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>,
24734b4f6d0SThierry Reding			     <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>,
24834b4f6d0SThierry Reding			     <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>,
24934b4f6d0SThierry Reding			     <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>,
25034b4f6d0SThierry Reding			     <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>,
25134b4f6d0SThierry Reding			     <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>,
25234b4f6d0SThierry Reding			     <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>,
25334b4f6d0SThierry Reding			     <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
25434b4f6d0SThierry Reding		#gpio-cells = <2>;
25534b4f6d0SThierry Reding		gpio-controller;
25634b4f6d0SThierry Reding		#interrupt-cells = <2>;
25734b4f6d0SThierry Reding		interrupt-controller;
25834b4f6d0SThierry Reding	};
25934b4f6d0SThierry Reding
260be70771dSThierry Reding	apbdma: dma@60020000 {
26134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-apbdma", "nvidia,tegra148-apbdma";
26234b4f6d0SThierry Reding		reg = <0x0 0x60020000 0x0 0x1400>;
26334b4f6d0SThierry Reding		interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
26434b4f6d0SThierry Reding			     <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>,
26534b4f6d0SThierry Reding			     <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>,
26634b4f6d0SThierry Reding			     <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>,
26734b4f6d0SThierry Reding			     <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>,
26834b4f6d0SThierry Reding			     <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>,
26934b4f6d0SThierry Reding			     <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>,
27034b4f6d0SThierry Reding			     <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH>,
27134b4f6d0SThierry Reding			     <GIC_SPI 112 IRQ_TYPE_LEVEL_HIGH>,
27234b4f6d0SThierry Reding			     <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>,
27334b4f6d0SThierry Reding			     <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>,
27434b4f6d0SThierry Reding			     <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>,
27534b4f6d0SThierry Reding			     <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>,
27634b4f6d0SThierry Reding			     <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>,
27734b4f6d0SThierry Reding			     <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>,
27834b4f6d0SThierry Reding			     <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>,
27934b4f6d0SThierry Reding			     <GIC_SPI 128 IRQ_TYPE_LEVEL_HIGH>,
28034b4f6d0SThierry Reding			     <GIC_SPI 129 IRQ_TYPE_LEVEL_HIGH>,
28134b4f6d0SThierry Reding			     <GIC_SPI 130 IRQ_TYPE_LEVEL_HIGH>,
28234b4f6d0SThierry Reding			     <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>,
28334b4f6d0SThierry Reding			     <GIC_SPI 132 IRQ_TYPE_LEVEL_HIGH>,
28434b4f6d0SThierry Reding			     <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>,
28534b4f6d0SThierry Reding			     <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>,
28634b4f6d0SThierry Reding			     <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
28734b4f6d0SThierry Reding			     <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>,
28834b4f6d0SThierry Reding			     <GIC_SPI 137 IRQ_TYPE_LEVEL_HIGH>,
28934b4f6d0SThierry Reding			     <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>,
29034b4f6d0SThierry Reding			     <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>,
29134b4f6d0SThierry Reding			     <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>,
29234b4f6d0SThierry Reding			     <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>,
29334b4f6d0SThierry Reding			     <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>,
29434b4f6d0SThierry Reding			     <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
29534b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_APBDMA>;
29634b4f6d0SThierry Reding		clock-names = "dma";
29734b4f6d0SThierry Reding		resets = <&tegra_car 34>;
29834b4f6d0SThierry Reding		reset-names = "dma";
29934b4f6d0SThierry Reding		#dma-cells = <1>;
30034b4f6d0SThierry Reding	};
30134b4f6d0SThierry Reding
302be70771dSThierry Reding	apbmisc@70000800 {
30334b4f6d0SThierry Reding		compatible = "nvidia,tegra124-apbmisc", "nvidia,tegra20-apbmisc";
30434b4f6d0SThierry Reding		reg = <0x0 0x70000800 0x0 0x64>,   /* Chip revision */
30534b4f6d0SThierry Reding		      <0x0 0x7000e864 0x0 0x04>;   /* Strapping options */
30634b4f6d0SThierry Reding	};
30734b4f6d0SThierry Reding
308be70771dSThierry Reding	pinmux: pinmux@70000868 {
30934b4f6d0SThierry Reding		compatible = "nvidia,tegra124-pinmux";
31034b4f6d0SThierry Reding		reg = <0x0 0x70000868 0x0 0x164>, /* Pad control registers */
31134b4f6d0SThierry Reding		      <0x0 0x70003000 0x0 0x434>, /* Mux registers */
31234b4f6d0SThierry Reding		      <0x0 0x70000820 0x0 0x008>; /* MIPI pad control */
31334b4f6d0SThierry Reding	};
31434b4f6d0SThierry Reding
31534b4f6d0SThierry Reding	/*
31634b4f6d0SThierry Reding	 * There are two serial driver i.e. 8250 based simple serial
31734b4f6d0SThierry Reding	 * driver and APB DMA based serial driver for higher baudrate
318ef769e32SAdam Buchbinder	 * and performance. To enable the 8250 based driver, the compatible
31934b4f6d0SThierry Reding	 * is "nvidia,tegra124-uart", "nvidia,tegra20-uart" and to enable
32068cd8b2eSThierry Reding	 * the APB DMA based serial driver, the compatible is
32134b4f6d0SThierry Reding	 * "nvidia,tegra124-hsuart", "nvidia,tegra30-hsuart".
32234b4f6d0SThierry Reding	 */
323be70771dSThierry Reding	uarta: serial@70006000 {
32434b4f6d0SThierry Reding		compatible = "nvidia,tegra124-uart", "nvidia,tegra20-uart";
32534b4f6d0SThierry Reding		reg = <0x0 0x70006000 0x0 0x40>;
32634b4f6d0SThierry Reding		reg-shift = <2>;
32734b4f6d0SThierry Reding		interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
32834b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_UARTA>;
32934b4f6d0SThierry Reding		clock-names = "serial";
33034b4f6d0SThierry Reding		resets = <&tegra_car 6>;
33134b4f6d0SThierry Reding		reset-names = "serial";
33234b4f6d0SThierry Reding		dmas = <&apbdma 8>, <&apbdma 8>;
33334b4f6d0SThierry Reding		dma-names = "rx", "tx";
33434b4f6d0SThierry Reding		status = "disabled";
33534b4f6d0SThierry Reding	};
33634b4f6d0SThierry Reding
337be70771dSThierry Reding	uartb: serial@70006040 {
33834b4f6d0SThierry Reding		compatible = "nvidia,tegra124-uart", "nvidia,tegra20-uart";
33934b4f6d0SThierry Reding		reg = <0x0 0x70006040 0x0 0x40>;
34034b4f6d0SThierry Reding		reg-shift = <2>;
34134b4f6d0SThierry Reding		interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
34234b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_UARTB>;
34334b4f6d0SThierry Reding		clock-names = "serial";
34434b4f6d0SThierry Reding		resets = <&tegra_car 7>;
34534b4f6d0SThierry Reding		reset-names = "serial";
34634b4f6d0SThierry Reding		dmas = <&apbdma 9>, <&apbdma 9>;
34734b4f6d0SThierry Reding		dma-names = "rx", "tx";
34834b4f6d0SThierry Reding		status = "disabled";
34934b4f6d0SThierry Reding	};
35034b4f6d0SThierry Reding
351be70771dSThierry Reding	uartc: serial@70006200 {
35234b4f6d0SThierry Reding		compatible = "nvidia,tegra124-uart", "nvidia,tegra20-uart";
35334b4f6d0SThierry Reding		reg = <0x0 0x70006200 0x0 0x40>;
35434b4f6d0SThierry Reding		reg-shift = <2>;
35534b4f6d0SThierry Reding		interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
35634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_UARTC>;
35734b4f6d0SThierry Reding		clock-names = "serial";
35834b4f6d0SThierry Reding		resets = <&tegra_car 55>;
35934b4f6d0SThierry Reding		reset-names = "serial";
36034b4f6d0SThierry Reding		dmas = <&apbdma 10>, <&apbdma 10>;
36134b4f6d0SThierry Reding		dma-names = "rx", "tx";
36234b4f6d0SThierry Reding		status = "disabled";
36334b4f6d0SThierry Reding	};
36434b4f6d0SThierry Reding
365be70771dSThierry Reding	uartd: serial@70006300 {
36634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-uart", "nvidia,tegra20-uart";
36734b4f6d0SThierry Reding		reg = <0x0 0x70006300 0x0 0x40>;
36834b4f6d0SThierry Reding		reg-shift = <2>;
36934b4f6d0SThierry Reding		interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
37034b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_UARTD>;
37134b4f6d0SThierry Reding		clock-names = "serial";
37234b4f6d0SThierry Reding		resets = <&tegra_car 65>;
37334b4f6d0SThierry Reding		reset-names = "serial";
37434b4f6d0SThierry Reding		dmas = <&apbdma 19>, <&apbdma 19>;
37534b4f6d0SThierry Reding		dma-names = "rx", "tx";
37634b4f6d0SThierry Reding		status = "disabled";
37734b4f6d0SThierry Reding	};
37834b4f6d0SThierry Reding
379be70771dSThierry Reding	pwm: pwm@7000a000 {
38034b4f6d0SThierry Reding		compatible = "nvidia,tegra124-pwm", "nvidia,tegra20-pwm";
38134b4f6d0SThierry Reding		reg = <0x0 0x7000a000 0x0 0x100>;
38234b4f6d0SThierry Reding		#pwm-cells = <2>;
38334b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_PWM>;
38434b4f6d0SThierry Reding		clock-names = "pwm";
38534b4f6d0SThierry Reding		resets = <&tegra_car 17>;
38634b4f6d0SThierry Reding		reset-names = "pwm";
38734b4f6d0SThierry Reding		status = "disabled";
38834b4f6d0SThierry Reding	};
38934b4f6d0SThierry Reding
390be70771dSThierry Reding	i2c@7000c000 {
39134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-i2c", "nvidia,tegra114-i2c";
39234b4f6d0SThierry Reding		reg = <0x0 0x7000c000 0x0 0x100>;
39334b4f6d0SThierry Reding		interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
39434b4f6d0SThierry Reding		#address-cells = <1>;
39534b4f6d0SThierry Reding		#size-cells = <0>;
39634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_I2C1>;
39734b4f6d0SThierry Reding		clock-names = "div-clk";
39834b4f6d0SThierry Reding		resets = <&tegra_car 12>;
39934b4f6d0SThierry Reding		reset-names = "i2c";
40034b4f6d0SThierry Reding		dmas = <&apbdma 21>, <&apbdma 21>;
40134b4f6d0SThierry Reding		dma-names = "rx", "tx";
40234b4f6d0SThierry Reding		status = "disabled";
40334b4f6d0SThierry Reding	};
40434b4f6d0SThierry Reding
405be70771dSThierry Reding	i2c@7000c400 {
40634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-i2c", "nvidia,tegra114-i2c";
40734b4f6d0SThierry Reding		reg = <0x0 0x7000c400 0x0 0x100>;
40834b4f6d0SThierry Reding		interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
40934b4f6d0SThierry Reding		#address-cells = <1>;
41034b4f6d0SThierry Reding		#size-cells = <0>;
41134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_I2C2>;
41234b4f6d0SThierry Reding		clock-names = "div-clk";
41334b4f6d0SThierry Reding		resets = <&tegra_car 54>;
41434b4f6d0SThierry Reding		reset-names = "i2c";
41534b4f6d0SThierry Reding		dmas = <&apbdma 22>, <&apbdma 22>;
41634b4f6d0SThierry Reding		dma-names = "rx", "tx";
41734b4f6d0SThierry Reding		status = "disabled";
41834b4f6d0SThierry Reding	};
41934b4f6d0SThierry Reding
420be70771dSThierry Reding	i2c@7000c500 {
42134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-i2c", "nvidia,tegra114-i2c";
42234b4f6d0SThierry Reding		reg = <0x0 0x7000c500 0x0 0x100>;
42334b4f6d0SThierry Reding		interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
42434b4f6d0SThierry Reding		#address-cells = <1>;
42534b4f6d0SThierry Reding		#size-cells = <0>;
42634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_I2C3>;
42734b4f6d0SThierry Reding		clock-names = "div-clk";
42834b4f6d0SThierry Reding		resets = <&tegra_car 67>;
42934b4f6d0SThierry Reding		reset-names = "i2c";
43034b4f6d0SThierry Reding		dmas = <&apbdma 23>, <&apbdma 23>;
43134b4f6d0SThierry Reding		dma-names = "rx", "tx";
43234b4f6d0SThierry Reding		status = "disabled";
43334b4f6d0SThierry Reding	};
43434b4f6d0SThierry Reding
435be70771dSThierry Reding	i2c@7000c700 {
43634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-i2c", "nvidia,tegra114-i2c";
43734b4f6d0SThierry Reding		reg = <0x0 0x7000c700 0x0 0x100>;
43834b4f6d0SThierry Reding		interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
43934b4f6d0SThierry Reding		#address-cells = <1>;
44034b4f6d0SThierry Reding		#size-cells = <0>;
44134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_I2C4>;
44234b4f6d0SThierry Reding		clock-names = "div-clk";
44334b4f6d0SThierry Reding		resets = <&tegra_car 103>;
44434b4f6d0SThierry Reding		reset-names = "i2c";
44534b4f6d0SThierry Reding		dmas = <&apbdma 26>, <&apbdma 26>;
44634b4f6d0SThierry Reding		dma-names = "rx", "tx";
44734b4f6d0SThierry Reding		status = "disabled";
44834b4f6d0SThierry Reding	};
44934b4f6d0SThierry Reding
450be70771dSThierry Reding	i2c@7000d000 {
45134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-i2c", "nvidia,tegra114-i2c";
45234b4f6d0SThierry Reding		reg = <0x0 0x7000d000 0x0 0x100>;
45334b4f6d0SThierry Reding		interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
45434b4f6d0SThierry Reding		#address-cells = <1>;
45534b4f6d0SThierry Reding		#size-cells = <0>;
45634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_I2C5>;
45734b4f6d0SThierry Reding		clock-names = "div-clk";
45834b4f6d0SThierry Reding		resets = <&tegra_car 47>;
45934b4f6d0SThierry Reding		reset-names = "i2c";
46034b4f6d0SThierry Reding		dmas = <&apbdma 24>, <&apbdma 24>;
46134b4f6d0SThierry Reding		dma-names = "rx", "tx";
46234b4f6d0SThierry Reding		status = "disabled";
46334b4f6d0SThierry Reding	};
46434b4f6d0SThierry Reding
465be70771dSThierry Reding	i2c@7000d100 {
46634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-i2c", "nvidia,tegra114-i2c";
46734b4f6d0SThierry Reding		reg = <0x0 0x7000d100 0x0 0x100>;
46834b4f6d0SThierry Reding		interrupts = <GIC_SPI 63 IRQ_TYPE_LEVEL_HIGH>;
46934b4f6d0SThierry Reding		#address-cells = <1>;
47034b4f6d0SThierry Reding		#size-cells = <0>;
47134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_I2C6>;
47234b4f6d0SThierry Reding		clock-names = "div-clk";
47334b4f6d0SThierry Reding		resets = <&tegra_car 166>;
47434b4f6d0SThierry Reding		reset-names = "i2c";
47534b4f6d0SThierry Reding		dmas = <&apbdma 30>, <&apbdma 30>;
47634b4f6d0SThierry Reding		dma-names = "rx", "tx";
47734b4f6d0SThierry Reding		status = "disabled";
47834b4f6d0SThierry Reding	};
47934b4f6d0SThierry Reding
480be70771dSThierry Reding	spi@7000d400 {
48134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-spi", "nvidia,tegra114-spi";
48234b4f6d0SThierry Reding		reg = <0x0 0x7000d400 0x0 0x200>;
48334b4f6d0SThierry Reding		interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
48434b4f6d0SThierry Reding		#address-cells = <1>;
48534b4f6d0SThierry Reding		#size-cells = <0>;
48634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SBC1>;
48734b4f6d0SThierry Reding		clock-names = "spi";
48834b4f6d0SThierry Reding		resets = <&tegra_car 41>;
48934b4f6d0SThierry Reding		reset-names = "spi";
49034b4f6d0SThierry Reding		dmas = <&apbdma 15>, <&apbdma 15>;
49134b4f6d0SThierry Reding		dma-names = "rx", "tx";
49234b4f6d0SThierry Reding		status = "disabled";
49334b4f6d0SThierry Reding	};
49434b4f6d0SThierry Reding
495be70771dSThierry Reding	spi@7000d600 {
49634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-spi", "nvidia,tegra114-spi";
49734b4f6d0SThierry Reding		reg = <0x0 0x7000d600 0x0 0x200>;
49834b4f6d0SThierry Reding		interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>;
49934b4f6d0SThierry Reding		#address-cells = <1>;
50034b4f6d0SThierry Reding		#size-cells = <0>;
50134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SBC2>;
50234b4f6d0SThierry Reding		clock-names = "spi";
50334b4f6d0SThierry Reding		resets = <&tegra_car 44>;
50434b4f6d0SThierry Reding		reset-names = "spi";
50534b4f6d0SThierry Reding		dmas = <&apbdma 16>, <&apbdma 16>;
50634b4f6d0SThierry Reding		dma-names = "rx", "tx";
50734b4f6d0SThierry Reding		status = "disabled";
50834b4f6d0SThierry Reding	};
50934b4f6d0SThierry Reding
510be70771dSThierry Reding	spi@7000d800 {
51134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-spi", "nvidia,tegra114-spi";
51234b4f6d0SThierry Reding		reg = <0x0 0x7000d800 0x0 0x200>;
51334b4f6d0SThierry Reding		interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>;
51434b4f6d0SThierry Reding		#address-cells = <1>;
51534b4f6d0SThierry Reding		#size-cells = <0>;
51634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SBC3>;
51734b4f6d0SThierry Reding		clock-names = "spi";
51834b4f6d0SThierry Reding		resets = <&tegra_car 46>;
51934b4f6d0SThierry Reding		reset-names = "spi";
52034b4f6d0SThierry Reding		dmas = <&apbdma 17>, <&apbdma 17>;
52134b4f6d0SThierry Reding		dma-names = "rx", "tx";
52234b4f6d0SThierry Reding		status = "disabled";
52334b4f6d0SThierry Reding	};
52434b4f6d0SThierry Reding
525be70771dSThierry Reding	spi@7000da00 {
52634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-spi", "nvidia,tegra114-spi";
52734b4f6d0SThierry Reding		reg = <0x0 0x7000da00 0x0 0x200>;
52834b4f6d0SThierry Reding		interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
52934b4f6d0SThierry Reding		#address-cells = <1>;
53034b4f6d0SThierry Reding		#size-cells = <0>;
53134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SBC4>;
53234b4f6d0SThierry Reding		clock-names = "spi";
53334b4f6d0SThierry Reding		resets = <&tegra_car 68>;
53434b4f6d0SThierry Reding		reset-names = "spi";
53534b4f6d0SThierry Reding		dmas = <&apbdma 18>, <&apbdma 18>;
53634b4f6d0SThierry Reding		dma-names = "rx", "tx";
53734b4f6d0SThierry Reding		status = "disabled";
53834b4f6d0SThierry Reding	};
53934b4f6d0SThierry Reding
540be70771dSThierry Reding	spi@7000dc00 {
54134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-spi", "nvidia,tegra114-spi";
54234b4f6d0SThierry Reding		reg = <0x0 0x7000dc00 0x0 0x200>;
54334b4f6d0SThierry Reding		interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
54434b4f6d0SThierry Reding		#address-cells = <1>;
54534b4f6d0SThierry Reding		#size-cells = <0>;
54634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SBC5>;
54734b4f6d0SThierry Reding		clock-names = "spi";
54834b4f6d0SThierry Reding		resets = <&tegra_car 104>;
54934b4f6d0SThierry Reding		reset-names = "spi";
55034b4f6d0SThierry Reding		dmas = <&apbdma 27>, <&apbdma 27>;
55134b4f6d0SThierry Reding		dma-names = "rx", "tx";
55234b4f6d0SThierry Reding		status = "disabled";
55334b4f6d0SThierry Reding	};
55434b4f6d0SThierry Reding
555be70771dSThierry Reding	spi@7000de00 {
55634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-spi", "nvidia,tegra114-spi";
55734b4f6d0SThierry Reding		reg = <0x0 0x7000de00 0x0 0x200>;
55834b4f6d0SThierry Reding		interrupts = <GIC_SPI 79 IRQ_TYPE_LEVEL_HIGH>;
55934b4f6d0SThierry Reding		#address-cells = <1>;
56034b4f6d0SThierry Reding		#size-cells = <0>;
56134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SBC6>;
56234b4f6d0SThierry Reding		clock-names = "spi";
56334b4f6d0SThierry Reding		resets = <&tegra_car 105>;
56434b4f6d0SThierry Reding		reset-names = "spi";
56534b4f6d0SThierry Reding		dmas = <&apbdma 28>, <&apbdma 28>;
56634b4f6d0SThierry Reding		dma-names = "rx", "tx";
56734b4f6d0SThierry Reding		status = "disabled";
56834b4f6d0SThierry Reding	};
56934b4f6d0SThierry Reding
570be70771dSThierry Reding	rtc@7000e000 {
57134b4f6d0SThierry Reding		compatible = "nvidia,tegra124-rtc", "nvidia,tegra20-rtc";
57234b4f6d0SThierry Reding		reg = <0x0 0x7000e000 0x0 0x100>;
57334b4f6d0SThierry Reding		interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
57434b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_RTC>;
57534b4f6d0SThierry Reding		clock-names = "rtc";
57634b4f6d0SThierry Reding	};
57734b4f6d0SThierry Reding
578359ae651SSowjanya Komatineni	tegra_pmc: pmc@7000e400 {
57934b4f6d0SThierry Reding		compatible = "nvidia,tegra124-pmc";
58034b4f6d0SThierry Reding		reg = <0x0 0x7000e400 0x0 0x400>;
58134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_PCLK>, <&clk32k_in>;
58234b4f6d0SThierry Reding		clock-names = "pclk", "clk32k_in";
583359ae651SSowjanya Komatineni		#clock-cells = <1>;
58434b4f6d0SThierry Reding	};
58534b4f6d0SThierry Reding
586be70771dSThierry Reding	fuse@7000f800 {
58734b4f6d0SThierry Reding		compatible = "nvidia,tegra124-efuse";
58834b4f6d0SThierry Reding		reg = <0x0 0x7000f800 0x0 0x400>;
58934b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_FUSE>;
59034b4f6d0SThierry Reding		clock-names = "fuse";
59134b4f6d0SThierry Reding		resets = <&tegra_car 39>;
59234b4f6d0SThierry Reding		reset-names = "fuse";
59334b4f6d0SThierry Reding	};
59434b4f6d0SThierry Reding
595be70771dSThierry Reding	mc: memory-controller@70019000 {
59634b4f6d0SThierry Reding		compatible = "nvidia,tegra132-mc";
59734b4f6d0SThierry Reding		reg = <0x0 0x70019000 0x0 0x1000>;
59834b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_MC>;
59934b4f6d0SThierry Reding		clock-names = "mc";
60034b4f6d0SThierry Reding
60134b4f6d0SThierry Reding		interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
60234b4f6d0SThierry Reding
60334b4f6d0SThierry Reding		#iommu-cells = <1>;
60434b4f6d0SThierry Reding	};
60534b4f6d0SThierry Reding
60647cd385eSThierry Reding	emc: external-memory-controller@7001b000 {
60734b4f6d0SThierry Reding		compatible = "nvidia,tegra132-emc", "nvidia,tegra124-emc";
60834b4f6d0SThierry Reding		reg = <0x0 0x7001b000 0x0 0x1000>;
6090bab86abSThierry Reding		clocks = <&tegra_car TEGRA124_CLK_EMC>;
6100bab86abSThierry Reding		clock-names = "emc";
61134b4f6d0SThierry Reding
61234b4f6d0SThierry Reding		nvidia,memory-controller = <&mc>;
61334b4f6d0SThierry Reding	};
61434b4f6d0SThierry Reding
615be70771dSThierry Reding	sata@70020000 {
61634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-ahci";
61734b4f6d0SThierry Reding		reg = <0x0 0x70027000 0x0 0x2000>, /* AHCI */
61834b4f6d0SThierry Reding		      <0x0 0x70020000 0x0 0x7000>; /* SATA */
61934b4f6d0SThierry Reding		interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH>;
62034b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SATA>,
62134b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_SATA_OOB>,
62234b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_CML1>,
62334b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_E>;
62434b4f6d0SThierry Reding		clock-names = "sata", "sata-oob", "cml1", "pll_e";
62534b4f6d0SThierry Reding		resets = <&tegra_car 124>,
62634b4f6d0SThierry Reding			 <&tegra_car 123>,
62734b4f6d0SThierry Reding			 <&tegra_car 129>;
62834b4f6d0SThierry Reding		reset-names = "sata", "sata-oob", "sata-cold";
62934b4f6d0SThierry Reding		status = "disabled";
63034b4f6d0SThierry Reding	};
63134b4f6d0SThierry Reding
632be70771dSThierry Reding	hda@70030000 {
63334b4f6d0SThierry Reding		compatible = "nvidia,tegra132-hda", "nvidia,tegra124-hda",
63434b4f6d0SThierry Reding			     "nvidia,tegra30-hda";
63534b4f6d0SThierry Reding		reg = <0x0 0x70030000 0x0 0x10000>;
63634b4f6d0SThierry Reding		interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
63734b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_HDA>,
63834b4f6d0SThierry Reding		         <&tegra_car TEGRA124_CLK_HDA2HDMI>,
63934b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_HDA2CODEC_2X>;
64034b4f6d0SThierry Reding		clock-names = "hda", "hda2hdmi", "hda2codec_2x";
64134b4f6d0SThierry Reding		resets = <&tegra_car 125>, /* hda */
64234b4f6d0SThierry Reding			 <&tegra_car 128>, /* hda2hdmi */
64334b4f6d0SThierry Reding			 <&tegra_car 111>; /* hda2codec_2x */
64434b4f6d0SThierry Reding		reset-names = "hda", "hda2hdmi", "hda2codec_2x";
64534b4f6d0SThierry Reding		status = "disabled";
64634b4f6d0SThierry Reding	};
64734b4f6d0SThierry Reding
648574d9cffSThierry Reding	usb@70090000 {
649574d9cffSThierry Reding		compatible = "nvidia,tegra132-xusb", "nvidia,tegra124-xusb";
650574d9cffSThierry Reding		reg = <0x0 0x70090000 0x0 0x8000>,
651574d9cffSThierry Reding		      <0x0 0x70098000 0x0 0x1000>,
652574d9cffSThierry Reding		      <0x0 0x70099000 0x0 0x1000>;
653574d9cffSThierry Reding		reg-names = "hcd", "fpci", "ipfs";
654574d9cffSThierry Reding
655574d9cffSThierry Reding		interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>,
656574d9cffSThierry Reding			     <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
657574d9cffSThierry Reding
658574d9cffSThierry Reding		clocks = <&tegra_car TEGRA124_CLK_XUSB_HOST>,
659574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_HOST_SRC>,
660574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_FALCON_SRC>,
661574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_SS>,
662574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_SS_SRC>,
663574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_SS_DIV2>,
664574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_HS_SRC>,
665574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_XUSB_FS_SRC>,
666574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_U_480M>,
667574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_CLK_M>,
668574d9cffSThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_E>;
669574d9cffSThierry Reding		clock-names = "xusb_host", "xusb_host_src",
670574d9cffSThierry Reding			      "xusb_falcon_src", "xusb_ss",
671574d9cffSThierry Reding			      "xusb_ss_src", "xusb_ss_div2",
672574d9cffSThierry Reding			      "xusb_hs_src", "xusb_fs_src",
673574d9cffSThierry Reding			      "pll_u_480m", "clk_m", "pll_e";
674574d9cffSThierry Reding		resets = <&tegra_car 89>, <&tegra_car 156>,
675574d9cffSThierry Reding			 <&tegra_car 143>;
676574d9cffSThierry Reding		reset-names = "xusb_host", "xusb_ss", "xusb_src";
677574d9cffSThierry Reding
678574d9cffSThierry Reding		nvidia,xusb-padctl = <&padctl>;
679574d9cffSThierry Reding
680574d9cffSThierry Reding		status = "disabled";
681574d9cffSThierry Reding	};
682574d9cffSThierry Reding
683be70771dSThierry Reding	padctl: padctl@7009f000 {
68434b4f6d0SThierry Reding		compatible = "nvidia,tegra132-xusb-padctl",
68534b4f6d0SThierry Reding			     "nvidia,tegra124-xusb-padctl";
68634b4f6d0SThierry Reding		reg = <0x0 0x7009f000 0x0 0x1000>;
68734b4f6d0SThierry Reding		resets = <&tegra_car 142>;
68834b4f6d0SThierry Reding		reset-names = "padctl";
68934b4f6d0SThierry Reding
690574d9cffSThierry Reding		pads {
691574d9cffSThierry Reding			usb2 {
692574d9cffSThierry Reding				status = "disabled";
69334b4f6d0SThierry Reding
694574d9cffSThierry Reding				lanes {
695574d9cffSThierry Reding					usb2-0 {
696574d9cffSThierry Reding						status = "disabled";
697574d9cffSThierry Reding						#phy-cells = <0>;
698574d9cffSThierry Reding					};
699574d9cffSThierry Reding
700574d9cffSThierry Reding					usb2-1 {
701574d9cffSThierry Reding						status = "disabled";
702574d9cffSThierry Reding						#phy-cells = <0>;
703574d9cffSThierry Reding					};
704574d9cffSThierry Reding
705574d9cffSThierry Reding					usb2-2 {
706574d9cffSThierry Reding						status = "disabled";
707574d9cffSThierry Reding						#phy-cells = <0>;
708574d9cffSThierry Reding					};
709574d9cffSThierry Reding				};
710574d9cffSThierry Reding			};
711574d9cffSThierry Reding
712574d9cffSThierry Reding			ulpi {
713574d9cffSThierry Reding				status = "disabled";
714574d9cffSThierry Reding
715574d9cffSThierry Reding				lanes {
716574d9cffSThierry Reding					ulpi-0 {
717574d9cffSThierry Reding						status = "disabled";
718574d9cffSThierry Reding						#phy-cells = <0>;
719574d9cffSThierry Reding					};
720574d9cffSThierry Reding				};
721574d9cffSThierry Reding			};
722574d9cffSThierry Reding
723574d9cffSThierry Reding			hsic {
724574d9cffSThierry Reding				status = "disabled";
725574d9cffSThierry Reding
726574d9cffSThierry Reding				lanes {
727574d9cffSThierry Reding					hsic-0 {
728574d9cffSThierry Reding						status = "disabled";
729574d9cffSThierry Reding						#phy-cells = <0>;
730574d9cffSThierry Reding					};
731574d9cffSThierry Reding
732574d9cffSThierry Reding					hsic-1 {
733574d9cffSThierry Reding						status = "disabled";
734574d9cffSThierry Reding						#phy-cells = <0>;
735574d9cffSThierry Reding					};
736574d9cffSThierry Reding				};
737574d9cffSThierry Reding			};
738574d9cffSThierry Reding
739574d9cffSThierry Reding			pcie {
740574d9cffSThierry Reding				status = "disabled";
741574d9cffSThierry Reding
742574d9cffSThierry Reding				lanes {
74334b4f6d0SThierry Reding					pcie-0 {
74434b4f6d0SThierry Reding						status = "disabled";
745574d9cffSThierry Reding						#phy-cells = <0>;
746574d9cffSThierry Reding					};
747574d9cffSThierry Reding
748574d9cffSThierry Reding					pcie-1 {
749574d9cffSThierry Reding						status = "disabled";
750574d9cffSThierry Reding						#phy-cells = <0>;
751574d9cffSThierry Reding					};
752574d9cffSThierry Reding
753574d9cffSThierry Reding					pcie-2 {
754574d9cffSThierry Reding						status = "disabled";
755574d9cffSThierry Reding						#phy-cells = <0>;
756574d9cffSThierry Reding					};
757574d9cffSThierry Reding
758574d9cffSThierry Reding					pcie-3 {
759574d9cffSThierry Reding						status = "disabled";
760574d9cffSThierry Reding						#phy-cells = <0>;
761574d9cffSThierry Reding					};
762574d9cffSThierry Reding
763574d9cffSThierry Reding					pcie-4 {
764574d9cffSThierry Reding						status = "disabled";
765574d9cffSThierry Reding						#phy-cells = <0>;
766574d9cffSThierry Reding					};
767574d9cffSThierry Reding				};
768574d9cffSThierry Reding			};
769574d9cffSThierry Reding
770574d9cffSThierry Reding			sata {
771574d9cffSThierry Reding				status = "disabled";
772574d9cffSThierry Reding
773574d9cffSThierry Reding				lanes {
774574d9cffSThierry Reding					sata-0 {
775574d9cffSThierry Reding						status = "disabled";
776574d9cffSThierry Reding						#phy-cells = <0>;
777574d9cffSThierry Reding					};
778574d9cffSThierry Reding				};
779574d9cffSThierry Reding			};
780574d9cffSThierry Reding		};
781574d9cffSThierry Reding
782574d9cffSThierry Reding		ports {
783574d9cffSThierry Reding			usb2-0 {
784574d9cffSThierry Reding				status = "disabled";
78534b4f6d0SThierry Reding			};
78634b4f6d0SThierry Reding
787574d9cffSThierry Reding			usb2-1 {
788574d9cffSThierry Reding				status = "disabled";
789574d9cffSThierry Reding			};
790574d9cffSThierry Reding
791574d9cffSThierry Reding			usb2-2 {
792574d9cffSThierry Reding				status = "disabled";
793574d9cffSThierry Reding			};
794574d9cffSThierry Reding
795574d9cffSThierry Reding			hsic-0 {
796574d9cffSThierry Reding				status = "disabled";
797574d9cffSThierry Reding			};
798574d9cffSThierry Reding
799574d9cffSThierry Reding			hsic-1 {
80034b4f6d0SThierry Reding				status = "disabled";
80134b4f6d0SThierry Reding			};
80234b4f6d0SThierry Reding
80334b4f6d0SThierry Reding			usb3-0 {
80434b4f6d0SThierry Reding				status = "disabled";
80534b4f6d0SThierry Reding			};
80634b4f6d0SThierry Reding
80734b4f6d0SThierry Reding			usb3-1 {
80834b4f6d0SThierry Reding				status = "disabled";
80934b4f6d0SThierry Reding			};
81034b4f6d0SThierry Reding		};
81134b4f6d0SThierry Reding	};
81234b4f6d0SThierry Reding
81367bb17f6SThierry Reding	mmc@700b0000 {
81434b4f6d0SThierry Reding		compatible = "nvidia,tegra124-sdhci";
81534b4f6d0SThierry Reding		reg = <0x0 0x700b0000 0x0 0x200>;
81634b4f6d0SThierry Reding		interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
81734b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SDMMC1>;
81834b4f6d0SThierry Reding		clock-names = "sdhci";
81934b4f6d0SThierry Reding		resets = <&tegra_car 14>;
82034b4f6d0SThierry Reding		reset-names = "sdhci";
82134b4f6d0SThierry Reding		status = "disabled";
82234b4f6d0SThierry Reding	};
82334b4f6d0SThierry Reding
82467bb17f6SThierry Reding	mmc@700b0200 {
82534b4f6d0SThierry Reding		compatible = "nvidia,tegra124-sdhci";
82634b4f6d0SThierry Reding		reg = <0x0 0x700b0200 0x0 0x200>;
82734b4f6d0SThierry Reding		interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
82834b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SDMMC2>;
82934b4f6d0SThierry Reding		clock-names = "sdhci";
83034b4f6d0SThierry Reding		resets = <&tegra_car 9>;
83134b4f6d0SThierry Reding		reset-names = "sdhci";
83234b4f6d0SThierry Reding		status = "disabled";
83334b4f6d0SThierry Reding	};
83434b4f6d0SThierry Reding
83567bb17f6SThierry Reding	mmc@700b0400 {
83634b4f6d0SThierry Reding		compatible = "nvidia,tegra124-sdhci";
83734b4f6d0SThierry Reding		reg = <0x0 0x700b0400 0x0 0x200>;
83834b4f6d0SThierry Reding		interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
83934b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SDMMC3>;
84034b4f6d0SThierry Reding		clock-names = "sdhci";
84134b4f6d0SThierry Reding		resets = <&tegra_car 69>;
84234b4f6d0SThierry Reding		reset-names = "sdhci";
84334b4f6d0SThierry Reding		status = "disabled";
84434b4f6d0SThierry Reding	};
84534b4f6d0SThierry Reding
84667bb17f6SThierry Reding	mmc@700b0600 {
84734b4f6d0SThierry Reding		compatible = "nvidia,tegra124-sdhci";
84834b4f6d0SThierry Reding		reg = <0x0 0x700b0600 0x0 0x200>;
84934b4f6d0SThierry Reding		interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
85034b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_SDMMC4>;
85134b4f6d0SThierry Reding		clock-names = "sdhci";
85234b4f6d0SThierry Reding		resets = <&tegra_car 15>;
85334b4f6d0SThierry Reding		reset-names = "sdhci";
85434b4f6d0SThierry Reding		status = "disabled";
85534b4f6d0SThierry Reding	};
85634b4f6d0SThierry Reding
857be70771dSThierry Reding	soctherm: thermal-sensor@700e2000 {
8580fa2bfcdSWei Ni		compatible = "nvidia,tegra132-soctherm";
859644c569dSThierry Reding		reg = <0x0 0x700e2000 0x0 0x600>, /* 0: SOC_THERM reg_base */
860644c569dSThierry Reding		      <0x0 0x70040000 0x0 0x200>; /* 2: CCROC reg_base */
861f4357938SWei Ni		reg-names = "soctherm-reg", "ccroc-reg";
86234b4f6d0SThierry Reding		interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
86334b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_TSENSOR>,
86434b4f6d0SThierry Reding			<&tegra_car TEGRA124_CLK_SOC_THERM>;
86534b4f6d0SThierry Reding		clock-names = "tsensor", "soctherm";
86634b4f6d0SThierry Reding		resets = <&tegra_car 78>;
86734b4f6d0SThierry Reding		reset-names = "soctherm";
86834b4f6d0SThierry Reding		#thermal-sensor-cells = <1>;
869f4357938SWei Ni
870f4357938SWei Ni		throttle-cfgs {
871f4357938SWei Ni			throttle_heavy: heavy {
872f4357938SWei Ni				nvidia,priority = <100>;
873f4357938SWei Ni				nvidia,cpu-throt-level = <TEGRA_SOCTHERM_THROT_LEVEL_HIGH>;
874f4357938SWei Ni
875f4357938SWei Ni				#cooling-cells = <2>;
876f4357938SWei Ni			};
877f4357938SWei Ni		};
87834b4f6d0SThierry Reding	};
87934b4f6d0SThierry Reding
8800fa2bfcdSWei Ni	thermal-zones {
8810fa2bfcdSWei Ni		cpu {
8820fa2bfcdSWei Ni			polling-delay-passive = <1000>;
8830fa2bfcdSWei Ni			polling-delay = <0>;
8840fa2bfcdSWei Ni
8850fa2bfcdSWei Ni			thermal-sensors =
8860fa2bfcdSWei Ni				<&soctherm TEGRA124_SOCTHERM_SENSOR_CPU>;
887a6ebde25SWei Ni
888a6ebde25SWei Ni			trips {
889a6ebde25SWei Ni				cpu_shutdown_trip {
890a6ebde25SWei Ni					temperature = <105000>;
891a6ebde25SWei Ni					hysteresis = <1000>;
892a6ebde25SWei Ni					type = "critical";
893a6ebde25SWei Ni				};
894f4357938SWei Ni
895f4357938SWei Ni				cpu_throttle_trip: throttle-trip {
896f4357938SWei Ni					temperature = <102000>;
897f4357938SWei Ni					hysteresis = <1000>;
898f4357938SWei Ni					type = "hot";
899f4357938SWei Ni				};
900a6ebde25SWei Ni			};
901a6ebde25SWei Ni
902a6ebde25SWei Ni			cooling-maps {
903f4357938SWei Ni				map0 {
904f4357938SWei Ni					trip = <&cpu_throttle_trip>;
905f4357938SWei Ni					cooling-device = <&throttle_heavy 1 1>;
906f4357938SWei Ni				};
907a6ebde25SWei Ni			};
9080fa2bfcdSWei Ni		};
9090fa2bfcdSWei Ni		mem {
9100fa2bfcdSWei Ni			polling-delay-passive = <0>;
9110fa2bfcdSWei Ni			polling-delay = <0>;
9120fa2bfcdSWei Ni
9130fa2bfcdSWei Ni			thermal-sensors =
9140fa2bfcdSWei Ni				<&soctherm TEGRA124_SOCTHERM_SENSOR_MEM>;
915a6ebde25SWei Ni
916a6ebde25SWei Ni			trips {
917a6ebde25SWei Ni				mem_shutdown_trip {
918a6ebde25SWei Ni					temperature = <101000>;
919a6ebde25SWei Ni					hysteresis = <1000>;
920a6ebde25SWei Ni					type = "critical";
921a6ebde25SWei Ni				};
922a6ebde25SWei Ni			};
923a6ebde25SWei Ni
924a6ebde25SWei Ni			cooling-maps {
925a6ebde25SWei Ni				/*
926a6ebde25SWei Ni				 * There are currently no cooling maps,
927a6ebde25SWei Ni				 * because there are no cooling devices.
928a6ebde25SWei Ni				 */
929a6ebde25SWei Ni			};
9300fa2bfcdSWei Ni		};
9310fa2bfcdSWei Ni		gpu {
9320fa2bfcdSWei Ni			polling-delay-passive = <1000>;
9330fa2bfcdSWei Ni			polling-delay = <0>;
9340fa2bfcdSWei Ni
9350fa2bfcdSWei Ni			thermal-sensors =
9360fa2bfcdSWei Ni				<&soctherm TEGRA124_SOCTHERM_SENSOR_GPU>;
937a6ebde25SWei Ni
938a6ebde25SWei Ni			trips {
939a6ebde25SWei Ni				gpu_shutdown_trip {
940a6ebde25SWei Ni					temperature = <101000>;
941a6ebde25SWei Ni					hysteresis = <1000>;
942a6ebde25SWei Ni					type = "critical";
943a6ebde25SWei Ni				};
944f4357938SWei Ni
945f4357938SWei Ni				gpu_throttle_trip: throttle-trip {
946f4357938SWei Ni					temperature = <99000>;
947f4357938SWei Ni					hysteresis = <1000>;
948f4357938SWei Ni					type = "hot";
949f4357938SWei Ni				};
950a6ebde25SWei Ni			};
951a6ebde25SWei Ni
952a6ebde25SWei Ni			cooling-maps {
953f4357938SWei Ni				map0 {
954f4357938SWei Ni					trip = <&gpu_throttle_trip>;
955f4357938SWei Ni					cooling-device = <&throttle_heavy 1 1>;
956f4357938SWei Ni				};
957a6ebde25SWei Ni			};
9580fa2bfcdSWei Ni		};
9590fa2bfcdSWei Ni		pllx {
9600fa2bfcdSWei Ni			polling-delay-passive = <0>;
9610fa2bfcdSWei Ni			polling-delay = <0>;
9620fa2bfcdSWei Ni
9630fa2bfcdSWei Ni			thermal-sensors =
9640fa2bfcdSWei Ni				<&soctherm TEGRA124_SOCTHERM_SENSOR_PLLX>;
965a6ebde25SWei Ni
966a6ebde25SWei Ni			trips {
967a6ebde25SWei Ni				pllx_shutdown_trip {
968a6ebde25SWei Ni					temperature = <105000>;
969a6ebde25SWei Ni					hysteresis = <1000>;
970a6ebde25SWei Ni					type = "critical";
971a6ebde25SWei Ni				};
972a6ebde25SWei Ni			};
973a6ebde25SWei Ni
974a6ebde25SWei Ni			cooling-maps {
975a6ebde25SWei Ni				/*
976a6ebde25SWei Ni				 * There are currently no cooling maps,
977a6ebde25SWei Ni				 * because there are no cooling devices.
978a6ebde25SWei Ni				 */
979a6ebde25SWei Ni			};
9800fa2bfcdSWei Ni		};
9810fa2bfcdSWei Ni	};
9820fa2bfcdSWei Ni
983be70771dSThierry Reding	ahub@70300000 {
98434b4f6d0SThierry Reding		compatible = "nvidia,tegra124-ahub";
98534b4f6d0SThierry Reding		reg = <0x0 0x70300000 0x0 0x200>,
98634b4f6d0SThierry Reding		      <0x0 0x70300800 0x0 0x800>,
98734b4f6d0SThierry Reding		      <0x0 0x70300200 0x0 0x600>;
98834b4f6d0SThierry Reding		interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
98934b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_D_AUDIO>,
99034b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_APBIF>;
99134b4f6d0SThierry Reding		clock-names = "d_audio", "apbif";
99234b4f6d0SThierry Reding		resets = <&tegra_car 106>, /* d_audio */
99334b4f6d0SThierry Reding			 <&tegra_car 107>, /* apbif */
99434b4f6d0SThierry Reding			 <&tegra_car 30>,  /* i2s0 */
99534b4f6d0SThierry Reding			 <&tegra_car 11>,  /* i2s1 */
99634b4f6d0SThierry Reding			 <&tegra_car 18>,  /* i2s2 */
99734b4f6d0SThierry Reding			 <&tegra_car 101>, /* i2s3 */
99834b4f6d0SThierry Reding			 <&tegra_car 102>, /* i2s4 */
99934b4f6d0SThierry Reding			 <&tegra_car 108>, /* dam0 */
100034b4f6d0SThierry Reding			 <&tegra_car 109>, /* dam1 */
100134b4f6d0SThierry Reding			 <&tegra_car 110>, /* dam2 */
100234b4f6d0SThierry Reding			 <&tegra_car 10>,  /* spdif */
100334b4f6d0SThierry Reding			 <&tegra_car 153>, /* amx */
100434b4f6d0SThierry Reding			 <&tegra_car 185>, /* amx1 */
100534b4f6d0SThierry Reding			 <&tegra_car 154>, /* adx */
100634b4f6d0SThierry Reding			 <&tegra_car 180>, /* adx1 */
100734b4f6d0SThierry Reding			 <&tegra_car 186>, /* afc0 */
100834b4f6d0SThierry Reding			 <&tegra_car 187>, /* afc1 */
100934b4f6d0SThierry Reding			 <&tegra_car 188>, /* afc2 */
101034b4f6d0SThierry Reding			 <&tegra_car 189>, /* afc3 */
101134b4f6d0SThierry Reding			 <&tegra_car 190>, /* afc4 */
101234b4f6d0SThierry Reding			 <&tegra_car 191>; /* afc5 */
101334b4f6d0SThierry Reding		reset-names = "d_audio", "apbif", "i2s0", "i2s1", "i2s2",
101434b4f6d0SThierry Reding			      "i2s3", "i2s4", "dam0", "dam1", "dam2",
101534b4f6d0SThierry Reding			      "spdif", "amx", "amx1", "adx", "adx1",
101634b4f6d0SThierry Reding			      "afc0", "afc1", "afc2", "afc3", "afc4", "afc5";
101734b4f6d0SThierry Reding		dmas = <&apbdma 1>, <&apbdma 1>,
101834b4f6d0SThierry Reding		       <&apbdma 2>, <&apbdma 2>,
101934b4f6d0SThierry Reding		       <&apbdma 3>, <&apbdma 3>,
102034b4f6d0SThierry Reding		       <&apbdma 4>, <&apbdma 4>,
102134b4f6d0SThierry Reding		       <&apbdma 6>, <&apbdma 6>,
102234b4f6d0SThierry Reding		       <&apbdma 7>, <&apbdma 7>,
102334b4f6d0SThierry Reding		       <&apbdma 12>, <&apbdma 12>,
102434b4f6d0SThierry Reding		       <&apbdma 13>, <&apbdma 13>,
102534b4f6d0SThierry Reding		       <&apbdma 14>, <&apbdma 14>,
102634b4f6d0SThierry Reding		       <&apbdma 29>, <&apbdma 29>;
102734b4f6d0SThierry Reding		dma-names = "rx0", "tx0", "rx1", "tx1", "rx2", "tx2",
102834b4f6d0SThierry Reding			    "rx3", "tx3", "rx4", "tx4", "rx5", "tx5",
102934b4f6d0SThierry Reding			    "rx6", "tx6", "rx7", "tx7", "rx8", "tx8",
103034b4f6d0SThierry Reding			    "rx9", "tx9";
103134b4f6d0SThierry Reding		ranges;
103234b4f6d0SThierry Reding		#address-cells = <2>;
103334b4f6d0SThierry Reding		#size-cells = <2>;
103434b4f6d0SThierry Reding
1035be70771dSThierry Reding		tegra_i2s0: i2s@70301000 {
103634b4f6d0SThierry Reding			compatible = "nvidia,tegra124-i2s";
103734b4f6d0SThierry Reding			reg = <0x0 0x70301000 0x0 0x100>;
103834b4f6d0SThierry Reding			nvidia,ahub-cif-ids = <4 4>;
103934b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_I2S0>;
104034b4f6d0SThierry Reding			clock-names = "i2s";
104134b4f6d0SThierry Reding			resets = <&tegra_car 30>;
104234b4f6d0SThierry Reding			reset-names = "i2s";
104334b4f6d0SThierry Reding			status = "disabled";
104434b4f6d0SThierry Reding		};
104534b4f6d0SThierry Reding
1046be70771dSThierry Reding		tegra_i2s1: i2s@70301100 {
104734b4f6d0SThierry Reding			compatible = "nvidia,tegra124-i2s";
104834b4f6d0SThierry Reding			reg = <0x0 0x70301100 0x0 0x100>;
104934b4f6d0SThierry Reding			nvidia,ahub-cif-ids = <5 5>;
105034b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_I2S1>;
105134b4f6d0SThierry Reding			clock-names = "i2s";
105234b4f6d0SThierry Reding			resets = <&tegra_car 11>;
105334b4f6d0SThierry Reding			reset-names = "i2s";
105434b4f6d0SThierry Reding			status = "disabled";
105534b4f6d0SThierry Reding		};
105634b4f6d0SThierry Reding
1057be70771dSThierry Reding		tegra_i2s2: i2s@70301200 {
105834b4f6d0SThierry Reding			compatible = "nvidia,tegra124-i2s";
105934b4f6d0SThierry Reding			reg = <0x0 0x70301200 0x0 0x100>;
106034b4f6d0SThierry Reding			nvidia,ahub-cif-ids = <6 6>;
106134b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_I2S2>;
106234b4f6d0SThierry Reding			clock-names = "i2s";
106334b4f6d0SThierry Reding			resets = <&tegra_car 18>;
106434b4f6d0SThierry Reding			reset-names = "i2s";
106534b4f6d0SThierry Reding			status = "disabled";
106634b4f6d0SThierry Reding		};
106734b4f6d0SThierry Reding
1068be70771dSThierry Reding		tegra_i2s3: i2s@70301300 {
106934b4f6d0SThierry Reding			compatible = "nvidia,tegra124-i2s";
107034b4f6d0SThierry Reding			reg = <0x0 0x70301300 0x0 0x100>;
107134b4f6d0SThierry Reding			nvidia,ahub-cif-ids = <7 7>;
107234b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_I2S3>;
107334b4f6d0SThierry Reding			clock-names = "i2s";
107434b4f6d0SThierry Reding			resets = <&tegra_car 101>;
107534b4f6d0SThierry Reding			reset-names = "i2s";
107634b4f6d0SThierry Reding			status = "disabled";
107734b4f6d0SThierry Reding		};
107834b4f6d0SThierry Reding
1079be70771dSThierry Reding		tegra_i2s4: i2s@70301400 {
108034b4f6d0SThierry Reding			compatible = "nvidia,tegra124-i2s";
108134b4f6d0SThierry Reding			reg = <0x0 0x70301400 0x0 0x100>;
108234b4f6d0SThierry Reding			nvidia,ahub-cif-ids = <8 8>;
108334b4f6d0SThierry Reding			clocks = <&tegra_car TEGRA124_CLK_I2S4>;
108434b4f6d0SThierry Reding			clock-names = "i2s";
108534b4f6d0SThierry Reding			resets = <&tegra_car 102>;
108634b4f6d0SThierry Reding			reset-names = "i2s";
108734b4f6d0SThierry Reding			status = "disabled";
108834b4f6d0SThierry Reding		};
108934b4f6d0SThierry Reding	};
109034b4f6d0SThierry Reding
1091be70771dSThierry Reding	usb@7d000000 {
109234b4f6d0SThierry Reding		compatible = "nvidia,tegra124-ehci", "nvidia,tegra30-ehci", "usb-ehci";
109334b4f6d0SThierry Reding		reg = <0x0 0x7d000000 0x0 0x4000>;
109434b4f6d0SThierry Reding		interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>;
109534b4f6d0SThierry Reding		phy_type = "utmi";
109634b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_USBD>;
109734b4f6d0SThierry Reding		clock-names = "usb";
109834b4f6d0SThierry Reding		resets = <&tegra_car 22>;
109934b4f6d0SThierry Reding		reset-names = "usb";
110034b4f6d0SThierry Reding		nvidia,phy = <&phy1>;
110134b4f6d0SThierry Reding		status = "disabled";
110234b4f6d0SThierry Reding	};
110334b4f6d0SThierry Reding
1104be70771dSThierry Reding	phy1: usb-phy@7d000000 {
110534b4f6d0SThierry Reding		compatible = "nvidia,tegra124-usb-phy", "nvidia,tegra30-usb-phy";
110634b4f6d0SThierry Reding		reg = <0x0 0x7d000000 0x0 0x4000>,
110734b4f6d0SThierry Reding		      <0x0 0x7d000000 0x0 0x4000>;
110834b4f6d0SThierry Reding		phy_type = "utmi";
110934b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_USBD>,
111034b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_U>,
111134b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_USBD>;
111234b4f6d0SThierry Reding		clock-names = "reg", "pll_u", "utmi-pads";
111334b4f6d0SThierry Reding		resets = <&tegra_car 22>, <&tegra_car 22>;
111434b4f6d0SThierry Reding		reset-names = "usb", "utmi-pads";
111534b4f6d0SThierry Reding		nvidia,hssync-start-delay = <0>;
111634b4f6d0SThierry Reding		nvidia,idle-wait-delay = <17>;
111734b4f6d0SThierry Reding		nvidia,elastic-limit = <16>;
111834b4f6d0SThierry Reding		nvidia,term-range-adj = <6>;
111934b4f6d0SThierry Reding		nvidia,xcvr-setup = <9>;
112034b4f6d0SThierry Reding		nvidia,xcvr-lsfslew = <0>;
112134b4f6d0SThierry Reding		nvidia,xcvr-lsrslew = <3>;
112234b4f6d0SThierry Reding		nvidia,hssquelch-level = <2>;
112334b4f6d0SThierry Reding		nvidia,hsdiscon-level = <5>;
112434b4f6d0SThierry Reding		nvidia,xcvr-hsslew = <12>;
112534b4f6d0SThierry Reding		nvidia,has-utmi-pad-registers;
112634b4f6d0SThierry Reding		status = "disabled";
112734b4f6d0SThierry Reding	};
112834b4f6d0SThierry Reding
1129be70771dSThierry Reding	usb@7d004000 {
113034b4f6d0SThierry Reding		compatible = "nvidia,tegra124-ehci", "nvidia,tegra30-ehci", "usb-ehci";
113134b4f6d0SThierry Reding		reg = <0x0 0x7d004000 0x0 0x4000>;
113234b4f6d0SThierry Reding		interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
113334b4f6d0SThierry Reding		phy_type = "utmi";
113434b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_USB2>;
113534b4f6d0SThierry Reding		clock-names = "usb";
113634b4f6d0SThierry Reding		resets = <&tegra_car 58>;
113734b4f6d0SThierry Reding		reset-names = "usb";
113834b4f6d0SThierry Reding		nvidia,phy = <&phy2>;
113934b4f6d0SThierry Reding		status = "disabled";
114034b4f6d0SThierry Reding	};
114134b4f6d0SThierry Reding
1142be70771dSThierry Reding	phy2: usb-phy@7d004000 {
114334b4f6d0SThierry Reding		compatible = "nvidia,tegra124-usb-phy", "nvidia,tegra30-usb-phy";
114434b4f6d0SThierry Reding		reg = <0x0 0x7d004000 0x0 0x4000>,
114534b4f6d0SThierry Reding		      <0x0 0x7d000000 0x0 0x4000>;
114634b4f6d0SThierry Reding		phy_type = "utmi";
114734b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_USB2>,
114834b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_U>,
114934b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_USBD>;
115034b4f6d0SThierry Reding		clock-names = "reg", "pll_u", "utmi-pads";
115134b4f6d0SThierry Reding		resets = <&tegra_car 58>, <&tegra_car 22>;
115234b4f6d0SThierry Reding		reset-names = "usb", "utmi-pads";
115334b4f6d0SThierry Reding		nvidia,hssync-start-delay = <0>;
115434b4f6d0SThierry Reding		nvidia,idle-wait-delay = <17>;
115534b4f6d0SThierry Reding		nvidia,elastic-limit = <16>;
115634b4f6d0SThierry Reding		nvidia,term-range-adj = <6>;
115734b4f6d0SThierry Reding		nvidia,xcvr-setup = <9>;
115834b4f6d0SThierry Reding		nvidia,xcvr-lsfslew = <0>;
115934b4f6d0SThierry Reding		nvidia,xcvr-lsrslew = <3>;
116034b4f6d0SThierry Reding		nvidia,hssquelch-level = <2>;
116134b4f6d0SThierry Reding		nvidia,hsdiscon-level = <5>;
116234b4f6d0SThierry Reding		nvidia,xcvr-hsslew = <12>;
116334b4f6d0SThierry Reding		status = "disabled";
116434b4f6d0SThierry Reding	};
116534b4f6d0SThierry Reding
1166be70771dSThierry Reding	usb@7d008000 {
116734b4f6d0SThierry Reding		compatible = "nvidia,tegra124-ehci", "nvidia,tegra30-ehci", "usb-ehci";
116834b4f6d0SThierry Reding		reg = <0x0 0x7d008000 0x0 0x4000>;
116934b4f6d0SThierry Reding		interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
117034b4f6d0SThierry Reding		phy_type = "utmi";
117134b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_USB3>;
117234b4f6d0SThierry Reding		clock-names = "usb";
117334b4f6d0SThierry Reding		resets = <&tegra_car 59>;
117434b4f6d0SThierry Reding		reset-names = "usb";
117534b4f6d0SThierry Reding		nvidia,phy = <&phy3>;
117634b4f6d0SThierry Reding		status = "disabled";
117734b4f6d0SThierry Reding	};
117834b4f6d0SThierry Reding
1179be70771dSThierry Reding	phy3: usb-phy@7d008000 {
118034b4f6d0SThierry Reding		compatible = "nvidia,tegra124-usb-phy", "nvidia,tegra30-usb-phy";
118134b4f6d0SThierry Reding		reg = <0x0 0x7d008000 0x0 0x4000>,
118234b4f6d0SThierry Reding		      <0x0 0x7d000000 0x0 0x4000>;
118334b4f6d0SThierry Reding		phy_type = "utmi";
118434b4f6d0SThierry Reding		clocks = <&tegra_car TEGRA124_CLK_USB3>,
118534b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_PLL_U>,
118634b4f6d0SThierry Reding			 <&tegra_car TEGRA124_CLK_USBD>;
118734b4f6d0SThierry Reding		clock-names = "reg", "pll_u", "utmi-pads";
118834b4f6d0SThierry Reding		resets = <&tegra_car 59>, <&tegra_car 22>;
118934b4f6d0SThierry Reding		reset-names = "usb", "utmi-pads";
119034b4f6d0SThierry Reding		nvidia,hssync-start-delay = <0>;
119134b4f6d0SThierry Reding		nvidia,idle-wait-delay = <17>;
119234b4f6d0SThierry Reding		nvidia,elastic-limit = <16>;
119334b4f6d0SThierry Reding		nvidia,term-range-adj = <6>;
119434b4f6d0SThierry Reding		nvidia,xcvr-setup = <9>;
119534b4f6d0SThierry Reding		nvidia,xcvr-lsfslew = <0>;
119634b4f6d0SThierry Reding		nvidia,xcvr-lsrslew = <3>;
119734b4f6d0SThierry Reding		nvidia,hssquelch-level = <2>;
119834b4f6d0SThierry Reding		nvidia,hsdiscon-level = <5>;
119934b4f6d0SThierry Reding		nvidia,xcvr-hsslew = <12>;
120034b4f6d0SThierry Reding		status = "disabled";
120134b4f6d0SThierry Reding	};
120234b4f6d0SThierry Reding
120334b4f6d0SThierry Reding	cpus {
120434b4f6d0SThierry Reding		#address-cells = <1>;
120534b4f6d0SThierry Reding		#size-cells = <0>;
120634b4f6d0SThierry Reding
120734b4f6d0SThierry Reding		cpu@0 {
120834b4f6d0SThierry Reding			device_type = "cpu";
120931af04cdSRob Herring			compatible = "nvidia,denver";
121034b4f6d0SThierry Reding			reg = <0>;
121134b4f6d0SThierry Reding		};
121234b4f6d0SThierry Reding
121334b4f6d0SThierry Reding		cpu@1 {
121434b4f6d0SThierry Reding			device_type = "cpu";
121531af04cdSRob Herring			compatible = "nvidia,denver";
121634b4f6d0SThierry Reding			reg = <1>;
121734b4f6d0SThierry Reding		};
121834b4f6d0SThierry Reding	};
121934b4f6d0SThierry Reding
122034b4f6d0SThierry Reding	timer {
122134b4f6d0SThierry Reding		compatible = "arm,armv7-timer";
122234b4f6d0SThierry Reding		interrupts = <GIC_PPI 13
122334b4f6d0SThierry Reding				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
122434b4f6d0SThierry Reding			     <GIC_PPI 14
122534b4f6d0SThierry Reding				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
122634b4f6d0SThierry Reding			     <GIC_PPI 11
122734b4f6d0SThierry Reding				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
122834b4f6d0SThierry Reding			     <GIC_PPI 10
122934b4f6d0SThierry Reding				(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
123034b4f6d0SThierry Reding		interrupt-parent = <&gic>;
123134b4f6d0SThierry Reding	};
123234b4f6d0SThierry Reding};
1233