bcm6328.dtsi 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. // SPDX-License-Identifier: GPL-2.0
  2. / {
  3. #address-cells = <1>;
  4. #size-cells = <1>;
  5. compatible = "brcm,bcm6328";
  6. cpus {
  7. #address-cells = <1>;
  8. #size-cells = <0>;
  9. mips-hpt-frequency = <160000000>;
  10. cpu@0 {
  11. compatible = "brcm,bmips4350";
  12. device_type = "cpu";
  13. reg = <0>;
  14. };
  15. cpu@1 {
  16. compatible = "brcm,bmips4350";
  17. device_type = "cpu";
  18. reg = <1>;
  19. };
  20. };
  21. clocks {
  22. periph_clk: periph-clk {
  23. compatible = "fixed-clock";
  24. #clock-cells = <0>;
  25. clock-frequency = <50000000>;
  26. };
  27. };
  28. aliases {
  29. serial0 = &uart0;
  30. serial1 = &uart1;
  31. };
  32. cpu_intc: interrupt-controller {
  33. #address-cells = <0>;
  34. compatible = "mti,cpu-interrupt-controller";
  35. interrupt-controller;
  36. #interrupt-cells = <1>;
  37. };
  38. ubus {
  39. #address-cells = <1>;
  40. #size-cells = <1>;
  41. compatible = "simple-bus";
  42. ranges;
  43. periph_intc: interrupt-controller@10000020 {
  44. compatible = "brcm,bcm6345-l1-intc";
  45. reg = <0x10000020 0x10>,
  46. <0x10000030 0x10>;
  47. interrupt-controller;
  48. #interrupt-cells = <1>;
  49. interrupt-parent = <&cpu_intc>;
  50. interrupts = <2>, <3>;
  51. };
  52. uart0: serial@10000100 {
  53. compatible = "brcm,bcm6345-uart";
  54. reg = <0x10000100 0x18>;
  55. interrupt-parent = <&periph_intc>;
  56. interrupts = <28>;
  57. clocks = <&periph_clk>;
  58. clock-names = "refclk";
  59. status = "disabled";
  60. };
  61. uart1: serial@10000120 {
  62. compatible = "brcm,bcm6345-uart";
  63. reg = <0x10000120 0x18>;
  64. interrupt-parent = <&periph_intc>;
  65. interrupts = <39>;
  66. clocks = <&periph_clk>;
  67. clock-names = "refclk";
  68. status = "disabled";
  69. };
  70. timer: syscon@10000040 {
  71. compatible = "syscon";
  72. reg = <0x10000040 0x2c>;
  73. native-endian;
  74. };
  75. reboot: syscon-reboot@10000068 {
  76. compatible = "syscon-reboot";
  77. regmap = <&timer>;
  78. offset = <0x28>;
  79. mask = <0x1>;
  80. };
  81. leds0: led-controller@10000800 {
  82. #address-cells = <1>;
  83. #size-cells = <0>;
  84. compatible = "brcm,bcm6328-leds";
  85. reg = <0x10000800 0x24>;
  86. status = "disabled";
  87. };
  88. ehci: usb@10002500 {
  89. compatible = "brcm,bcm6328-ehci", "generic-ehci";
  90. reg = <0x10002500 0x100>;
  91. big-endian;
  92. interrupt-parent = <&periph_intc>;
  93. interrupts = <42>;
  94. status = "disabled";
  95. };
  96. ohci: usb@10002600 {
  97. compatible = "brcm,bcm6328-ohci", "generic-ohci";
  98. reg = <0x10002600 0x100>;
  99. big-endian;
  100. no-big-frame-no;
  101. interrupt-parent = <&periph_intc>;
  102. interrupts = <41>;
  103. status = "disabled";
  104. };
  105. };
  106. };