blob: 52240fc7a1a691d5c834e5ff92dece784c0a8dce [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Georgi Djakov975fd0f2014-05-23 18:12:29 +03002/dts-v1/;
3
Victhor Fosterced44b92019-12-22 21:27:16 -03004#include <dt-bindings/interrupt-controller/arm-gic.h>
Georgi Djakov98a29532014-06-03 17:29:40 +03005#include <dt-bindings/clock/qcom,gcc-apq8084.h>
Georgi Djakov66c04e32014-09-03 19:50:31 +03006#include <dt-bindings/gpio/gpio.h>
Georgi Djakov98a29532014-06-03 17:29:40 +03007
Georgi Djakov975fd0f2014-05-23 18:12:29 +03008/ {
Rob Herringabe60a32019-01-09 10:26:14 -06009 #address-cells = <1>;
10 #size-cells = <1>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +030011 model = "Qualcomm APQ 8084";
12 compatible = "qcom,apq8084";
13 interrupt-parent = <&intc>;
14
Andy Gross64ab8862015-09-24 14:18:56 -050015 reserved-memory {
16 #address-cells = <1>;
17 #size-cells = <1>;
18 ranges;
19
20 smem_mem: smem_region@fa00000 {
21 reg = <0xfa00000 0x200000>;
22 no-map;
23 };
24 };
25
Georgi Djakov975fd0f2014-05-23 18:12:29 +030026 cpus {
27 #address-cells = <1>;
28 #size-cells = <0>;
29
30 cpu@0 {
31 device_type = "cpu";
32 compatible = "qcom,krait";
33 reg = <0>;
34 enable-method = "qcom,kpss-acc-v2";
35 next-level-cache = <&L2>;
36 qcom,acc = <&acc0>;
Lina Iyer030e27f2015-03-25 14:25:31 -060037 qcom,saw = <&saw0>;
Lina Iyerd8664972015-03-25 14:25:34 -060038 cpu-idle-states = <&CPU_SPC>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +030039 };
40
41 cpu@1 {
42 device_type = "cpu";
43 compatible = "qcom,krait";
44 reg = <1>;
45 enable-method = "qcom,kpss-acc-v2";
46 next-level-cache = <&L2>;
47 qcom,acc = <&acc1>;
Lina Iyer030e27f2015-03-25 14:25:31 -060048 qcom,saw = <&saw1>;
Lina Iyerd8664972015-03-25 14:25:34 -060049 cpu-idle-states = <&CPU_SPC>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +030050 };
51
52 cpu@2 {
53 device_type = "cpu";
54 compatible = "qcom,krait";
55 reg = <2>;
56 enable-method = "qcom,kpss-acc-v2";
57 next-level-cache = <&L2>;
58 qcom,acc = <&acc2>;
Lina Iyer030e27f2015-03-25 14:25:31 -060059 qcom,saw = <&saw2>;
Lina Iyerd8664972015-03-25 14:25:34 -060060 cpu-idle-states = <&CPU_SPC>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +030061 };
62
63 cpu@3 {
64 device_type = "cpu";
65 compatible = "qcom,krait";
66 reg = <3>;
67 enable-method = "qcom,kpss-acc-v2";
68 next-level-cache = <&L2>;
69 qcom,acc = <&acc3>;
Lina Iyer030e27f2015-03-25 14:25:31 -060070 qcom,saw = <&saw3>;
Lina Iyerd8664972015-03-25 14:25:34 -060071 cpu-idle-states = <&CPU_SPC>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +030072 };
73
74 L2: l2-cache {
75 compatible = "qcom,arch-cache";
76 cache-level = <2>;
77 qcom,saw = <&saw_l2>;
78 };
Lina Iyerd8664972015-03-25 14:25:34 -060079
80 idle-states {
81 CPU_SPC: spc {
82 compatible = "qcom,idle-state-spc",
83 "arm,idle-state";
84 entry-latency-us = <150>;
85 exit-latency-us = <200>;
86 min-residency-us = <2000>;
87 };
88 };
Georgi Djakov975fd0f2014-05-23 18:12:29 +030089 };
90
Rob Herringabe60a32019-01-09 10:26:14 -060091 memory {
92 device_type = "memory";
93 reg = <0x0 0x0>;
94 };
95
Andy Gross2b9b54662016-06-03 18:25:27 -050096 firmware {
97 scm {
98 compatible = "qcom,scm";
99 clocks = <&gcc GCC_CE1_CLK> , <&gcc GCC_CE1_AXI_CLK>, <&gcc GCC_CE1_AHB_CLK>;
100 clock-names = "core", "bus", "iface";
101 };
102 };
103
Rajendra Nayak226366b2016-08-17 10:48:46 +0530104 thermal-zones {
David Heidelberg88542b12021-10-20 20:00:01 +0200105 cpu0-thermal {
Rajendra Nayak226366b2016-08-17 10:48:46 +0530106 polling-delay-passive = <250>;
107 polling-delay = <1000>;
108
109 thermal-sensors = <&tsens 5>;
110
111 trips {
112 cpu_alert0: trip0 {
113 temperature = <75000>;
114 hysteresis = <2000>;
115 type = "passive";
116 };
117 cpu_crit0: trip1 {
118 temperature = <110000>;
119 hysteresis = <2000>;
120 type = "critical";
121 };
122 };
123 };
124
David Heidelberg88542b12021-10-20 20:00:01 +0200125 cpu1-thermal {
Rajendra Nayak226366b2016-08-17 10:48:46 +0530126 polling-delay-passive = <250>;
127 polling-delay = <1000>;
128
129 thermal-sensors = <&tsens 6>;
130
131 trips {
132 cpu_alert1: trip0 {
133 temperature = <75000>;
134 hysteresis = <2000>;
135 type = "passive";
136 };
137 cpu_crit1: trip1 {
138 temperature = <110000>;
139 hysteresis = <2000>;
140 type = "critical";
141 };
142 };
143 };
144
David Heidelberg88542b12021-10-20 20:00:01 +0200145 cpu2-thermal {
Rajendra Nayak226366b2016-08-17 10:48:46 +0530146 polling-delay-passive = <250>;
147 polling-delay = <1000>;
148
149 thermal-sensors = <&tsens 7>;
150
151 trips {
152 cpu_alert2: trip0 {
153 temperature = <75000>;
154 hysteresis = <2000>;
155 type = "passive";
156 };
157 cpu_crit2: trip1 {
158 temperature = <110000>;
159 hysteresis = <2000>;
160 type = "critical";
161 };
162 };
163 };
164
David Heidelberg88542b12021-10-20 20:00:01 +0200165 cpu3-thermal {
Rajendra Nayak226366b2016-08-17 10:48:46 +0530166 polling-delay-passive = <250>;
167 polling-delay = <1000>;
168
169 thermal-sensors = <&tsens 8>;
170
171 trips {
172 cpu_alert3: trip0 {
173 temperature = <75000>;
174 hysteresis = <2000>;
175 type = "passive";
176 };
177 cpu_crit3: trip1 {
178 temperature = <110000>;
179 hysteresis = <2000>;
180 type = "critical";
181 };
182 };
183 };
184 };
185
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300186 cpu-pmu {
187 compatible = "qcom,krait-pmu";
Victhor Fosterced44b92019-12-22 21:27:16 -0300188 interrupts = <GIC_PPI 7 0xf04>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300189 };
190
Stephen Boyd30fc4212016-01-06 17:41:51 -0800191 clocks {
Ritesh Harjania91b2e62016-11-21 12:07:14 +0530192 xo_board: xo_board {
Stephen Boyd30fc4212016-01-06 17:41:51 -0800193 compatible = "fixed-clock";
194 #clock-cells = <0>;
195 clock-frequency = <19200000>;
196 };
197
Ritesh Harjania91b2e62016-11-21 12:07:14 +0530198 sleep_clk: sleep_clk {
Stephen Boyd30fc4212016-01-06 17:41:51 -0800199 compatible = "fixed-clock";
200 #clock-cells = <0>;
201 clock-frequency = <32768>;
202 };
203 };
204
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300205 timer {
206 compatible = "arm,armv7-timer";
Victhor Fosterced44b92019-12-22 21:27:16 -0300207 interrupts = <GIC_PPI 2 0xf08>,
208 <GIC_PPI 3 0xf08>,
209 <GIC_PPI 4 0xf08>,
210 <GIC_PPI 1 0xf08>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300211 clock-frequency = <19200000>;
212 };
213
Andy Gross64ab8862015-09-24 14:18:56 -0500214 smem {
215 compatible = "qcom,smem";
216
217 qcom,rpm-msg-ram = <&rpm_msg_ram>;
218 memory-region = <&smem_mem>;
219
220 hwlocks = <&tcsr_mutex 3>;
221 };
222
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300223 soc: soc {
224 #address-cells = <1>;
225 #size-cells = <1>;
226 ranges;
227 compatible = "simple-bus";
228
229 intc: interrupt-controller@f9000000 {
230 compatible = "qcom,msm-qgic2";
231 interrupt-controller;
232 #interrupt-cells = <3>;
233 reg = <0xf9000000 0x1000>,
234 <0xf9002000 0x1000>;
235 };
236
Andy Gross53ced992015-09-24 14:18:57 -0500237 apcs: syscon@f9011000 {
238 compatible = "syscon";
239 reg = <0xf9011000 0x1000>;
240 };
241
Rajendra Nayak226366b2016-08-17 10:48:46 +0530242 qfprom: qfprom@fc4bc000 {
243 #address-cells = <1>;
244 #size-cells = <1>;
245 compatible = "qcom,qfprom";
246 reg = <0xfc4bc000 0x1000>;
247 tsens_calib: calib@d0 {
248 reg = <0xd0 0x18>;
249 };
250 tsens_backup: backup@440 {
251 reg = <0x440 0x10>;
252 };
253 };
254
255 tsens: thermal-sensor@fc4a8000 {
256 compatible = "qcom,msm8974-tsens";
Victhor Fosterd5897d62019-12-22 20:37:03 -0300257 reg = <0xfc4a9000 0x1000>, /* TM */
258 <0xfc4a8000 0x1000>; /* SROT */
Rajendra Nayak226366b2016-08-17 10:48:46 +0530259 nvmem-cells = <&tsens_calib>, <&tsens_backup>;
260 nvmem-cell-names = "calib", "calib_backup";
Victhor Fosterd5897d62019-12-22 20:37:03 -0300261 #qcom,sensors = <11>;
Rajendra Nayak226366b2016-08-17 10:48:46 +0530262 #thermal-sensor-cells = <1>;
263 };
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300264 timer@f9020000 {
265 #address-cells = <1>;
266 #size-cells = <1>;
267 ranges;
268 compatible = "arm,armv7-timer-mem";
269 reg = <0xf9020000 0x1000>;
270 clock-frequency = <19200000>;
271
272 frame@f9021000 {
273 frame-number = <0>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300274 interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
275 <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300276 reg = <0xf9021000 0x1000>,
277 <0xf9022000 0x1000>;
278 };
279
280 frame@f9023000 {
281 frame-number = <1>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300282 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300283 reg = <0xf9023000 0x1000>;
284 status = "disabled";
285 };
286
287 frame@f9024000 {
288 frame-number = <2>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300289 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300290 reg = <0xf9024000 0x1000>;
291 status = "disabled";
292 };
293
294 frame@f9025000 {
295 frame-number = <3>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300296 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300297 reg = <0xf9025000 0x1000>;
298 status = "disabled";
299 };
300
301 frame@f9026000 {
302 frame-number = <4>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300303 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300304 reg = <0xf9026000 0x1000>;
305 status = "disabled";
306 };
307
308 frame@f9027000 {
309 frame-number = <5>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300310 interrupts = <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300311 reg = <0xf9027000 0x1000>;
312 status = "disabled";
313 };
314
315 frame@f9028000 {
316 frame-number = <6>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300317 interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300318 reg = <0xf9028000 0x1000>;
319 status = "disabled";
320 };
321 };
322
Lina Iyer030e27f2015-03-25 14:25:31 -0600323 saw0: power-controller@f9089000 {
324 compatible = "qcom,apq8084-saw2-v2.1-cpu", "qcom,saw2";
325 reg = <0xf9089000 0x1000>, <0xf9009000 0x1000>;
326 };
327
328 saw1: power-controller@f9099000 {
329 compatible = "qcom,apq8084-saw2-v2.1-cpu", "qcom,saw2";
330 reg = <0xf9099000 0x1000>, <0xf9009000 0x1000>;
331 };
332
333 saw2: power-controller@f90a9000 {
334 compatible = "qcom,apq8084-saw2-v2.1-cpu", "qcom,saw2";
335 reg = <0xf90a9000 0x1000>, <0xf9009000 0x1000>;
336 };
337
338 saw3: power-controller@f90b9000 {
339 compatible = "qcom,apq8084-saw2-v2.1-cpu", "qcom,saw2";
340 reg = <0xf90b9000 0x1000>, <0xf9009000 0x1000>;
341 };
342
343 saw_l2: power-controller@f9012000 {
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300344 compatible = "qcom,saw2";
345 reg = <0xf9012000 0x1000>;
346 regulator;
347 };
348
349 acc0: clock-controller@f9088000 {
350 compatible = "qcom,kpss-acc-v2";
351 reg = <0xf9088000 0x1000>,
352 <0xf9008000 0x1000>;
353 };
354
355 acc1: clock-controller@f9098000 {
356 compatible = "qcom,kpss-acc-v2";
357 reg = <0xf9098000 0x1000>,
358 <0xf9008000 0x1000>;
359 };
360
361 acc2: clock-controller@f90a8000 {
362 compatible = "qcom,kpss-acc-v2";
363 reg = <0xf90a8000 0x1000>,
364 <0xf9008000 0x1000>;
365 };
366
367 acc3: clock-controller@f90b8000 {
368 compatible = "qcom,kpss-acc-v2";
369 reg = <0xf90b8000 0x1000>,
370 <0xf9008000 0x1000>;
371 };
372
373 restart@fc4ab000 {
374 compatible = "qcom,pshold";
375 reg = <0xfc4ab000 0x4>;
376 };
Georgi Djakov98a29532014-06-03 17:29:40 +0300377
378 gcc: clock-controller@fc400000 {
379 compatible = "qcom,gcc-apq8084";
380 #clock-cells = <1>;
381 #reset-cells = <1>;
Rajendra Nayak89c7e672015-10-01 14:56:02 +0530382 #power-domain-cells = <1>;
Georgi Djakov98a29532014-06-03 17:29:40 +0300383 reg = <0xfc400000 0x4000>;
384 };
385
Andy Gross64ab8862015-09-24 14:18:56 -0500386 tcsr_mutex_regs: syscon@fd484000 {
387 compatible = "syscon";
388 reg = <0xfd484000 0x2000>;
389 };
390
391 tcsr_mutex: hwlock {
392 compatible = "qcom,tcsr-mutex";
393 syscon = <&tcsr_mutex_regs 0 0x80>;
394 #hwlock-cells = <1>;
395 };
396
397 rpm_msg_ram: memory@fc428000 {
398 compatible = "qcom,rpm-msg-ram";
399 reg = <0xfc428000 0x4000>;
400 };
401
Georgi Djakov44980b22014-09-03 19:28:15 +0300402 tlmm: pinctrl@fd510000 {
403 compatible = "qcom,apq8084-pinctrl";
404 reg = <0xfd510000 0x4000>;
405 gpio-controller;
Christian Lamparter8b99dc02020-01-08 13:54:55 +0100406 gpio-ranges = <&tlmm 0 0 147>;
Georgi Djakov44980b22014-09-03 19:28:15 +0300407 #gpio-cells = <2>;
408 interrupt-controller;
409 #interrupt-cells = <2>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300410 interrupts = <GIC_SPI 208 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov44980b22014-09-03 19:28:15 +0300411 };
412
Stephen Boyd10bfcfe2015-06-16 14:31:44 -0700413 blsp2_uart2: serial@f995e000 {
Georgi Djakov14ff1c42014-06-03 17:29:41 +0300414 compatible = "qcom,msm-uartdm-v1.4", "qcom,msm-uartdm";
415 reg = <0xf995e000 0x1000>;
Victhor Fosterced44b92019-12-22 21:27:16 -0300416 interrupts = <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov14ff1c42014-06-03 17:29:41 +0300417 clocks = <&gcc GCC_BLSP2_UART2_APPS_CLK>, <&gcc GCC_BLSP2_AHB_CLK>;
418 clock-names = "core", "iface";
419 status = "disabled";
420 };
Georgi Djakov66c04e32014-09-03 19:50:31 +0300421
422 sdhci@f9824900 {
Douglas Anderson28d13d32018-11-05 13:09:20 -0800423 compatible = "qcom,apq8084-sdhci", "qcom,sdhci-msm-v4";
Georgi Djakov66c04e32014-09-03 19:50:31 +0300424 reg = <0xf9824900 0x11c>, <0xf9824000 0x800>;
425 reg-names = "hc_mem", "core_mem";
Victhor Fosterced44b92019-12-22 21:27:16 -0300426 interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov66c04e32014-09-03 19:50:31 +0300427 interrupt-names = "hc_irq", "pwr_irq";
Ritesh Harjania91b2e62016-11-21 12:07:14 +0530428 clocks = <&gcc GCC_SDCC1_APPS_CLK>,
429 <&gcc GCC_SDCC1_AHB_CLK>,
430 <&xo_board>;
431 clock-names = "core", "iface", "xo";
Georgi Djakov66c04e32014-09-03 19:50:31 +0300432 status = "disabled";
433 };
434
435 sdhci@f98a4900 {
Douglas Anderson28d13d32018-11-05 13:09:20 -0800436 compatible = "qcom,apq8084-sdhci", "qcom,sdhci-msm-v4";
Georgi Djakov66c04e32014-09-03 19:50:31 +0300437 reg = <0xf98a4900 0x11c>, <0xf98a4000 0x800>;
438 reg-names = "hc_mem", "core_mem";
Victhor Fosterced44b92019-12-22 21:27:16 -0300439 interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>, <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
Georgi Djakov66c04e32014-09-03 19:50:31 +0300440 interrupt-names = "hc_irq", "pwr_irq";
Ritesh Harjania91b2e62016-11-21 12:07:14 +0530441 clocks = <&gcc GCC_SDCC2_APPS_CLK>,
442 <&gcc GCC_SDCC2_AHB_CLK>,
443 <&xo_board>;
444 clock-names = "core", "iface", "xo";
Georgi Djakov66c04e32014-09-03 19:50:31 +0300445 status = "disabled";
446 };
Ivan T. Ivanovaf22e462015-02-03 14:17:58 +0200447
448 spmi_bus: spmi@fc4cf000 {
449 compatible = "qcom,spmi-pmic-arb";
450 reg-names = "core", "intr", "cnfg";
451 reg = <0xfc4cf000 0x1000>,
452 <0xfc4cb000 0x1000>,
453 <0xfc4ca000 0x1000>;
454 interrupt-names = "periph_irq";
Victhor Fosterced44b92019-12-22 21:27:16 -0300455 interrupts = <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>;
Ivan T. Ivanovaf22e462015-02-03 14:17:58 +0200456 qcom,ee = <0>;
457 qcom,channel = <0>;
458 #address-cells = <2>;
459 #size-cells = <0>;
460 interrupt-controller;
461 #interrupt-cells = <4>;
462 };
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300463 };
Andy Gross53ced992015-09-24 14:18:57 -0500464
465 smd {
466 compatible = "qcom,smd";
467
468 rpm {
Victhor Fosterced44b92019-12-22 21:27:16 -0300469 interrupts = <GIC_SPI 168 IRQ_TYPE_EDGE_RISING>;
Andy Gross53ced992015-09-24 14:18:57 -0500470 qcom,ipc = <&apcs 8 0>;
471 qcom,smd-edge = <15>;
472
473 rpm_requests {
474 compatible = "qcom,rpm-apq8084";
475 qcom,smd-channels = "rpm_requests";
Andy Gross4add1072015-09-24 14:18:58 -0500476
477 pma8084-regulators {
478 compatible = "qcom,rpm-pma8084-regulators";
479
480 pma8084_s1: s1 {};
481 pma8084_s2: s2 {};
482 pma8084_s3: s3 {};
483 pma8084_s4: s4 {};
484 pma8084_s5: s5 {};
485 pma8084_s6: s6 {};
486 pma8084_s7: s7 {};
487 pma8084_s8: s8 {};
488 pma8084_s9: s9 {};
489 pma8084_s10: s10 {};
490 pma8084_s11: s11 {};
491 pma8084_s12: s12 {};
492
493 pma8084_l1: l1 {};
494 pma8084_l2: l2 {};
495 pma8084_l3: l3 {};
496 pma8084_l4: l4 {};
497 pma8084_l5: l5 {};
498 pma8084_l6: l6 {};
499 pma8084_l7: l7 {};
500 pma8084_l8: l8 {};
501 pma8084_l9: l9 {};
502 pma8084_l10: l10 {};
503 pma8084_l11: l11 {};
504 pma8084_l12: l12 {};
505 pma8084_l13: l13 {};
506 pma8084_l14: l14 {};
507 pma8084_l15: l15 {};
508 pma8084_l16: l16 {};
509 pma8084_l17: l17 {};
510 pma8084_l18: l18 {};
511 pma8084_l19: l19 {};
512 pma8084_l20: l20 {};
513 pma8084_l21: l21 {};
514 pma8084_l22: l22 {};
515 pma8084_l23: l23 {};
516 pma8084_l24: l24 {};
517 pma8084_l25: l25 {};
518 pma8084_l26: l26 {};
519 pma8084_l27: l27 {};
520
521 pma8084_lvs1: lvs1 {};
522 pma8084_lvs2: lvs2 {};
523 pma8084_lvs3: lvs3 {};
524 pma8084_lvs4: lvs4 {};
525
526 pma8084_5vs1: 5vs1 {};
527 };
Andy Gross53ced992015-09-24 14:18:57 -0500528 };
529 };
530 };
Georgi Djakov975fd0f2014-05-23 18:12:29 +0300531};