blob: 1d011ded7cc0ec3bb79c8a17a7d81de9db3cd824 [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 };
Stephen Warren135aa952016-06-17 09:44:00 -0600206 };
207
208 clk_sandbox: clk-sbox {
Simon Glass6a1c7ce2015-07-06 12:54:24 -0600209 compatible = "sandbox,clk";
Stephen Warren135aa952016-06-17 09:44:00 -0600210 #clock-cells = <1>;
211 };
212
213 clk-test {
214 compatible = "sandbox,clk-test";
215 clocks = <&clk_fixed>,
216 <&clk_sandbox 1>,
217 <&clk_sandbox 0>;
218 clock-names = "fixed", "i2c", "spi";
Simon Glass6a1c7ce2015-07-06 12:54:24 -0600219 };
220
Simon Glass171e9912015-05-22 15:42:15 -0600221 eth@10002000 {
222 compatible = "sandbox,eth";
223 reg = <0x10002000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500224 fake-host-hwaddr = [00 00 66 44 22 00];
Simon Glass171e9912015-05-22 15:42:15 -0600225 };
226
227 eth_5: eth@10003000 {
228 compatible = "sandbox,eth";
229 reg = <0x10003000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500230 fake-host-hwaddr = [00 00 66 44 22 11];
Simon Glass171e9912015-05-22 15:42:15 -0600231 };
232
Bin Meng71d79712015-08-27 22:25:53 -0700233 eth_3: sbe5 {
234 compatible = "sandbox,eth";
235 reg = <0x10005000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500236 fake-host-hwaddr = [00 00 66 44 22 33];
Bin Meng71d79712015-08-27 22:25:53 -0700237 };
238
Simon Glass171e9912015-05-22 15:42:15 -0600239 eth@10004000 {
240 compatible = "sandbox,eth";
241 reg = <0x10004000 0x1000>;
Joe Hershbergerc6fa51a2018-07-02 14:47:45 -0500242 fake-host-hwaddr = [00 00 66 44 22 22];
Simon Glass171e9912015-05-22 15:42:15 -0600243 };
244
Rajan Vaja31b82172018-09-19 03:43:46 -0700245 firmware {
246 sandbox_firmware: sandbox-firmware {
247 compatible = "sandbox,firmware";
248 };
249 };
250
Simon Glass0ae0cb72014-10-13 23:42:11 -0600251 gpio_a: base-gpios {
Simon Glass2e7d35d2014-02-26 15:59:21 -0700252 compatible = "sandbox,gpio";
Simon Glass3669e0e2015-01-05 20:05:29 -0700253 gpio-controller;
254 #gpio-cells = <1>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700255 gpio-bank-name = "a";
Simon Glass995b60b2018-02-03 10:36:59 -0700256 sandbox,gpio-count = <20>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700257 };
258
Simon Glass3669e0e2015-01-05 20:05:29 -0700259 gpio_b: extra-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 = <5>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700263 gpio-bank-name = "b";
Simon Glass995b60b2018-02-03 10:36:59 -0700264 sandbox,gpio-count = <10>;
Simon Glass2e7d35d2014-02-26 15:59:21 -0700265 };
Simon Glass0ae0cb72014-10-13 23:42:11 -0600266
Simon Glassecc2ed52014-12-10 08:55:55 -0700267 i2c@0 {
268 #address-cells = <1>;
269 #size-cells = <0>;
Simon Glass0503e822015-07-06 12:54:36 -0600270 reg = <0 1>;
Simon Glassecc2ed52014-12-10 08:55:55 -0700271 compatible = "sandbox,i2c";
272 clock-frequency = <100000>;
273 eeprom@2c {
274 reg = <0x2c>;
275 compatible = "i2c-eeprom";
Simon Glass031a6502018-11-18 08:14:34 -0700276 sandbox,emul = <&emul_eeprom>;
Simon Glassecc2ed52014-12-10 08:55:55 -0700277 };
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200278
Simon Glass52d3bc52015-05-22 15:42:17 -0600279 rtc_0: rtc@43 {
280 reg = <0x43>;
281 compatible = "sandbox-rtc";
Simon Glass031a6502018-11-18 08:14:34 -0700282 sandbox,emul = <&emul0>;
Simon Glass52d3bc52015-05-22 15:42:17 -0600283 };
284
285 rtc_1: rtc@61 {
286 reg = <0x61>;
287 compatible = "sandbox-rtc";
Simon Glass031a6502018-11-18 08:14:34 -0700288 sandbox,emul = <&emul1>;
289 };
290
291 i2c_emul: emul {
292 reg = <0xff>;
293 compatible = "sandbox,i2c-emul-parent";
294 emul_eeprom: emul-eeprom {
295 compatible = "sandbox,i2c-eeprom";
296 sandbox,filename = "i2c.bin";
297 sandbox,size = <256>;
298 };
299 emul0: emul0 {
300 compatible = "sandbox,i2c-rtc";
301 };
302 emul1: emull {
Simon Glass52d3bc52015-05-22 15:42:17 -0600303 compatible = "sandbox,i2c-rtc";
304 };
305 };
306
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200307 sandbox_pmic: sandbox_pmic {
308 reg = <0x40>;
Simon Glass031a6502018-11-18 08:14:34 -0700309 sandbox,emul = <&emul_pmic0>;
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200310 };
Lukasz Majewski686df492018-05-15 16:26:40 +0200311
312 mc34708: pmic@41 {
313 reg = <0x41>;
Simon Glass031a6502018-11-18 08:14:34 -0700314 sandbox,emul = <&emul_pmic1>;
Lukasz Majewski686df492018-05-15 16:26:40 +0200315 };
Simon Glassecc2ed52014-12-10 08:55:55 -0700316 };
317
Philipp Tomsich6f2d59c2018-12-14 21:14:29 +0100318 bootcount@0 {
319 compatible = "u-boot,bootcount-rtc";
320 rtc = <&rtc_1>;
321 offset = <0x13>;
322 };
323
Przemyslaw Marczak08d63002015-10-27 13:08:06 +0100324 adc@0 {
325 compatible = "sandbox,adc";
326 vdd-supply = <&buck2>;
327 vss-microvolts = <0>;
328 };
329
Simon Glass3c97c4f2016-01-18 19:52:26 -0700330 lcd {
331 u-boot,dm-pre-reloc;
332 compatible = "sandbox,lcd-sdl";
333 xres = <1366>;
334 yres = <768>;
335 };
336
Simon Glass3c43fba2015-07-06 12:54:34 -0600337 leds {
338 compatible = "gpio-leds";
339
340 iracibble {
341 gpios = <&gpio_a 1 0>;
342 label = "sandbox:red";
343 };
344
345 martinet {
346 gpios = <&gpio_a 2 0>;
347 label = "sandbox:green";
348 };
Patrick Bruenn274fb462018-04-11 11:16:29 +0200349
350 default_on {
351 gpios = <&gpio_a 5 0>;
352 label = "sandbox:default_on";
353 default-state = "on";
354 };
355
356 default_off {
357 gpios = <&gpio_a 6 0>;
358 label = "sandbox:default_off";
359 default-state = "off";
360 };
Simon Glass3c43fba2015-07-06 12:54:34 -0600361 };
362
Stephen Warren8961b522016-05-16 17:41:37 -0600363 mbox: mbox {
364 compatible = "sandbox,mbox";
365 #mbox-cells = <1>;
366 };
367
368 mbox-test {
369 compatible = "sandbox,mbox-test";
370 mboxes = <&mbox 100>, <&mbox 1>;
371 mbox-names = "other", "test";
372 };
373
Mario Sixfa44b532018-08-06 10:23:44 +0200374 cpu-test1 {
375 compatible = "sandbox,cpu_sandbox";
Bin Meng25d0fe72018-10-14 01:07:20 -0700376 u-boot,dm-pre-reloc;
Mario Sixfa44b532018-08-06 10:23:44 +0200377 };
378
379 cpu-test2 {
380 compatible = "sandbox,cpu_sandbox";
Bin Meng25d0fe72018-10-14 01:07:20 -0700381 u-boot,dm-pre-reloc;
Mario Sixfa44b532018-08-06 10:23:44 +0200382 };
383
384 cpu-test3 {
385 compatible = "sandbox,cpu_sandbox";
Bin Meng25d0fe72018-10-14 01:07:20 -0700386 u-boot,dm-pre-reloc;
Mario Sixfa44b532018-08-06 10:23:44 +0200387 };
388
Simon Glasse96fa6c2018-12-10 10:37:34 -0700389 i2s: i2s {
390 compatible = "sandbox,i2s";
391 #sound-dai-cells = <1>;
392 };
393
Mario Six004e67c2018-07-31 14:24:14 +0200394 misc-test {
395 compatible = "sandbox,misc_sandbox";
396 };
397
Simon Glasse48eeb92017-04-23 20:02:07 -0600398 mmc2 {
399 compatible = "sandbox,mmc";
400 };
401
402 mmc1 {
403 compatible = "sandbox,mmc";
404 };
405
406 mmc0 {
Simon Glass8e6cc462015-07-06 12:54:32 -0600407 compatible = "sandbox,mmc";
408 };
409
Bin Mengdee4d752018-08-03 01:14:41 -0700410 pci0: pci-controller0 {
Simon Glassd3b7ff12015-03-05 12:25:34 -0700411 compatible = "sandbox,pci";
412 device_type = "pci";
413 #address-cells = <3>;
414 #size-cells = <2>;
415 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000
416 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
Bin Meng2db7f2b2018-08-03 01:14:39 -0700417 pci@0,0 {
418 compatible = "pci-generic";
419 reg = <0x0000 0 0 0 0>;
420 emul@0,0 {
421 compatible = "sandbox,swap-case";
422 };
423 };
Simon Glassd3b7ff12015-03-05 12:25:34 -0700424 pci@1f,0 {
425 compatible = "pci-generic";
426 reg = <0xf800 0 0 0 0>;
427 emul@1f,0 {
428 compatible = "sandbox,swap-case";
429 };
430 };
431 };
432
Bin Mengdee4d752018-08-03 01:14:41 -0700433 pci1: pci-controller1 {
434 compatible = "sandbox,pci";
435 device_type = "pci";
436 #address-cells = <3>;
437 #size-cells = <2>;
438 ranges = <0x02000000 0 0x30000000 0x30000000 0 0x2000
439 0x01000000 0 0x40000000 0x40000000 0 0x2000>;
Bin Meng490d13a2018-08-03 01:14:47 -0700440 sandbox,dev-info = <0x08 0x00 0x1234 0x5678
Marek Vasutb59349a2018-10-10 21:27:08 +0200441 0x0c 0x00 0x1234 0x5678
442 0x10 0x00 0x1234 0x5678>;
443 pci@10,0 {
444 reg = <0x8000 0 0 0 0>;
445 };
Bin Mengdee4d752018-08-03 01:14:41 -0700446 };
447
Bin Meng3ed214a2018-08-03 01:14:50 -0700448 pci2: pci-controller2 {
449 compatible = "sandbox,pci";
450 device_type = "pci";
451 #address-cells = <3>;
452 #size-cells = <2>;
453 ranges = <0x02000000 0 0x50000000 0x50000000 0 0x2000
454 0x01000000 0 0x60000000 0x60000000 0 0x2000>;
455 sandbox,dev-info = <0x08 0x00 0x1234 0x5678>;
456 pci@1f,0 {
457 compatible = "pci-generic";
458 reg = <0xf800 0 0 0 0>;
459 emul@1f,0 {
460 compatible = "sandbox,swap-case";
461 };
462 };
463 };
464
Simon Glass98561572017-04-23 20:10:44 -0600465 probing {
466 compatible = "simple-bus";
467 test1 {
468 compatible = "denx,u-boot-probe-test";
469 };
470
471 test2 {
472 compatible = "denx,u-boot-probe-test";
473 };
474
475 test3 {
476 compatible = "denx,u-boot-probe-test";
477 };
478
479 test4 {
480 compatible = "denx,u-boot-probe-test";
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100481 first-syscon = <&syscon0>;
482 second-sys-ctrl = <&another_system_controller>;
Simon Glass98561572017-04-23 20:10:44 -0600483 };
484 };
485
Stephen Warren61f5ddc2016-07-13 13:45:31 -0600486 pwrdom: power-domain {
487 compatible = "sandbox,power-domain";
488 #power-domain-cells = <1>;
489 };
490
491 power-domain-test {
492 compatible = "sandbox,power-domain-test";
493 power-domains = <&pwrdom 2>;
494 };
495
Simon Glass5d9a88f2018-10-01 12:22:40 -0600496 pwm: pwm {
Simon Glass43b41562017-04-16 21:01:11 -0600497 compatible = "sandbox,pwm";
Simon Glass5d9a88f2018-10-01 12:22:40 -0600498 #pwm-cells = <2>;
Simon Glass43b41562017-04-16 21:01:11 -0600499 };
500
501 pwm2 {
502 compatible = "sandbox,pwm";
Simon Glass5d9a88f2018-10-01 12:22:40 -0600503 #pwm-cells = <2>;
Simon Glass43b41562017-04-16 21:01:11 -0600504 };
505
Simon Glass64ce0ca2015-07-06 12:54:31 -0600506 ram {
507 compatible = "sandbox,ram";
508 };
509
Simon Glass5010d982015-07-06 12:54:29 -0600510 reset@0 {
511 compatible = "sandbox,warm-reset";
512 };
513
514 reset@1 {
515 compatible = "sandbox,reset";
516 };
517
Stephen Warren4581b712016-06-17 09:43:59 -0600518 resetc: reset-ctl {
519 compatible = "sandbox,reset-ctl";
520 #reset-cells = <1>;
521 };
522
523 reset-ctl-test {
524 compatible = "sandbox,reset-ctl-test";
525 resets = <&resetc 100>, <&resetc 2>;
526 reset-names = "other", "test";
527 };
528
Nishanth Menon52159402015-09-17 15:42:41 -0500529 rproc_1: rproc@1 {
530 compatible = "sandbox,test-processor";
531 remoteproc-name = "remoteproc-test-dev1";
532 };
533
534 rproc_2: rproc@2 {
535 compatible = "sandbox,test-processor";
536 internal-memory-mapped;
537 remoteproc-name = "remoteproc-test-dev2";
538 };
539
Simon Glass5d9a88f2018-10-01 12:22:40 -0600540 panel {
541 compatible = "simple-panel";
542 backlight = <&backlight 0 100>;
543 };
544
Ramon Fried7fd7e2c2018-07-02 02:57:59 +0300545 smem@0 {
546 compatible = "sandbox,smem";
547 };
548
Simon Glassd4901892018-12-10 10:37:36 -0700549 sound {
550 compatible = "sandbox,sound";
551 cpu {
552 sound-dai = <&i2s 0>;
553 };
554
555 codec {
556 sound-dai = <&audio 0>;
557 };
558 };
559
Simon Glass0ae0cb72014-10-13 23:42:11 -0600560 spi@0 {
561 #address-cells = <1>;
562 #size-cells = <0>;
Simon Glass0503e822015-07-06 12:54:36 -0600563 reg = <0 1>;
Simon Glass0ae0cb72014-10-13 23:42:11 -0600564 compatible = "sandbox,spi";
565 cs-gpios = <0>, <&gpio_a 0>;
566 spi.bin@0 {
567 reg = <0>;
568 compatible = "spansion,m25p16", "spi-flash";
569 spi-max-frequency = <40000000>;
570 sandbox,filename = "spi.bin";
571 };
572 };
573
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100574 syscon0: syscon@0 {
Simon Glass04035fd2015-07-06 12:54:35 -0600575 compatible = "sandbox,syscon0";
Mario Six82744c22018-10-04 09:00:40 +0200576 reg = <0x10 16>;
Simon Glass04035fd2015-07-06 12:54:35 -0600577 };
578
Jean-Jacques Hiblot6c3af1f2018-11-29 10:57:37 +0100579 another_system_controller: syscon@1 {
Simon Glass04035fd2015-07-06 12:54:35 -0600580 compatible = "sandbox,syscon1";
Simon Glass0503e822015-07-06 12:54:36 -0600581 reg = <0x20 5
582 0x28 6
583 0x30 7
584 0x38 8>;
Simon Glass04035fd2015-07-06 12:54:35 -0600585 };
586
Masahiro Yamada99552c32018-04-23 13:26:53 +0900587 syscon@2 {
588 compatible = "simple-mfd", "syscon";
589 reg = <0x40 5
590 0x48 6
591 0x50 7
592 0x58 8>;
593 };
594
Thomas Choue7cc8d12015-12-11 16:27:34 +0800595 timer {
596 compatible = "sandbox,timer";
597 clock-frequency = <1000000>;
598 };
599
Miquel Raynalb91ad162018-05-15 11:57:27 +0200600 tpm2 {
601 compatible = "sandbox,tpm2";
602 };
603
Simon Glass171e9912015-05-22 15:42:15 -0600604 uart0: serial {
605 compatible = "sandbox,serial";
606 u-boot,dm-pre-reloc;
Joe Hershbergerbfacad72015-03-22 17:09:15 -0500607 };
608
Simon Glasse00cb222015-03-25 12:23:05 -0600609 usb_0: usb@0 {
610 compatible = "sandbox,usb";
611 status = "disabled";
612 hub {
613 compatible = "sandbox,usb-hub";
614 #address-cells = <1>;
615 #size-cells = <0>;
616 flash-stick {
617 reg = <0>;
618 compatible = "sandbox,usb-flash";
619 };
620 };
621 };
622
623 usb_1: usb@1 {
624 compatible = "sandbox,usb";
625 hub {
626 compatible = "usb-hub";
627 usb,device-class = <9>;
628 hub-emul {
629 compatible = "sandbox,usb-hub";
630 #address-cells = <1>;
631 #size-cells = <0>;
Simon Glass431cbd62015-11-08 23:48:01 -0700632 flash-stick@0 {
Simon Glasse00cb222015-03-25 12:23:05 -0600633 reg = <0>;
634 compatible = "sandbox,usb-flash";
635 sandbox,filepath = "testflash.bin";
636 };
637
Simon Glass431cbd62015-11-08 23:48:01 -0700638 flash-stick@1 {
639 reg = <1>;
640 compatible = "sandbox,usb-flash";
641 sandbox,filepath = "testflash1.bin";
642 };
643
644 flash-stick@2 {
645 reg = <2>;
646 compatible = "sandbox,usb-flash";
647 sandbox,filepath = "testflash2.bin";
648 };
649
Simon Glassbff1a712015-11-08 23:48:08 -0700650 keyb@3 {
651 reg = <3>;
652 compatible = "sandbox,usb-keyb";
653 };
654
Simon Glasse00cb222015-03-25 12:23:05 -0600655 };
656 };
657 };
658
659 usb_2: usb@2 {
660 compatible = "sandbox,usb";
661 status = "disabled";
662 };
663
Mateusz Kulikowskid33776e2016-03-31 23:12:28 +0200664 spmi: spmi@0 {
665 compatible = "sandbox,spmi";
666 #address-cells = <0x1>;
667 #size-cells = <0x1>;
668 pm8916@0 {
669 compatible = "qcom,spmi-pmic";
670 reg = <0x0 0x1>;
671 #address-cells = <0x1>;
672 #size-cells = <0x1>;
673
674 spmi_gpios: gpios@c000 {
675 compatible = "qcom,pm8916-gpio";
676 reg = <0xc000 0x400>;
677 gpio-controller;
678 gpio-count = <4>;
679 #gpio-cells = <2>;
680 gpio-bank-name="spmi";
681 };
682 };
683 };
maxims@google.com0753bc22017-04-17 12:00:21 -0700684
685 wdt0: wdt@0 {
686 compatible = "sandbox,wdt";
687 };
Rob Clarkf2006802018-01-10 11:33:30 +0100688
Mario Six957983e2018-08-09 14:51:19 +0200689 axi: axi@0 {
690 compatible = "sandbox,axi";
691 #address-cells = <0x1>;
692 #size-cells = <0x1>;
693 store@0 {
694 compatible = "sandbox,sandbox_store";
695 reg = <0x0 0x400>;
696 };
697 };
698
Rob Clarkf2006802018-01-10 11:33:30 +0100699 chosen {
Simon Glass7e878162018-02-03 10:36:58 -0700700 #address-cells = <1>;
701 #size-cells = <1>;
Rob Clarkf2006802018-01-10 11:33:30 +0100702 chosen-test {
703 compatible = "denx,u-boot-fdt-test";
704 reg = <9 1>;
705 };
706 };
Mario Sixe8d52912018-03-12 14:53:33 +0100707
708 translation-test@8000 {
709 compatible = "simple-bus";
710 reg = <0x8000 0x4000>;
711
712 #address-cells = <0x2>;
713 #size-cells = <0x1>;
714
715 ranges = <0 0x0 0x8000 0x1000
716 1 0x100 0x9000 0x1000
717 2 0x200 0xA000 0x1000
718 3 0x300 0xB000 0x1000
719 >;
720
721 dev@0,0 {
722 compatible = "denx,u-boot-fdt-dummy";
723 reg = <0 0x0 0x1000>;
Álvaro Fernández Rojas79598822018-12-03 19:37:09 +0100724 reg-names = "sandbox-dummy-0";
Mario Sixe8d52912018-03-12 14:53:33 +0100725 };
726
727 dev@1,100 {
728 compatible = "denx,u-boot-fdt-dummy";
729 reg = <1 0x100 0x1000>;
730
731 };
732
733 dev@2,200 {
734 compatible = "denx,u-boot-fdt-dummy";
735 reg = <2 0x200 0x1000>;
736 };
737
738
739 noxlatebus@3,300 {
740 compatible = "simple-bus";
741 reg = <3 0x300 0x1000>;
742
743 #address-cells = <0x1>;
744 #size-cells = <0x0>;
745
746 dev@42 {
747 compatible = "denx,u-boot-fdt-dummy";
748 reg = <0x42>;
749 };
750 };
751 };
Mario Six4eea5312018-09-27 09:19:31 +0200752
753 osd {
754 compatible = "sandbox,sandbox_osd";
755 };
Tom Rinid24c1d02018-09-30 18:16:51 -0400756
Mario Sixe6fd0182018-07-31 11:44:13 +0200757 board {
758 compatible = "sandbox,board_sandbox";
759 };
Jens Wiklanderfa830ae2018-09-25 16:40:16 +0200760
761 sandbox_tee {
762 compatible = "sandbox,tee";
763 };
Bin Meng4f89d492018-10-15 02:21:26 -0700764
765 sandbox_virtio1 {
766 compatible = "sandbox,virtio1";
767 };
768
769 sandbox_virtio2 {
770 compatible = "sandbox,virtio2";
771 };
Patrice Chotardf41a8242018-10-24 14:10:23 +0200772
773 pinctrl {
774 compatible = "sandbox,pinctrl";
775 };
Benjamin Gaignard7f84fc62018-11-27 13:49:50 +0100776
777 hwspinlock@0 {
778 compatible = "sandbox,hwspinlock";
779 };
Grygorii Strashkob3309912018-11-28 19:17:51 +0100780
781 dma: dma {
782 compatible = "sandbox,dma";
783 #dma-cells = <1>;
784
785 dmas = <&dma 0>, <&dma 1>, <&dma 2>;
786 dma-names = "m2m", "tx0", "rx0";
787 };
Simon Glass2e7d35d2014-02-26 15:59:21 -0700788};
Przemyslaw Marczak9038cd52015-05-13 13:38:35 +0200789
790#include "sandbox_pmic.dtsi"