xref: /freebsd-src/sys/contrib/device-tree/src/arm/qcom/qcom-msm8974.dtsi (revision b2d2a78ad80ec68d4a17f5aef97d21686cb1e29b)
1f126890aSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0
2f126890aSEmmanuel Vadot/dts-v1/;
3f126890aSEmmanuel Vadot
4f126890aSEmmanuel Vadot#include <dt-bindings/interconnect/qcom,msm8974.h>
5f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h>
6f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,gcc-msm8974.h>
7f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,mmcc-msm8974.h>
8f126890aSEmmanuel Vadot#include <dt-bindings/clock/qcom,rpmcc.h>
9f126890aSEmmanuel Vadot#include <dt-bindings/reset/qcom,gcc-msm8974.h>
10f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h>
11f126890aSEmmanuel Vadot
12f126890aSEmmanuel Vadot/ {
13f126890aSEmmanuel Vadot	#address-cells = <1>;
14f126890aSEmmanuel Vadot	#size-cells = <1>;
15f126890aSEmmanuel Vadot	interrupt-parent = <&intc>;
16f126890aSEmmanuel Vadot
177d0873ebSEmmanuel Vadot	chosen { };
187d0873ebSEmmanuel Vadot
19f126890aSEmmanuel Vadot	clocks {
20f126890aSEmmanuel Vadot		xo_board: xo_board {
21f126890aSEmmanuel Vadot			compatible = "fixed-clock";
22f126890aSEmmanuel Vadot			#clock-cells = <0>;
23f126890aSEmmanuel Vadot			clock-frequency = <19200000>;
24f126890aSEmmanuel Vadot		};
25f126890aSEmmanuel Vadot
26f126890aSEmmanuel Vadot		sleep_clk: sleep_clk {
27f126890aSEmmanuel Vadot			compatible = "fixed-clock";
28f126890aSEmmanuel Vadot			#clock-cells = <0>;
29f126890aSEmmanuel Vadot			clock-frequency = <32768>;
30f126890aSEmmanuel Vadot		};
31f126890aSEmmanuel Vadot	};
32f126890aSEmmanuel Vadot
33f126890aSEmmanuel Vadot	cpus {
34f126890aSEmmanuel Vadot		#address-cells = <1>;
35f126890aSEmmanuel Vadot		#size-cells = <0>;
3601950c46SEmmanuel Vadot		interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
37f126890aSEmmanuel Vadot
38f126890aSEmmanuel Vadot		CPU0: cpu@0 {
39f126890aSEmmanuel Vadot			compatible = "qcom,krait";
40f126890aSEmmanuel Vadot			enable-method = "qcom,kpss-acc-v2";
41f126890aSEmmanuel Vadot			device_type = "cpu";
42f126890aSEmmanuel Vadot			reg = <0>;
43f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
44f126890aSEmmanuel Vadot			qcom,acc = <&acc0>;
45f126890aSEmmanuel Vadot			qcom,saw = <&saw0>;
46f126890aSEmmanuel Vadot			cpu-idle-states = <&CPU_SPC>;
47f126890aSEmmanuel Vadot		};
48f126890aSEmmanuel Vadot
49f126890aSEmmanuel Vadot		CPU1: cpu@1 {
50f126890aSEmmanuel Vadot			compatible = "qcom,krait";
51f126890aSEmmanuel Vadot			enable-method = "qcom,kpss-acc-v2";
52f126890aSEmmanuel Vadot			device_type = "cpu";
53f126890aSEmmanuel Vadot			reg = <1>;
54f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
55f126890aSEmmanuel Vadot			qcom,acc = <&acc1>;
56f126890aSEmmanuel Vadot			qcom,saw = <&saw1>;
57f126890aSEmmanuel Vadot			cpu-idle-states = <&CPU_SPC>;
58f126890aSEmmanuel Vadot		};
59f126890aSEmmanuel Vadot
60f126890aSEmmanuel Vadot		CPU2: cpu@2 {
61f126890aSEmmanuel Vadot			compatible = "qcom,krait";
62f126890aSEmmanuel Vadot			enable-method = "qcom,kpss-acc-v2";
63f126890aSEmmanuel Vadot			device_type = "cpu";
64f126890aSEmmanuel Vadot			reg = <2>;
65f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
66f126890aSEmmanuel Vadot			qcom,acc = <&acc2>;
67f126890aSEmmanuel Vadot			qcom,saw = <&saw2>;
68f126890aSEmmanuel Vadot			cpu-idle-states = <&CPU_SPC>;
69f126890aSEmmanuel Vadot		};
70f126890aSEmmanuel Vadot
71f126890aSEmmanuel Vadot		CPU3: cpu@3 {
72f126890aSEmmanuel Vadot			compatible = "qcom,krait";
73f126890aSEmmanuel Vadot			enable-method = "qcom,kpss-acc-v2";
74f126890aSEmmanuel Vadot			device_type = "cpu";
75f126890aSEmmanuel Vadot			reg = <3>;
76f126890aSEmmanuel Vadot			next-level-cache = <&L2>;
77f126890aSEmmanuel Vadot			qcom,acc = <&acc3>;
78f126890aSEmmanuel Vadot			qcom,saw = <&saw3>;
79f126890aSEmmanuel Vadot			cpu-idle-states = <&CPU_SPC>;
80f126890aSEmmanuel Vadot		};
81f126890aSEmmanuel Vadot
82f126890aSEmmanuel Vadot		L2: l2-cache {
83f126890aSEmmanuel Vadot			compatible = "cache";
84f126890aSEmmanuel Vadot			cache-level = <2>;
85f126890aSEmmanuel Vadot			cache-unified;
86f126890aSEmmanuel Vadot			qcom,saw = <&saw_l2>;
87f126890aSEmmanuel Vadot		};
88f126890aSEmmanuel Vadot
89f126890aSEmmanuel Vadot		idle-states {
907d0873ebSEmmanuel Vadot			CPU_SPC: cpu-spc {
91f126890aSEmmanuel Vadot				compatible = "qcom,idle-state-spc",
92f126890aSEmmanuel Vadot						"arm,idle-state";
93f126890aSEmmanuel Vadot				entry-latency-us = <150>;
94f126890aSEmmanuel Vadot				exit-latency-us = <200>;
95f126890aSEmmanuel Vadot				min-residency-us = <2000>;
96f126890aSEmmanuel Vadot			};
97f126890aSEmmanuel Vadot		};
98f126890aSEmmanuel Vadot	};
99f126890aSEmmanuel Vadot
100f126890aSEmmanuel Vadot	firmware {
101f126890aSEmmanuel Vadot		scm {
102f126890aSEmmanuel Vadot			compatible = "qcom,scm-msm8974", "qcom,scm";
103f126890aSEmmanuel Vadot			clocks = <&gcc GCC_CE1_CLK>, <&gcc GCC_CE1_AXI_CLK>, <&gcc GCC_CE1_AHB_CLK>;
104f126890aSEmmanuel Vadot			clock-names = "core", "bus", "iface";
105f126890aSEmmanuel Vadot		};
106f126890aSEmmanuel Vadot	};
107f126890aSEmmanuel Vadot
1087d0873ebSEmmanuel Vadot	memory@0 {
109f126890aSEmmanuel Vadot		device_type = "memory";
110f126890aSEmmanuel Vadot		reg = <0x0 0x0>;
111f126890aSEmmanuel Vadot	};
112f126890aSEmmanuel Vadot
113f126890aSEmmanuel Vadot	pmu {
114f126890aSEmmanuel Vadot		compatible = "qcom,krait-pmu";
11501950c46SEmmanuel Vadot		interrupts = <GIC_PPI 7 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
116f126890aSEmmanuel Vadot	};
117f126890aSEmmanuel Vadot
118aa1a8ff2SEmmanuel Vadot	rpm: remoteproc {
119aa1a8ff2SEmmanuel Vadot		compatible = "qcom,msm8974-rpm-proc", "qcom,rpm-proc";
120aa1a8ff2SEmmanuel Vadot
12184943d6fSEmmanuel Vadot		master-stats {
12284943d6fSEmmanuel Vadot			compatible = "qcom,rpm-master-stats";
12384943d6fSEmmanuel Vadot			qcom,rpm-msg-ram = <&apss_master_stats>,
12484943d6fSEmmanuel Vadot					   <&mpss_master_stats>,
12584943d6fSEmmanuel Vadot					   <&lpss_master_stats>,
12684943d6fSEmmanuel Vadot					   <&pronto_master_stats>;
12784943d6fSEmmanuel Vadot			qcom,master-names = "APSS",
12884943d6fSEmmanuel Vadot					    "MPSS",
12984943d6fSEmmanuel Vadot					    "LPSS",
13084943d6fSEmmanuel Vadot					    "PRONTO";
13184943d6fSEmmanuel Vadot		};
13284943d6fSEmmanuel Vadot
133aa1a8ff2SEmmanuel Vadot		smd-edge {
134aa1a8ff2SEmmanuel Vadot			interrupts = <GIC_SPI 168 IRQ_TYPE_EDGE_RISING>;
1350e8011faSEmmanuel Vadot			mboxes = <&apcs 0>;
136aa1a8ff2SEmmanuel Vadot			qcom,smd-edge = <15>;
137aa1a8ff2SEmmanuel Vadot
138aa1a8ff2SEmmanuel Vadot			rpm_requests: rpm-requests {
139*b2d2a78aSEmmanuel Vadot				compatible = "qcom,rpm-msm8974", "qcom,smd-rpm";
140aa1a8ff2SEmmanuel Vadot				qcom,smd-channels = "rpm_requests";
141aa1a8ff2SEmmanuel Vadot
142aa1a8ff2SEmmanuel Vadot				rpmcc: clock-controller {
143aa1a8ff2SEmmanuel Vadot					compatible = "qcom,rpmcc-msm8974", "qcom,rpmcc";
144aa1a8ff2SEmmanuel Vadot					#clock-cells = <1>;
145aa1a8ff2SEmmanuel Vadot					clocks = <&xo_board>;
146aa1a8ff2SEmmanuel Vadot					clock-names = "xo";
147aa1a8ff2SEmmanuel Vadot				};
148aa1a8ff2SEmmanuel Vadot			};
149aa1a8ff2SEmmanuel Vadot		};
150aa1a8ff2SEmmanuel Vadot	};
151aa1a8ff2SEmmanuel Vadot
152*b2d2a78aSEmmanuel Vadot	reserved_memory: reserved-memory {
153f126890aSEmmanuel Vadot		#address-cells = <1>;
154f126890aSEmmanuel Vadot		#size-cells = <1>;
155f126890aSEmmanuel Vadot		ranges;
156f126890aSEmmanuel Vadot
157f126890aSEmmanuel Vadot		mpss_region: mpss@8000000 {
158f126890aSEmmanuel Vadot			reg = <0x08000000 0x5100000>;
159f126890aSEmmanuel Vadot			no-map;
160f126890aSEmmanuel Vadot		};
161f126890aSEmmanuel Vadot
162f126890aSEmmanuel Vadot		mba_region: mba@d100000 {
163f126890aSEmmanuel Vadot			reg = <0x0d100000 0x100000>;
164f126890aSEmmanuel Vadot			no-map;
165f126890aSEmmanuel Vadot		};
166f126890aSEmmanuel Vadot
167f126890aSEmmanuel Vadot		wcnss_region: wcnss@d200000 {
168f126890aSEmmanuel Vadot			reg = <0x0d200000 0xa00000>;
169f126890aSEmmanuel Vadot			no-map;
170f126890aSEmmanuel Vadot		};
171f126890aSEmmanuel Vadot
172f126890aSEmmanuel Vadot		adsp_region: adsp@dc00000 {
173f126890aSEmmanuel Vadot			reg = <0x0dc00000 0x1900000>;
174f126890aSEmmanuel Vadot			no-map;
175f126890aSEmmanuel Vadot		};
176f126890aSEmmanuel Vadot
177f126890aSEmmanuel Vadot		venus_region: memory@f500000 {
178f126890aSEmmanuel Vadot			reg = <0x0f500000 0x500000>;
179f126890aSEmmanuel Vadot			no-map;
180f126890aSEmmanuel Vadot		};
181f126890aSEmmanuel Vadot
182f126890aSEmmanuel Vadot		smem_region: smem@fa00000 {
183f126890aSEmmanuel Vadot			reg = <0xfa00000 0x200000>;
184f126890aSEmmanuel Vadot			no-map;
185f126890aSEmmanuel Vadot		};
186f126890aSEmmanuel Vadot
187f126890aSEmmanuel Vadot		tz_region: memory@fc00000 {
188f126890aSEmmanuel Vadot			reg = <0x0fc00000 0x160000>;
189f126890aSEmmanuel Vadot			no-map;
190f126890aSEmmanuel Vadot		};
191f126890aSEmmanuel Vadot
192f126890aSEmmanuel Vadot		rfsa_mem: memory@fd60000 {
193f126890aSEmmanuel Vadot			reg = <0x0fd60000 0x20000>;
194f126890aSEmmanuel Vadot			no-map;
195f126890aSEmmanuel Vadot		};
196f126890aSEmmanuel Vadot
197f126890aSEmmanuel Vadot		rmtfs@fd80000 {
198f126890aSEmmanuel Vadot			compatible = "qcom,rmtfs-mem";
199f126890aSEmmanuel Vadot			reg = <0x0fd80000 0x180000>;
200f126890aSEmmanuel Vadot			no-map;
201f126890aSEmmanuel Vadot
202f126890aSEmmanuel Vadot			qcom,client-id = <1>;
203f126890aSEmmanuel Vadot		};
204f126890aSEmmanuel Vadot	};
205f126890aSEmmanuel Vadot
206f126890aSEmmanuel Vadot	smem {
207f126890aSEmmanuel Vadot		compatible = "qcom,smem";
208f126890aSEmmanuel Vadot
209f126890aSEmmanuel Vadot		memory-region = <&smem_region>;
210f126890aSEmmanuel Vadot		qcom,rpm-msg-ram = <&rpm_msg_ram>;
211f126890aSEmmanuel Vadot
212f126890aSEmmanuel Vadot		hwlocks = <&tcsr_mutex 3>;
213f126890aSEmmanuel Vadot	};
214f126890aSEmmanuel Vadot
215f126890aSEmmanuel Vadot	smp2p-adsp {
216f126890aSEmmanuel Vadot		compatible = "qcom,smp2p";
217f126890aSEmmanuel Vadot		qcom,smem = <443>, <429>;
218f126890aSEmmanuel Vadot
219f126890aSEmmanuel Vadot		interrupt-parent = <&intc>;
220f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 158 IRQ_TYPE_EDGE_RISING>;
221f126890aSEmmanuel Vadot
2220e8011faSEmmanuel Vadot		mboxes = <&apcs 10>;
223f126890aSEmmanuel Vadot
224f126890aSEmmanuel Vadot		qcom,local-pid = <0>;
225f126890aSEmmanuel Vadot		qcom,remote-pid = <2>;
226f126890aSEmmanuel Vadot
227f126890aSEmmanuel Vadot		adsp_smp2p_out: master-kernel {
228f126890aSEmmanuel Vadot			qcom,entry-name = "master-kernel";
229f126890aSEmmanuel Vadot			#qcom,smem-state-cells = <1>;
230f126890aSEmmanuel Vadot		};
231f126890aSEmmanuel Vadot
232f126890aSEmmanuel Vadot		adsp_smp2p_in: slave-kernel {
233f126890aSEmmanuel Vadot			qcom,entry-name = "slave-kernel";
234f126890aSEmmanuel Vadot
235f126890aSEmmanuel Vadot			interrupt-controller;
236f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
237f126890aSEmmanuel Vadot		};
238f126890aSEmmanuel Vadot	};
239f126890aSEmmanuel Vadot
240f126890aSEmmanuel Vadot	smp2p-modem {
241f126890aSEmmanuel Vadot		compatible = "qcom,smp2p";
242f126890aSEmmanuel Vadot		qcom,smem = <435>, <428>;
243f126890aSEmmanuel Vadot
244f126890aSEmmanuel Vadot		interrupt-parent = <&intc>;
245f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 27 IRQ_TYPE_EDGE_RISING>;
246f126890aSEmmanuel Vadot
2470e8011faSEmmanuel Vadot		mboxes = <&apcs 14>;
248f126890aSEmmanuel Vadot
249f126890aSEmmanuel Vadot		qcom,local-pid = <0>;
250f126890aSEmmanuel Vadot		qcom,remote-pid = <1>;
251f126890aSEmmanuel Vadot
252f126890aSEmmanuel Vadot		modem_smp2p_out: master-kernel {
253f126890aSEmmanuel Vadot			qcom,entry-name = "master-kernel";
254f126890aSEmmanuel Vadot			#qcom,smem-state-cells = <1>;
255f126890aSEmmanuel Vadot		};
256f126890aSEmmanuel Vadot
257f126890aSEmmanuel Vadot		modem_smp2p_in: slave-kernel {
258f126890aSEmmanuel Vadot			qcom,entry-name = "slave-kernel";
259f126890aSEmmanuel Vadot
260f126890aSEmmanuel Vadot			interrupt-controller;
261f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
262f126890aSEmmanuel Vadot		};
263f126890aSEmmanuel Vadot	};
264f126890aSEmmanuel Vadot
265f126890aSEmmanuel Vadot	smp2p-wcnss {
266f126890aSEmmanuel Vadot		compatible = "qcom,smp2p";
267f126890aSEmmanuel Vadot		qcom,smem = <451>, <431>;
268f126890aSEmmanuel Vadot
269f126890aSEmmanuel Vadot		interrupt-parent = <&intc>;
270f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 143 IRQ_TYPE_EDGE_RISING>;
271f126890aSEmmanuel Vadot
2720e8011faSEmmanuel Vadot		mboxes = <&apcs 18>;
273f126890aSEmmanuel Vadot
274f126890aSEmmanuel Vadot		qcom,local-pid = <0>;
275f126890aSEmmanuel Vadot		qcom,remote-pid = <4>;
276f126890aSEmmanuel Vadot
277f126890aSEmmanuel Vadot		wcnss_smp2p_out: master-kernel {
278f126890aSEmmanuel Vadot			qcom,entry-name = "master-kernel";
279f126890aSEmmanuel Vadot
280f126890aSEmmanuel Vadot			#qcom,smem-state-cells = <1>;
281f126890aSEmmanuel Vadot		};
282f126890aSEmmanuel Vadot
283f126890aSEmmanuel Vadot		wcnss_smp2p_in: slave-kernel {
284f126890aSEmmanuel Vadot			qcom,entry-name = "slave-kernel";
285f126890aSEmmanuel Vadot
286f126890aSEmmanuel Vadot			interrupt-controller;
287f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
288f126890aSEmmanuel Vadot		};
289f126890aSEmmanuel Vadot	};
290f126890aSEmmanuel Vadot
291f126890aSEmmanuel Vadot	smsm {
292f126890aSEmmanuel Vadot		compatible = "qcom,smsm";
293f126890aSEmmanuel Vadot
294f126890aSEmmanuel Vadot		#address-cells = <1>;
295f126890aSEmmanuel Vadot		#size-cells = <0>;
296f126890aSEmmanuel Vadot
2970e8011faSEmmanuel Vadot		mboxes = <0>, <&apcs 13>, <&apcs 9>, <&apcs 19>;
298f126890aSEmmanuel Vadot
299f126890aSEmmanuel Vadot		apps_smsm: apps@0 {
300f126890aSEmmanuel Vadot			reg = <0>;
301f126890aSEmmanuel Vadot
302f126890aSEmmanuel Vadot			#qcom,smem-state-cells = <1>;
303f126890aSEmmanuel Vadot		};
304f126890aSEmmanuel Vadot
305f126890aSEmmanuel Vadot		modem_smsm: modem@1 {
306f126890aSEmmanuel Vadot			reg = <1>;
307f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 26 IRQ_TYPE_EDGE_RISING>;
308f126890aSEmmanuel Vadot
309f126890aSEmmanuel Vadot			interrupt-controller;
310f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
311f126890aSEmmanuel Vadot		};
312f126890aSEmmanuel Vadot
313f126890aSEmmanuel Vadot		adsp_smsm: adsp@2 {
314f126890aSEmmanuel Vadot			reg = <2>;
315f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 157 IRQ_TYPE_EDGE_RISING>;
316f126890aSEmmanuel Vadot
317f126890aSEmmanuel Vadot			interrupt-controller;
318f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
319f126890aSEmmanuel Vadot		};
320f126890aSEmmanuel Vadot
321f126890aSEmmanuel Vadot		wcnss_smsm: wcnss@7 {
322f126890aSEmmanuel Vadot			reg = <7>;
323f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 144 IRQ_TYPE_EDGE_RISING>;
324f126890aSEmmanuel Vadot
325f126890aSEmmanuel Vadot			interrupt-controller;
326f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
327f126890aSEmmanuel Vadot		};
328f126890aSEmmanuel Vadot	};
329f126890aSEmmanuel Vadot
330f126890aSEmmanuel Vadot	soc: soc {
331f126890aSEmmanuel Vadot		#address-cells = <1>;
332f126890aSEmmanuel Vadot		#size-cells = <1>;
333f126890aSEmmanuel Vadot		ranges;
334f126890aSEmmanuel Vadot		compatible = "simple-bus";
335f126890aSEmmanuel Vadot
336f126890aSEmmanuel Vadot		intc: interrupt-controller@f9000000 {
337f126890aSEmmanuel Vadot			compatible = "qcom,msm-qgic2";
338f126890aSEmmanuel Vadot			interrupt-controller;
339f126890aSEmmanuel Vadot			#interrupt-cells = <3>;
340f126890aSEmmanuel Vadot			reg = <0xf9000000 0x1000>,
341f126890aSEmmanuel Vadot			      <0xf9002000 0x1000>;
342f126890aSEmmanuel Vadot		};
343f126890aSEmmanuel Vadot
3440e8011faSEmmanuel Vadot		apcs: mailbox@f9011000 {
3450e8011faSEmmanuel Vadot			compatible = "qcom,msm8974-apcs-kpss-global",
3460e8011faSEmmanuel Vadot				     "qcom,msm8994-apcs-kpss-global", "syscon";
347f126890aSEmmanuel Vadot			reg = <0xf9011000 0x1000>;
3480e8011faSEmmanuel Vadot			#mbox-cells = <1>;
349f126890aSEmmanuel Vadot		};
350f126890aSEmmanuel Vadot
35101950c46SEmmanuel Vadot		saw_l2: power-manager@f9012000 {
35201950c46SEmmanuel Vadot			compatible = "qcom,msm8974-saw2-v2.1-l2", "qcom,saw2";
3538d13bc63SEmmanuel Vadot			reg = <0xf9012000 0x1000>;
3548d13bc63SEmmanuel Vadot		};
3558d13bc63SEmmanuel Vadot
3568d13bc63SEmmanuel Vadot		watchdog@f9017000 {
3578d13bc63SEmmanuel Vadot			compatible = "qcom,apss-wdt-msm8974", "qcom,kpss-wdt";
3588d13bc63SEmmanuel Vadot			reg = <0xf9017000 0x1000>;
3598d13bc63SEmmanuel Vadot			interrupts = <GIC_SPI 3 IRQ_TYPE_EDGE_RISING>,
3608d13bc63SEmmanuel Vadot				     <GIC_SPI 4 IRQ_TYPE_EDGE_RISING>;
3618d13bc63SEmmanuel Vadot			clocks = <&sleep_clk>;
3628d13bc63SEmmanuel Vadot		};
3638d13bc63SEmmanuel Vadot
364f126890aSEmmanuel Vadot		timer@f9020000 {
365f126890aSEmmanuel Vadot			#address-cells = <1>;
366f126890aSEmmanuel Vadot			#size-cells = <1>;
367f126890aSEmmanuel Vadot			ranges;
368f126890aSEmmanuel Vadot			compatible = "arm,armv7-timer-mem";
369f126890aSEmmanuel Vadot			reg = <0xf9020000 0x1000>;
370f126890aSEmmanuel Vadot			clock-frequency = <19200000>;
371f126890aSEmmanuel Vadot
372f126890aSEmmanuel Vadot			frame@f9021000 {
373f126890aSEmmanuel Vadot				frame-number = <0>;
374f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
375f126890aSEmmanuel Vadot					     <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
376f126890aSEmmanuel Vadot				reg = <0xf9021000 0x1000>,
377f126890aSEmmanuel Vadot				      <0xf9022000 0x1000>;
378f126890aSEmmanuel Vadot			};
379f126890aSEmmanuel Vadot
380f126890aSEmmanuel Vadot			frame@f9023000 {
381f126890aSEmmanuel Vadot				frame-number = <1>;
382f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
383f126890aSEmmanuel Vadot				reg = <0xf9023000 0x1000>;
384f126890aSEmmanuel Vadot				status = "disabled";
385f126890aSEmmanuel Vadot			};
386f126890aSEmmanuel Vadot
387f126890aSEmmanuel Vadot			frame@f9024000 {
388f126890aSEmmanuel Vadot				frame-number = <2>;
389f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
390f126890aSEmmanuel Vadot				reg = <0xf9024000 0x1000>;
391f126890aSEmmanuel Vadot				status = "disabled";
392f126890aSEmmanuel Vadot			};
393f126890aSEmmanuel Vadot
394f126890aSEmmanuel Vadot			frame@f9025000 {
395f126890aSEmmanuel Vadot				frame-number = <3>;
396f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
397f126890aSEmmanuel Vadot				reg = <0xf9025000 0x1000>;
398f126890aSEmmanuel Vadot				status = "disabled";
399f126890aSEmmanuel Vadot			};
400f126890aSEmmanuel Vadot
401f126890aSEmmanuel Vadot			frame@f9026000 {
402f126890aSEmmanuel Vadot				frame-number = <4>;
403f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>;
404f126890aSEmmanuel Vadot				reg = <0xf9026000 0x1000>;
405f126890aSEmmanuel Vadot				status = "disabled";
406f126890aSEmmanuel Vadot			};
407f126890aSEmmanuel Vadot
408f126890aSEmmanuel Vadot			frame@f9027000 {
409f126890aSEmmanuel Vadot				frame-number = <5>;
410f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>;
411f126890aSEmmanuel Vadot				reg = <0xf9027000 0x1000>;
412f126890aSEmmanuel Vadot				status = "disabled";
413f126890aSEmmanuel Vadot			};
414f126890aSEmmanuel Vadot
415f126890aSEmmanuel Vadot			frame@f9028000 {
416f126890aSEmmanuel Vadot				frame-number = <6>;
417f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
418f126890aSEmmanuel Vadot				reg = <0xf9028000 0x1000>;
419f126890aSEmmanuel Vadot				status = "disabled";
420f126890aSEmmanuel Vadot			};
421f126890aSEmmanuel Vadot		};
422f126890aSEmmanuel Vadot
423f126890aSEmmanuel Vadot		acc0: power-manager@f9088000 {
424f126890aSEmmanuel Vadot			compatible = "qcom,kpss-acc-v2";
425f126890aSEmmanuel Vadot			reg = <0xf9088000 0x1000>, <0xf9008000 0x1000>;
426f126890aSEmmanuel Vadot		};
427f126890aSEmmanuel Vadot
42801950c46SEmmanuel Vadot		saw0: power-manager@f9089000 {
4298d13bc63SEmmanuel Vadot			compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2";
4308d13bc63SEmmanuel Vadot			reg = <0xf9089000 0x1000>, <0xf9009000 0x1000>;
4318d13bc63SEmmanuel Vadot		};
4328d13bc63SEmmanuel Vadot
433f126890aSEmmanuel Vadot		acc1: power-manager@f9098000 {
434f126890aSEmmanuel Vadot			compatible = "qcom,kpss-acc-v2";
435f126890aSEmmanuel Vadot			reg = <0xf9098000 0x1000>, <0xf9008000 0x1000>;
436f126890aSEmmanuel Vadot		};
437f126890aSEmmanuel Vadot
43801950c46SEmmanuel Vadot		saw1: power-manager@f9099000 {
4398d13bc63SEmmanuel Vadot			compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2";
4408d13bc63SEmmanuel Vadot			reg = <0xf9099000 0x1000>, <0xf9009000 0x1000>;
4418d13bc63SEmmanuel Vadot		};
4428d13bc63SEmmanuel Vadot
443f126890aSEmmanuel Vadot		acc2: power-manager@f90a8000 {
444f126890aSEmmanuel Vadot			compatible = "qcom,kpss-acc-v2";
445f126890aSEmmanuel Vadot			reg = <0xf90a8000 0x1000>, <0xf9008000 0x1000>;
446f126890aSEmmanuel Vadot		};
447f126890aSEmmanuel Vadot
44801950c46SEmmanuel Vadot		saw2: power-manager@f90a9000 {
4498d13bc63SEmmanuel Vadot			compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2";
4508d13bc63SEmmanuel Vadot			reg = <0xf90a9000 0x1000>, <0xf9009000 0x1000>;
4518d13bc63SEmmanuel Vadot		};
4528d13bc63SEmmanuel Vadot
453f126890aSEmmanuel Vadot		acc3: power-manager@f90b8000 {
454f126890aSEmmanuel Vadot			compatible = "qcom,kpss-acc-v2";
455f126890aSEmmanuel Vadot			reg = <0xf90b8000 0x1000>, <0xf9008000 0x1000>;
456f126890aSEmmanuel Vadot		};
457f126890aSEmmanuel Vadot
45801950c46SEmmanuel Vadot		saw3: power-manager@f90b9000 {
4598d13bc63SEmmanuel Vadot			compatible = "qcom,msm8974-saw2-v2.1-cpu", "qcom,saw2";
4608d13bc63SEmmanuel Vadot			reg = <0xf90b9000 0x1000>, <0xf9009000 0x1000>;
4618d13bc63SEmmanuel Vadot		};
4628d13bc63SEmmanuel Vadot
463f126890aSEmmanuel Vadot		sdhc_1: mmc@f9824900 {
464f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-sdhci", "qcom,sdhci-msm-v4";
465f126890aSEmmanuel Vadot			reg = <0xf9824900 0x11c>, <0xf9824000 0x800>;
466f126890aSEmmanuel Vadot			reg-names = "hc", "core";
467f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>,
468f126890aSEmmanuel Vadot				     <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
469f126890aSEmmanuel Vadot			interrupt-names = "hc_irq", "pwr_irq";
470f126890aSEmmanuel Vadot			clocks = <&gcc GCC_SDCC1_AHB_CLK>,
471f126890aSEmmanuel Vadot				 <&gcc GCC_SDCC1_APPS_CLK>,
472f126890aSEmmanuel Vadot				 <&xo_board>;
473f126890aSEmmanuel Vadot			clock-names = "iface", "core", "xo";
474f126890aSEmmanuel Vadot			bus-width = <8>;
475f126890aSEmmanuel Vadot			non-removable;
476f126890aSEmmanuel Vadot
477f126890aSEmmanuel Vadot			status = "disabled";
478f126890aSEmmanuel Vadot		};
479f126890aSEmmanuel Vadot
480f126890aSEmmanuel Vadot		sdhc_3: mmc@f9864900 {
481f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-sdhci", "qcom,sdhci-msm-v4";
482f126890aSEmmanuel Vadot			reg = <0xf9864900 0x11c>, <0xf9864000 0x800>;
483f126890aSEmmanuel Vadot			reg-names = "hc", "core";
484f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 127 IRQ_TYPE_LEVEL_HIGH>,
485f126890aSEmmanuel Vadot				     <GIC_SPI 224 IRQ_TYPE_LEVEL_HIGH>;
486f126890aSEmmanuel Vadot			interrupt-names = "hc_irq", "pwr_irq";
487f126890aSEmmanuel Vadot			clocks = <&gcc GCC_SDCC3_AHB_CLK>,
488f126890aSEmmanuel Vadot				 <&gcc GCC_SDCC3_APPS_CLK>,
489f126890aSEmmanuel Vadot				 <&xo_board>;
490f126890aSEmmanuel Vadot			clock-names = "iface", "core", "xo";
491f126890aSEmmanuel Vadot			bus-width = <4>;
492f126890aSEmmanuel Vadot
493f126890aSEmmanuel Vadot			#address-cells = <1>;
494f126890aSEmmanuel Vadot			#size-cells = <0>;
495f126890aSEmmanuel Vadot
496f126890aSEmmanuel Vadot			status = "disabled";
497f126890aSEmmanuel Vadot		};
498f126890aSEmmanuel Vadot
499f126890aSEmmanuel Vadot		sdhc_2: mmc@f98a4900 {
500f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-sdhci", "qcom,sdhci-msm-v4";
501f126890aSEmmanuel Vadot			reg = <0xf98a4900 0x11c>, <0xf98a4000 0x800>;
502f126890aSEmmanuel Vadot			reg-names = "hc", "core";
503f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>,
504f126890aSEmmanuel Vadot				     <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
505f126890aSEmmanuel Vadot			interrupt-names = "hc_irq", "pwr_irq";
506f126890aSEmmanuel Vadot			clocks = <&gcc GCC_SDCC2_AHB_CLK>,
507f126890aSEmmanuel Vadot				 <&gcc GCC_SDCC2_APPS_CLK>,
508f126890aSEmmanuel Vadot				 <&xo_board>;
509f126890aSEmmanuel Vadot			clock-names = "iface", "core", "xo";
510f126890aSEmmanuel Vadot			bus-width = <4>;
511f126890aSEmmanuel Vadot
512f126890aSEmmanuel Vadot			#address-cells = <1>;
513f126890aSEmmanuel Vadot			#size-cells = <0>;
514f126890aSEmmanuel Vadot
515f126890aSEmmanuel Vadot			status = "disabled";
516f126890aSEmmanuel Vadot		};
517f126890aSEmmanuel Vadot
518f126890aSEmmanuel Vadot		blsp1_uart1: serial@f991d000 {
519f126890aSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
520f126890aSEmmanuel Vadot			reg = <0xf991d000 0x1000>;
521f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 107 IRQ_TYPE_LEVEL_HIGH>;
522f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_UART1_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>;
523f126890aSEmmanuel Vadot			clock-names = "core", "iface";
524f126890aSEmmanuel Vadot			status = "disabled";
525f126890aSEmmanuel Vadot		};
526f126890aSEmmanuel Vadot
527f126890aSEmmanuel Vadot		blsp1_uart2: serial@f991e000 {
528f126890aSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
529f126890aSEmmanuel Vadot			reg = <0xf991e000 0x1000>;
530f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
531f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_UART2_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>;
532f126890aSEmmanuel Vadot			clock-names = "core", "iface";
533f126890aSEmmanuel Vadot			pinctrl-names = "default";
534f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp1_uart2_default>;
535f126890aSEmmanuel Vadot			status = "disabled";
536f126890aSEmmanuel Vadot		};
537f126890aSEmmanuel Vadot
538f126890aSEmmanuel Vadot		blsp1_i2c1: i2c@f9923000 {
539f126890aSEmmanuel Vadot			status = "disabled";
540f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
541f126890aSEmmanuel Vadot			reg = <0xf9923000 0x1000>;
54201950c46SEmmanuel Vadot			interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
543f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP1_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>;
544f126890aSEmmanuel Vadot			clock-names = "core", "iface";
545f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
546f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp1_i2c1_default>;
547f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp1_i2c1_sleep>;
548f126890aSEmmanuel Vadot			#address-cells = <1>;
549f126890aSEmmanuel Vadot			#size-cells = <0>;
550f126890aSEmmanuel Vadot		};
551f126890aSEmmanuel Vadot
552f126890aSEmmanuel Vadot		blsp1_i2c2: i2c@f9924000 {
553f126890aSEmmanuel Vadot			status = "disabled";
554f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
555f126890aSEmmanuel Vadot			reg = <0xf9924000 0x1000>;
556f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
557f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP2_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>;
558f126890aSEmmanuel Vadot			clock-names = "core", "iface";
559f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
560f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp1_i2c2_default>;
561f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp1_i2c2_sleep>;
562f126890aSEmmanuel Vadot			#address-cells = <1>;
563f126890aSEmmanuel Vadot			#size-cells = <0>;
564f126890aSEmmanuel Vadot		};
565f126890aSEmmanuel Vadot
566f126890aSEmmanuel Vadot		blsp1_i2c3: i2c@f9925000 {
567f126890aSEmmanuel Vadot			status = "disabled";
568f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
569f126890aSEmmanuel Vadot			reg = <0xf9925000 0x1000>;
57001950c46SEmmanuel Vadot			interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
571f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP3_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>;
572f126890aSEmmanuel Vadot			clock-names = "core", "iface";
573f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
574f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp1_i2c3_default>;
575f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp1_i2c3_sleep>;
576f126890aSEmmanuel Vadot			#address-cells = <1>;
577f126890aSEmmanuel Vadot			#size-cells = <0>;
578f126890aSEmmanuel Vadot		};
579f126890aSEmmanuel Vadot
580f126890aSEmmanuel Vadot		blsp1_i2c6: i2c@f9928000 {
581f126890aSEmmanuel Vadot			status = "disabled";
582f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
583f126890aSEmmanuel Vadot			reg = <0xf9928000 0x1000>;
584f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
585f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP6_I2C_APPS_CLK>, <&gcc GCC_BLSP1_AHB_CLK>;
586f126890aSEmmanuel Vadot			clock-names = "core", "iface";
587f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
588f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp1_i2c6_default>;
589f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp1_i2c6_sleep>;
590f126890aSEmmanuel Vadot			#address-cells = <1>;
591f126890aSEmmanuel Vadot			#size-cells = <0>;
592f126890aSEmmanuel Vadot		};
593f126890aSEmmanuel Vadot
594f126890aSEmmanuel Vadot		blsp2_dma: dma-controller@f9944000 {
595f126890aSEmmanuel Vadot			compatible = "qcom,bam-v1.4.0";
596f126890aSEmmanuel Vadot			reg = <0xf9944000 0x19000>;
597f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>;
598f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_AHB_CLK>;
599f126890aSEmmanuel Vadot			clock-names = "bam_clk";
600f126890aSEmmanuel Vadot			#dma-cells = <1>;
601f126890aSEmmanuel Vadot			qcom,ee = <0>;
602f126890aSEmmanuel Vadot		};
603f126890aSEmmanuel Vadot
604f126890aSEmmanuel Vadot		blsp2_uart1: serial@f995d000 {
605f126890aSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
606f126890aSEmmanuel Vadot			reg = <0xf995d000 0x1000>;
607f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH>;
608f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_UART1_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
609f126890aSEmmanuel Vadot			clock-names = "core", "iface";
610f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
611f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp2_uart1_default>;
612f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp2_uart1_sleep>;
613f126890aSEmmanuel Vadot			status = "disabled";
614f126890aSEmmanuel Vadot		};
615f126890aSEmmanuel Vadot
616f126890aSEmmanuel Vadot		blsp2_uart2: serial@f995e000 {
617f126890aSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
618f126890aSEmmanuel Vadot			reg = <0xf995e000 0x1000>;
619f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
620f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_UART2_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
621f126890aSEmmanuel Vadot			clock-names = "core", "iface";
622f126890aSEmmanuel Vadot			status = "disabled";
623f126890aSEmmanuel Vadot		};
624f126890aSEmmanuel Vadot
625f126890aSEmmanuel Vadot		blsp2_uart4: serial@f9960000 {
626f126890aSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
627f126890aSEmmanuel Vadot			reg = <0xf9960000 0x1000>;
628f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
629f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_UART4_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
630f126890aSEmmanuel Vadot			clock-names = "core", "iface";
631f126890aSEmmanuel Vadot			pinctrl-names = "default";
632f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp2_uart4_default>;
633f126890aSEmmanuel Vadot			status = "disabled";
634f126890aSEmmanuel Vadot		};
635f126890aSEmmanuel Vadot
636f126890aSEmmanuel Vadot		blsp2_i2c2: i2c@f9964000 {
637f126890aSEmmanuel Vadot			status = "disabled";
638f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
639f126890aSEmmanuel Vadot			reg = <0xf9964000 0x1000>;
640f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
641f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_QUP2_I2C_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
642f126890aSEmmanuel Vadot			clock-names = "core", "iface";
643f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
644f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp2_i2c2_default>;
645f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp2_i2c2_sleep>;
646f126890aSEmmanuel Vadot			#address-cells = <1>;
647f126890aSEmmanuel Vadot			#size-cells = <0>;
648f126890aSEmmanuel Vadot		};
649f126890aSEmmanuel Vadot
650f126890aSEmmanuel Vadot		blsp2_i2c5: i2c@f9967000 {
651f126890aSEmmanuel Vadot			status = "disabled";
652f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
653f126890aSEmmanuel Vadot			reg = <0xf9967000 0x1000>;
654f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
655f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_QUP5_I2C_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
656f126890aSEmmanuel Vadot			clock-names = "core", "iface";
657f126890aSEmmanuel Vadot			dmas = <&blsp2_dma 20>, <&blsp2_dma 21>;
658f126890aSEmmanuel Vadot			dma-names = "tx", "rx";
659f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
660f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp2_i2c5_default>;
661f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp2_i2c5_sleep>;
662f126890aSEmmanuel Vadot			#address-cells = <1>;
663f126890aSEmmanuel Vadot			#size-cells = <0>;
664f126890aSEmmanuel Vadot		};
665f126890aSEmmanuel Vadot
666f126890aSEmmanuel Vadot		blsp2_i2c6: i2c@f9968000 {
667f126890aSEmmanuel Vadot			status = "disabled";
668f126890aSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.1.1";
669f126890aSEmmanuel Vadot			reg = <0xf9968000 0x1000>;
67001950c46SEmmanuel Vadot			interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
671f126890aSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_QUP6_I2C_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
672f126890aSEmmanuel Vadot			clock-names = "core", "iface";
673f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
674f126890aSEmmanuel Vadot			pinctrl-0 = <&blsp2_i2c6_default>;
675f126890aSEmmanuel Vadot			pinctrl-1 = <&blsp2_i2c6_sleep>;
676f126890aSEmmanuel Vadot			#address-cells = <1>;
677f126890aSEmmanuel Vadot			#size-cells = <0>;
678f126890aSEmmanuel Vadot		};
679f126890aSEmmanuel Vadot
680f126890aSEmmanuel Vadot		usb: usb@f9a55000 {
681f126890aSEmmanuel Vadot			compatible = "qcom,ci-hdrc";
682f126890aSEmmanuel Vadot			reg = <0xf9a55000 0x200>,
683f126890aSEmmanuel Vadot			      <0xf9a55200 0x200>;
684f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
685f126890aSEmmanuel Vadot			clocks = <&gcc GCC_USB_HS_AHB_CLK>,
686f126890aSEmmanuel Vadot				 <&gcc GCC_USB_HS_SYSTEM_CLK>;
687f126890aSEmmanuel Vadot			clock-names = "iface", "core";
688f126890aSEmmanuel Vadot			assigned-clocks = <&gcc GCC_USB_HS_SYSTEM_CLK>;
689f126890aSEmmanuel Vadot			assigned-clock-rates = <75000000>;
690f126890aSEmmanuel Vadot			resets = <&gcc GCC_USB_HS_BCR>;
691f126890aSEmmanuel Vadot			reset-names = "core";
692f126890aSEmmanuel Vadot			phy_type = "ulpi";
693f126890aSEmmanuel Vadot			dr_mode = "otg";
694f126890aSEmmanuel Vadot			ahb-burst-config = <0>;
695f126890aSEmmanuel Vadot			phy-names = "usb-phy";
696f126890aSEmmanuel Vadot			status = "disabled";
697f126890aSEmmanuel Vadot			#reset-cells = <1>;
698f126890aSEmmanuel Vadot
699f126890aSEmmanuel Vadot			ulpi {
700f126890aSEmmanuel Vadot				usb_hs1_phy: phy-0 {
701f126890aSEmmanuel Vadot					compatible = "qcom,usb-hs-phy-msm8974",
702f126890aSEmmanuel Vadot						     "qcom,usb-hs-phy";
703f126890aSEmmanuel Vadot					#phy-cells = <0>;
704f126890aSEmmanuel Vadot					clocks = <&xo_board>, <&gcc GCC_USB2A_PHY_SLEEP_CLK>;
705f126890aSEmmanuel Vadot					clock-names = "ref", "sleep";
706f126890aSEmmanuel Vadot					resets = <&gcc GCC_USB2A_PHY_BCR>, <&usb 0>;
707f126890aSEmmanuel Vadot					reset-names = "phy", "por";
708f126890aSEmmanuel Vadot					status = "disabled";
709f126890aSEmmanuel Vadot				};
710f126890aSEmmanuel Vadot
711f126890aSEmmanuel Vadot				usb_hs2_phy: phy-1 {
712f126890aSEmmanuel Vadot					compatible = "qcom,usb-hs-phy-msm8974",
713f126890aSEmmanuel Vadot						     "qcom,usb-hs-phy";
714f126890aSEmmanuel Vadot					#phy-cells = <0>;
715f126890aSEmmanuel Vadot					clocks = <&xo_board>, <&gcc GCC_USB2B_PHY_SLEEP_CLK>;
716f126890aSEmmanuel Vadot					clock-names = "ref", "sleep";
717f126890aSEmmanuel Vadot					resets = <&gcc GCC_USB2B_PHY_BCR>, <&usb 1>;
718f126890aSEmmanuel Vadot					reset-names = "phy", "por";
719f126890aSEmmanuel Vadot					status = "disabled";
720f126890aSEmmanuel Vadot				};
721f126890aSEmmanuel Vadot			};
722f126890aSEmmanuel Vadot		};
723f126890aSEmmanuel Vadot
724f126890aSEmmanuel Vadot		rng@f9bff000 {
725f126890aSEmmanuel Vadot			compatible = "qcom,prng";
726f126890aSEmmanuel Vadot			reg = <0xf9bff000 0x200>;
727f126890aSEmmanuel Vadot			clocks = <&gcc GCC_PRNG_AHB_CLK>;
728f126890aSEmmanuel Vadot			clock-names = "core";
729f126890aSEmmanuel Vadot		};
730f126890aSEmmanuel Vadot
731f126890aSEmmanuel Vadot		pronto: remoteproc@fb204000 {
732f126890aSEmmanuel Vadot			compatible = "qcom,pronto-v2-pil", "qcom,pronto";
733f126890aSEmmanuel Vadot			reg = <0xfb204000 0x2000>, <0xfb202000 0x1000>, <0xfb21b000 0x3000>;
734f126890aSEmmanuel Vadot			reg-names = "ccu", "dxe", "pmu";
735f126890aSEmmanuel Vadot
736f126890aSEmmanuel Vadot			memory-region = <&wcnss_region>;
737f126890aSEmmanuel Vadot
738f126890aSEmmanuel Vadot			interrupts-extended = <&intc GIC_SPI 149 IRQ_TYPE_EDGE_RISING>,
739f126890aSEmmanuel Vadot					      <&wcnss_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,
740f126890aSEmmanuel Vadot					      <&wcnss_smp2p_in 1 IRQ_TYPE_EDGE_RISING>,
741f126890aSEmmanuel Vadot					      <&wcnss_smp2p_in 2 IRQ_TYPE_EDGE_RISING>,
742f126890aSEmmanuel Vadot					      <&wcnss_smp2p_in 3 IRQ_TYPE_EDGE_RISING>;
743f126890aSEmmanuel Vadot			interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack";
744f126890aSEmmanuel Vadot
745f126890aSEmmanuel Vadot			qcom,smem-states = <&wcnss_smp2p_out 0>;
746f126890aSEmmanuel Vadot			qcom,smem-state-names = "stop";
747f126890aSEmmanuel Vadot
748f126890aSEmmanuel Vadot			status = "disabled";
749f126890aSEmmanuel Vadot
750f126890aSEmmanuel Vadot			iris {
751f126890aSEmmanuel Vadot				compatible = "qcom,wcn3680";
752f126890aSEmmanuel Vadot
753f126890aSEmmanuel Vadot				clocks = <&rpmcc RPM_SMD_CXO_A2>;
754f126890aSEmmanuel Vadot				clock-names = "xo";
755f126890aSEmmanuel Vadot			};
756f126890aSEmmanuel Vadot
757f126890aSEmmanuel Vadot			smd-edge {
758f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 142 IRQ_TYPE_EDGE_RISING>;
759f126890aSEmmanuel Vadot
7600e8011faSEmmanuel Vadot				mboxes = <&apcs 17>;
761f126890aSEmmanuel Vadot				qcom,smd-edge = <6>;
762f126890aSEmmanuel Vadot
763f126890aSEmmanuel Vadot				wcnss {
764f126890aSEmmanuel Vadot					compatible = "qcom,wcnss";
765f126890aSEmmanuel Vadot					qcom,smd-channels = "WCNSS_CTRL";
766f126890aSEmmanuel Vadot					status = "disabled";
767f126890aSEmmanuel Vadot
768f126890aSEmmanuel Vadot					qcom,mmio = <&pronto>;
769f126890aSEmmanuel Vadot
770f126890aSEmmanuel Vadot					bluetooth {
771f126890aSEmmanuel Vadot						compatible = "qcom,wcnss-bt";
772f126890aSEmmanuel Vadot					};
773f126890aSEmmanuel Vadot
774f126890aSEmmanuel Vadot					wifi {
775f126890aSEmmanuel Vadot						compatible = "qcom,wcnss-wlan";
776f126890aSEmmanuel Vadot
777f126890aSEmmanuel Vadot						interrupts = <GIC_SPI 145 IRQ_TYPE_EDGE_RISING>,
778f126890aSEmmanuel Vadot							     <GIC_SPI 146 IRQ_TYPE_EDGE_RISING>;
779f126890aSEmmanuel Vadot						interrupt-names = "tx", "rx";
780f126890aSEmmanuel Vadot
781f126890aSEmmanuel Vadot						qcom,smem-states = <&apps_smsm 10>, <&apps_smsm 9>;
782f126890aSEmmanuel Vadot						qcom,smem-state-names = "tx-enable",
783f126890aSEmmanuel Vadot									"tx-rings-empty";
784f126890aSEmmanuel Vadot					};
785f126890aSEmmanuel Vadot				};
786f126890aSEmmanuel Vadot			};
787f126890aSEmmanuel Vadot		};
788f126890aSEmmanuel Vadot
789f126890aSEmmanuel Vadot		sram@fc190000 {
790f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-rpm-stats";
791f126890aSEmmanuel Vadot			reg = <0xfc190000 0x10000>;
792f126890aSEmmanuel Vadot		};
793f126890aSEmmanuel Vadot
794f126890aSEmmanuel Vadot		etf@fc307000 {
795f126890aSEmmanuel Vadot			compatible = "arm,coresight-tmc", "arm,primecell";
796f126890aSEmmanuel Vadot			reg = <0xfc307000 0x1000>;
797f126890aSEmmanuel Vadot
798f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
799f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
800f126890aSEmmanuel Vadot
801f126890aSEmmanuel Vadot			out-ports {
802f126890aSEmmanuel Vadot				port {
803f126890aSEmmanuel Vadot					etf_out: endpoint {
804f126890aSEmmanuel Vadot						remote-endpoint = <&replicator_in>;
805f126890aSEmmanuel Vadot					};
806f126890aSEmmanuel Vadot				};
807f126890aSEmmanuel Vadot			};
808f126890aSEmmanuel Vadot
809f126890aSEmmanuel Vadot			in-ports {
810f126890aSEmmanuel Vadot				port {
811f126890aSEmmanuel Vadot					etf_in: endpoint {
812f126890aSEmmanuel Vadot						remote-endpoint = <&merger_out>;
813f126890aSEmmanuel Vadot					};
814f126890aSEmmanuel Vadot				};
815f126890aSEmmanuel Vadot			};
816f126890aSEmmanuel Vadot		};
817f126890aSEmmanuel Vadot
818f126890aSEmmanuel Vadot		tpiu@fc318000 {
819f126890aSEmmanuel Vadot			compatible = "arm,coresight-tpiu", "arm,primecell";
820f126890aSEmmanuel Vadot			reg = <0xfc318000 0x1000>;
821f126890aSEmmanuel Vadot
822f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
823f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
824f126890aSEmmanuel Vadot
825f126890aSEmmanuel Vadot			in-ports {
826f126890aSEmmanuel Vadot				port {
827f126890aSEmmanuel Vadot					tpiu_in: endpoint {
828f126890aSEmmanuel Vadot						remote-endpoint = <&replicator_out1>;
829f126890aSEmmanuel Vadot					};
830f126890aSEmmanuel Vadot				 };
831f126890aSEmmanuel Vadot			};
832f126890aSEmmanuel Vadot		};
833f126890aSEmmanuel Vadot
834f126890aSEmmanuel Vadot		funnel@fc31a000 {
835f126890aSEmmanuel Vadot			compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
836f126890aSEmmanuel Vadot			reg = <0xfc31a000 0x1000>;
837f126890aSEmmanuel Vadot
838f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
839f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
840f126890aSEmmanuel Vadot
841f126890aSEmmanuel Vadot			in-ports {
842f126890aSEmmanuel Vadot				#address-cells = <1>;
843f126890aSEmmanuel Vadot				#size-cells = <0>;
844f126890aSEmmanuel Vadot
845f126890aSEmmanuel Vadot				/*
846f126890aSEmmanuel Vadot				 * Not described input ports:
847f126890aSEmmanuel Vadot				 * 0 - not-connected
848f126890aSEmmanuel Vadot				 * 1 - connected trought funnel to Multimedia CPU
849f126890aSEmmanuel Vadot				 * 2 - connected to Wireless CPU
850f126890aSEmmanuel Vadot				 * 3 - not-connected
851f126890aSEmmanuel Vadot				 * 4 - not-connected
852f126890aSEmmanuel Vadot				 * 6 - not-connected
853f126890aSEmmanuel Vadot				 * 7 - connected to STM
854f126890aSEmmanuel Vadot				 */
855f126890aSEmmanuel Vadot				port@5 {
856f126890aSEmmanuel Vadot					reg = <5>;
857f126890aSEmmanuel Vadot					funnel1_in5: endpoint {
858f126890aSEmmanuel Vadot						remote-endpoint = <&kpss_out>;
859f126890aSEmmanuel Vadot					};
860f126890aSEmmanuel Vadot				};
861f126890aSEmmanuel Vadot			};
862f126890aSEmmanuel Vadot
863f126890aSEmmanuel Vadot			out-ports {
864f126890aSEmmanuel Vadot				port {
865f126890aSEmmanuel Vadot					funnel1_out: endpoint {
866f126890aSEmmanuel Vadot						remote-endpoint = <&merger_in1>;
867f126890aSEmmanuel Vadot					};
868f126890aSEmmanuel Vadot				};
869f126890aSEmmanuel Vadot			};
870f126890aSEmmanuel Vadot		};
871f126890aSEmmanuel Vadot
872f126890aSEmmanuel Vadot		funnel@fc31b000 {
873f126890aSEmmanuel Vadot			compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
874f126890aSEmmanuel Vadot			reg = <0xfc31b000 0x1000>;
875f126890aSEmmanuel Vadot
876f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
877f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
878f126890aSEmmanuel Vadot
879f126890aSEmmanuel Vadot			in-ports {
880f126890aSEmmanuel Vadot				#address-cells = <1>;
881f126890aSEmmanuel Vadot				#size-cells = <0>;
882f126890aSEmmanuel Vadot
883f126890aSEmmanuel Vadot				/*
884f126890aSEmmanuel Vadot				 * Not described input ports:
885f126890aSEmmanuel Vadot				 * 0 - connected trought funnel to Audio, Modem and
886f126890aSEmmanuel Vadot				 *     Resource and Power Manager CPU's
887f126890aSEmmanuel Vadot				 * 2...7 - not-connected
888f126890aSEmmanuel Vadot				 */
889f126890aSEmmanuel Vadot				port@1 {
890f126890aSEmmanuel Vadot					reg = <1>;
891f126890aSEmmanuel Vadot					merger_in1: endpoint {
892f126890aSEmmanuel Vadot						remote-endpoint = <&funnel1_out>;
893f126890aSEmmanuel Vadot					};
894f126890aSEmmanuel Vadot				};
895f126890aSEmmanuel Vadot			};
896f126890aSEmmanuel Vadot
897f126890aSEmmanuel Vadot			out-ports {
898f126890aSEmmanuel Vadot				port {
899f126890aSEmmanuel Vadot					merger_out: endpoint {
900f126890aSEmmanuel Vadot						remote-endpoint = <&etf_in>;
901f126890aSEmmanuel Vadot					};
902f126890aSEmmanuel Vadot				};
903f126890aSEmmanuel Vadot			};
904f126890aSEmmanuel Vadot		};
905f126890aSEmmanuel Vadot
906f126890aSEmmanuel Vadot		replicator@fc31c000 {
907f126890aSEmmanuel Vadot			compatible = "arm,coresight-dynamic-replicator", "arm,primecell";
908f126890aSEmmanuel Vadot			reg = <0xfc31c000 0x1000>;
909f126890aSEmmanuel Vadot
910f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
911f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
912f126890aSEmmanuel Vadot
913f126890aSEmmanuel Vadot			out-ports {
914f126890aSEmmanuel Vadot				#address-cells = <1>;
915f126890aSEmmanuel Vadot				#size-cells = <0>;
916f126890aSEmmanuel Vadot
917f126890aSEmmanuel Vadot				port@0 {
918f126890aSEmmanuel Vadot					reg = <0>;
919f126890aSEmmanuel Vadot					replicator_out0: endpoint {
920f126890aSEmmanuel Vadot						remote-endpoint = <&etr_in>;
921f126890aSEmmanuel Vadot					};
922f126890aSEmmanuel Vadot				};
923f126890aSEmmanuel Vadot				port@1 {
924f126890aSEmmanuel Vadot					reg = <1>;
925f126890aSEmmanuel Vadot					replicator_out1: endpoint {
926f126890aSEmmanuel Vadot						remote-endpoint = <&tpiu_in>;
927f126890aSEmmanuel Vadot					};
928f126890aSEmmanuel Vadot				};
929f126890aSEmmanuel Vadot			};
930f126890aSEmmanuel Vadot
931f126890aSEmmanuel Vadot			in-ports {
932f126890aSEmmanuel Vadot				port {
933f126890aSEmmanuel Vadot					replicator_in: endpoint {
934f126890aSEmmanuel Vadot						remote-endpoint = <&etf_out>;
935f126890aSEmmanuel Vadot					};
936f126890aSEmmanuel Vadot				};
937f126890aSEmmanuel Vadot			};
938f126890aSEmmanuel Vadot		};
939f126890aSEmmanuel Vadot
940f126890aSEmmanuel Vadot		etr@fc322000 {
941f126890aSEmmanuel Vadot			compatible = "arm,coresight-tmc", "arm,primecell";
942f126890aSEmmanuel Vadot			reg = <0xfc322000 0x1000>;
943f126890aSEmmanuel Vadot
944f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
945f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
946f126890aSEmmanuel Vadot
947f126890aSEmmanuel Vadot			in-ports {
948f126890aSEmmanuel Vadot				port {
949f126890aSEmmanuel Vadot					etr_in: endpoint {
950f126890aSEmmanuel Vadot						remote-endpoint = <&replicator_out0>;
951f126890aSEmmanuel Vadot					};
952f126890aSEmmanuel Vadot				};
953f126890aSEmmanuel Vadot			};
954f126890aSEmmanuel Vadot		};
955f126890aSEmmanuel Vadot
956f126890aSEmmanuel Vadot		etm@fc33c000 {
957f126890aSEmmanuel Vadot			compatible = "arm,coresight-etm4x", "arm,primecell";
958f126890aSEmmanuel Vadot			reg = <0xfc33c000 0x1000>;
959f126890aSEmmanuel Vadot
960f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
961f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
962f126890aSEmmanuel Vadot
963f126890aSEmmanuel Vadot			cpu = <&CPU0>;
964f126890aSEmmanuel Vadot
965f126890aSEmmanuel Vadot			out-ports {
966f126890aSEmmanuel Vadot				port {
967f126890aSEmmanuel Vadot					etm0_out: endpoint {
968f126890aSEmmanuel Vadot						remote-endpoint = <&kpss_in0>;
969f126890aSEmmanuel Vadot					};
970f126890aSEmmanuel Vadot				};
971f126890aSEmmanuel Vadot			};
972f126890aSEmmanuel Vadot		};
973f126890aSEmmanuel Vadot
974f126890aSEmmanuel Vadot		etm@fc33d000 {
975f126890aSEmmanuel Vadot			compatible = "arm,coresight-etm4x", "arm,primecell";
976f126890aSEmmanuel Vadot			reg = <0xfc33d000 0x1000>;
977f126890aSEmmanuel Vadot
978f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
979f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
980f126890aSEmmanuel Vadot
981f126890aSEmmanuel Vadot			cpu = <&CPU1>;
982f126890aSEmmanuel Vadot
983f126890aSEmmanuel Vadot			out-ports {
984f126890aSEmmanuel Vadot				port {
985f126890aSEmmanuel Vadot					etm1_out: endpoint {
986f126890aSEmmanuel Vadot						remote-endpoint = <&kpss_in1>;
987f126890aSEmmanuel Vadot					};
988f126890aSEmmanuel Vadot				};
989f126890aSEmmanuel Vadot			};
990f126890aSEmmanuel Vadot		};
991f126890aSEmmanuel Vadot
992f126890aSEmmanuel Vadot		etm@fc33e000 {
993f126890aSEmmanuel Vadot			compatible = "arm,coresight-etm4x", "arm,primecell";
994f126890aSEmmanuel Vadot			reg = <0xfc33e000 0x1000>;
995f126890aSEmmanuel Vadot
996f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
997f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
998f126890aSEmmanuel Vadot
999f126890aSEmmanuel Vadot			cpu = <&CPU2>;
1000f126890aSEmmanuel Vadot
1001f126890aSEmmanuel Vadot			out-ports {
1002f126890aSEmmanuel Vadot				port {
1003f126890aSEmmanuel Vadot					etm2_out: endpoint {
1004f126890aSEmmanuel Vadot						remote-endpoint = <&kpss_in2>;
1005f126890aSEmmanuel Vadot					};
1006f126890aSEmmanuel Vadot				};
1007f126890aSEmmanuel Vadot			};
1008f126890aSEmmanuel Vadot		};
1009f126890aSEmmanuel Vadot
1010f126890aSEmmanuel Vadot		etm@fc33f000 {
1011f126890aSEmmanuel Vadot			compatible = "arm,coresight-etm4x", "arm,primecell";
1012f126890aSEmmanuel Vadot			reg = <0xfc33f000 0x1000>;
1013f126890aSEmmanuel Vadot
1014f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
1015f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
1016f126890aSEmmanuel Vadot
1017f126890aSEmmanuel Vadot			cpu = <&CPU3>;
1018f126890aSEmmanuel Vadot
1019f126890aSEmmanuel Vadot			out-ports {
1020f126890aSEmmanuel Vadot				port {
1021f126890aSEmmanuel Vadot					etm3_out: endpoint {
1022f126890aSEmmanuel Vadot						remote-endpoint = <&kpss_in3>;
1023f126890aSEmmanuel Vadot					};
1024f126890aSEmmanuel Vadot				};
1025f126890aSEmmanuel Vadot			};
1026f126890aSEmmanuel Vadot		};
1027f126890aSEmmanuel Vadot
1028f126890aSEmmanuel Vadot		/* KPSS funnel, only 4 inputs are used */
1029f126890aSEmmanuel Vadot		funnel@fc345000 {
1030f126890aSEmmanuel Vadot			compatible = "arm,coresight-dynamic-funnel", "arm,primecell";
1031f126890aSEmmanuel Vadot			reg = <0xfc345000 0x1000>;
1032f126890aSEmmanuel Vadot
1033f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_QDSS_CLK>, <&rpmcc RPM_SMD_QDSS_A_CLK>;
1034f126890aSEmmanuel Vadot			clock-names = "apb_pclk", "atclk";
1035f126890aSEmmanuel Vadot
1036f126890aSEmmanuel Vadot			in-ports {
1037f126890aSEmmanuel Vadot				#address-cells = <1>;
1038f126890aSEmmanuel Vadot				#size-cells = <0>;
1039f126890aSEmmanuel Vadot
1040f126890aSEmmanuel Vadot				port@0 {
1041f126890aSEmmanuel Vadot					reg = <0>;
1042f126890aSEmmanuel Vadot					kpss_in0: endpoint {
1043f126890aSEmmanuel Vadot						remote-endpoint = <&etm0_out>;
1044f126890aSEmmanuel Vadot					};
1045f126890aSEmmanuel Vadot				};
1046f126890aSEmmanuel Vadot				port@1 {
1047f126890aSEmmanuel Vadot					reg = <1>;
1048f126890aSEmmanuel Vadot					kpss_in1: endpoint {
1049f126890aSEmmanuel Vadot						remote-endpoint = <&etm1_out>;
1050f126890aSEmmanuel Vadot					};
1051f126890aSEmmanuel Vadot				};
1052f126890aSEmmanuel Vadot				port@2 {
1053f126890aSEmmanuel Vadot					reg = <2>;
1054f126890aSEmmanuel Vadot					kpss_in2: endpoint {
1055f126890aSEmmanuel Vadot						remote-endpoint = <&etm2_out>;
1056f126890aSEmmanuel Vadot					};
1057f126890aSEmmanuel Vadot				};
1058f126890aSEmmanuel Vadot				port@3 {
1059f126890aSEmmanuel Vadot					reg = <3>;
1060f126890aSEmmanuel Vadot					kpss_in3: endpoint {
1061f126890aSEmmanuel Vadot						remote-endpoint = <&etm3_out>;
1062f126890aSEmmanuel Vadot					};
1063f126890aSEmmanuel Vadot				};
1064f126890aSEmmanuel Vadot			};
1065f126890aSEmmanuel Vadot
1066f126890aSEmmanuel Vadot			out-ports {
1067f126890aSEmmanuel Vadot				port {
1068f126890aSEmmanuel Vadot					kpss_out: endpoint {
1069f126890aSEmmanuel Vadot						remote-endpoint = <&funnel1_in5>;
1070f126890aSEmmanuel Vadot					};
1071f126890aSEmmanuel Vadot				};
1072f126890aSEmmanuel Vadot			};
1073f126890aSEmmanuel Vadot		};
1074f126890aSEmmanuel Vadot
10758d13bc63SEmmanuel Vadot		bimc: interconnect@fc380000 {
10768d13bc63SEmmanuel Vadot			reg = <0xfc380000 0x6a000>;
10778d13bc63SEmmanuel Vadot			compatible = "qcom,msm8974-bimc";
10788d13bc63SEmmanuel Vadot			#interconnect-cells = <1>;
10798d13bc63SEmmanuel Vadot			clock-names = "bus", "bus_a";
10808d13bc63SEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_BIMC_CLK>,
10818d13bc63SEmmanuel Vadot				 <&rpmcc RPM_SMD_BIMC_A_CLK>;
10828d13bc63SEmmanuel Vadot		};
10838d13bc63SEmmanuel Vadot
1084f126890aSEmmanuel Vadot		gcc: clock-controller@fc400000 {
1085f126890aSEmmanuel Vadot			compatible = "qcom,gcc-msm8974";
1086f126890aSEmmanuel Vadot			#clock-cells = <1>;
1087f126890aSEmmanuel Vadot			#reset-cells = <1>;
1088f126890aSEmmanuel Vadot			#power-domain-cells = <1>;
1089f126890aSEmmanuel Vadot			reg = <0xfc400000 0x4000>;
1090f126890aSEmmanuel Vadot
1091f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>,
1092f126890aSEmmanuel Vadot				 <&sleep_clk>;
1093f126890aSEmmanuel Vadot			clock-names = "xo",
1094f126890aSEmmanuel Vadot				      "sleep_clk";
1095f126890aSEmmanuel Vadot		};
1096f126890aSEmmanuel Vadot
1097f126890aSEmmanuel Vadot		rpm_msg_ram: sram@fc428000 {
1098f126890aSEmmanuel Vadot			compatible = "qcom,rpm-msg-ram";
1099f126890aSEmmanuel Vadot			reg = <0xfc428000 0x4000>;
110084943d6fSEmmanuel Vadot
110184943d6fSEmmanuel Vadot			#address-cells = <1>;
110284943d6fSEmmanuel Vadot			#size-cells = <1>;
110384943d6fSEmmanuel Vadot			ranges = <0 0xfc428000 0x4000>;
110484943d6fSEmmanuel Vadot
110584943d6fSEmmanuel Vadot			apss_master_stats: sram@150 {
110684943d6fSEmmanuel Vadot				reg = <0x150 0x14>;
110784943d6fSEmmanuel Vadot			};
110884943d6fSEmmanuel Vadot
110984943d6fSEmmanuel Vadot			mpss_master_stats: sram@b50 {
111084943d6fSEmmanuel Vadot				reg = <0xb50 0x14>;
111184943d6fSEmmanuel Vadot			};
111284943d6fSEmmanuel Vadot
111384943d6fSEmmanuel Vadot			lpss_master_stats: sram@1550 {
111484943d6fSEmmanuel Vadot				reg = <0x1550 0x14>;
111584943d6fSEmmanuel Vadot			};
111684943d6fSEmmanuel Vadot
111784943d6fSEmmanuel Vadot			pronto_master_stats: sram@1f50 {
111884943d6fSEmmanuel Vadot				reg = <0x1f50 0x14>;
111984943d6fSEmmanuel Vadot			};
1120f126890aSEmmanuel Vadot		};
1121f126890aSEmmanuel Vadot
1122f126890aSEmmanuel Vadot		snoc: interconnect@fc460000 {
1123f126890aSEmmanuel Vadot			reg = <0xfc460000 0x4000>;
1124f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-snoc";
1125f126890aSEmmanuel Vadot			#interconnect-cells = <1>;
1126f126890aSEmmanuel Vadot			clock-names = "bus", "bus_a";
1127f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_SNOC_CLK>,
1128f126890aSEmmanuel Vadot				 <&rpmcc RPM_SMD_SNOC_A_CLK>;
1129f126890aSEmmanuel Vadot		};
1130f126890aSEmmanuel Vadot
1131f126890aSEmmanuel Vadot		pnoc: interconnect@fc468000 {
1132f126890aSEmmanuel Vadot			reg = <0xfc468000 0x4000>;
1133f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-pnoc";
1134f126890aSEmmanuel Vadot			#interconnect-cells = <1>;
1135f126890aSEmmanuel Vadot			clock-names = "bus", "bus_a";
1136f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_PNOC_CLK>,
1137f126890aSEmmanuel Vadot				 <&rpmcc RPM_SMD_PNOC_A_CLK>;
1138f126890aSEmmanuel Vadot		};
1139f126890aSEmmanuel Vadot
1140f126890aSEmmanuel Vadot		ocmemnoc: interconnect@fc470000 {
1141f126890aSEmmanuel Vadot			reg = <0xfc470000 0x4000>;
1142f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-ocmemnoc";
1143f126890aSEmmanuel Vadot			#interconnect-cells = <1>;
1144f126890aSEmmanuel Vadot			clock-names = "bus", "bus_a";
1145f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_OCMEMGX_CLK>,
1146f126890aSEmmanuel Vadot				 <&rpmcc RPM_SMD_OCMEMGX_A_CLK>;
1147f126890aSEmmanuel Vadot		};
1148f126890aSEmmanuel Vadot
1149f126890aSEmmanuel Vadot		mmssnoc: interconnect@fc478000 {
1150f126890aSEmmanuel Vadot			reg = <0xfc478000 0x4000>;
1151f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-mmssnoc";
1152f126890aSEmmanuel Vadot			#interconnect-cells = <1>;
1153f126890aSEmmanuel Vadot			clock-names = "bus", "bus_a";
1154f126890aSEmmanuel Vadot			clocks = <&mmcc MMSS_S0_AXI_CLK>,
1155f126890aSEmmanuel Vadot				 <&mmcc MMSS_S0_AXI_CLK>;
1156f126890aSEmmanuel Vadot		};
1157f126890aSEmmanuel Vadot
1158f126890aSEmmanuel Vadot		cnoc: interconnect@fc480000 {
1159f126890aSEmmanuel Vadot			reg = <0xfc480000 0x4000>;
1160f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-cnoc";
1161f126890aSEmmanuel Vadot			#interconnect-cells = <1>;
1162f126890aSEmmanuel Vadot			clock-names = "bus", "bus_a";
1163f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_CNOC_CLK>,
1164f126890aSEmmanuel Vadot				 <&rpmcc RPM_SMD_CNOC_A_CLK>;
1165f126890aSEmmanuel Vadot		};
1166f126890aSEmmanuel Vadot
1167f126890aSEmmanuel Vadot		tsens: thermal-sensor@fc4a9000 {
1168f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-tsens", "qcom,tsens-v0_1";
1169f126890aSEmmanuel Vadot			reg = <0xfc4a9000 0x1000>, /* TM */
1170f126890aSEmmanuel Vadot			      <0xfc4a8000 0x1000>; /* SROT */
1171f126890aSEmmanuel Vadot			nvmem-cells = <&tsens_mode>,
1172f126890aSEmmanuel Vadot				      <&tsens_base1>, <&tsens_base2>,
1173f126890aSEmmanuel Vadot				      <&tsens_use_backup>,
1174f126890aSEmmanuel Vadot				      <&tsens_mode_backup>,
1175f126890aSEmmanuel Vadot				      <&tsens_base1_backup>, <&tsens_base2_backup>,
1176f126890aSEmmanuel Vadot				      <&tsens_s0_p1>, <&tsens_s0_p2>,
1177f126890aSEmmanuel Vadot				      <&tsens_s1_p1>, <&tsens_s1_p2>,
1178f126890aSEmmanuel Vadot				      <&tsens_s2_p1>, <&tsens_s2_p2>,
1179f126890aSEmmanuel Vadot				      <&tsens_s3_p1>, <&tsens_s3_p2>,
1180f126890aSEmmanuel Vadot				      <&tsens_s4_p1>, <&tsens_s4_p2>,
1181f126890aSEmmanuel Vadot				      <&tsens_s5_p1>, <&tsens_s5_p2>,
1182f126890aSEmmanuel Vadot				      <&tsens_s6_p1>, <&tsens_s6_p2>,
1183f126890aSEmmanuel Vadot				      <&tsens_s7_p1>, <&tsens_s7_p2>,
1184f126890aSEmmanuel Vadot				      <&tsens_s8_p1>, <&tsens_s8_p2>,
1185f126890aSEmmanuel Vadot				      <&tsens_s9_p1>, <&tsens_s9_p2>,
1186f126890aSEmmanuel Vadot				      <&tsens_s10_p1>, <&tsens_s10_p2>,
1187f126890aSEmmanuel Vadot				      <&tsens_s0_p1_backup>, <&tsens_s0_p2_backup>,
1188f126890aSEmmanuel Vadot				      <&tsens_s1_p1_backup>, <&tsens_s1_p2_backup>,
1189f126890aSEmmanuel Vadot				      <&tsens_s2_p1_backup>, <&tsens_s2_p2_backup>,
1190f126890aSEmmanuel Vadot				      <&tsens_s3_p1_backup>, <&tsens_s3_p2_backup>,
1191f126890aSEmmanuel Vadot				      <&tsens_s4_p1_backup>, <&tsens_s4_p2_backup>,
1192f126890aSEmmanuel Vadot				      <&tsens_s5_p1_backup>, <&tsens_s5_p2_backup>,
1193f126890aSEmmanuel Vadot				      <&tsens_s6_p1_backup>, <&tsens_s6_p2_backup>,
1194f126890aSEmmanuel Vadot				      <&tsens_s7_p1_backup>, <&tsens_s7_p2_backup>,
1195f126890aSEmmanuel Vadot				      <&tsens_s8_p1_backup>, <&tsens_s8_p2_backup>,
1196f126890aSEmmanuel Vadot				      <&tsens_s9_p1_backup>, <&tsens_s9_p2_backup>,
1197f126890aSEmmanuel Vadot				      <&tsens_s10_p1_backup>, <&tsens_s10_p2_backup>;
1198f126890aSEmmanuel Vadot			nvmem-cell-names = "mode",
1199f126890aSEmmanuel Vadot					   "base1", "base2",
1200f126890aSEmmanuel Vadot					   "use_backup",
1201f126890aSEmmanuel Vadot					   "mode_backup",
1202f126890aSEmmanuel Vadot					   "base1_backup", "base2_backup",
1203f126890aSEmmanuel Vadot					   "s0_p1", "s0_p2",
1204f126890aSEmmanuel Vadot					   "s1_p1", "s1_p2",
1205f126890aSEmmanuel Vadot					   "s2_p1", "s2_p2",
1206f126890aSEmmanuel Vadot					   "s3_p1", "s3_p2",
1207f126890aSEmmanuel Vadot					   "s4_p1", "s4_p2",
1208f126890aSEmmanuel Vadot					   "s5_p1", "s5_p2",
1209f126890aSEmmanuel Vadot					   "s6_p1", "s6_p2",
1210f126890aSEmmanuel Vadot					   "s7_p1", "s7_p2",
1211f126890aSEmmanuel Vadot					   "s8_p1", "s8_p2",
1212f126890aSEmmanuel Vadot					   "s9_p1", "s9_p2",
1213f126890aSEmmanuel Vadot					   "s10_p1", "s10_p2",
1214f126890aSEmmanuel Vadot					   "s0_p1_backup", "s0_p2_backup",
1215f126890aSEmmanuel Vadot					   "s1_p1_backup", "s1_p2_backup",
1216f126890aSEmmanuel Vadot					   "s2_p1_backup", "s2_p2_backup",
1217f126890aSEmmanuel Vadot					   "s3_p1_backup", "s3_p2_backup",
1218f126890aSEmmanuel Vadot					   "s4_p1_backup", "s4_p2_backup",
1219f126890aSEmmanuel Vadot					   "s5_p1_backup", "s5_p2_backup",
1220f126890aSEmmanuel Vadot					   "s6_p1_backup", "s6_p2_backup",
1221f126890aSEmmanuel Vadot					   "s7_p1_backup", "s7_p2_backup",
1222f126890aSEmmanuel Vadot					   "s8_p1_backup", "s8_p2_backup",
1223f126890aSEmmanuel Vadot					   "s9_p1_backup", "s9_p2_backup",
1224f126890aSEmmanuel Vadot					   "s10_p1_backup", "s10_p2_backup";
1225f126890aSEmmanuel Vadot			#qcom,sensors = <11>;
1226f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>;
1227f126890aSEmmanuel Vadot			interrupt-names = "uplow";
1228f126890aSEmmanuel Vadot			#thermal-sensor-cells = <1>;
1229f126890aSEmmanuel Vadot		};
1230f126890aSEmmanuel Vadot
1231f126890aSEmmanuel Vadot		restart@fc4ab000 {
1232f126890aSEmmanuel Vadot			compatible = "qcom,pshold";
1233f126890aSEmmanuel Vadot			reg = <0xfc4ab000 0x4>;
1234f126890aSEmmanuel Vadot		};
1235f126890aSEmmanuel Vadot
12360e8011faSEmmanuel Vadot		qfprom: efuse@fc4bc000 {
1237f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-qfprom", "qcom,qfprom";
123801950c46SEmmanuel Vadot			reg = <0xfc4bc000 0x2100>;
1239f126890aSEmmanuel Vadot			#address-cells = <1>;
1240f126890aSEmmanuel Vadot			#size-cells = <1>;
1241f126890aSEmmanuel Vadot
1242f126890aSEmmanuel Vadot			tsens_base1: base1@d0 {
1243f126890aSEmmanuel Vadot				reg = <0xd0 0x1>;
1244f126890aSEmmanuel Vadot				bits = <0 8>;
1245f126890aSEmmanuel Vadot			};
1246f126890aSEmmanuel Vadot
1247f126890aSEmmanuel Vadot			tsens_s0_p1: s0-p1@d1 {
1248f126890aSEmmanuel Vadot				reg = <0xd1 0x1>;
1249f126890aSEmmanuel Vadot				bits = <0 6>;
1250f126890aSEmmanuel Vadot			};
1251f126890aSEmmanuel Vadot
1252f126890aSEmmanuel Vadot			tsens_s1_p1: s1-p1@d2 {
1253f126890aSEmmanuel Vadot				reg = <0xd1 0x2>;
1254f126890aSEmmanuel Vadot				bits = <6 6>;
1255f126890aSEmmanuel Vadot			};
1256f126890aSEmmanuel Vadot
1257f126890aSEmmanuel Vadot			tsens_s2_p1: s2-p1@d2 {
1258f126890aSEmmanuel Vadot				reg = <0xd2 0x2>;
1259f126890aSEmmanuel Vadot				bits = <4 6>;
1260f126890aSEmmanuel Vadot			};
1261f126890aSEmmanuel Vadot
1262f126890aSEmmanuel Vadot			tsens_s3_p1: s3-p1@d3 {
1263f126890aSEmmanuel Vadot				reg = <0xd3 0x1>;
1264f126890aSEmmanuel Vadot				bits = <2 6>;
1265f126890aSEmmanuel Vadot			};
1266f126890aSEmmanuel Vadot
1267f126890aSEmmanuel Vadot			tsens_s4_p1: s4-p1@d4 {
1268f126890aSEmmanuel Vadot				reg = <0xd4 0x1>;
1269f126890aSEmmanuel Vadot				bits = <0 6>;
1270f126890aSEmmanuel Vadot			};
1271f126890aSEmmanuel Vadot
1272f126890aSEmmanuel Vadot			tsens_s5_p1: s5-p1@d4 {
1273f126890aSEmmanuel Vadot				reg = <0xd4 0x2>;
1274f126890aSEmmanuel Vadot				bits = <6 6>;
1275f126890aSEmmanuel Vadot			};
1276f126890aSEmmanuel Vadot
1277f126890aSEmmanuel Vadot			tsens_s6_p1: s6-p1@d5 {
1278f126890aSEmmanuel Vadot				reg = <0xd5 0x2>;
1279f126890aSEmmanuel Vadot				bits = <4 6>;
1280f126890aSEmmanuel Vadot			};
1281f126890aSEmmanuel Vadot
1282f126890aSEmmanuel Vadot			tsens_s7_p1: s7-p1@d6 {
1283f126890aSEmmanuel Vadot				reg = <0xd6 0x1>;
1284f126890aSEmmanuel Vadot				bits = <2 6>;
1285f126890aSEmmanuel Vadot			};
1286f126890aSEmmanuel Vadot
1287f126890aSEmmanuel Vadot			tsens_s8_p1: s8-p1@d7 {
1288f126890aSEmmanuel Vadot				reg = <0xd7 0x1>;
1289f126890aSEmmanuel Vadot				bits = <0 6>;
1290f126890aSEmmanuel Vadot			};
1291f126890aSEmmanuel Vadot
1292f126890aSEmmanuel Vadot			tsens_mode: mode@d7 {
1293f126890aSEmmanuel Vadot				reg = <0xd7 0x1>;
1294f126890aSEmmanuel Vadot				bits = <6 2>;
1295f126890aSEmmanuel Vadot			};
1296f126890aSEmmanuel Vadot
1297f126890aSEmmanuel Vadot			tsens_s9_p1: s9-p1@d8 {
1298f126890aSEmmanuel Vadot				reg = <0xd8 0x1>;
1299f126890aSEmmanuel Vadot				bits = <0 6>;
1300f126890aSEmmanuel Vadot			};
1301f126890aSEmmanuel Vadot
1302f126890aSEmmanuel Vadot			tsens_s10_p1: s10_p1@d8 {
1303f126890aSEmmanuel Vadot				reg = <0xd8 0x2>;
1304f126890aSEmmanuel Vadot				bits = <6 6>;
1305f126890aSEmmanuel Vadot			};
1306f126890aSEmmanuel Vadot
1307f126890aSEmmanuel Vadot			tsens_base2: base2@d9 {
1308f126890aSEmmanuel Vadot				reg = <0xd9 0x2>;
1309f126890aSEmmanuel Vadot				bits = <4 8>;
1310f126890aSEmmanuel Vadot			};
1311f126890aSEmmanuel Vadot
1312f126890aSEmmanuel Vadot			tsens_s0_p2: s0-p2@da {
1313f126890aSEmmanuel Vadot				reg = <0xda 0x2>;
1314f126890aSEmmanuel Vadot				bits = <4 6>;
1315f126890aSEmmanuel Vadot			};
1316f126890aSEmmanuel Vadot
1317f126890aSEmmanuel Vadot			tsens_s1_p2: s1-p2@db {
1318f126890aSEmmanuel Vadot				reg = <0xdb 0x1>;
1319f126890aSEmmanuel Vadot				bits = <2 6>;
1320f126890aSEmmanuel Vadot			};
1321f126890aSEmmanuel Vadot
1322f126890aSEmmanuel Vadot			tsens_s2_p2: s2-p2@dc {
1323f126890aSEmmanuel Vadot				reg = <0xdc 0x1>;
1324f126890aSEmmanuel Vadot				bits = <0 6>;
1325f126890aSEmmanuel Vadot			};
1326f126890aSEmmanuel Vadot
1327f126890aSEmmanuel Vadot			tsens_s3_p2: s3-p2@dc {
1328f126890aSEmmanuel Vadot				reg = <0xdc 0x2>;
1329f126890aSEmmanuel Vadot				bits = <6 6>;
1330f126890aSEmmanuel Vadot			};
1331f126890aSEmmanuel Vadot
1332f126890aSEmmanuel Vadot			tsens_s4_p2: s4-p2@dd {
1333f126890aSEmmanuel Vadot				reg = <0xdd 0x2>;
1334f126890aSEmmanuel Vadot				bits = <4 6>;
1335f126890aSEmmanuel Vadot			};
1336f126890aSEmmanuel Vadot
1337f126890aSEmmanuel Vadot			tsens_s5_p2: s5-p2@de {
1338f126890aSEmmanuel Vadot				reg = <0xde 0x2>;
1339f126890aSEmmanuel Vadot				bits = <2 6>;
1340f126890aSEmmanuel Vadot			};
1341f126890aSEmmanuel Vadot
1342f126890aSEmmanuel Vadot			tsens_s6_p2: s6-p2@df {
1343f126890aSEmmanuel Vadot				reg = <0xdf 0x1>;
1344f126890aSEmmanuel Vadot				bits = <0 6>;
1345f126890aSEmmanuel Vadot			};
1346f126890aSEmmanuel Vadot
1347f126890aSEmmanuel Vadot			tsens_s7_p2: s7-p2@e0 {
1348f126890aSEmmanuel Vadot				reg = <0xe0 0x1>;
1349f126890aSEmmanuel Vadot				bits = <0 6>;
1350f126890aSEmmanuel Vadot			};
1351f126890aSEmmanuel Vadot
1352f126890aSEmmanuel Vadot			tsens_s8_p2: s8-p2@e0 {
1353f126890aSEmmanuel Vadot				reg = <0xe0 0x2>;
1354f126890aSEmmanuel Vadot				bits = <6 6>;
1355f126890aSEmmanuel Vadot			};
1356f126890aSEmmanuel Vadot
1357f126890aSEmmanuel Vadot			tsens_s9_p2: s9-p2@e1 {
1358f126890aSEmmanuel Vadot				reg = <0xe1 0x2>;
1359f126890aSEmmanuel Vadot				bits = <4 6>;
1360f126890aSEmmanuel Vadot			};
1361f126890aSEmmanuel Vadot
1362f126890aSEmmanuel Vadot			tsens_s10_p2: s10_p2@e2 {
1363f126890aSEmmanuel Vadot				reg = <0xe2 0x2>;
1364f126890aSEmmanuel Vadot				bits = <2 6>;
1365f126890aSEmmanuel Vadot			};
1366f126890aSEmmanuel Vadot
1367f126890aSEmmanuel Vadot			tsens_s5_p2_backup: s5-p2_backup@e3 {
1368f126890aSEmmanuel Vadot				reg = <0xe3 0x2>;
1369f126890aSEmmanuel Vadot				bits = <0 6>;
1370f126890aSEmmanuel Vadot			};
1371f126890aSEmmanuel Vadot
1372f126890aSEmmanuel Vadot			tsens_mode_backup: mode_backup@e3 {
1373f126890aSEmmanuel Vadot				reg = <0xe3 0x1>;
1374f126890aSEmmanuel Vadot				bits = <6 2>;
1375f126890aSEmmanuel Vadot			};
1376f126890aSEmmanuel Vadot
1377f126890aSEmmanuel Vadot			tsens_s6_p2_backup: s6-p2_backup@e4 {
1378f126890aSEmmanuel Vadot				reg = <0xe4 0x1>;
1379f126890aSEmmanuel Vadot				bits = <0 6>;
1380f126890aSEmmanuel Vadot			};
1381f126890aSEmmanuel Vadot
1382f126890aSEmmanuel Vadot			tsens_s7_p2_backup: s7-p2_backup@e4 {
1383f126890aSEmmanuel Vadot				reg = <0xe4 0x2>;
1384f126890aSEmmanuel Vadot				bits = <6 6>;
1385f126890aSEmmanuel Vadot			};
1386f126890aSEmmanuel Vadot
1387f126890aSEmmanuel Vadot			tsens_s8_p2_backup: s8-p2_backup@e5 {
1388f126890aSEmmanuel Vadot				reg = <0xe5 0x2>;
1389f126890aSEmmanuel Vadot				bits = <4 6>;
1390f126890aSEmmanuel Vadot			};
1391f126890aSEmmanuel Vadot
1392f126890aSEmmanuel Vadot			tsens_s9_p2_backup: s9-p2_backup@e6 {
1393f126890aSEmmanuel Vadot				reg = <0xe6 0x2>;
1394f126890aSEmmanuel Vadot				bits = <2 6>;
1395f126890aSEmmanuel Vadot			};
1396f126890aSEmmanuel Vadot
1397f126890aSEmmanuel Vadot			tsens_s10_p2_backup: s10_p2_backup@e7 {
1398f126890aSEmmanuel Vadot				reg = <0xe7 0x1>;
1399f126890aSEmmanuel Vadot				bits = <0 6>;
1400f126890aSEmmanuel Vadot			};
1401f126890aSEmmanuel Vadot
1402f126890aSEmmanuel Vadot			tsens_base1_backup: base1_backup@440 {
1403f126890aSEmmanuel Vadot				reg = <0x440 0x1>;
1404f126890aSEmmanuel Vadot				bits = <0 8>;
1405f126890aSEmmanuel Vadot			};
1406f126890aSEmmanuel Vadot
1407f126890aSEmmanuel Vadot			tsens_s0_p1_backup: s0-p1_backup@441 {
1408f126890aSEmmanuel Vadot				reg = <0x441 0x1>;
1409f126890aSEmmanuel Vadot				bits = <0 6>;
1410f126890aSEmmanuel Vadot			};
1411f126890aSEmmanuel Vadot
1412f126890aSEmmanuel Vadot			tsens_s1_p1_backup: s1-p1_backup@442 {
1413f126890aSEmmanuel Vadot				reg = <0x441 0x2>;
1414f126890aSEmmanuel Vadot				bits = <6 6>;
1415f126890aSEmmanuel Vadot			};
1416f126890aSEmmanuel Vadot
1417f126890aSEmmanuel Vadot			tsens_s2_p1_backup: s2-p1_backup@442 {
1418f126890aSEmmanuel Vadot				reg = <0x442 0x2>;
1419f126890aSEmmanuel Vadot				bits = <4 6>;
1420f126890aSEmmanuel Vadot			};
1421f126890aSEmmanuel Vadot
1422f126890aSEmmanuel Vadot			tsens_s3_p1_backup: s3-p1_backup@443 {
1423f126890aSEmmanuel Vadot				reg = <0x443 0x1>;
1424f126890aSEmmanuel Vadot				bits = <2 6>;
1425f126890aSEmmanuel Vadot			};
1426f126890aSEmmanuel Vadot
1427f126890aSEmmanuel Vadot			tsens_s4_p1_backup: s4-p1_backup@444 {
1428f126890aSEmmanuel Vadot				reg = <0x444 0x1>;
1429f126890aSEmmanuel Vadot				bits = <0 6>;
1430f126890aSEmmanuel Vadot			};
1431f126890aSEmmanuel Vadot
1432f126890aSEmmanuel Vadot			tsens_s5_p1_backup: s5-p1_backup@444 {
1433f126890aSEmmanuel Vadot				reg = <0x444 0x2>;
1434f126890aSEmmanuel Vadot				bits = <6 6>;
1435f126890aSEmmanuel Vadot			};
1436f126890aSEmmanuel Vadot
1437f126890aSEmmanuel Vadot			tsens_s6_p1_backup: s6-p1_backup@445 {
1438f126890aSEmmanuel Vadot				reg = <0x445 0x2>;
1439f126890aSEmmanuel Vadot				bits = <4 6>;
1440f126890aSEmmanuel Vadot			};
1441f126890aSEmmanuel Vadot
1442f126890aSEmmanuel Vadot			tsens_s7_p1_backup: s7-p1_backup@446 {
1443f126890aSEmmanuel Vadot				reg = <0x446 0x1>;
1444f126890aSEmmanuel Vadot				bits = <2 6>;
1445f126890aSEmmanuel Vadot			};
1446f126890aSEmmanuel Vadot
1447f126890aSEmmanuel Vadot			tsens_use_backup: use_backup@447 {
1448f126890aSEmmanuel Vadot				reg = <0x447 0x1>;
1449f126890aSEmmanuel Vadot				bits = <5 3>;
1450f126890aSEmmanuel Vadot			};
1451f126890aSEmmanuel Vadot
1452f126890aSEmmanuel Vadot			tsens_s8_p1_backup: s8-p1_backup@448 {
1453f126890aSEmmanuel Vadot				reg = <0x448 0x1>;
1454f126890aSEmmanuel Vadot				bits = <0 6>;
1455f126890aSEmmanuel Vadot			};
1456f126890aSEmmanuel Vadot
1457f126890aSEmmanuel Vadot			tsens_s9_p1_backup: s9-p1_backup@448 {
1458f126890aSEmmanuel Vadot				reg = <0x448 0x2>;
1459f126890aSEmmanuel Vadot				bits = <6 6>;
1460f126890aSEmmanuel Vadot			};
1461f126890aSEmmanuel Vadot
1462f126890aSEmmanuel Vadot			tsens_s10_p1_backup: s10_p1_backup@449 {
1463f126890aSEmmanuel Vadot				reg = <0x449 0x2>;
1464f126890aSEmmanuel Vadot				bits = <4 6>;
1465f126890aSEmmanuel Vadot			};
1466f126890aSEmmanuel Vadot
1467f126890aSEmmanuel Vadot			tsens_base2_backup: base2_backup@44a {
1468f126890aSEmmanuel Vadot				reg = <0x44a 0x2>;
1469f126890aSEmmanuel Vadot				bits = <2 8>;
1470f126890aSEmmanuel Vadot			};
1471f126890aSEmmanuel Vadot
1472f126890aSEmmanuel Vadot			tsens_s0_p2_backup: s0-p2_backup@44b {
1473f126890aSEmmanuel Vadot				reg = <0x44b 0x3>;
1474f126890aSEmmanuel Vadot				bits = <2 6>;
1475f126890aSEmmanuel Vadot			};
1476f126890aSEmmanuel Vadot
1477f126890aSEmmanuel Vadot			tsens_s1_p2_backup: s1-p2_backup@44c {
1478f126890aSEmmanuel Vadot				reg = <0x44c 0x1>;
1479f126890aSEmmanuel Vadot				bits = <0 6>;
1480f126890aSEmmanuel Vadot			};
1481f126890aSEmmanuel Vadot
1482f126890aSEmmanuel Vadot			tsens_s2_p2_backup: s2-p2_backup@44c {
1483f126890aSEmmanuel Vadot				reg = <0x44c 0x2>;
1484f126890aSEmmanuel Vadot				bits = <6 6>;
1485f126890aSEmmanuel Vadot			};
1486f126890aSEmmanuel Vadot
1487f126890aSEmmanuel Vadot			tsens_s3_p2_backup: s3-p2_backup@44d {
1488f126890aSEmmanuel Vadot				reg = <0x44d 0x2>;
1489f126890aSEmmanuel Vadot				bits = <4 6>;
1490f126890aSEmmanuel Vadot			};
1491f126890aSEmmanuel Vadot
1492f126890aSEmmanuel Vadot			tsens_s4_p2_backup: s4-p2_backup@44e {
1493f126890aSEmmanuel Vadot				reg = <0x44e 0x1>;
1494f126890aSEmmanuel Vadot				bits = <2 6>;
1495f126890aSEmmanuel Vadot			};
1496f126890aSEmmanuel Vadot		};
1497f126890aSEmmanuel Vadot
1498f126890aSEmmanuel Vadot		spmi_bus: spmi@fc4cf000 {
1499f126890aSEmmanuel Vadot			compatible = "qcom,spmi-pmic-arb";
1500f126890aSEmmanuel Vadot			reg-names = "core", "intr", "cnfg";
1501f126890aSEmmanuel Vadot			reg = <0xfc4cf000 0x1000>,
1502f126890aSEmmanuel Vadot			      <0xfc4cb000 0x1000>,
1503f126890aSEmmanuel Vadot			      <0xfc4ca000 0x1000>;
1504f126890aSEmmanuel Vadot			interrupt-names = "periph_irq";
1505f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
1506f126890aSEmmanuel Vadot			qcom,ee = <0>;
1507f126890aSEmmanuel Vadot			qcom,channel = <0>;
1508f126890aSEmmanuel Vadot			#address-cells = <2>;
1509f126890aSEmmanuel Vadot			#size-cells = <0>;
1510f126890aSEmmanuel Vadot			interrupt-controller;
1511f126890aSEmmanuel Vadot			#interrupt-cells = <4>;
1512f126890aSEmmanuel Vadot		};
1513f126890aSEmmanuel Vadot
1514f126890aSEmmanuel Vadot		bam_dmux_dma: dma-controller@fc834000 {
1515f126890aSEmmanuel Vadot			compatible = "qcom,bam-v1.4.0";
1516f126890aSEmmanuel Vadot			reg = <0xfc834000 0x7000>;
1517f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
1518f126890aSEmmanuel Vadot			#dma-cells = <1>;
1519f126890aSEmmanuel Vadot			qcom,ee = <0>;
1520f126890aSEmmanuel Vadot
1521f126890aSEmmanuel Vadot			num-channels = <6>;
1522f126890aSEmmanuel Vadot			qcom,num-ees = <1>;
1523f126890aSEmmanuel Vadot			qcom,powered-remotely;
1524f126890aSEmmanuel Vadot		};
1525f126890aSEmmanuel Vadot
1526f126890aSEmmanuel Vadot		remoteproc_mss: remoteproc@fc880000 {
1527f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-mss-pil";
1528f126890aSEmmanuel Vadot			reg = <0xfc880000 0x100>, <0xfc820000 0x020>;
1529f126890aSEmmanuel Vadot			reg-names = "qdsp6", "rmb";
1530f126890aSEmmanuel Vadot
1531f126890aSEmmanuel Vadot			interrupts-extended = <&intc GIC_SPI 24 IRQ_TYPE_EDGE_RISING>,
1532f126890aSEmmanuel Vadot					      <&modem_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,
1533f126890aSEmmanuel Vadot					      <&modem_smp2p_in 1 IRQ_TYPE_EDGE_RISING>,
1534f126890aSEmmanuel Vadot					      <&modem_smp2p_in 2 IRQ_TYPE_EDGE_RISING>,
1535f126890aSEmmanuel Vadot					      <&modem_smp2p_in 3 IRQ_TYPE_EDGE_RISING>;
1536f126890aSEmmanuel Vadot			interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack";
1537f126890aSEmmanuel Vadot
1538f126890aSEmmanuel Vadot			clocks = <&gcc GCC_MSS_Q6_BIMC_AXI_CLK>,
1539f126890aSEmmanuel Vadot				 <&gcc GCC_MSS_CFG_AHB_CLK>,
1540f126890aSEmmanuel Vadot				 <&gcc GCC_BOOT_ROM_AHB_CLK>,
1541f126890aSEmmanuel Vadot				 <&xo_board>;
1542f126890aSEmmanuel Vadot			clock-names = "iface", "bus", "mem", "xo";
1543f126890aSEmmanuel Vadot
1544f126890aSEmmanuel Vadot			resets = <&gcc GCC_MSS_RESTART>;
1545f126890aSEmmanuel Vadot			reset-names = "mss_restart";
1546f126890aSEmmanuel Vadot
1547f126890aSEmmanuel Vadot			qcom,halt-regs = <&tcsr_mutex 0x1180 0x1200 0x1280>;
1548f126890aSEmmanuel Vadot
1549f126890aSEmmanuel Vadot			qcom,smem-states = <&modem_smp2p_out 0>;
1550f126890aSEmmanuel Vadot			qcom,smem-state-names = "stop";
1551f126890aSEmmanuel Vadot
1552f126890aSEmmanuel Vadot			status = "disabled";
1553f126890aSEmmanuel Vadot
1554f126890aSEmmanuel Vadot			mba {
1555f126890aSEmmanuel Vadot				memory-region = <&mba_region>;
1556f126890aSEmmanuel Vadot			};
1557f126890aSEmmanuel Vadot
1558f126890aSEmmanuel Vadot			mpss {
1559f126890aSEmmanuel Vadot				memory-region = <&mpss_region>;
1560f126890aSEmmanuel Vadot			};
1561f126890aSEmmanuel Vadot
1562f126890aSEmmanuel Vadot			bam_dmux: bam-dmux {
1563f126890aSEmmanuel Vadot				compatible = "qcom,bam-dmux";
1564f126890aSEmmanuel Vadot
1565f126890aSEmmanuel Vadot				interrupt-parent = <&modem_smsm>;
1566f126890aSEmmanuel Vadot				interrupts = <1 IRQ_TYPE_EDGE_BOTH>, <11 IRQ_TYPE_EDGE_BOTH>;
1567f126890aSEmmanuel Vadot				interrupt-names = "pc", "pc-ack";
1568f126890aSEmmanuel Vadot
1569f126890aSEmmanuel Vadot				qcom,smem-states = <&apps_smsm 1>, <&apps_smsm 11>;
1570f126890aSEmmanuel Vadot				qcom,smem-state-names = "pc", "pc-ack";
1571f126890aSEmmanuel Vadot
1572f126890aSEmmanuel Vadot				dmas = <&bam_dmux_dma 4>, <&bam_dmux_dma 5>;
1573f126890aSEmmanuel Vadot				dma-names = "tx", "rx";
1574f126890aSEmmanuel Vadot			};
1575f126890aSEmmanuel Vadot
1576f126890aSEmmanuel Vadot			smd-edge {
1577f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 25 IRQ_TYPE_EDGE_RISING>;
1578f126890aSEmmanuel Vadot
15790e8011faSEmmanuel Vadot				mboxes = <&apcs 12>;
1580f126890aSEmmanuel Vadot				qcom,smd-edge = <0>;
1581f126890aSEmmanuel Vadot
1582f126890aSEmmanuel Vadot				label = "modem";
1583f126890aSEmmanuel Vadot			};
1584f126890aSEmmanuel Vadot		};
1585f126890aSEmmanuel Vadot
1586f126890aSEmmanuel Vadot		tcsr_mutex: hwlock@fd484000 {
1587f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-tcsr-mutex", "qcom,tcsr-mutex", "syscon";
1588f126890aSEmmanuel Vadot			reg = <0xfd484000 0x2000>;
1589f126890aSEmmanuel Vadot			#hwlock-cells = <1>;
1590f126890aSEmmanuel Vadot		};
1591f126890aSEmmanuel Vadot
1592f126890aSEmmanuel Vadot		tcsr: syscon@fd4a0000 {
1593f126890aSEmmanuel Vadot			compatible = "qcom,tcsr-msm8974", "syscon";
1594f126890aSEmmanuel Vadot			reg = <0xfd4a0000 0x10000>;
1595f126890aSEmmanuel Vadot		};
1596f126890aSEmmanuel Vadot
1597f126890aSEmmanuel Vadot		tlmm: pinctrl@fd510000 {
1598f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-pinctrl";
1599f126890aSEmmanuel Vadot			reg = <0xfd510000 0x4000>;
1600f126890aSEmmanuel Vadot			gpio-controller;
1601f126890aSEmmanuel Vadot			gpio-ranges = <&tlmm 0 0 146>;
1602f126890aSEmmanuel Vadot			#gpio-cells = <2>;
1603f126890aSEmmanuel Vadot			interrupt-controller;
1604f126890aSEmmanuel Vadot			#interrupt-cells = <2>;
1605f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
1606f126890aSEmmanuel Vadot
1607f126890aSEmmanuel Vadot			sdc1_off: sdc1-off-state {
1608f126890aSEmmanuel Vadot				clk-pins {
1609f126890aSEmmanuel Vadot					pins = "sdc1_clk";
1610f126890aSEmmanuel Vadot					bias-disable;
1611f126890aSEmmanuel Vadot					drive-strength = <2>;
1612f126890aSEmmanuel Vadot				};
1613f126890aSEmmanuel Vadot
1614f126890aSEmmanuel Vadot				cmd-pins {
1615f126890aSEmmanuel Vadot					pins = "sdc1_cmd";
1616f126890aSEmmanuel Vadot					bias-pull-up;
1617f126890aSEmmanuel Vadot					drive-strength = <2>;
1618f126890aSEmmanuel Vadot				};
1619f126890aSEmmanuel Vadot
1620f126890aSEmmanuel Vadot				data-pins {
1621f126890aSEmmanuel Vadot					pins = "sdc1_data";
1622f126890aSEmmanuel Vadot					bias-pull-up;
1623f126890aSEmmanuel Vadot					drive-strength = <2>;
1624f126890aSEmmanuel Vadot				};
1625f126890aSEmmanuel Vadot			};
1626f126890aSEmmanuel Vadot
1627f126890aSEmmanuel Vadot			sdc2_off: sdc2-off-state {
1628f126890aSEmmanuel Vadot				clk-pins {
1629f126890aSEmmanuel Vadot					pins = "sdc2_clk";
1630f126890aSEmmanuel Vadot					bias-disable;
1631f126890aSEmmanuel Vadot					drive-strength = <2>;
1632f126890aSEmmanuel Vadot				};
1633f126890aSEmmanuel Vadot
1634f126890aSEmmanuel Vadot				cmd-pins {
1635f126890aSEmmanuel Vadot					pins = "sdc2_cmd";
1636f126890aSEmmanuel Vadot					bias-pull-up;
1637f126890aSEmmanuel Vadot					drive-strength = <2>;
1638f126890aSEmmanuel Vadot				};
1639f126890aSEmmanuel Vadot
1640f126890aSEmmanuel Vadot				data-pins {
1641f126890aSEmmanuel Vadot					pins = "sdc2_data";
1642f126890aSEmmanuel Vadot					bias-pull-up;
1643f126890aSEmmanuel Vadot					drive-strength = <2>;
1644f126890aSEmmanuel Vadot				};
1645f126890aSEmmanuel Vadot			};
1646f126890aSEmmanuel Vadot
1647f126890aSEmmanuel Vadot			blsp1_uart2_default: blsp1-uart2-default-state {
1648f126890aSEmmanuel Vadot				rx-pins {
1649f126890aSEmmanuel Vadot					pins = "gpio5";
1650f126890aSEmmanuel Vadot					function = "blsp_uart2";
1651f126890aSEmmanuel Vadot					drive-strength = <2>;
1652f126890aSEmmanuel Vadot					bias-pull-up;
1653f126890aSEmmanuel Vadot				};
1654f126890aSEmmanuel Vadot
1655f126890aSEmmanuel Vadot				tx-pins {
1656f126890aSEmmanuel Vadot					pins = "gpio4";
1657f126890aSEmmanuel Vadot					function = "blsp_uart2";
1658f126890aSEmmanuel Vadot					drive-strength = <4>;
1659f126890aSEmmanuel Vadot					bias-disable;
1660f126890aSEmmanuel Vadot				};
1661f126890aSEmmanuel Vadot			};
1662f126890aSEmmanuel Vadot
1663f126890aSEmmanuel Vadot			blsp2_uart1_default: blsp2-uart1-default-state {
1664f126890aSEmmanuel Vadot				tx-rts-pins {
1665f126890aSEmmanuel Vadot					pins = "gpio41", "gpio44";
1666f126890aSEmmanuel Vadot					function = "blsp_uart7";
1667f126890aSEmmanuel Vadot					drive-strength = <2>;
1668f126890aSEmmanuel Vadot					bias-disable;
1669f126890aSEmmanuel Vadot				};
1670f126890aSEmmanuel Vadot
1671f126890aSEmmanuel Vadot				rx-cts-pins {
1672f126890aSEmmanuel Vadot					pins = "gpio42", "gpio43";
1673f126890aSEmmanuel Vadot					function = "blsp_uart7";
1674f126890aSEmmanuel Vadot					drive-strength = <2>;
1675f126890aSEmmanuel Vadot					bias-pull-up;
1676f126890aSEmmanuel Vadot				};
1677f126890aSEmmanuel Vadot			};
1678f126890aSEmmanuel Vadot
1679f126890aSEmmanuel Vadot			blsp2_uart1_sleep: blsp2-uart1-sleep-state {
1680f126890aSEmmanuel Vadot				pins = "gpio41", "gpio42", "gpio43", "gpio44";
1681f126890aSEmmanuel Vadot				function = "gpio";
1682f126890aSEmmanuel Vadot				drive-strength = <2>;
1683f126890aSEmmanuel Vadot				bias-pull-down;
1684f126890aSEmmanuel Vadot			};
1685f126890aSEmmanuel Vadot
1686f126890aSEmmanuel Vadot			blsp2_uart4_default: blsp2-uart4-default-state {
1687f126890aSEmmanuel Vadot				tx-rts-pins {
1688f126890aSEmmanuel Vadot					pins = "gpio53", "gpio56";
1689f126890aSEmmanuel Vadot					function = "blsp_uart10";
1690f126890aSEmmanuel Vadot					drive-strength = <2>;
1691f126890aSEmmanuel Vadot					bias-disable;
1692f126890aSEmmanuel Vadot				};
1693f126890aSEmmanuel Vadot
1694f126890aSEmmanuel Vadot				rx-cts-pins {
1695f126890aSEmmanuel Vadot					pins = "gpio54", "gpio55";
1696f126890aSEmmanuel Vadot					function = "blsp_uart10";
1697f126890aSEmmanuel Vadot					drive-strength = <2>;
1698f126890aSEmmanuel Vadot					bias-pull-up;
1699f126890aSEmmanuel Vadot				};
1700f126890aSEmmanuel Vadot			};
1701f126890aSEmmanuel Vadot
1702f126890aSEmmanuel Vadot			blsp1_i2c1_default: blsp1-i2c1-default-state {
1703f126890aSEmmanuel Vadot				pins = "gpio2", "gpio3";
1704f126890aSEmmanuel Vadot				function = "blsp_i2c1";
1705f126890aSEmmanuel Vadot				drive-strength = <2>;
1706f126890aSEmmanuel Vadot				bias-disable;
1707f126890aSEmmanuel Vadot			};
1708f126890aSEmmanuel Vadot
1709f126890aSEmmanuel Vadot			blsp1_i2c1_sleep: blsp1-i2c1-sleep-state {
1710f126890aSEmmanuel Vadot				pins = "gpio2", "gpio3";
1711f126890aSEmmanuel Vadot				function = "blsp_i2c1";
1712f126890aSEmmanuel Vadot				drive-strength = <2>;
1713f126890aSEmmanuel Vadot				bias-pull-up;
1714f126890aSEmmanuel Vadot			};
1715f126890aSEmmanuel Vadot
1716f126890aSEmmanuel Vadot			blsp1_i2c2_default: blsp1-i2c2-default-state {
1717f126890aSEmmanuel Vadot				pins = "gpio6", "gpio7";
1718f126890aSEmmanuel Vadot				function = "blsp_i2c2";
1719f126890aSEmmanuel Vadot				drive-strength = <2>;
1720f126890aSEmmanuel Vadot				bias-disable;
1721f126890aSEmmanuel Vadot			};
1722f126890aSEmmanuel Vadot
1723f126890aSEmmanuel Vadot			blsp1_i2c2_sleep: blsp1-i2c2-sleep-state {
1724f126890aSEmmanuel Vadot				pins = "gpio6", "gpio7";
1725f126890aSEmmanuel Vadot				function = "blsp_i2c2";
1726f126890aSEmmanuel Vadot				drive-strength = <2>;
1727f126890aSEmmanuel Vadot				bias-pull-up;
1728f126890aSEmmanuel Vadot			};
1729f126890aSEmmanuel Vadot
1730f126890aSEmmanuel Vadot			blsp1_i2c3_default: blsp1-i2c3-default-state {
1731f126890aSEmmanuel Vadot				pins = "gpio10", "gpio11";
1732f126890aSEmmanuel Vadot				function = "blsp_i2c3";
1733f126890aSEmmanuel Vadot				drive-strength = <2>;
1734f126890aSEmmanuel Vadot				bias-disable;
1735f126890aSEmmanuel Vadot			};
1736f126890aSEmmanuel Vadot
1737f126890aSEmmanuel Vadot			blsp1_i2c3_sleep: blsp1-i2c3-sleep-state {
1738f126890aSEmmanuel Vadot				pins = "gpio10", "gpio11";
1739f126890aSEmmanuel Vadot				function = "blsp_i2c3";
1740f126890aSEmmanuel Vadot				drive-strength = <2>;
1741f126890aSEmmanuel Vadot				bias-pull-up;
1742f126890aSEmmanuel Vadot			};
1743f126890aSEmmanuel Vadot
1744f126890aSEmmanuel Vadot			/* BLSP1_I2C4 info is missing */
1745f126890aSEmmanuel Vadot
1746f126890aSEmmanuel Vadot			/* BLSP1_I2C5 info is missing */
1747f126890aSEmmanuel Vadot
1748f126890aSEmmanuel Vadot			blsp1_i2c6_default: blsp1-i2c6-default-state {
1749f126890aSEmmanuel Vadot				pins = "gpio29", "gpio30";
1750f126890aSEmmanuel Vadot				function = "blsp_i2c6";
1751f126890aSEmmanuel Vadot				drive-strength = <2>;
1752f126890aSEmmanuel Vadot				bias-disable;
1753f126890aSEmmanuel Vadot			};
1754f126890aSEmmanuel Vadot
1755f126890aSEmmanuel Vadot			blsp1_i2c6_sleep: blsp1-i2c6-sleep-state {
1756f126890aSEmmanuel Vadot				pins = "gpio29", "gpio30";
1757f126890aSEmmanuel Vadot				function = "blsp_i2c6";
1758f126890aSEmmanuel Vadot				drive-strength = <2>;
1759f126890aSEmmanuel Vadot				bias-pull-up;
1760f126890aSEmmanuel Vadot			};
1761f126890aSEmmanuel Vadot			/* 6 interfaces per QUP, BLSP2 indexes are numbered (n)+6 */
1762f126890aSEmmanuel Vadot
1763f126890aSEmmanuel Vadot			/* BLSP2_I2C1 info is missing */
1764f126890aSEmmanuel Vadot
1765f126890aSEmmanuel Vadot			blsp2_i2c2_default: blsp2-i2c2-default-state {
1766f126890aSEmmanuel Vadot				pins = "gpio47", "gpio48";
1767f126890aSEmmanuel Vadot				function = "blsp_i2c8";
1768f126890aSEmmanuel Vadot				drive-strength = <2>;
1769f126890aSEmmanuel Vadot				bias-disable;
1770f126890aSEmmanuel Vadot			};
1771f126890aSEmmanuel Vadot
1772f126890aSEmmanuel Vadot			blsp2_i2c2_sleep: blsp2-i2c2-sleep-state {
1773f126890aSEmmanuel Vadot				pins = "gpio47", "gpio48";
1774f126890aSEmmanuel Vadot				function = "blsp_i2c8";
1775f126890aSEmmanuel Vadot				drive-strength = <2>;
1776f126890aSEmmanuel Vadot				bias-pull-up;
1777f126890aSEmmanuel Vadot			};
1778f126890aSEmmanuel Vadot
1779f126890aSEmmanuel Vadot			/* BLSP2_I2C3 info is missing */
1780f126890aSEmmanuel Vadot
1781f126890aSEmmanuel Vadot			/* BLSP2_I2C4 info is missing */
1782f126890aSEmmanuel Vadot
1783f126890aSEmmanuel Vadot			blsp2_i2c5_default: blsp2-i2c5-default-state {
1784f126890aSEmmanuel Vadot				pins = "gpio83", "gpio84";
1785f126890aSEmmanuel Vadot				function = "blsp_i2c11";
1786f126890aSEmmanuel Vadot				drive-strength = <2>;
1787f126890aSEmmanuel Vadot				bias-disable;
1788f126890aSEmmanuel Vadot			};
1789f126890aSEmmanuel Vadot
1790f126890aSEmmanuel Vadot			blsp2_i2c5_sleep: blsp2-i2c5-sleep-state {
1791f126890aSEmmanuel Vadot				pins = "gpio83", "gpio84";
1792f126890aSEmmanuel Vadot				function = "blsp_i2c11";
1793f126890aSEmmanuel Vadot				drive-strength = <2>;
1794f126890aSEmmanuel Vadot				bias-pull-up;
1795f126890aSEmmanuel Vadot			};
1796f126890aSEmmanuel Vadot
1797f126890aSEmmanuel Vadot			blsp2_i2c6_default: blsp2-i2c6-default-state {
1798f126890aSEmmanuel Vadot				pins = "gpio87", "gpio88";
1799f126890aSEmmanuel Vadot				function = "blsp_i2c12";
1800f126890aSEmmanuel Vadot				drive-strength = <2>;
1801f126890aSEmmanuel Vadot				bias-disable;
1802f126890aSEmmanuel Vadot			};
1803f126890aSEmmanuel Vadot
1804f126890aSEmmanuel Vadot			blsp2_i2c6_sleep: blsp2-i2c6-sleep-state {
1805f126890aSEmmanuel Vadot				pins = "gpio87", "gpio88";
1806f126890aSEmmanuel Vadot				function = "blsp_i2c12";
1807f126890aSEmmanuel Vadot				drive-strength = <2>;
1808f126890aSEmmanuel Vadot				bias-pull-up;
1809f126890aSEmmanuel Vadot			};
1810f126890aSEmmanuel Vadot
1811f126890aSEmmanuel Vadot			cci_default: cci-default-state {
1812f126890aSEmmanuel Vadot				cci_i2c0_default: cci-i2c0-default-pins {
1813f126890aSEmmanuel Vadot					pins = "gpio19", "gpio20";
1814f126890aSEmmanuel Vadot					function = "cci_i2c0";
1815f126890aSEmmanuel Vadot					drive-strength = <2>;
1816f126890aSEmmanuel Vadot					bias-disable;
1817f126890aSEmmanuel Vadot				};
1818f126890aSEmmanuel Vadot
1819f126890aSEmmanuel Vadot				cci_i2c1_default: cci-i2c1-default-pins {
1820f126890aSEmmanuel Vadot					pins = "gpio21", "gpio22";
1821f126890aSEmmanuel Vadot					function = "cci_i2c1";
1822f126890aSEmmanuel Vadot					drive-strength = <2>;
1823f126890aSEmmanuel Vadot					bias-disable;
1824f126890aSEmmanuel Vadot				};
1825f126890aSEmmanuel Vadot			};
1826f126890aSEmmanuel Vadot
1827f126890aSEmmanuel Vadot			cci_sleep: cci-sleep-state {
1828f126890aSEmmanuel Vadot				cci_i2c0_sleep: cci-i2c0-sleep-pins {
1829f126890aSEmmanuel Vadot					pins = "gpio19", "gpio20";
1830f126890aSEmmanuel Vadot					function = "gpio";
1831f126890aSEmmanuel Vadot					drive-strength = <2>;
1832f126890aSEmmanuel Vadot					bias-disable;
1833f126890aSEmmanuel Vadot				};
1834f126890aSEmmanuel Vadot
1835f126890aSEmmanuel Vadot				cci_i2c1_sleep: cci-i2c1-sleep-pins {
1836f126890aSEmmanuel Vadot					pins = "gpio21", "gpio22";
1837f126890aSEmmanuel Vadot					function = "gpio";
1838f126890aSEmmanuel Vadot					drive-strength = <2>;
1839f126890aSEmmanuel Vadot					bias-disable;
1840f126890aSEmmanuel Vadot				};
1841f126890aSEmmanuel Vadot			};
1842f126890aSEmmanuel Vadot
1843f126890aSEmmanuel Vadot			spi8_default: spi8_default-state {
1844f126890aSEmmanuel Vadot				mosi-pins {
1845f126890aSEmmanuel Vadot					pins = "gpio45";
1846f126890aSEmmanuel Vadot					function = "blsp_spi8";
1847f126890aSEmmanuel Vadot				};
1848f126890aSEmmanuel Vadot				miso-pins {
1849f126890aSEmmanuel Vadot					pins = "gpio46";
1850f126890aSEmmanuel Vadot					function = "blsp_spi8";
1851f126890aSEmmanuel Vadot				};
1852f126890aSEmmanuel Vadot				cs-pins {
1853f126890aSEmmanuel Vadot					pins = "gpio47";
1854f126890aSEmmanuel Vadot					function = "blsp_spi8";
1855f126890aSEmmanuel Vadot				};
1856f126890aSEmmanuel Vadot				clk-pins {
1857f126890aSEmmanuel Vadot					pins = "gpio48";
1858f126890aSEmmanuel Vadot					function = "blsp_spi8";
1859f126890aSEmmanuel Vadot				};
1860f126890aSEmmanuel Vadot			};
1861f126890aSEmmanuel Vadot		};
1862f126890aSEmmanuel Vadot
1863f126890aSEmmanuel Vadot		mmcc: clock-controller@fd8c0000 {
1864f126890aSEmmanuel Vadot			compatible = "qcom,mmcc-msm8974";
1865f126890aSEmmanuel Vadot			#clock-cells = <1>;
1866f126890aSEmmanuel Vadot			#reset-cells = <1>;
1867f126890aSEmmanuel Vadot			#power-domain-cells = <1>;
1868f126890aSEmmanuel Vadot			reg = <0xfd8c0000 0x6000>;
1869f126890aSEmmanuel Vadot			clocks = <&xo_board>,
1870f126890aSEmmanuel Vadot				 <&gcc GCC_MMSS_GPLL0_CLK_SRC>,
1871f126890aSEmmanuel Vadot				 <&gcc GPLL0_VOTE>,
1872f126890aSEmmanuel Vadot				 <&gcc GPLL1_VOTE>,
1873f126890aSEmmanuel Vadot				 <&rpmcc RPM_SMD_GFX3D_CLK_SRC>,
1874f126890aSEmmanuel Vadot				 <&mdss_dsi0_phy 1>,
1875f126890aSEmmanuel Vadot				 <&mdss_dsi0_phy 0>,
1876f126890aSEmmanuel Vadot				 <&mdss_dsi1_phy 1>,
1877f126890aSEmmanuel Vadot				 <&mdss_dsi1_phy 0>,
1878f126890aSEmmanuel Vadot				 <0>,
1879f126890aSEmmanuel Vadot				 <0>,
1880f126890aSEmmanuel Vadot				 <0>;
1881f126890aSEmmanuel Vadot			clock-names = "xo",
1882f126890aSEmmanuel Vadot				      "mmss_gpll0_vote",
1883f126890aSEmmanuel Vadot				      "gpll0_vote",
1884f126890aSEmmanuel Vadot				      "gpll1_vote",
1885f126890aSEmmanuel Vadot				      "gfx3d_clk_src",
1886f126890aSEmmanuel Vadot				      "dsi0pll",
1887f126890aSEmmanuel Vadot				      "dsi0pllbyte",
1888f126890aSEmmanuel Vadot				      "dsi1pll",
1889f126890aSEmmanuel Vadot				      "dsi1pllbyte",
1890f126890aSEmmanuel Vadot				      "hdmipll",
1891f126890aSEmmanuel Vadot				      "edp_link_clk",
1892f126890aSEmmanuel Vadot				      "edp_vco_div";
1893f126890aSEmmanuel Vadot		};
1894f126890aSEmmanuel Vadot
1895f126890aSEmmanuel Vadot		mdss: display-subsystem@fd900000 {
1896f126890aSEmmanuel Vadot			compatible = "qcom,mdss";
1897f126890aSEmmanuel Vadot			reg = <0xfd900000 0x100>, <0xfd924000 0x1000>;
1898f126890aSEmmanuel Vadot			reg-names = "mdss_phys", "vbif_phys";
1899f126890aSEmmanuel Vadot
1900f126890aSEmmanuel Vadot			power-domains = <&mmcc MDSS_GDSC>;
1901f126890aSEmmanuel Vadot
1902f126890aSEmmanuel Vadot			clocks = <&mmcc MDSS_AHB_CLK>,
1903f126890aSEmmanuel Vadot				 <&mmcc MDSS_AXI_CLK>,
1904f126890aSEmmanuel Vadot				 <&mmcc MDSS_VSYNC_CLK>;
1905f126890aSEmmanuel Vadot			clock-names = "iface", "bus", "vsync";
1906f126890aSEmmanuel Vadot
1907f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
1908f126890aSEmmanuel Vadot
1909f126890aSEmmanuel Vadot			interrupt-controller;
1910f126890aSEmmanuel Vadot			#interrupt-cells = <1>;
1911f126890aSEmmanuel Vadot
1912f126890aSEmmanuel Vadot			status = "disabled";
1913f126890aSEmmanuel Vadot
1914f126890aSEmmanuel Vadot			#address-cells = <1>;
1915f126890aSEmmanuel Vadot			#size-cells = <1>;
1916f126890aSEmmanuel Vadot			ranges;
1917f126890aSEmmanuel Vadot
1918f126890aSEmmanuel Vadot			mdp: display-controller@fd900000 {
1919f126890aSEmmanuel Vadot				compatible = "qcom,msm8974-mdp5", "qcom,mdp5";
1920f126890aSEmmanuel Vadot				reg = <0xfd900100 0x22000>;
1921f126890aSEmmanuel Vadot				reg-names = "mdp_phys";
1922f126890aSEmmanuel Vadot
1923f126890aSEmmanuel Vadot				interrupt-parent = <&mdss>;
1924f126890aSEmmanuel Vadot				interrupts = <0>;
1925f126890aSEmmanuel Vadot
1926f126890aSEmmanuel Vadot				clocks = <&mmcc MDSS_AHB_CLK>,
1927f126890aSEmmanuel Vadot					 <&mmcc MDSS_AXI_CLK>,
1928f126890aSEmmanuel Vadot					 <&mmcc MDSS_MDP_CLK>,
1929f126890aSEmmanuel Vadot					 <&mmcc MDSS_VSYNC_CLK>;
1930f126890aSEmmanuel Vadot				clock-names = "iface", "bus", "core", "vsync";
1931f126890aSEmmanuel Vadot
1932f126890aSEmmanuel Vadot				interconnects = <&mmssnoc MNOC_MAS_MDP_PORT0 &bimc BIMC_SLV_EBI_CH0>;
1933f126890aSEmmanuel Vadot				interconnect-names = "mdp0-mem";
1934f126890aSEmmanuel Vadot
1935f126890aSEmmanuel Vadot				ports {
1936f126890aSEmmanuel Vadot					#address-cells = <1>;
1937f126890aSEmmanuel Vadot					#size-cells = <0>;
1938f126890aSEmmanuel Vadot
1939f126890aSEmmanuel Vadot					port@0 {
1940f126890aSEmmanuel Vadot						reg = <0>;
1941f126890aSEmmanuel Vadot						mdp5_intf1_out: endpoint {
1942f126890aSEmmanuel Vadot							remote-endpoint = <&mdss_dsi0_in>;
1943f126890aSEmmanuel Vadot						};
1944f126890aSEmmanuel Vadot					};
1945f126890aSEmmanuel Vadot
1946f126890aSEmmanuel Vadot					port@1 {
1947f126890aSEmmanuel Vadot						reg = <1>;
1948f126890aSEmmanuel Vadot						mdp5_intf2_out: endpoint {
1949f126890aSEmmanuel Vadot							remote-endpoint = <&mdss_dsi1_in>;
1950f126890aSEmmanuel Vadot						};
1951f126890aSEmmanuel Vadot					};
1952f126890aSEmmanuel Vadot				};
1953f126890aSEmmanuel Vadot			};
1954f126890aSEmmanuel Vadot
1955f126890aSEmmanuel Vadot			mdss_dsi0: dsi@fd922800 {
1956f126890aSEmmanuel Vadot				compatible = "qcom,msm8974-dsi-ctrl",
1957f126890aSEmmanuel Vadot					     "qcom,mdss-dsi-ctrl";
1958f126890aSEmmanuel Vadot				reg = <0xfd922800 0x1f8>;
1959f126890aSEmmanuel Vadot				reg-names = "dsi_ctrl";
1960f126890aSEmmanuel Vadot
1961f126890aSEmmanuel Vadot				interrupt-parent = <&mdss>;
1962f126890aSEmmanuel Vadot				interrupts = <4>;
1963f126890aSEmmanuel Vadot
1964f126890aSEmmanuel Vadot				assigned-clocks = <&mmcc BYTE0_CLK_SRC>, <&mmcc PCLK0_CLK_SRC>;
1965f126890aSEmmanuel Vadot				assigned-clock-parents = <&mdss_dsi0_phy 0>, <&mdss_dsi0_phy 1>;
1966f126890aSEmmanuel Vadot
1967f126890aSEmmanuel Vadot				clocks = <&mmcc MDSS_MDP_CLK>,
1968f126890aSEmmanuel Vadot					 <&mmcc MDSS_AHB_CLK>,
1969f126890aSEmmanuel Vadot					 <&mmcc MDSS_AXI_CLK>,
1970f126890aSEmmanuel Vadot					 <&mmcc MDSS_BYTE0_CLK>,
1971f126890aSEmmanuel Vadot					 <&mmcc MDSS_PCLK0_CLK>,
1972f126890aSEmmanuel Vadot					 <&mmcc MDSS_ESC0_CLK>,
1973f126890aSEmmanuel Vadot					 <&mmcc MMSS_MISC_AHB_CLK>;
1974f126890aSEmmanuel Vadot				clock-names = "mdp_core",
1975f126890aSEmmanuel Vadot					      "iface",
1976f126890aSEmmanuel Vadot					      "bus",
1977f126890aSEmmanuel Vadot					      "byte",
1978f126890aSEmmanuel Vadot					      "pixel",
1979f126890aSEmmanuel Vadot					      "core",
1980f126890aSEmmanuel Vadot					      "core_mmss";
1981f126890aSEmmanuel Vadot
1982f126890aSEmmanuel Vadot				phys = <&mdss_dsi0_phy>;
1983f126890aSEmmanuel Vadot
1984f126890aSEmmanuel Vadot				status = "disabled";
1985f126890aSEmmanuel Vadot
1986f126890aSEmmanuel Vadot				#address-cells = <1>;
1987f126890aSEmmanuel Vadot				#size-cells = <0>;
1988f126890aSEmmanuel Vadot
1989f126890aSEmmanuel Vadot				ports {
1990f126890aSEmmanuel Vadot					#address-cells = <1>;
1991f126890aSEmmanuel Vadot					#size-cells = <0>;
1992f126890aSEmmanuel Vadot
1993f126890aSEmmanuel Vadot					port@0 {
1994f126890aSEmmanuel Vadot						reg = <0>;
1995f126890aSEmmanuel Vadot						mdss_dsi0_in: endpoint {
1996f126890aSEmmanuel Vadot							remote-endpoint = <&mdp5_intf1_out>;
1997f126890aSEmmanuel Vadot						};
1998f126890aSEmmanuel Vadot					};
1999f126890aSEmmanuel Vadot
2000f126890aSEmmanuel Vadot					port@1 {
2001f126890aSEmmanuel Vadot						reg = <1>;
2002f126890aSEmmanuel Vadot						mdss_dsi0_out: endpoint {
2003f126890aSEmmanuel Vadot						};
2004f126890aSEmmanuel Vadot					};
2005f126890aSEmmanuel Vadot				};
2006f126890aSEmmanuel Vadot			};
2007f126890aSEmmanuel Vadot
2008f126890aSEmmanuel Vadot			mdss_dsi0_phy: phy@fd922a00 {
2009f126890aSEmmanuel Vadot				compatible = "qcom,dsi-phy-28nm-hpm";
2010f126890aSEmmanuel Vadot				reg = <0xfd922a00 0xd4>,
2011f126890aSEmmanuel Vadot				      <0xfd922b00 0x280>,
2012f126890aSEmmanuel Vadot				      <0xfd922d80 0x30>;
2013f126890aSEmmanuel Vadot				reg-names = "dsi_pll",
2014f126890aSEmmanuel Vadot					    "dsi_phy",
2015f126890aSEmmanuel Vadot					    "dsi_phy_regulator";
2016f126890aSEmmanuel Vadot
2017f126890aSEmmanuel Vadot				#clock-cells = <1>;
2018f126890aSEmmanuel Vadot				#phy-cells = <0>;
2019f126890aSEmmanuel Vadot
2020f126890aSEmmanuel Vadot				clocks = <&mmcc MDSS_AHB_CLK>, <&xo_board>;
2021f126890aSEmmanuel Vadot				clock-names = "iface", "ref";
2022f126890aSEmmanuel Vadot
2023f126890aSEmmanuel Vadot				status = "disabled";
2024f126890aSEmmanuel Vadot			};
2025f126890aSEmmanuel Vadot
2026f126890aSEmmanuel Vadot			mdss_dsi1: dsi@fd922e00 {
2027f126890aSEmmanuel Vadot				compatible = "qcom,msm8974-dsi-ctrl",
2028f126890aSEmmanuel Vadot					     "qcom,mdss-dsi-ctrl";
2029f126890aSEmmanuel Vadot				reg = <0xfd922e00 0x1f8>;
2030f126890aSEmmanuel Vadot				reg-names = "dsi_ctrl";
2031f126890aSEmmanuel Vadot
2032f126890aSEmmanuel Vadot				interrupt-parent = <&mdss>;
2033f126890aSEmmanuel Vadot				interrupts = <4>;
2034f126890aSEmmanuel Vadot
2035f126890aSEmmanuel Vadot				assigned-clocks = <&mmcc BYTE1_CLK_SRC>, <&mmcc PCLK1_CLK_SRC>;
2036f126890aSEmmanuel Vadot				assigned-clock-parents = <&mdss_dsi1_phy 0>, <&mdss_dsi1_phy 1>;
2037f126890aSEmmanuel Vadot
2038f126890aSEmmanuel Vadot				clocks = <&mmcc MDSS_MDP_CLK>,
2039f126890aSEmmanuel Vadot					 <&mmcc MDSS_AHB_CLK>,
2040f126890aSEmmanuel Vadot					 <&mmcc MDSS_AXI_CLK>,
2041f126890aSEmmanuel Vadot					 <&mmcc MDSS_BYTE1_CLK>,
2042f126890aSEmmanuel Vadot					 <&mmcc MDSS_PCLK1_CLK>,
2043f126890aSEmmanuel Vadot					 <&mmcc MDSS_ESC1_CLK>,
2044f126890aSEmmanuel Vadot					 <&mmcc MMSS_MISC_AHB_CLK>;
2045f126890aSEmmanuel Vadot				clock-names = "mdp_core",
2046f126890aSEmmanuel Vadot					      "iface",
2047f126890aSEmmanuel Vadot					      "bus",
2048f126890aSEmmanuel Vadot					      "byte",
2049f126890aSEmmanuel Vadot					      "pixel",
2050f126890aSEmmanuel Vadot					      "core",
2051f126890aSEmmanuel Vadot					      "core_mmss";
2052f126890aSEmmanuel Vadot
2053f126890aSEmmanuel Vadot				phys = <&mdss_dsi1_phy>;
2054f126890aSEmmanuel Vadot
2055f126890aSEmmanuel Vadot				status = "disabled";
2056f126890aSEmmanuel Vadot
2057f126890aSEmmanuel Vadot				#address-cells = <1>;
2058f126890aSEmmanuel Vadot				#size-cells = <0>;
2059f126890aSEmmanuel Vadot
2060f126890aSEmmanuel Vadot				ports {
2061f126890aSEmmanuel Vadot					#address-cells = <1>;
2062f126890aSEmmanuel Vadot					#size-cells = <0>;
2063f126890aSEmmanuel Vadot
2064f126890aSEmmanuel Vadot					port@0 {
2065f126890aSEmmanuel Vadot						reg = <0>;
2066f126890aSEmmanuel Vadot						mdss_dsi1_in: endpoint {
2067f126890aSEmmanuel Vadot							remote-endpoint = <&mdp5_intf2_out>;
2068f126890aSEmmanuel Vadot						};
2069f126890aSEmmanuel Vadot					};
2070f126890aSEmmanuel Vadot
2071f126890aSEmmanuel Vadot					port@1 {
2072f126890aSEmmanuel Vadot						reg = <1>;
2073f126890aSEmmanuel Vadot						mdss_dsi1_out: endpoint {
2074f126890aSEmmanuel Vadot						};
2075f126890aSEmmanuel Vadot					};
2076f126890aSEmmanuel Vadot				};
2077f126890aSEmmanuel Vadot			};
2078f126890aSEmmanuel Vadot
2079f126890aSEmmanuel Vadot			mdss_dsi1_phy: phy@fd923000 {
2080f126890aSEmmanuel Vadot				compatible = "qcom,dsi-phy-28nm-hpm";
2081f126890aSEmmanuel Vadot				reg = <0xfd923000 0xd4>,
2082f126890aSEmmanuel Vadot				      <0xfd923100 0x280>,
2083f126890aSEmmanuel Vadot				      <0xfd923380 0x30>;
2084f126890aSEmmanuel Vadot				reg-names = "dsi_pll",
2085f126890aSEmmanuel Vadot					    "dsi_phy",
2086f126890aSEmmanuel Vadot					    "dsi_phy_regulator";
2087f126890aSEmmanuel Vadot
2088f126890aSEmmanuel Vadot				#clock-cells = <1>;
2089f126890aSEmmanuel Vadot				#phy-cells = <0>;
2090f126890aSEmmanuel Vadot
2091f126890aSEmmanuel Vadot				clocks = <&mmcc MDSS_AHB_CLK>, <&xo_board>;
2092f126890aSEmmanuel Vadot				clock-names = "iface", "ref";
2093f126890aSEmmanuel Vadot
2094f126890aSEmmanuel Vadot				status = "disabled";
2095f126890aSEmmanuel Vadot			};
2096f126890aSEmmanuel Vadot		};
2097f126890aSEmmanuel Vadot
2098f126890aSEmmanuel Vadot		cci: cci@fda0c000 {
2099f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-cci";
2100f126890aSEmmanuel Vadot			#address-cells = <1>;
2101f126890aSEmmanuel Vadot			#size-cells = <0>;
2102f126890aSEmmanuel Vadot			reg = <0xfda0c000 0x1000>;
2103f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 50 IRQ_TYPE_EDGE_RISING>;
2104f126890aSEmmanuel Vadot			clocks = <&mmcc CAMSS_TOP_AHB_CLK>,
2105f126890aSEmmanuel Vadot				 <&mmcc CAMSS_CCI_CCI_AHB_CLK>,
2106f126890aSEmmanuel Vadot				 <&mmcc CAMSS_CCI_CCI_CLK>;
2107f126890aSEmmanuel Vadot			clock-names = "camss_top_ahb",
2108f126890aSEmmanuel Vadot				      "cci_ahb",
2109f126890aSEmmanuel Vadot				      "cci";
2110f126890aSEmmanuel Vadot
2111f126890aSEmmanuel Vadot			pinctrl-names = "default", "sleep";
2112f126890aSEmmanuel Vadot			pinctrl-0 = <&cci_default>;
2113f126890aSEmmanuel Vadot			pinctrl-1 = <&cci_sleep>;
2114f126890aSEmmanuel Vadot
2115f126890aSEmmanuel Vadot			status = "disabled";
2116f126890aSEmmanuel Vadot
2117f126890aSEmmanuel Vadot			cci_i2c0: i2c-bus@0 {
2118f126890aSEmmanuel Vadot				reg = <0>;
2119f126890aSEmmanuel Vadot				clock-frequency = <100000>;
2120f126890aSEmmanuel Vadot				#address-cells = <1>;
2121f126890aSEmmanuel Vadot				#size-cells = <0>;
2122f126890aSEmmanuel Vadot			};
2123f126890aSEmmanuel Vadot
2124f126890aSEmmanuel Vadot			cci_i2c1: i2c-bus@1 {
2125f126890aSEmmanuel Vadot				reg = <1>;
2126f126890aSEmmanuel Vadot				clock-frequency = <100000>;
2127f126890aSEmmanuel Vadot				#address-cells = <1>;
2128f126890aSEmmanuel Vadot				#size-cells = <0>;
2129f126890aSEmmanuel Vadot			};
2130f126890aSEmmanuel Vadot		};
2131f126890aSEmmanuel Vadot
21320e8011faSEmmanuel Vadot		gpu: gpu@fdb00000 {
2133f126890aSEmmanuel Vadot			compatible = "qcom,adreno-330.1", "qcom,adreno";
2134f126890aSEmmanuel Vadot			reg = <0xfdb00000 0x10000>;
2135f126890aSEmmanuel Vadot			reg-names = "kgsl_3d0_reg_memory";
2136f126890aSEmmanuel Vadot
2137f126890aSEmmanuel Vadot			interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
2138f126890aSEmmanuel Vadot			interrupt-names = "kgsl_3d0_irq";
2139f126890aSEmmanuel Vadot
2140f126890aSEmmanuel Vadot			clocks = <&mmcc OXILI_GFX3D_CLK>,
2141f126890aSEmmanuel Vadot				 <&mmcc OXILICX_AHB_CLK>,
2142f126890aSEmmanuel Vadot				 <&mmcc OXILICX_AXI_CLK>;
2143f126890aSEmmanuel Vadot			clock-names = "core", "iface", "mem_iface";
2144f126890aSEmmanuel Vadot
2145f126890aSEmmanuel Vadot			sram = <&gmu_sram>;
2146f126890aSEmmanuel Vadot			power-domains = <&mmcc OXILICX_GDSC>;
2147f126890aSEmmanuel Vadot			operating-points-v2 = <&gpu_opp_table>;
2148f126890aSEmmanuel Vadot
2149f126890aSEmmanuel Vadot			interconnects = <&mmssnoc MNOC_MAS_GRAPHICS_3D &bimc BIMC_SLV_EBI_CH0>,
2150f126890aSEmmanuel Vadot					<&ocmemnoc OCMEM_VNOC_MAS_GFX3D &ocmemnoc OCMEM_SLV_OCMEM>;
2151f126890aSEmmanuel Vadot			interconnect-names = "gfx-mem", "ocmem";
2152f126890aSEmmanuel Vadot
2153f126890aSEmmanuel Vadot			// iommus = <&gpu_iommu 0>;
2154f126890aSEmmanuel Vadot
2155f126890aSEmmanuel Vadot			status = "disabled";
2156f126890aSEmmanuel Vadot
2157f126890aSEmmanuel Vadot			gpu_opp_table: opp-table {
2158f126890aSEmmanuel Vadot				compatible = "operating-points-v2";
2159f126890aSEmmanuel Vadot
2160f126890aSEmmanuel Vadot				opp-320000000 {
2161f126890aSEmmanuel Vadot					opp-hz = /bits/ 64 <320000000>;
2162f126890aSEmmanuel Vadot				};
2163f126890aSEmmanuel Vadot
2164f126890aSEmmanuel Vadot				opp-200000000 {
2165f126890aSEmmanuel Vadot					opp-hz = /bits/ 64 <200000000>;
2166f126890aSEmmanuel Vadot				};
2167f126890aSEmmanuel Vadot
2168f126890aSEmmanuel Vadot				opp-27000000 {
2169f126890aSEmmanuel Vadot					opp-hz = /bits/ 64 <27000000>;
2170f126890aSEmmanuel Vadot				};
2171f126890aSEmmanuel Vadot			};
2172f126890aSEmmanuel Vadot		};
2173f126890aSEmmanuel Vadot
2174f126890aSEmmanuel Vadot		sram@fdd00000 {
2175f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-ocmem";
2176f126890aSEmmanuel Vadot			reg = <0xfdd00000 0x2000>,
2177f126890aSEmmanuel Vadot			      <0xfec00000 0x180000>;
2178f126890aSEmmanuel Vadot			reg-names = "ctrl", "mem";
2179f126890aSEmmanuel Vadot			ranges = <0 0xfec00000 0x180000>;
2180f126890aSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_OCMEMGX_CLK>,
2181f126890aSEmmanuel Vadot				 <&mmcc OCMEMCX_OCMEMNOC_CLK>;
2182f126890aSEmmanuel Vadot			clock-names = "core", "iface";
2183f126890aSEmmanuel Vadot
2184f126890aSEmmanuel Vadot			#address-cells = <1>;
2185f126890aSEmmanuel Vadot			#size-cells = <1>;
2186f126890aSEmmanuel Vadot
2187f126890aSEmmanuel Vadot			gmu_sram: gmu-sram@0 {
2188f126890aSEmmanuel Vadot				reg = <0x0 0x100000>;
2189f126890aSEmmanuel Vadot			};
2190f126890aSEmmanuel Vadot		};
2191f126890aSEmmanuel Vadot
2192f126890aSEmmanuel Vadot		remoteproc_adsp: remoteproc@fe200000 {
2193f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-adsp-pil";
2194f126890aSEmmanuel Vadot			reg = <0xfe200000 0x100>;
2195f126890aSEmmanuel Vadot
2196f126890aSEmmanuel Vadot			interrupts-extended = <&intc GIC_SPI 162 IRQ_TYPE_EDGE_RISING>,
2197f126890aSEmmanuel Vadot					       <&adsp_smp2p_in 0 IRQ_TYPE_EDGE_RISING>,
2198f126890aSEmmanuel Vadot					       <&adsp_smp2p_in 1 IRQ_TYPE_EDGE_RISING>,
2199f126890aSEmmanuel Vadot					       <&adsp_smp2p_in 2 IRQ_TYPE_EDGE_RISING>,
2200f126890aSEmmanuel Vadot					       <&adsp_smp2p_in 3 IRQ_TYPE_EDGE_RISING>;
2201f126890aSEmmanuel Vadot			interrupt-names = "wdog", "fatal", "ready", "handover", "stop-ack";
2202f126890aSEmmanuel Vadot
2203f126890aSEmmanuel Vadot			clocks = <&xo_board>;
2204f126890aSEmmanuel Vadot			clock-names = "xo";
2205f126890aSEmmanuel Vadot
2206f126890aSEmmanuel Vadot			memory-region = <&adsp_region>;
2207f126890aSEmmanuel Vadot
2208f126890aSEmmanuel Vadot			qcom,smem-states = <&adsp_smp2p_out 0>;
2209f126890aSEmmanuel Vadot			qcom,smem-state-names = "stop";
2210f126890aSEmmanuel Vadot
2211f126890aSEmmanuel Vadot			status = "disabled";
2212f126890aSEmmanuel Vadot
2213f126890aSEmmanuel Vadot			smd-edge {
2214f126890aSEmmanuel Vadot				interrupts = <GIC_SPI 156 IRQ_TYPE_EDGE_RISING>;
2215f126890aSEmmanuel Vadot
22160e8011faSEmmanuel Vadot				mboxes = <&apcs 8>;
2217f126890aSEmmanuel Vadot				qcom,smd-edge = <1>;
2218f126890aSEmmanuel Vadot				label = "lpass";
2219f126890aSEmmanuel Vadot			};
2220f126890aSEmmanuel Vadot		};
2221f126890aSEmmanuel Vadot
2222f126890aSEmmanuel Vadot		imem: sram@fe805000 {
2223f126890aSEmmanuel Vadot			compatible = "qcom,msm8974-imem", "syscon", "simple-mfd";
2224f126890aSEmmanuel Vadot			reg = <0xfe805000 0x1000>;
2225f126890aSEmmanuel Vadot
2226f126890aSEmmanuel Vadot			reboot-mode {
2227f126890aSEmmanuel Vadot				compatible = "syscon-reboot-mode";
2228f126890aSEmmanuel Vadot				offset = <0x65c>;
2229f126890aSEmmanuel Vadot			};
2230f126890aSEmmanuel Vadot		};
2231f126890aSEmmanuel Vadot	};
2232f126890aSEmmanuel Vadot
2233f126890aSEmmanuel Vadot	thermal-zones {
2234f126890aSEmmanuel Vadot		cpu0-thermal {
2235f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2236f126890aSEmmanuel Vadot			polling-delay = <1000>;
2237f126890aSEmmanuel Vadot
2238f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 5>;
2239f126890aSEmmanuel Vadot
2240f126890aSEmmanuel Vadot			trips {
2241f126890aSEmmanuel Vadot				cpu_alert0: trip0 {
2242f126890aSEmmanuel Vadot					temperature = <75000>;
2243f126890aSEmmanuel Vadot					hysteresis = <2000>;
2244f126890aSEmmanuel Vadot					type = "passive";
2245f126890aSEmmanuel Vadot				};
2246f126890aSEmmanuel Vadot				cpu_crit0: trip1 {
2247f126890aSEmmanuel Vadot					temperature = <110000>;
2248f126890aSEmmanuel Vadot					hysteresis = <2000>;
2249f126890aSEmmanuel Vadot					type = "critical";
2250f126890aSEmmanuel Vadot				};
2251f126890aSEmmanuel Vadot			};
2252f126890aSEmmanuel Vadot		};
2253f126890aSEmmanuel Vadot
2254f126890aSEmmanuel Vadot		cpu1-thermal {
2255f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2256f126890aSEmmanuel Vadot			polling-delay = <1000>;
2257f126890aSEmmanuel Vadot
2258f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 6>;
2259f126890aSEmmanuel Vadot
2260f126890aSEmmanuel Vadot			trips {
2261f126890aSEmmanuel Vadot				cpu_alert1: trip0 {
2262f126890aSEmmanuel Vadot					temperature = <75000>;
2263f126890aSEmmanuel Vadot					hysteresis = <2000>;
2264f126890aSEmmanuel Vadot					type = "passive";
2265f126890aSEmmanuel Vadot				};
2266f126890aSEmmanuel Vadot				cpu_crit1: trip1 {
2267f126890aSEmmanuel Vadot					temperature = <110000>;
2268f126890aSEmmanuel Vadot					hysteresis = <2000>;
2269f126890aSEmmanuel Vadot					type = "critical";
2270f126890aSEmmanuel Vadot				};
2271f126890aSEmmanuel Vadot			};
2272f126890aSEmmanuel Vadot		};
2273f126890aSEmmanuel Vadot
2274f126890aSEmmanuel Vadot		cpu2-thermal {
2275f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2276f126890aSEmmanuel Vadot			polling-delay = <1000>;
2277f126890aSEmmanuel Vadot
2278f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 7>;
2279f126890aSEmmanuel Vadot
2280f126890aSEmmanuel Vadot			trips {
2281f126890aSEmmanuel Vadot				cpu_alert2: trip0 {
2282f126890aSEmmanuel Vadot					temperature = <75000>;
2283f126890aSEmmanuel Vadot					hysteresis = <2000>;
2284f126890aSEmmanuel Vadot					type = "passive";
2285f126890aSEmmanuel Vadot				};
2286f126890aSEmmanuel Vadot				cpu_crit2: trip1 {
2287f126890aSEmmanuel Vadot					temperature = <110000>;
2288f126890aSEmmanuel Vadot					hysteresis = <2000>;
2289f126890aSEmmanuel Vadot					type = "critical";
2290f126890aSEmmanuel Vadot				};
2291f126890aSEmmanuel Vadot			};
2292f126890aSEmmanuel Vadot		};
2293f126890aSEmmanuel Vadot
2294f126890aSEmmanuel Vadot		cpu3-thermal {
2295f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2296f126890aSEmmanuel Vadot			polling-delay = <1000>;
2297f126890aSEmmanuel Vadot
2298f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 8>;
2299f126890aSEmmanuel Vadot
2300f126890aSEmmanuel Vadot			trips {
2301f126890aSEmmanuel Vadot				cpu_alert3: trip0 {
2302f126890aSEmmanuel Vadot					temperature = <75000>;
2303f126890aSEmmanuel Vadot					hysteresis = <2000>;
2304f126890aSEmmanuel Vadot					type = "passive";
2305f126890aSEmmanuel Vadot				};
2306f126890aSEmmanuel Vadot				cpu_crit3: trip1 {
2307f126890aSEmmanuel Vadot					temperature = <110000>;
2308f126890aSEmmanuel Vadot					hysteresis = <2000>;
2309f126890aSEmmanuel Vadot					type = "critical";
2310f126890aSEmmanuel Vadot				};
2311f126890aSEmmanuel Vadot			};
2312f126890aSEmmanuel Vadot		};
2313f126890aSEmmanuel Vadot
2314f126890aSEmmanuel Vadot		q6-dsp-thermal {
2315f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2316f126890aSEmmanuel Vadot			polling-delay = <1000>;
2317f126890aSEmmanuel Vadot
2318f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 1>;
2319f126890aSEmmanuel Vadot
2320f126890aSEmmanuel Vadot			trips {
2321f126890aSEmmanuel Vadot				q6_dsp_alert0: trip-point0 {
2322f126890aSEmmanuel Vadot					temperature = <90000>;
2323f126890aSEmmanuel Vadot					hysteresis = <2000>;
2324f126890aSEmmanuel Vadot					type = "hot";
2325f126890aSEmmanuel Vadot				};
2326f126890aSEmmanuel Vadot			};
2327f126890aSEmmanuel Vadot		};
2328f126890aSEmmanuel Vadot
2329f126890aSEmmanuel Vadot		modemtx-thermal {
2330f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2331f126890aSEmmanuel Vadot			polling-delay = <1000>;
2332f126890aSEmmanuel Vadot
2333f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 2>;
2334f126890aSEmmanuel Vadot
2335f126890aSEmmanuel Vadot			trips {
2336f126890aSEmmanuel Vadot				modemtx_alert0: trip-point0 {
2337f126890aSEmmanuel Vadot					temperature = <90000>;
2338f126890aSEmmanuel Vadot					hysteresis = <2000>;
2339f126890aSEmmanuel Vadot					type = "hot";
2340f126890aSEmmanuel Vadot				};
2341f126890aSEmmanuel Vadot			};
2342f126890aSEmmanuel Vadot		};
2343f126890aSEmmanuel Vadot
2344f126890aSEmmanuel Vadot		video-thermal {
2345f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2346f126890aSEmmanuel Vadot			polling-delay = <1000>;
2347f126890aSEmmanuel Vadot
2348f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 3>;
2349f126890aSEmmanuel Vadot
2350f126890aSEmmanuel Vadot			trips {
2351f126890aSEmmanuel Vadot				video_alert0: trip-point0 {
2352f126890aSEmmanuel Vadot					temperature = <95000>;
2353f126890aSEmmanuel Vadot					hysteresis = <2000>;
2354f126890aSEmmanuel Vadot					type = "hot";
2355f126890aSEmmanuel Vadot				};
2356f126890aSEmmanuel Vadot			};
2357f126890aSEmmanuel Vadot		};
2358f126890aSEmmanuel Vadot
2359f126890aSEmmanuel Vadot		wlan-thermal {
2360f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2361f126890aSEmmanuel Vadot			polling-delay = <1000>;
2362f126890aSEmmanuel Vadot
2363f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 4>;
2364f126890aSEmmanuel Vadot
2365f126890aSEmmanuel Vadot			trips {
2366f126890aSEmmanuel Vadot				wlan_alert0: trip-point0 {
2367f126890aSEmmanuel Vadot					temperature = <105000>;
2368f126890aSEmmanuel Vadot					hysteresis = <2000>;
2369f126890aSEmmanuel Vadot					type = "hot";
2370f126890aSEmmanuel Vadot				};
2371f126890aSEmmanuel Vadot			};
2372f126890aSEmmanuel Vadot		};
2373f126890aSEmmanuel Vadot
2374f126890aSEmmanuel Vadot		gpu-top-thermal {
2375f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2376f126890aSEmmanuel Vadot			polling-delay = <1000>;
2377f126890aSEmmanuel Vadot
2378f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 9>;
2379f126890aSEmmanuel Vadot
2380f126890aSEmmanuel Vadot			trips {
2381f126890aSEmmanuel Vadot				gpu1_alert0: trip-point0 {
2382f126890aSEmmanuel Vadot					temperature = <90000>;
2383f126890aSEmmanuel Vadot					hysteresis = <2000>;
2384f126890aSEmmanuel Vadot					type = "hot";
2385f126890aSEmmanuel Vadot				};
2386f126890aSEmmanuel Vadot			};
2387f126890aSEmmanuel Vadot		};
2388f126890aSEmmanuel Vadot
2389f126890aSEmmanuel Vadot		gpu-bottom-thermal {
2390f126890aSEmmanuel Vadot			polling-delay-passive = <250>;
2391f126890aSEmmanuel Vadot			polling-delay = <1000>;
2392f126890aSEmmanuel Vadot
2393f126890aSEmmanuel Vadot			thermal-sensors = <&tsens 10>;
2394f126890aSEmmanuel Vadot
2395f126890aSEmmanuel Vadot			trips {
2396f126890aSEmmanuel Vadot				gpu2_alert0: trip-point0 {
2397f126890aSEmmanuel Vadot					temperature = <90000>;
2398f126890aSEmmanuel Vadot					hysteresis = <2000>;
2399f126890aSEmmanuel Vadot					type = "hot";
2400f126890aSEmmanuel Vadot				};
2401f126890aSEmmanuel Vadot			};
2402f126890aSEmmanuel Vadot		};
2403f126890aSEmmanuel Vadot	};
2404f126890aSEmmanuel Vadot
2405f126890aSEmmanuel Vadot	timer {
2406f126890aSEmmanuel Vadot		compatible = "arm,armv7-timer";
240701950c46SEmmanuel Vadot		interrupts = <GIC_PPI 2 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
240801950c46SEmmanuel Vadot			     <GIC_PPI 3 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
240901950c46SEmmanuel Vadot			     <GIC_PPI 4 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>,
241001950c46SEmmanuel Vadot			     <GIC_PPI 1 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_LOW)>;
2411f126890aSEmmanuel Vadot		clock-frequency = <19200000>;
2412f126890aSEmmanuel Vadot	};
2413f126890aSEmmanuel Vadot};
2414