blob: 48ca3e1e472122645586b6e8b864b3789ee9e032 [file] [log] [blame]
Simon Glass4cc43bf2021-08-18 21:40:25 -06001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Devicetree file for running sandbox tests
4 *
5 * This includes lots of extra devices used by various tests.
6 *
7 * Note that SPL use the main sandbox.dts file
8 */
9
Simon Glassb2c1cac2014-02-26 15:59:21 -070010/dts-v1/;
11
Patrick Delaunay23aee612020-01-13 11:35:13 +010012#include <dt-bindings/gpio/gpio.h>
13#include <dt-bindings/gpio/sandbox-gpio.h>
Marek Szyprowskiad398592021-02-18 11:33:18 +010014#include <dt-bindings/input/input.h>
Sean Anderson3438e3b2020-09-14 11:01:57 -040015#include <dt-bindings/pinctrl/sandbox-pinmux.h>
Jean-Jacques Hiblota94b6972020-10-16 16:16:34 +053016#include <dt-bindings/mux/mux.h>
Patrick Delaunay23aee612020-01-13 11:35:13 +010017
Simon Glassb2c1cac2014-02-26 15:59:21 -070018/ {
19 model = "sandbox";
20 compatible = "sandbox";
21 #address-cells = <1>;
Simon Glasscf61f742015-07-06 12:54:36 -060022 #size-cells = <1>;
Simon Glassb2c1cac2014-02-26 15:59:21 -070023
Simon Glassfef72b72014-07-23 06:55:03 -060024 aliases {
25 console = &uart0;
Michael Walle7efcdfd2021-02-25 16:51:11 +010026 ethernet0 = "/eth@10002000";
27 ethernet2 = &swp_0;
28 ethernet3 = &eth_3;
29 ethernet4 = &dsa_eth0;
30 ethernet5 = &eth_5;
Simon Glass5620cf82018-10-01 12:22:40 -060031 gpio1 = &gpio_a;
32 gpio2 = &gpio_b;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +010033 gpio3 = &gpio_c;
Simon Glass0ccb0972015-01-25 08:27:05 -070034 i2c0 = "/i2c@0";
Simon Glasse4fef742017-04-23 20:02:07 -060035 mmc0 = "/mmc0";
36 mmc1 = "/mmc1";
Bin Meng408e5902018-08-03 01:14:41 -070037 pci0 = &pci0;
38 pci1 = &pci1;
Bin Meng510dddb2018-08-03 01:14:50 -070039 pci2 = &pci2;
Michael Walle7c41a222020-06-02 01:47:09 +020040 remoteproc0 = &rproc_1;
41 remoteproc1 = &rproc_2;
Simon Glass336b2952015-05-22 15:42:17 -060042 rtc0 = &rtc_0;
43 rtc1 = &rtc_1;
Simon Glass5b968632015-05-22 15:42:15 -060044 spi0 = "/spi@0";
Przemyslaw Marczak3dbb55e2015-05-13 13:38:34 +020045 testfdt6 = "/e-test";
Simon Glass0ccb0972015-01-25 08:27:05 -070046 testbus3 = "/some-bus";
47 testfdt0 = "/some-bus/c-test@0";
Simon Glass7d5e4112020-12-16 21:20:26 -070048 testfdt12 = "/some-bus/c-test@1";
Simon Glass0ccb0972015-01-25 08:27:05 -070049 testfdt3 = "/b-test";
50 testfdt5 = "/some-bus/c-test@5";
51 testfdt8 = "/a-test";
Simon Glass791a17f2020-12-16 21:20:27 -070052 testfdtm1 = &testfdtm1;
Eugeniu Rosca5ba71e52018-05-19 14:13:55 +020053 fdt-dummy0 = "/translation-test@8000/dev@0,0";
54 fdt-dummy1 = "/translation-test@8000/dev@1,100";
55 fdt-dummy2 = "/translation-test@8000/dev@2,200";
56 fdt-dummy3 = "/translation-test@8000/noxlatebus@3,300/dev@42";
Simon Glass31680482015-03-25 12:23:05 -060057 usb0 = &usb_0;
58 usb1 = &usb_1;
59 usb2 = &usb_2;
Mario Six95922152018-08-09 14:51:19 +020060 axi0 = &axi;
Mario Six02ad6fb2018-09-27 09:19:31 +020061 osd0 = "/osd";
Simon Glassfef72b72014-07-23 06:55:03 -060062 };
63
Rasmus Villemoes30d4d2b2021-04-21 11:06:55 +020064 config {
Simon Glass0034d962021-08-07 07:24:01 -060065 testing-bool;
66 testing-int = <123>;
67 testing-str = "testing";
Rasmus Villemoes30d4d2b2021-04-21 11:06:55 +020068 environment {
69 from_fdt = "yes";
70 fdt_env_path = "";
71 };
72 };
73
Nandor Han6521e5d2021-06-10 16:56:44 +030074 reboot-mode0 {
75 compatible = "reboot-mode-gpio";
76 gpios = <&gpio_c 0 GPIO_ACTIVE_HIGH>, <&gpio_c 1 GPIO_ACTIVE_HIGH>;
77 u-boot,env-variable = "bootstatus";
78 mode-test = <0x01>;
79 mode-download = <0x03>;
80 };
81
Nandor Han7e4067a2021-06-10 16:56:45 +030082 reboot_mode1: reboot-mode@14 {
83 compatible = "reboot-mode-rtc";
84 rtc = <&rtc_0>;
85 reg = <0x30 4>;
86 u-boot,env-variable = "bootstatus";
87 big-endian;
88 mode-test = <0x21969147>;
89 mode-download = <0x51939147>;
90 };
91
Simon Glassed96cde2018-12-10 10:37:33 -070092 audio: audio-codec {
93 compatible = "sandbox,audio-codec";
94 #sound-dai-cells = <1>;
95 };
96
Philippe Reynes1ee26482020-07-24 18:19:51 +020097 buttons {
98 compatible = "gpio-keys";
99
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +0200100 btn1 {
Philippe Reynes1ee26482020-07-24 18:19:51 +0200101 gpios = <&gpio_a 3 0>;
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +0200102 label = "button1";
Philippe Reynes1ee26482020-07-24 18:19:51 +0200103 };
104
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +0200105 btn2 {
Philippe Reynes1ee26482020-07-24 18:19:51 +0200106 gpios = <&gpio_a 4 0>;
Heinrich Schuchardt57c2fc62020-09-14 12:50:54 +0200107 label = "button2";
Philippe Reynes1ee26482020-07-24 18:19:51 +0200108 };
109 };
110
Marek Szyprowskiad398592021-02-18 11:33:18 +0100111 buttons2 {
112 compatible = "adc-keys";
113 io-channels = <&adc 3>;
114 keyup-threshold-microvolt = <3000000>;
115
116 button-up {
117 label = "button3";
118 linux,code = <KEY_F3>;
119 press-threshold-microvolt = <1500000>;
120 };
121
122 button-down {
123 label = "button4";
124 linux,code = <KEY_F4>;
125 press-threshold-microvolt = <1000000>;
126 };
127
128 button-enter {
129 label = "button5";
130 linux,code = <KEY_F5>;
131 press-threshold-microvolt = <500000>;
132 };
133 };
134
Simon Glassc953aaf2018-12-10 10:37:34 -0700135 cros_ec: cros-ec {
Simon Glass699c9ca2018-10-01 12:22:08 -0600136 reg = <0 0>;
137 compatible = "google,cros-ec-sandbox";
138
139 /*
140 * This describes the flash memory within the EC. Note
141 * that the STM32L flash erases to 0, not 0xff.
142 */
143 flash {
144 image-pos = <0x08000000>;
145 size = <0x20000>;
146 erase-value = <0>;
147
148 /* Information for sandbox */
149 ro {
150 image-pos = <0>;
151 size = <0xf000>;
152 };
153 wp-ro {
154 image-pos = <0xf000>;
155 size = <0x1000>;
Simon Glassbf0a6922021-01-21 13:57:14 -0700156 used = <0x884>;
157 compress = "lz4";
158 uncomp-size = <0xcf8>;
159 hash {
160 algo = "sha256";
161 value = [00 01 02 03 04 05 06 07
162 08 09 0a 0b 0c 0d 0e 0f
163 10 11 12 13 14 15 16 17
164 18 19 1a 1b 1c 1d 1e 1f];
165 };
Simon Glass699c9ca2018-10-01 12:22:08 -0600166 };
167 rw {
168 image-pos = <0x10000>;
169 size = <0x10000>;
170 };
171 };
Alper Nebi Yasak8a8cd4f2021-05-19 19:33:31 +0300172
173 cros_ec_pwm: cros-ec-pwm {
174 compatible = "google,cros-ec-pwm";
175 #pwm-cells = <1>;
176 };
177
Simon Glass699c9ca2018-10-01 12:22:08 -0600178 };
179
Yannick Fertré9712c822019-10-07 15:29:05 +0200180 dsi_host: dsi_host {
181 compatible = "sandbox,dsi-host";
182 };
183
Simon Glassb2c1cac2014-02-26 15:59:21 -0700184 a-test {
Simon Glasscf61f742015-07-06 12:54:36 -0600185 reg = <0 1>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700186 compatible = "denx,u-boot-fdt-test";
Simon Glassa7bb08a2014-07-23 06:54:57 -0600187 ping-expect = <0>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700188 ping-add = <0>;
Simon Glassfef72b72014-07-23 06:55:03 -0600189 u-boot,dm-pre-reloc;
Patrick Delaunay23aee612020-01-13 11:35:13 +0100190 test-gpios = <&gpio_a 1>, <&gpio_a 4>,
191 <&gpio_b 5 GPIO_ACTIVE_HIGH 3 2 1>,
Simon Glass16e10402015-01-05 20:05:29 -0700192 <0>, <&gpio_a 12>;
Patrick Delaunay23aee612020-01-13 11:35:13 +0100193 test2-gpios = <&gpio_a 1>, <&gpio_a 4>,
194 <&gpio_b 6 GPIO_ACTIVE_LOW 3 2 1>,
195 <&gpio_b 7 GPIO_IN 3 2 1>,
196 <&gpio_b 8 GPIO_OUT 3 2 1>,
197 <&gpio_b 9 (GPIO_OUT|GPIO_OUT_ACTIVE) 3 2 1>;
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100198 test3-gpios =
199 <&gpio_c 0 (GPIO_OUT|GPIO_OPEN_DRAIN)>,
200 <&gpio_c 1 (GPIO_OUT|GPIO_OPEN_SOURCE)>,
201 <&gpio_c 2 GPIO_OUT>,
202 <&gpio_c 3 (GPIO_IN|GPIO_PULL_UP)>,
203 <&gpio_c 4 (GPIO_IN|GPIO_PULL_DOWN)>,
Neil Armstrong643778b2020-05-05 10:43:18 +0200204 <&gpio_c 5 GPIO_IN>,
205 <&gpio_c 6 (GPIO_ACTIVE_LOW|GPIO_OUT|GPIO_OPEN_DRAIN)>,
206 <&gpio_c 7 (GPIO_ACTIVE_LOW|GPIO_OUT|GPIO_OPEN_SOURCE)>;
Jean-Jacques Hiblot73873402020-09-11 13:43:35 +0530207 test4-gpios = <&gpio_a 14>, <&gpio_b 4 1 3 2 1>;
208 test5-gpios = <&gpio_a 19>;
209
Simon Glass73025392021-10-23 17:26:04 -0600210 bool-value;
Simon Glass6df01f92018-12-10 10:37:37 -0700211 int-value = <1234>;
212 uint-value = <(-1234)>;
Dario Binacchi421e81e2020-03-29 18:04:40 +0200213 int64-value = /bits/ 64 <0x1111222233334444>;
Dario Binacchi81d80b52020-03-29 18:04:41 +0200214 int-array = <5678 9123 4567>;
Simon Glassdd0ed902020-07-07 13:11:58 -0600215 str-value = "test string";
Simon Glass515dcff2020-02-06 09:55:00 -0700216 interrupts-extended = <&irq 3 0>;
Simon Glass09642392020-07-07 13:12:11 -0600217 acpi,name = "GHIJ";
Patrick Delaunay8cd28012020-09-25 09:41:16 +0200218 phandle-value = <&gpio_c 10>, <0xFFFFFFFF 20>, <&gpio_a 30>;
Jean-Jacques Hiblota94b6972020-10-16 16:16:34 +0530219
220 mux-controls = <&muxcontroller0 0>, <&muxcontroller0 1>,
221 <&muxcontroller0 2>, <&muxcontroller0 3>,
222 <&muxcontroller1>;
223 mux-control-names = "mux0", "mux1", "mux2", "mux3", "mux4";
224 mux-syscon = <&syscon3>;
Dario Binacchi836cc9d2020-12-30 00:16:26 +0100225 display-timings {
226 timing0: 240x320 {
227 clock-frequency = <6500000>;
228 hactive = <240>;
229 vactive = <320>;
230 hfront-porch = <6>;
231 hback-porch = <7>;
232 hsync-len = <1>;
233 vback-porch = <5>;
234 vfront-porch = <8>;
235 vsync-len = <2>;
236 hsync-active = <1>;
237 vsync-active = <0>;
238 de-active = <1>;
239 pixelclk-active = <1>;
240 interlaced;
241 doublescan;
242 doubleclk;
243 };
244 timing1: 480x800 {
245 clock-frequency = <9000000>;
246 hactive = <480>;
247 vactive = <800>;
248 hfront-porch = <10>;
249 hback-porch = <59>;
250 hsync-len = <12>;
251 vback-porch = <15>;
252 vfront-porch = <17>;
253 vsync-len = <16>;
254 hsync-active = <0>;
255 vsync-active = <1>;
256 de-active = <0>;
257 pixelclk-active = <0>;
258 };
259 timing2: 800x480 {
260 clock-frequency = <33500000>;
261 hactive = <800>;
262 vactive = <480>;
263 hback-porch = <89>;
264 hfront-porch = <164>;
265 vback-porch = <23>;
266 vfront-porch = <10>;
267 hsync-len = <11>;
268 vsync-len = <13>;
269 };
270 };
Simon Glassb2c1cac2014-02-26 15:59:21 -0700271 };
272
273 junk {
Simon Glasscf61f742015-07-06 12:54:36 -0600274 reg = <1 1>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700275 compatible = "not,compatible";
276 };
277
278 no-compatible {
Simon Glasscf61f742015-07-06 12:54:36 -0600279 reg = <2 1>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700280 };
281
Simon Glass5620cf82018-10-01 12:22:40 -0600282 backlight: backlight {
283 compatible = "pwm-backlight";
284 enable-gpios = <&gpio_a 1>;
285 power-supply = <&ldo_1>;
286 pwms = <&pwm 0 1000>;
287 default-brightness-level = <5>;
288 brightness-levels = <0 16 32 64 128 170 202 234 255>;
289 };
290
Jean-Jacques Hiblote83a31b2018-08-09 16:17:46 +0200291 bind-test {
Patrice Chotard7b7f9392020-07-28 09:13:33 +0200292 compatible = "simple-bus";
Jean-Jacques Hiblote83a31b2018-08-09 16:17:46 +0200293 bind-test-child1 {
294 compatible = "sandbox,phy";
295 #phy-cells = <1>;
296 };
297
298 bind-test-child2 {
299 compatible = "simple-bus";
300 };
301 };
302
Simon Glassb2c1cac2014-02-26 15:59:21 -0700303 b-test {
Simon Glasscf61f742015-07-06 12:54:36 -0600304 reg = <3 1>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700305 compatible = "denx,u-boot-fdt-test";
Simon Glassa7bb08a2014-07-23 06:54:57 -0600306 ping-expect = <3>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700307 ping-add = <3>;
Jean-Jacques Hiblota94b6972020-10-16 16:16:34 +0530308
309 mux-controls = <&muxcontroller0 0>;
310 mux-control-names = "mux0";
Simon Glassb2c1cac2014-02-26 15:59:21 -0700311 };
312
Jean-Jacques Hiblot7e9db022017-04-24 11:51:28 +0200313 phy_provider0: gen_phy@0 {
314 compatible = "sandbox,phy";
315 #phy-cells = <1>;
316 };
317
318 phy_provider1: gen_phy@1 {
319 compatible = "sandbox,phy";
320 #phy-cells = <0>;
321 broken;
322 };
323
developer71092972020-05-02 11:35:12 +0200324 phy_provider2: gen_phy@2 {
325 compatible = "sandbox,phy";
326 #phy-cells = <0>;
327 };
328
Jean-Jacques Hiblot7e9db022017-04-24 11:51:28 +0200329 gen_phy_user: gen_phy_user {
330 compatible = "simple-bus";
331 phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>;
332 phy-names = "phy1", "phy2", "phy3";
333 };
334
developer71092972020-05-02 11:35:12 +0200335 gen_phy_user1: gen_phy_user1 {
336 compatible = "simple-bus";
337 phys = <&phy_provider0 0>, <&phy_provider2>;
338 phy-names = "phy1", "phy2";
339 };
340
Simon Glassb2c1cac2014-02-26 15:59:21 -0700341 some-bus {
342 #address-cells = <1>;
343 #size-cells = <0>;
Simon Glass40717422014-07-23 06:55:18 -0600344 compatible = "denx,u-boot-test-bus";
Simon Glasscf61f742015-07-06 12:54:36 -0600345 reg = <3 1>;
Simon Glassa7bb08a2014-07-23 06:54:57 -0600346 ping-expect = <4>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700347 ping-add = <4>;
Simon Glass40717422014-07-23 06:55:18 -0600348 c-test@5 {
Simon Glassb2c1cac2014-02-26 15:59:21 -0700349 compatible = "denx,u-boot-fdt-test";
350 reg = <5>;
Simon Glass40717422014-07-23 06:55:18 -0600351 ping-expect = <5>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700352 ping-add = <5>;
353 };
Simon Glass40717422014-07-23 06:55:18 -0600354 c-test@0 {
355 compatible = "denx,u-boot-fdt-test";
356 reg = <0>;
357 ping-expect = <6>;
358 ping-add = <6>;
359 };
360 c-test@1 {
361 compatible = "denx,u-boot-fdt-test";
362 reg = <1>;
363 ping-expect = <7>;
364 ping-add = <7>;
365 };
Simon Glassb2c1cac2014-02-26 15:59:21 -0700366 };
367
368 d-test {
Simon Glasscf61f742015-07-06 12:54:36 -0600369 reg = <3 1>;
Simon Glassdb6f0202014-07-23 06:55:12 -0600370 ping-expect = <6>;
371 ping-add = <6>;
372 compatible = "google,another-fdt-test";
373 };
374
375 e-test {
Simon Glasscf61f742015-07-06 12:54:36 -0600376 reg = <3 1>;
Simon Glassa7bb08a2014-07-23 06:54:57 -0600377 ping-expect = <6>;
Simon Glassb2c1cac2014-02-26 15:59:21 -0700378 ping-add = <6>;
379 compatible = "google,another-fdt-test";
380 };
381
Simon Glass0ccb0972015-01-25 08:27:05 -0700382 f-test {
383 compatible = "denx,u-boot-fdt-test";
384 };
385
386 g-test {
387 compatible = "denx,u-boot-fdt-test";
388 };
389
Bin Mengd9d24782018-10-10 22:07:01 -0700390 h-test {
391 compatible = "denx,u-boot-fdt-test1";
392 };
393
developercf8bc132020-05-02 11:35:10 +0200394 i-test {
395 compatible = "mediatek,u-boot-fdt-test";
396 #address-cells = <1>;
397 #size-cells = <0>;
398
399 subnode@0 {
400 reg = <0>;
401 };
402
403 subnode@1 {
404 reg = <1>;
405 };
406
407 subnode@2 {
408 reg = <2>;
409 };
410 };
411
Simon Glass204675c2019-12-29 21:19:25 -0700412 devres-test {
413 compatible = "denx,u-boot-devres-test";
414 };
415
Jean-Jacques Hiblot73873402020-09-11 13:43:35 +0530416 another-test {
417 reg = <0 2>;
418 compatible = "denx,u-boot-fdt-test";
419 test4-gpios = <&gpio_a 14>, <&gpio_b 4 1 3 2 1>;
420 test5-gpios = <&gpio_a 19>;
421 };
422
Nicolas Saenz Julienne22b7f7e2021-01-12 13:55:23 +0100423 mmio-bus@0 {
424 #address-cells = <1>;
425 #size-cells = <1>;
426 compatible = "denx,u-boot-test-bus";
427 dma-ranges = <0x10000000 0x00000000 0x00040000>;
428
429 subnode@0 {
430 compatible = "denx,u-boot-fdt-test";
431 };
432 };
433
434 mmio-bus@1 {
435 #address-cells = <1>;
436 #size-cells = <1>;
437 compatible = "denx,u-boot-test-bus";
Nicolas Saenz Julienne892e9b42021-01-12 13:55:25 +0100438
439 subnode@0 {
440 compatible = "denx,u-boot-fdt-test";
441 };
Nicolas Saenz Julienne22b7f7e2021-01-12 13:55:23 +0100442 };
443
Simon Glass3c601b12020-07-07 13:12:06 -0600444 acpi_test1: acpi-test {
Simon Glass2d67fdf2020-04-08 16:57:34 -0600445 compatible = "denx,u-boot-acpi-test";
Simon Glassd43e0ba2020-07-07 13:12:03 -0600446 acpi-ssdt-test-data = "ab";
Simon Glass990cd5b2020-07-07 13:12:08 -0600447 acpi-dsdt-test-data = "hi";
Simon Glassebb2e832020-07-07 13:11:39 -0600448 child {
449 compatible = "denx,u-boot-acpi-test";
450 };
Simon Glass2d67fdf2020-04-08 16:57:34 -0600451 };
452
Simon Glass3c601b12020-07-07 13:12:06 -0600453 acpi_test2: acpi-test2 {
Simon Glass17968c32020-04-26 09:19:46 -0600454 compatible = "denx,u-boot-acpi-test";
Simon Glassd43e0ba2020-07-07 13:12:03 -0600455 acpi-ssdt-test-data = "cd";
Simon Glass990cd5b2020-07-07 13:12:08 -0600456 acpi-dsdt-test-data = "jk";
Simon Glass17968c32020-04-26 09:19:46 -0600457 };
458
Patrice Chotard9cc2d142017-09-04 14:55:57 +0200459 clocks {
460 clk_fixed: clk-fixed {
461 compatible = "fixed-clock";
462 #clock-cells = <0>;
463 clock-frequency = <1234>;
464 };
Anup Patel8d28c3c2019-02-25 08:14:55 +0000465
466 clk_fixed_factor: clk-fixed-factor {
467 compatible = "fixed-factor-clock";
468 #clock-cells = <0>;
469 clock-div = <3>;
470 clock-mult = <2>;
471 clocks = <&clk_fixed>;
472 };
Lukasz Majewskiccafcdd2019-06-24 15:50:47 +0200473
474 osc {
475 compatible = "fixed-clock";
476 #clock-cells = <0>;
477 clock-frequency = <20000000>;
478 };
Stephen Warrena9622432016-06-17 09:44:00 -0600479 };
480
481 clk_sandbox: clk-sbox {
Simon Glass8cc4d822015-07-06 12:54:24 -0600482 compatible = "sandbox,clk";
Stephen Warrena9622432016-06-17 09:44:00 -0600483 #clock-cells = <1>;
Jean-Jacques Hiblotc1e9c942019-10-22 14:00:07 +0200484 assigned-clocks = <&clk_sandbox 3>;
485 assigned-clock-rates = <321>;
Stephen Warrena9622432016-06-17 09:44:00 -0600486 };
487
488 clk-test {
489 compatible = "sandbox,clk-test";
490 clocks = <&clk_fixed>,
491 <&clk_sandbox 1>,
Jean-Jacques Hiblot98e84182019-10-22 14:00:05 +0200492 <&clk_sandbox 0>,
493 <&clk_sandbox 3>,
494 <&clk_sandbox 2>;
495 clock-names = "fixed", "i2c", "spi", "uart2", "uart1";
Simon Glass8cc4d822015-07-06 12:54:24 -0600496 };
497
Lukasz Majewski8c0709b2019-06-24 15:50:50 +0200498 ccf: clk-ccf {
499 compatible = "sandbox,clk-ccf";
500 };
501
Simon Glass507ab962021-12-04 08:56:31 -0700502 efi-media {
503 compatible = "sandbox,efi-media";
504 };
505
Simon Glass5b968632015-05-22 15:42:15 -0600506 eth@10002000 {
507 compatible = "sandbox,eth";
508 reg = <0x10002000 0x1000>;
Joe Hershberger76f3c102018-07-02 14:47:45 -0500509 fake-host-hwaddr = [00 00 66 44 22 00];
Simon Glass5b968632015-05-22 15:42:15 -0600510 };
511
512 eth_5: eth@10003000 {
513 compatible = "sandbox,eth";
514 reg = <0x10003000 0x1000>;
Joe Hershberger76f3c102018-07-02 14:47:45 -0500515 fake-host-hwaddr = [00 00 66 44 22 11];
Simon Glass5b968632015-05-22 15:42:15 -0600516 };
517
Bin Meng04a11cb2015-08-27 22:25:53 -0700518 eth_3: sbe5 {
519 compatible = "sandbox,eth";
520 reg = <0x10005000 0x1000>;
Joe Hershberger76f3c102018-07-02 14:47:45 -0500521 fake-host-hwaddr = [00 00 66 44 22 33];
Bin Meng04a11cb2015-08-27 22:25:53 -0700522 };
523
Simon Glass5b968632015-05-22 15:42:15 -0600524 eth@10004000 {
525 compatible = "sandbox,eth";
526 reg = <0x10004000 0x1000>;
Joe Hershberger76f3c102018-07-02 14:47:45 -0500527 fake-host-hwaddr = [00 00 66 44 22 22];
Simon Glass5b968632015-05-22 15:42:15 -0600528 };
529
Claudiu Manoild9eaa922021-03-14 20:14:57 +0800530 dsa_eth0: dsa-test-eth {
531 compatible = "sandbox,eth";
532 reg = <0x10006000 0x1000>;
533 fake-host-hwaddr = [00 00 66 44 22 66];
534 };
535
536 dsa-test {
537 compatible = "sandbox,dsa";
538
539 ports {
540 #address-cells = <1>;
541 #size-cells = <0>;
542 swp_0: port@0 {
543 reg = <0>;
544 label = "lan0";
545 phy-mode = "rgmii-rxid";
546
547 fixed-link {
548 speed = <100>;
549 full-duplex;
550 };
551 };
552
553 swp_1: port@1 {
554 reg = <1>;
555 label = "lan1";
556 phy-mode = "rgmii-txid";
Bin Meng381ed972021-03-14 20:14:58 +0800557 fixed-link = <0 1 100 0 0>;
Claudiu Manoild9eaa922021-03-14 20:14:57 +0800558 };
559
560 port@2 {
561 reg = <2>;
562 ethernet = <&dsa_eth0>;
563
564 fixed-link {
565 speed = <1000>;
566 full-duplex;
567 };
568 };
569 };
570 };
571
Rajan Vajab3b2ddb2018-09-19 03:43:46 -0700572 firmware {
573 sandbox_firmware: sandbox-firmware {
574 compatible = "sandbox,firmware";
575 };
Etienne Carriere02fd1262020-09-09 18:44:00 +0200576
577 sandbox-scmi-agent@0 {
578 compatible = "sandbox,scmi-agent";
579 #address-cells = <1>;
580 #size-cells = <0>;
Etienne Carriere2d94c08fa2020-09-09 18:44:05 +0200581
582 clk_scmi0: protocol@14 {
583 reg = <0x14>;
584 #clock-cells = <1>;
585 };
Etienne Carriere8b9b6892020-09-09 18:44:07 +0200586
587 reset_scmi0: protocol@16 {
588 reg = <0x16>;
589 #reset-cells = <1>;
590 };
Etienne Carriereb8f15cd2021-03-08 22:38:07 +0100591
592 protocol@17 {
593 reg = <0x17>;
594
595 regulators {
596 #address-cells = <1>;
597 #size-cells = <0>;
598
599 regul0_scmi0: reg@0 {
600 reg = <0>;
601 regulator-name = "sandbox-voltd0";
602 regulator-min-microvolt = <1100000>;
603 regulator-max-microvolt = <3300000>;
604 };
605 regul1_scmi0: reg@1 {
606 reg = <0x1>;
607 regulator-name = "sandbox-voltd1";
608 regulator-min-microvolt = <1800000>;
609 };
610 };
611 };
Etienne Carriere02fd1262020-09-09 18:44:00 +0200612 };
613
614 sandbox-scmi-agent@1 {
615 compatible = "sandbox,scmi-agent";
616 #address-cells = <1>;
617 #size-cells = <0>;
618
Etienne Carriere2d94c08fa2020-09-09 18:44:05 +0200619 clk_scmi1: protocol@14 {
620 reg = <0x14>;
621 #clock-cells = <1>;
622 };
623
Etienne Carriere02fd1262020-09-09 18:44:00 +0200624 protocol@10 {
625 reg = <0x10>;
626 };
627 };
Rajan Vajab3b2ddb2018-09-19 03:43:46 -0700628 };
629
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100630 pinctrl-gpio {
631 compatible = "sandbox,pinctrl-gpio";
Simon Glassb2c1cac2014-02-26 15:59:21 -0700632
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100633 gpio_a: base-gpios {
634 compatible = "sandbox,gpio";
635 gpio-controller;
636 #gpio-cells = <1>;
637 gpio-bank-name = "a";
638 sandbox,gpio-count = <20>;
Heiko Schocher4508abf2020-05-22 11:08:58 +0200639 hog_input_active_low {
640 gpio-hog;
641 input;
Philippe Reynesb25a5b32020-07-24 15:51:53 +0200642 gpios = <10 GPIO_ACTIVE_LOW>;
Heiko Schocher4508abf2020-05-22 11:08:58 +0200643 };
644 hog_input_active_high {
645 gpio-hog;
646 input;
Philippe Reynesb25a5b32020-07-24 15:51:53 +0200647 gpios = <11 GPIO_ACTIVE_HIGH>;
Heiko Schocher4508abf2020-05-22 11:08:58 +0200648 };
649 hog_output_low {
650 gpio-hog;
651 output-low;
Philippe Reynesb25a5b32020-07-24 15:51:53 +0200652 gpios = <12 GPIO_ACTIVE_HIGH>;
Heiko Schocher4508abf2020-05-22 11:08:58 +0200653 };
654 hog_output_high {
655 gpio-hog;
656 output-high;
Philippe Reynesb25a5b32020-07-24 15:51:53 +0200657 gpios = <13 GPIO_ACTIVE_HIGH>;
Heiko Schocher4508abf2020-05-22 11:08:58 +0200658 };
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100659 };
660
661 gpio_b: extra-gpios {
662 compatible = "sandbox,gpio";
663 gpio-controller;
664 #gpio-cells = <5>;
665 gpio-bank-name = "b";
666 sandbox,gpio-count = <10>;
667 };
Simon Glass25348a42014-10-13 23:42:11 -0600668
Patrick Delaunay1b4a22f2020-01-13 11:35:15 +0100669 gpio_c: pinmux-gpios {
670 compatible = "sandbox,gpio";
671 gpio-controller;
672 #gpio-cells = <2>;
673 gpio-bank-name = "c";
674 sandbox,gpio-count = <10>;
675 };
Patrick Delaunay28bdaa52020-01-13 11:35:14 +0100676 };
677
Simon Glass7df766e2014-12-10 08:55:55 -0700678 i2c@0 {
679 #address-cells = <1>;
680 #size-cells = <0>;
Simon Glasscf61f742015-07-06 12:54:36 -0600681 reg = <0 1>;
Simon Glass7df766e2014-12-10 08:55:55 -0700682 compatible = "sandbox,i2c";
683 clock-frequency = <100000>;
Dario Binacchi20dd9e12021-04-11 09:39:50 +0200684 pinctrl-names = "default";
685 pinctrl-0 = <&pinmux_i2c0_pins>;
686
Simon Glass7df766e2014-12-10 08:55:55 -0700687 eeprom@2c {
688 reg = <0x2c>;
689 compatible = "i2c-eeprom";
Simon Glass17b56f62018-11-18 08:14:34 -0700690 sandbox,emul = <&emul_eeprom>;
Michal Simek4f18f922020-05-28 11:48:55 +0200691 partitions {
692 compatible = "fixed-partitions";
693 #address-cells = <1>;
694 #size-cells = <1>;
695 bootcount_i2c: bootcount@10 {
696 reg = <10 2>;
697 };
698 };
Simon Glass7df766e2014-12-10 08:55:55 -0700699 };
Przemyslaw Marczak77bee052015-05-13 13:38:35 +0200700
Simon Glass336b2952015-05-22 15:42:17 -0600701 rtc_0: rtc@43 {
702 reg = <0x43>;
703 compatible = "sandbox-rtc";
Simon Glass17b56f62018-11-18 08:14:34 -0700704 sandbox,emul = <&emul0>;
Simon Glass336b2952015-05-22 15:42:17 -0600705 };
706
707 rtc_1: rtc@61 {
708 reg = <0x61>;
709 compatible = "sandbox-rtc";
Simon Glass17b56f62018-11-18 08:14:34 -0700710 sandbox,emul = <&emul1>;
711 };
712
713 i2c_emul: emul {
714 reg = <0xff>;
715 compatible = "sandbox,i2c-emul-parent";
716 emul_eeprom: emul-eeprom {
717 compatible = "sandbox,i2c-eeprom";
718 sandbox,filename = "i2c.bin";
719 sandbox,size = <256>;
720 };
721 emul0: emul0 {
Simon Glass98af3742021-02-03 06:01:17 -0700722 compatible = "sandbox,i2c-rtc-emul";
Simon Glass17b56f62018-11-18 08:14:34 -0700723 };
724 emul1: emull {
Simon Glass98af3742021-02-03 06:01:17 -0700725 compatible = "sandbox,i2c-rtc-emul";
Simon Glass336b2952015-05-22 15:42:17 -0600726 };
727 };
728
Przemyslaw Marczak77bee052015-05-13 13:38:35 +0200729 sandbox_pmic: sandbox_pmic {
730 reg = <0x40>;
Simon Glass17b56f62018-11-18 08:14:34 -0700731 sandbox,emul = <&emul_pmic0>;
Przemyslaw Marczak77bee052015-05-13 13:38:35 +0200732 };
Lukasz Majewskia4d82972018-05-15 16:26:40 +0200733
734 mc34708: pmic@41 {
735 reg = <0x41>;
Simon Glass17b56f62018-11-18 08:14:34 -0700736 sandbox,emul = <&emul_pmic1>;
Lukasz Majewskia4d82972018-05-15 16:26:40 +0200737 };
Simon Glass7df766e2014-12-10 08:55:55 -0700738 };
739
Philipp Tomsich1fc53302018-12-14 21:14:29 +0100740 bootcount@0 {
741 compatible = "u-boot,bootcount-rtc";
742 rtc = <&rtc_1>;
743 offset = <0x13>;
744 };
745
Michal Simek4f18f922020-05-28 11:48:55 +0200746 bootcount {
747 compatible = "u-boot,bootcount-i2c-eeprom";
748 i2c-eeprom = <&bootcount_i2c>;
749 };
750
Nandor Han88895812021-06-10 15:40:38 +0300751 bootcount_4@0 {
752 compatible = "u-boot,bootcount-syscon";
753 syscon = <&syscon0>;
754 reg = <0x0 0x04>, <0x0 0x04>;
755 reg-names = "syscon_reg", "offset";
756 };
757
758 bootcount_2@0 {
759 compatible = "u-boot,bootcount-syscon";
760 syscon = <&syscon0>;
761 reg = <0x0 0x04>, <0x0 0x02> ;
762 reg-names = "syscon_reg", "offset";
763 };
764
Marek Szyprowskiad398592021-02-18 11:33:18 +0100765 adc: adc@0 {
Przemyslaw Marczak1bc7f232015-10-27 13:08:06 +0100766 compatible = "sandbox,adc";
Marek Szyprowskiad398592021-02-18 11:33:18 +0100767 #io-channel-cells = <1>;
Przemyslaw Marczak1bc7f232015-10-27 13:08:06 +0100768 vdd-supply = <&buck2>;
769 vss-microvolts = <0>;
770 };
771
Mark Kettenis67748ee2021-10-23 16:58:02 +0200772 iommu: iommu@0 {
773 compatible = "sandbox,iommu";
774 #iommu-cells = <0>;
775 };
776
Simon Glass515dcff2020-02-06 09:55:00 -0700777 irq: irq {
Simon Glass54028bc2019-12-06 21:41:59 -0700778 compatible = "sandbox,irq";
Simon Glass515dcff2020-02-06 09:55:00 -0700779 interrupt-controller;
780 #interrupt-cells = <2>;
Simon Glass54028bc2019-12-06 21:41:59 -0700781 };
782
Simon Glass90b6fef2016-01-18 19:52:26 -0700783 lcd {
784 u-boot,dm-pre-reloc;
785 compatible = "sandbox,lcd-sdl";
Dario Binacchi20dd9e12021-04-11 09:39:50 +0200786 pinctrl-names = "default";
787 pinctrl-0 = <&pinmux_lcd_pins>;
Simon Glass90b6fef2016-01-18 19:52:26 -0700788 xres = <1366>;
789 yres = <768>;
790 };
791
Simon Glassd783eb32015-07-06 12:54:34 -0600792 leds {
793 compatible = "gpio-leds";
794
795 iracibble {
796 gpios = <&gpio_a 1 0>;
797 label = "sandbox:red";
798 };
799
800 martinet {
801 gpios = <&gpio_a 2 0>;
802 label = "sandbox:green";
803 };
Patrick Bruennb58adfe2018-04-11 11:16:29 +0200804
805 default_on {
806 gpios = <&gpio_a 5 0>;
807 label = "sandbox:default_on";
808 default-state = "on";
809 };
810
811 default_off {
812 gpios = <&gpio_a 6 0>;
Sean Andersonfbf8d652020-09-14 11:02:03 -0400813 /* label intentionally omitted */
Patrick Bruennb58adfe2018-04-11 11:16:29 +0200814 default-state = "off";
815 };
Simon Glassd783eb32015-07-06 12:54:34 -0600816 };
817
Rasmus Villemoes2b673872021-08-19 11:57:05 +0200818 gpio-wdt {
819 gpios = <&gpio_a 7 0>;
820 compatible = "linux,wdt-gpio";
Rasmus Villemoesf91ff5a2021-08-19 11:57:06 +0200821 hw_margin_ms = <100>;
Rasmus Villemoes2b673872021-08-19 11:57:05 +0200822 always-running;
823 };
824
Stephen Warren62f2c902016-05-16 17:41:37 -0600825 mbox: mbox {
826 compatible = "sandbox,mbox";
827 #mbox-cells = <1>;
828 };
829
830 mbox-test {
831 compatible = "sandbox,mbox-test";
832 mboxes = <&mbox 100>, <&mbox 1>;
833 mbox-names = "other", "test";
834 };
835
AKASHI Takahiro8fb963a2019-08-27 17:17:03 +0900836 cpus {
Heinrich Schuchardt20f9d3d2021-08-28 11:42:08 +0200837 #address-cells = <1>;
838 #size-cells = <0>;
Sean Anderson79d3bba2020-09-28 10:52:23 -0400839 timebase-frequency = <2000000>;
Heinrich Schuchardt20f9d3d2021-08-28 11:42:08 +0200840 cpu1: cpu@1 {
841 device_type = "cpu";
842 reg = <0x1>;
Sean Anderson79d3bba2020-09-28 10:52:23 -0400843 timebase-frequency = <3000000>;
AKASHI Takahiro8fb963a2019-08-27 17:17:03 +0900844 compatible = "sandbox,cpu_sandbox";
845 u-boot,dm-pre-reloc;
846 };
Mario Sixdea5df72018-08-06 10:23:44 +0200847
Heinrich Schuchardt20f9d3d2021-08-28 11:42:08 +0200848 cpu2: cpu@2 {
849 device_type = "cpu";
850 reg = <0x2>;
AKASHI Takahiro8fb963a2019-08-27 17:17:03 +0900851 compatible = "sandbox,cpu_sandbox";
852 u-boot,dm-pre-reloc;
853 };
Mario Sixdea5df72018-08-06 10:23:44 +0200854
Heinrich Schuchardt20f9d3d2021-08-28 11:42:08 +0200855 cpu3: cpu@3 {
856 device_type = "cpu";
857 reg = <0x3>;
AKASHI Takahiro8fb963a2019-08-27 17:17:03 +0900858 compatible = "sandbox,cpu_sandbox";
859 u-boot,dm-pre-reloc;
860 };
Mario Sixdea5df72018-08-06 10:23:44 +0200861 };
862
Dave Gerlach75dbdfc2020-07-15 23:39:58 -0500863 chipid: chipid {
864 compatible = "sandbox,soc";
865 };
866
Simon Glassc953aaf2018-12-10 10:37:34 -0700867 i2s: i2s {
868 compatible = "sandbox,i2s";
869 #sound-dai-cells = <1>;
Simon Glass4d5814c2019-02-16 20:24:56 -0700870 sandbox,silent; /* Don't emit sounds while testing */
Simon Glassc953aaf2018-12-10 10:37:34 -0700871 };
872
Jean-Jacques Hiblotdb97c7f2019-07-05 09:33:57 +0200873 nop-test_0 {
874 compatible = "sandbox,nop_sandbox1";
875 nop-test_1 {
876 compatible = "sandbox,nop_sandbox2";
877 bind = "True";
878 };
879 nop-test_2 {
880 compatible = "sandbox,nop_sandbox2";
881 bind = "False";
882 };
883 };
884
Mario Sixa8ce0ee2018-07-31 14:24:14 +0200885 misc-test {
886 compatible = "sandbox,misc_sandbox";
887 };
888
Simon Glasse4fef742017-04-23 20:02:07 -0600889 mmc2 {
890 compatible = "sandbox,mmc";
Simon Glass965cd402021-07-05 16:32:58 -0600891 non-removable;
Simon Glasse4fef742017-04-23 20:02:07 -0600892 };
893
894 mmc1 {
895 compatible = "sandbox,mmc";
896 };
897
898 mmc0 {
Simon Glassd3e58e42015-07-06 12:54:32 -0600899 compatible = "sandbox,mmc";
900 };
901
Simon Glass53a68b32019-02-16 20:24:50 -0700902 pch {
903 compatible = "sandbox,pch";
904 };
905
Tom Rini4a3ca482020-02-11 12:41:23 -0500906 pci0: pci@0 {
Simon Glass3a6eae62015-03-05 12:25:34 -0700907 compatible = "sandbox,pci";
908 device_type = "pci";
Tom Rini4a3ca482020-02-11 12:41:23 -0500909 bus-range = <0x00 0xff>;
Simon Glass3a6eae62015-03-05 12:25:34 -0700910 #address-cells = <3>;
911 #size-cells = <2>;
Simon Glass35464f72019-09-25 08:56:08 -0600912 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000000
Simon Glass3a6eae62015-03-05 12:25:34 -0700913 0x01000000 0 0x20000000 0x20000000 0 0x2000>;
Bin Mengcbf071b2018-08-03 01:14:39 -0700914 pci@0,0 {
915 compatible = "pci-generic";
916 reg = <0x0000 0 0 0 0>;
Simon Glassb98ba4c2019-09-25 08:56:10 -0600917 sandbox,emul = <&swap_case_emul0_0>;
Bin Mengcbf071b2018-08-03 01:14:39 -0700918 };
Alex Margineanf1274432019-06-07 11:24:24 +0300919 pci@1,0 {
920 compatible = "pci-generic";
Simon Glass23b27592019-09-15 12:08:58 -0600921 /* reg 0 is at 0x14, using FDT_PCI_SPACE_MEM32 */
922 reg = <0x02000814 0 0 0 0
923 0x01000810 0 0 0 0>;
Simon Glassb98ba4c2019-09-25 08:56:10 -0600924 sandbox,emul = <&swap_case_emul0_1>;
Alex Margineanf1274432019-06-07 11:24:24 +0300925 };
Simon Glass937bb472019-12-06 21:41:57 -0700926 p2sb-pci@2,0 {
927 compatible = "sandbox,p2sb";
928 reg = <0x02001010 0 0 0 0>;
929 sandbox,emul = <&p2sb_emul>;
930
931 adder {
932 intel,p2sb-port-id = <3>;
933 compatible = "sandbox,adder";
934 };
935 };
Simon Glass8c501022019-12-06 21:41:54 -0700936 pci@1e,0 {
937 compatible = "sandbox,pmc";
938 reg = <0xf000 0 0 0 0>;
939 sandbox,emul = <&pmc_emul1e>;
940 acpi-base = <0x400>;
941 gpe0-dwx-mask = <0xf>;
942 gpe0-dwx-shift-base = <4>;
943 gpe0-dw = <6 7 9>;
944 gpe0-sts = <0x20>;
945 gpe0-en = <0x30>;
946 };
Simon Glass3a6eae62015-03-05 12:25:34 -0700947 pci@1f,0 {
948 compatible = "pci-generic";
Simon Glass23b27592019-09-15 12:08:58 -0600949 /* reg 0 is at 0x10, using FDT_PCI_SPACE_IO */
950 reg = <0x0100f810 0 0 0 0>;
Simon Glassb98ba4c2019-09-25 08:56:10 -0600951 sandbox,emul = <&swap_case_emul0_1f>;
Simon Glass3a6eae62015-03-05 12:25:34 -0700952 };
953 };
954
Simon Glassb98ba4c2019-09-25 08:56:10 -0600955 pci-emul0 {
956 compatible = "sandbox,pci-emul-parent";
957 swap_case_emul0_0: emul0@0,0 {
958 compatible = "sandbox,swap-case";
959 };
960 swap_case_emul0_1: emul0@1,0 {
961 compatible = "sandbox,swap-case";
962 use-ea;
963 };
964 swap_case_emul0_1f: emul0@1f,0 {
965 compatible = "sandbox,swap-case";
966 };
Simon Glass937bb472019-12-06 21:41:57 -0700967 p2sb_emul: emul@2,0 {
968 compatible = "sandbox,p2sb-emul";
969 };
Simon Glass8c501022019-12-06 21:41:54 -0700970 pmc_emul1e: emul@1e,0 {
971 compatible = "sandbox,pmc-emul";
972 };
Simon Glassb98ba4c2019-09-25 08:56:10 -0600973 };
974
Tom Rini4a3ca482020-02-11 12:41:23 -0500975 pci1: pci@1 {
Bin Meng408e5902018-08-03 01:14:41 -0700976 compatible = "sandbox,pci";
977 device_type = "pci";
Tom Rini4a3ca482020-02-11 12:41:23 -0500978 bus-range = <0x00 0xff>;
Bin Meng408e5902018-08-03 01:14:41 -0700979 #address-cells = <3>;
980 #size-cells = <2>;
Suneel Garapati3ac3aec2019-10-19 17:10:20 -0700981 ranges = <0x02000000 0 0x30000000 0x30000000 0 0x2000 // MEM0
982 0x02000000 0 0x31000000 0x31000000 0 0x2000 // MEM1
983 0x01000000 0 0x40000000 0x40000000 0 0x2000>;
Bin Meng5fed5362018-08-03 01:14:47 -0700984 sandbox,dev-info = <0x08 0x00 0x1234 0x5678
Marek Vasute5733222018-10-10 21:27:08 +0200985 0x0c 0x00 0x1234 0x5678
986 0x10 0x00 0x1234 0x5678>;
987 pci@10,0 {
988 reg = <0x8000 0 0 0 0>;
989 };
Bin Meng408e5902018-08-03 01:14:41 -0700990 };
991
Tom Rini4a3ca482020-02-11 12:41:23 -0500992 pci2: pci@2 {
Bin Meng510dddb2018-08-03 01:14:50 -0700993 compatible = "sandbox,pci";
994 device_type = "pci";
Tom Rini4a3ca482020-02-11 12:41:23 -0500995 bus-range = <0x00 0xff>;
Bin Meng510dddb2018-08-03 01:14:50 -0700996 #address-cells = <3>;
997 #size-cells = <2>;
998 ranges = <0x02000000 0 0x50000000 0x50000000 0 0x2000
999 0x01000000 0 0x60000000 0x60000000 0 0x2000>;
1000 sandbox,dev-info = <0x08 0x00 0x1234 0x5678>;
1001 pci@1f,0 {
1002 compatible = "pci-generic";
1003 reg = <0xf800 0 0 0 0>;
Simon Glassb98ba4c2019-09-25 08:56:10 -06001004 sandbox,emul = <&swap_case_emul2_1f>;
1005 };
1006 };
1007
1008 pci-emul2 {
1009 compatible = "sandbox,pci-emul-parent";
1010 swap_case_emul2_1f: emul2@1f,0 {
1011 compatible = "sandbox,swap-case";
Bin Meng510dddb2018-08-03 01:14:50 -07001012 };
1013 };
1014
Ramon Friedc64f19b2019-04-27 11:15:23 +03001015 pci_ep: pci_ep {
1016 compatible = "sandbox,pci_ep";
1017 };
1018
Simon Glass9c433fe2017-04-23 20:10:44 -06001019 probing {
1020 compatible = "simple-bus";
1021 test1 {
1022 compatible = "denx,u-boot-probe-test";
1023 };
1024
1025 test2 {
1026 compatible = "denx,u-boot-probe-test";
1027 };
1028
1029 test3 {
1030 compatible = "denx,u-boot-probe-test";
1031 };
1032
1033 test4 {
1034 compatible = "denx,u-boot-probe-test";
Jean-Jacques Hiblotdc44ea42018-11-29 10:57:37 +01001035 first-syscon = <&syscon0>;
1036 second-sys-ctrl = <&another_system_controller>;
Patrick Delaunayee010432019-03-07 09:57:13 +01001037 third-syscon = <&syscon2>;
Simon Glass9c433fe2017-04-23 20:10:44 -06001038 };
1039 };
1040
Stephen Warren92c67fa2016-07-13 13:45:31 -06001041 pwrdom: power-domain {
1042 compatible = "sandbox,power-domain";
1043 #power-domain-cells = <1>;
1044 };
1045
1046 power-domain-test {
1047 compatible = "sandbox,power-domain-test";
1048 power-domains = <&pwrdom 2>;
1049 };
1050
Simon Glass5620cf82018-10-01 12:22:40 -06001051 pwm: pwm {
Simon Glasse62f4be2017-04-16 21:01:11 -06001052 compatible = "sandbox,pwm";
Simon Glass5620cf82018-10-01 12:22:40 -06001053 #pwm-cells = <2>;
Dario Binacchi20dd9e12021-04-11 09:39:50 +02001054 pinctrl-names = "default";
1055 pinctrl-0 = <&pinmux_pwm_pins>;
Simon Glasse62f4be2017-04-16 21:01:11 -06001056 };
1057
1058 pwm2 {
1059 compatible = "sandbox,pwm";
Simon Glass5620cf82018-10-01 12:22:40 -06001060 #pwm-cells = <2>;
Simon Glasse62f4be2017-04-16 21:01:11 -06001061 };
1062
Simon Glass3d355e62015-07-06 12:54:31 -06001063 ram {
1064 compatible = "sandbox,ram";
1065 };
1066
Simon Glassd860f222015-07-06 12:54:29 -06001067 reset@0 {
1068 compatible = "sandbox,warm-reset";
1069 };
1070
1071 reset@1 {
1072 compatible = "sandbox,reset";
1073 };
1074
Stephen Warren6488e642016-06-17 09:43:59 -06001075 resetc: reset-ctl {
1076 compatible = "sandbox,reset-ctl";
1077 #reset-cells = <1>;
1078 };
1079
1080 reset-ctl-test {
1081 compatible = "sandbox,reset-ctl-test";
Neil Armstrong9b4cdef2021-04-20 10:42:25 +02001082 resets = <&resetc 100>, <&resetc 2>, <&resetc 20>, <&resetc 40>;
1083 reset-names = "other", "test", "test2", "test3";
Stephen Warren6488e642016-06-17 09:43:59 -06001084 };
1085
Sughosh Ganu23e37512019-12-28 23:58:31 +05301086 rng {
1087 compatible = "sandbox,sandbox-rng";
1088 };
1089
Nishanth Menonedf85812015-09-17 15:42:41 -05001090 rproc_1: rproc@1 {
1091 compatible = "sandbox,test-processor";
1092 remoteproc-name = "remoteproc-test-dev1";
1093 };
1094
1095 rproc_2: rproc@2 {
1096 compatible = "sandbox,test-processor";
1097 internal-memory-mapped;
1098 remoteproc-name = "remoteproc-test-dev2";
1099 };
1100
Simon Glass5620cf82018-10-01 12:22:40 -06001101 panel {
1102 compatible = "simple-panel";
1103 backlight = <&backlight 0 100>;
1104 };
1105
Ramon Fried26ed32e2018-07-02 02:57:59 +03001106 smem@0 {
1107 compatible = "sandbox,smem";
1108 };
1109
Simon Glass76072ac2018-12-10 10:37:36 -07001110 sound {
1111 compatible = "sandbox,sound";
1112 cpu {
1113 sound-dai = <&i2s 0>;
1114 };
1115
1116 codec {
1117 sound-dai = <&audio 0>;
1118 };
1119 };
1120
Simon Glass25348a42014-10-13 23:42:11 -06001121 spi@0 {
1122 #address-cells = <1>;
1123 #size-cells = <0>;
Simon Glasscf61f742015-07-06 12:54:36 -06001124 reg = <0 1>;
Simon Glass25348a42014-10-13 23:42:11 -06001125 compatible = "sandbox,spi";
Ovidiu Panaitae734732020-12-14 19:06:47 +02001126 cs-gpios = <0>, <0>, <&gpio_a 0>;
Dario Binacchi20dd9e12021-04-11 09:39:50 +02001127 pinctrl-names = "default";
1128 pinctrl-0 = <&pinmux_spi0_pins>;
1129
Simon Glass25348a42014-10-13 23:42:11 -06001130 spi.bin@0 {
1131 reg = <0>;
Neil Armstronga009fa72019-02-10 10:16:20 +00001132 compatible = "spansion,m25p16", "jedec,spi-nor";
Simon Glass25348a42014-10-13 23:42:11 -06001133 spi-max-frequency = <40000000>;
1134 sandbox,filename = "spi.bin";
1135 };
Ovidiu Panaitae734732020-12-14 19:06:47 +02001136 spi.bin@1 {
1137 reg = <1>;
1138 compatible = "spansion,m25p16", "jedec,spi-nor";
1139 spi-max-frequency = <50000000>;
1140 sandbox,filename = "spi.bin";
1141 spi-cpol;
1142 spi-cpha;
1143 };
Simon Glass25348a42014-10-13 23:42:11 -06001144 };
1145
Jean-Jacques Hiblotdc44ea42018-11-29 10:57:37 +01001146 syscon0: syscon@0 {
Simon Glasscd556522015-07-06 12:54:35 -06001147 compatible = "sandbox,syscon0";
Mario Sixe3f59f42018-10-04 09:00:40 +02001148 reg = <0x10 16>;
Simon Glasscd556522015-07-06 12:54:35 -06001149 };
1150
Jean-Jacques Hiblotdc44ea42018-11-29 10:57:37 +01001151 another_system_controller: syscon@1 {
Simon Glasscd556522015-07-06 12:54:35 -06001152 compatible = "sandbox,syscon1";
Simon Glasscf61f742015-07-06 12:54:36 -06001153 reg = <0x20 5
1154 0x28 6
1155 0x30 7
1156 0x38 8>;
Simon Glasscd556522015-07-06 12:54:35 -06001157 };
1158
Patrick Delaunayee010432019-03-07 09:57:13 +01001159 syscon2: syscon@2 {
Masahiro Yamada42ab1072018-04-23 13:26:53 +09001160 compatible = "simple-mfd", "syscon";
1161 reg = <0x40 5
1162 0x48 6
1163 0x50 7
1164 0x58 8>;
1165 };
1166
Jean-Jacques Hiblota94b6972020-10-16 16:16:34 +05301167 syscon3: syscon@3 {
1168 compatible = "simple-mfd", "syscon";
1169 reg = <0x000100 0x10>;
1170
1171 muxcontroller0: a-mux-controller {
1172 compatible = "mmio-mux";
1173 #mux-control-cells = <1>;
1174
1175 mux-reg-masks = <0x0 0x30>, /* 0: reg 0x0, bits 5:4 */
1176 <0xc 0x1E>, /* 1: reg 0xc, bits 4:1 */
1177 <0x4 0xFF>; /* 2: reg 0x4, bits 7:0 */
1178 idle-states = <MUX_IDLE_AS_IS>, <0x02>, <0x73>;
1179 u-boot,mux-autoprobe;
1180 };
1181 };
1182
1183 muxcontroller1: emul-mux-controller {
1184 compatible = "mux-emul";
1185 #mux-control-cells = <0>;
1186 u-boot,mux-autoprobe;
1187 idle-state = <0xabcd>;
1188 };
1189
Simon Glass791a17f2020-12-16 21:20:27 -07001190 testfdtm0 {
1191 compatible = "denx,u-boot-fdtm-test";
1192 };
1193
1194 testfdtm1: testfdtm1 {
1195 compatible = "denx,u-boot-fdtm-test";
1196 };
1197
1198 testfdtm2 {
1199 compatible = "denx,u-boot-fdtm-test";
1200 };
1201
Sean Anderson79d3bba2020-09-28 10:52:23 -04001202 timer@0 {
Thomas Chou6f2cfbf2015-12-11 16:27:34 +08001203 compatible = "sandbox,timer";
1204 clock-frequency = <1000000>;
1205 };
1206
Sean Anderson79d3bba2020-09-28 10:52:23 -04001207 timer@1 {
1208 compatible = "sandbox,timer";
1209 sandbox,timebase-frequency-fallback;
1210 };
1211
Miquel Raynal80938c12018-05-15 11:57:27 +02001212 tpm2 {
1213 compatible = "sandbox,tpm2";
1214 };
1215
Simon Glass5b968632015-05-22 15:42:15 -06001216 uart0: serial {
1217 compatible = "sandbox,serial";
1218 u-boot,dm-pre-reloc;
Dario Binacchi20dd9e12021-04-11 09:39:50 +02001219 pinctrl-names = "default";
1220 pinctrl-0 = <&pinmux_uart0_pins>;
Joe Hershberger4c197242015-03-22 17:09:15 -05001221 };
1222
Simon Glass31680482015-03-25 12:23:05 -06001223 usb_0: usb@0 {
1224 compatible = "sandbox,usb";
1225 status = "disabled";
1226 hub {
1227 compatible = "sandbox,usb-hub";
1228 #address-cells = <1>;
1229 #size-cells = <0>;
1230 flash-stick {
1231 reg = <0>;
1232 compatible = "sandbox,usb-flash";
1233 };
1234 };
1235 };
1236
1237 usb_1: usb@1 {
1238 compatible = "sandbox,usb";
Mark Kettenis67748ee2021-10-23 16:58:02 +02001239 iommus = <&iommu>;
Simon Glass31680482015-03-25 12:23:05 -06001240 hub {
1241 compatible = "usb-hub";
1242 usb,device-class = <9>;
Michael Walle7c961322020-06-02 01:47:07 +02001243 #address-cells = <1>;
1244 #size-cells = <0>;
Simon Glass31680482015-03-25 12:23:05 -06001245 hub-emul {
1246 compatible = "sandbox,usb-hub";
1247 #address-cells = <1>;
1248 #size-cells = <0>;
Simon Glass4700fe52015-11-08 23:48:01 -07001249 flash-stick@0 {
Simon Glass31680482015-03-25 12:23:05 -06001250 reg = <0>;
1251 compatible = "sandbox,usb-flash";
1252 sandbox,filepath = "testflash.bin";
1253 };
1254
Simon Glass4700fe52015-11-08 23:48:01 -07001255 flash-stick@1 {
1256 reg = <1>;
1257 compatible = "sandbox,usb-flash";
1258 sandbox,filepath = "testflash1.bin";
1259 };
1260
1261 flash-stick@2 {
1262 reg = <2>;
1263 compatible = "sandbox,usb-flash";
1264 sandbox,filepath = "testflash2.bin";
1265 };
1266
Simon Glassc0ccc722015-11-08 23:48:08 -07001267 keyb@3 {
1268 reg = <3>;
1269 compatible = "sandbox,usb-keyb";
1270 };
1271
Simon Glass31680482015-03-25 12:23:05 -06001272 };
Michael Walle7c961322020-06-02 01:47:07 +02001273
1274 usbstor@1 {
1275 reg = <1>;
1276 };
1277 usbstor@3 {
1278 reg = <3>;
1279 };
Simon Glass31680482015-03-25 12:23:05 -06001280 };
1281 };
1282
1283 usb_2: usb@2 {
1284 compatible = "sandbox,usb";
1285 status = "disabled";
1286 };
1287
Mateusz Kulikowskic7e4fbb2016-03-31 23:12:28 +02001288 spmi: spmi@0 {
1289 compatible = "sandbox,spmi";
1290 #address-cells = <0x1>;
1291 #size-cells = <0x1>;
Simon Glass95139972019-09-25 08:55:59 -06001292 ranges;
Mateusz Kulikowskic7e4fbb2016-03-31 23:12:28 +02001293 pm8916@0 {
1294 compatible = "qcom,spmi-pmic";
1295 reg = <0x0 0x1>;
1296 #address-cells = <0x1>;
1297 #size-cells = <0x1>;
Simon Glass95139972019-09-25 08:55:59 -06001298 ranges;
Mateusz Kulikowskic7e4fbb2016-03-31 23:12:28 +02001299
1300 spmi_gpios: gpios@c000 {
1301 compatible = "qcom,pm8916-gpio";
1302 reg = <0xc000 0x400>;
1303 gpio-controller;
1304 gpio-count = <4>;
1305 #gpio-cells = <2>;
1306 gpio-bank-name="spmi";
1307 };
1308 };
1309 };
maxims@google.comdaea6d42017-04-17 12:00:21 -07001310
1311 wdt0: wdt@0 {
1312 compatible = "sandbox,wdt";
Rasmus Villemoesf91ff5a2021-08-19 11:57:06 +02001313 hw_margin_ms = <200>;
maxims@google.comdaea6d42017-04-17 12:00:21 -07001314 };
Rob Clarka471b672018-01-10 11:33:30 +01001315
Mario Six95922152018-08-09 14:51:19 +02001316 axi: axi@0 {
1317 compatible = "sandbox,axi";
1318 #address-cells = <0x1>;
1319 #size-cells = <0x1>;
1320 store@0 {
1321 compatible = "sandbox,sandbox_store";
1322 reg = <0x0 0x400>;
1323 };
1324 };
1325
Rob Clarka471b672018-01-10 11:33:30 +01001326 chosen {
Simon Glass305ac9a2018-02-03 10:36:58 -07001327 #address-cells = <1>;
1328 #size-cells = <1>;
Simon Glassf3455962020-01-27 08:49:43 -07001329 setting = "sunrise ohoka";
1330 other-node = "/some-bus/c-test@5";
Simon Glasse09223c2020-01-27 08:49:46 -07001331 int-values = <0x1937 72993>;
Simon Glass3c601b12020-07-07 13:12:06 -06001332 u-boot,acpi-ssdt-order = <&acpi_test2 &acpi_test1>;
Rob Clarka471b672018-01-10 11:33:30 +01001333 chosen-test {
1334 compatible = "denx,u-boot-fdt-test";
1335 reg = <9 1>;
1336 };
1337 };
Mario Six35616ef2018-03-12 14:53:33 +01001338
1339 translation-test@8000 {
1340 compatible = "simple-bus";
1341 reg = <0x8000 0x4000>;
1342
1343 #address-cells = <0x2>;
1344 #size-cells = <0x1>;
1345
1346 ranges = <0 0x0 0x8000 0x1000
1347 1 0x100 0x9000 0x1000
1348 2 0x200 0xA000 0x1000
1349 3 0x300 0xB000 0x1000
1350 >;
1351
Fabien Dessenne22236e02019-05-31 15:11:30 +02001352 dma-ranges = <0 0x000 0x10000000 0x1000
1353 1 0x100 0x20000000 0x1000
1354 >;
1355
Mario Six35616ef2018-03-12 14:53:33 +01001356 dev@0,0 {
1357 compatible = "denx,u-boot-fdt-dummy";
1358 reg = <0 0x0 0x1000>;
Álvaro Fernández Rojasa3181152018-12-03 19:37:09 +01001359 reg-names = "sandbox-dummy-0";
Mario Six35616ef2018-03-12 14:53:33 +01001360 };
1361
1362 dev@1,100 {
1363 compatible = "denx,u-boot-fdt-dummy";
1364 reg = <1 0x100 0x1000>;
1365
1366 };
1367
1368 dev@2,200 {
1369 compatible = "denx,u-boot-fdt-dummy";
1370 reg = <2 0x200 0x1000>;
1371 };
1372
1373
1374 noxlatebus@3,300 {
1375 compatible = "simple-bus";
1376 reg = <3 0x300 0x1000>;
1377
1378 #address-cells = <0x1>;
1379 #size-cells = <0x0>;
1380
1381 dev@42 {
1382 compatible = "denx,u-boot-fdt-dummy";
1383 reg = <0x42>;
1384 };
1385 };
1386 };
Mario Six02ad6fb2018-09-27 09:19:31 +02001387
1388 osd {
1389 compatible = "sandbox,sandbox_osd";
1390 };
Tom Rinib93eea72018-09-30 18:16:51 -04001391
Jens Wiklander86afaa62018-09-25 16:40:16 +02001392 sandbox_tee {
1393 compatible = "sandbox,tee";
1394 };
Bin Meng1bb290d2018-10-15 02:21:26 -07001395
1396 sandbox_virtio1 {
1397 compatible = "sandbox,virtio1";
1398 };
1399
1400 sandbox_virtio2 {
1401 compatible = "sandbox,virtio2";
1402 };
Patrice Chotard0fc8afc2018-10-24 14:10:23 +02001403
Etienne Carriere2d94c08fa2020-09-09 18:44:05 +02001404 sandbox_scmi {
1405 compatible = "sandbox,scmi-devices";
1406 clocks = <&clk_scmi0 7>, <&clk_scmi0 3>, <&clk_scmi1 1>;
Etienne Carriere8b9b6892020-09-09 18:44:07 +02001407 resets = <&reset_scmi0 3>;
Etienne Carriereb8f15cd2021-03-08 22:38:07 +01001408 regul0-supply = <&regul0_scmi0>;
1409 regul1-supply = <&regul1_scmi0>;
Etienne Carriere2d94c08fa2020-09-09 18:44:05 +02001410 };
1411
Patrice Chotard0fc8afc2018-10-24 14:10:23 +02001412 pinctrl {
1413 compatible = "sandbox,pinctrl";
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001414
Sean Anderson3438e3b2020-09-14 11:01:57 -04001415 pinctrl-names = "default", "alternate";
1416 pinctrl-0 = <&pinctrl_gpios>, <&pinctrl_i2s>;
1417 pinctrl-1 = <&pinctrl_spi>, <&pinctrl_i2c>;
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001418
Sean Anderson3438e3b2020-09-14 11:01:57 -04001419 pinctrl_gpios: gpios {
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001420 gpio0 {
Sean Anderson3438e3b2020-09-14 11:01:57 -04001421 pins = "P5";
1422 function = "GPIO";
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001423 bias-pull-up;
1424 input-disable;
1425 };
1426 gpio1 {
Sean Anderson3438e3b2020-09-14 11:01:57 -04001427 pins = "P6";
1428 function = "GPIO";
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001429 output-high;
1430 drive-open-drain;
1431 };
1432 gpio2 {
Sean Anderson3438e3b2020-09-14 11:01:57 -04001433 pinmux = <SANDBOX_PINMUX(7, SANDBOX_PINMUX_GPIO)>;
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001434 bias-pull-down;
1435 input-enable;
1436 };
1437 gpio3 {
Sean Anderson3438e3b2020-09-14 11:01:57 -04001438 pinmux = <SANDBOX_PINMUX(8, SANDBOX_PINMUX_GPIO)>;
Patrick Delaunay939cbe92020-01-13 11:35:12 +01001439 bias-disable;
1440 };
1441 };
Sean Anderson3438e3b2020-09-14 11:01:57 -04001442
1443 pinctrl_i2c: i2c {
1444 groups {
1445 groups = "I2C_UART";
1446 function = "I2C";
1447 };
1448
1449 pins {
1450 pins = "P0", "P1";
1451 drive-open-drain;
1452 };
1453 };
1454
1455 pinctrl_i2s: i2s {
1456 groups = "SPI_I2S";
1457 function = "I2S";
1458 };
1459
1460 pinctrl_spi: spi {
1461 groups = "SPI_I2S";
1462 function = "SPI";
1463
1464 cs {
1465 pinmux = <SANDBOX_PINMUX(5, SANDBOX_PINMUX_CS)>,
1466 <SANDBOX_PINMUX(6, SANDBOX_PINMUX_CS)>;
1467 };
1468 };
Patrice Chotard0fc8afc2018-10-24 14:10:23 +02001469 };
Benjamin Gaignarda550b542018-11-27 13:49:50 +01001470
Dario Binacchi20dd9e12021-04-11 09:39:50 +02001471 pinctrl-single-no-width {
1472 compatible = "pinctrl-single";
1473 reg = <0x0000 0x238>;
1474 #pinctrl-cells = <1>;
1475 pinctrl-single,function-mask = <0x7f>;
1476 };
1477
1478 pinctrl-single-pins {
1479 compatible = "pinctrl-single";
1480 reg = <0x0000 0x238>;
1481 #pinctrl-cells = <1>;
1482 pinctrl-single,register-width = <32>;
1483 pinctrl-single,function-mask = <0x7f>;
1484
1485 pinmux_pwm_pins: pinmux_pwm_pins {
1486 pinctrl-single,pins = < 0x48 0x06 >;
1487 };
1488
1489 pinmux_spi0_pins: pinmux_spi0_pins {
1490 pinctrl-single,pins = <
1491 0x190 0x0c
1492 0x194 0x0c
1493 0x198 0x23
1494 0x19c 0x0c
1495 >;
1496 };
1497
1498 pinmux_uart0_pins: pinmux_uart0_pins {
1499 pinctrl-single,pins = <
1500 0x70 0x30
1501 0x74 0x00
1502 >;
1503 };
1504 };
1505
1506 pinctrl-single-bits {
1507 compatible = "pinctrl-single";
1508 reg = <0x0000 0x50>;
1509 #pinctrl-cells = <2>;
1510 pinctrl-single,bit-per-mux;
1511 pinctrl-single,register-width = <32>;
1512 pinctrl-single,function-mask = <0xf>;
1513
1514 pinmux_i2c0_pins: pinmux_i2c0_pins {
1515 pinctrl-single,bits = <
1516 0x10 0x00002200 0x0000ff00
1517 >;
1518 };
1519
1520 pinmux_lcd_pins: pinmux_lcd_pins {
1521 pinctrl-single,bits = <
1522 0x40 0x22222200 0xffffff00
1523 0x44 0x22222222 0xffffffff
1524 0x48 0x00000022 0x000000ff
1525 0x48 0x02000000 0x0f000000
1526 0x4c 0x02000022 0x0f0000ff
1527 >;
1528 };
1529 };
1530
Benjamin Gaignarda550b542018-11-27 13:49:50 +01001531 hwspinlock@0 {
1532 compatible = "sandbox,hwspinlock";
1533 };
Grygorii Strashko19ebf0b2018-11-28 19:17:51 +01001534
1535 dma: dma {
1536 compatible = "sandbox,dma";
1537 #dma-cells = <1>;
1538
1539 dmas = <&dma 0>, <&dma 1>, <&dma 2>;
1540 dma-names = "m2m", "tx0", "rx0";
1541 };
Alex Marginean0daa53a2019-06-03 19:12:28 +03001542
Alex Marginean0649be52019-07-12 10:13:53 +03001543 /*
1544 * keep mdio-mux ahead of mdio so that the mux is removed first at the
1545 * end of the test. If parent mdio is removed first, clean-up of the
1546 * mux will trigger a 2nd probe of parent-mdio, leaving parent-mdio
1547 * active at the end of the test. That it turn doesn't allow the mdio
1548 * class to be destroyed, triggering an error.
1549 */
1550 mdio-mux-test {
1551 compatible = "sandbox,mdio-mux";
1552 #address-cells = <1>;
1553 #size-cells = <0>;
1554 mdio-parent-bus = <&mdio>;
1555
1556 mdio-ch-test@0 {
1557 reg = <0>;
1558 };
1559 mdio-ch-test@1 {
1560 reg = <1>;
1561 };
1562 };
1563
1564 mdio: mdio-test {
Alex Marginean0daa53a2019-06-03 19:12:28 +03001565 compatible = "sandbox,mdio";
1566 };
Sean Andersonb7860542020-06-24 06:41:12 -04001567
1568 pm-bus-test {
1569 compatible = "simple-pm-bus";
1570 clocks = <&clk_sandbox 4>;
1571 power-domains = <&pwrdom 1>;
1572 };
Sean Anderson0c1f6bf2020-06-24 06:41:14 -04001573
1574 resetc2: syscon-reset {
1575 compatible = "syscon-reset";
1576 #reset-cells = <1>;
1577 regmap = <&syscon0>;
1578 offset = <1>;
1579 mask = <0x27FFFFFF>;
1580 assert-high = <0>;
1581 };
1582
1583 syscon-reset-test {
1584 compatible = "sandbox,misc_sandbox";
1585 resets = <&resetc2 15>, <&resetc2 30>, <&resetc2 60>;
1586 reset-names = "valid", "no_mask", "out_of_range";
1587 };
Jean-Jacques Hiblot0b89fc52020-09-24 10:04:18 +05301588
Simon Glass458b66a2020-11-05 06:32:05 -07001589 sysinfo {
1590 compatible = "sandbox,sysinfo-sandbox";
1591 };
1592
Sean Anderson1c830672021-04-20 10:50:58 -04001593 sysinfo-gpio {
1594 compatible = "gpio-sysinfo";
1595 gpios = <&gpio_a 15>, <&gpio_a 16>, <&gpio_a 17>;
1596 revisions = <19>, <5>;
1597 names = "rev_a", "foo";
1598 };
1599
Jean-Jacques Hiblot0b89fc52020-09-24 10:04:18 +05301600 some_regmapped-bus {
1601 #address-cells = <0x1>;
1602 #size-cells = <0x1>;
1603
1604 ranges = <0x0 0x0 0x10>;
1605 compatible = "simple-bus";
1606
1607 regmap-test_0 {
1608 reg = <0 0x10>;
1609 compatible = "sandbox,regmap_test";
1610 };
1611 };
Simon Glassb2c1cac2014-02-26 15:59:21 -07001612};
Przemyslaw Marczak77bee052015-05-13 13:38:35 +02001613
1614#include "sandbox_pmic.dtsi"
Heinrich Schuchardte24fdef2021-02-18 13:01:35 +01001615#include "cros-ec-keyboard.dtsi"