blob: a0856764f6ad286b273526bd0bd6fde0bf089284 [file] [log] [blame]
Simon Glass2e7d35d2014-02-26 15:59:21 -07001/dts-v1/;
2
3/ {
4 model = "sandbox";
5 compatible = "sandbox";
6 #address-cells = <1>;
Simon Glass0503e822015-07-06 12:54:36 -06007 #size-cells = <1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -07008
Simon Glass00606d72014-07-23 06:55:03 -06009 aliases {
10 console = &uart0;
Simon Glass171e9912015-05-22 15:42:15 -060011 eth0 = "/eth@10002000";
Bin Meng71d79712015-08-27 22:25:53 -070012 eth3 = &eth_3;
Simon Glass171e9912015-05-22 15:42:15 -060013 eth5 = &eth_5;
Simon Glass5d9a88f2018-10-01 12:22:40 -060014 gpio1 = &gpio_a;
15 gpio2 = &gpio_b;
Simon Glass9cc36a22015-01-25 08:27:05 -070016 i2c0 = "/i2c@0";
Simon Glasse48eeb92017-04-23 20:02:07 -060017 mmc0 = "/mmc0";
18 mmc1 = "/mmc1";
Bin Mengdee4d752018-08-03 01:14:41 -070019 pci0 = &pci0;
20 pci1 = &pci1;
Bin Meng3ed214a2018-08-03 01:14:50 -070021 pci2 = &pci2;
Nishanth Menon52159402015-09-17 15:42:41 -050022 remoteproc1 = &rproc_1;
23 remoteproc2 = &rproc_2;
Simon Glass52d3bc52015-05-22 15:42:17 -060024 rtc0 = &rtc_0;
25 rtc1 = &rtc_1;
Simon Glass171e9912015-05-22 15:42:15 -060026 spi0 = "/spi@0";
Przemyslaw Marczakf64000c2015-05-13 13:38:34 +020027 testfdt6 = "/e-test";
Simon Glass9cc36a22015-01-25 08:27:05 -070028 testbus3 = "/some-bus";
29 testfdt0 = "/some-bus/c-test@0";
30 testfdt1 = "/some-bus/c-test@1";
31 testfdt3 = "/b-test";
32 testfdt5 = "/some-bus/c-test@5";
33 testfdt8 = "/a-test";
Eugeniu Rosca507cef32018-05-19 14:13:55 +020034 fdt-dummy0 = "/translation-test@8000/dev@0,0";
35 fdt-dummy1 = "/translation-test@8000/dev@1,100";
36 fdt-dummy2 = "/translation-test@8000/dev@2,200";
37 fdt-dummy3 = "/translation-test@8000/noxlatebus@3,300/dev@42";
Simon Glasse00cb222015-03-25 12:23:05 -060038 usb0 = &usb_0;
39 usb1 = &usb_1;
40 usb2 = &usb_2;
Mario Six957983e2018-08-09 14:51:19 +020041 axi0 = &axi;
Mario Six4eea5312018-09-27 09:19:31 +020042 osd0 = "/osd";
Simon Glass00606d72014-07-23 06:55:03 -060043 };
44
Simon Glassce6d99a2018-12-10 10:37:33 -070045 audio: audio-codec {
46 compatible = "sandbox,audio-codec";
47 #sound-dai-cells = <1>;
48 };
49
Simon Glasse96fa6c2018-12-10 10:37:34 -070050 cros_ec: cros-ec {
Simon Glasse6c5c942018-10-01 12:22:08 -060051 reg = <0 0>;
52 compatible = "google,cros-ec-sandbox";
53
54 /*
55 * This describes the flash memory within the EC. Note
56 * that the STM32L flash erases to 0, not 0xff.
57 */
58 flash {
59 image-pos = <0x08000000>;
60 size = <0x20000>;
61 erase-value = <0>;
62
63 /* Information for sandbox */
64 ro {
65 image-pos = <0>;
66 size = <0xf000>;
67 };
68 wp-ro {
69 image-pos = <0xf000>;
70 size = <0x1000>;
71 };
72 rw {
73 image-pos = <0x10000>;
74 size = <0x10000>;
75 };
76 };
77 };
78
Simon Glass2e7d35d2014-02-26 15:59:21 -070079 a-test {
Simon Glass0503e822015-07-06 12:54:36 -060080 reg = <0 1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -070081 compatible = "denx,u-boot-fdt-test";
Simon Glasseb9ef5f2014-07-23 06:54:57 -060082 ping-expect = <0>;
Simon Glass2e7d35d2014-02-26 15:59:21 -070083 ping-add = <0>;
Simon Glass00606d72014-07-23 06:55:03 -060084 u-boot,dm-pre-reloc;
Simon Glass3669e0e2015-01-05 20:05:29 -070085 test-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 5 0 3 2 1>,
86 <0>, <&gpio_a 12>;
87 test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>,
88 <&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>,
89 <&gpio_b 9 0xc 3 2 1>;
Simon Glassa1b17e42018-12-10 10:37:37 -070090 int-value = <1234>;
91 uint-value = <(-1234)>;
Simon Glass2e7d35d2014-02-26 15:59:21 -070092 };
93
94 junk {
Simon Glass0503e822015-07-06 12:54:36 -060095 reg = <1 1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -070096 compatible = "not,compatible";
97 };
98
99 no-compatible {
Simon Glass0503e822015-07-06 12:54:36 -0600100 reg = <2 1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700101 };
102
Simon Glass5d9a88f2018-10-01 12:22:40 -0600103 backlight: backlight {
104 compatible = "pwm-backlight";
105 enable-gpios = <&gpio_a 1>;
106 power-supply = <&ldo_1>;
107 pwms = <&pwm 0 1000>;
108 default-brightness-level = <5>;
109 brightness-levels = <0 16 32 64 128 170 202 234 255>;
110 };
111
Jean-Jacques Hiblot49c752c2018-08-09 16:17:46 +0200112 bind-test {
113 bind-test-child1 {
114 compatible = "sandbox,phy";
115 #phy-cells = <1>;
116 };
117
118 bind-test-child2 {
119 compatible = "simple-bus";
120 };
121 };
122
Simon Glass2e7d35d2014-02-26 15:59:21 -0700123 b-test {
Simon Glass0503e822015-07-06 12:54:36 -0600124 reg = <3 1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700125 compatible = "denx,u-boot-fdt-test";
Simon Glasseb9ef5f2014-07-23 06:54:57 -0600126 ping-expect = <3>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700127 ping-add = <3>;
128 };
129
Jean-Jacques Hiblot86322f52017-04-24 11:51:28 +0200130 phy_provider0: gen_phy@0 {
131 compatible = "sandbox,phy";
132 #phy-cells = <1>;
133 };
134
135 phy_provider1: gen_phy@1 {
136 compatible = "sandbox,phy";
137 #phy-cells = <0>;
138 broken;
139 };
140
141 gen_phy_user: gen_phy_user {
142 compatible = "simple-bus";
143 phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>;
144 phy-names = "phy1", "phy2", "phy3";
145 };
146
Simon Glass2e7d35d2014-02-26 15:59:21 -0700147 some-bus {
148 #address-cells = <1>;
149 #size-cells = <0>;
Simon Glass1ca7e202014-07-23 06:55:18 -0600150 compatible = "denx,u-boot-test-bus";
Simon Glass0503e822015-07-06 12:54:36 -0600151 reg = <3 1>;
Simon Glasseb9ef5f2014-07-23 06:54:57 -0600152 ping-expect = <4>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700153 ping-add = <4>;
Simon Glass1ca7e202014-07-23 06:55:18 -0600154 c-test@5 {
Simon Glass2e7d35d2014-02-26 15:59:21 -0700155 compatible = "denx,u-boot-fdt-test";
156 reg = <5>;
Simon Glass1ca7e202014-07-23 06:55:18 -0600157 ping-expect = <5>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700158 ping-add = <5>;
159 };
Simon Glass1ca7e202014-07-23 06:55:18 -0600160 c-test@0 {
161 compatible = "denx,u-boot-fdt-test";
162 reg = <0>;
163 ping-expect = <6>;
164 ping-add = <6>;
165 };
166 c-test@1 {
167 compatible = "denx,u-boot-fdt-test";
168 reg = <1>;
169 ping-expect = <7>;
170 ping-add = <7>;
171 };
Simon Glass2e7d35d2014-02-26 15:59:21 -0700172 };
173
174 d-test {
Simon Glass0503e822015-07-06 12:54:36 -0600175 reg = <3 1>;
Simon Glass5a66a8f2014-07-23 06:55:12 -0600176 ping-expect = <6>;
177 ping-add = <6>;
178 compatible = "google,another-fdt-test";
179 };
180
181 e-test {
Simon Glass0503e822015-07-06 12:54:36 -0600182 reg = <3 1>;
Simon Glasseb9ef5f2014-07-23 06:54:57 -0600183 ping-expect = <6>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700184 ping-add = <6>;
185 compatible = "google,another-fdt-test";
186 };
187
Simon Glass9cc36a22015-01-25 08:27:05 -0700188 f-test {
189 compatible = "denx,u-boot-fdt-test";
190 };
191
192 g-test {
193 compatible = "denx,u-boot-fdt-test";
194 };
195
Bin Meng2786cd72018-10-10 22:07:01 -0700196 h-test {
197 compatible = "denx,u-boot-fdt-test1";
198 };
199
Patrice Chotardee87a092017-09-04 14:55:57 +0200200 clocks {
201 clk_fixed: clk-fixed {
202 compatible = "fixed-clock";
203 #clock-cells = <0>;
204 clock-frequency = <1234>;
205 };
Anup Patelb630d572019-02-25 08:14:55 +0000206
207 clk_fixed_factor: clk-fixed-factor {
208 compatible = "fixed-factor-clock";
209 #clock-cells = <0>;
210 clock-div = <3>;
211 clock-mult = <2>;
212 clocks = <&clk_fixed>;
213 };
Stephen Warren135aa952016-06-17 09:44:00 -0600214 };
215
216 clk_sandbox: clk-sbox {
Simon Glass6a1c7ce2015-07-06 12:54:24 -0600217 compatible = "sandbox,clk";
Stephen Warren135aa952016-06-17 09:44:00 -0600218 #clock-cells = <1>;
219 };
220
221 clk-test {
222 compatible = "sandbox,clk-test";
223 clocks = <&clk_fixed>,
224 <&clk_sandbox 1>,
225 <&clk_sandbox 0>;
226 clock-names = "fixed", "i2c", "spi";
Simon Glass6a1c7ce2015-07-06 12:54:24 -0600227 };
228
Simon Glass171e9912015-05-22 15:42:15 -0600229 eth@10002000 {
230 compatible = "sandbox,eth";
231 reg = <0x10002000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500232 fake-host-hwaddr = [00 00 66 44 22 00];
Simon Glass171e9912015-05-22 15:42:15 -0600233 };
234
235 eth_5: eth@10003000 {
236 compatible = "sandbox,eth";
237 reg = <0x10003000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500238 fake-host-hwaddr = [00 00 66 44 22 11];
Simon Glass171e9912015-05-22 15:42:15 -0600239 };
240
Bin Meng71d79712015-08-27 22:25:53 -0700241 eth_3: sbe5 {
242 compatible = "sandbox,eth";
243 reg = <0x10005000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500244 fake-host-hwaddr = [00 00 66 44 22 33];
Bin Meng71d79712015-08-27 22:25:53 -0700245 };
246
Simon Glass171e9912015-05-22 15:42:15 -0600247 eth@10004000 {
248 compatible = "sandbox,eth";
249 reg = <0x10004000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500250 fake-host-hwaddr = [00 00 66 44 22 22];
Simon Glass171e9912015-05-22 15:42:15 -0600251 };
252
Rajan Vaja31b82172018-09-19 03:43:46 -0700253 firmware {
254 sandbox_firmware: sandbox-firmware {
255 compatible = "sandbox,firmware";
256 };
257 };
258
Simon Glass0ae0cb72014-10-13 23:42:11 -0600259 gpio_a: base-gpios {
Simon Glass2e7d35d2014-02-26 15:59:21 -0700260 compatible = "sandbox,gpio";
Simon Glass3669e0e2015-01-05 20:05:29 -0700261 gpio-controller;
262 #gpio-cells = <1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700263 gpio-bank-name = "a";
Simon Glass995b60b2018-02-03 10:36:59 -0700264 sandbox,gpio-count = <20>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700265 };
266
Simon Glass3669e0e2015-01-05 20:05:29 -0700267 gpio_b: extra-gpios {
Simon Glass2e7d35d2014-02-26 15:59:21 -0700268 compatible = "sandbox,gpio";
Simon Glass3669e0e2015-01-05 20:05:29 -0700269 gpio-controller;
270 #gpio-cells = <5>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700271 gpio-bank-name = "b";
Simon Glass995b60b2018-02-03 10:36:59 -0700272 sandbox,gpio-count = <10>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700273 };
Simon Glass0ae0cb72014-10-13 23:42:11 -0600274
Simon Glassecc2ed52014-12-10 08:55:55 -0700275 i2c@0 {
276 #address-cells = <1>;
277 #size-cells = <0>;
Simon Glass0503e822015-07-06 12:54:36 -0600278 reg = <0 1>;
Simon Glassecc2ed52014-12-10 08:55:55 -0700279 compatible = "sandbox,i2c";
280 clock-frequency = <100000>;
281 eeprom@2c {
282 reg = <0x2c>;
283 compatible = "i2c-eeprom";
Simon Glass031a6502018-11-18 08:14:34 -0700284 sandbox,emul = <&emul_eeprom>;
Simon Glassecc2ed52014-12-10 08:55:55 -0700285 };
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200286
Simon Glass52d3bc52015-05-22 15:42:17 -0600287 rtc_0: rtc@43 {
288 reg = <0x43>;
289 compatible = "sandbox-rtc";
Simon Glass031a6502018-11-18 08:14:34 -0700290 sandbox,emul = <&emul0>;
Simon Glass52d3bc52015-05-22 15:42:17 -0600291 };
292
293 rtc_1: rtc@61 {
294 reg = <0x61>;
295 compatible = "sandbox-rtc";
Simon Glass031a6502018-11-18 08:14:34 -0700296 sandbox,emul = <&emul1>;
297 };
298
299 i2c_emul: emul {
300 reg = <0xff>;
301 compatible = "sandbox,i2c-emul-parent";
302 emul_eeprom: emul-eeprom {
303 compatible = "sandbox,i2c-eeprom";
304 sandbox,filename = "i2c.bin";
305 sandbox,size = <256>;
306 };
307 emul0: emul0 {
308 compatible = "sandbox,i2c-rtc";
309 };
310 emul1: emull {
Simon Glass52d3bc52015-05-22 15:42:17 -0600311 compatible = "sandbox,i2c-rtc";
312 };
313 };
314
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200315 sandbox_pmic: sandbox_pmic {
316 reg = <0x40>;
Simon Glass031a6502018-11-18 08:14:34 -0700317 sandbox,emul = <&emul_pmic0>;
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200318 };
Lukasz Majewski686df492018-05-15 16:26:40 +0200319
320 mc34708: pmic@41 {
321 reg = <0x41>;
Simon Glass031a6502018-11-18 08:14:34 -0700322 sandbox,emul = <&emul_pmic1>;
Lukasz Majewski686df492018-05-15 16:26:40 +0200323 };
Simon Glassecc2ed52014-12-10 08:55:55 -0700324 };
325
Philipp Tomsich6f2d59c2018-12-14 21:14:29 +0100326 bootcount@0 {
327 compatible = "u-boot,bootcount-rtc";
328 rtc = <&rtc_1>;
329 offset = <0x13>;
330 };
331
Przemyslaw Marczak08d63002015-10-27 13:08:06 +0100332 adc@0 {
333 compatible = "sandbox,adc";
334 vdd-supply = <&buck2>;
335 vss-microvolts = <0>;
336 };
337
Simon Glass3c97c4f2016-01-18 19:52:26 -0700338 lcd {
339 u-boot,dm-pre-reloc;
340 compatible = "sandbox,lcd-sdl";
341 xres = <1366>;
342 yres = <768>;
343 };
344
Simon Glass3c43fba2015-07-06 12:54:34 -0600345 leds {
346 compatible = "gpio-leds";
347
348 iracibble {
349 gpios = <&gpio_a 1 0>;
350 label = "sandbox:red";
351 };
352
353 martinet {
354 gpios = <&gpio_a 2 0>;
355 label = "sandbox:green";
356 };
Patrick Bruenn274fb462018-04-11 11:16:29 +0200357
358 default_on {
359 gpios = <&gpio_a 5 0>;
360 label = "sandbox:default_on";
361 default-state = "on";
362 };
363
364 default_off {
365 gpios = <&gpio_a 6 0>;
366 label = "sandbox:default_off";
367 default-state = "off";
368 };
Simon Glass3c43fba2015-07-06 12:54:34 -0600369 };
370
Stephen Warren8961b522016-05-16 17:41:37 -0600371 mbox: mbox {
372 compatible = "sandbox,mbox";
373 #mbox-cells = <1>;
374 };
375
376 mbox-test {
377 compatible = "sandbox,mbox-test";
378 mboxes = <&mbox 100>, <&mbox 1>;
379 mbox-names = "other", "test";
380 };
381
Mario Sixfa44b532018-08-06 10:23:44 +0200382 cpu-test1 {
383 compatible = "sandbox,cpu_sandbox";
Bin Meng25d0fe72018-10-14 01:07:20 -0700384 u-boot,dm-pre-reloc;
Mario Sixfa44b532018-08-06 10:23:44 +0200385 };
386
387 cpu-test2 {
388 compatible = "sandbox,cpu_sandbox";
Bin Meng25d0fe72018-10-14 01:07:20 -0700389 u-boot,dm-pre-reloc;
Mario Sixfa44b532018-08-06 10:23:44 +0200390 };
391
392 cpu-test3 {
393 compatible = "sandbox,cpu_sandbox";
Bin Meng25d0fe72018-10-14 01:07:20 -0700394 u-boot,dm-pre-reloc;
Mario Sixfa44b532018-08-06 10:23:44 +0200395 };
396
Simon Glasse96fa6c2018-12-10 10:37:34 -0700397 i2s: i2s {
398 compatible = "sandbox,i2s";
399 #sound-dai-cells = <1>;
Simon Glassecc79732019-02-16 20:24:56 -0700400 sandbox,silent; /* Don't emit sounds while testing */
Simon Glasse96fa6c2018-12-10 10:37:34 -0700401 };
402
Jean-Jacques Hiblot07e33712019-07-05 09:33:57 +0200403 nop-test_0 {
404 compatible = "sandbox,nop_sandbox1";
405 nop-test_1 {
406 compatible = "sandbox,nop_sandbox2";
407 bind = "True";
408 };
409 nop-test_2 {
410 compatible = "sandbox,nop_sandbox2";
411 bind = "False";
412 };
413 };
414
Mario Six004e67c2018-07-31 14:24:14 +0200415 misc-test {
416 compatible = "sandbox,misc_sandbox";
417 };
418
Simon Glasse48eeb92017-04-23 20:02:07 -0600419 mmc2 {
420 compatible = "sandbox,mmc";
421 };
422
423 mmc1 {
424 compatible = "sandbox,mmc";
425 };
426
427 mmc0 {
Simon Glass8e6cc462015-07-06 12:54:32 -0600428 compatible = "sandbox,mmc";
429 };
430
Simon Glassb45c8332019-02-16 20:24:50 -0700431 pch {
432 compatible = "sandbox,pch";
433 };
434
Bin Mengdee4d752018-08-03 01:14:41 -0700435 pci0: pci-controller0 {
Simon Glassd3b7ff12015-03-05 12:25:34 -0700436 compatible = "sandbox,pci";
437 device_type = "pci";
438 #address-cells = <3>;
439 #size-cells = <2>;
440 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000
441 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
Bin Meng2db7f2b2018-08-03 01:14:39 -0700442 pci@0,0 {
443 compatible = "pci-generic";
444 reg = <0x0000 0 0 0 0>;
445 emul@0,0 {
446 compatible = "sandbox,swap-case";
447 };
448 };
Alex Marginean21ebbaf2019-06-07 11:24:24 +0300449 pci@1,0 {
450 compatible = "pci-generic";
451 reg = <0x0800 0 0 0 0>;
452 emul@0,0 {
453 compatible = "sandbox,swap-case";
454 use-ea;
455 };
456 };
Simon Glassd3b7ff12015-03-05 12:25:34 -0700457 pci@1f,0 {
458 compatible = "pci-generic";
459 reg = <0xf800 0 0 0 0>;
460 emul@1f,0 {
461 compatible = "sandbox,swap-case";
462 };
463 };
464 };
465
Bin Mengdee4d752018-08-03 01:14:41 -0700466 pci1: pci-controller1 {
467 compatible = "sandbox,pci";
468 device_type = "pci";
469 #address-cells = <3>;
470 #size-cells = <2>;
471 ranges = <0x02000000 0 0x30000000 0x30000000 0 0x2000
472 0x01000000 0 0x40000000 0x40000000 0 0x2000>;
Bin Meng490d13a2018-08-03 01:14:47 -0700473 sandbox,dev-info = <0x08 0x00 0x1234 0x5678
Marek Vasutb59349a2018-10-10 21:27:08 +0200474 0x0c 0x00 0x1234 0x5678
475 0x10 0x00 0x1234 0x5678>;
476 pci@10,0 {
477 reg = <0x8000 0 0 0 0>;
478 };
Bin Mengdee4d752018-08-03 01:14:41 -0700479 };
480
Bin Meng3ed214a2018-08-03 01:14:50 -0700481 pci2: pci-controller2 {
482 compatible = "sandbox,pci";
483 device_type = "pci";
484 #address-cells = <3>;
485 #size-cells = <2>;
486 ranges = <0x02000000 0 0x50000000 0x50000000 0 0x2000
487 0x01000000 0 0x60000000 0x60000000 0 0x2000>;
488 sandbox,dev-info = <0x08 0x00 0x1234 0x5678>;
489 pci@1f,0 {
490 compatible = "pci-generic";
491 reg = <0xf800 0 0 0 0>;
492 emul@1f,0 {
493 compatible = "sandbox,swap-case";
494 };
495 };
496 };
497
Ramon Friedbb413332019-04-27 11:15:23 +0300498 pci_ep: pci_ep {
499 compatible = "sandbox,pci_ep";
500 };
501
Simon Glass98561572017-04-23 20:10:44 -0600502 probing {
503 compatible = "simple-bus";
504 test1 {
505 compatible = "denx,u-boot-probe-test";
506 };
507
508 test2 {
509 compatible = "denx,u-boot-probe-test";
510 };
511
512 test3 {
513 compatible = "denx,u-boot-probe-test";
514 };
515
516 test4 {
517 compatible = "denx,u-boot-probe-test";
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100518 first-syscon = <&syscon0>;
519 second-sys-ctrl = <&another_system_controller>;
Patrick Delaunaya442e612019-03-07 09:57:13 +0100520 third-syscon = <&syscon2>;
Simon Glass98561572017-04-23 20:10:44 -0600521 };
522 };
523
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600524 pwrdom: power-domain {
525 compatible = "sandbox,power-domain";
526 #power-domain-cells = <1>;
527 };
528
529 power-domain-test {
530 compatible = "sandbox,power-domain-test";
531 power-domains = <&pwrdom 2>;
532 };
533
Simon Glass5d9a88f2018-10-01 12:22:40 -0600534 pwm: pwm {
Simon Glass43b41562017-04-16 21:01:11 -0600535 compatible = "sandbox,pwm";
Simon Glass5d9a88f2018-10-01 12:22:40 -0600536 #pwm-cells = <2>;
Simon Glass43b41562017-04-16 21:01:11 -0600537 };
538
539 pwm2 {
540 compatible = "sandbox,pwm";
Simon Glass5d9a88f2018-10-01 12:22:40 -0600541 #pwm-cells = <2>;
Simon Glass43b41562017-04-16 21:01:11 -0600542 };
543
Simon Glass64ce0ca2015-07-06 12:54:31 -0600544 ram {
545 compatible = "sandbox,ram";
546 };
547
Simon Glass5010d982015-07-06 12:54:29 -0600548 reset@0 {
549 compatible = "sandbox,warm-reset";
550 };
551
552 reset@1 {
553 compatible = "sandbox,reset";
554 };
555
Stephen Warren4581b712016-06-17 09:43:59 -0600556 resetc: reset-ctl {
557 compatible = "sandbox,reset-ctl";
558 #reset-cells = <1>;
559 };
560
561 reset-ctl-test {
562 compatible = "sandbox,reset-ctl-test";
563 resets = <&resetc 100>, <&resetc 2>;
564 reset-names = "other", "test";
565 };
566
Nishanth Menon52159402015-09-17 15:42:41 -0500567 rproc_1: rproc@1 {
568 compatible = "sandbox,test-processor";
569 remoteproc-name = "remoteproc-test-dev1";
570 };
571
572 rproc_2: rproc@2 {
573 compatible = "sandbox,test-processor";
574 internal-memory-mapped;
575 remoteproc-name = "remoteproc-test-dev2";
576 };
577
Simon Glass5d9a88f2018-10-01 12:22:40 -0600578 panel {
579 compatible = "simple-panel";
580 backlight = <&backlight 0 100>;
581 };
582
Ramon Fried7fd7e2c2018-07-02 02:57:59 +0300583 smem@0 {
584 compatible = "sandbox,smem";
585 };
586
Simon Glassd4901892018-12-10 10:37:36 -0700587 sound {
588 compatible = "sandbox,sound";
589 cpu {
590 sound-dai = <&i2s 0>;
591 };
592
593 codec {
594 sound-dai = <&audio 0>;
595 };
596 };
597
Simon Glass0ae0cb72014-10-13 23:42:11 -0600598 spi@0 {
599 #address-cells = <1>;
600 #size-cells = <0>;
Simon Glass0503e822015-07-06 12:54:36 -0600601 reg = <0 1>;
Simon Glass0ae0cb72014-10-13 23:42:11 -0600602 compatible = "sandbox,spi";
603 cs-gpios = <0>, <&gpio_a 0>;
604 spi.bin@0 {
605 reg = <0>;
Neil Armstrongffd4c7c2019-02-10 10:16:20 +0000606 compatible = "spansion,m25p16", "jedec,spi-nor";
Simon Glass0ae0cb72014-10-13 23:42:11 -0600607 spi-max-frequency = <40000000>;
608 sandbox,filename = "spi.bin";
609 };
610 };
611
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100612 syscon0: syscon@0 {
Simon Glass04035fd2015-07-06 12:54:35 -0600613 compatible = "sandbox,syscon0";
Mario Six82744c22018-10-04 09:00:40 +0200614 reg = <0x10 16>;
Simon Glass04035fd2015-07-06 12:54:35 -0600615 };
616
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100617 another_system_controller: syscon@1 {
Simon Glass04035fd2015-07-06 12:54:35 -0600618 compatible = "sandbox,syscon1";
Simon Glass0503e822015-07-06 12:54:36 -0600619 reg = <0x20 5
620 0x28 6
621 0x30 7
622 0x38 8>;
Simon Glass04035fd2015-07-06 12:54:35 -0600623 };
624
Patrick Delaunaya442e612019-03-07 09:57:13 +0100625 syscon2: syscon@2 {
Masahiro Yamada99552c32018-04-23 13:26:53 +0900626 compatible = "simple-mfd", "syscon";
627 reg = <0x40 5
628 0x48 6
629 0x50 7
630 0x58 8>;
631 };
632
Thomas Choue7cc8d12015-12-11 16:27:34 +0800633 timer {
634 compatible = "sandbox,timer";
635 clock-frequency = <1000000>;
636 };
637
Miquel Raynalb91ad162018-05-15 11:57:27 +0200638 tpm2 {
639 compatible = "sandbox,tpm2";
640 };
641
Simon Glass171e9912015-05-22 15:42:15 -0600642 uart0: serial {
643 compatible = "sandbox,serial";
644 u-boot,dm-pre-reloc;
Joe Hershbergerbfacad72015-03-22 17:09:15 -0500645 };
646
Simon Glasse00cb222015-03-25 12:23:05 -0600647 usb_0: usb@0 {
648 compatible = "sandbox,usb";
649 status = "disabled";
650 hub {
651 compatible = "sandbox,usb-hub";
652 #address-cells = <1>;
653 #size-cells = <0>;
654 flash-stick {
655 reg = <0>;
656 compatible = "sandbox,usb-flash";
657 };
658 };
659 };
660
661 usb_1: usb@1 {
662 compatible = "sandbox,usb";
663 hub {
664 compatible = "usb-hub";
665 usb,device-class = <9>;
666 hub-emul {
667 compatible = "sandbox,usb-hub";
668 #address-cells = <1>;
669 #size-cells = <0>;
Simon Glass431cbd62015-11-08 23:48:01 -0700670 flash-stick@0 {
Simon Glasse00cb222015-03-25 12:23:05 -0600671 reg = <0>;
672 compatible = "sandbox,usb-flash";
673 sandbox,filepath = "testflash.bin";
674 };
675
Simon Glass431cbd62015-11-08 23:48:01 -0700676 flash-stick@1 {
677 reg = <1>;
678 compatible = "sandbox,usb-flash";
679 sandbox,filepath = "testflash1.bin";
680 };
681
682 flash-stick@2 {
683 reg = <2>;
684 compatible = "sandbox,usb-flash";
685 sandbox,filepath = "testflash2.bin";
686 };
687
Simon Glassbff1a712015-11-08 23:48:08 -0700688 keyb@3 {
689 reg = <3>;
690 compatible = "sandbox,usb-keyb";
691 };
692
Simon Glasse00cb222015-03-25 12:23:05 -0600693 };
694 };
695 };
696
697 usb_2: usb@2 {
698 compatible = "sandbox,usb";
699 status = "disabled";
700 };
701
Mateusz Kulikowskid33776e2016-03-31 23:12:28 +0200702 spmi: spmi@0 {
703 compatible = "sandbox,spmi";
704 #address-cells = <0x1>;
705 #size-cells = <0x1>;
706 pm8916@0 {
707 compatible = "qcom,spmi-pmic";
708 reg = <0x0 0x1>;
709 #address-cells = <0x1>;
710 #size-cells = <0x1>;
711
712 spmi_gpios: gpios@c000 {
713 compatible = "qcom,pm8916-gpio";
714 reg = <0xc000 0x400>;
715 gpio-controller;
716 gpio-count = <4>;
717 #gpio-cells = <2>;
718 gpio-bank-name="spmi";
719 };
720 };
721 };
maxims@google.com0753bc22017-04-17 12:00:21 -0700722
723 wdt0: wdt@0 {
724 compatible = "sandbox,wdt";
725 };
Rob Clarkf2006802018-01-10 11:33:30 +0100726
Mario Six957983e2018-08-09 14:51:19 +0200727 axi: axi@0 {
728 compatible = "sandbox,axi";
729 #address-cells = <0x1>;
730 #size-cells = <0x1>;
731 store@0 {
732 compatible = "sandbox,sandbox_store";
733 reg = <0x0 0x400>;
734 };
735 };
736
Rob Clarkf2006802018-01-10 11:33:30 +0100737 chosen {
Simon Glass7e878162018-02-03 10:36:58 -0700738 #address-cells = <1>;
739 #size-cells = <1>;
Rob Clarkf2006802018-01-10 11:33:30 +0100740 chosen-test {
741 compatible = "denx,u-boot-fdt-test";
742 reg = <9 1>;
743 };
744 };
Mario Sixe8d52912018-03-12 14:53:33 +0100745
746 translation-test@8000 {
747 compatible = "simple-bus";
748 reg = <0x8000 0x4000>;
749
750 #address-cells = <0x2>;
751 #size-cells = <0x1>;
752
753 ranges = <0 0x0 0x8000 0x1000
754 1 0x100 0x9000 0x1000
755 2 0x200 0xA000 0x1000
756 3 0x300 0xB000 0x1000
757 >;
758
759 dev@0,0 {
760 compatible = "denx,u-boot-fdt-dummy";
761 reg = <0 0x0 0x1000>;
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +0100762 reg-names = "sandbox-dummy-0";
Mario Sixe8d52912018-03-12 14:53:33 +0100763 };
764
765 dev@1,100 {
766 compatible = "denx,u-boot-fdt-dummy";
767 reg = <1 0x100 0x1000>;
768
769 };
770
771 dev@2,200 {
772 compatible = "denx,u-boot-fdt-dummy";
773 reg = <2 0x200 0x1000>;
774 };
775
776
777 noxlatebus@3,300 {
778 compatible = "simple-bus";
779 reg = <3 0x300 0x1000>;
780
781 #address-cells = <0x1>;
782 #size-cells = <0x0>;
783
784 dev@42 {
785 compatible = "denx,u-boot-fdt-dummy";
786 reg = <0x42>;
787 };
788 };
789 };
Mario Six4eea5312018-09-27 09:19:31 +0200790
791 osd {
792 compatible = "sandbox,sandbox_osd";
793 };
Tom Rinid24c1d02018-09-30 18:16:51 -0400794
Mario Sixe6fd0182018-07-31 11:44:13 +0200795 board {
796 compatible = "sandbox,board_sandbox";
797 };
Jens Wiklanderfa830ae2018-09-25 16:40:16 +0200798
799 sandbox_tee {
800 compatible = "sandbox,tee";
801 };
Bin Meng4f89d492018-10-15 02:21:26 -0700802
803 sandbox_virtio1 {
804 compatible = "sandbox,virtio1";
805 };
806
807 sandbox_virtio2 {
808 compatible = "sandbox,virtio2";
809 };
Patrice Chotardf41a8242018-10-24 14:10:23 +0200810
811 pinctrl {
812 compatible = "sandbox,pinctrl";
813 };
Benjamin Gaignard7f84fc62018-11-27 13:49:50 +0100814
815 hwspinlock@0 {
816 compatible = "sandbox,hwspinlock";
817 };
Grygorii Strashkob3309912018-11-28 19:17:51 +0100818
819 dma: dma {
820 compatible = "sandbox,dma";
821 #dma-cells = <1>;
822
823 dmas = <&dma 0>, <&dma 1>, <&dma 2>;
824 dma-names = "m2m", "tx0", "rx0";
825 };
Alex Margineanec9594a2019-06-03 19:12:28 +0300826
Alex Margineanc3d9f3f2019-07-12 10:13:53 +0300827 /*
828 * keep mdio-mux ahead of mdio so that the mux is removed first at the
829 * end of the test. If parent mdio is removed first, clean-up of the
830 * mux will trigger a 2nd probe of parent-mdio, leaving parent-mdio
831 * active at the end of the test. That it turn doesn't allow the mdio
832 * class to be destroyed, triggering an error.
833 */
834 mdio-mux-test {
835 compatible = "sandbox,mdio-mux";
836 #address-cells = <1>;
837 #size-cells = <0>;
838 mdio-parent-bus = <&mdio>;
839
840 mdio-ch-test@0 {
841 reg = <0>;
842 };
843 mdio-ch-test@1 {
844 reg = <1>;
845 };
846 };
847
848 mdio: mdio-test {
Alex Margineanec9594a2019-06-03 19:12:28 +0300849 compatible = "sandbox,mdio";
850 };
Simon Glass2e7d35d2014-02-26 15:59:21 -0700851};
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200852
853#include "sandbox_pmic.dtsi"