spear3xx.dtsi 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /*
  2. * DTS file for all SPEAr3xx SoCs
  3. *
  4. * Copyright 2012 Viresh Kumar <viresh.linux@gmail.com>
  5. *
  6. * The code contained herein is licensed under the GNU General Public
  7. * License. You may obtain a copy of the GNU General Public License
  8. * Version 2 or later at the following locations:
  9. *
  10. * http://www.opensource.org/licenses/gpl-license.html
  11. * http://www.gnu.org/copyleft/gpl.html
  12. */
  13. /include/ "skeleton.dtsi"
  14. / {
  15. interrupt-parent = <&vic>;
  16. cpus {
  17. cpu@0 {
  18. compatible = "arm,arm926ejs";
  19. };
  20. };
  21. memory {
  22. device_type = "memory";
  23. reg = <0 0x40000000>;
  24. };
  25. ahb {
  26. #address-cells = <1>;
  27. #size-cells = <1>;
  28. compatible = "simple-bus";
  29. ranges = <0xd0000000 0xd0000000 0x30000000>;
  30. vic: interrupt-controller@f1100000 {
  31. compatible = "arm,pl190-vic";
  32. interrupt-controller;
  33. reg = <0xf1100000 0x1000>;
  34. #interrupt-cells = <1>;
  35. };
  36. dma@fc400000 {
  37. compatible = "arm,pl080", "arm,primecell";
  38. reg = <0xfc400000 0x1000>;
  39. interrupt-parent = <&vic>;
  40. interrupts = <8>;
  41. status = "disabled";
  42. };
  43. gmac: eth@e0800000 {
  44. compatible = "st,spear600-gmac";
  45. reg = <0xe0800000 0x8000>;
  46. interrupts = <23 22>;
  47. interrupt-names = "macirq", "eth_wake_irq";
  48. phy-mode = "mii";
  49. status = "disabled";
  50. };
  51. smi: flash@fc000000 {
  52. compatible = "st,spear600-smi";
  53. #address-cells = <1>;
  54. #size-cells = <1>;
  55. reg = <0xfc000000 0x1000>;
  56. interrupts = <9>;
  57. status = "disabled";
  58. };
  59. spi0: spi@d0100000 {
  60. compatible = "arm,pl022", "arm,primecell";
  61. reg = <0xd0100000 0x1000>;
  62. interrupts = <20>;
  63. status = "disabled";
  64. };
  65. ehci@e1800000 {
  66. compatible = "st,spear600-ehci", "usb-ehci";
  67. reg = <0xe1800000 0x1000>;
  68. interrupts = <26>;
  69. status = "disabled";
  70. };
  71. ohci@e1900000 {
  72. compatible = "st,spear600-ohci", "usb-ohci";
  73. reg = <0xe1900000 0x1000>;
  74. interrupts = <25>;
  75. status = "disabled";
  76. };
  77. ohci@e2100000 {
  78. compatible = "st,spear600-ohci", "usb-ohci";
  79. reg = <0xe2100000 0x1000>;
  80. interrupts = <27>;
  81. status = "disabled";
  82. };
  83. apb {
  84. #address-cells = <1>;
  85. #size-cells = <1>;
  86. compatible = "simple-bus";
  87. ranges = <0xd0000000 0xd0000000 0x30000000>;
  88. gpio0: gpio@fc980000 {
  89. compatible = "arm,pl061", "arm,primecell";
  90. reg = <0xfc980000 0x1000>;
  91. interrupts = <11>;
  92. gpio-controller;
  93. #gpio-cells = <2>;
  94. interrupt-controller;
  95. #interrupt-cells = <2>;
  96. status = "disabled";
  97. };
  98. i2c0: i2c@d0180000 {
  99. #address-cells = <1>;
  100. #size-cells = <0>;
  101. compatible = "snps,designware-i2c";
  102. reg = <0xd0180000 0x1000>;
  103. interrupts = <21>;
  104. status = "disabled";
  105. };
  106. rtc@fc900000 {
  107. compatible = "st,spear600-rtc";
  108. reg = <0xfc900000 0x1000>;
  109. interrupts = <10>;
  110. status = "disabled";
  111. };
  112. serial@d0000000 {
  113. compatible = "arm,pl011", "arm,primecell";
  114. reg = <0xd0000000 0x1000>;
  115. interrupts = <19>;
  116. status = "disabled";
  117. };
  118. wdt@fc880000 {
  119. compatible = "arm,sp805", "arm,primecell";
  120. reg = <0xfc880000 0x1000>;
  121. interrupts = <12>;
  122. status = "disabled";
  123. };
  124. timer@f0000000 {
  125. compatible = "st,spear-timer";
  126. reg = <0xf0000000 0x400>;
  127. interrupts = <2>;
  128. };
  129. };
  130. };
  131. };