1/dts-v1/;
2
3/include/ "skeleton.dtsi"
4/include/ "serial.dtsi"
5/include/ "reset.dtsi"
6/include/ "rtc.dtsi"
7/include/ "tsc_timer.dtsi"
8
9#include "smbios.dtsi"
10
11/ {
12	model = "Google Panther";
13	compatible = "google,panther", "intel,haswell";
14
15	aliases {
16		spi0 = &spi;
17	};
18
19	config {
20		silent-console = <0>;
21		no-keyboard;
22	};
23
24	chosen {
25		stdout-path = "/serial";
26	};
27
28	pci {
29		compatible = "pci-x86";
30		#address-cells = <3>;
31		#size-cells = <2>;
32		u-boot,dm-pre-reloc;
33		ranges = <0x02000000 0x0 0xe0000000 0xe0000000 0 0x10000000
34			0x42000000 0x0 0xd0000000 0xd0000000 0 0x10000000
35			0x01000000 0x0 0x1000 0x1000 0 0xf000>;
36
37		pch@1f,0 {
38			reg = <0x0000f800 0 0 0 0>;
39			compatible = "intel,pch9";
40			#address-cells = <1>;
41			#size-cells = <1>;
42
43			spi: spi {
44				#address-cells = <1>;
45				#size-cells = <0>;
46				compatible = "intel,ich9-spi";
47				spi-flash@0 {
48					#size-cells = <1>;
49					#address-cells = <1>;
50					reg = <0>;
51					compatible = "winbond,w25q64",
52						"jedec,spi-nor";
53					memory-map = <0xff800000 0x00800000>;
54					rw-mrc-cache {
55						label = "rw-mrc-cache";
56						reg = <0x003e0000 0x00010000>;
57					};
58				};
59			};
60
61			gpioa {
62				compatible = "intel,ich6-gpio";
63				u-boot,dm-pre-reloc;
64				reg = <0 0x10>;
65				bank-name = "A";
66			};
67
68			gpiob {
69				compatible = "intel,ich6-gpio";
70				u-boot,dm-pre-reloc;
71				reg = <0x30 0x10>;
72				bank-name = "B";
73			};
74
75			gpioc {
76				compatible = "intel,ich6-gpio";
77				u-boot,dm-pre-reloc;
78				reg = <0x40 0x10>;
79				bank-name = "C";
80			};
81		};
82	};
83
84	tpm {
85		reg = <0xfed40000 0x5000>;
86		compatible = "infineon,slb9635lpc";
87	};
88
89};
90