skeleton_hs_idu.dtsi 879 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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,archs38xN";
  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 Global Free Running Counter */
  31. gfrc {
  32. compatible = "snps,archs-timer-gfrc";
  33. clocks = <&core_clk>;
  34. };
  35. memory {
  36. device_type = "memory";
  37. reg = <0x80000000 0x10000000>; /* 256M */
  38. };
  39. };