skeleton.dtsi 1007 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (C) 2012 Synopsys, Inc. (www.synopsys.com)
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. /*
  9. * Skeleton device tree; the bare minimum needed to boot; just include and
  10. * add a compatible value.
  11. */
  12. / {
  13. compatible = "snps,arc";
  14. #address-cells = <1>;
  15. #size-cells = <1>;
  16. chosen { };
  17. aliases { };
  18. cpus {
  19. #address-cells = <1>;
  20. #size-cells = <0>;
  21. cpu@0 {
  22. device_type = "cpu";
  23. compatible = "snps,arc770d";
  24. reg = <0>;
  25. clocks = <&core_clk>;
  26. };
  27. };
  28. /* TIMER0 with interrupt for clockevent */
  29. timer0 {
  30. compatible = "snps,arc-timer";
  31. interrupts = <3>;
  32. interrupt-parent = <&core_intc>;
  33. clocks = <&core_clk>;
  34. };
  35. /* TIMER1 for free running clocksource */
  36. timer1 {
  37. compatible = "snps,arc-timer";
  38. clocks = <&core_clk>;
  39. };
  40. memory {
  41. device_type = "memory";
  42. reg = <0x80000000 0x10000000>; /* 256M */
  43. };
  44. };