at91sam9g20.dtsi 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. /*
  2. * at91sam9g20.dtsi - Device Tree Include file for AT91SAM9G20 family SoC
  3. *
  4. * Copyright (C) 2011 Atmel,
  5. * 2011 Nicolas Ferre <nicolas.ferre@atmel.com>,
  6. * 2011 Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
  7. *
  8. * Licensed under GPLv2 or later.
  9. */
  10. /include/ "skeleton.dtsi"
  11. / {
  12. model = "Atmel AT91SAM9G20 family SoC";
  13. compatible = "atmel,at91sam9g20";
  14. interrupt-parent = <&aic>;
  15. aliases {
  16. serial0 = &dbgu;
  17. serial1 = &usart0;
  18. serial2 = &usart1;
  19. serial3 = &usart2;
  20. serial4 = &usart3;
  21. serial5 = &usart4;
  22. serial6 = &usart5;
  23. };
  24. cpus {
  25. cpu@0 {
  26. compatible = "arm,arm926ejs";
  27. };
  28. };
  29. memory@20000000 {
  30. reg = <0x20000000 0x08000000>;
  31. };
  32. ahb {
  33. compatible = "simple-bus";
  34. #address-cells = <1>;
  35. #size-cells = <1>;
  36. ranges;
  37. apb {
  38. compatible = "simple-bus";
  39. #address-cells = <1>;
  40. #size-cells = <1>;
  41. ranges;
  42. aic: interrupt-controller@fffff000 {
  43. #interrupt-cells = <1>;
  44. compatible = "atmel,at91rm9200-aic";
  45. interrupt-controller;
  46. interrupt-parent;
  47. reg = <0xfffff000 0x200>;
  48. };
  49. dbgu: serial@fffff200 {
  50. compatible = "atmel,at91sam9260-usart";
  51. reg = <0xfffff200 0x200>;
  52. interrupts = <1>;
  53. status = "disabled";
  54. };
  55. usart0: serial@fffb0000 {
  56. compatible = "atmel,at91sam9260-usart";
  57. reg = <0xfffb0000 0x200>;
  58. interrupts = <6>;
  59. atmel,use-dma-rx;
  60. atmel,use-dma-tx;
  61. status = "disabled";
  62. };
  63. usart1: serial@fffb4000 {
  64. compatible = "atmel,at91sam9260-usart";
  65. reg = <0xfffb4000 0x200>;
  66. interrupts = <7>;
  67. atmel,use-dma-rx;
  68. atmel,use-dma-tx;
  69. status = "disabled";
  70. };
  71. usart2: serial@fffb8000 {
  72. compatible = "atmel,at91sam9260-usart";
  73. reg = <0xfffb8000 0x200>;
  74. interrupts = <8>;
  75. atmel,use-dma-rx;
  76. atmel,use-dma-tx;
  77. status = "disabled";
  78. };
  79. usart3: serial@fffd0000 {
  80. compatible = "atmel,at91sam9260-usart";
  81. reg = <0xfffd0000 0x200>;
  82. interrupts = <23>;
  83. atmel,use-dma-rx;
  84. atmel,use-dma-tx;
  85. status = "disabled";
  86. };
  87. usart4: serial@fffd4000 {
  88. compatible = "atmel,at91sam9260-usart";
  89. reg = <0xfffd4000 0x200>;
  90. interrupts = <24>;
  91. atmel,use-dma-rx;
  92. atmel,use-dma-tx;
  93. status = "disabled";
  94. };
  95. usart5: serial@fffd8000 {
  96. compatible = "atmel,at91sam9260-usart";
  97. reg = <0xfffd8000 0x200>;
  98. interrupts = <25>;
  99. atmel,use-dma-rx;
  100. atmel,use-dma-tx;
  101. status = "disabled";
  102. };
  103. macb0: ethernet@fffc4000 {
  104. compatible = "cdns,at32ap7000-macb", "cdns,macb";
  105. reg = <0xfffc4000 0x100>;
  106. interrupts = <21>;
  107. status = "disabled";
  108. };
  109. };
  110. };
  111. };