1c66ec88fSEmmanuel Vadot// SPDX-License-Identifier: GPL-2.0-only
2c66ec88fSEmmanuel Vadot/* Copyright (c) 2013-2016, The Linux Foundation. All rights reserved.
3c66ec88fSEmmanuel Vadot */
4c66ec88fSEmmanuel Vadot
5c66ec88fSEmmanuel Vadot#include <dt-bindings/interrupt-controller/arm-gic.h>
6c66ec88fSEmmanuel Vadot#include <dt-bindings/clock/qcom,gcc-msm8994.h>
7d5b0e70fSEmmanuel Vadot#include <dt-bindings/clock/qcom,mmcc-msm8994.h>
8d5b0e70fSEmmanuel Vadot#include <dt-bindings/clock/qcom,rpmcc.h>
95def4c47SEmmanuel Vadot#include <dt-bindings/power/qcom-rpmpd.h>
10c66ec88fSEmmanuel Vadot
11c66ec88fSEmmanuel Vadot/ {
12c66ec88fSEmmanuel Vadot	interrupt-parent = <&intc>;
13c66ec88fSEmmanuel Vadot
14c66ec88fSEmmanuel Vadot	#address-cells = <2>;
15c66ec88fSEmmanuel Vadot	#size-cells = <2>;
16c66ec88fSEmmanuel Vadot
17d5b0e70fSEmmanuel Vadot	aliases {
18d5b0e70fSEmmanuel Vadot		mmc1 = &sdhc1;
19d5b0e70fSEmmanuel Vadot		mmc2 = &sdhc2;
20d5b0e70fSEmmanuel Vadot	};
21d5b0e70fSEmmanuel Vadot
22c66ec88fSEmmanuel Vadot	chosen { };
23c66ec88fSEmmanuel Vadot
24c66ec88fSEmmanuel Vadot	clocks {
25354d7675SEmmanuel Vadot		xo_board: xo-board {
26c66ec88fSEmmanuel Vadot			compatible = "fixed-clock";
27c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
28c66ec88fSEmmanuel Vadot			clock-frequency = <19200000>;
29354d7675SEmmanuel Vadot			clock-output-names = "xo_board";
30c66ec88fSEmmanuel Vadot		};
31c66ec88fSEmmanuel Vadot
32354d7675SEmmanuel Vadot		sleep_clk: sleep-clk {
33c66ec88fSEmmanuel Vadot			compatible = "fixed-clock";
34c66ec88fSEmmanuel Vadot			#clock-cells = <0>;
35c66ec88fSEmmanuel Vadot			clock-frequency = <32768>;
36354d7675SEmmanuel Vadot			clock-output-names = "sleep_clk";
37c66ec88fSEmmanuel Vadot		};
38c66ec88fSEmmanuel Vadot	};
39c66ec88fSEmmanuel Vadot
40c66ec88fSEmmanuel Vadot	cpus {
41c66ec88fSEmmanuel Vadot		#address-cells = <2>;
42c66ec88fSEmmanuel Vadot		#size-cells = <0>;
43c66ec88fSEmmanuel Vadot
44c66ec88fSEmmanuel Vadot		CPU0: cpu@0 {
45c66ec88fSEmmanuel Vadot			device_type = "cpu";
46c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a53";
47c66ec88fSEmmanuel Vadot			reg = <0x0 0x0>;
48c66ec88fSEmmanuel Vadot			enable-method = "psci";
49c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_0>;
50c66ec88fSEmmanuel Vadot			L2_0: l2-cache {
51c66ec88fSEmmanuel Vadot				compatible = "cache";
52c66ec88fSEmmanuel Vadot				cache-level = <2>;
53c66ec88fSEmmanuel Vadot			};
54c66ec88fSEmmanuel Vadot		};
55c66ec88fSEmmanuel Vadot
56c66ec88fSEmmanuel Vadot		CPU1: cpu@1 {
57c66ec88fSEmmanuel Vadot			device_type = "cpu";
58c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a53";
59c66ec88fSEmmanuel Vadot			reg = <0x0 0x1>;
60c66ec88fSEmmanuel Vadot			enable-method = "psci";
61c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_0>;
62c66ec88fSEmmanuel Vadot		};
63c66ec88fSEmmanuel Vadot
64c66ec88fSEmmanuel Vadot		CPU2: cpu@2 {
65c66ec88fSEmmanuel Vadot			device_type = "cpu";
66c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a53";
67c66ec88fSEmmanuel Vadot			reg = <0x0 0x2>;
68c66ec88fSEmmanuel Vadot			enable-method = "psci";
69c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_0>;
70c66ec88fSEmmanuel Vadot		};
71c66ec88fSEmmanuel Vadot
72c66ec88fSEmmanuel Vadot		CPU3: cpu@3 {
73c66ec88fSEmmanuel Vadot			device_type = "cpu";
74c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a53";
75c66ec88fSEmmanuel Vadot			reg = <0x0 0x3>;
76c66ec88fSEmmanuel Vadot			enable-method = "psci";
77c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_0>;
78c66ec88fSEmmanuel Vadot		};
79c66ec88fSEmmanuel Vadot
80c66ec88fSEmmanuel Vadot		CPU4: cpu@100 {
81c66ec88fSEmmanuel Vadot			device_type = "cpu";
82c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a57";
83c66ec88fSEmmanuel Vadot			reg = <0x0 0x100>;
84c66ec88fSEmmanuel Vadot			enable-method = "psci";
85c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_1>;
86c66ec88fSEmmanuel Vadot			L2_1: l2-cache {
87c66ec88fSEmmanuel Vadot				compatible = "cache";
88c66ec88fSEmmanuel Vadot				cache-level = <2>;
89c66ec88fSEmmanuel Vadot			};
90c66ec88fSEmmanuel Vadot		};
91c66ec88fSEmmanuel Vadot
92c66ec88fSEmmanuel Vadot		CPU5: cpu@101 {
93c66ec88fSEmmanuel Vadot			device_type = "cpu";
94c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a57";
95c66ec88fSEmmanuel Vadot			reg = <0x0 0x101>;
96c66ec88fSEmmanuel Vadot			enable-method = "psci";
97c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_1>;
98c66ec88fSEmmanuel Vadot		};
99c66ec88fSEmmanuel Vadot
100c66ec88fSEmmanuel Vadot		CPU6: cpu@102 {
101c66ec88fSEmmanuel Vadot			device_type = "cpu";
102c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a57";
103d5b0e70fSEmmanuel Vadot			reg = <0x0 0x102>;
104c66ec88fSEmmanuel Vadot			enable-method = "psci";
105c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_1>;
106c66ec88fSEmmanuel Vadot		};
107c66ec88fSEmmanuel Vadot
108c66ec88fSEmmanuel Vadot		CPU7: cpu@103 {
109c66ec88fSEmmanuel Vadot			device_type = "cpu";
110c66ec88fSEmmanuel Vadot			compatible = "arm,cortex-a57";
111d5b0e70fSEmmanuel Vadot			reg = <0x0 0x103>;
112c66ec88fSEmmanuel Vadot			enable-method = "psci";
113c66ec88fSEmmanuel Vadot			next-level-cache = <&L2_1>;
114c66ec88fSEmmanuel Vadot		};
115c66ec88fSEmmanuel Vadot
116c66ec88fSEmmanuel Vadot		cpu-map {
117c66ec88fSEmmanuel Vadot			cluster0 {
118c66ec88fSEmmanuel Vadot				core0 {
119c66ec88fSEmmanuel Vadot					cpu = <&CPU0>;
120c66ec88fSEmmanuel Vadot				};
121c66ec88fSEmmanuel Vadot
122c66ec88fSEmmanuel Vadot				core1 {
123c66ec88fSEmmanuel Vadot					cpu = <&CPU1>;
124c66ec88fSEmmanuel Vadot				};
125c66ec88fSEmmanuel Vadot
126c66ec88fSEmmanuel Vadot				core2 {
127c66ec88fSEmmanuel Vadot					cpu = <&CPU2>;
128c66ec88fSEmmanuel Vadot				};
129c66ec88fSEmmanuel Vadot
130c66ec88fSEmmanuel Vadot				core3 {
131c66ec88fSEmmanuel Vadot					cpu = <&CPU3>;
132c66ec88fSEmmanuel Vadot				};
133c66ec88fSEmmanuel Vadot			};
134c66ec88fSEmmanuel Vadot
135c66ec88fSEmmanuel Vadot			cluster1 {
136c66ec88fSEmmanuel Vadot				core0 {
137c66ec88fSEmmanuel Vadot					cpu = <&CPU4>;
138c66ec88fSEmmanuel Vadot				};
139c66ec88fSEmmanuel Vadot
140c66ec88fSEmmanuel Vadot				core1 {
141c66ec88fSEmmanuel Vadot					cpu = <&CPU5>;
142c66ec88fSEmmanuel Vadot				};
143c66ec88fSEmmanuel Vadot
1445def4c47SEmmanuel Vadot				cpu6_map: core2 {
145c66ec88fSEmmanuel Vadot					cpu = <&CPU6>;
146c66ec88fSEmmanuel Vadot				};
147c66ec88fSEmmanuel Vadot
1485def4c47SEmmanuel Vadot				cpu7_map: core3 {
149c66ec88fSEmmanuel Vadot					cpu = <&CPU7>;
150c66ec88fSEmmanuel Vadot				};
151c66ec88fSEmmanuel Vadot			};
152c66ec88fSEmmanuel Vadot		};
153c66ec88fSEmmanuel Vadot	};
154c66ec88fSEmmanuel Vadot
155c66ec88fSEmmanuel Vadot	firmware {
156c66ec88fSEmmanuel Vadot		scm {
157c66ec88fSEmmanuel Vadot			compatible = "qcom,scm-msm8994", "qcom,scm";
158c66ec88fSEmmanuel Vadot		};
159c66ec88fSEmmanuel Vadot	};
160c66ec88fSEmmanuel Vadot
1612eb4d8dcSEmmanuel Vadot	memory@80000000 {
162c66ec88fSEmmanuel Vadot		device_type = "memory";
163c66ec88fSEmmanuel Vadot		/* We expect the bootloader to fill in the reg */
1642eb4d8dcSEmmanuel Vadot		reg = <0 0x80000000 0 0>;
165c66ec88fSEmmanuel Vadot	};
166c66ec88fSEmmanuel Vadot
1675def4c47SEmmanuel Vadot	tcsr_mutex: hwlock {
1685def4c47SEmmanuel Vadot		compatible = "qcom,tcsr-mutex";
1695def4c47SEmmanuel Vadot		syscon = <&tcsr_mutex_regs 0 0x80>;
1705def4c47SEmmanuel Vadot		#hwlock-cells = <1>;
1715def4c47SEmmanuel Vadot	};
1725def4c47SEmmanuel Vadot
173c66ec88fSEmmanuel Vadot	pmu {
174c66ec88fSEmmanuel Vadot		compatible = "arm,cortex-a53-pmu";
175c66ec88fSEmmanuel Vadot		interrupts = <GIC_PPI 7 (GIC_CPU_MASK_SIMPLE(4)| IRQ_TYPE_LEVEL_HIGH)>;
176c66ec88fSEmmanuel Vadot	};
177c66ec88fSEmmanuel Vadot
178c66ec88fSEmmanuel Vadot	psci {
179c66ec88fSEmmanuel Vadot		compatible = "arm,psci-0.2";
180c66ec88fSEmmanuel Vadot		method = "hvc";
181c66ec88fSEmmanuel Vadot	};
182c66ec88fSEmmanuel Vadot
183c66ec88fSEmmanuel Vadot	reserved-memory {
184c66ec88fSEmmanuel Vadot		#address-cells = <2>;
185c66ec88fSEmmanuel Vadot		#size-cells = <2>;
186c66ec88fSEmmanuel Vadot		ranges;
187c66ec88fSEmmanuel Vadot
1885def4c47SEmmanuel Vadot		dfps_data_mem: dfps_data_mem@3400000 {
1895def4c47SEmmanuel Vadot			reg = <0 0x03400000 0 0x1000>;
1905def4c47SEmmanuel Vadot			no-map;
1915def4c47SEmmanuel Vadot		};
1925def4c47SEmmanuel Vadot
193d5b0e70fSEmmanuel Vadot		cont_splash_mem: memory@3401000 {
194d5b0e70fSEmmanuel Vadot			reg = <0 0x03401000 0 0x2200000>;
1955def4c47SEmmanuel Vadot			no-map;
1965def4c47SEmmanuel Vadot		};
1975def4c47SEmmanuel Vadot
198c66ec88fSEmmanuel Vadot		smem_mem: smem_region@6a00000 {
1995def4c47SEmmanuel Vadot			reg = <0 0x06a00000 0 0x200000>;
2005def4c47SEmmanuel Vadot			no-map;
2015def4c47SEmmanuel Vadot		};
2025def4c47SEmmanuel Vadot
2035def4c47SEmmanuel Vadot		mpss_mem: memory@7000000 {
2045def4c47SEmmanuel Vadot			reg = <0 0x07000000 0 0x5a00000>;
2055def4c47SEmmanuel Vadot			no-map;
2065def4c47SEmmanuel Vadot		};
2075def4c47SEmmanuel Vadot
2085def4c47SEmmanuel Vadot		peripheral_region: memory@ca00000 {
2095def4c47SEmmanuel Vadot			reg = <0 0x0ca00000 0 0x1f00000>;
2105def4c47SEmmanuel Vadot			no-map;
2115def4c47SEmmanuel Vadot		};
2125def4c47SEmmanuel Vadot
2135def4c47SEmmanuel Vadot		rmtfs_mem: memory@c6400000 {
2145def4c47SEmmanuel Vadot			compatible = "qcom,rmtfs-mem";
2155def4c47SEmmanuel Vadot			reg = <0 0xc6400000 0 0x180000>;
2165def4c47SEmmanuel Vadot			no-map;
2175def4c47SEmmanuel Vadot
2185def4c47SEmmanuel Vadot			qcom,client-id = <1>;
2195def4c47SEmmanuel Vadot		};
2205def4c47SEmmanuel Vadot
2215def4c47SEmmanuel Vadot		mba_mem: memory@c6700000 {
2225def4c47SEmmanuel Vadot			reg = <0 0xc6700000 0 0x100000>;
2235def4c47SEmmanuel Vadot			no-map;
2245def4c47SEmmanuel Vadot		};
2255def4c47SEmmanuel Vadot
2265def4c47SEmmanuel Vadot		audio_mem: memory@c7000000 {
2275def4c47SEmmanuel Vadot			reg = <0 0xc7000000 0 0x800000>;
2285def4c47SEmmanuel Vadot			no-map;
2295def4c47SEmmanuel Vadot		};
2305def4c47SEmmanuel Vadot
2315def4c47SEmmanuel Vadot		adsp_mem: memory@c9400000 {
2325def4c47SEmmanuel Vadot			reg = <0 0xc9400000 0 0x3f00000>;
233c66ec88fSEmmanuel Vadot			no-map;
234c66ec88fSEmmanuel Vadot		};
235c66ec88fSEmmanuel Vadot	};
236c66ec88fSEmmanuel Vadot
237c66ec88fSEmmanuel Vadot	smd {
238c66ec88fSEmmanuel Vadot		compatible = "qcom,smd";
239c66ec88fSEmmanuel Vadot		rpm {
240c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 168 IRQ_TYPE_EDGE_RISING>;
241c66ec88fSEmmanuel Vadot			qcom,ipc = <&apcs 8 0>;
242c66ec88fSEmmanuel Vadot			qcom,smd-edge = <15>;
243c66ec88fSEmmanuel Vadot			qcom,remote-pid = <6>;
244c66ec88fSEmmanuel Vadot
245c66ec88fSEmmanuel Vadot			rpm_requests: rpm-requests {
246c66ec88fSEmmanuel Vadot				compatible = "qcom,rpm-msm8994";
247c66ec88fSEmmanuel Vadot				qcom,smd-channels = "rpm_requests";
248c66ec88fSEmmanuel Vadot
249c66ec88fSEmmanuel Vadot				rpmcc: rpmcc {
250d5b0e70fSEmmanuel Vadot					compatible = "qcom,rpmcc-msm8994", "qcom,rpmcc";
251c66ec88fSEmmanuel Vadot					#clock-cells = <1>;
252c66ec88fSEmmanuel Vadot				};
2535def4c47SEmmanuel Vadot
2545def4c47SEmmanuel Vadot				rpmpd: power-controller {
2555def4c47SEmmanuel Vadot					compatible = "qcom,msm8994-rpmpd";
2565def4c47SEmmanuel Vadot					#power-domain-cells = <1>;
2575def4c47SEmmanuel Vadot					operating-points-v2 = <&rpmpd_opp_table>;
2585def4c47SEmmanuel Vadot
2595def4c47SEmmanuel Vadot					rpmpd_opp_table: opp-table {
2605def4c47SEmmanuel Vadot						compatible = "operating-points-v2";
2615def4c47SEmmanuel Vadot
2625def4c47SEmmanuel Vadot						rpmpd_opp_ret: opp1 {
2635def4c47SEmmanuel Vadot							opp-level = <1>;
2645def4c47SEmmanuel Vadot						};
2655def4c47SEmmanuel Vadot						rpmpd_opp_svs_krait: opp2 {
2665def4c47SEmmanuel Vadot							opp-level = <2>;
2675def4c47SEmmanuel Vadot						};
2685def4c47SEmmanuel Vadot						rpmpd_opp_svs_soc: opp3 {
2695def4c47SEmmanuel Vadot							opp-level = <3>;
2705def4c47SEmmanuel Vadot						};
2715def4c47SEmmanuel Vadot						rpmpd_opp_nom: opp4 {
2725def4c47SEmmanuel Vadot							opp-level = <4>;
2735def4c47SEmmanuel Vadot						};
2745def4c47SEmmanuel Vadot						rpmpd_opp_turbo: opp5 {
2755def4c47SEmmanuel Vadot							opp-level = <5>;
2765def4c47SEmmanuel Vadot						};
2775def4c47SEmmanuel Vadot						rpmpd_opp_super_turbo: opp6 {
2785def4c47SEmmanuel Vadot							opp-level = <6>;
2795def4c47SEmmanuel Vadot						};
2805def4c47SEmmanuel Vadot					};
2815def4c47SEmmanuel Vadot				};
282c66ec88fSEmmanuel Vadot			};
283c66ec88fSEmmanuel Vadot		};
284c66ec88fSEmmanuel Vadot	};
285c66ec88fSEmmanuel Vadot
286c66ec88fSEmmanuel Vadot	smem {
287c66ec88fSEmmanuel Vadot		compatible = "qcom,smem";
288c66ec88fSEmmanuel Vadot		memory-region = <&smem_mem>;
289c66ec88fSEmmanuel Vadot		qcom,rpm-msg-ram = <&rpm_msg_ram>;
290c66ec88fSEmmanuel Vadot		hwlocks = <&tcsr_mutex 3>;
291c66ec88fSEmmanuel Vadot	};
292c66ec88fSEmmanuel Vadot
2935def4c47SEmmanuel Vadot	smp2p-lpass {
2945def4c47SEmmanuel Vadot		compatible = "qcom,smp2p";
2955def4c47SEmmanuel Vadot		qcom,smem = <443>, <429>;
2965def4c47SEmmanuel Vadot
2975def4c47SEmmanuel Vadot		interrupts = <GIC_SPI 158 IRQ_TYPE_EDGE_RISING>;
2985def4c47SEmmanuel Vadot
2995def4c47SEmmanuel Vadot		qcom,ipc = <&apcs 8 10>;
3005def4c47SEmmanuel Vadot
3015def4c47SEmmanuel Vadot		qcom,local-pid = <0>;
3025def4c47SEmmanuel Vadot		qcom,remote-pid = <2>;
3035def4c47SEmmanuel Vadot
3045def4c47SEmmanuel Vadot		adsp_smp2p_out: master-kernel {
3055def4c47SEmmanuel Vadot			qcom,entry-name = "master-kernel";
3065def4c47SEmmanuel Vadot			#qcom,smem-state-cells = <1>;
3075def4c47SEmmanuel Vadot		};
3085def4c47SEmmanuel Vadot
3095def4c47SEmmanuel Vadot		adsp_smp2p_in: slave-kernel {
3105def4c47SEmmanuel Vadot			qcom,entry-name = "slave-kernel";
3115def4c47SEmmanuel Vadot
3125def4c47SEmmanuel Vadot			interrupt-controller;
3135def4c47SEmmanuel Vadot			#interrupt-cells = <2>;
3145def4c47SEmmanuel Vadot		};
3155def4c47SEmmanuel Vadot	};
3165def4c47SEmmanuel Vadot
3175def4c47SEmmanuel Vadot	smp2p-modem {
3185def4c47SEmmanuel Vadot		compatible = "qcom,smp2p";
3195def4c47SEmmanuel Vadot		qcom,smem = <435>, <428>;
3205def4c47SEmmanuel Vadot
3215def4c47SEmmanuel Vadot		interrupt-parent = <&intc>;
3225def4c47SEmmanuel Vadot		interrupts = <GIC_SPI 27 IRQ_TYPE_EDGE_RISING>;
3235def4c47SEmmanuel Vadot
3245def4c47SEmmanuel Vadot		qcom,ipc = <&apcs 8 14>;
3255def4c47SEmmanuel Vadot
3265def4c47SEmmanuel Vadot		qcom,local-pid = <0>;
3275def4c47SEmmanuel Vadot		qcom,remote-pid = <1>;
3285def4c47SEmmanuel Vadot
3295def4c47SEmmanuel Vadot		modem_smp2p_out: master-kernel {
3305def4c47SEmmanuel Vadot			qcom,entry-name = "master-kernel";
3315def4c47SEmmanuel Vadot			#qcom,smem-state-cells = <1>;
3325def4c47SEmmanuel Vadot		};
3335def4c47SEmmanuel Vadot
3345def4c47SEmmanuel Vadot		modem_smp2p_in: slave-kernel {
3355def4c47SEmmanuel Vadot			qcom,entry-name = "slave-kernel";
3365def4c47SEmmanuel Vadot
3375def4c47SEmmanuel Vadot			interrupt-controller;
3385def4c47SEmmanuel Vadot			#interrupt-cells = <2>;
3395def4c47SEmmanuel Vadot		};
3405def4c47SEmmanuel Vadot	};
3415def4c47SEmmanuel Vadot
342c66ec88fSEmmanuel Vadot	soc: soc {
343c66ec88fSEmmanuel Vadot
344c66ec88fSEmmanuel Vadot		#address-cells = <1>;
345c66ec88fSEmmanuel Vadot		#size-cells = <1>;
346c66ec88fSEmmanuel Vadot		ranges = <0 0 0 0xffffffff>;
347c66ec88fSEmmanuel Vadot		compatible = "simple-bus";
348c66ec88fSEmmanuel Vadot
349c66ec88fSEmmanuel Vadot		intc: interrupt-controller@f9000000 {
350c66ec88fSEmmanuel Vadot			compatible = "qcom,msm-qgic2";
351c66ec88fSEmmanuel Vadot			interrupt-controller;
352c66ec88fSEmmanuel Vadot			#interrupt-cells = <3>;
353c66ec88fSEmmanuel Vadot			reg = <0xf9000000 0x1000>,
354c66ec88fSEmmanuel Vadot			      <0xf9002000 0x1000>;
355c66ec88fSEmmanuel Vadot		};
356c66ec88fSEmmanuel Vadot
357c66ec88fSEmmanuel Vadot		apcs: mailbox@f900d000 {
358c66ec88fSEmmanuel Vadot			compatible = "qcom,msm8994-apcs-kpss-global", "syscon";
359c66ec88fSEmmanuel Vadot			reg = <0xf900d000 0x2000>;
360c66ec88fSEmmanuel Vadot			#mbox-cells = <1>;
361c66ec88fSEmmanuel Vadot		};
362c66ec88fSEmmanuel Vadot
363d5b0e70fSEmmanuel Vadot		watchdog@f9017000 {
364d5b0e70fSEmmanuel Vadot			compatible = "qcom,apss-wdt-msm8994", "qcom,kpss-wdt";
365d5b0e70fSEmmanuel Vadot			reg = <0xf9017000 0x1000>;
366d5b0e70fSEmmanuel Vadot			interrupts = <GIC_SPI 3 IRQ_TYPE_EDGE_RISING>,
367d5b0e70fSEmmanuel Vadot				     <GIC_SPI 4 IRQ_TYPE_EDGE_RISING>;
368d5b0e70fSEmmanuel Vadot			clocks = <&sleep_clk>;
369d5b0e70fSEmmanuel Vadot			timeout-sec = <10>;
370d5b0e70fSEmmanuel Vadot		};
371d5b0e70fSEmmanuel Vadot
372c66ec88fSEmmanuel Vadot		timer@f9020000 {
373c66ec88fSEmmanuel Vadot			#address-cells = <1>;
374c66ec88fSEmmanuel Vadot			#size-cells = <1>;
375c66ec88fSEmmanuel Vadot			ranges;
376c66ec88fSEmmanuel Vadot			compatible = "arm,armv7-timer-mem";
377c66ec88fSEmmanuel Vadot			reg = <0xf9020000 0x1000>;
378c66ec88fSEmmanuel Vadot
379c66ec88fSEmmanuel Vadot			frame@f9021000 {
380c66ec88fSEmmanuel Vadot				frame-number = <0>;
381c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
382c66ec88fSEmmanuel Vadot					     <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
383c66ec88fSEmmanuel Vadot				reg = <0xf9021000 0x1000>,
384c66ec88fSEmmanuel Vadot				      <0xf9022000 0x1000>;
385c66ec88fSEmmanuel Vadot			};
386c66ec88fSEmmanuel Vadot
387c66ec88fSEmmanuel Vadot			frame@f9023000 {
388c66ec88fSEmmanuel Vadot				frame-number = <1>;
389c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
390c66ec88fSEmmanuel Vadot				reg = <0xf9023000 0x1000>;
391c66ec88fSEmmanuel Vadot				status = "disabled";
392c66ec88fSEmmanuel Vadot			};
393c66ec88fSEmmanuel Vadot
394c66ec88fSEmmanuel Vadot			frame@f9024000 {
395c66ec88fSEmmanuel Vadot				frame-number = <2>;
396c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
397c66ec88fSEmmanuel Vadot				reg = <0xf9024000 0x1000>;
398c66ec88fSEmmanuel Vadot				status = "disabled";
399c66ec88fSEmmanuel Vadot			};
400c66ec88fSEmmanuel Vadot
401c66ec88fSEmmanuel Vadot			frame@f9025000 {
402c66ec88fSEmmanuel Vadot				frame-number = <3>;
403c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>;
404c66ec88fSEmmanuel Vadot				reg = <0xf9025000 0x1000>;
405c66ec88fSEmmanuel Vadot				status = "disabled";
406c66ec88fSEmmanuel Vadot			};
407c66ec88fSEmmanuel Vadot
408c66ec88fSEmmanuel Vadot			frame@f9026000 {
409c66ec88fSEmmanuel Vadot				frame-number = <4>;
410c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>;
411c66ec88fSEmmanuel Vadot				reg = <0xf9026000 0x1000>;
412c66ec88fSEmmanuel Vadot				status = "disabled";
413c66ec88fSEmmanuel Vadot			};
414c66ec88fSEmmanuel Vadot
415c66ec88fSEmmanuel Vadot			frame@f9027000 {
416c66ec88fSEmmanuel Vadot				frame-number = <5>;
417c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
418c66ec88fSEmmanuel Vadot				reg = <0xf9027000 0x1000>;
419c66ec88fSEmmanuel Vadot				status = "disabled";
420c66ec88fSEmmanuel Vadot			};
421c66ec88fSEmmanuel Vadot
422c66ec88fSEmmanuel Vadot			frame@f9028000 {
423c66ec88fSEmmanuel Vadot				frame-number = <6>;
424c66ec88fSEmmanuel Vadot				interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
425c66ec88fSEmmanuel Vadot				reg = <0xf9028000 0x1000>;
426c66ec88fSEmmanuel Vadot				status = "disabled";
427c66ec88fSEmmanuel Vadot			};
428c66ec88fSEmmanuel Vadot		};
429c66ec88fSEmmanuel Vadot
4305def4c47SEmmanuel Vadot		usb3: usb@f92f8800 {
431d5b0e70fSEmmanuel Vadot			compatible = "qcom,msm8994-dwc3", "qcom,dwc3";
4325def4c47SEmmanuel Vadot			reg = <0xf92f8800 0x400>;
4335def4c47SEmmanuel Vadot			#address-cells = <1>;
4345def4c47SEmmanuel Vadot			#size-cells = <1>;
4355def4c47SEmmanuel Vadot			ranges;
4365def4c47SEmmanuel Vadot
4375def4c47SEmmanuel Vadot			clocks = <&gcc GCC_USB30_MASTER_CLK>,
4385def4c47SEmmanuel Vadot				 <&gcc GCC_SYS_NOC_USB3_AXI_CLK>,
4395def4c47SEmmanuel Vadot				 <&gcc GCC_USB30_SLEEP_CLK>,
4405def4c47SEmmanuel Vadot				 <&gcc GCC_USB30_MOCK_UTMI_CLK>;
441d5b0e70fSEmmanuel Vadot			clock-names = "core",
442d5b0e70fSEmmanuel Vadot				      "iface",
443d5b0e70fSEmmanuel Vadot				      "sleep",
444d5b0e70fSEmmanuel Vadot				      "mock_utmi";
4455def4c47SEmmanuel Vadot
4465def4c47SEmmanuel Vadot			assigned-clocks = <&gcc GCC_USB30_MOCK_UTMI_CLK>,
4475def4c47SEmmanuel Vadot					  <&gcc GCC_USB30_MASTER_CLK>;
4485def4c47SEmmanuel Vadot			assigned-clock-rates = <19200000>, <120000000>;
4495def4c47SEmmanuel Vadot
4505def4c47SEmmanuel Vadot			power-domains = <&gcc USB30_GDSC>;
4515def4c47SEmmanuel Vadot			qcom,select-utmi-as-pipe-clk;
4525def4c47SEmmanuel Vadot
453354d7675SEmmanuel Vadot			usb@f9200000 {
4545def4c47SEmmanuel Vadot				compatible = "snps,dwc3";
4555def4c47SEmmanuel Vadot				reg = <0xf9200000 0xcc00>;
4565def4c47SEmmanuel Vadot				interrupts = <0 131 IRQ_TYPE_LEVEL_HIGH>;
4575def4c47SEmmanuel Vadot				snps,dis_u2_susphy_quirk;
4585def4c47SEmmanuel Vadot				snps,dis_enblslpm_quirk;
4595def4c47SEmmanuel Vadot				maximum-speed = "high-speed";
4605def4c47SEmmanuel Vadot				dr_mode = "peripheral";
4615def4c47SEmmanuel Vadot			};
4625def4c47SEmmanuel Vadot		};
4635def4c47SEmmanuel Vadot
464*b97ee269SEmmanuel Vadot		sdhc1: mmc@f9824900 {
465c9ccf3a3SEmmanuel Vadot			compatible = "qcom,msm8994-sdhci", "qcom,sdhci-msm-v4";
466c66ec88fSEmmanuel Vadot			reg = <0xf9824900 0x1a0>, <0xf9824000 0x800>;
467c66ec88fSEmmanuel Vadot			reg-names = "hc_mem", "core_mem";
468c66ec88fSEmmanuel Vadot
469c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>,
470c66ec88fSEmmanuel Vadot				     <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
471c66ec88fSEmmanuel Vadot			interrupt-names = "hc_irq", "pwr_irq";
472c66ec88fSEmmanuel Vadot
473*b97ee269SEmmanuel Vadot			clocks = <&gcc GCC_SDCC1_AHB_CLK>,
474*b97ee269SEmmanuel Vadot				 <&gcc GCC_SDCC1_APPS_CLK>,
475c66ec88fSEmmanuel Vadot				 <&xo_board>;
476*b97ee269SEmmanuel Vadot			clock-names = "iface", "core", "xo";
477c66ec88fSEmmanuel Vadot
478c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
479c66ec88fSEmmanuel Vadot			pinctrl-0 = <&sdc1_clk_on &sdc1_cmd_on &sdc1_data_on &sdc1_rclk_on>;
480c66ec88fSEmmanuel Vadot			pinctrl-1 = <&sdc1_clk_off &sdc1_cmd_off &sdc1_data_off &sdc1_rclk_off>;
481c66ec88fSEmmanuel Vadot
482c66ec88fSEmmanuel Vadot			bus-width = <8>;
483c66ec88fSEmmanuel Vadot			non-removable;
484c66ec88fSEmmanuel Vadot			status = "disabled";
485c66ec88fSEmmanuel Vadot		};
486c66ec88fSEmmanuel Vadot
487*b97ee269SEmmanuel Vadot		sdhc2: mmc@f98a4900 {
488c9ccf3a3SEmmanuel Vadot			compatible = "qcom,msm8994-sdhci", "qcom,sdhci-msm-v4";
4895def4c47SEmmanuel Vadot			reg = <0xf98a4900 0x11c>, <0xf98a4000 0x800>;
4905def4c47SEmmanuel Vadot			reg-names = "hc_mem", "core_mem";
4915def4c47SEmmanuel Vadot
4925def4c47SEmmanuel Vadot			interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>,
4935def4c47SEmmanuel Vadot				<GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
4945def4c47SEmmanuel Vadot			interrupt-names = "hc_irq", "pwr_irq";
4955def4c47SEmmanuel Vadot
496*b97ee269SEmmanuel Vadot			clocks = <&gcc GCC_SDCC2_AHB_CLK>,
497*b97ee269SEmmanuel Vadot				 <&gcc GCC_SDCC2_APPS_CLK>,
4985def4c47SEmmanuel Vadot				 <&xo_board>;
499*b97ee269SEmmanuel Vadot			clock-names = "iface", "core", "xo";
5005def4c47SEmmanuel Vadot
5015def4c47SEmmanuel Vadot			pinctrl-names = "default", "sleep";
5025def4c47SEmmanuel Vadot			pinctrl-0 = <&sdc2_clk_on &sdc2_cmd_on &sdc2_data_on>;
5035def4c47SEmmanuel Vadot			pinctrl-1 = <&sdc2_clk_off &sdc2_cmd_off &sdc2_data_off>;
5045def4c47SEmmanuel Vadot
5055def4c47SEmmanuel Vadot			cd-gpios = <&tlmm 100 0>;
5065def4c47SEmmanuel Vadot			bus-width = <4>;
5075def4c47SEmmanuel Vadot			status = "disabled";
5085def4c47SEmmanuel Vadot		};
5095def4c47SEmmanuel Vadot
5105def4c47SEmmanuel Vadot		blsp1_dma: dma-controller@f9904000 {
511c66ec88fSEmmanuel Vadot			compatible = "qcom,bam-v1.7.0";
512c66ec88fSEmmanuel Vadot			reg = <0xf9904000 0x19000>;
513c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>;
514c66ec88fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_AHB_CLK>;
515c66ec88fSEmmanuel Vadot			clock-names = "bam_clk";
516c66ec88fSEmmanuel Vadot			#dma-cells = <1>;
517c66ec88fSEmmanuel Vadot			qcom,ee = <0>;
518c66ec88fSEmmanuel Vadot			qcom,controlled-remotely;
519d5b0e70fSEmmanuel Vadot			num-channels = <24>;
520c66ec88fSEmmanuel Vadot			qcom,num-ees = <4>;
521c66ec88fSEmmanuel Vadot		};
522c66ec88fSEmmanuel Vadot
523c66ec88fSEmmanuel Vadot		blsp1_uart2: serial@f991e000 {
524c66ec88fSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
525c66ec88fSEmmanuel Vadot			reg = <0xf991e000 0x1000>;
526c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH>;
527c66ec88fSEmmanuel Vadot			clock-names = "core", "iface";
528c66ec88fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_UART2_APPS_CLK>,
529c66ec88fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
530c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
531c66ec88fSEmmanuel Vadot			pinctrl-0 = <&blsp1_uart2_default>;
532c66ec88fSEmmanuel Vadot			pinctrl-1 = <&blsp1_uart2_sleep>;
533c66ec88fSEmmanuel Vadot			status = "disabled";
534c66ec88fSEmmanuel Vadot		};
535c66ec88fSEmmanuel Vadot
5365def4c47SEmmanuel Vadot		blsp1_i2c1: i2c@f9923000 {
537c66ec88fSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
538c66ec88fSEmmanuel Vadot			reg = <0xf9923000 0x500>;
539c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
540d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP1_I2C_APPS_CLK>,
541d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
542d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
543c66ec88fSEmmanuel Vadot			clock-frequency = <400000>;
5445def4c47SEmmanuel Vadot			dmas = <&blsp1_dma 12>, <&blsp1_dma 13>;
5455def4c47SEmmanuel Vadot			dma-names = "tx", "rx";
546c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
547c66ec88fSEmmanuel Vadot			pinctrl-0 = <&i2c1_default>;
548c66ec88fSEmmanuel Vadot			pinctrl-1 = <&i2c1_sleep>;
549c66ec88fSEmmanuel Vadot			#address-cells = <1>;
550c66ec88fSEmmanuel Vadot			#size-cells = <0>;
551c66ec88fSEmmanuel Vadot			status = "disabled";
552c66ec88fSEmmanuel Vadot		};
553c66ec88fSEmmanuel Vadot
5545def4c47SEmmanuel Vadot		blsp1_spi1: spi@f9923000 {
555c66ec88fSEmmanuel Vadot			compatible = "qcom,spi-qup-v2.2.1";
556c66ec88fSEmmanuel Vadot			reg = <0xf9923000 0x500>;
557c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
558c66ec88fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP1_SPI_APPS_CLK>,
559c66ec88fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
560c66ec88fSEmmanuel Vadot			clock-names = "core", "iface";
561c66ec88fSEmmanuel Vadot			spi-max-frequency = <19200000>;
562c66ec88fSEmmanuel Vadot			dmas = <&blsp1_dma 12>, <&blsp1_dma 13>;
563c66ec88fSEmmanuel Vadot			dma-names = "tx", "rx";
564c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
5655def4c47SEmmanuel Vadot			pinctrl-0 = <&blsp1_spi1_default>;
5665def4c47SEmmanuel Vadot			pinctrl-1 = <&blsp1_spi1_sleep>;
567c66ec88fSEmmanuel Vadot			#address-cells = <1>;
568c66ec88fSEmmanuel Vadot			#size-cells = <0>;
569c66ec88fSEmmanuel Vadot			status = "disabled";
570c66ec88fSEmmanuel Vadot		};
571c66ec88fSEmmanuel Vadot
5725def4c47SEmmanuel Vadot		blsp1_i2c2: i2c@f9924000 {
573c66ec88fSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
574c66ec88fSEmmanuel Vadot			reg = <0xf9924000 0x500>;
575c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
576d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP2_I2C_APPS_CLK>,
577d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
578d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
5795def4c47SEmmanuel Vadot			clock-frequency = <400000>;
580c66ec88fSEmmanuel Vadot			dmas = <&blsp1_dma 14>, <&blsp1_dma 15>;
581c66ec88fSEmmanuel Vadot			dma-names = "tx", "rx";
582c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
583c66ec88fSEmmanuel Vadot			pinctrl-0 = <&i2c2_default>;
584c66ec88fSEmmanuel Vadot			pinctrl-1 = <&i2c2_sleep>;
585c66ec88fSEmmanuel Vadot			#address-cells = <1>;
586c66ec88fSEmmanuel Vadot			#size-cells = <0>;
587c66ec88fSEmmanuel Vadot			status = "disabled";
588c66ec88fSEmmanuel Vadot		};
589c66ec88fSEmmanuel Vadot
590c66ec88fSEmmanuel Vadot		/* I2C3 doesn't exist */
591c66ec88fSEmmanuel Vadot
5925def4c47SEmmanuel Vadot		blsp1_i2c4: i2c@f9926000 {
593c66ec88fSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
594c66ec88fSEmmanuel Vadot			reg = <0xf9926000 0x500>;
595c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
596d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP4_I2C_APPS_CLK>,
597d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
598d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
5995def4c47SEmmanuel Vadot			clock-frequency = <400000>;
6005def4c47SEmmanuel Vadot			dmas = <&blsp1_dma 18>, <&blsp1_dma 19>;
6015def4c47SEmmanuel Vadot			dma-names = "tx", "rx";
602c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
603c66ec88fSEmmanuel Vadot			pinctrl-0 = <&i2c4_default>;
604c66ec88fSEmmanuel Vadot			pinctrl-1 = <&i2c4_sleep>;
605c66ec88fSEmmanuel Vadot			#address-cells = <1>;
606c66ec88fSEmmanuel Vadot			#size-cells = <0>;
607c66ec88fSEmmanuel Vadot			status = "disabled";
608c66ec88fSEmmanuel Vadot		};
609c66ec88fSEmmanuel Vadot
6105def4c47SEmmanuel Vadot		blsp1_i2c5: i2c@f9927000 {
6115def4c47SEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
6125def4c47SEmmanuel Vadot			reg = <0xf9927000 0x500>;
6135def4c47SEmmanuel Vadot			interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>;
614d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP5_I2C_APPS_CLK>,
615d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
616d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
6175def4c47SEmmanuel Vadot			clock-frequency = <400000>;
6185def4c47SEmmanuel Vadot			dmas = <&blsp2_dma 20>, <&blsp2_dma 21>;
6195def4c47SEmmanuel Vadot			dma-names = "tx", "rx";
6205def4c47SEmmanuel Vadot			pinctrl-names = "default", "sleep";
6215def4c47SEmmanuel Vadot			pinctrl-0 = <&i2c5_default>;
6225def4c47SEmmanuel Vadot			pinctrl-1 = <&i2c5_sleep>;
6235def4c47SEmmanuel Vadot			#address-cells = <1>;
6245def4c47SEmmanuel Vadot			#size-cells = <0>;
6255def4c47SEmmanuel Vadot			status = "disabled";
6265def4c47SEmmanuel Vadot		};
6275def4c47SEmmanuel Vadot
6285def4c47SEmmanuel Vadot		blsp1_i2c6: i2c@f9928000 {
6295def4c47SEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
6305def4c47SEmmanuel Vadot			reg = <0xf9928000 0x500>;
6315def4c47SEmmanuel Vadot			interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
632d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP1_QUP6_I2C_APPS_CLK>,
633d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP1_AHB_CLK>;
634d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
6355def4c47SEmmanuel Vadot			clock-frequency = <400000>;
6365def4c47SEmmanuel Vadot			dmas = <&blsp1_dma 22>, <&blsp1_dma 23>;
6375def4c47SEmmanuel Vadot			dma-names = "tx", "rx";
6385def4c47SEmmanuel Vadot			pinctrl-names = "default", "sleep";
6395def4c47SEmmanuel Vadot			pinctrl-0 = <&i2c6_default>;
6405def4c47SEmmanuel Vadot			pinctrl-1 = <&i2c6_sleep>;
6415def4c47SEmmanuel Vadot			#address-cells = <1>;
6425def4c47SEmmanuel Vadot			#size-cells = <0>;
6435def4c47SEmmanuel Vadot			status = "disabled";
6445def4c47SEmmanuel Vadot		};
6455def4c47SEmmanuel Vadot
6465def4c47SEmmanuel Vadot		blsp2_dma: dma-controller@f9944000 {
647c66ec88fSEmmanuel Vadot			compatible = "qcom,bam-v1.7.0";
648c66ec88fSEmmanuel Vadot			reg = <0xf9944000 0x19000>;
649c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>;
650c66ec88fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_AHB_CLK>;
651c66ec88fSEmmanuel Vadot			clock-names = "bam_clk";
652c66ec88fSEmmanuel Vadot			#dma-cells = <1>;
653c66ec88fSEmmanuel Vadot			qcom,ee = <0>;
654c66ec88fSEmmanuel Vadot			qcom,controlled-remotely;
655d5b0e70fSEmmanuel Vadot			num-channels = <24>;
656c66ec88fSEmmanuel Vadot			qcom,num-ees = <4>;
657c66ec88fSEmmanuel Vadot		};
658c66ec88fSEmmanuel Vadot
659c66ec88fSEmmanuel Vadot		blsp2_uart2: serial@f995e000 {
660c66ec88fSEmmanuel Vadot			compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
661c66ec88fSEmmanuel Vadot			reg = <0xf995e000 0x1000>;
6625def4c47SEmmanuel Vadot			interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
663c66ec88fSEmmanuel Vadot			clock-names = "core", "iface";
664c66ec88fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_UART2_APPS_CLK>,
665c66ec88fSEmmanuel Vadot					<&gcc GCC_BLSP2_AHB_CLK>;
666c66ec88fSEmmanuel Vadot			dmas = <&blsp2_dma 2>, <&blsp2_dma 3>;
667c66ec88fSEmmanuel Vadot			dma-names = "tx", "rx";
668c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
669c66ec88fSEmmanuel Vadot			pinctrl-0 = <&blsp2_uart2_default>;
670c66ec88fSEmmanuel Vadot			pinctrl-1 = <&blsp2_uart2_sleep>;
671c66ec88fSEmmanuel Vadot			status = "disabled";
672c66ec88fSEmmanuel Vadot		};
673c66ec88fSEmmanuel Vadot
6745def4c47SEmmanuel Vadot		blsp2_i2c1: i2c@f9963000 {
6755def4c47SEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
6765def4c47SEmmanuel Vadot			reg = <0xf9963000 0x500>;
6775def4c47SEmmanuel Vadot			interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
678d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_QUP1_I2C_APPS_CLK>,
679d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP2_AHB_CLK>;
680d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
6815def4c47SEmmanuel Vadot			clock-frequency = <400000>;
6825def4c47SEmmanuel Vadot			dmas = <&blsp2_dma 12>, <&blsp2_dma 13>;
6835def4c47SEmmanuel Vadot			dma-names = "tx", "rx";
6845def4c47SEmmanuel Vadot			pinctrl-names = "default", "sleep";
6855def4c47SEmmanuel Vadot			pinctrl-0 = <&i2c7_default>;
6865def4c47SEmmanuel Vadot			pinctrl-1 = <&i2c7_sleep>;
6875def4c47SEmmanuel Vadot			#address-cells = <1>;
6885def4c47SEmmanuel Vadot			#size-cells = <0>;
6895def4c47SEmmanuel Vadot			status = "disabled";
6905def4c47SEmmanuel Vadot		};
6915def4c47SEmmanuel Vadot
6925def4c47SEmmanuel Vadot		blsp2_spi4: spi@f9966000 {
6935def4c47SEmmanuel Vadot			compatible = "qcom,spi-qup-v2.2.1";
6945def4c47SEmmanuel Vadot			reg = <0xf9966000 0x500>;
6955def4c47SEmmanuel Vadot			interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
6965def4c47SEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_QUP4_SPI_APPS_CLK>,
6975def4c47SEmmanuel Vadot				 <&gcc GCC_BLSP2_AHB_CLK>;
6985def4c47SEmmanuel Vadot			clock-names = "core", "iface";
6995def4c47SEmmanuel Vadot			spi-max-frequency = <19200000>;
7005def4c47SEmmanuel Vadot			dmas = <&blsp2_dma 18>, <&blsp2_dma 19>;
7015def4c47SEmmanuel Vadot			dma-names = "tx", "rx";
7025def4c47SEmmanuel Vadot			pinctrl-names = "default", "sleep";
7035def4c47SEmmanuel Vadot			pinctrl-0 = <&blsp2_spi10_default>;
7045def4c47SEmmanuel Vadot			pinctrl-1 = <&blsp2_spi10_sleep>;
7055def4c47SEmmanuel Vadot			#address-cells = <1>;
7065def4c47SEmmanuel Vadot			#size-cells = <0>;
7075def4c47SEmmanuel Vadot			status = "disabled";
7085def4c47SEmmanuel Vadot		};
7095def4c47SEmmanuel Vadot
7105def4c47SEmmanuel Vadot		blsp2_i2c5: i2c@f9967000 {
711c66ec88fSEmmanuel Vadot			compatible = "qcom,i2c-qup-v2.2.1";
712c66ec88fSEmmanuel Vadot			reg = <0xf9967000 0x500>;
713c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
714d5b0e70fSEmmanuel Vadot			clocks = <&gcc GCC_BLSP2_QUP5_I2C_APPS_CLK>,
715d5b0e70fSEmmanuel Vadot				 <&gcc GCC_BLSP2_AHB_CLK>;
716d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
717c66ec88fSEmmanuel Vadot			clock-frequency = <355000>;
718c66ec88fSEmmanuel Vadot			dmas = <&blsp2_dma 20>, <&blsp2_dma 21>;
719c66ec88fSEmmanuel Vadot			dma-names = "tx", "rx";
720c66ec88fSEmmanuel Vadot			pinctrl-names = "default", "sleep";
7215def4c47SEmmanuel Vadot			pinctrl-0 = <&i2c11_default>;
7225def4c47SEmmanuel Vadot			pinctrl-1 = <&i2c11_sleep>;
723c66ec88fSEmmanuel Vadot			#address-cells = <1>;
724c66ec88fSEmmanuel Vadot			#size-cells = <0>;
725c66ec88fSEmmanuel Vadot			status = "disabled";
726c66ec88fSEmmanuel Vadot		};
727c66ec88fSEmmanuel Vadot
728c66ec88fSEmmanuel Vadot		gcc: clock-controller@fc400000 {
729c66ec88fSEmmanuel Vadot			compatible = "qcom,gcc-msm8994";
730c66ec88fSEmmanuel Vadot			#clock-cells = <1>;
731c66ec88fSEmmanuel Vadot			#reset-cells = <1>;
732c66ec88fSEmmanuel Vadot			#power-domain-cells = <1>;
733c66ec88fSEmmanuel Vadot			reg = <0xfc400000 0x2000>;
734c9ccf3a3SEmmanuel Vadot
735d5b0e70fSEmmanuel Vadot			clock-names = "xo", "sleep";
736c9ccf3a3SEmmanuel Vadot			clocks = <&xo_board>, <&sleep_clk>;
737c66ec88fSEmmanuel Vadot		};
738c66ec88fSEmmanuel Vadot
7398cc087a1SEmmanuel Vadot		rpm_msg_ram: sram@fc428000 {
740c66ec88fSEmmanuel Vadot			compatible = "qcom,rpm-msg-ram";
741c66ec88fSEmmanuel Vadot			reg = <0xfc428000 0x4000>;
742c66ec88fSEmmanuel Vadot		};
743c66ec88fSEmmanuel Vadot
744c66ec88fSEmmanuel Vadot		restart@fc4ab000 {
745c66ec88fSEmmanuel Vadot			compatible = "qcom,pshold";
746c66ec88fSEmmanuel Vadot			reg = <0xfc4ab000 0x4>;
747c66ec88fSEmmanuel Vadot		};
748c66ec88fSEmmanuel Vadot
749c66ec88fSEmmanuel Vadot		spmi_bus: spmi@fc4c0000 {
750c66ec88fSEmmanuel Vadot			compatible = "qcom,spmi-pmic-arb";
751c66ec88fSEmmanuel Vadot			reg = <0xfc4cf000 0x1000>,
752c66ec88fSEmmanuel Vadot			      <0xfc4cb000 0x1000>,
753c66ec88fSEmmanuel Vadot			      <0xfc4ca000 0x1000>;
754c66ec88fSEmmanuel Vadot			reg-names = "core", "intr", "cnfg";
755c66ec88fSEmmanuel Vadot			interrupt-names = "periph_irq";
756c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
757c66ec88fSEmmanuel Vadot			qcom,ee = <0>;
758c66ec88fSEmmanuel Vadot			qcom,channel = <0>;
759c66ec88fSEmmanuel Vadot			#address-cells = <2>;
760c66ec88fSEmmanuel Vadot			#size-cells = <0>;
761c66ec88fSEmmanuel Vadot			interrupt-controller;
762c66ec88fSEmmanuel Vadot			#interrupt-cells = <4>;
763c66ec88fSEmmanuel Vadot		};
764c66ec88fSEmmanuel Vadot
765c66ec88fSEmmanuel Vadot		tcsr_mutex_regs: syscon@fd484000 {
766c66ec88fSEmmanuel Vadot			compatible = "syscon";
767c66ec88fSEmmanuel Vadot			reg = <0xfd484000 0x2000>;
768c66ec88fSEmmanuel Vadot		};
769c66ec88fSEmmanuel Vadot
770c66ec88fSEmmanuel Vadot		tlmm: pinctrl@fd510000 {
771c66ec88fSEmmanuel Vadot			compatible = "qcom,msm8994-pinctrl";
772c66ec88fSEmmanuel Vadot			reg = <0xfd510000 0x4000>;
773c66ec88fSEmmanuel Vadot			interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
774c66ec88fSEmmanuel Vadot			gpio-controller;
775c66ec88fSEmmanuel Vadot			gpio-ranges = <&tlmm 0 0 146>;
776c66ec88fSEmmanuel Vadot			#gpio-cells = <2>;
777c66ec88fSEmmanuel Vadot			interrupt-controller;
778c66ec88fSEmmanuel Vadot			#interrupt-cells = <2>;
779c66ec88fSEmmanuel Vadot
780c66ec88fSEmmanuel Vadot			blsp1_uart2_default: blsp1-uart2-default {
781c66ec88fSEmmanuel Vadot				function = "blsp_uart2";
782c66ec88fSEmmanuel Vadot				pins = "gpio4", "gpio5";
783c66ec88fSEmmanuel Vadot				drive-strength = <16>;
784c66ec88fSEmmanuel Vadot				bias-disable;
785c66ec88fSEmmanuel Vadot			};
786c66ec88fSEmmanuel Vadot
787c66ec88fSEmmanuel Vadot			blsp1_uart2_sleep: blsp1-uart2-sleep {
788c66ec88fSEmmanuel Vadot				function = "gpio";
789c66ec88fSEmmanuel Vadot				pins = "gpio4", "gpio5";
790c66ec88fSEmmanuel Vadot				drive-strength = <2>;
791c66ec88fSEmmanuel Vadot				bias-pull-down;
792c66ec88fSEmmanuel Vadot			};
793c66ec88fSEmmanuel Vadot
794c66ec88fSEmmanuel Vadot			blsp2_uart2_default: blsp2-uart2-default {
795c66ec88fSEmmanuel Vadot				function = "blsp_uart8";
7965def4c47SEmmanuel Vadot				pins = "gpio45", "gpio46",
7975def4c47SEmmanuel Vadot						"gpio47", "gpio48";
7985def4c47SEmmanuel Vadot				drive-strength = <16>;
799c66ec88fSEmmanuel Vadot				bias-disable;
800c66ec88fSEmmanuel Vadot			};
801c66ec88fSEmmanuel Vadot
802c66ec88fSEmmanuel Vadot			blsp2_uart2_sleep: blsp2-uart2-sleep {
803c66ec88fSEmmanuel Vadot				function = "gpio";
8045def4c47SEmmanuel Vadot				pins = "gpio45", "gpio46",
8055def4c47SEmmanuel Vadot						"gpio47", "gpio48";
806c66ec88fSEmmanuel Vadot				drive-strength = <2>;
8075def4c47SEmmanuel Vadot				bias-disable;
808c66ec88fSEmmanuel Vadot			};
809c66ec88fSEmmanuel Vadot
810c66ec88fSEmmanuel Vadot			i2c1_default: i2c1-default {
811c66ec88fSEmmanuel Vadot				function = "blsp_i2c1";
812c66ec88fSEmmanuel Vadot				pins = "gpio2", "gpio3";
813c66ec88fSEmmanuel Vadot				drive-strength = <2>;
814c66ec88fSEmmanuel Vadot				bias-disable;
815c66ec88fSEmmanuel Vadot			};
816c66ec88fSEmmanuel Vadot
817c66ec88fSEmmanuel Vadot			i2c1_sleep: i2c1-sleep {
818c66ec88fSEmmanuel Vadot				function = "gpio";
819c66ec88fSEmmanuel Vadot				pins = "gpio2", "gpio3";
820c66ec88fSEmmanuel Vadot				drive-strength = <2>;
821c66ec88fSEmmanuel Vadot				bias-disable;
822c66ec88fSEmmanuel Vadot			};
823c66ec88fSEmmanuel Vadot
824c66ec88fSEmmanuel Vadot			i2c2_default: i2c2-default {
825c66ec88fSEmmanuel Vadot				function = "blsp_i2c2";
826c66ec88fSEmmanuel Vadot				pins = "gpio6", "gpio7";
827c66ec88fSEmmanuel Vadot				drive-strength = <2>;
828c66ec88fSEmmanuel Vadot				bias-disable;
829c66ec88fSEmmanuel Vadot			};
830c66ec88fSEmmanuel Vadot
831c66ec88fSEmmanuel Vadot			i2c2_sleep: i2c2-sleep {
832c66ec88fSEmmanuel Vadot				function = "gpio";
833c66ec88fSEmmanuel Vadot				pins = "gpio6", "gpio7";
834c66ec88fSEmmanuel Vadot				drive-strength = <2>;
835c66ec88fSEmmanuel Vadot				bias-disable;
836c66ec88fSEmmanuel Vadot			};
837c66ec88fSEmmanuel Vadot
838c66ec88fSEmmanuel Vadot			i2c4_default: i2c4-default {
839c66ec88fSEmmanuel Vadot				function = "blsp_i2c4";
840c66ec88fSEmmanuel Vadot				pins = "gpio19", "gpio20";
841c66ec88fSEmmanuel Vadot				drive-strength = <2>;
842c66ec88fSEmmanuel Vadot				bias-disable;
843c66ec88fSEmmanuel Vadot			};
844c66ec88fSEmmanuel Vadot
845c66ec88fSEmmanuel Vadot			i2c4_sleep: i2c4-sleep {
846c66ec88fSEmmanuel Vadot				function = "gpio";
847c66ec88fSEmmanuel Vadot				pins = "gpio19", "gpio20";
848c66ec88fSEmmanuel Vadot				drive-strength = <2>;
849c66ec88fSEmmanuel Vadot				bias-pull-down;
850c66ec88fSEmmanuel Vadot				input-enable;
851c66ec88fSEmmanuel Vadot			};
852c66ec88fSEmmanuel Vadot
853c66ec88fSEmmanuel Vadot			i2c5_default: i2c5-default {
854c66ec88fSEmmanuel Vadot				function = "blsp_i2c5";
855c66ec88fSEmmanuel Vadot				pins = "gpio23", "gpio24";
856c66ec88fSEmmanuel Vadot				drive-strength = <2>;
857c66ec88fSEmmanuel Vadot				bias-disable;
858c66ec88fSEmmanuel Vadot			};
859c66ec88fSEmmanuel Vadot
860c66ec88fSEmmanuel Vadot			i2c5_sleep: i2c5-sleep {
861c66ec88fSEmmanuel Vadot				function = "gpio";
862c66ec88fSEmmanuel Vadot				pins = "gpio23", "gpio24";
863c66ec88fSEmmanuel Vadot				drive-strength = <2>;
864c66ec88fSEmmanuel Vadot				bias-disable;
865c66ec88fSEmmanuel Vadot			};
866c66ec88fSEmmanuel Vadot
867c66ec88fSEmmanuel Vadot			i2c6_default: i2c6-default {
868c66ec88fSEmmanuel Vadot				function = "blsp_i2c6";
869c66ec88fSEmmanuel Vadot				pins = "gpio28", "gpio27";
870c66ec88fSEmmanuel Vadot				drive-strength = <2>;
871c66ec88fSEmmanuel Vadot				bias-disable;
872c66ec88fSEmmanuel Vadot			};
873c66ec88fSEmmanuel Vadot
874c66ec88fSEmmanuel Vadot			i2c6_sleep: i2c6-sleep {
875c66ec88fSEmmanuel Vadot				function = "gpio";
876c66ec88fSEmmanuel Vadot				pins = "gpio28", "gpio27";
877c66ec88fSEmmanuel Vadot				drive-strength = <2>;
878c66ec88fSEmmanuel Vadot				bias-disable;
879c66ec88fSEmmanuel Vadot			};
880c66ec88fSEmmanuel Vadot
8815def4c47SEmmanuel Vadot			i2c7_default: i2c7-default {
8825def4c47SEmmanuel Vadot				function = "blsp_i2c7";
8835def4c47SEmmanuel Vadot				pins = "gpio44", "gpio43";
8845def4c47SEmmanuel Vadot				drive-strength = <2>;
8855def4c47SEmmanuel Vadot				bias-disable;
8865def4c47SEmmanuel Vadot			};
8875def4c47SEmmanuel Vadot
8885def4c47SEmmanuel Vadot			i2c7_sleep: i2c7-sleep {
8895def4c47SEmmanuel Vadot				function = "gpio";
8905def4c47SEmmanuel Vadot				pins = "gpio44", "gpio43";
8915def4c47SEmmanuel Vadot				drive-strength = <2>;
8925def4c47SEmmanuel Vadot				bias-disable;
8935def4c47SEmmanuel Vadot			};
8945def4c47SEmmanuel Vadot
8955def4c47SEmmanuel Vadot			blsp2_spi10_default: blsp2-spi10-default {
8965def4c47SEmmanuel Vadot				default {
8975def4c47SEmmanuel Vadot					function = "blsp_spi10";
8985def4c47SEmmanuel Vadot					pins = "gpio53", "gpio54", "gpio55";
8995def4c47SEmmanuel Vadot					drive-strength = <10>;
9005def4c47SEmmanuel Vadot					bias-pull-down;
9015def4c47SEmmanuel Vadot				};
9025def4c47SEmmanuel Vadot				cs {
9035def4c47SEmmanuel Vadot					function = "gpio";
9045def4c47SEmmanuel Vadot					pins = "gpio55";
9055def4c47SEmmanuel Vadot					drive-strength = <2>;
9065def4c47SEmmanuel Vadot					bias-disable;
9075def4c47SEmmanuel Vadot				};
9085def4c47SEmmanuel Vadot			};
9095def4c47SEmmanuel Vadot
9105def4c47SEmmanuel Vadot			blsp2_spi10_sleep: blsp2-spi10-sleep {
9115def4c47SEmmanuel Vadot				pins = "gpio53", "gpio54", "gpio55";
9125def4c47SEmmanuel Vadot				drive-strength = <2>;
9135def4c47SEmmanuel Vadot				bias-disable;
9145def4c47SEmmanuel Vadot			};
9155def4c47SEmmanuel Vadot
9165def4c47SEmmanuel Vadot			i2c11_default: i2c11-default {
9175def4c47SEmmanuel Vadot				function = "blsp_i2c11";
9185def4c47SEmmanuel Vadot				pins = "gpio83", "gpio84";
9195def4c47SEmmanuel Vadot				drive-strength = <2>;
9205def4c47SEmmanuel Vadot				bias-disable;
9215def4c47SEmmanuel Vadot			};
9225def4c47SEmmanuel Vadot
9235def4c47SEmmanuel Vadot			i2c11_sleep: i2c11-sleep {
9245def4c47SEmmanuel Vadot				function = "gpio";
9255def4c47SEmmanuel Vadot				pins = "gpio83", "gpio84";
9265def4c47SEmmanuel Vadot				drive-strength = <2>;
9275def4c47SEmmanuel Vadot				bias-disable;
9285def4c47SEmmanuel Vadot			};
9295def4c47SEmmanuel Vadot
9305def4c47SEmmanuel Vadot			blsp1_spi1_default: blsp1-spi1-default {
931c66ec88fSEmmanuel Vadot				default {
932c66ec88fSEmmanuel Vadot					function = "blsp_spi1";
933c66ec88fSEmmanuel Vadot					pins = "gpio0", "gpio1", "gpio3";
934c66ec88fSEmmanuel Vadot					drive-strength = <10>;
935c66ec88fSEmmanuel Vadot					bias-pull-down;
936c66ec88fSEmmanuel Vadot				};
937c66ec88fSEmmanuel Vadot				cs {
938c66ec88fSEmmanuel Vadot					function = "gpio";
939c66ec88fSEmmanuel Vadot					pins = "gpio8";
940c66ec88fSEmmanuel Vadot					drive-strength = <2>;
941c66ec88fSEmmanuel Vadot					bias-disable;
942c66ec88fSEmmanuel Vadot				};
943c66ec88fSEmmanuel Vadot			};
944c66ec88fSEmmanuel Vadot
9455def4c47SEmmanuel Vadot			blsp1_spi1_sleep: blsp1-spi1-sleep {
946c66ec88fSEmmanuel Vadot				pins = "gpio0", "gpio1", "gpio3";
947c66ec88fSEmmanuel Vadot				drive-strength = <2>;
948c66ec88fSEmmanuel Vadot				bias-disable;
949c66ec88fSEmmanuel Vadot			};
950c66ec88fSEmmanuel Vadot
951c66ec88fSEmmanuel Vadot			sdc1_clk_on: clk-on {
952c66ec88fSEmmanuel Vadot				pins = "sdc1_clk";
953c66ec88fSEmmanuel Vadot				bias-disable;
954c66ec88fSEmmanuel Vadot				drive-strength = <16>;
955c66ec88fSEmmanuel Vadot			};
956c66ec88fSEmmanuel Vadot
957c66ec88fSEmmanuel Vadot			sdc1_clk_off: clk-off {
958c66ec88fSEmmanuel Vadot				pins = "sdc1_clk";
959c66ec88fSEmmanuel Vadot				bias-disable;
960c66ec88fSEmmanuel Vadot				drive-strength = <2>;
961c66ec88fSEmmanuel Vadot			};
962c66ec88fSEmmanuel Vadot
963c66ec88fSEmmanuel Vadot			sdc1_cmd_on: cmd-on {
964c66ec88fSEmmanuel Vadot				pins = "sdc1_cmd";
965c66ec88fSEmmanuel Vadot				bias-pull-up;
966c66ec88fSEmmanuel Vadot				drive-strength = <8>;
967c66ec88fSEmmanuel Vadot			};
968c66ec88fSEmmanuel Vadot
969c66ec88fSEmmanuel Vadot			sdc1_cmd_off: cmd-off {
970c66ec88fSEmmanuel Vadot				pins = "sdc1_cmd";
971c66ec88fSEmmanuel Vadot				bias-pull-up;
972c66ec88fSEmmanuel Vadot				drive-strength = <2>;
973c66ec88fSEmmanuel Vadot			};
974c66ec88fSEmmanuel Vadot
975c66ec88fSEmmanuel Vadot			sdc1_data_on: data-on {
976c66ec88fSEmmanuel Vadot				pins = "sdc1_data";
977c66ec88fSEmmanuel Vadot				bias-pull-up;
978c66ec88fSEmmanuel Vadot				drive-strength = <8>;
979c66ec88fSEmmanuel Vadot			};
980c66ec88fSEmmanuel Vadot
981c66ec88fSEmmanuel Vadot			sdc1_data_off: data-off {
982c66ec88fSEmmanuel Vadot				pins = "sdc1_data";
983c66ec88fSEmmanuel Vadot				bias-pull-up;
984c66ec88fSEmmanuel Vadot				drive-strength = <2>;
985c66ec88fSEmmanuel Vadot			};
986c66ec88fSEmmanuel Vadot
987c66ec88fSEmmanuel Vadot			sdc1_rclk_on: rclk-on {
988c66ec88fSEmmanuel Vadot				pins = "sdc1_rclk";
989c66ec88fSEmmanuel Vadot				bias-pull-down;
990c66ec88fSEmmanuel Vadot			};
991c66ec88fSEmmanuel Vadot
992c66ec88fSEmmanuel Vadot			sdc1_rclk_off: rclk-off {
993c66ec88fSEmmanuel Vadot				pins = "sdc1_rclk";
994c66ec88fSEmmanuel Vadot				bias-pull-down;
995c66ec88fSEmmanuel Vadot			};
9965def4c47SEmmanuel Vadot
9975def4c47SEmmanuel Vadot			sdc2_clk_on: sdc2-clk-on {
9985def4c47SEmmanuel Vadot				pins = "sdc2_clk";
9995def4c47SEmmanuel Vadot				bias-disable;
10005def4c47SEmmanuel Vadot				drive-strength = <10>;
10015def4c47SEmmanuel Vadot			};
10025def4c47SEmmanuel Vadot
10035def4c47SEmmanuel Vadot			sdc2_clk_off: sdc2-clk-off {
10045def4c47SEmmanuel Vadot				pins = "sdc2_clk";
10055def4c47SEmmanuel Vadot				bias-disable;
10065def4c47SEmmanuel Vadot				drive-strength = <2>;
10075def4c47SEmmanuel Vadot			};
10085def4c47SEmmanuel Vadot
10095def4c47SEmmanuel Vadot			sdc2_cmd_on: sdc2-cmd-on {
10105def4c47SEmmanuel Vadot				pins = "sdc2_cmd";
10115def4c47SEmmanuel Vadot				bias-pull-up;
10125def4c47SEmmanuel Vadot				drive-strength = <10>;
10135def4c47SEmmanuel Vadot			};
10145def4c47SEmmanuel Vadot
10155def4c47SEmmanuel Vadot			sdc2_cmd_off: sdc2-cmd-off {
10165def4c47SEmmanuel Vadot				pins = "sdc2_cmd";
10175def4c47SEmmanuel Vadot				bias-pull-up;
10185def4c47SEmmanuel Vadot				drive-strength = <2>;
10195def4c47SEmmanuel Vadot			};
10205def4c47SEmmanuel Vadot
10215def4c47SEmmanuel Vadot			sdc2_data_on: sdc2-data-on {
10225def4c47SEmmanuel Vadot				pins = "sdc2_data";
10235def4c47SEmmanuel Vadot				bias-pull-up;
10245def4c47SEmmanuel Vadot				drive-strength = <10>;
10255def4c47SEmmanuel Vadot			};
10265def4c47SEmmanuel Vadot
10275def4c47SEmmanuel Vadot			sdc2_data_off: sdc2-data-off {
10285def4c47SEmmanuel Vadot				pins = "sdc2_data";
10295def4c47SEmmanuel Vadot				bias-pull-up;
10305def4c47SEmmanuel Vadot				drive-strength = <2>;
10315def4c47SEmmanuel Vadot			};
1032c66ec88fSEmmanuel Vadot		};
1033d5b0e70fSEmmanuel Vadot
1034d5b0e70fSEmmanuel Vadot		mmcc: clock-controller@fd8c0000 {
1035d5b0e70fSEmmanuel Vadot			compatible = "qcom,mmcc-msm8994";
1036d5b0e70fSEmmanuel Vadot			reg = <0xfd8c0000 0x5200>;
1037d5b0e70fSEmmanuel Vadot			#clock-cells = <1>;
1038d5b0e70fSEmmanuel Vadot			#reset-cells = <1>;
1039d5b0e70fSEmmanuel Vadot			#power-domain-cells = <1>;
1040d5b0e70fSEmmanuel Vadot
1041d5b0e70fSEmmanuel Vadot			clock-names = "xo",
1042d5b0e70fSEmmanuel Vadot				      "gpll0",
1043d5b0e70fSEmmanuel Vadot				      "mmssnoc_ahb",
1044d5b0e70fSEmmanuel Vadot				      "oxili_gfx3d_clk_src",
1045d5b0e70fSEmmanuel Vadot				      "dsi0pll",
1046d5b0e70fSEmmanuel Vadot				      "dsi0pllbyte",
1047d5b0e70fSEmmanuel Vadot				      "dsi1pll",
1048d5b0e70fSEmmanuel Vadot				      "dsi1pllbyte",
1049d5b0e70fSEmmanuel Vadot				      "hdmipll";
1050d5b0e70fSEmmanuel Vadot			clocks = <&xo_board>,
1051d5b0e70fSEmmanuel Vadot				 <&gcc GPLL0_OUT_MMSSCC>,
1052d5b0e70fSEmmanuel Vadot				 <&rpmcc RPM_SMD_MMSSNOC_AHB_CLK>,
1053d5b0e70fSEmmanuel Vadot				 <&rpmcc RPM_SMD_GFX3D_CLK_SRC>,
1054d5b0e70fSEmmanuel Vadot				 <0>,
1055d5b0e70fSEmmanuel Vadot				 <0>,
1056d5b0e70fSEmmanuel Vadot				 <0>,
1057d5b0e70fSEmmanuel Vadot				 <0>,
1058d5b0e70fSEmmanuel Vadot				 <0>;
1059d5b0e70fSEmmanuel Vadot
1060d5b0e70fSEmmanuel Vadot			assigned-clocks = <&mmcc MMPLL0_PLL>,
1061d5b0e70fSEmmanuel Vadot					  <&mmcc MMPLL1_PLL>,
1062d5b0e70fSEmmanuel Vadot					  <&mmcc MMPLL3_PLL>,
1063d5b0e70fSEmmanuel Vadot					  <&mmcc MMPLL4_PLL>,
1064d5b0e70fSEmmanuel Vadot					  <&mmcc MMPLL5_PLL>;
1065d5b0e70fSEmmanuel Vadot			assigned-clock-rates = <800000000>,
1066d5b0e70fSEmmanuel Vadot					       <1167000000>,
1067d5b0e70fSEmmanuel Vadot					       <1020000000>,
1068d5b0e70fSEmmanuel Vadot					       <960000000>,
1069d5b0e70fSEmmanuel Vadot					       <600000000>;
1070d5b0e70fSEmmanuel Vadot		};
1071d5b0e70fSEmmanuel Vadot
1072*b97ee269SEmmanuel Vadot		ocmem: sram@fdd00000 {
1073d5b0e70fSEmmanuel Vadot			compatible = "qcom,msm8974-ocmem";
1074d5b0e70fSEmmanuel Vadot			reg = <0xfdd00000 0x2000>,
1075d5b0e70fSEmmanuel Vadot			      <0xfec00000 0x200000>;
1076d5b0e70fSEmmanuel Vadot			reg-names = "ctrl", "mem";
1077*b97ee269SEmmanuel Vadot			ranges = <0 0xfec00000 0x200000>;
1078d5b0e70fSEmmanuel Vadot			clocks = <&rpmcc RPM_SMD_OCMEMGX_CLK>,
1079d5b0e70fSEmmanuel Vadot				 <&mmcc OCMEMCX_OCMEMNOC_CLK>;
1080d5b0e70fSEmmanuel Vadot			clock-names = "core", "iface";
1081d5b0e70fSEmmanuel Vadot
1082d5b0e70fSEmmanuel Vadot			#address-cells = <1>;
1083d5b0e70fSEmmanuel Vadot			#size-cells = <1>;
1084d5b0e70fSEmmanuel Vadot
1085d5b0e70fSEmmanuel Vadot			gmu_sram: gmu-sram@0 {
1086d5b0e70fSEmmanuel Vadot				reg = <0x0 0x180000>;
1087d5b0e70fSEmmanuel Vadot			};
1088d5b0e70fSEmmanuel Vadot		};
1089c66ec88fSEmmanuel Vadot	};
1090c66ec88fSEmmanuel Vadot
10915def4c47SEmmanuel Vadot	timer: timer {
1092c66ec88fSEmmanuel Vadot		compatible = "arm,armv8-timer";
1093c66ec88fSEmmanuel Vadot		interrupts = <GIC_PPI 2 0xff08>,
1094c66ec88fSEmmanuel Vadot			     <GIC_PPI 3 0xff08>,
1095c66ec88fSEmmanuel Vadot			     <GIC_PPI 4 0xff08>,
1096c66ec88fSEmmanuel Vadot			     <GIC_PPI 1 0xff08>;
1097c66ec88fSEmmanuel Vadot	};
1098c66ec88fSEmmanuel Vadot
10995def4c47SEmmanuel Vadot	vph_pwr: vph-pwr-regulator {
1100c66ec88fSEmmanuel Vadot		compatible = "regulator-fixed";
11015def4c47SEmmanuel Vadot		regulator-name = "vph_pwr";
1102c66ec88fSEmmanuel Vadot
1103c66ec88fSEmmanuel Vadot		regulator-min-microvolt = <3600000>;
1104c66ec88fSEmmanuel Vadot		regulator-max-microvolt = <3600000>;
1105c66ec88fSEmmanuel Vadot
1106c66ec88fSEmmanuel Vadot		regulator-always-on;
1107c66ec88fSEmmanuel Vadot	};
1108c66ec88fSEmmanuel Vadot};
1109c66ec88fSEmmanuel Vadot
1110