bcm3368.dtsi 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. // SPDX-License-Identifier: GPL-2.0
  2. / {
  3. #address-cells = <1>;
  4. #size-cells = <1>;
  5. compatible = "brcm,bcm3368";
  6. cpus {
  7. #address-cells = <1>;
  8. #size-cells = <0>;
  9. mips-hpt-frequency = <150000000>;
  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_cntl: syscon@fff8c000 {
  44. compatible = "syscon";
  45. reg = <0xfff8c000 0xc>;
  46. native-endian;
  47. };
  48. reboot: syscon-reboot@fff8c008 {
  49. compatible = "syscon-reboot";
  50. regmap = <&periph_cntl>;
  51. offset = <0x8>;
  52. mask = <0x1>;
  53. };
  54. periph_intc: interrupt-controller@fff8c00c {
  55. compatible = "brcm,bcm6345-l1-intc";
  56. reg = <0xfff8c00c 0x8>;
  57. interrupt-controller;
  58. #interrupt-cells = <1>;
  59. interrupt-parent = <&cpu_intc>;
  60. interrupts = <2>;
  61. };
  62. uart0: serial@fff8c100 {
  63. compatible = "brcm,bcm6345-uart";
  64. reg = <0xfff8c100 0x18>;
  65. interrupt-parent = <&periph_intc>;
  66. interrupts = <2>;
  67. clocks = <&periph_clk>;
  68. clock-names = "refclk";
  69. status = "disabled";
  70. };
  71. uart1: serial@fff8c120 {
  72. compatible = "brcm,bcm6345-uart";
  73. reg = <0xfff8c120 0x18>;
  74. interrupt-parent = <&periph_intc>;
  75. interrupts = <3>;
  76. clocks = <&periph_clk>;
  77. clock-names = "refclk";
  78. status = "disabled";
  79. };
  80. };
  81. };