imx31.dtsi 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * Copyright 2012 Denis 'GNUtoo' Carikli <GNUtoo@no-log.org>
  3. *
  4. * The code contained herein is licensed under the GNU General Public
  5. * License. You may obtain a copy of the GNU General Public License
  6. * Version 2 or later at the following locations:
  7. *
  8. * http://www.opensource.org/licenses/gpl-license.html
  9. * http://www.gnu.org/copyleft/gpl.html
  10. */
  11. /include/ "skeleton.dtsi"
  12. / {
  13. aliases {
  14. serial0 = &uart1;
  15. serial1 = &uart2;
  16. serial2 = &uart3;
  17. serial3 = &uart4;
  18. serial4 = &uart5;
  19. };
  20. avic: avic-interrupt-controller@60000000 {
  21. compatible = "fsl,imx31-avic", "fsl,avic";
  22. interrupt-controller;
  23. #interrupt-cells = <1>;
  24. reg = <0x60000000 0x100000>;
  25. };
  26. soc {
  27. #address-cells = <1>;
  28. #size-cells = <1>;
  29. compatible = "simple-bus";
  30. interrupt-parent = <&avic>;
  31. ranges;
  32. aips@43f00000 { /* AIPS1 */
  33. compatible = "fsl,aips-bus", "simple-bus";
  34. #address-cells = <1>;
  35. #size-cells = <1>;
  36. reg = <0x43f00000 0x100000>;
  37. ranges;
  38. uart1: serial@43f90000 {
  39. compatible = "fsl,imx31-uart", "fsl,imx21-uart";
  40. reg = <0x43f90000 0x4000>;
  41. interrupts = <45>;
  42. status = "disabled";
  43. };
  44. uart2: serial@43f94000 {
  45. compatible = "fsl,imx31-uart", "fsl,imx21-uart";
  46. reg = <0x43f94000 0x4000>;
  47. interrupts = <32>;
  48. status = "disabled";
  49. };
  50. uart4: serial@43fb0000 {
  51. compatible = "fsl,imx31-uart", "fsl,imx21-uart";
  52. reg = <0x43fb0000 0x4000>;
  53. interrupts = <46>;
  54. status = "disabled";
  55. };
  56. uart5: serial@43fb4000 {
  57. compatible = "fsl,imx31-uart", "fsl,imx21-uart";
  58. reg = <0x43fb4000 0x4000>;
  59. interrupts = <47>;
  60. status = "disabled";
  61. };
  62. };
  63. spba@50000000 {
  64. compatible = "fsl,spba-bus", "simple-bus";
  65. #address-cells = <1>;
  66. #size-cells = <1>;
  67. reg = <0x50000000 0x100000>;
  68. ranges;
  69. uart3: serial@5000c000 {
  70. compatible = "fsl,imx31-uart", "fsl,imx21-uart";
  71. reg = <0x5000c000 0x4000>;
  72. interrupts = <18>;
  73. status = "disabled";
  74. };
  75. };
  76. };
  77. };