sandbox: mmc: Support fixed MMC devices
[platform/kernel/u-boot.git] / arch / sandbox / dts / test.dts
1 /dts-v1/;
2
3 #include <dt-bindings/gpio/gpio.h>
4 #include <dt-bindings/gpio/sandbox-gpio.h>
5 #include <dt-bindings/input/input.h>
6 #include <dt-bindings/pinctrl/sandbox-pinmux.h>
7 #include <dt-bindings/mux/mux.h>
8
9 / {
10         model = "sandbox";
11         compatible = "sandbox";
12         #address-cells = <1>;
13         #size-cells = <1>;
14
15         aliases {
16                 console = &uart0;
17                 ethernet0 = "/eth@10002000";
18                 ethernet2 = &swp_0;
19                 ethernet3 = &eth_3;
20                 ethernet4 = &dsa_eth0;
21                 ethernet5 = &eth_5;
22                 gpio1 = &gpio_a;
23                 gpio2 = &gpio_b;
24                 gpio3 = &gpio_c;
25                 i2c0 = "/i2c@0";
26                 mmc0 = "/mmc0";
27                 mmc1 = "/mmc1";
28                 pci0 = &pci0;
29                 pci1 = &pci1;
30                 pci2 = &pci2;
31                 remoteproc0 = &rproc_1;
32                 remoteproc1 = &rproc_2;
33                 rtc0 = &rtc_0;
34                 rtc1 = &rtc_1;
35                 spi0 = "/spi@0";
36                 testfdt6 = "/e-test";
37                 testbus3 = "/some-bus";
38                 testfdt0 = "/some-bus/c-test@0";
39                 testfdt12 = "/some-bus/c-test@1";
40                 testfdt3 = "/b-test";
41                 testfdt5 = "/some-bus/c-test@5";
42                 testfdt8 = "/a-test";
43                 testfdtm1 = &testfdtm1;
44                 fdt-dummy0 = "/translation-test@8000/dev@0,0";
45                 fdt-dummy1 = "/translation-test@8000/dev@1,100";
46                 fdt-dummy2 = "/translation-test@8000/dev@2,200";
47                 fdt-dummy3 = "/translation-test@8000/noxlatebus@3,300/dev@42";
48                 usb0 = &usb_0;
49                 usb1 = &usb_1;
50                 usb2 = &usb_2;
51                 axi0 = &axi;
52                 osd0 = "/osd";
53         };
54
55         config {
56                 environment {
57                         from_fdt = "yes";
58                         fdt_env_path = "";
59                 };
60         };
61
62         audio: audio-codec {
63                 compatible = "sandbox,audio-codec";
64                 #sound-dai-cells = <1>;
65         };
66
67         buttons {
68                 compatible = "gpio-keys";
69
70                 btn1 {
71                         gpios = <&gpio_a 3 0>;
72                         label = "button1";
73                 };
74
75                 btn2 {
76                         gpios = <&gpio_a 4 0>;
77                         label = "button2";
78                 };
79         };
80
81         buttons2 {
82                 compatible = "adc-keys";
83                 io-channels = <&adc 3>;
84                 keyup-threshold-microvolt = <3000000>;
85
86                 button-up {
87                         label = "button3";
88                         linux,code = <KEY_F3>;
89                         press-threshold-microvolt = <1500000>;
90                 };
91
92                 button-down {
93                         label = "button4";
94                         linux,code = <KEY_F4>;
95                         press-threshold-microvolt = <1000000>;
96                 };
97
98                 button-enter {
99                         label = "button5";
100                         linux,code = <KEY_F5>;
101                         press-threshold-microvolt = <500000>;
102                 };
103         };
104
105         cros_ec: cros-ec {
106                 reg = <0 0>;
107                 compatible = "google,cros-ec-sandbox";
108
109                 /*
110                  * This describes the flash memory within the EC. Note
111                  * that the STM32L flash erases to 0, not 0xff.
112                  */
113                 flash {
114                         image-pos = <0x08000000>;
115                         size = <0x20000>;
116                         erase-value = <0>;
117
118                         /* Information for sandbox */
119                         ro {
120                                 image-pos = <0>;
121                                 size = <0xf000>;
122                         };
123                         wp-ro {
124                                 image-pos = <0xf000>;
125                                 size = <0x1000>;
126                                 used = <0x884>;
127                                 compress = "lz4";
128                                 uncomp-size = <0xcf8>;
129                                 hash {
130                                         algo = "sha256";
131                                         value = [00 01 02 03 04 05 06 07
132                                                 08 09 0a 0b 0c 0d 0e 0f
133                                                 10 11 12 13 14 15 16 17
134                                                 18 19 1a 1b 1c 1d 1e 1f];
135                                 };
136                         };
137                         rw {
138                                 image-pos = <0x10000>;
139                                 size = <0x10000>;
140                         };
141                 };
142
143                 cros_ec_pwm: cros-ec-pwm {
144                         compatible = "google,cros-ec-pwm";
145                         #pwm-cells = <1>;
146                 };
147
148         };
149
150         dsi_host: dsi_host {
151                 compatible = "sandbox,dsi-host";
152         };
153
154         a-test {
155                 reg = <0 1>;
156                 compatible = "denx,u-boot-fdt-test";
157                 ping-expect = <0>;
158                 ping-add = <0>;
159                 u-boot,dm-pre-reloc;
160                 test-gpios = <&gpio_a 1>, <&gpio_a 4>,
161                         <&gpio_b 5 GPIO_ACTIVE_HIGH 3 2 1>,
162                         <0>, <&gpio_a 12>;
163                 test2-gpios = <&gpio_a 1>, <&gpio_a 4>,
164                         <&gpio_b 6 GPIO_ACTIVE_LOW 3 2 1>,
165                         <&gpio_b 7 GPIO_IN 3 2 1>,
166                         <&gpio_b 8 GPIO_OUT 3 2 1>,
167                         <&gpio_b 9 (GPIO_OUT|GPIO_OUT_ACTIVE) 3 2 1>;
168                 test3-gpios =
169                         <&gpio_c 0 (GPIO_OUT|GPIO_OPEN_DRAIN)>,
170                         <&gpio_c 1 (GPIO_OUT|GPIO_OPEN_SOURCE)>,
171                         <&gpio_c 2 GPIO_OUT>,
172                         <&gpio_c 3 (GPIO_IN|GPIO_PULL_UP)>,
173                         <&gpio_c 4 (GPIO_IN|GPIO_PULL_DOWN)>,
174                         <&gpio_c 5 GPIO_IN>,
175                         <&gpio_c 6 (GPIO_ACTIVE_LOW|GPIO_OUT|GPIO_OPEN_DRAIN)>,
176                         <&gpio_c 7 (GPIO_ACTIVE_LOW|GPIO_OUT|GPIO_OPEN_SOURCE)>;
177                 test4-gpios = <&gpio_a 14>, <&gpio_b 4 1 3 2 1>;
178                 test5-gpios = <&gpio_a 19>;
179
180                 int-value = <1234>;
181                 uint-value = <(-1234)>;
182                 int64-value = /bits/ 64 <0x1111222233334444>;
183                 int-array = <5678 9123 4567>;
184                 str-value = "test string";
185                 interrupts-extended = <&irq 3 0>;
186                 acpi,name = "GHIJ";
187                 phandle-value = <&gpio_c 10>, <0xFFFFFFFF 20>, <&gpio_a 30>;
188
189                 mux-controls = <&muxcontroller0 0>, <&muxcontroller0 1>,
190                                <&muxcontroller0 2>, <&muxcontroller0 3>,
191                                <&muxcontroller1>;
192                 mux-control-names = "mux0", "mux1", "mux2", "mux3", "mux4";
193                 mux-syscon = <&syscon3>;
194                 display-timings {
195                         timing0: 240x320 {
196                                 clock-frequency = <6500000>;
197                                 hactive = <240>;
198                                 vactive = <320>;
199                                 hfront-porch = <6>;
200                                 hback-porch = <7>;
201                                 hsync-len = <1>;
202                                 vback-porch = <5>;
203                                 vfront-porch = <8>;
204                                 vsync-len = <2>;
205                                 hsync-active = <1>;
206                                 vsync-active = <0>;
207                                 de-active = <1>;
208                                 pixelclk-active = <1>;
209                                 interlaced;
210                                 doublescan;
211                                 doubleclk;
212                         };
213                         timing1: 480x800 {
214                                 clock-frequency = <9000000>;
215                                 hactive = <480>;
216                                 vactive = <800>;
217                                 hfront-porch = <10>;
218                                 hback-porch = <59>;
219                                 hsync-len = <12>;
220                                 vback-porch = <15>;
221                                 vfront-porch = <17>;
222                                 vsync-len = <16>;
223                                 hsync-active = <0>;
224                                 vsync-active = <1>;
225                                 de-active = <0>;
226                                 pixelclk-active = <0>;
227                         };
228                         timing2: 800x480 {
229                                 clock-frequency = <33500000>;
230                                 hactive = <800>;
231                                 vactive = <480>;
232                                 hback-porch = <89>;
233                                 hfront-porch = <164>;
234                                 vback-porch = <23>;
235                                 vfront-porch = <10>;
236                                 hsync-len = <11>;
237                                 vsync-len = <13>;
238                         };
239                 };
240         };
241
242         junk {
243                 reg = <1 1>;
244                 compatible = "not,compatible";
245         };
246
247         no-compatible {
248                 reg = <2 1>;
249         };
250
251         backlight: backlight {
252                 compatible = "pwm-backlight";
253                 enable-gpios = <&gpio_a 1>;
254                 power-supply = <&ldo_1>;
255                 pwms = <&pwm 0 1000>;
256                 default-brightness-level = <5>;
257                 brightness-levels = <0 16 32 64 128 170 202 234 255>;
258         };
259
260         bind-test {
261                 compatible = "simple-bus";
262                 bind-test-child1 {
263                         compatible = "sandbox,phy";
264                         #phy-cells = <1>;
265                 };
266
267                 bind-test-child2 {
268                         compatible = "simple-bus";
269                 };
270         };
271
272         b-test {
273                 reg = <3 1>;
274                 compatible = "denx,u-boot-fdt-test";
275                 ping-expect = <3>;
276                 ping-add = <3>;
277
278                 mux-controls = <&muxcontroller0 0>;
279                 mux-control-names = "mux0";
280         };
281
282         phy_provider0: gen_phy@0 {
283                 compatible = "sandbox,phy";
284                 #phy-cells = <1>;
285         };
286
287         phy_provider1: gen_phy@1 {
288                 compatible = "sandbox,phy";
289                 #phy-cells = <0>;
290                 broken;
291         };
292
293         phy_provider2: gen_phy@2 {
294                 compatible = "sandbox,phy";
295                 #phy-cells = <0>;
296         };
297
298         gen_phy_user: gen_phy_user {
299                 compatible = "simple-bus";
300                 phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>;
301                 phy-names = "phy1", "phy2", "phy3";
302         };
303
304         gen_phy_user1: gen_phy_user1 {
305                 compatible = "simple-bus";
306                 phys = <&phy_provider0 0>, <&phy_provider2>;
307                 phy-names = "phy1", "phy2";
308         };
309
310         some-bus {
311                 #address-cells = <1>;
312                 #size-cells = <0>;
313                 compatible = "denx,u-boot-test-bus";
314                 reg = <3 1>;
315                 ping-expect = <4>;
316                 ping-add = <4>;
317                 c-test@5 {
318                         compatible = "denx,u-boot-fdt-test";
319                         reg = <5>;
320                         ping-expect = <5>;
321                         ping-add = <5>;
322                 };
323                 c-test@0 {
324                         compatible = "denx,u-boot-fdt-test";
325                         reg = <0>;
326                         ping-expect = <6>;
327                         ping-add = <6>;
328                 };
329                 c-test@1 {
330                         compatible = "denx,u-boot-fdt-test";
331                         reg = <1>;
332                         ping-expect = <7>;
333                         ping-add = <7>;
334                 };
335         };
336
337         d-test {
338                 reg = <3 1>;
339                 ping-expect = <6>;
340                 ping-add = <6>;
341                 compatible = "google,another-fdt-test";
342         };
343
344         e-test {
345                 reg = <3 1>;
346                 ping-expect = <6>;
347                 ping-add = <6>;
348                 compatible = "google,another-fdt-test";
349         };
350
351         f-test {
352                 compatible = "denx,u-boot-fdt-test";
353         };
354
355         g-test {
356                 compatible = "denx,u-boot-fdt-test";
357         };
358
359         h-test {
360                 compatible = "denx,u-boot-fdt-test1";
361         };
362
363         i-test {
364                 compatible = "mediatek,u-boot-fdt-test";
365                 #address-cells = <1>;
366                 #size-cells = <0>;
367
368                 subnode@0 {
369                         reg = <0>;
370                 };
371
372                 subnode@1 {
373                         reg = <1>;
374                 };
375
376                 subnode@2 {
377                         reg = <2>;
378                 };
379         };
380
381         devres-test {
382                 compatible = "denx,u-boot-devres-test";
383         };
384
385         another-test {
386                 reg = <0 2>;
387                 compatible = "denx,u-boot-fdt-test";
388                 test4-gpios = <&gpio_a 14>, <&gpio_b 4 1 3 2 1>;
389                 test5-gpios = <&gpio_a 19>;
390         };
391
392         mmio-bus@0 {
393                 #address-cells = <1>;
394                 #size-cells = <1>;
395                 compatible = "denx,u-boot-test-bus";
396                 dma-ranges = <0x10000000 0x00000000 0x00040000>;
397
398                 subnode@0 {
399                         compatible = "denx,u-boot-fdt-test";
400                 };
401         };
402
403         mmio-bus@1 {
404                 #address-cells = <1>;
405                 #size-cells = <1>;
406                 compatible = "denx,u-boot-test-bus";
407
408                 subnode@0 {
409                         compatible = "denx,u-boot-fdt-test";
410                 };
411         };
412
413         acpi_test1: acpi-test {
414                 compatible = "denx,u-boot-acpi-test";
415                 acpi-ssdt-test-data = "ab";
416                 acpi-dsdt-test-data = "hi";
417                 child {
418                         compatible = "denx,u-boot-acpi-test";
419                 };
420         };
421
422         acpi_test2: acpi-test2 {
423                 compatible = "denx,u-boot-acpi-test";
424                 acpi-ssdt-test-data = "cd";
425                 acpi-dsdt-test-data = "jk";
426         };
427
428         clocks {
429                 clk_fixed: clk-fixed {
430                         compatible = "fixed-clock";
431                         #clock-cells = <0>;
432                         clock-frequency = <1234>;
433                 };
434
435                 clk_fixed_factor: clk-fixed-factor {
436                         compatible = "fixed-factor-clock";
437                         #clock-cells = <0>;
438                         clock-div = <3>;
439                         clock-mult = <2>;
440                         clocks = <&clk_fixed>;
441                 };
442
443                 osc {
444                         compatible = "fixed-clock";
445                         #clock-cells = <0>;
446                         clock-frequency = <20000000>;
447                 };
448         };
449
450         clk_sandbox: clk-sbox {
451                 compatible = "sandbox,clk";
452                 #clock-cells = <1>;
453                 assigned-clocks = <&clk_sandbox 3>;
454                 assigned-clock-rates = <321>;
455         };
456
457         clk-test {
458                 compatible = "sandbox,clk-test";
459                 clocks = <&clk_fixed>,
460                          <&clk_sandbox 1>,
461                          <&clk_sandbox 0>,
462                          <&clk_sandbox 3>,
463                          <&clk_sandbox 2>;
464                 clock-names = "fixed", "i2c", "spi", "uart2", "uart1";
465         };
466
467         ccf: clk-ccf {
468                 compatible = "sandbox,clk-ccf";
469         };
470
471         eth@10002000 {
472                 compatible = "sandbox,eth";
473                 reg = <0x10002000 0x1000>;
474                 fake-host-hwaddr = [00 00 66 44 22 00];
475         };
476
477         eth_5: eth@10003000 {
478                 compatible = "sandbox,eth";
479                 reg = <0x10003000 0x1000>;
480                 fake-host-hwaddr = [00 00 66 44 22 11];
481         };
482
483         eth_3: sbe5 {
484                 compatible = "sandbox,eth";
485                 reg = <0x10005000 0x1000>;
486                 fake-host-hwaddr = [00 00 66 44 22 33];
487         };
488
489         eth@10004000 {
490                 compatible = "sandbox,eth";
491                 reg = <0x10004000 0x1000>;
492                 fake-host-hwaddr = [00 00 66 44 22 22];
493         };
494
495         dsa_eth0: dsa-test-eth {
496                 compatible = "sandbox,eth";
497                 reg = <0x10006000 0x1000>;
498                 fake-host-hwaddr = [00 00 66 44 22 66];
499         };
500
501         dsa-test {
502                 compatible = "sandbox,dsa";
503
504                 ports {
505                         #address-cells = <1>;
506                         #size-cells = <0>;
507                         swp_0: port@0 {
508                                 reg = <0>;
509                                 label = "lan0";
510                                 phy-mode = "rgmii-rxid";
511
512                                 fixed-link {
513                                         speed = <100>;
514                                         full-duplex;
515                                 };
516                         };
517
518                         swp_1: port@1 {
519                                 reg = <1>;
520                                 label = "lan1";
521                                 phy-mode = "rgmii-txid";
522                                 fixed-link = <0 1 100 0 0>;
523                         };
524
525                         port@2 {
526                                 reg = <2>;
527                                 ethernet = <&dsa_eth0>;
528
529                                 fixed-link {
530                                         speed = <1000>;
531                                         full-duplex;
532                                 };
533                         };
534                 };
535         };
536
537         firmware {
538                 sandbox_firmware: sandbox-firmware {
539                         compatible = "sandbox,firmware";
540                 };
541
542                 sandbox-scmi-agent@0 {
543                         compatible = "sandbox,scmi-agent";
544                         #address-cells = <1>;
545                         #size-cells = <0>;
546
547                         clk_scmi0: protocol@14 {
548                                 reg = <0x14>;
549                                 #clock-cells = <1>;
550                         };
551
552                         reset_scmi0: protocol@16 {
553                                 reg = <0x16>;
554                                 #reset-cells = <1>;
555                         };
556
557                         protocol@17 {
558                                 reg = <0x17>;
559
560                                 regulators {
561                                         #address-cells = <1>;
562                                         #size-cells = <0>;
563
564                                         regul0_scmi0: reg@0 {
565                                                 reg = <0>;
566                                                 regulator-name = "sandbox-voltd0";
567                                                 regulator-min-microvolt = <1100000>;
568                                                 regulator-max-microvolt = <3300000>;
569                                         };
570                                         regul1_scmi0: reg@1 {
571                                                 reg = <0x1>;
572                                                 regulator-name = "sandbox-voltd1";
573                                                 regulator-min-microvolt = <1800000>;
574                                         };
575                                 };
576                         };
577                 };
578
579                 sandbox-scmi-agent@1 {
580                         compatible = "sandbox,scmi-agent";
581                         #address-cells = <1>;
582                         #size-cells = <0>;
583
584                         clk_scmi1: protocol@14 {
585                                 reg = <0x14>;
586                                 #clock-cells = <1>;
587                         };
588
589                         protocol@10 {
590                                 reg = <0x10>;
591                         };
592                 };
593         };
594
595         pinctrl-gpio {
596                 compatible = "sandbox,pinctrl-gpio";
597
598                 gpio_a: base-gpios {
599                         compatible = "sandbox,gpio";
600                         gpio-controller;
601                         #gpio-cells = <1>;
602                         gpio-bank-name = "a";
603                         sandbox,gpio-count = <20>;
604                         hog_input_active_low {
605                                 gpio-hog;
606                                 input;
607                                 gpios = <10 GPIO_ACTIVE_LOW>;
608                         };
609                         hog_input_active_high {
610                                 gpio-hog;
611                                 input;
612                                 gpios = <11 GPIO_ACTIVE_HIGH>;
613                         };
614                         hog_output_low {
615                                 gpio-hog;
616                                 output-low;
617                                 gpios = <12 GPIO_ACTIVE_HIGH>;
618                         };
619                         hog_output_high {
620                                 gpio-hog;
621                                 output-high;
622                                 gpios = <13 GPIO_ACTIVE_HIGH>;
623                         };
624                 };
625
626                 gpio_b: extra-gpios {
627                         compatible = "sandbox,gpio";
628                         gpio-controller;
629                         #gpio-cells = <5>;
630                         gpio-bank-name = "b";
631                         sandbox,gpio-count = <10>;
632                 };
633
634                 gpio_c: pinmux-gpios {
635                         compatible = "sandbox,gpio";
636                         gpio-controller;
637                         #gpio-cells = <2>;
638                         gpio-bank-name = "c";
639                         sandbox,gpio-count = <10>;
640                 };
641         };
642
643         i2c@0 {
644                 #address-cells = <1>;
645                 #size-cells = <0>;
646                 reg = <0 1>;
647                 compatible = "sandbox,i2c";
648                 clock-frequency = <100000>;
649                 pinctrl-names = "default";
650                 pinctrl-0 = <&pinmux_i2c0_pins>;
651
652                 eeprom@2c {
653                         reg = <0x2c>;
654                         compatible = "i2c-eeprom";
655                         sandbox,emul = <&emul_eeprom>;
656                         partitions {
657                                 compatible = "fixed-partitions";
658                                 #address-cells = <1>;
659                                 #size-cells = <1>;
660                                 bootcount_i2c: bootcount@10 {
661                                         reg = <10 2>;
662                                 };
663                         };
664                 };
665
666                 rtc_0: rtc@43 {
667                         reg = <0x43>;
668                         compatible = "sandbox-rtc";
669                         sandbox,emul = <&emul0>;
670                 };
671
672                 rtc_1: rtc@61 {
673                         reg = <0x61>;
674                         compatible = "sandbox-rtc";
675                         sandbox,emul = <&emul1>;
676                 };
677
678                 i2c_emul: emul {
679                         reg = <0xff>;
680                         compatible = "sandbox,i2c-emul-parent";
681                         emul_eeprom: emul-eeprom {
682                                 compatible = "sandbox,i2c-eeprom";
683                                 sandbox,filename = "i2c.bin";
684                                 sandbox,size = <256>;
685                         };
686                         emul0: emul0 {
687                                 compatible = "sandbox,i2c-rtc-emul";
688                         };
689                         emul1: emull {
690                                 compatible = "sandbox,i2c-rtc-emul";
691                         };
692                 };
693
694                 sandbox_pmic: sandbox_pmic {
695                         reg = <0x40>;
696                         sandbox,emul = <&emul_pmic0>;
697                 };
698
699                 mc34708: pmic@41 {
700                         reg = <0x41>;
701                         sandbox,emul = <&emul_pmic1>;
702                 };
703         };
704
705         bootcount@0 {
706                 compatible = "u-boot,bootcount-rtc";
707                 rtc = <&rtc_1>;
708                 offset = <0x13>;
709         };
710
711         bootcount {
712                 compatible = "u-boot,bootcount-i2c-eeprom";
713                 i2c-eeprom = <&bootcount_i2c>;
714         };
715
716         adc: adc@0 {
717                 compatible = "sandbox,adc";
718                 #io-channel-cells = <1>;
719                 vdd-supply = <&buck2>;
720                 vss-microvolts = <0>;
721         };
722
723         irq: irq {
724                 compatible = "sandbox,irq";
725                 interrupt-controller;
726                 #interrupt-cells = <2>;
727         };
728
729         lcd {
730                 u-boot,dm-pre-reloc;
731                 compatible = "sandbox,lcd-sdl";
732                 pinctrl-names = "default";
733                 pinctrl-0 = <&pinmux_lcd_pins>;
734                 xres = <1366>;
735                 yres = <768>;
736         };
737
738         leds {
739                 compatible = "gpio-leds";
740
741                 iracibble {
742                         gpios = <&gpio_a 1 0>;
743                         label = "sandbox:red";
744                 };
745
746                 martinet {
747                         gpios = <&gpio_a 2 0>;
748                         label = "sandbox:green";
749                 };
750
751                 default_on {
752                         gpios = <&gpio_a 5 0>;
753                         label = "sandbox:default_on";
754                         default-state = "on";
755                 };
756
757                 default_off {
758                         gpios = <&gpio_a 6 0>;
759                         /* label intentionally omitted */
760                         default-state = "off";
761                 };
762         };
763
764         mbox: mbox {
765                 compatible = "sandbox,mbox";
766                 #mbox-cells = <1>;
767         };
768
769         mbox-test {
770                 compatible = "sandbox,mbox-test";
771                 mboxes = <&mbox 100>, <&mbox 1>;
772                 mbox-names = "other", "test";
773         };
774
775         cpus {
776                 timebase-frequency = <2000000>;
777                 cpu-test1 {
778                         timebase-frequency = <3000000>;
779                         compatible = "sandbox,cpu_sandbox";
780                         u-boot,dm-pre-reloc;
781                 };
782
783                 cpu-test2 {
784                         compatible = "sandbox,cpu_sandbox";
785                         u-boot,dm-pre-reloc;
786                 };
787
788                 cpu-test3 {
789                         compatible = "sandbox,cpu_sandbox";
790                         u-boot,dm-pre-reloc;
791                 };
792         };
793
794         chipid: chipid {
795                 compatible = "sandbox,soc";
796         };
797
798         i2s: i2s {
799                 compatible = "sandbox,i2s";
800                 #sound-dai-cells = <1>;
801                 sandbox,silent; /* Don't emit sounds while testing */
802         };
803
804         nop-test_0 {
805                 compatible = "sandbox,nop_sandbox1";
806                 nop-test_1 {
807                         compatible = "sandbox,nop_sandbox2";
808                         bind = "True";
809                 };
810                 nop-test_2 {
811                         compatible = "sandbox,nop_sandbox2";
812                         bind = "False";
813                 };
814         };
815
816         misc-test {
817                 compatible = "sandbox,misc_sandbox";
818         };
819
820         mmc2 {
821                 compatible = "sandbox,mmc";
822                 non-removable;
823         };
824
825         mmc1 {
826                 compatible = "sandbox,mmc";
827         };
828
829         mmc0 {
830                 compatible = "sandbox,mmc";
831         };
832
833         pch {
834                 compatible = "sandbox,pch";
835         };
836
837         pci0: pci@0 {
838                 compatible = "sandbox,pci";
839                 device_type = "pci";
840                 bus-range = <0x00 0xff>;
841                 #address-cells = <3>;
842                 #size-cells = <2>;
843                 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000000
844                                 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
845                 pci@0,0 {
846                         compatible = "pci-generic";
847                         reg = <0x0000 0 0 0 0>;
848                         sandbox,emul = <&swap_case_emul0_0>;
849                 };
850                 pci@1,0 {
851                         compatible = "pci-generic";
852                         /* reg 0 is at 0x14, using FDT_PCI_SPACE_MEM32 */
853                         reg = <0x02000814 0 0 0 0
854                                0x01000810 0 0 0 0>;
855                         sandbox,emul = <&swap_case_emul0_1>;
856                 };
857                 p2sb-pci@2,0 {
858                         compatible = "sandbox,p2sb";
859                         reg = <0x02001010 0 0 0 0>;
860                         sandbox,emul = <&p2sb_emul>;
861
862                         adder {
863                                 intel,p2sb-port-id = <3>;
864                                 compatible = "sandbox,adder";
865                         };
866                 };
867                 pci@1e,0 {
868                         compatible = "sandbox,pmc";
869                         reg = <0xf000 0 0 0 0>;
870                         sandbox,emul = <&pmc_emul1e>;
871                         acpi-base = <0x400>;
872                         gpe0-dwx-mask = <0xf>;
873                         gpe0-dwx-shift-base = <4>;
874                         gpe0-dw = <6 7 9>;
875                         gpe0-sts = <0x20>;
876                         gpe0-en = <0x30>;
877                 };
878                 pci@1f,0 {
879                         compatible = "pci-generic";
880                         /* reg 0 is at 0x10, using FDT_PCI_SPACE_IO */
881                         reg = <0x0100f810 0 0 0 0>;
882                         sandbox,emul = <&swap_case_emul0_1f>;
883                 };
884         };
885
886         pci-emul0 {
887                 compatible = "sandbox,pci-emul-parent";
888                 swap_case_emul0_0: emul0@0,0 {
889                         compatible = "sandbox,swap-case";
890                 };
891                 swap_case_emul0_1: emul0@1,0 {
892                         compatible = "sandbox,swap-case";
893                         use-ea;
894                 };
895                 swap_case_emul0_1f: emul0@1f,0 {
896                         compatible = "sandbox,swap-case";
897                 };
898                 p2sb_emul: emul@2,0 {
899                         compatible = "sandbox,p2sb-emul";
900                 };
901                 pmc_emul1e: emul@1e,0 {
902                         compatible = "sandbox,pmc-emul";
903                 };
904         };
905
906         pci1: pci@1 {
907                 compatible = "sandbox,pci";
908                 device_type = "pci";
909                 bus-range = <0x00 0xff>;
910                 #address-cells = <3>;
911                 #size-cells = <2>;
912                 ranges = <0x02000000 0 0x30000000 0x30000000 0 0x2000 // MEM0
913                           0x02000000 0 0x31000000 0x31000000 0 0x2000 // MEM1
914                           0x01000000 0 0x40000000 0x40000000 0 0x2000>;
915                 sandbox,dev-info = <0x08 0x00 0x1234 0x5678
916                                     0x0c 0x00 0x1234 0x5678
917                                     0x10 0x00 0x1234 0x5678>;
918                 pci@10,0 {
919                         reg = <0x8000 0 0 0 0>;
920                 };
921         };
922
923         pci2: pci@2 {
924                 compatible = "sandbox,pci";
925                 device_type = "pci";
926                 bus-range = <0x00 0xff>;
927                 #address-cells = <3>;
928                 #size-cells = <2>;
929                 ranges = <0x02000000 0 0x50000000 0x50000000 0 0x2000
930                                 0x01000000 0 0x60000000 0x60000000 0 0x2000>;
931                 sandbox,dev-info = <0x08 0x00 0x1234 0x5678>;
932                 pci@1f,0 {
933                         compatible = "pci-generic";
934                         reg = <0xf800 0 0 0 0>;
935                         sandbox,emul = <&swap_case_emul2_1f>;
936                 };
937         };
938
939         pci-emul2 {
940                 compatible = "sandbox,pci-emul-parent";
941                 swap_case_emul2_1f: emul2@1f,0 {
942                         compatible = "sandbox,swap-case";
943                 };
944         };
945
946         pci_ep: pci_ep {
947                 compatible = "sandbox,pci_ep";
948         };
949
950         probing {
951                 compatible = "simple-bus";
952                 test1 {
953                         compatible = "denx,u-boot-probe-test";
954                 };
955
956                 test2 {
957                         compatible = "denx,u-boot-probe-test";
958                 };
959
960                 test3 {
961                         compatible = "denx,u-boot-probe-test";
962                 };
963
964                 test4 {
965                         compatible = "denx,u-boot-probe-test";
966                         first-syscon = <&syscon0>;
967                         second-sys-ctrl = <&another_system_controller>;
968                         third-syscon = <&syscon2>;
969                 };
970         };
971
972         pwrdom: power-domain {
973                 compatible = "sandbox,power-domain";
974                 #power-domain-cells = <1>;
975         };
976
977         power-domain-test {
978                 compatible = "sandbox,power-domain-test";
979                 power-domains = <&pwrdom 2>;
980         };
981
982         pwm: pwm {
983                 compatible = "sandbox,pwm";
984                 #pwm-cells = <2>;
985                 pinctrl-names = "default";
986                 pinctrl-0 = <&pinmux_pwm_pins>;
987         };
988
989         pwm2 {
990                 compatible = "sandbox,pwm";
991                 #pwm-cells = <2>;
992         };
993
994         ram {
995                 compatible = "sandbox,ram";
996         };
997
998         reset@0 {
999                 compatible = "sandbox,warm-reset";
1000         };
1001
1002         reset@1 {
1003                 compatible = "sandbox,reset";
1004         };
1005
1006         resetc: reset-ctl {
1007                 compatible = "sandbox,reset-ctl";
1008                 #reset-cells = <1>;
1009         };
1010
1011         reset-ctl-test {
1012                 compatible = "sandbox,reset-ctl-test";
1013                 resets = <&resetc 100>, <&resetc 2>, <&resetc 20>, <&resetc 40>;
1014                 reset-names = "other", "test", "test2", "test3";
1015         };
1016
1017         rng {
1018                 compatible = "sandbox,sandbox-rng";
1019         };
1020
1021         rproc_1: rproc@1 {
1022                 compatible = "sandbox,test-processor";
1023                 remoteproc-name = "remoteproc-test-dev1";
1024         };
1025
1026         rproc_2: rproc@2 {
1027                 compatible = "sandbox,test-processor";
1028                 internal-memory-mapped;
1029                 remoteproc-name = "remoteproc-test-dev2";
1030         };
1031
1032         panel {
1033                 compatible = "simple-panel";
1034                 backlight = <&backlight 0 100>;
1035         };
1036
1037         smem@0 {
1038                 compatible = "sandbox,smem";
1039         };
1040
1041         sound {
1042                 compatible = "sandbox,sound";
1043                 cpu {
1044                         sound-dai = <&i2s 0>;
1045                 };
1046
1047                 codec {
1048                         sound-dai = <&audio 0>;
1049                 };
1050         };
1051
1052         spi@0 {
1053                 #address-cells = <1>;
1054                 #size-cells = <0>;
1055                 reg = <0 1>;
1056                 compatible = "sandbox,spi";
1057                 cs-gpios = <0>, <0>, <&gpio_a 0>;
1058                 pinctrl-names = "default";
1059                 pinctrl-0 = <&pinmux_spi0_pins>;
1060
1061                 spi.bin@0 {
1062                         reg = <0>;
1063                         compatible = "spansion,m25p16", "jedec,spi-nor";
1064                         spi-max-frequency = <40000000>;
1065                         sandbox,filename = "spi.bin";
1066                 };
1067                 spi.bin@1 {
1068                         reg = <1>;
1069                         compatible = "spansion,m25p16", "jedec,spi-nor";
1070                         spi-max-frequency = <50000000>;
1071                         sandbox,filename = "spi.bin";
1072                         spi-cpol;
1073                         spi-cpha;
1074                 };
1075         };
1076
1077         syscon0: syscon@0 {
1078                 compatible = "sandbox,syscon0";
1079                 reg = <0x10 16>;
1080         };
1081
1082         another_system_controller: syscon@1 {
1083                 compatible = "sandbox,syscon1";
1084                 reg = <0x20 5
1085                         0x28 6
1086                         0x30 7
1087                         0x38 8>;
1088         };
1089
1090         syscon2: syscon@2 {
1091                 compatible = "simple-mfd", "syscon";
1092                 reg = <0x40 5
1093                         0x48 6
1094                         0x50 7
1095                         0x58 8>;
1096         };
1097
1098         syscon3: syscon@3 {
1099                 compatible = "simple-mfd", "syscon";
1100                 reg = <0x000100 0x10>;
1101
1102                 muxcontroller0: a-mux-controller {
1103                         compatible = "mmio-mux";
1104                         #mux-control-cells = <1>;
1105
1106                         mux-reg-masks = <0x0 0x30>, /* 0: reg 0x0, bits 5:4 */
1107                                         <0xc 0x1E>, /* 1: reg 0xc, bits 4:1 */
1108                                         <0x4 0xFF>; /* 2: reg 0x4, bits 7:0 */
1109                         idle-states = <MUX_IDLE_AS_IS>, <0x02>, <0x73>;
1110                         u-boot,mux-autoprobe;
1111                 };
1112         };
1113
1114         muxcontroller1: emul-mux-controller {
1115                 compatible = "mux-emul";
1116                 #mux-control-cells = <0>;
1117                 u-boot,mux-autoprobe;
1118                 idle-state = <0xabcd>;
1119         };
1120
1121         testfdtm0 {
1122                 compatible = "denx,u-boot-fdtm-test";
1123         };
1124
1125         testfdtm1: testfdtm1 {
1126                 compatible = "denx,u-boot-fdtm-test";
1127         };
1128
1129         testfdtm2 {
1130                 compatible = "denx,u-boot-fdtm-test";
1131         };
1132
1133         timer@0 {
1134                 compatible = "sandbox,timer";
1135                 clock-frequency = <1000000>;
1136         };
1137
1138         timer@1 {
1139                 compatible = "sandbox,timer";
1140                 sandbox,timebase-frequency-fallback;
1141         };
1142
1143         tpm2 {
1144                 compatible = "sandbox,tpm2";
1145         };
1146
1147         uart0: serial {
1148                 compatible = "sandbox,serial";
1149                 u-boot,dm-pre-reloc;
1150                 pinctrl-names = "default";
1151                 pinctrl-0 = <&pinmux_uart0_pins>;
1152         };
1153
1154         usb_0: usb@0 {
1155                 compatible = "sandbox,usb";
1156                 status = "disabled";
1157                 hub {
1158                         compatible = "sandbox,usb-hub";
1159                         #address-cells = <1>;
1160                         #size-cells = <0>;
1161                         flash-stick {
1162                                 reg = <0>;
1163                                 compatible = "sandbox,usb-flash";
1164                         };
1165                 };
1166         };
1167
1168         usb_1: usb@1 {
1169                 compatible = "sandbox,usb";
1170                 hub {
1171                         compatible = "usb-hub";
1172                         usb,device-class = <9>;
1173                         #address-cells = <1>;
1174                         #size-cells = <0>;
1175                         hub-emul {
1176                                 compatible = "sandbox,usb-hub";
1177                                 #address-cells = <1>;
1178                                 #size-cells = <0>;
1179                                 flash-stick@0 {
1180                                         reg = <0>;
1181                                         compatible = "sandbox,usb-flash";
1182                                         sandbox,filepath = "testflash.bin";
1183                                 };
1184
1185                                 flash-stick@1 {
1186                                         reg = <1>;
1187                                         compatible = "sandbox,usb-flash";
1188                                         sandbox,filepath = "testflash1.bin";
1189                                 };
1190
1191                                 flash-stick@2 {
1192                                         reg = <2>;
1193                                         compatible = "sandbox,usb-flash";
1194                                         sandbox,filepath = "testflash2.bin";
1195                                 };
1196
1197                                 keyb@3 {
1198                                         reg = <3>;
1199                                         compatible = "sandbox,usb-keyb";
1200                                 };
1201
1202                         };
1203
1204                         usbstor@1 {
1205                                 reg = <1>;
1206                         };
1207                         usbstor@3 {
1208                                 reg = <3>;
1209                         };
1210                 };
1211         };
1212
1213         usb_2: usb@2 {
1214                 compatible = "sandbox,usb";
1215                 status = "disabled";
1216         };
1217
1218         spmi: spmi@0 {
1219                 compatible = "sandbox,spmi";
1220                 #address-cells = <0x1>;
1221                 #size-cells = <0x1>;
1222                 ranges;
1223                 pm8916@0 {
1224                         compatible = "qcom,spmi-pmic";
1225                         reg = <0x0 0x1>;
1226                         #address-cells = <0x1>;
1227                         #size-cells = <0x1>;
1228                         ranges;
1229
1230                         spmi_gpios: gpios@c000 {
1231                                 compatible = "qcom,pm8916-gpio";
1232                                 reg = <0xc000 0x400>;
1233                                 gpio-controller;
1234                                 gpio-count = <4>;
1235                                 #gpio-cells = <2>;
1236                                 gpio-bank-name="spmi";
1237                         };
1238                 };
1239         };
1240
1241         wdt0: wdt@0 {
1242                 compatible = "sandbox,wdt";
1243         };
1244
1245         axi: axi@0 {
1246                 compatible = "sandbox,axi";
1247                 #address-cells = <0x1>;
1248                 #size-cells = <0x1>;
1249                 store@0 {
1250                         compatible = "sandbox,sandbox_store";
1251                         reg = <0x0 0x400>;
1252                 };
1253         };
1254
1255         chosen {
1256                 #address-cells = <1>;
1257                 #size-cells = <1>;
1258                 setting = "sunrise ohoka";
1259                 other-node = "/some-bus/c-test@5";
1260                 int-values = <0x1937 72993>;
1261                 u-boot,acpi-ssdt-order = <&acpi_test2 &acpi_test1>;
1262                 chosen-test {
1263                         compatible = "denx,u-boot-fdt-test";
1264                         reg = <9 1>;
1265                 };
1266         };
1267
1268         translation-test@8000 {
1269                 compatible = "simple-bus";
1270                 reg = <0x8000 0x4000>;
1271
1272                 #address-cells = <0x2>;
1273                 #size-cells = <0x1>;
1274
1275                 ranges = <0 0x0 0x8000 0x1000
1276                           1 0x100 0x9000 0x1000
1277                           2 0x200 0xA000 0x1000
1278                           3 0x300 0xB000 0x1000
1279                          >;
1280
1281                 dma-ranges = <0 0x000 0x10000000 0x1000
1282                               1 0x100 0x20000000 0x1000
1283                              >;
1284
1285                 dev@0,0 {
1286                         compatible = "denx,u-boot-fdt-dummy";
1287                         reg = <0 0x0 0x1000>;
1288                         reg-names = "sandbox-dummy-0";
1289                 };
1290
1291                 dev@1,100 {
1292                         compatible = "denx,u-boot-fdt-dummy";
1293                         reg = <1 0x100 0x1000>;
1294
1295                 };
1296
1297                 dev@2,200 {
1298                         compatible = "denx,u-boot-fdt-dummy";
1299                         reg = <2 0x200 0x1000>;
1300                 };
1301
1302
1303                 noxlatebus@3,300 {
1304                         compatible = "simple-bus";
1305                         reg = <3 0x300 0x1000>;
1306
1307                         #address-cells = <0x1>;
1308                         #size-cells = <0x0>;
1309
1310                         dev@42 {
1311                                 compatible = "denx,u-boot-fdt-dummy";
1312                                 reg = <0x42>;
1313                         };
1314                 };
1315         };
1316
1317         osd {
1318                 compatible = "sandbox,sandbox_osd";
1319         };
1320
1321         sandbox_tee {
1322                 compatible = "sandbox,tee";
1323         };
1324
1325         sandbox_virtio1 {
1326                 compatible = "sandbox,virtio1";
1327         };
1328
1329         sandbox_virtio2 {
1330                 compatible = "sandbox,virtio2";
1331         };
1332
1333         sandbox_scmi {
1334                 compatible = "sandbox,scmi-devices";
1335                 clocks = <&clk_scmi0 7>, <&clk_scmi0 3>, <&clk_scmi1 1>;
1336                 resets = <&reset_scmi0 3>;
1337                 regul0-supply = <&regul0_scmi0>;
1338                 regul1-supply = <&regul1_scmi0>;
1339         };
1340
1341         pinctrl {
1342                 compatible = "sandbox,pinctrl";
1343
1344                 pinctrl-names = "default", "alternate";
1345                 pinctrl-0 = <&pinctrl_gpios>, <&pinctrl_i2s>;
1346                 pinctrl-1 = <&pinctrl_spi>, <&pinctrl_i2c>;
1347
1348                 pinctrl_gpios: gpios {
1349                         gpio0 {
1350                                 pins = "P5";
1351                                 function = "GPIO";
1352                                 bias-pull-up;
1353                                 input-disable;
1354                         };
1355                         gpio1 {
1356                                 pins = "P6";
1357                                 function = "GPIO";
1358                                 output-high;
1359                                 drive-open-drain;
1360                         };
1361                         gpio2 {
1362                                 pinmux = <SANDBOX_PINMUX(7, SANDBOX_PINMUX_GPIO)>;
1363                                 bias-pull-down;
1364                                 input-enable;
1365                         };
1366                         gpio3 {
1367                                 pinmux = <SANDBOX_PINMUX(8, SANDBOX_PINMUX_GPIO)>;
1368                                 bias-disable;
1369                         };
1370                 };
1371
1372                 pinctrl_i2c: i2c {
1373                         groups {
1374                                 groups = "I2C_UART";
1375                                 function = "I2C";
1376                         };
1377
1378                         pins {
1379                                 pins = "P0", "P1";
1380                                 drive-open-drain;
1381                         };
1382                 };
1383
1384                 pinctrl_i2s: i2s {
1385                         groups = "SPI_I2S";
1386                         function = "I2S";
1387                 };
1388
1389                 pinctrl_spi: spi {
1390                         groups = "SPI_I2S";
1391                         function = "SPI";
1392
1393                         cs {
1394                                 pinmux = <SANDBOX_PINMUX(5, SANDBOX_PINMUX_CS)>,
1395                                          <SANDBOX_PINMUX(6, SANDBOX_PINMUX_CS)>;
1396                         };
1397                 };
1398         };
1399
1400         pinctrl-single-no-width {
1401                 compatible = "pinctrl-single";
1402                 reg = <0x0000 0x238>;
1403                 #pinctrl-cells = <1>;
1404                 pinctrl-single,function-mask = <0x7f>;
1405         };
1406
1407         pinctrl-single-pins {
1408                 compatible = "pinctrl-single";
1409                 reg = <0x0000 0x238>;
1410                 #pinctrl-cells = <1>;
1411                 pinctrl-single,register-width = <32>;
1412                 pinctrl-single,function-mask = <0x7f>;
1413
1414                 pinmux_pwm_pins: pinmux_pwm_pins {
1415                         pinctrl-single,pins = < 0x48 0x06 >;
1416                 };
1417
1418                 pinmux_spi0_pins: pinmux_spi0_pins {
1419                         pinctrl-single,pins = <
1420                                 0x190 0x0c
1421                                 0x194 0x0c
1422                                 0x198 0x23
1423                                 0x19c 0x0c
1424                         >;
1425                 };
1426
1427                 pinmux_uart0_pins: pinmux_uart0_pins {
1428                         pinctrl-single,pins = <
1429                                 0x70 0x30
1430                                 0x74 0x00
1431                         >;
1432                 };
1433         };
1434
1435         pinctrl-single-bits {
1436                 compatible = "pinctrl-single";
1437                 reg = <0x0000 0x50>;
1438                 #pinctrl-cells = <2>;
1439                 pinctrl-single,bit-per-mux;
1440                 pinctrl-single,register-width = <32>;
1441                 pinctrl-single,function-mask = <0xf>;
1442
1443                 pinmux_i2c0_pins: pinmux_i2c0_pins {
1444                         pinctrl-single,bits = <
1445                                 0x10 0x00002200 0x0000ff00
1446                         >;
1447                 };
1448
1449                 pinmux_lcd_pins: pinmux_lcd_pins {
1450                         pinctrl-single,bits = <
1451                                 0x40 0x22222200 0xffffff00
1452                                 0x44 0x22222222 0xffffffff
1453                                 0x48 0x00000022 0x000000ff
1454                                 0x48 0x02000000 0x0f000000
1455                                 0x4c 0x02000022 0x0f0000ff
1456                         >;
1457                 };
1458         };
1459
1460         hwspinlock@0 {
1461                 compatible = "sandbox,hwspinlock";
1462         };
1463
1464         dma: dma {
1465                 compatible = "sandbox,dma";
1466                 #dma-cells = <1>;
1467
1468                 dmas = <&dma 0>, <&dma 1>, <&dma 2>;
1469                 dma-names = "m2m", "tx0", "rx0";
1470         };
1471
1472         /*
1473          * keep mdio-mux ahead of mdio so that the mux is removed first at the
1474          * end of the test.  If parent mdio is removed first, clean-up of the
1475          * mux will trigger a 2nd probe of parent-mdio, leaving parent-mdio
1476          * active at the end of the test.  That it turn doesn't allow the mdio
1477          * class to be destroyed, triggering an error.
1478          */
1479         mdio-mux-test {
1480                 compatible = "sandbox,mdio-mux";
1481                 #address-cells = <1>;
1482                 #size-cells = <0>;
1483                 mdio-parent-bus = <&mdio>;
1484
1485                 mdio-ch-test@0 {
1486                         reg = <0>;
1487                 };
1488                 mdio-ch-test@1 {
1489                         reg = <1>;
1490                 };
1491         };
1492
1493         mdio: mdio-test {
1494                 compatible = "sandbox,mdio";
1495         };
1496
1497         pm-bus-test {
1498                 compatible = "simple-pm-bus";
1499                 clocks = <&clk_sandbox 4>;
1500                 power-domains = <&pwrdom 1>;
1501         };
1502
1503         resetc2: syscon-reset {
1504                 compatible = "syscon-reset";
1505                 #reset-cells = <1>;
1506                 regmap = <&syscon0>;
1507                 offset = <1>;
1508                 mask = <0x27FFFFFF>;
1509                 assert-high = <0>;
1510         };
1511
1512         syscon-reset-test {
1513                 compatible = "sandbox,misc_sandbox";
1514                 resets = <&resetc2 15>, <&resetc2 30>, <&resetc2 60>;
1515                 reset-names = "valid", "no_mask", "out_of_range";
1516         };
1517
1518         sysinfo {
1519                 compatible = "sandbox,sysinfo-sandbox";
1520         };
1521
1522         sysinfo-gpio {
1523                 compatible = "gpio-sysinfo";
1524                 gpios = <&gpio_a 15>, <&gpio_a 16>, <&gpio_a 17>;
1525                 revisions = <19>, <5>;
1526                 names = "rev_a", "foo";
1527         };
1528
1529         some_regmapped-bus {
1530                 #address-cells = <0x1>;
1531                 #size-cells = <0x1>;
1532
1533                 ranges = <0x0 0x0 0x10>;
1534                 compatible = "simple-bus";
1535
1536                 regmap-test_0 {
1537                         reg = <0 0x10>;
1538                         compatible = "sandbox,regmap_test";
1539                 };
1540         };
1541 };
1542
1543 #include "sandbox_pmic.dtsi"
1544 #include "cros-ec-keyboard.dtsi"