skeleton_hs.dtsi 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. * Copyright (C) 2016 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. compatible = "snps,arc";
  10. #address-cells = <1>;
  11. #size-cells = <1>;
  12. chosen { };
  13. aliases { };
  14. cpus {
  15. #address-cells = <1>;
  16. #size-cells = <0>;
  17. cpu@0 {
  18. device_type = "cpu";
  19. compatible = "snps,archs38";
  20. reg = <0>;
  21. };
  22. };
  23. /* TIMER0 with interrupt for clockevent */
  24. timer0 {
  25. compatible = "snps,arc-timer";
  26. interrupts = <16>;
  27. interrupt-parent = <&core_intc>;
  28. clocks = <&core_clk>;
  29. };
  30. /* 64-bit Local RTC: preferred clocksource for UP */
  31. rtc {
  32. compatible = "snps,archs-timer-rtc";
  33. clocks = <&core_clk>;
  34. };
  35. /* TIMER1 for free running clocksource: Fallback if rtc not found */
  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. };