xref: /openbmc/u-boot/arch/sandbox/dts/sandbox.dts (revision 7132b9fd68a1c76bf557d56dd62756a6607cf761)
1/dts-v1/;
2
3/ {
4	#address-cells = <1>;
5	#size-cells = <0>;
6
7	chosen {
8		stdout-path = "/serial";
9	};
10
11	/* Needs to be available prior to relocation */
12	uart0: serial {
13		compatible = "sandbox,serial";
14		sandbox,text-colour = "cyan";
15	};
16
17	triangle {
18		compatible = "demo-shape";
19		colour = "cyan";
20		sides = <3>;
21		character = <83>;
22		light-gpios = <&gpio_a 2>, <&gpio_b 6 0>;
23	};
24	square {
25		compatible = "demo-shape";
26		colour = "blue";
27		sides = <4>;
28	};
29	hexagon {
30		compatible = "demo-simple";
31		colour = "white";
32		sides = <6>;
33	};
34
35	host@0 {
36		#address-cells = <1>;
37		#size-cells = <0>;
38		compatible = "sandbox,host-emulation";
39		cros-ec@0 {
40			reg = <0>;
41			compatible = "google,cros-ec";
42
43			/*
44			 * This describes the flash memory within the EC. Note
45			 * that the STM32L flash erases to 0, not 0xff.
46			 */
47			#address-cells = <1>;
48			#size-cells = <1>;
49			flash@8000000 {
50				reg = <0x08000000 0x20000>;
51				erase-value = <0>;
52				#address-cells = <1>;
53				#size-cells = <1>;
54
55				/* Information for sandbox */
56				ro {
57					reg = <0 0xf000>;
58				};
59				wp-ro {
60					reg = <0xf000 0x1000>;
61				};
62				rw {
63					reg = <0x10000 0x10000>;
64				};
65			};
66		};
67	};
68
69	lcd {
70		compatible = "sandbox,lcd-sdl";
71		xres = <800>;
72		yres = <600>;
73	};
74
75	cros-ec-keyb {
76		compatible = "google,cros-ec-keyb";
77		google,key-rows = <8>;
78		google,key-columns = <13>;
79		google,repeat-delay-ms = <240>;
80		google,repeat-rate-ms = <30>;
81		google,ghost-filter;
82		/*
83		 * Keymap entries take the form of 0xRRCCKKKK where
84		 * RR=Row CC=Column KKKK=Key Code
85		 * The values below are for a US keyboard layout and
86		 * are taken from the Linux driver. Note that the
87		 * 102ND key is not used for US keyboards.
88		 */
89		linux,keymap = <
90			/* CAPSLCK F1         B          F10     */
91			0x0001003a 0x0002003b 0x00030030 0x00040044
92			/* N       =          R_ALT      ESC     */
93			0x00060031 0x0008000d 0x000a0064 0x01010001
94			/* F4      G          F7         H       */
95			0x0102003e 0x01030022 0x01040041 0x01060023
96			/* '       F9         BKSPACE    L_CTRL  */
97			0x01080028 0x01090043 0x010b000e 0x0200001d
98			/* TAB     F3         T          F6      */
99			0x0201000f 0x0202003d 0x02030014 0x02040040
100			/* ]       Y          102ND      [       */
101			0x0205001b 0x02060015 0x02070056 0x0208001a
102			/* F8      GRAVE      F2         5       */
103			0x02090042 0x03010029 0x0302003c 0x03030006
104			/* F5      6          -          \       */
105			0x0304003f 0x03060007 0x0308000c 0x030b002b
106			/* R_CTRL  A          D          F       */
107			0x04000061 0x0401001e 0x04020020 0x04030021
108			/* S       K          J          ;       */
109			0x0404001f 0x04050025 0x04060024 0x04080027
110			/* L       ENTER      Z          C       */
111			0x04090026 0x040b001c 0x0501002c 0x0502002e
112			/* V       X          ,          M       */
113			0x0503002f 0x0504002d 0x05050033 0x05060032
114			/* L_SHIFT /          .          SPACE   */
115			0x0507002a 0x05080035 0x05090034 0x050B0039
116			/* 1       3          4          2       */
117			0x06010002 0x06020004 0x06030005 0x06040003
118			/* 8       7          0          9       */
119			0x06050009 0x06060008 0x0608000b 0x0609000a
120			/* L_ALT   DOWN       RIGHT      Q       */
121			0x060a0038 0x060b006c 0x060c006a 0x07010010
122			/* E       R          W          I       */
123			0x07020012 0x07030013 0x07040011 0x07050017
124			/* U       R_SHIFT    P          O       */
125			0x07060016 0x07070036 0x07080019 0x07090018
126			/* UP      LEFT    */
127			0x070b0067 0x070c0069>;
128	};
129
130	gpio_a: gpios@0 {
131		gpio-controller;
132		compatible = "sandbox,gpio";
133		#gpio-cells = <1>;
134		gpio-bank-name = "a";
135		num-gpios = <20>;
136	};
137
138	gpio_b: gpios@1 {
139		gpio-controller;
140		compatible = "sandbox,gpio";
141		#gpio-cells = <2>;
142		gpio-bank-name = "b";
143		num-gpios = <10>;
144	};
145
146	i2c@0 {
147		#address-cells = <1>;
148		#size-cells = <0>;
149		reg = <0>;
150		compatible = "sandbox,i2c";
151		clock-frequency = <400000>;
152		eeprom@2c {
153			reg = <0x2c>;
154			compatible = "i2c-eeprom";
155			emul {
156				compatible = "sandbox,i2c-eeprom";
157				sandbox,filename = "i2c.bin";
158				sandbox,size = <128>;
159			};
160		};
161	};
162
163	spi@0 {
164		#address-cells = <1>;
165		#size-cells = <0>;
166		reg = <0>;
167		compatible = "sandbox,spi";
168		cs-gpios = <0>, <&gpio_a 0>;
169		flash@0 {
170			reg = <0>;
171			compatible = "spansion,m25p16", "sandbox,spi-flash";
172			spi-max-frequency = <40000000>;
173			sandbox,filename = "spi.bin";
174		};
175	};
176
177	cros-ec@0 {
178		compatible = "google,cros-ec";
179		#address-cells = <1>;
180		#size-cells = <1>;
181		firmware_storage_spi: flash@0 {
182			reg = <0 0x400000>;
183		};
184	};
185
186};
187