1/dts-v1/; 2 3/ { 4 model = "sandbox"; 5 compatible = "sandbox"; 6 #address-cells = <1>; 7 #size-cells = <1>; 8 9 aliases { 10 console = &uart0; 11 eth0 = "/eth@10002000"; 12 eth3 = ð_3; 13 eth5 = ð_5; 14 i2c0 = "/i2c@0"; 15 mmc0 = "/mmc0"; 16 mmc1 = "/mmc1"; 17 pci0 = &pci; 18 remoteproc1 = &rproc_1; 19 remoteproc2 = &rproc_2; 20 rtc0 = &rtc_0; 21 rtc1 = &rtc_1; 22 spi0 = "/spi@0"; 23 testfdt6 = "/e-test"; 24 testbus3 = "/some-bus"; 25 testfdt0 = "/some-bus/c-test@0"; 26 testfdt1 = "/some-bus/c-test@1"; 27 testfdt3 = "/b-test"; 28 testfdt5 = "/some-bus/c-test@5"; 29 testfdt8 = "/a-test"; 30 usb0 = &usb_0; 31 usb1 = &usb_1; 32 usb2 = &usb_2; 33 }; 34 35 a-test { 36 reg = <0 1>; 37 compatible = "denx,u-boot-fdt-test"; 38 ping-expect = <0>; 39 ping-add = <0>; 40 u-boot,dm-pre-reloc; 41 test-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 5 0 3 2 1>, 42 <0>, <&gpio_a 12>; 43 test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>, 44 <&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>, 45 <&gpio_b 9 0xc 3 2 1>; 46 }; 47 48 junk { 49 reg = <1 1>; 50 compatible = "not,compatible"; 51 }; 52 53 no-compatible { 54 reg = <2 1>; 55 }; 56 57 b-test { 58 reg = <3 1>; 59 compatible = "denx,u-boot-fdt-test"; 60 ping-expect = <3>; 61 ping-add = <3>; 62 }; 63 64 phy_provider0: gen_phy@0 { 65 compatible = "sandbox,phy"; 66 #phy-cells = <1>; 67 }; 68 69 phy_provider1: gen_phy@1 { 70 compatible = "sandbox,phy"; 71 #phy-cells = <0>; 72 broken; 73 }; 74 75 gen_phy_user: gen_phy_user { 76 compatible = "simple-bus"; 77 phys = <&phy_provider0 0>, <&phy_provider0 1>, <&phy_provider1>; 78 phy-names = "phy1", "phy2", "phy3"; 79 }; 80 81 some-bus { 82 #address-cells = <1>; 83 #size-cells = <0>; 84 compatible = "denx,u-boot-test-bus"; 85 reg = <3 1>; 86 ping-expect = <4>; 87 ping-add = <4>; 88 c-test@5 { 89 compatible = "denx,u-boot-fdt-test"; 90 reg = <5>; 91 ping-expect = <5>; 92 ping-add = <5>; 93 }; 94 c-test@0 { 95 compatible = "denx,u-boot-fdt-test"; 96 reg = <0>; 97 ping-expect = <6>; 98 ping-add = <6>; 99 }; 100 c-test@1 { 101 compatible = "denx,u-boot-fdt-test"; 102 reg = <1>; 103 ping-expect = <7>; 104 ping-add = <7>; 105 }; 106 }; 107 108 d-test { 109 reg = <3 1>; 110 ping-expect = <6>; 111 ping-add = <6>; 112 compatible = "google,another-fdt-test"; 113 }; 114 115 e-test { 116 reg = <3 1>; 117 ping-expect = <6>; 118 ping-add = <6>; 119 compatible = "google,another-fdt-test"; 120 }; 121 122 f-test { 123 compatible = "denx,u-boot-fdt-test"; 124 }; 125 126 g-test { 127 compatible = "denx,u-boot-fdt-test"; 128 }; 129 130 clk_fixed: clk-fixed { 131 compatible = "fixed-clock"; 132 #clock-cells = <0>; 133 clock-frequency = <1234>; 134 }; 135 136 clk_sandbox: clk-sbox { 137 compatible = "sandbox,clk"; 138 #clock-cells = <1>; 139 }; 140 141 clk-test { 142 compatible = "sandbox,clk-test"; 143 clocks = <&clk_fixed>, 144 <&clk_sandbox 1>, 145 <&clk_sandbox 0>; 146 clock-names = "fixed", "i2c", "spi"; 147 }; 148 149 eth@10002000 { 150 compatible = "sandbox,eth"; 151 reg = <0x10002000 0x1000>; 152 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x00>; 153 }; 154 155 eth_5: eth@10003000 { 156 compatible = "sandbox,eth"; 157 reg = <0x10003000 0x1000>; 158 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x11>; 159 }; 160 161 eth_3: sbe5 { 162 compatible = "sandbox,eth"; 163 reg = <0x10005000 0x1000>; 164 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x33>; 165 }; 166 167 eth@10004000 { 168 compatible = "sandbox,eth"; 169 reg = <0x10004000 0x1000>; 170 fake-host-hwaddr = <0x00 0x00 0x66 0x44 0x22 0x22>; 171 }; 172 173 gpio_a: base-gpios { 174 compatible = "sandbox,gpio"; 175 gpio-controller; 176 #gpio-cells = <1>; 177 gpio-bank-name = "a"; 178 num-gpios = <20>; 179 }; 180 181 gpio_b: extra-gpios { 182 compatible = "sandbox,gpio"; 183 gpio-controller; 184 #gpio-cells = <5>; 185 gpio-bank-name = "b"; 186 num-gpios = <10>; 187 }; 188 189 i2c@0 { 190 #address-cells = <1>; 191 #size-cells = <0>; 192 reg = <0 1>; 193 compatible = "sandbox,i2c"; 194 clock-frequency = <100000>; 195 eeprom@2c { 196 reg = <0x2c>; 197 compatible = "i2c-eeprom"; 198 emul { 199 compatible = "sandbox,i2c-eeprom"; 200 sandbox,filename = "i2c.bin"; 201 sandbox,size = <256>; 202 }; 203 }; 204 205 rtc_0: rtc@43 { 206 reg = <0x43>; 207 compatible = "sandbox-rtc"; 208 emul { 209 compatible = "sandbox,i2c-rtc"; 210 }; 211 }; 212 213 rtc_1: rtc@61 { 214 reg = <0x61>; 215 compatible = "sandbox-rtc"; 216 emul { 217 compatible = "sandbox,i2c-rtc"; 218 }; 219 }; 220 221 sandbox_pmic: sandbox_pmic { 222 reg = <0x40>; 223 }; 224 }; 225 226 adc@0 { 227 compatible = "sandbox,adc"; 228 vdd-supply = <&buck2>; 229 vss-microvolts = <0>; 230 }; 231 232 lcd { 233 u-boot,dm-pre-reloc; 234 compatible = "sandbox,lcd-sdl"; 235 xres = <1366>; 236 yres = <768>; 237 }; 238 239 leds { 240 compatible = "gpio-leds"; 241 242 iracibble { 243 gpios = <&gpio_a 1 0>; 244 label = "sandbox:red"; 245 }; 246 247 martinet { 248 gpios = <&gpio_a 2 0>; 249 label = "sandbox:green"; 250 }; 251 }; 252 253 mbox: mbox { 254 compatible = "sandbox,mbox"; 255 #mbox-cells = <1>; 256 }; 257 258 mbox-test { 259 compatible = "sandbox,mbox-test"; 260 mboxes = <&mbox 100>, <&mbox 1>; 261 mbox-names = "other", "test"; 262 }; 263 264 mmc2 { 265 compatible = "sandbox,mmc"; 266 }; 267 268 mmc1 { 269 compatible = "sandbox,mmc"; 270 }; 271 272 mmc0 { 273 compatible = "sandbox,mmc"; 274 }; 275 276 pci: pci-controller { 277 compatible = "sandbox,pci"; 278 device_type = "pci"; 279 #address-cells = <3>; 280 #size-cells = <2>; 281 ranges = <0x02000000 0 0x10000000 0x10000000 0 0x2000 282 0x01000000 0 0x20000000 0x20000000 0 0x2000>; 283 pci@1f,0 { 284 compatible = "pci-generic"; 285 reg = <0xf800 0 0 0 0>; 286 emul@1f,0 { 287 compatible = "sandbox,swap-case"; 288 }; 289 }; 290 }; 291 292 pwrdom: power-domain { 293 compatible = "sandbox,power-domain"; 294 #power-domain-cells = <1>; 295 }; 296 297 power-domain-test { 298 compatible = "sandbox,power-domain-test"; 299 power-domains = <&pwrdom 2>; 300 }; 301 302 pwm { 303 compatible = "sandbox,pwm"; 304 }; 305 306 pwm2 { 307 compatible = "sandbox,pwm"; 308 }; 309 310 ram { 311 compatible = "sandbox,ram"; 312 }; 313 314 reset@0 { 315 compatible = "sandbox,warm-reset"; 316 }; 317 318 reset@1 { 319 compatible = "sandbox,reset"; 320 }; 321 322 resetc: reset-ctl { 323 compatible = "sandbox,reset-ctl"; 324 #reset-cells = <1>; 325 }; 326 327 reset-ctl-test { 328 compatible = "sandbox,reset-ctl-test"; 329 resets = <&resetc 100>, <&resetc 2>; 330 reset-names = "other", "test"; 331 }; 332 333 rproc_1: rproc@1 { 334 compatible = "sandbox,test-processor"; 335 remoteproc-name = "remoteproc-test-dev1"; 336 }; 337 338 rproc_2: rproc@2 { 339 compatible = "sandbox,test-processor"; 340 internal-memory-mapped; 341 remoteproc-name = "remoteproc-test-dev2"; 342 }; 343 344 spi@0 { 345 #address-cells = <1>; 346 #size-cells = <0>; 347 reg = <0 1>; 348 compatible = "sandbox,spi"; 349 cs-gpios = <0>, <&gpio_a 0>; 350 spi.bin@0 { 351 reg = <0>; 352 compatible = "spansion,m25p16", "spi-flash"; 353 spi-max-frequency = <40000000>; 354 sandbox,filename = "spi.bin"; 355 }; 356 }; 357 358 syscon@0 { 359 compatible = "sandbox,syscon0"; 360 reg = <0x10 4>; 361 }; 362 363 syscon@1 { 364 compatible = "sandbox,syscon1"; 365 reg = <0x20 5 366 0x28 6 367 0x30 7 368 0x38 8>; 369 }; 370 371 timer { 372 compatible = "sandbox,timer"; 373 clock-frequency = <1000000>; 374 }; 375 376 uart0: serial { 377 compatible = "sandbox,serial"; 378 u-boot,dm-pre-reloc; 379 }; 380 381 usb_0: usb@0 { 382 compatible = "sandbox,usb"; 383 status = "disabled"; 384 hub { 385 compatible = "sandbox,usb-hub"; 386 #address-cells = <1>; 387 #size-cells = <0>; 388 flash-stick { 389 reg = <0>; 390 compatible = "sandbox,usb-flash"; 391 }; 392 }; 393 }; 394 395 usb_1: usb@1 { 396 compatible = "sandbox,usb"; 397 hub { 398 compatible = "usb-hub"; 399 usb,device-class = <9>; 400 hub-emul { 401 compatible = "sandbox,usb-hub"; 402 #address-cells = <1>; 403 #size-cells = <0>; 404 flash-stick@0 { 405 reg = <0>; 406 compatible = "sandbox,usb-flash"; 407 sandbox,filepath = "testflash.bin"; 408 }; 409 410 flash-stick@1 { 411 reg = <1>; 412 compatible = "sandbox,usb-flash"; 413 sandbox,filepath = "testflash1.bin"; 414 }; 415 416 flash-stick@2 { 417 reg = <2>; 418 compatible = "sandbox,usb-flash"; 419 sandbox,filepath = "testflash2.bin"; 420 }; 421 422 keyb@3 { 423 reg = <3>; 424 compatible = "sandbox,usb-keyb"; 425 }; 426 427 }; 428 }; 429 }; 430 431 usb_2: usb@2 { 432 compatible = "sandbox,usb"; 433 status = "disabled"; 434 }; 435 436 spmi: spmi@0 { 437 compatible = "sandbox,spmi"; 438 #address-cells = <0x1>; 439 #size-cells = <0x1>; 440 pm8916@0 { 441 compatible = "qcom,spmi-pmic"; 442 reg = <0x0 0x1>; 443 #address-cells = <0x1>; 444 #size-cells = <0x1>; 445 446 spmi_gpios: gpios@c000 { 447 compatible = "qcom,pm8916-gpio"; 448 reg = <0xc000 0x400>; 449 gpio-controller; 450 gpio-count = <4>; 451 #gpio-cells = <2>; 452 gpio-bank-name="spmi"; 453 }; 454 }; 455 }; 456 457 wdt0: wdt@0 { 458 compatible = "sandbox,wdt"; 459 }; 460}; 461 462#include "sandbox_pmic.dtsi" 463