fdt: Fix alignment issue when reading 64-bits properties from fdt
[oweals/u-boot.git] / arch / sandbox / dts / test.dts
1 /dts-v1/;
2
3 / {
4         model = "sandbox";
5         compatible = "sandbox";
6         #address-cells = <1>;
7         #size-cells = <1>;
8
9         aliases {
10                 console = &uart0;
11                 eth0 = "/eth@10002000";
12                 eth3 = &eth_3;
13                 eth5 = &eth_5;
14                 gpio1 = &gpio_a;
15                 gpio2 = &gpio_b;
16                 i2c0 = "/i2c@0";
17                 mmc0 = "/mmc0";
18                 mmc1 = "/mmc1";
19                 pci0 = &pci0;
20                 pci1 = &pci1;
21                 pci2 = &pci2;
22                 remoteproc1 = &rproc_1;
23                 remoteproc2 = &rproc_2;
24                 rtc0 = &rtc_0;
25                 rtc1 = &rtc_1;
26                 spi0 = "/spi@0";
27                 testfdt6 = "/e-test";
28                 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";
34                 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";
38                 usb0 = &usb_0;
39                 usb1 = &usb_1;
40                 usb2 = &usb_2;
41                 axi0 = &axi;
42                 osd0 = "/osd";
43         };
44
45         audio: audio-codec {
46                 compatible = "sandbox,audio-codec";
47                 #sound-dai-cells = <1>;
48         };
49
50         cros_ec: cros-ec {
51                 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
79         dsi_host: dsi_host {
80                 compatible = "sandbox,dsi-host";
81         };
82
83         a-test {
84                 reg = <0 1>;
85                 compatible = "denx,u-boot-fdt-test";
86                 ping-expect = <0>;
87                 ping-add = <0>;
88                 u-boot,dm-pre-reloc;
89                 test-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 5 0 3 2 1>,
90                         <0>, <&gpio_a 12>;
91                 test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>,
92                         <&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>,
93                         <&gpio_b 9 0xc 3 2 1>;
94                 int-value = <1234>;
95                 uint-value = <(-1234)>;
96         };
97
98         junk {
99                 reg = <1 1>;
100                 compatible = "not,compatible";
101         };
102
103         no-compatible {
104                 reg = <2 1>;
105         };
106
107         backlight: backlight {
108                 compatible = "pwm-backlight";
109                 enable-gpios = <&gpio_a 1>;
110                 power-supply = <&ldo_1>;
111                 pwms = <&pwm 0 1000>;
112                 default-brightness-level = <5>;
113                 brightness-levels = <0 16 32 64 128 170 202 234 255>;
114         };
115
116         bind-test {
117                 bind-test-child1 {
118                         compatible = "sandbox,phy";
119                         #phy-cells = <1>;
120                 };
121
122                 bind-test-child2 {
123                         compatible = "simple-bus";
124                 };
125         };
126
127         b-test {
128                 reg = <3 1>;
129                 compatible = "denx,u-boot-fdt-test";
130                 ping-expect = <3>;
131                 ping-add = <3>;
132         };
133
134         phy_provider0: gen_phy@0 {
135                 compatible = "sandbox,phy";
136                 #phy-cells = <1>;
137         };
138
139         phy_provider1: gen_phy@1 {
140                 compatible = "sandbox,phy";
141                 #phy-cells = <0>;
142                 broken;
143         };
144
145         gen_phy_user: gen_phy_user {
146                 compatible = "simple-bus";
147                 phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>;
148                 phy-names = "phy1", "phy2", "phy3";
149         };
150
151         some-bus {
152                 #address-cells = <1>;
153                 #size-cells = <0>;
154                 compatible = "denx,u-boot-test-bus";
155                 reg = <3 1>;
156                 ping-expect = <4>;
157                 ping-add = <4>;
158                 c-test@5 {
159                         compatible = "denx,u-boot-fdt-test";
160                         reg = <5>;
161                         ping-expect = <5>;
162                         ping-add = <5>;
163                 };
164                 c-test@0 {
165                         compatible = "denx,u-boot-fdt-test";
166                         reg = <0>;
167                         ping-expect = <6>;
168                         ping-add = <6>;
169                 };
170                 c-test@1 {
171                         compatible = "denx,u-boot-fdt-test";
172                         reg = <1>;
173                         ping-expect = <7>;
174                         ping-add = <7>;
175                 };
176         };
177
178         d-test {
179                 reg = <3 1>;
180                 ping-expect = <6>;
181                 ping-add = <6>;
182                 compatible = "google,another-fdt-test";
183         };
184
185         e-test {
186                 reg = <3 1>;
187                 ping-expect = <6>;
188                 ping-add = <6>;
189                 compatible = "google,another-fdt-test";
190         };
191
192         f-test {
193                 compatible = "denx,u-boot-fdt-test";
194         };
195
196         g-test {
197                 compatible = "denx,u-boot-fdt-test";
198         };
199
200         h-test {
201                 compatible = "denx,u-boot-fdt-test1";
202         };
203
204         clocks {
205                 clk_fixed: clk-fixed {
206                         compatible = "fixed-clock";
207                         #clock-cells = <0>;
208                         clock-frequency = <1234>;
209                 };
210
211                 clk_fixed_factor: clk-fixed-factor {
212                         compatible = "fixed-factor-clock";
213                         #clock-cells = <0>;
214                         clock-div = <3>;
215                         clock-mult = <2>;
216                         clocks = <&clk_fixed>;
217                 };
218
219                 osc {
220                         compatible = "fixed-clock";
221                         #clock-cells = <0>;
222                         clock-frequency = <20000000>;
223                 };
224         };
225
226         clk_sandbox: clk-sbox {
227                 compatible = "sandbox,clk";
228                 #clock-cells = <1>;
229         };
230
231         clk-test {
232                 compatible = "sandbox,clk-test";
233                 clocks = <&clk_fixed>,
234                          <&clk_sandbox 1>,
235                          <&clk_sandbox 0>;
236                 clock-names = "fixed", "i2c", "spi";
237         };
238
239         ccf: clk-ccf {
240                 compatible = "sandbox,clk-ccf";
241         };
242
243         eth@10002000 {
244                 compatible = "sandbox,eth";
245                 reg = <0x10002000 0x1000>;
246                 fake-host-hwaddr = [00 00 66 44 22 00];
247         };
248
249         eth_5: eth@10003000 {
250                 compatible = "sandbox,eth";
251                 reg = <0x10003000 0x1000>;
252                 fake-host-hwaddr = [00 00 66 44 22 11];
253         };
254
255         eth_3: sbe5 {
256                 compatible = "sandbox,eth";
257                 reg = <0x10005000 0x1000>;
258                 fake-host-hwaddr = [00 00 66 44 22 33];
259         };
260
261         eth@10004000 {
262                 compatible = "sandbox,eth";
263                 reg = <0x10004000 0x1000>;
264                 fake-host-hwaddr = [00 00 66 44 22 22];
265         };
266
267         firmware {
268                 sandbox_firmware: sandbox-firmware {
269                         compatible = "sandbox,firmware";
270                 };
271         };
272
273         gpio_a: base-gpios {
274                 compatible = "sandbox,gpio";
275                 gpio-controller;
276                 #gpio-cells = <1>;
277                 gpio-bank-name = "a";
278                 sandbox,gpio-count = <20>;
279         };
280
281         gpio_b: extra-gpios {
282                 compatible = "sandbox,gpio";
283                 gpio-controller;
284                 #gpio-cells = <5>;
285                 gpio-bank-name = "b";
286                 sandbox,gpio-count = <10>;
287         };
288
289         i2c@0 {
290                 #address-cells = <1>;
291                 #size-cells = <0>;
292                 reg = <0 1>;
293                 compatible = "sandbox,i2c";
294                 clock-frequency = <100000>;
295                 eeprom@2c {
296                         reg = <0x2c>;
297                         compatible = "i2c-eeprom";
298                         sandbox,emul = <&emul_eeprom>;
299                 };
300
301                 rtc_0: rtc@43 {
302                         reg = <0x43>;
303                         compatible = "sandbox-rtc";
304                         sandbox,emul = <&emul0>;
305                 };
306
307                 rtc_1: rtc@61 {
308                         reg = <0x61>;
309                         compatible = "sandbox-rtc";
310                         sandbox,emul = <&emul1>;
311                 };
312
313                 i2c_emul: emul {
314                         reg = <0xff>;
315                         compatible = "sandbox,i2c-emul-parent";
316                         emul_eeprom: emul-eeprom {
317                                 compatible = "sandbox,i2c-eeprom";
318                                 sandbox,filename = "i2c.bin";
319                                 sandbox,size = <256>;
320                         };
321                         emul0: emul0 {
322                                 compatible = "sandbox,i2c-rtc";
323                         };
324                         emul1: emull {
325                                 compatible = "sandbox,i2c-rtc";
326                         };
327                 };
328
329                 sandbox_pmic: sandbox_pmic {
330                         reg = <0x40>;
331                         sandbox,emul = <&emul_pmic0>;
332                 };
333
334                 mc34708: pmic@41 {
335                         reg = <0x41>;
336                         sandbox,emul = <&emul_pmic1>;
337                 };
338         };
339
340         bootcount@0 {
341                 compatible = "u-boot,bootcount-rtc";
342                 rtc = <&rtc_1>;
343                 offset = <0x13>;
344         };
345
346         adc@0 {
347                 compatible = "sandbox,adc";
348                 vdd-supply = <&buck2>;
349                 vss-microvolts = <0>;
350         };
351
352         lcd {
353                 u-boot,dm-pre-reloc;
354                 compatible = "sandbox,lcd-sdl";
355                 xres = <1366>;
356                 yres = <768>;
357         };
358
359         leds {
360                 compatible = "gpio-leds";
361
362                 iracibble {
363                         gpios = <&gpio_a 1 0>;
364                         label = "sandbox:red";
365                 };
366
367                 martinet {
368                         gpios = <&gpio_a 2 0>;
369                         label = "sandbox:green";
370                 };
371
372                 default_on {
373                         gpios = <&gpio_a 5 0>;
374                         label = "sandbox:default_on";
375                         default-state = "on";
376                 };
377
378                 default_off {
379                         gpios = <&gpio_a 6 0>;
380                         label = "sandbox:default_off";
381                         default-state = "off";
382                 };
383         };
384
385         mbox: mbox {
386                 compatible = "sandbox,mbox";
387                 #mbox-cells = <1>;
388         };
389
390         mbox-test {
391                 compatible = "sandbox,mbox-test";
392                 mboxes = <&mbox 100>, <&mbox 1>;
393                 mbox-names = "other", "test";
394         };
395
396         cpus {
397                 cpu-test1 {
398                         compatible = "sandbox,cpu_sandbox";
399                         u-boot,dm-pre-reloc;
400                 };
401
402                 cpu-test2 {
403                         compatible = "sandbox,cpu_sandbox";
404                         u-boot,dm-pre-reloc;
405                 };
406
407                 cpu-test3 {
408                         compatible = "sandbox,cpu_sandbox";
409                         u-boot,dm-pre-reloc;
410                 };
411         };
412
413         i2s: i2s {
414                 compatible = "sandbox,i2s";
415                 #sound-dai-cells = <1>;
416                 sandbox,silent; /* Don't emit sounds while testing */
417         };
418
419         nop-test_0 {
420                 compatible = "sandbox,nop_sandbox1";
421                 nop-test_1 {
422                         compatible = "sandbox,nop_sandbox2";
423                         bind = "True";
424                 };
425                 nop-test_2 {
426                         compatible = "sandbox,nop_sandbox2";
427                         bind = "False";
428                 };
429         };
430
431         misc-test {
432                 compatible = "sandbox,misc_sandbox";
433         };
434
435         mmc2 {
436                 compatible = "sandbox,mmc";
437         };
438
439         mmc1 {
440                 compatible = "sandbox,mmc";
441         };
442
443         mmc0 {
444                 compatible = "sandbox,mmc";
445         };
446
447         pch {
448                 compatible = "sandbox,pch";
449         };
450
451         pci0: pci-controller0 {
452                 compatible = "sandbox,pci";
453                 device_type = "pci";
454                 #address-cells = <3>;
455                 #size-cells = <2>;
456                 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000000
457                                 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
458                 pci@0,0 {
459                         compatible = "pci-generic";
460                         reg = <0x0000 0 0 0 0>;
461                         sandbox,emul = <&swap_case_emul0_0>;
462                 };
463                 pci@1,0 {
464                         compatible = "pci-generic";
465                         /* reg 0 is at 0x14, using FDT_PCI_SPACE_MEM32 */
466                         reg = <0x02000814 0 0 0 0
467                                0x01000810 0 0 0 0>;
468                         sandbox,emul = <&swap_case_emul0_1>;
469                 };
470                 pci@1f,0 {
471                         compatible = "pci-generic";
472                         /* reg 0 is at 0x10, using FDT_PCI_SPACE_IO */
473                         reg = <0x0100f810 0 0 0 0>;
474                         sandbox,emul = <&swap_case_emul0_1f>;
475                 };
476         };
477
478         pci-emul0 {
479                 compatible = "sandbox,pci-emul-parent";
480                 swap_case_emul0_0: emul0@0,0 {
481                         compatible = "sandbox,swap-case";
482                 };
483                 swap_case_emul0_1: emul0@1,0 {
484                         compatible = "sandbox,swap-case";
485                         use-ea;
486                 };
487                 swap_case_emul0_1f: emul0@1f,0 {
488                         compatible = "sandbox,swap-case";
489                 };
490         };
491
492         pci1: pci-controller1 {
493                 compatible = "sandbox,pci";
494                 device_type = "pci";
495                 #address-cells = <3>;
496                 #size-cells = <2>;
497                 ranges = <0x02000000 0 0x30000000 0x30000000 0 0x2000
498                                 0x01000000 0 0x40000000 0x40000000 0 0x2000>;
499                 sandbox,dev-info = <0x08 0x00 0x1234 0x5678
500                                     0x0c 0x00 0x1234 0x5678
501                                     0x10 0x00 0x1234 0x5678>;
502                 pci@10,0 {
503                         reg = <0x8000 0 0 0 0>;
504                 };
505         };
506
507         pci2: pci-controller2 {
508                 compatible = "sandbox,pci";
509                 device_type = "pci";
510                 #address-cells = <3>;
511                 #size-cells = <2>;
512                 ranges = <0x02000000 0 0x50000000 0x50000000 0 0x2000
513                                 0x01000000 0 0x60000000 0x60000000 0 0x2000>;
514                 sandbox,dev-info = <0x08 0x00 0x1234 0x5678>;
515                 pci@1f,0 {
516                         compatible = "pci-generic";
517                         reg = <0xf800 0 0 0 0>;
518                         sandbox,emul = <&swap_case_emul2_1f>;
519                 };
520         };
521
522         pci-emul2 {
523                 compatible = "sandbox,pci-emul-parent";
524                 swap_case_emul2_1f: emul2@1f,0 {
525                         compatible = "sandbox,swap-case";
526                 };
527         };
528
529         pci_ep: pci_ep {
530                 compatible = "sandbox,pci_ep";
531         };
532
533         probing {
534                 compatible = "simple-bus";
535                 test1 {
536                         compatible = "denx,u-boot-probe-test";
537                 };
538
539                 test2 {
540                         compatible = "denx,u-boot-probe-test";
541                 };
542
543                 test3 {
544                         compatible = "denx,u-boot-probe-test";
545                 };
546
547                 test4 {
548                         compatible = "denx,u-boot-probe-test";
549                         first-syscon = <&syscon0>;
550                         second-sys-ctrl = <&another_system_controller>;
551                         third-syscon = <&syscon2>;
552                 };
553         };
554
555         pwrdom: power-domain {
556                 compatible = "sandbox,power-domain";
557                 #power-domain-cells = <1>;
558         };
559
560         power-domain-test {
561                 compatible = "sandbox,power-domain-test";
562                 power-domains = <&pwrdom 2>;
563         };
564
565         pwm: pwm {
566                 compatible = "sandbox,pwm";
567                 #pwm-cells = <2>;
568         };
569
570         pwm2 {
571                 compatible = "sandbox,pwm";
572                 #pwm-cells = <2>;
573         };
574
575         ram {
576                 compatible = "sandbox,ram";
577         };
578
579         reset@0 {
580                 compatible = "sandbox,warm-reset";
581         };
582
583         reset@1 {
584                 compatible = "sandbox,reset";
585         };
586
587         resetc: reset-ctl {
588                 compatible = "sandbox,reset-ctl";
589                 #reset-cells = <1>;
590         };
591
592         reset-ctl-test {
593                 compatible = "sandbox,reset-ctl-test";
594                 resets = <&resetc 100>, <&resetc 2>;
595                 reset-names = "other", "test";
596         };
597
598         rproc_1: rproc@1 {
599                 compatible = "sandbox,test-processor";
600                 remoteproc-name = "remoteproc-test-dev1";
601         };
602
603         rproc_2: rproc@2 {
604                 compatible = "sandbox,test-processor";
605                 internal-memory-mapped;
606                 remoteproc-name = "remoteproc-test-dev2";
607         };
608
609         panel {
610                 compatible = "simple-panel";
611                 backlight = <&backlight 0 100>;
612         };
613
614         smem@0 {
615                 compatible = "sandbox,smem";
616         };
617
618         sound {
619                 compatible = "sandbox,sound";
620                 cpu {
621                         sound-dai = <&i2s 0>;
622                 };
623
624                 codec {
625                         sound-dai = <&audio 0>;
626                 };
627         };
628
629         spi@0 {
630                 #address-cells = <1>;
631                 #size-cells = <0>;
632                 reg = <0 1>;
633                 compatible = "sandbox,spi";
634                 cs-gpios = <0>, <&gpio_a 0>;
635                 spi.bin@0 {
636                         reg = <0>;
637                         compatible = "spansion,m25p16", "jedec,spi-nor";
638                         spi-max-frequency = <40000000>;
639                         sandbox,filename = "spi.bin";
640                 };
641         };
642
643         syscon0: syscon@0 {
644                 compatible = "sandbox,syscon0";
645                 reg = <0x10 16>;
646         };
647
648         another_system_controller: syscon@1 {
649                 compatible = "sandbox,syscon1";
650                 reg = <0x20 5
651                         0x28 6
652                         0x30 7
653                         0x38 8>;
654         };
655
656         syscon2: syscon@2 {
657                 compatible = "simple-mfd", "syscon";
658                 reg = <0x40 5
659                         0x48 6
660                         0x50 7
661                         0x58 8>;
662         };
663
664         timer {
665                 compatible = "sandbox,timer";
666                 clock-frequency = <1000000>;
667         };
668
669         tpm2 {
670                 compatible = "sandbox,tpm2";
671         };
672
673         uart0: serial {
674                 compatible = "sandbox,serial";
675                 u-boot,dm-pre-reloc;
676         };
677
678         usb_0: usb@0 {
679                 compatible = "sandbox,usb";
680                 status = "disabled";
681                 hub {
682                         compatible = "sandbox,usb-hub";
683                         #address-cells = <1>;
684                         #size-cells = <0>;
685                         flash-stick {
686                                 reg = <0>;
687                                 compatible = "sandbox,usb-flash";
688                         };
689                 };
690         };
691
692         usb_1: usb@1 {
693                 compatible = "sandbox,usb";
694                 hub {
695                         compatible = "usb-hub";
696                         usb,device-class = <9>;
697                         hub-emul {
698                                 compatible = "sandbox,usb-hub";
699                                 #address-cells = <1>;
700                                 #size-cells = <0>;
701                                 flash-stick@0 {
702                                         reg = <0>;
703                                         compatible = "sandbox,usb-flash";
704                                         sandbox,filepath = "testflash.bin";
705                                 };
706
707                                 flash-stick@1 {
708                                         reg = <1>;
709                                         compatible = "sandbox,usb-flash";
710                                         sandbox,filepath = "testflash1.bin";
711                                 };
712
713                                 flash-stick@2 {
714                                         reg = <2>;
715                                         compatible = "sandbox,usb-flash";
716                                         sandbox,filepath = "testflash2.bin";
717                                 };
718
719                                 keyb@3 {
720                                         reg = <3>;
721                                         compatible = "sandbox,usb-keyb";
722                                 };
723
724                         };
725                 };
726         };
727
728         usb_2: usb@2 {
729                 compatible = "sandbox,usb";
730                 status = "disabled";
731         };
732
733         spmi: spmi@0 {
734                 compatible = "sandbox,spmi";
735                 #address-cells = <0x1>;
736                 #size-cells = <0x1>;
737                 ranges;
738                 pm8916@0 {
739                         compatible = "qcom,spmi-pmic";
740                         reg = <0x0 0x1>;
741                         #address-cells = <0x1>;
742                         #size-cells = <0x1>;
743                         ranges;
744
745                         spmi_gpios: gpios@c000 {
746                                 compatible = "qcom,pm8916-gpio";
747                                 reg = <0xc000 0x400>;
748                                 gpio-controller;
749                                 gpio-count = <4>;
750                                 #gpio-cells = <2>;
751                                 gpio-bank-name="spmi";
752                         };
753                 };
754         };
755
756         wdt0: wdt@0 {
757                 compatible = "sandbox,wdt";
758         };
759
760         axi: axi@0 {
761                 compatible = "sandbox,axi";
762                 #address-cells = <0x1>;
763                 #size-cells = <0x1>;
764                 store@0 {
765                         compatible = "sandbox,sandbox_store";
766                         reg = <0x0 0x400>;
767                 };
768         };
769
770         chosen {
771                 #address-cells = <1>;
772                 #size-cells = <1>;
773                 chosen-test {
774                         compatible = "denx,u-boot-fdt-test";
775                         reg = <9 1>;
776                 };
777         };
778
779         translation-test@8000 {
780                 compatible = "simple-bus";
781                 reg = <0x8000 0x4000>;
782
783                 #address-cells = <0x2>;
784                 #size-cells = <0x1>;
785
786                 ranges = <0 0x0 0x8000 0x1000
787                           1 0x100 0x9000 0x1000
788                           2 0x200 0xA000 0x1000
789                           3 0x300 0xB000 0x1000
790                          >;
791
792                 dma-ranges = <0 0x000 0x10000000 0x1000
793                               1 0x100 0x20000000 0x1000
794                              >;
795
796                 dev@0,0 {
797                         compatible = "denx,u-boot-fdt-dummy";
798                         reg = <0 0x0 0x1000>;
799                         reg-names = "sandbox-dummy-0";
800                 };
801
802                 dev@1,100 {
803                         compatible = "denx,u-boot-fdt-dummy";
804                         reg = <1 0x100 0x1000>;
805
806                 };
807
808                 dev@2,200 {
809                         compatible = "denx,u-boot-fdt-dummy";
810                         reg = <2 0x200 0x1000>;
811                 };
812
813
814                 noxlatebus@3,300 {
815                         compatible = "simple-bus";
816                         reg = <3 0x300 0x1000>;
817
818                         #address-cells = <0x1>;
819                         #size-cells = <0x0>;
820
821                         dev@42 {
822                                 compatible = "denx,u-boot-fdt-dummy";
823                                 reg = <0x42>;
824                         };
825                 };
826         };
827
828         osd {
829                 compatible = "sandbox,sandbox_osd";
830         };
831
832         board {
833                 compatible = "sandbox,board_sandbox";
834         };
835
836         sandbox_tee {
837                 compatible = "sandbox,tee";
838         };
839
840         sandbox_virtio1 {
841                 compatible = "sandbox,virtio1";
842         };
843
844         sandbox_virtio2 {
845                 compatible = "sandbox,virtio2";
846         };
847
848         pinctrl {
849                 compatible = "sandbox,pinctrl";
850         };
851
852         hwspinlock@0 {
853                 compatible = "sandbox,hwspinlock";
854         };
855
856         dma: dma {
857                 compatible = "sandbox,dma";
858                 #dma-cells = <1>;
859
860                 dmas = <&dma 0>, <&dma 1>, <&dma 2>;
861                 dma-names = "m2m", "tx0", "rx0";
862         };
863
864         /*
865          * keep mdio-mux ahead of mdio so that the mux is removed first at the
866          * end of the test.  If parent mdio is removed first, clean-up of the
867          * mux will trigger a 2nd probe of parent-mdio, leaving parent-mdio
868          * active at the end of the test.  That it turn doesn't allow the mdio
869          * class to be destroyed, triggering an error.
870          */
871         mdio-mux-test {
872                 compatible = "sandbox,mdio-mux";
873                 #address-cells = <1>;
874                 #size-cells = <0>;
875                 mdio-parent-bus = <&mdio>;
876
877                 mdio-ch-test@0 {
878                         reg = <0>;
879                 };
880                 mdio-ch-test@1 {
881                         reg = <1>;
882                 };
883         };
884
885         mdio: mdio-test {
886                 compatible = "sandbox,mdio";
887         };
888 };
889
890 #include "sandbox_pmic.dtsi"