xref: /freebsd-src/sys/contrib/device-tree/src/arm/qcom/qcom-msm8960.dtsi (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2f126890aSEmmanuel Vadot/dts-v1/;
3f126890aSEmmanuel Vadot
4f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h>
5f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,gcc-msm8960.h>
6f126890aSEmmanuel Vadot#include <dt-bindings/reset/qcom,gcc-msm8960.h>
7f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,lcc-msm8960.h>
8f126890aSEmmanuel Vadot#include <dt-bindings/mfd/qcom-rpm.h>
9f126890aSEmmanuel Vadot#include <dt-bindings/soc/qcom,gsbi.h>
10f126890aSEmmanuel Vadot
11f126890aSEmmanuel Vadot/ {
12f126890aSEmmanuel Vadot	#address-cells = <1>;
13f126890aSEmmanuel Vadot	#size-cells = <1>;
14f126890aSEmmanuel Vadot	model = "Qualcomm MSM8960";
15f126890aSEmmanuel Vadot	compatible = "qcom,msm8960";
16f126890aSEmmanuel Vadot	interrupt-parent = <&intc>;
17f126890aSEmmanuel Vadot
18f126890aSEmmanuel Vadot	cpus {
19f126890aSEmmanuel Vadot		#address-cells = <1>;
20f126890aSEmmanuel Vadot		#size-cells = <0>;
21f126890aSEmmanuel Vadot		interrupts = <GIC_PPI 14 0x304>;
22f126890aSEmmanuel Vadot
23f126890aSEmmanuel Vadot		cpu@0 {
24f126890aSEmmanuel Vadot			compatible = "qcom,krait";
25f126890aSEmmanuel Vadot			enable-method = "qcom,kpss-acc-v1";
26f126890aSEmmanuel Vadot			device_type = "cpu";
27f126890aSEmmanuel Vadot			reg = <0>;
28f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
29f126890aSEmmanuel Vadot			qcom,acc = <&acc0>;
30f126890aSEmmanuel Vadot			qcom,saw = <&saw0>;
31f126890aSEmmanuel Vadot		};
32f126890aSEmmanuel Vadot
33f126890aSEmmanuel Vadot		cpu@1 {
34f126890aSEmmanuel Vadot			compatible = "qcom,krait";
35f126890aSEmmanuel Vadot			enable-method = "qcom,kpss-acc-v1";
36f126890aSEmmanuel Vadot			device_type = "cpu";
37f126890aSEmmanuel Vadot			reg = <1>;
38f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
39f126890aSEmmanuel Vadot			qcom,acc = <&acc1>;
40f126890aSEmmanuel Vadot			qcom,saw = <&saw1>;
41f126890aSEmmanuel Vadot		};
42f126890aSEmmanuel Vadot
43f126890aSEmmanuel Vadot		L2: l2-cache {
44f126890aSEmmanuel Vadot			compatible = "cache";
45f126890aSEmmanuel Vadot			cache-level = <2>;
46f126890aSEmmanuel Vadot			cache-unified;
47f126890aSEmmanuel Vadot		};
48f126890aSEmmanuel Vadot	};
49f126890aSEmmanuel Vadot
50*0e8011faSEmmanuel Vadot	memory@80000000 {
51f126890aSEmmanuel Vadot		device_type = "memory";
52*0e8011faSEmmanuel Vadot		reg = <0x80000000 0>;
53f126890aSEmmanuel Vadot	};
54f126890aSEmmanuel Vadot
55f126890aSEmmanuel Vadot	cpu-pmu {
56f126890aSEmmanuel Vadot		compatible = "qcom,krait-pmu";
57f126890aSEmmanuel Vadot		interrupts = <GIC_PPI 10 0x304>;
58f126890aSEmmanuel Vadot		qcom,no-pc-write;
59f126890aSEmmanuel Vadot	};
60f126890aSEmmanuel Vadot
61f126890aSEmmanuel Vadot	clocks {
62f126890aSEmmanuel Vadot		cxo_board: cxo_board {
63f126890aSEmmanuel Vadot			compatible = "fixed-clock";
64f126890aSEmmanuel Vadot			#clock-cells = <0>;
65f126890aSEmmanuel Vadot			clock-frequency = <19200000>;
66f126890aSEmmanuel Vadot			clock-output-names = "cxo_board";
67f126890aSEmmanuel Vadot		};
68f126890aSEmmanuel Vadot
69f126890aSEmmanuel Vadot		pxo_board: pxo_board {
70f126890aSEmmanuel Vadot			compatible = "fixed-clock";
71f126890aSEmmanuel Vadot			#clock-cells = <0>;
72f126890aSEmmanuel Vadot			clock-frequency = <27000000>;
73f126890aSEmmanuel Vadot			clock-output-names = "pxo_board";
74f126890aSEmmanuel Vadot		};
75f126890aSEmmanuel Vadot
76f126890aSEmmanuel Vadot		sleep_clk: sleep_clk {
77f126890aSEmmanuel Vadot			compatible = "fixed-clock";
78f126890aSEmmanuel Vadot			#clock-cells = <0>;
79f126890aSEmmanuel Vadot			clock-frequency = <32768>;
80f126890aSEmmanuel Vadot			clock-output-names = "sleep_clk";
81f126890aSEmmanuel Vadot		};
82f126890aSEmmanuel Vadot	};
83f126890aSEmmanuel Vadot
84f126890aSEmmanuel Vadot	/* Temporary fixed regulator */
85f126890aSEmmanuel Vadot	vsdcc_fixed: vsdcc-regulator {
86f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
87f126890aSEmmanuel Vadot		regulator-name = "SDCC Power";
88f126890aSEmmanuel Vadot		regulator-min-microvolt = <2700000>;
89f126890aSEmmanuel Vadot		regulator-max-microvolt = <2700000>;
90f126890aSEmmanuel Vadot		regulator-always-on;
91f126890aSEmmanuel Vadot	};
92f126890aSEmmanuel Vadot
93f126890aSEmmanuel Vadot	soc: soc {
94f126890aSEmmanuel Vadot		#address-cells = <1>;
95f126890aSEmmanuel Vadot		#size-cells = <1>;
96f126890aSEmmanuel Vadot		ranges;
97f126890aSEmmanuel Vadot		compatible = "simple-bus";
98f126890aSEmmanuel Vadot
99f126890aSEmmanuel Vadot		intc: interrupt-controller@2000000 {
100f126890aSEmmanuel Vadot			compatible = "qcom,msm-qgic2";
101f126890aSEmmanuel Vadot			interrupt-controller;
102f126890aSEmmanuel Vadot			#interrupt-cells = <3>;
103f126890aSEmmanuel Vadot			reg = <0x02000000 0x1000>,
104f126890aSEmmanuel Vadot			      <0x02002000 0x1000>;
105f126890aSEmmanuel Vadot		};
106f126890aSEmmanuel Vadot
107f126890aSEmmanuel Vadot		timer@200a000 {
108f126890aSEmmanuel Vadot			compatible = "qcom,kpss-wdt-msm8960", "qcom,kpss-timer",
109f126890aSEmmanuel Vadot				     "qcom,msm-timer";
110f126890aSEmmanuel Vadot			interrupts = <GIC_PPI 1 0x301>,
111f126890aSEmmanuel Vadot				     <GIC_PPI 2 0x301>,
112f126890aSEmmanuel Vadot				     <GIC_PPI 3 0x301>;
113f126890aSEmmanuel Vadot			reg = <0x0200a000 0x100>;
114f126890aSEmmanuel Vadot			clock-frequency = <27000000>;
115f126890aSEmmanuel Vadot			cpu-offset = <0x80000>;
116f126890aSEmmanuel Vadot		};
117f126890aSEmmanuel Vadot
118f126890aSEmmanuel Vadot		msmgpio: pinctrl@800000 {
119f126890aSEmmanuel Vadot			compatible = "qcom,msm8960-pinctrl";
120f126890aSEmmanuel Vadot			gpio-controller;
121f126890aSEmmanuel Vadot			gpio-ranges = <&msmgpio 0 0 152>;
122f126890aSEmmanuel Vadot			#gpio-cells = <2>;
123f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>;
124f126890aSEmmanuel Vadot			interrupt-controller;
125f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
126f126890aSEmmanuel Vadot			reg = <0x800000 0x4000>;
127f126890aSEmmanuel Vadot		};
128f126890aSEmmanuel Vadot
129f126890aSEmmanuel Vadot		gcc: clock-controller@900000 {
130f126890aSEmmanuel Vadot			compatible = "qcom,gcc-msm8960";
131f126890aSEmmanuel Vadot			#clock-cells = <1>;
132f126890aSEmmanuel Vadot			#reset-cells = <1>;
133f126890aSEmmanuel Vadot			reg = <0x900000 0x4000>;
134f126890aSEmmanuel Vadot			clocks = <&cxo_board>,
135f126890aSEmmanuel Vadot				 <&pxo_board>,
136f126890aSEmmanuel Vadot				 <&lcc PLL4>;
137f126890aSEmmanuel Vadot			clock-names = "cxo", "pxo", "pll4";
138f126890aSEmmanuel Vadot		};
139f126890aSEmmanuel Vadot
140f126890aSEmmanuel Vadot		lcc: clock-controller@28000000 {
141f126890aSEmmanuel Vadot			compatible = "qcom,lcc-msm8960";
142f126890aSEmmanuel Vadot			reg = <0x28000000 0x1000>;
143f126890aSEmmanuel Vadot			#clock-cells = <1>;
144f126890aSEmmanuel Vadot			#reset-cells = <1>;
145f126890aSEmmanuel Vadot			clocks = <&pxo_board>,
146f126890aSEmmanuel Vadot				 <&gcc PLL4_VOTE>,
147f126890aSEmmanuel Vadot				 <0>,
148f126890aSEmmanuel Vadot				 <0>, <0>,
149f126890aSEmmanuel Vadot				 <0>, <0>,
150f126890aSEmmanuel Vadot				 <0>;
151f126890aSEmmanuel Vadot			clock-names = "pxo",
152f126890aSEmmanuel Vadot				      "pll4_vote",
153f126890aSEmmanuel Vadot				      "mi2s_codec_clk",
154f126890aSEmmanuel Vadot				      "codec_i2s_mic_codec_clk",
155f126890aSEmmanuel Vadot				      "spare_i2s_mic_codec_clk",
156f126890aSEmmanuel Vadot				      "codec_i2s_spkr_codec_clk",
157f126890aSEmmanuel Vadot				      "spare_i2s_spkr_codec_clk",
158f126890aSEmmanuel Vadot				      "pcm_codec_clk";
159f126890aSEmmanuel Vadot		};
160f126890aSEmmanuel Vadot
161f126890aSEmmanuel Vadot		clock-controller@4000000 {
162f126890aSEmmanuel Vadot			compatible = "qcom,mmcc-msm8960";
163f126890aSEmmanuel Vadot			reg = <0x4000000 0x1000>;
164f126890aSEmmanuel Vadot			#clock-cells = <1>;
165f126890aSEmmanuel Vadot			#power-domain-cells = <1>;
166f126890aSEmmanuel Vadot			#reset-cells = <1>;
167f126890aSEmmanuel Vadot			clocks = <&pxo_board>,
168f126890aSEmmanuel Vadot				 <&gcc PLL3>,
169f126890aSEmmanuel Vadot				 <&gcc PLL8_VOTE>,
170f126890aSEmmanuel Vadot				 <0>,
171f126890aSEmmanuel Vadot				 <0>,
172f126890aSEmmanuel Vadot				 <0>,
173f126890aSEmmanuel Vadot				 <0>,
174f126890aSEmmanuel Vadot				 <0>;
175f126890aSEmmanuel Vadot			clock-names = "pxo",
176f126890aSEmmanuel Vadot				      "pll3",
177f126890aSEmmanuel Vadot				      "pll8_vote",
178f126890aSEmmanuel Vadot				      "dsi1pll",
179f126890aSEmmanuel Vadot				      "dsi1pllbyte",
180f126890aSEmmanuel Vadot				      "dsi2pll",
181f126890aSEmmanuel Vadot				      "dsi2pllbyte",
182f126890aSEmmanuel Vadot				      "hdmipll";
183f126890aSEmmanuel Vadot		};
184f126890aSEmmanuel Vadot
185f126890aSEmmanuel Vadot		l2cc: clock-controller@2011000 {
186f126890aSEmmanuel Vadot			compatible = "qcom,kpss-gcc-msm8960", "qcom,kpss-gcc", "syscon";
187f126890aSEmmanuel Vadot			reg = <0x2011000 0x1000>;
188f126890aSEmmanuel Vadot			clocks = <&gcc PLL8_VOTE>, <&pxo_board>;
189f126890aSEmmanuel Vadot			clock-names = "pll8_vote", "pxo";
190f126890aSEmmanuel Vadot			#clock-cells = <0>;
191f126890aSEmmanuel Vadot		};
192f126890aSEmmanuel Vadot
193f126890aSEmmanuel Vadot		rpm: rpm@108000 {
194f126890aSEmmanuel Vadot			compatible = "qcom,rpm-msm8960";
195f126890aSEmmanuel Vadot			reg = <0x108000 0x1000>;
196f126890aSEmmanuel Vadot			qcom,ipc = <&l2cc 0x8 2>;
197f126890aSEmmanuel Vadot
198f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 19 IRQ_TYPE_EDGE_RISING>,
199f126890aSEmmanuel Vadot				     <GIC_SPI 21 IRQ_TYPE_EDGE_RISING>,
200f126890aSEmmanuel Vadot				     <GIC_SPI 22 IRQ_TYPE_EDGE_RISING>;
201f126890aSEmmanuel Vadot			interrupt-names = "ack", "err", "wakeup";
202f126890aSEmmanuel Vadot		};
203f126890aSEmmanuel Vadot
204f126890aSEmmanuel Vadot		acc0: clock-controller@2088000 {
205f126890aSEmmanuel Vadot			compatible = "qcom,kpss-acc-v1";
206f126890aSEmmanuel Vadot			reg = <0x02088000 0x1000>, <0x02008000 0x1000>;
207f126890aSEmmanuel Vadot			clocks = <&gcc PLL8_VOTE>, <&pxo_board>;
208f126890aSEmmanuel Vadot			clock-names = "pll8_vote", "pxo";
209f126890aSEmmanuel Vadot			clock-output-names = "acpu0_aux";
210f126890aSEmmanuel Vadot			#clock-cells = <0>;
211f126890aSEmmanuel Vadot		};
212f126890aSEmmanuel Vadot
213f126890aSEmmanuel Vadot		acc1: clock-controller@2098000 {
214f126890aSEmmanuel Vadot			compatible = "qcom,kpss-acc-v1";
215f126890aSEmmanuel Vadot			reg = <0x02098000 0x1000>, <0x02008000 0x1000>;
216f126890aSEmmanuel Vadot			clocks = <&gcc PLL8_VOTE>, <&pxo_board>;
217f126890aSEmmanuel Vadot			clock-names = "pll8_vote", "pxo";
218f126890aSEmmanuel Vadot			clock-output-names = "acpu1_aux";
219f126890aSEmmanuel Vadot			#clock-cells = <0>;
220f126890aSEmmanuel Vadot		};
221f126890aSEmmanuel Vadot
22201950c46SEmmanuel Vadot		saw0: power-manager@2089000 {
22301950c46SEmmanuel Vadot			compatible = "qcom,msm8960-saw2-cpu", "qcom,saw2";
224f126890aSEmmanuel Vadot			reg = <0x02089000 0x1000>, <0x02009000 0x1000>;
22501950c46SEmmanuel Vadot
22601950c46SEmmanuel Vadot			saw0_vreg: regulator {
22701950c46SEmmanuel Vadot				regulator-min-microvolt = <850000>;
22801950c46SEmmanuel Vadot				regulator-max-microvolt = <1300000>;
22901950c46SEmmanuel Vadot			};
230f126890aSEmmanuel Vadot		};
231f126890aSEmmanuel Vadot
23201950c46SEmmanuel Vadot		saw1: power-manager@2099000 {
23301950c46SEmmanuel Vadot			compatible = "qcom,msm8960-saw2-cpu", "qcom,saw2";
234f126890aSEmmanuel Vadot			reg = <0x02099000 0x1000>, <0x02009000 0x1000>;
23501950c46SEmmanuel Vadot
23601950c46SEmmanuel Vadot			saw1_vreg: regulator {
23701950c46SEmmanuel Vadot				regulator-min-microvolt = <850000>;
23801950c46SEmmanuel Vadot				regulator-max-microvolt = <1300000>;
23901950c46SEmmanuel Vadot			};
240f126890aSEmmanuel Vadot		};
241f126890aSEmmanuel Vadot
242f126890aSEmmanuel Vadot		gsbi5: gsbi@16400000 {
243f126890aSEmmanuel Vadot			compatible = "qcom,gsbi-v1.0.0";
244f126890aSEmmanuel Vadot			cell-index = <5>;
245f126890aSEmmanuel Vadot			reg = <0x16400000 0x100>;
246f126890aSEmmanuel Vadot			clocks = <&gcc GSBI5_H_CLK>;
247f126890aSEmmanuel Vadot			clock-names = "iface";
248f126890aSEmmanuel Vadot			#address-cells = <1>;
249f126890aSEmmanuel Vadot			#size-cells = <1>;
250f126890aSEmmanuel Vadot			ranges;
251f126890aSEmmanuel Vadot
252f126890aSEmmanuel Vadot			syscon-tcsr = <&tcsr>;
253f126890aSEmmanuel Vadot
254f126890aSEmmanuel Vadot			gsbi5_serial: serial@16440000 {
255f126890aSEmmanuel Vadot				compatible = "qcom,msm-uartdm-v1.3", "qcom,msm-uartdm";
256f126890aSEmmanuel Vadot				reg = <0x16440000 0x1000>,
257f126890aSEmmanuel Vadot				      <0x16400000 0x1000>;
258f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
259f126890aSEmmanuel Vadot				clocks = <&gcc GSBI5_UART_CLK>, <&gcc GSBI5_H_CLK>;
260f126890aSEmmanuel Vadot				clock-names = "core", "iface";
261f126890aSEmmanuel Vadot				status = "disabled";
262f126890aSEmmanuel Vadot			};
263f126890aSEmmanuel Vadot		};
264f126890aSEmmanuel Vadot
2658d13bc63SEmmanuel Vadot		ssbi: ssbi@500000 {
266f126890aSEmmanuel Vadot			compatible = "qcom,ssbi";
267f126890aSEmmanuel Vadot			reg = <0x500000 0x1000>;
268f126890aSEmmanuel Vadot			qcom,controller-type = "pmic-arbiter";
269f126890aSEmmanuel Vadot		};
270f126890aSEmmanuel Vadot
271f126890aSEmmanuel Vadot		rng@1a500000 {
272f126890aSEmmanuel Vadot			compatible = "qcom,prng";
273f126890aSEmmanuel Vadot			reg = <0x1a500000 0x200>;
274f126890aSEmmanuel Vadot			clocks = <&gcc PRNG_CLK>;
275f126890aSEmmanuel Vadot			clock-names = "core";
276f126890aSEmmanuel Vadot		};
277f126890aSEmmanuel Vadot
278f126890aSEmmanuel Vadot		sdcc3: mmc@12180000 {
279f126890aSEmmanuel Vadot			compatible = "arm,pl18x", "arm,primecell";
280f126890aSEmmanuel Vadot			arm,primecell-periphid = <0x00051180>;
281f126890aSEmmanuel Vadot			status = "disabled";
282f126890aSEmmanuel Vadot			reg = <0x12180000 0x8000>;
283f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
284f126890aSEmmanuel Vadot			clocks = <&gcc SDC3_CLK>, <&gcc SDC3_H_CLK>;
285f126890aSEmmanuel Vadot			clock-names = "mclk", "apb_pclk";
286f126890aSEmmanuel Vadot			bus-width = <4>;
287f126890aSEmmanuel Vadot			cap-sd-highspeed;
288f126890aSEmmanuel Vadot			cap-mmc-highspeed;
289f126890aSEmmanuel Vadot			max-frequency = <192000000>;
290f126890aSEmmanuel Vadot			no-1-8-v;
291f126890aSEmmanuel Vadot			vmmc-supply = <&vsdcc_fixed>;
292f126890aSEmmanuel Vadot		};
293f126890aSEmmanuel Vadot
294f126890aSEmmanuel Vadot		sdcc1: mmc@12400000 {
295f126890aSEmmanuel Vadot			status = "disabled";
296f126890aSEmmanuel Vadot			compatible = "arm,pl18x", "arm,primecell";
297f126890aSEmmanuel Vadot			arm,primecell-periphid = <0x00051180>;
298f126890aSEmmanuel Vadot			reg = <0x12400000 0x8000>;
299f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
300f126890aSEmmanuel Vadot			clocks = <&gcc SDC1_CLK>, <&gcc SDC1_H_CLK>;
301f126890aSEmmanuel Vadot			clock-names = "mclk", "apb_pclk";
302f126890aSEmmanuel Vadot			bus-width = <8>;
303f126890aSEmmanuel Vadot			max-frequency = <96000000>;
304f126890aSEmmanuel Vadot			non-removable;
305f126890aSEmmanuel Vadot			cap-sd-highspeed;
306f126890aSEmmanuel Vadot			cap-mmc-highspeed;
307f126890aSEmmanuel Vadot			vmmc-supply = <&vsdcc_fixed>;
308f126890aSEmmanuel Vadot		};
309f126890aSEmmanuel Vadot
310f126890aSEmmanuel Vadot		tcsr: syscon@1a400000 {
311f126890aSEmmanuel Vadot			compatible = "qcom,tcsr-msm8960", "syscon";
312f126890aSEmmanuel Vadot			reg = <0x1a400000 0x100>;
313f126890aSEmmanuel Vadot		};
314f126890aSEmmanuel Vadot
315f126890aSEmmanuel Vadot		gsbi1: gsbi@16000000 {
316f126890aSEmmanuel Vadot			compatible = "qcom,gsbi-v1.0.0";
317f126890aSEmmanuel Vadot			cell-index = <1>;
318f126890aSEmmanuel Vadot			reg = <0x16000000 0x100>;
319f126890aSEmmanuel Vadot			clocks = <&gcc GSBI1_H_CLK>;
320f126890aSEmmanuel Vadot			clock-names = "iface";
321f126890aSEmmanuel Vadot			#address-cells = <1>;
322f126890aSEmmanuel Vadot			#size-cells = <1>;
323f126890aSEmmanuel Vadot			ranges;
324f126890aSEmmanuel Vadot
325f126890aSEmmanuel Vadot			gsbi1_spi: spi@16080000 {
326f126890aSEmmanuel Vadot				compatible = "qcom,spi-qup-v1.1.1";
327f126890aSEmmanuel Vadot				#address-cells = <1>;
328f126890aSEmmanuel Vadot				#size-cells = <0>;
329f126890aSEmmanuel Vadot				reg = <0x16080000 0x1000>;
330f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 147 IRQ_TYPE_LEVEL_HIGH>;
331f126890aSEmmanuel Vadot				cs-gpios = <&msmgpio 8 0>;
332f126890aSEmmanuel Vadot
333f126890aSEmmanuel Vadot				clocks = <&gcc GSBI1_QUP_CLK>, <&gcc GSBI1_H_CLK>;
334f126890aSEmmanuel Vadot				clock-names = "core", "iface";
335f126890aSEmmanuel Vadot				status = "disabled";
336f126890aSEmmanuel Vadot			};
337f126890aSEmmanuel Vadot		};
338f126890aSEmmanuel Vadot
339f126890aSEmmanuel Vadot		usb1: usb@12500000 {
340f126890aSEmmanuel Vadot			compatible = "qcom,ci-hdrc";
341f126890aSEmmanuel Vadot			reg = <0x12500000 0x200>,
342f126890aSEmmanuel Vadot			      <0x12500200 0x200>;
343f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
344f126890aSEmmanuel Vadot			clocks = <&gcc USB_HS1_XCVR_CLK>, <&gcc USB_HS1_H_CLK>;
345f126890aSEmmanuel Vadot			clock-names = "core", "iface";
346f126890aSEmmanuel Vadot			assigned-clocks = <&gcc USB_HS1_XCVR_CLK>;
347f126890aSEmmanuel Vadot			assigned-clock-rates = <60000000>;
348f126890aSEmmanuel Vadot			resets = <&gcc USB_HS1_RESET>;
349f126890aSEmmanuel Vadot			reset-names = "core";
350f126890aSEmmanuel Vadot			phy_type = "ulpi";
351f126890aSEmmanuel Vadot			ahb-burst-config = <0>;
352f126890aSEmmanuel Vadot			phys = <&usb_hs1_phy>;
353f126890aSEmmanuel Vadot			phy-names = "usb-phy";
354f126890aSEmmanuel Vadot			#reset-cells = <1>;
355f126890aSEmmanuel Vadot			status = "disabled";
356f126890aSEmmanuel Vadot
357f126890aSEmmanuel Vadot			ulpi {
358f126890aSEmmanuel Vadot				usb_hs1_phy: phy {
359f126890aSEmmanuel Vadot					compatible = "qcom,usb-hs-phy-msm8960",
360f126890aSEmmanuel Vadot						     "qcom,usb-hs-phy";
361f126890aSEmmanuel Vadot					clocks = <&sleep_clk>, <&cxo_board>;
362f126890aSEmmanuel Vadot					clock-names = "sleep", "ref";
363f126890aSEmmanuel Vadot					resets = <&usb1 0>;
364f126890aSEmmanuel Vadot					reset-names = "por";
365f126890aSEmmanuel Vadot					#phy-cells = <0>;
366f126890aSEmmanuel Vadot				};
367f126890aSEmmanuel Vadot			};
368f126890aSEmmanuel Vadot		};
36901950c46SEmmanuel Vadot
37001950c46SEmmanuel Vadot		gsbi3: gsbi@16200000 {
37101950c46SEmmanuel Vadot			compatible = "qcom,gsbi-v1.0.0";
37201950c46SEmmanuel Vadot			reg = <0x16200000 0x100>;
37301950c46SEmmanuel Vadot			ranges;
37401950c46SEmmanuel Vadot			cell-index = <3>;
37501950c46SEmmanuel Vadot			clocks = <&gcc GSBI3_H_CLK>;
37601950c46SEmmanuel Vadot			clock-names = "iface";
37701950c46SEmmanuel Vadot			#address-cells = <1>;
37801950c46SEmmanuel Vadot			#size-cells = <1>;
37901950c46SEmmanuel Vadot			status = "disabled";
38001950c46SEmmanuel Vadot
38101950c46SEmmanuel Vadot			gsbi3_i2c: i2c@16280000 {
38201950c46SEmmanuel Vadot				compatible = "qcom,i2c-qup-v1.1.1";
38301950c46SEmmanuel Vadot				reg = <0x16280000 0x1000>;
38401950c46SEmmanuel Vadot				pinctrl-0 = <&i2c3_default_state>;
38501950c46SEmmanuel Vadot				pinctrl-1 = <&i2c3_sleep_state>;
38601950c46SEmmanuel Vadot				pinctrl-names = "default", "sleep";
38701950c46SEmmanuel Vadot				interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
38801950c46SEmmanuel Vadot				clocks = <&gcc GSBI3_QUP_CLK>,
38901950c46SEmmanuel Vadot					 <&gcc GSBI3_H_CLK>;
39001950c46SEmmanuel Vadot				clock-names = "core", "iface";
39101950c46SEmmanuel Vadot				#address-cells = <1>;
39201950c46SEmmanuel Vadot				#size-cells = <0>;
39301950c46SEmmanuel Vadot				status = "disabled";
394f126890aSEmmanuel Vadot			};
395f126890aSEmmanuel Vadot		};
39601950c46SEmmanuel Vadot	};
39701950c46SEmmanuel Vadot};
39801950c46SEmmanuel Vadot#include "qcom-msm8960-pins.dtsi"
399