pxa168.dtsi 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. * Copyright (C) 2012 Marvell Technology Group Ltd.
  3. * Author: Haojian Zhuang <haojian.zhuang@marvell.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * publishhed by the Free Software Foundation.
  8. */
  9. /include/ "skeleton.dtsi"
  10. / {
  11. aliases {
  12. serial0 = &uart1;
  13. serial1 = &uart2;
  14. serial2 = &uart3;
  15. i2c0 = &twsi1;
  16. i2c1 = &twsi2;
  17. };
  18. intc: intc-interrupt-controller@d4282000 {
  19. compatible = "mrvl,mmp-intc", "mrvl,intc";
  20. interrupt-controller;
  21. #interrupt-cells = <1>;
  22. reg = <0xd4282000 0x1000>;
  23. };
  24. soc {
  25. #address-cells = <1>;
  26. #size-cells = <1>;
  27. compatible = "simple-bus";
  28. interrupt-parent = <&intc>;
  29. ranges;
  30. apb@d4000000 { /* APB */
  31. compatible = "mrvl,apb-bus", "simple-bus";
  32. #address-cells = <1>;
  33. #size-cells = <1>;
  34. reg = <0xd4000000 0x00200000>;
  35. ranges;
  36. uart1: uart@d4017000 {
  37. compatible = "mrvl,mmp-uart", "mrvl,pxa-uart";
  38. reg = <0xd4017000 0x1000>;
  39. interrupts = <27>;
  40. status = "disabled";
  41. };
  42. uart2: uart@d4018000 {
  43. compatible = "mrvl,mmp-uart", "mrvl,pxa-uart";
  44. reg = <0xd4018000 0x1000>;
  45. interrupts = <28>;
  46. status = "disabled";
  47. };
  48. uart3: uart@d4026000 {
  49. compatible = "mrvl,mmp-uart", "mrvl,pxa-uart";
  50. reg = <0xd4026000 0x1000>;
  51. interrupts = <29>;
  52. status = "disabled";
  53. };
  54. gpio: gpio@d4019000 {
  55. compatible = "mrvl,mmp-gpio", "mrvl,pxa-gpio";
  56. reg = <0xd4019000 0x1000>;
  57. interrupts = <49>;
  58. interrupt-names = "gpio_mux";
  59. gpio-controller;
  60. #gpio-cells = <1>;
  61. interrupt-controller;
  62. #interrupt-cells = <1>;
  63. };
  64. twsi1: i2c@d4011000 {
  65. compatible = "mrvl,mmp-twsi", "mrvl,pxa-i2c";
  66. reg = <0xd4011000 0x1000>;
  67. interrupts = <7>;
  68. mrvl,i2c-fast-mode;
  69. status = "disabled";
  70. };
  71. twsi2: i2c@d4025000 {
  72. compatible = "mrvl,mmp-twsi", "mrvl,pxa-i2c";
  73. reg = <0xd4025000 0x1000>;
  74. interrupts = <58>;
  75. status = "disabled";
  76. };
  77. rtc: rtc@d4010000 {
  78. compatible = "mrvl,mmp-rtc";
  79. reg = <0xd4010000 0x1000>;
  80. interrupts = <5 6>;
  81. interrupt-names = "rtc 1Hz", "rtc alarm";
  82. status = "disabled";
  83. };
  84. };
  85. };
  86. };