xref: /openbmc/linux/arch/mips/boot/dts/brcm/bcm6362.dtsi (revision bed8d2a2)
1/ {
2	#address-cells = <1>;
3	#size-cells = <1>;
4	compatible = "brcm,bcm6362";
5
6	cpus {
7		#address-cells = <1>;
8		#size-cells = <0>;
9
10		mips-hpt-frequency = <200000000>;
11
12		cpu@0 {
13			compatible = "brcm,bmips4350";
14			device_type = "cpu";
15			reg = <0>;
16		};
17
18		cpu@1 {
19			compatible = "brcm,bmips4350";
20			device_type = "cpu";
21			reg = <1>;
22		};
23	};
24
25	clocks {
26		periph_clk: periph-clk {
27			compatible = "fixed-clock";
28			#clock-cells = <0>;
29			clock-frequency = <50000000>;
30		};
31	};
32
33	aliases {
34		serial0 = &uart0;
35		serial1 = &uart1;
36	};
37
38	cpu_intc: interrupt-controller {
39		#address-cells = <0>;
40		compatible = "mti,cpu-interrupt-controller";
41
42		interrupt-controller;
43		#interrupt-cells = <1>;
44	};
45
46	ubus {
47		#address-cells = <1>;
48		#size-cells = <1>;
49
50		compatible = "simple-bus";
51		ranges;
52
53		periph_cntl: syscon@10000000 {
54			compatible = "syscon";
55			reg = <0x10000000 0x14>;
56			native-endian;
57		};
58
59		reboot: syscon-reboot@10000008 {
60			compatible = "syscon-reboot";
61			regmap = <&periph_cntl>;
62			offset = <0x8>;
63			mask = <0x1>;
64		};
65
66		periph_intc: interrupt-controller@10000020 {
67			compatible = "brcm,bcm6345-l1-intc";
68			reg = <0x10000020 0x10>,
69			      <0x10000030 0x10>;
70
71			interrupt-controller;
72			#interrupt-cells = <1>;
73
74			interrupt-parent = <&cpu_intc>;
75			interrupts = <2>, <3>;
76		};
77
78		uart0: serial@10000100 {
79			compatible = "brcm,bcm6345-uart";
80			reg = <0x10000100 0x18>;
81
82			interrupt-parent = <&periph_intc>;
83			interrupts = <3>;
84
85			clocks = <&periph_clk>;
86			clock-names = "refclk";
87
88			status = "disabled";
89		};
90
91		uart1: serial@10000120 {
92			compatible = "brcm,bcm6345-uart";
93			reg = <0x10000120 0x18>;
94
95			interrupt-parent = <&periph_intc>;
96			interrupts = <4>;
97
98			clocks = <&periph_clk>;
99			clock-names = "refclk";
100
101			status = "disabled";
102		};
103
104		leds0: led-controller@10001900 {
105			#address-cells = <1>;
106			#size-cells = <0>;
107			compatible = "brcm,bcm6328-leds";
108			reg = <0x10001900 0x24>;
109
110			status = "disabled";
111		};
112
113		ehci: usb@10002500 {
114			compatible = "brcm,bcm6362-ehci", "generic-ehci";
115			reg = <0x10002500 0x100>;
116			big-endian;
117
118			interrupt-parent = <&periph_intc>;
119			interrupts = <10>;
120
121			status = "disabled";
122		};
123
124		ohci: usb@10002600 {
125			compatible = "brcm,bcm6362-ohci", "generic-ohci";
126			reg = <0x10002600 0x100>;
127			big-endian;
128			no-big-frame-no;
129
130			interrupt-parent = <&periph_intc>;
131			interrupts = <9>;
132
133			status = "disabled";
134		};
135	};
136};
137