skeleton.dtsi 548 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Skeleton device tree; the bare minimum needed to boot; just include and
  3. * add a compatible value. The bootloader will typically populate the memory
  4. * node.
  5. */
  6. / {
  7. #address-cells = <1>;
  8. #size-cells = <1>;
  9. chosen { };
  10. aliases { };
  11. cpu_card {
  12. compatible = "simple-bus";
  13. #address-cells = <1>;
  14. #size-cells = <1>;
  15. u-boot,dm-pre-reloc;
  16. timer@0 {
  17. compatible = "snps,arc-timer";
  18. clocks = <&core_clk>;
  19. reg = <0 1>;
  20. };
  21. };
  22. memory@80000000 {
  23. device_type = "memory";
  24. reg = <0x80000000 0x10000000>; /* 256M */
  25. };
  26. };