1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2019-2021, 2023 The Linux Foundation. All rights reserved.
4 */
5
6#include <linux/module.h>
7#include <linux/mod_devicetable.h>
8#include <linux/platform_device.h>
9
10#include "pinctrl-msm.h"
11
12#define REG_SIZE 0x1000
13#define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
14 { \
15 .grp = PINCTRL_PINGROUP("gpio" #id, \
16 gpio##id##_pins, \
17 ARRAY_SIZE(gpio##id##_pins)), \
18 .funcs = (int[]){ \
19 msm_mux_gpio, /* gpio mode */ \
20 msm_mux_##f1, \
21 msm_mux_##f2, \
22 msm_mux_##f3, \
23 msm_mux_##f4, \
24 msm_mux_##f5, \
25 msm_mux_##f6, \
26 msm_mux_##f7, \
27 msm_mux_##f8, \
28 msm_mux_##f9 \
29 }, \
30 .nfuncs = 10, \
31 .ctl_reg = REG_SIZE * id, \
32 .io_reg = 0x4 + REG_SIZE * id, \
33 .intr_cfg_reg = 0x8 + REG_SIZE * id, \
34 .intr_status_reg = 0xc + REG_SIZE * id, \
35 .intr_target_reg = 0x8 + REG_SIZE * id, \
36 .mux_bit = 2, \
37 .pull_bit = 0, \
38 .drv_bit = 6, \
39 .oe_bit = 9, \
40 .in_bit = 0, \
41 .out_bit = 1, \
42 .intr_enable_bit = 0, \
43 .intr_status_bit = 0, \
44 .intr_target_bit = 5, \
45 .intr_target_kpss_val = 3, \
46 .intr_raw_status_bit = 4, \
47 .intr_polarity_bit = 1, \
48 .intr_detection_bit = 2, \
49 .intr_detection_width = 2, \
50 }
51
52static const struct pinctrl_pin_desc ipq5018_pins[] = {
53 PINCTRL_PIN(0, "GPIO_0"),
54 PINCTRL_PIN(1, "GPIO_1"),
55 PINCTRL_PIN(2, "GPIO_2"),
56 PINCTRL_PIN(3, "GPIO_3"),
57 PINCTRL_PIN(4, "GPIO_4"),
58 PINCTRL_PIN(5, "GPIO_5"),
59 PINCTRL_PIN(6, "GPIO_6"),
60 PINCTRL_PIN(7, "GPIO_7"),
61 PINCTRL_PIN(8, "GPIO_8"),
62 PINCTRL_PIN(9, "GPIO_9"),
63 PINCTRL_PIN(10, "GPIO_10"),
64 PINCTRL_PIN(11, "GPIO_11"),
65 PINCTRL_PIN(12, "GPIO_12"),
66 PINCTRL_PIN(13, "GPIO_13"),
67 PINCTRL_PIN(14, "GPIO_14"),
68 PINCTRL_PIN(15, "GPIO_15"),
69 PINCTRL_PIN(16, "GPIO_16"),
70 PINCTRL_PIN(17, "GPIO_17"),
71 PINCTRL_PIN(18, "GPIO_18"),
72 PINCTRL_PIN(19, "GPIO_19"),
73 PINCTRL_PIN(20, "GPIO_20"),
74 PINCTRL_PIN(21, "GPIO_21"),
75 PINCTRL_PIN(22, "GPIO_22"),
76 PINCTRL_PIN(23, "GPIO_23"),
77 PINCTRL_PIN(24, "GPIO_24"),
78 PINCTRL_PIN(25, "GPIO_25"),
79 PINCTRL_PIN(26, "GPIO_26"),
80 PINCTRL_PIN(27, "GPIO_27"),
81 PINCTRL_PIN(28, "GPIO_28"),
82 PINCTRL_PIN(29, "GPIO_29"),
83 PINCTRL_PIN(30, "GPIO_30"),
84 PINCTRL_PIN(31, "GPIO_31"),
85 PINCTRL_PIN(32, "GPIO_32"),
86 PINCTRL_PIN(33, "GPIO_33"),
87 PINCTRL_PIN(34, "GPIO_34"),
88 PINCTRL_PIN(35, "GPIO_35"),
89 PINCTRL_PIN(36, "GPIO_36"),
90 PINCTRL_PIN(37, "GPIO_37"),
91 PINCTRL_PIN(38, "GPIO_38"),
92 PINCTRL_PIN(39, "GPIO_39"),
93 PINCTRL_PIN(40, "GPIO_40"),
94 PINCTRL_PIN(41, "GPIO_41"),
95 PINCTRL_PIN(42, "GPIO_42"),
96 PINCTRL_PIN(43, "GPIO_43"),
97 PINCTRL_PIN(44, "GPIO_44"),
98 PINCTRL_PIN(45, "GPIO_45"),
99 PINCTRL_PIN(46, "GPIO_46"),
100};
101
102#define DECLARE_MSM_GPIO_PINS(pin) \
103 static const unsigned int gpio##pin##_pins[] = { pin }
104DECLARE_MSM_GPIO_PINS(0);
105DECLARE_MSM_GPIO_PINS(1);
106DECLARE_MSM_GPIO_PINS(2);
107DECLARE_MSM_GPIO_PINS(3);
108DECLARE_MSM_GPIO_PINS(4);
109DECLARE_MSM_GPIO_PINS(5);
110DECLARE_MSM_GPIO_PINS(6);
111DECLARE_MSM_GPIO_PINS(7);
112DECLARE_MSM_GPIO_PINS(8);
113DECLARE_MSM_GPIO_PINS(9);
114DECLARE_MSM_GPIO_PINS(10);
115DECLARE_MSM_GPIO_PINS(11);
116DECLARE_MSM_GPIO_PINS(12);
117DECLARE_MSM_GPIO_PINS(13);
118DECLARE_MSM_GPIO_PINS(14);
119DECLARE_MSM_GPIO_PINS(15);
120DECLARE_MSM_GPIO_PINS(16);
121DECLARE_MSM_GPIO_PINS(17);
122DECLARE_MSM_GPIO_PINS(18);
123DECLARE_MSM_GPIO_PINS(19);
124DECLARE_MSM_GPIO_PINS(20);
125DECLARE_MSM_GPIO_PINS(21);
126DECLARE_MSM_GPIO_PINS(22);
127DECLARE_MSM_GPIO_PINS(23);
128DECLARE_MSM_GPIO_PINS(24);
129DECLARE_MSM_GPIO_PINS(25);
130DECLARE_MSM_GPIO_PINS(26);
131DECLARE_MSM_GPIO_PINS(27);
132DECLARE_MSM_GPIO_PINS(28);
133DECLARE_MSM_GPIO_PINS(29);
134DECLARE_MSM_GPIO_PINS(30);
135DECLARE_MSM_GPIO_PINS(31);
136DECLARE_MSM_GPIO_PINS(32);
137DECLARE_MSM_GPIO_PINS(33);
138DECLARE_MSM_GPIO_PINS(34);
139DECLARE_MSM_GPIO_PINS(35);
140DECLARE_MSM_GPIO_PINS(36);
141DECLARE_MSM_GPIO_PINS(37);
142DECLARE_MSM_GPIO_PINS(38);
143DECLARE_MSM_GPIO_PINS(39);
144DECLARE_MSM_GPIO_PINS(40);
145DECLARE_MSM_GPIO_PINS(41);
146DECLARE_MSM_GPIO_PINS(42);
147DECLARE_MSM_GPIO_PINS(43);
148DECLARE_MSM_GPIO_PINS(44);
149DECLARE_MSM_GPIO_PINS(45);
150DECLARE_MSM_GPIO_PINS(46);
151
152enum ipq5018_functions {
153 msm_mux_atest_char,
154 msm_mux_audio_pdm0,
155 msm_mux_audio_pdm1,
156 msm_mux_audio_rxbclk,
157 msm_mux_audio_rxd,
158 msm_mux_audio_rxfsync,
159 msm_mux_audio_rxmclk,
160 msm_mux_audio_txbclk,
161 msm_mux_audio_txd,
162 msm_mux_audio_txfsync,
163 msm_mux_audio_txmclk,
164 msm_mux_blsp0_i2c,
165 msm_mux_blsp0_spi,
166 msm_mux_blsp0_uart0,
167 msm_mux_blsp0_uart1,
168 msm_mux_blsp1_i2c0,
169 msm_mux_blsp1_i2c1,
170 msm_mux_blsp1_spi0,
171 msm_mux_blsp1_spi1,
172 msm_mux_blsp1_uart0,
173 msm_mux_blsp1_uart1,
174 msm_mux_blsp1_uart2,
175 msm_mux_blsp2_i2c0,
176 msm_mux_blsp2_i2c1,
177 msm_mux_blsp2_spi,
178 msm_mux_blsp2_spi0,
179 msm_mux_blsp2_spi1,
180 msm_mux_btss,
181 msm_mux_burn0,
182 msm_mux_burn1,
183 msm_mux_cri_trng,
184 msm_mux_cri_trng0,
185 msm_mux_cri_trng1,
186 msm_mux_cxc_clk,
187 msm_mux_cxc_data,
188 msm_mux_dbg_out,
189 msm_mux_eud_gpio,
190 msm_mux_gcc_plltest,
191 msm_mux_gcc_tlmm,
192 msm_mux_gpio,
193 msm_mux_led0,
194 msm_mux_led2,
195 msm_mux_mac0,
196 msm_mux_mac1,
197 msm_mux_mdc,
198 msm_mux_mdio,
199 msm_mux_pcie0_clk,
200 msm_mux_pcie0_wake,
201 msm_mux_pcie1_clk,
202 msm_mux_pcie1_wake,
203 msm_mux_pll_test,
204 msm_mux_prng_rosc,
205 msm_mux_pwm0,
206 msm_mux_pwm1,
207 msm_mux_pwm2,
208 msm_mux_pwm3,
209 msm_mux_qdss_cti_trig_in_a0,
210 msm_mux_qdss_cti_trig_in_a1,
211 msm_mux_qdss_cti_trig_in_b0,
212 msm_mux_qdss_cti_trig_in_b1,
213 msm_mux_qdss_cti_trig_out_a0,
214 msm_mux_qdss_cti_trig_out_a1,
215 msm_mux_qdss_cti_trig_out_b0,
216 msm_mux_qdss_cti_trig_out_b1,
217 msm_mux_qdss_traceclk_a,
218 msm_mux_qdss_traceclk_b,
219 msm_mux_qdss_tracectl_a,
220 msm_mux_qdss_tracectl_b,
221 msm_mux_qdss_tracedata_a,
222 msm_mux_qdss_tracedata_b,
223 msm_mux_qspi_clk,
224 msm_mux_qspi_cs,
225 msm_mux_qspi_data,
226 msm_mux_reset_out,
227 msm_mux_sdc1_clk,
228 msm_mux_sdc1_cmd,
229 msm_mux_sdc1_data,
230 msm_mux_wci_txd,
231 msm_mux_wci_rxd,
232 msm_mux_wsa_swrm,
233 msm_mux_wsi_clk3,
234 msm_mux_wsi_data3,
235 msm_mux_wsis_reset,
236 msm_mux_xfem,
237 msm_mux__,
238};
239
240static const char * const atest_char_groups[] = {
241 "gpio0", "gpio1", "gpio2", "gpio3", "gpio37",
242};
243
244static const char * const wci_txd_groups[] = {
245 "gpio0", "gpio1", "gpio2", "gpio3",
246 "gpio42", "gpio43", "gpio44", "gpio45",
247};
248
249static const char * const wci_rxd_groups[] = {
250 "gpio0", "gpio1", "gpio2", "gpio3",
251 "gpio42", "gpio43", "gpio44", "gpio45",
252};
253
254static const char * const xfem_groups[] = {
255 "gpio0", "gpio1", "gpio2", "gpio3",
256 "gpio42", "gpio43", "gpio44", "gpio45",
257};
258
259static const char * const qdss_cti_trig_out_a0_groups[] = {
260 "gpio0",
261};
262
263static const char * const qdss_cti_trig_in_a0_groups[] = {
264 "gpio1",
265};
266
267static const char * const qdss_cti_trig_out_a1_groups[] = {
268 "gpio2",
269};
270
271static const char * const qdss_cti_trig_in_a1_groups[] = {
272 "gpio3",
273};
274
275static const char * const sdc1_data_groups[] = {
276 "gpio4", "gpio5", "gpio6", "gpio7",
277};
278
279static const char * const qspi_data_groups[] = {
280 "gpio4",
281 "gpio5",
282 "gpio6",
283 "gpio7",
284};
285
286static const char * const blsp1_spi1_groups[] = {
287 "gpio4", "gpio5", "gpio6", "gpio7",
288};
289
290static const char * const btss_groups[] = {
291 "gpio4", "gpio5", "gpio6", "gpio7", "gpio8", "gpio17", "gpio18",
292 "gpio19", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
293};
294
295static const char * const dbg_out_groups[] = {
296 "gpio4",
297};
298
299static const char * const qdss_traceclk_a_groups[] = {
300 "gpio4",
301};
302
303static const char * const burn0_groups[] = {
304 "gpio4",
305};
306
307static const char * const cxc_clk_groups[] = {
308 "gpio5",
309};
310
311static const char * const blsp1_i2c1_groups[] = {
312 "gpio5", "gpio6",
313};
314
315static const char * const qdss_tracectl_a_groups[] = {
316 "gpio5",
317};
318
319static const char * const burn1_groups[] = {
320 "gpio5",
321};
322
323static const char * const cxc_data_groups[] = {
324 "gpio6",
325};
326
327static const char * const qdss_tracedata_a_groups[] = {
328 "gpio6", "gpio7", "gpio8", "gpio9", "gpio10", "gpio11", "gpio12",
329 "gpio13", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19",
330 "gpio20", "gpio21",
331};
332
333static const char * const mac0_groups[] = {
334 "gpio7",
335};
336
337static const char * const sdc1_cmd_groups[] = {
338 "gpio8",
339};
340
341static const char * const qspi_cs_groups[] = {
342 "gpio8",
343};
344
345static const char * const mac1_groups[] = {
346 "gpio8",
347};
348
349static const char * const sdc1_clk_groups[] = {
350 "gpio9",
351};
352
353static const char * const qspi_clk_groups[] = {
354 "gpio9",
355};
356
357static const char * const blsp0_spi_groups[] = {
358 "gpio10", "gpio11", "gpio12", "gpio13",
359};
360
361static const char * const blsp1_uart0_groups[] = {
362 "gpio10", "gpio11", "gpio12", "gpio13",
363};
364
365static const char * const gcc_plltest_groups[] = {
366 "gpio10", "gpio12",
367};
368
369static const char * const gcc_tlmm_groups[] = {
370 "gpio11",
371};
372
373static const char * const blsp0_i2c_groups[] = {
374 "gpio12", "gpio13",
375};
376
377static const char * const pcie0_clk_groups[] = {
378 "gpio14",
379};
380
381static const char * const cri_trng0_groups[] = {
382 "gpio14",
383};
384
385static const char * const cri_trng1_groups[] = {
386 "gpio15",
387};
388
389static const char * const pcie0_wake_groups[] = {
390 "gpio16",
391};
392
393static const char * const cri_trng_groups[] = {
394 "gpio16",
395};
396
397static const char * const pcie1_clk_groups[] = {
398 "gpio17",
399};
400
401static const char * const prng_rosc_groups[] = {
402 "gpio17",
403};
404
405static const char * const blsp1_spi0_groups[] = {
406 "gpio18", "gpio19", "gpio20", "gpio21",
407};
408
409static const char * const pcie1_wake_groups[] = {
410 "gpio19",
411};
412
413static const char * const blsp1_i2c0_groups[] = {
414 "gpio19", "gpio20",
415};
416
417static const char * const blsp0_uart0_groups[] = {
418 "gpio20", "gpio21",
419};
420
421static const char * const pll_test_groups[] = {
422 "gpio22",
423};
424
425static const char * const eud_gpio_groups[] = {
426 "gpio22", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
427};
428
429static const char * const audio_rxmclk_groups[] = {
430 "gpio23", "gpio23",
431};
432
433static const char * const audio_pdm0_groups[] = {
434 "gpio23", "gpio24",
435};
436
437static const char * const blsp2_spi1_groups[] = {
438 "gpio23", "gpio24", "gpio25", "gpio26",
439};
440
441static const char * const blsp1_uart2_groups[] = {
442 "gpio23", "gpio24", "gpio25", "gpio26",
443};
444
445static const char * const qdss_tracedata_b_groups[] = {
446 "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", "gpio29",
447 "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35", "gpio36",
448 "gpio37", "gpio38",
449};
450
451static const char * const audio_rxbclk_groups[] = {
452 "gpio24",
453};
454
455static const char * const audio_rxfsync_groups[] = {
456 "gpio25",
457};
458
459static const char * const audio_pdm1_groups[] = {
460 "gpio25", "gpio26",
461};
462
463static const char * const blsp2_i2c1_groups[] = {
464 "gpio25", "gpio26",
465};
466
467static const char * const audio_rxd_groups[] = {
468 "gpio26",
469};
470
471static const char * const audio_txmclk_groups[] = {
472 "gpio27", "gpio27",
473};
474
475static const char * const wsa_swrm_groups[] = {
476 "gpio27", "gpio28",
477};
478
479static const char * const blsp2_spi_groups[] = {
480 "gpio27",
481};
482
483static const char * const audio_txbclk_groups[] = {
484 "gpio28",
485};
486
487static const char * const blsp0_uart1_groups[] = {
488 "gpio28", "gpio29",
489};
490
491static const char * const audio_txfsync_groups[] = {
492 "gpio29",
493};
494
495static const char * const audio_txd_groups[] = {
496 "gpio30",
497};
498
499static const char * const wsis_reset_groups[] = {
500 "gpio30",
501};
502
503static const char * const blsp2_spi0_groups[] = {
504 "gpio31", "gpio32", "gpio33", "gpio34",
505};
506
507static const char * const blsp1_uart1_groups[] = {
508 "gpio31", "gpio32", "gpio33", "gpio34",
509};
510
511static const char * const blsp2_i2c0_groups[] = {
512 "gpio33", "gpio34",
513};
514
515static const char * const mdc_groups[] = {
516 "gpio36",
517};
518
519static const char * const wsi_clk3_groups[] = {
520 "gpio36",
521};
522
523static const char * const mdio_groups[] = {
524 "gpio37",
525};
526
527static const char * const wsi_data3_groups[] = {
528 "gpio37",
529};
530
531static const char * const qdss_traceclk_b_groups[] = {
532 "gpio39",
533};
534
535static const char * const reset_out_groups[] = {
536 "gpio40",
537};
538
539static const char * const qdss_tracectl_b_groups[] = {
540 "gpio40",
541};
542
543static const char * const pwm0_groups[] = {
544 "gpio42",
545};
546
547static const char * const qdss_cti_trig_out_b0_groups[] = {
548 "gpio42",
549};
550
551static const char * const pwm1_groups[] = {
552 "gpio43",
553};
554
555static const char * const qdss_cti_trig_in_b0_groups[] = {
556 "gpio43",
557};
558
559static const char * const pwm2_groups[] = {
560 "gpio44",
561};
562
563static const char * const qdss_cti_trig_out_b1_groups[] = {
564 "gpio44",
565};
566
567static const char * const pwm3_groups[] = {
568 "gpio45",
569};
570
571static const char * const qdss_cti_trig_in_b1_groups[] = {
572 "gpio45",
573};
574
575static const char * const led0_groups[] = {
576 "gpio46", "gpio30", "gpio10",
577};
578
579static const char * const led2_groups[] = {
580 "gpio30",
581};
582
583static const char * const gpio_groups[] = {
584 "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
585 "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
586 "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
587 "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
588 "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
589 "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
590 "gpio43", "gpio44", "gpio45", "gpio46",
591};
592
593static const struct pinfunction ipq5018_functions[] = {
594 MSM_PIN_FUNCTION(atest_char),
595 MSM_PIN_FUNCTION(audio_pdm0),
596 MSM_PIN_FUNCTION(audio_pdm1),
597 MSM_PIN_FUNCTION(audio_rxbclk),
598 MSM_PIN_FUNCTION(audio_rxd),
599 MSM_PIN_FUNCTION(audio_rxfsync),
600 MSM_PIN_FUNCTION(audio_rxmclk),
601 MSM_PIN_FUNCTION(audio_txbclk),
602 MSM_PIN_FUNCTION(audio_txd),
603 MSM_PIN_FUNCTION(audio_txfsync),
604 MSM_PIN_FUNCTION(audio_txmclk),
605 MSM_PIN_FUNCTION(blsp0_i2c),
606 MSM_PIN_FUNCTION(blsp0_spi),
607 MSM_PIN_FUNCTION(blsp0_uart0),
608 MSM_PIN_FUNCTION(blsp0_uart1),
609 MSM_PIN_FUNCTION(blsp1_i2c0),
610 MSM_PIN_FUNCTION(blsp1_i2c1),
611 MSM_PIN_FUNCTION(blsp1_spi0),
612 MSM_PIN_FUNCTION(blsp1_spi1),
613 MSM_PIN_FUNCTION(blsp1_uart0),
614 MSM_PIN_FUNCTION(blsp1_uart1),
615 MSM_PIN_FUNCTION(blsp1_uart2),
616 MSM_PIN_FUNCTION(blsp2_i2c0),
617 MSM_PIN_FUNCTION(blsp2_i2c1),
618 MSM_PIN_FUNCTION(blsp2_spi),
619 MSM_PIN_FUNCTION(blsp2_spi0),
620 MSM_PIN_FUNCTION(blsp2_spi1),
621 MSM_PIN_FUNCTION(btss),
622 MSM_PIN_FUNCTION(burn0),
623 MSM_PIN_FUNCTION(burn1),
624 MSM_PIN_FUNCTION(cri_trng),
625 MSM_PIN_FUNCTION(cri_trng0),
626 MSM_PIN_FUNCTION(cri_trng1),
627 MSM_PIN_FUNCTION(cxc_clk),
628 MSM_PIN_FUNCTION(cxc_data),
629 MSM_PIN_FUNCTION(dbg_out),
630 MSM_PIN_FUNCTION(eud_gpio),
631 MSM_PIN_FUNCTION(gcc_plltest),
632 MSM_PIN_FUNCTION(gcc_tlmm),
633 MSM_PIN_FUNCTION(gpio),
634 MSM_PIN_FUNCTION(led0),
635 MSM_PIN_FUNCTION(led2),
636 MSM_PIN_FUNCTION(mac0),
637 MSM_PIN_FUNCTION(mac1),
638 MSM_PIN_FUNCTION(mdc),
639 MSM_PIN_FUNCTION(mdio),
640 MSM_PIN_FUNCTION(pcie0_clk),
641 MSM_PIN_FUNCTION(pcie0_wake),
642 MSM_PIN_FUNCTION(pcie1_clk),
643 MSM_PIN_FUNCTION(pcie1_wake),
644 MSM_PIN_FUNCTION(pll_test),
645 MSM_PIN_FUNCTION(prng_rosc),
646 MSM_PIN_FUNCTION(pwm0),
647 MSM_PIN_FUNCTION(pwm1),
648 MSM_PIN_FUNCTION(pwm2),
649 MSM_PIN_FUNCTION(pwm3),
650 MSM_PIN_FUNCTION(qdss_cti_trig_in_a0),
651 MSM_PIN_FUNCTION(qdss_cti_trig_in_a1),
652 MSM_PIN_FUNCTION(qdss_cti_trig_in_b0),
653 MSM_PIN_FUNCTION(qdss_cti_trig_in_b1),
654 MSM_PIN_FUNCTION(qdss_cti_trig_out_a0),
655 MSM_PIN_FUNCTION(qdss_cti_trig_out_a1),
656 MSM_PIN_FUNCTION(qdss_cti_trig_out_b0),
657 MSM_PIN_FUNCTION(qdss_cti_trig_out_b1),
658 MSM_PIN_FUNCTION(qdss_traceclk_a),
659 MSM_PIN_FUNCTION(qdss_traceclk_b),
660 MSM_PIN_FUNCTION(qdss_tracectl_a),
661 MSM_PIN_FUNCTION(qdss_tracectl_b),
662 MSM_PIN_FUNCTION(qdss_tracedata_a),
663 MSM_PIN_FUNCTION(qdss_tracedata_b),
664 MSM_PIN_FUNCTION(qspi_clk),
665 MSM_PIN_FUNCTION(qspi_cs),
666 MSM_PIN_FUNCTION(qspi_data),
667 MSM_PIN_FUNCTION(reset_out),
668 MSM_PIN_FUNCTION(sdc1_clk),
669 MSM_PIN_FUNCTION(sdc1_cmd),
670 MSM_PIN_FUNCTION(sdc1_data),
671 MSM_PIN_FUNCTION(wci_txd),
672 MSM_PIN_FUNCTION(wci_rxd),
673 MSM_PIN_FUNCTION(wsa_swrm),
674 MSM_PIN_FUNCTION(wsi_clk3),
675 MSM_PIN_FUNCTION(wsi_data3),
676 MSM_PIN_FUNCTION(wsis_reset),
677 MSM_PIN_FUNCTION(xfem),
678};
679
680static const struct msm_pingroup ipq5018_groups[] = {
681 PINGROUP(0, atest_char, _, qdss_cti_trig_out_a0, wci_txd, wci_rxd, xfem, _, _, _),
682 PINGROUP(1, atest_char, _, qdss_cti_trig_in_a0, wci_txd, wci_rxd, xfem, _, _, _),
683 PINGROUP(2, atest_char, _, qdss_cti_trig_out_a1, wci_txd, wci_rxd, xfem, _, _, _),
684 PINGROUP(3, atest_char, _, qdss_cti_trig_in_a1, wci_txd, wci_rxd, xfem, _, _, _),
685 PINGROUP(4, sdc1_data, qspi_data, blsp1_spi1, btss, dbg_out, qdss_traceclk_a, _, burn0, _),
686 PINGROUP(5, sdc1_data, qspi_data, cxc_clk, blsp1_spi1, blsp1_i2c1, btss, _, qdss_tracectl_a, _),
687 PINGROUP(6, sdc1_data, qspi_data, cxc_data, blsp1_spi1, blsp1_i2c1, btss, _, qdss_tracedata_a, _),
688 PINGROUP(7, sdc1_data, qspi_data, mac0, blsp1_spi1, btss, _, qdss_tracedata_a, _, _),
689 PINGROUP(8, sdc1_cmd, qspi_cs, mac1, btss, _, qdss_tracedata_a, _, _, _),
690 PINGROUP(9, sdc1_clk, qspi_clk, _, qdss_tracedata_a, _, _, _, _, _),
691 PINGROUP(10, blsp0_spi, blsp1_uart0, led0, gcc_plltest, qdss_tracedata_a, _, _, _, _),
692 PINGROUP(11, blsp0_spi, blsp1_uart0, _, gcc_tlmm, qdss_tracedata_a, _, _, _, _),
693 PINGROUP(12, blsp0_spi, blsp0_i2c, blsp1_uart0, _, gcc_plltest, qdss_tracedata_a, _, _, _),
694 PINGROUP(13, blsp0_spi, blsp0_i2c, blsp1_uart0, _, qdss_tracedata_a, _, _, _, _),
695 PINGROUP(14, pcie0_clk, _, _, cri_trng0, qdss_tracedata_a, _, _, _, _),
696 PINGROUP(15, _, _, cri_trng1, qdss_tracedata_a, _, _, _, _, _),
697 PINGROUP(16, pcie0_wake, _, _, cri_trng, qdss_tracedata_a, _, _, _, _),
698 PINGROUP(17, pcie1_clk, btss, _, prng_rosc, qdss_tracedata_a, _, _, _, _),
699 PINGROUP(18, blsp1_spi0, btss, _, qdss_tracedata_a, _, _, _, _, _),
700 PINGROUP(19, pcie1_wake, blsp1_spi0, blsp1_i2c0, btss, _, qdss_tracedata_a, _, _, _),
701 PINGROUP(20, blsp0_uart0, blsp1_spi0, blsp1_i2c0, _, qdss_tracedata_a, _, _, _, _),
702 PINGROUP(21, blsp0_uart0, blsp1_spi0, _, qdss_tracedata_a, _, _, _, _, _),
703 PINGROUP(22, _, pll_test, eud_gpio, _, _, _, _, _, _),
704 PINGROUP(23, audio_rxmclk, audio_pdm0, audio_rxmclk, blsp2_spi1, blsp1_uart2, btss, _, qdss_tracedata_b, _),
705 PINGROUP(24, audio_rxbclk, audio_pdm0, blsp2_spi1, blsp1_uart2, btss, _, qdss_tracedata_b, _, _),
706 PINGROUP(25, audio_rxfsync, audio_pdm1, blsp2_i2c1, blsp2_spi1, blsp1_uart2, btss, _, qdss_tracedata_b, _),
707 PINGROUP(26, audio_rxd, audio_pdm1, blsp2_i2c1, blsp2_spi1, blsp1_uart2, btss, _, qdss_tracedata_b, _),
708 PINGROUP(27, audio_txmclk, wsa_swrm, audio_txmclk, blsp2_spi, btss, _, qdss_tracedata_b, _, _),
709 PINGROUP(28, audio_txbclk, wsa_swrm, blsp0_uart1, btss, qdss_tracedata_b, _, _, _, _),
710 PINGROUP(29, audio_txfsync, _, blsp0_uart1, _, qdss_tracedata_b, _, _, _, _),
711 PINGROUP(30, audio_txd, led2, led0, _, _, _, _, _, _),
712 PINGROUP(31, blsp2_spi0, blsp1_uart1, _, qdss_tracedata_b, eud_gpio, _, _, _, _),
713 PINGROUP(32, blsp2_spi0, blsp1_uart1, _, qdss_tracedata_b, eud_gpio, _, _, _, _),
714 PINGROUP(33, blsp2_i2c0, blsp2_spi0, blsp1_uart1, _, qdss_tracedata_b, eud_gpio, _, _, _),
715 PINGROUP(34, blsp2_i2c0, blsp2_spi0, blsp1_uart1, _, qdss_tracedata_b, eud_gpio, _, _, _),
716 PINGROUP(35, _, qdss_tracedata_b, eud_gpio, _, _, _, _, _, _),
717 PINGROUP(36, mdc, qdss_tracedata_b, _, wsi_clk3, _, _, _, _, _),
718 PINGROUP(37, mdio, atest_char, qdss_tracedata_b, _, wsi_data3, _, _, _, _),
719 PINGROUP(38, qdss_tracedata_b, _, _, _, _, _, _, _, _),
720 PINGROUP(39, qdss_traceclk_b, _, _, _, _, _, _, _, _),
721 PINGROUP(40, reset_out, qdss_tracectl_b, _, _, _, _, _, _, _),
722 PINGROUP(41, _, _, _, _, _, _, _, _, _),
723 PINGROUP(42, pwm0, qdss_cti_trig_out_b0, wci_txd, wci_rxd, xfem, _, _, _, _),
724 PINGROUP(43, pwm1, qdss_cti_trig_in_b0, wci_txd, wci_rxd, xfem, _, _, _, _),
725 PINGROUP(44, pwm2, qdss_cti_trig_out_b1, wci_txd, wci_rxd, xfem, _, _, _, _),
726 PINGROUP(45, pwm3, qdss_cti_trig_in_b1, wci_txd, wci_rxd, xfem, _, _, _, _),
727 PINGROUP(46, led0, _, _, _, _, _, _, _, _),
728};
729
730static const struct msm_pinctrl_soc_data ipq5018_pinctrl = {
731 .pins = ipq5018_pins,
732 .npins = ARRAY_SIZE(ipq5018_pins),
733 .functions = ipq5018_functions,
734 .nfunctions = ARRAY_SIZE(ipq5018_functions),
735 .groups = ipq5018_groups,
736 .ngroups = ARRAY_SIZE(ipq5018_groups),
737 .ngpios = 47,
738};
739
740static int ipq5018_pinctrl_probe(struct platform_device *pdev)
741{
742 return msm_pinctrl_probe(pdev, soc_data: &ipq5018_pinctrl);
743}
744
745static const struct of_device_id ipq5018_pinctrl_of_match[] = {
746 { .compatible = "qcom,ipq5018-tlmm", },
747 { }
748};
749MODULE_DEVICE_TABLE(of, ipq5018_pinctrl_of_match);
750
751static struct platform_driver ipq5018_pinctrl_driver = {
752 .driver = {
753 .name = "ipq5018-tlmm",
754 .of_match_table = ipq5018_pinctrl_of_match,
755 },
756 .probe = ipq5018_pinctrl_probe,
757 .remove_new = msm_pinctrl_remove,
758};
759
760static int __init ipq5018_pinctrl_init(void)
761{
762 return platform_driver_register(&ipq5018_pinctrl_driver);
763}
764arch_initcall(ipq5018_pinctrl_init);
765
766static void __exit ipq5018_pinctrl_exit(void)
767{
768 platform_driver_unregister(&ipq5018_pinctrl_driver);
769}
770module_exit(ipq5018_pinctrl_exit);
771
772MODULE_DESCRIPTION("Qualcomm Technologies Inc ipq5018 pinctrl driver");
773MODULE_LICENSE("GPL");
774

source code of linux/drivers/pinctrl/qcom/pinctrl-ipq5018.c