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