blob: 7b4fc94495a9eaac688e27a5a80ce764fe67d5cd [file] [log] [blame]
Simon Glass28db4692019-05-18 11:59:41 -06001/*
2 * This is the common sandbox device-tree nodes. This is shared between sandbox
3 * and sandbox64 builds.
4 */
5
6#define USB_CLASS_HUB 9
7
8/ {
9 chosen {
10 stdout-path = "/serial";
11 };
12
13 audio: audio-codec {
14 compatible = "sandbox,audio-codec";
15 #sound-dai-cells = <1>;
16 };
17
Philippe Reynesf56bf0a2020-07-24 18:19:48 +020018 buttons {
19 compatible = "gpio-keys";
20
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +020021 btn1 {
Philippe Reynesf56bf0a2020-07-24 18:19:48 +020022 gpios = <&gpio_a 3 0>;
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +020023 label = "button1";
Philippe Reynesf56bf0a2020-07-24 18:19:48 +020024 };
25
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +020026 btn2 {
Philippe Reynesf56bf0a2020-07-24 18:19:48 +020027 gpios = <&gpio_a 4 0>;
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +020028 label = "button2";
Philippe Reynesf56bf0a2020-07-24 18:19:48 +020029 };
30 };
31
Simon Glass6b927b12020-10-03 11:31:32 -060032 clk_fixed: clk-fixed {
33 u-boot,dm-pre-reloc;
34 compatible = "fixed-clock";
35 #clock-cells = <0>;
36 clock-frequency = <1234>;
37 };
38
39 clk_sandbox: clk-sbox {
40 u-boot,dm-pre-reloc;
41 compatible = "sandbox,clk";
42 #clock-cells = <1>;
43 assigned-clocks = <&clk_sandbox 3>;
44 assigned-clock-rates = <321>;
45 };
46
47 clk-test {
48 u-boot,dm-pre-reloc;
49 compatible = "sandbox,clk-test";
50 clocks = <&clk_fixed>,
51 <&clk_sandbox 1>,
52 <&clk_sandbox 0>,
53 <&clk_sandbox 3>,
54 <&clk_sandbox 2>;
55 clock-names = "fixed", "i2c", "spi", "uart2", "uart1";
56 };
57
Simon Glass28db4692019-05-18 11:59:41 -060058 gpio_a: gpios@0 {
59 u-boot,dm-pre-reloc;
60 gpio-controller;
61 compatible = "sandbox,gpio";
62 #gpio-cells = <1>;
63 gpio-bank-name = "a";
64 sandbox,gpio-count = <20>;
65 };
66
67 gpio_b: gpios@1 {
68 u-boot,dm-pre-reloc;
69 gpio-controller;
70 compatible = "sandbox,gpio";
71 #gpio-cells = <2>;
72 gpio-bank-name = "b";
73 sandbox,gpio-count = <10>;
74 };
75
76 hexagon {
77 compatible = "demo-simple";
78 colour = "white";
79 sides = <6>;
80 };
81
82 i2c_0: i2c@0 {
83 eeprom@2c {
84 reg = <0x2c>;
85 compatible = "i2c-eeprom";
86 sandbox,emul = <&emul_eeprom>;
87 };
88
89 rtc_0: rtc@43 {
90 reg = <0x43>;
91 compatible = "sandbox-rtc";
92 sandbox,emul = <&emul0>;
Simon Glass4d4558e2020-10-03 11:31:36 -060093 u-boot,dm-pre-reloc;
Simon Glass28db4692019-05-18 11:59:41 -060094 };
95 sandbox_pmic: sandbox_pmic {
96 reg = <0x40>;
97 };
98
99 mc34708: pmic@41 {
100 reg = <0x41>;
101 };
102
103 i2c_emul: emul {
104 reg = <0xff>;
105 compatible = "sandbox,i2c-emul-parent";
106 emul_eeprom: emul-eeprom {
107 compatible = "sandbox,i2c-eeprom";
108 sandbox,filename = "i2c.bin";
109 sandbox,size = <256>;
110 };
111 emul0: emul0 {
112 compatible = "sandbox,i2c-rtc";
113 };
114 };
115 };
116
117 i2s: i2s {
118 compatible = "sandbox,i2s";
119 #sound-dai-cells = <1>;
120 };
121
122 lcd {
123 u-boot,dm-pre-reloc;
124 compatible = "sandbox,lcd-sdl";
125 xres = <1366>;
126 yres = <768>;
Simon Glassd2caf7b2020-02-03 07:36:14 -0700127 log2-depth = <5>;
Simon Glass28db4692019-05-18 11:59:41 -0600128 };
129
130 leds {
131 compatible = "gpio-leds";
132
133 iracibble {
134 gpios = <&gpio_a 1 0>;
135 label = "sandbox:red";
136 };
137
138 martinet {
139 gpios = <&gpio_a 2 0>;
140 label = "sandbox:green";
141 };
142 };
143
Tom Rini4a3ca482020-02-11 12:41:23 -0500144 pci@0 {
Simon Glass8c501022019-12-06 21:41:54 -0700145 pci@1e,0 {
146 compatible = "sandbox,pmc";
147 reg = <0xf000 0 0 0 0>;
148 sandbox,emul = <&pmc_emul>;
149 gpe0-dwx-mask = <0xf>;
150 gpe0-dwx-shift-base = <4>;
151 gpe0-dw = <6 7 9>;
152 gpe0-sts = <0x20>;
153 gpe0-en = <0x30>;
154 };
155
Simon Glass28db4692019-05-18 11:59:41 -0600156 pci@1f,0 {
157 compatible = "pci-generic";
158 reg = <0xf800 0 0 0 0>;
Simon Glassb98ba4c2019-09-25 08:56:10 -0600159 sandbox,emul = <&swap_case_emul>;
160 };
161 };
162
163 emul {
164 compatible = "sandbox,pci-emul-parent";
Simon Glass8c501022019-12-06 21:41:54 -0700165 pmc_emul: emul@1e,0 {
166 compatible = "sandbox,pmc-emul";
167 };
Simon Glassb98ba4c2019-09-25 08:56:10 -0600168 swap_case_emul: emul@1f,0 {
169 compatible = "sandbox,swap-case";
Simon Glass28db4692019-05-18 11:59:41 -0600170 };
171 };
172
173 pinctrl {
174 compatible = "sandbox,pinctrl";
175 status = "okay";
176
177 pinctrl_i2c0: i2c0 {
178 groups = "i2c";
179 function = "i2c";
180 bias-pull-up;
181 };
182
183 pinctrl_serial0: uart0 {
184 groups = "serial_a";
185 function = "serial";
186 };
187
188 pinctrl_onewire0: onewire0 {
189 groups = "w1";
190 function = "w1";
191 bias-pull-up;
192 };
193 };
194
195 reset@1 {
196 compatible = "sandbox,reset";
197 };
198
199 sound {
200 compatible = "sandbox,sound";
201 cpu {
202 sound-dai = <&i2s 0>;
203 };
204
205 codec {
206 sound-dai = <&audio 0>;
207 };
208 };
209
210 spi@0 {
211 firmware_storage_spi: flash@0 {
212 u-boot,dm-pre-reloc;
213 reg = <0>;
Simon Glass7e368682019-05-18 11:59:49 -0600214 compatible = "spansion,m25p16", "jedec,spi-nor";
Simon Glass28db4692019-05-18 11:59:41 -0600215 spi-max-frequency = <40000000>;
216 sandbox,filename = "spi.bin";
217 };
218 };
219
220 spl-test {
221 u-boot,dm-pre-reloc;
222 compatible = "sandbox,spl-test";
223 boolval;
224 intval = <1>;
225 intarray = <2 3 4>;
226 byteval = [05];
227 bytearray = [06];
228 longbytearray = [09 0a 0b 0c 0d 0e 0f 10 11];
229 stringval = "message";
230 stringarray = "multi-word", "message";
231 };
232
233 spl-test2 {
234 u-boot,dm-pre-reloc;
235 compatible = "sandbox,spl-test";
236 intval = <3>;
237 intarray = <5>;
238 byteval = [08];
239 bytearray = [01 23 34];
240 longbytearray = [09 0a 0b 0c];
241 stringval = "message2";
242 stringarray = "another", "multi-word", "message";
243 };
244
245 spl-test3 {
246 u-boot,dm-pre-reloc;
247 compatible = "sandbox,spl-test";
248 stringarray = "one";
249 };
250
Patrick Delaunayae84ff12019-05-21 19:19:11 +0200251 spl-test5 {
252 u-boot,dm-tpl;
253 compatible = "sandbox,spl-test";
254 stringarray = "tpl";
255 };
256
257 spl-test6 {
258 u-boot,dm-pre-proper;
259 compatible = "sandbox,spl-test";
260 stringarray = "pre-proper";
261 };
262
263 spl-test7 {
264 u-boot,dm-spl;
265 compatible = "sandbox,spl-test";
266 stringarray = "spl";
267 };
268
Simon Glass28db4692019-05-18 11:59:41 -0600269 square {
270 compatible = "demo-shape";
271 colour = "blue";
272 sides = <4>;
273 };
274
275 timer {
276 compatible = "sandbox,timer";
277 clock-frequency = <1000000>;
278 };
279
280 tpm {
281 u-boot,dm-pre-reloc;
282 compatible = "google,sandbox-tpm";
283 };
284
285 tpm2 {
286 compatible = "sandbox,tpm2";
287 };
288
289 triangle {
290 compatible = "demo-shape";
291 colour = "cyan";
292 sides = <3>;
293 character = <83>;
294 light-gpios = <&gpio_a 2>, <&gpio_b 6 0>;
295 };
296
297 /* Needs to be available prior to relocation */
298 uart0: serial {
299 u-boot,dm-spl;
300 compatible = "sandbox,serial";
301 sandbox,text-colour = "cyan";
302 pinctrl-names = "default";
303 pinctrl-0 = <&pinctrl_serial0>;
304 };
305
306 usb@0 {
307 compatible = "sandbox,usb";
308 status = "disabled";
309 hub {
310 compatible = "sandbox,usb-hub";
311 #address-cells = <1>;
312 #size-cells = <0>;
313 flash-stick {
314 reg = <0>;
315 compatible = "sandbox,usb-flash";
316 };
317 };
318 };
319
320 usb@1 {
321 compatible = "sandbox,usb";
322 hub {
323 compatible = "usb-hub";
324 usb,device-class = <USB_CLASS_HUB>;
325 hub-emul {
326 compatible = "sandbox,usb-hub";
327 #address-cells = <1>;
328 #size-cells = <0>;
329 flash-stick {
330 reg = <0>;
331 compatible = "sandbox,usb-flash";
332 sandbox,filepath = "flash.bin";
333 };
334 };
335 };
336 };
337
338 usb@2 {
339 compatible = "sandbox,usb";
340 status = "disabled";
341 };
342
343 spmi: spmi@0 {
344 compatible = "sandbox,spmi";
345 #address-cells = <0x1>;
346 #size-cells = <0x1>;
347 pm8916@0 {
348 compatible = "qcom,spmi-pmic";
349 reg = <0x0 0x1>;
350 #address-cells = <0x1>;
351 #size-cells = <0x1>;
352
353 spmi_gpios: gpios@c000 {
354 compatible = "qcom,pm8916-gpio";
355 reg = <0xc000 0x400>;
356 gpio-controller;
357 gpio-count = <4>;
358 #gpio-cells = <2>;
359 gpio-bank-name="spmi";
360 };
361 };
362 };
363
364 axi: axi@0 {
365 compatible = "sandbox,axi";
366 #address-cells = <0x1>;
367 #size-cells = <0x1>;
368 store@0 {
369 compatible = "sandbox,sandbox_store";
370 reg = <0x0 0x400>;
371 };
372 };
373
374 onewire0: onewire {
375 compatible = "w1-gpio";
376 gpios = <&gpio_a 8>;
377 pinctrl-names = "default";
378 pinctrl-0 = <&pinctrl_onewire0>;
379 status = "okay";
380
381 sandbox_eeprom0: sandbox_eeprom@0 {
382 compatible = "sandbox,w1-eeprom";
383 status = "okay";
384 };
385 };
386
387 sandbox_tee {
388 compatible = "sandbox,tee";
389 };
390};
391
392&cros_ec {
393 /*
394 * This describes the flash memory within the EC. Note
395 * that the STM32L flash erases to 0, not 0xff.
396 */
397 flash {
398 image-pos = <0x08000000>;
399 size = <0x20000>;
400 erase-value = <0>;
401
402 /* Information for sandbox */
403 ro {
404 image-pos = <0>;
405 size = <0xf000>;
406 };
407 wp-ro {
408 image-pos = <0xf000>;
409 size = <0x1000>;
410 };
411 rw {
412 image-pos = <0x10000>;
413 size = <0x10000>;
414 };
415 };
416
417 keyboard-controller {
418 u-boot,dm-pre-reloc;
419 };
420};