1// SPDX-License-Identifier: GPL-2.0
2
3#include "tegra210.dtsi"
4
5/ {
6	aliases {
7		serial0 = &uarta;
8	};
9
10	chosen {
11		bootargs = "earlycon";
12		stdout-path = "serial0:115200n8";
13	};
14
15	memory {
16		device_type = "memory";
17		reg = <0x0 0x80000000 0x0 0xc0000000>;
18	};
19
20	serial@70006000 {
21		status = "okay";
22	};
23
24	pmc@7000e400 {
25		nvidia,invert-interrupt;
26		nvidia,suspend-mode = <0>;
27		nvidia,cpu-pwr-good-time = <0>;
28		nvidia,cpu-pwr-off-time = <0>;
29		nvidia,core-pwr-good-time = <4587 3876>;
30		nvidia,core-pwr-off-time = <39065>;
31		nvidia,core-power-req-active-high;
32		nvidia,sys-clock-req-active-high;
33		status = "okay";
34	};
35
36	sdhci@700b0600 {
37		bus-width = <8>;
38		non-removable;
39		status = "okay";
40	};
41
42	clocks {
43		compatible = "simple-bus";
44		#address-cells = <1>;
45		#size-cells = <0>;
46
47		clk32k_in: clock@0 {
48			compatible = "fixed-clock";
49			reg = <0>;
50			#clock-cells = <0>;
51			clock-frequency = <32768>;
52		};
53	};
54
55	cpus {
56		cpu@0 {
57			enable-method = "psci";
58		};
59
60		cpu@1 {
61			enable-method = "psci";
62		};
63
64		cpu@2 {
65			enable-method = "psci";
66		};
67
68		cpu@3 {
69			enable-method = "psci";
70		};
71	};
72
73	psci {
74		compatible = "arm,psci-1.0";
75		method = "smc";
76	};
77};
78