xref: /linux/drivers/pinctrl/qcom/pinctrl-qcm2290.c (revision 9cc7d5904bab74f54aad4948a04535c1f07c74d8)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
4  */
5 
6 #include <linux/module.h>
7 #include <linux/of.h>
8 #include <linux/platform_device.h>
9 
10 #include "pinctrl-msm.h"
11 
12 #define REG_SIZE 0x1000
13 
14 #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9)	\
15 	{						\
16 		.grp = PINCTRL_PINGROUP("gpio" #id, 	\
17 			gpio##id##_pins, 		\
18 			ARRAY_SIZE(gpio##id##_pins)),	\
19 		.funcs = (int[]){			\
20 			msm_mux_gpio, /* gpio mode */	\
21 			msm_mux_##f1,			\
22 			msm_mux_##f2,			\
23 			msm_mux_##f3,			\
24 			msm_mux_##f4,			\
25 			msm_mux_##f5,			\
26 			msm_mux_##f6,			\
27 			msm_mux_##f7,			\
28 			msm_mux_##f8,			\
29 			msm_mux_##f9			\
30 		},					\
31 		.nfuncs = 10,				\
32 		.ctl_reg = REG_SIZE * id,		\
33 		.io_reg = 0x4 + REG_SIZE * id,		\
34 		.intr_cfg_reg = 0x8 + REG_SIZE * id,	\
35 		.intr_status_reg = 0xc + REG_SIZE * id,	\
36 		.intr_target_reg = 0x8 + REG_SIZE * id,	\
37 		.mux_bit = 2,			\
38 		.pull_bit = 0,			\
39 		.drv_bit = 6,			\
40 		.egpio_enable = 12,		\
41 		.egpio_present = 11,		\
42 		.oe_bit = 9,			\
43 		.in_bit = 0,			\
44 		.out_bit = 1,			\
45 		.intr_enable_bit = 0,		\
46 		.intr_status_bit = 0,		\
47 		.intr_target_bit = 5,		\
48 		.intr_target_kpss_val = 3,	\
49 		.intr_raw_status_bit = 4,	\
50 		.intr_polarity_bit = 1,		\
51 		.intr_detection_bit = 2,	\
52 		.intr_detection_width = 2,	\
53 	}
54 
55 #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv)	\
56 	{					        \
57 		.grp = PINCTRL_PINGROUP(#pg_name, 	\
58 			pg_name##_pins, 		\
59 			ARRAY_SIZE(pg_name##_pins)),	\
60 		.ctl_reg = ctl,				\
61 		.io_reg = 0,				\
62 		.intr_cfg_reg = 0,			\
63 		.intr_status_reg = 0,			\
64 		.intr_target_reg = 0,			\
65 		.mux_bit = -1,				\
66 		.pull_bit = pull,			\
67 		.drv_bit = drv,				\
68 		.oe_bit = -1,				\
69 		.in_bit = -1,				\
70 		.out_bit = -1,				\
71 		.intr_enable_bit = -1,			\
72 		.intr_status_bit = -1,			\
73 		.intr_target_bit = -1,			\
74 		.intr_raw_status_bit = -1,		\
75 		.intr_polarity_bit = -1,		\
76 		.intr_detection_bit = -1,		\
77 		.intr_detection_width = -1,		\
78 	}
79 
80 #define UFS_RESET(pg_name, offset)				\
81 	{					        \
82 		.grp = PINCTRL_PINGROUP(#pg_name, 	\
83 			pg_name##_pins, 		\
84 			ARRAY_SIZE(pg_name##_pins)),	\
85 		.ctl_reg = offset,			\
86 		.io_reg = offset + 0x4,			\
87 		.intr_cfg_reg = 0,			\
88 		.intr_status_reg = 0,			\
89 		.intr_target_reg = 0,			\
90 		.mux_bit = -1,				\
91 		.pull_bit = 3,				\
92 		.drv_bit = 0,				\
93 		.oe_bit = -1,				\
94 		.in_bit = -1,				\
95 		.out_bit = 0,				\
96 		.intr_enable_bit = -1,			\
97 		.intr_status_bit = -1,			\
98 		.intr_target_bit = -1,			\
99 		.intr_raw_status_bit = -1,		\
100 		.intr_polarity_bit = -1,		\
101 		.intr_detection_bit = -1,		\
102 		.intr_detection_width = -1,		\
103 	}
104 static const struct pinctrl_pin_desc qcm2290_pins[] = {
105 	PINCTRL_PIN(0, "GPIO_0"),
106 	PINCTRL_PIN(1, "GPIO_1"),
107 	PINCTRL_PIN(2, "GPIO_2"),
108 	PINCTRL_PIN(3, "GPIO_3"),
109 	PINCTRL_PIN(4, "GPIO_4"),
110 	PINCTRL_PIN(5, "GPIO_5"),
111 	PINCTRL_PIN(6, "GPIO_6"),
112 	PINCTRL_PIN(7, "GPIO_7"),
113 	PINCTRL_PIN(8, "GPIO_8"),
114 	PINCTRL_PIN(9, "GPIO_9"),
115 	PINCTRL_PIN(10, "GPIO_10"),
116 	PINCTRL_PIN(11, "GPIO_11"),
117 	PINCTRL_PIN(12, "GPIO_12"),
118 	PINCTRL_PIN(13, "GPIO_13"),
119 	PINCTRL_PIN(14, "GPIO_14"),
120 	PINCTRL_PIN(15, "GPIO_15"),
121 	PINCTRL_PIN(16, "GPIO_16"),
122 	PINCTRL_PIN(17, "GPIO_17"),
123 	PINCTRL_PIN(18, "GPIO_18"),
124 	PINCTRL_PIN(19, "GPIO_19"),
125 	PINCTRL_PIN(20, "GPIO_20"),
126 	PINCTRL_PIN(21, "GPIO_21"),
127 	PINCTRL_PIN(22, "GPIO_22"),
128 	PINCTRL_PIN(23, "GPIO_23"),
129 	PINCTRL_PIN(24, "GPIO_24"),
130 	PINCTRL_PIN(25, "GPIO_25"),
131 	PINCTRL_PIN(26, "GPIO_26"),
132 	PINCTRL_PIN(27, "GPIO_27"),
133 	PINCTRL_PIN(28, "GPIO_28"),
134 	PINCTRL_PIN(29, "GPIO_29"),
135 	PINCTRL_PIN(30, "GPIO_30"),
136 	PINCTRL_PIN(31, "GPIO_31"),
137 	PINCTRL_PIN(32, "GPIO_32"),
138 	PINCTRL_PIN(33, "GPIO_33"),
139 	PINCTRL_PIN(34, "GPIO_34"),
140 	PINCTRL_PIN(35, "GPIO_35"),
141 	PINCTRL_PIN(36, "GPIO_36"),
142 	PINCTRL_PIN(37, "GPIO_37"),
143 	PINCTRL_PIN(38, "GPIO_38"),
144 	PINCTRL_PIN(39, "GPIO_39"),
145 	PINCTRL_PIN(40, "GPIO_40"),
146 	PINCTRL_PIN(41, "GPIO_41"),
147 	PINCTRL_PIN(42, "GPIO_42"),
148 	PINCTRL_PIN(43, "GPIO_43"),
149 	PINCTRL_PIN(44, "GPIO_44"),
150 	PINCTRL_PIN(45, "GPIO_45"),
151 	PINCTRL_PIN(46, "GPIO_46"),
152 	PINCTRL_PIN(47, "GPIO_47"),
153 	PINCTRL_PIN(48, "GPIO_48"),
154 	PINCTRL_PIN(49, "GPIO_49"),
155 	PINCTRL_PIN(50, "GPIO_50"),
156 	PINCTRL_PIN(51, "GPIO_51"),
157 	PINCTRL_PIN(52, "GPIO_52"),
158 	PINCTRL_PIN(53, "GPIO_53"),
159 	PINCTRL_PIN(54, "GPIO_54"),
160 	PINCTRL_PIN(55, "GPIO_55"),
161 	PINCTRL_PIN(56, "GPIO_56"),
162 	PINCTRL_PIN(57, "GPIO_57"),
163 	PINCTRL_PIN(58, "GPIO_58"),
164 	PINCTRL_PIN(59, "GPIO_59"),
165 	PINCTRL_PIN(60, "GPIO_60"),
166 	PINCTRL_PIN(61, "GPIO_61"),
167 	PINCTRL_PIN(62, "GPIO_62"),
168 	PINCTRL_PIN(63, "GPIO_63"),
169 	PINCTRL_PIN(64, "GPIO_64"),
170 	PINCTRL_PIN(65, "GPIO_65"),
171 	PINCTRL_PIN(66, "GPIO_66"),
172 	PINCTRL_PIN(67, "GPIO_67"),
173 	PINCTRL_PIN(68, "GPIO_68"),
174 	PINCTRL_PIN(69, "GPIO_69"),
175 	PINCTRL_PIN(70, "GPIO_70"),
176 	PINCTRL_PIN(71, "GPIO_71"),
177 	PINCTRL_PIN(72, "GPIO_72"),
178 	PINCTRL_PIN(73, "GPIO_73"),
179 	PINCTRL_PIN(74, "GPIO_74"),
180 	PINCTRL_PIN(75, "GPIO_75"),
181 	PINCTRL_PIN(76, "GPIO_76"),
182 	PINCTRL_PIN(77, "GPIO_77"),
183 	PINCTRL_PIN(78, "GPIO_78"),
184 	PINCTRL_PIN(79, "GPIO_79"),
185 	PINCTRL_PIN(80, "GPIO_80"),
186 	PINCTRL_PIN(81, "GPIO_81"),
187 	PINCTRL_PIN(82, "GPIO_82"),
188 	PINCTRL_PIN(83, "GPIO_83"),
189 	PINCTRL_PIN(84, "GPIO_84"),
190 	PINCTRL_PIN(85, "GPIO_85"),
191 	PINCTRL_PIN(86, "GPIO_86"),
192 	PINCTRL_PIN(87, "GPIO_87"),
193 	PINCTRL_PIN(88, "GPIO_88"),
194 	PINCTRL_PIN(89, "GPIO_89"),
195 	PINCTRL_PIN(90, "GPIO_90"),
196 	PINCTRL_PIN(91, "GPIO_91"),
197 	PINCTRL_PIN(92, "GPIO_92"),
198 	PINCTRL_PIN(93, "GPIO_93"),
199 	PINCTRL_PIN(94, "GPIO_94"),
200 	PINCTRL_PIN(95, "GPIO_95"),
201 	PINCTRL_PIN(96, "GPIO_96"),
202 	PINCTRL_PIN(97, "GPIO_97"),
203 	PINCTRL_PIN(98, "GPIO_98"),
204 	PINCTRL_PIN(99, "GPIO_99"),
205 	PINCTRL_PIN(100, "GPIO_100"),
206 	PINCTRL_PIN(101, "GPIO_101"),
207 	PINCTRL_PIN(102, "GPIO_102"),
208 	PINCTRL_PIN(103, "GPIO_103"),
209 	PINCTRL_PIN(104, "GPIO_104"),
210 	PINCTRL_PIN(105, "GPIO_105"),
211 	PINCTRL_PIN(106, "GPIO_106"),
212 	PINCTRL_PIN(107, "GPIO_107"),
213 	PINCTRL_PIN(108, "GPIO_108"),
214 	PINCTRL_PIN(109, "GPIO_109"),
215 	PINCTRL_PIN(110, "GPIO_110"),
216 	PINCTRL_PIN(111, "GPIO_111"),
217 	PINCTRL_PIN(112, "GPIO_112"),
218 	PINCTRL_PIN(113, "GPIO_113"),
219 	PINCTRL_PIN(114, "GPIO_114"),
220 	PINCTRL_PIN(115, "GPIO_115"),
221 	PINCTRL_PIN(116, "GPIO_116"),
222 	PINCTRL_PIN(117, "GPIO_117"),
223 	PINCTRL_PIN(118, "GPIO_118"),
224 	PINCTRL_PIN(119, "GPIO_119"),
225 	PINCTRL_PIN(120, "GPIO_120"),
226 	PINCTRL_PIN(121, "GPIO_121"),
227 	PINCTRL_PIN(122, "GPIO_122"),
228 	PINCTRL_PIN(123, "GPIO_123"),
229 	PINCTRL_PIN(124, "GPIO_124"),
230 	PINCTRL_PIN(125, "GPIO_125"),
231 	PINCTRL_PIN(126, "GPIO_126"),
232 	PINCTRL_PIN(127, "SDC1_RCLK"),
233 	PINCTRL_PIN(128, "SDC1_CLK"),
234 	PINCTRL_PIN(129, "SDC1_CMD"),
235 	PINCTRL_PIN(130, "SDC1_DATA"),
236 	PINCTRL_PIN(131, "SDC2_CLK"),
237 	PINCTRL_PIN(132, "SDC2_CMD"),
238 	PINCTRL_PIN(133, "SDC2_DATA"),
239 };
240 
241 #define DECLARE_MSM_GPIO_PINS(pin) \
242 	static const unsigned int gpio##pin##_pins[] = { pin }
243 DECLARE_MSM_GPIO_PINS(0);
244 DECLARE_MSM_GPIO_PINS(1);
245 DECLARE_MSM_GPIO_PINS(2);
246 DECLARE_MSM_GPIO_PINS(3);
247 DECLARE_MSM_GPIO_PINS(4);
248 DECLARE_MSM_GPIO_PINS(5);
249 DECLARE_MSM_GPIO_PINS(6);
250 DECLARE_MSM_GPIO_PINS(7);
251 DECLARE_MSM_GPIO_PINS(8);
252 DECLARE_MSM_GPIO_PINS(9);
253 DECLARE_MSM_GPIO_PINS(10);
254 DECLARE_MSM_GPIO_PINS(11);
255 DECLARE_MSM_GPIO_PINS(12);
256 DECLARE_MSM_GPIO_PINS(13);
257 DECLARE_MSM_GPIO_PINS(14);
258 DECLARE_MSM_GPIO_PINS(15);
259 DECLARE_MSM_GPIO_PINS(16);
260 DECLARE_MSM_GPIO_PINS(17);
261 DECLARE_MSM_GPIO_PINS(18);
262 DECLARE_MSM_GPIO_PINS(19);
263 DECLARE_MSM_GPIO_PINS(20);
264 DECLARE_MSM_GPIO_PINS(21);
265 DECLARE_MSM_GPIO_PINS(22);
266 DECLARE_MSM_GPIO_PINS(23);
267 DECLARE_MSM_GPIO_PINS(24);
268 DECLARE_MSM_GPIO_PINS(25);
269 DECLARE_MSM_GPIO_PINS(26);
270 DECLARE_MSM_GPIO_PINS(27);
271 DECLARE_MSM_GPIO_PINS(28);
272 DECLARE_MSM_GPIO_PINS(29);
273 DECLARE_MSM_GPIO_PINS(30);
274 DECLARE_MSM_GPIO_PINS(31);
275 DECLARE_MSM_GPIO_PINS(32);
276 DECLARE_MSM_GPIO_PINS(33);
277 DECLARE_MSM_GPIO_PINS(34);
278 DECLARE_MSM_GPIO_PINS(35);
279 DECLARE_MSM_GPIO_PINS(36);
280 DECLARE_MSM_GPIO_PINS(37);
281 DECLARE_MSM_GPIO_PINS(38);
282 DECLARE_MSM_GPIO_PINS(39);
283 DECLARE_MSM_GPIO_PINS(40);
284 DECLARE_MSM_GPIO_PINS(41);
285 DECLARE_MSM_GPIO_PINS(42);
286 DECLARE_MSM_GPIO_PINS(43);
287 DECLARE_MSM_GPIO_PINS(44);
288 DECLARE_MSM_GPIO_PINS(45);
289 DECLARE_MSM_GPIO_PINS(46);
290 DECLARE_MSM_GPIO_PINS(47);
291 DECLARE_MSM_GPIO_PINS(48);
292 DECLARE_MSM_GPIO_PINS(49);
293 DECLARE_MSM_GPIO_PINS(50);
294 DECLARE_MSM_GPIO_PINS(51);
295 DECLARE_MSM_GPIO_PINS(52);
296 DECLARE_MSM_GPIO_PINS(53);
297 DECLARE_MSM_GPIO_PINS(54);
298 DECLARE_MSM_GPIO_PINS(55);
299 DECLARE_MSM_GPIO_PINS(56);
300 DECLARE_MSM_GPIO_PINS(57);
301 DECLARE_MSM_GPIO_PINS(58);
302 DECLARE_MSM_GPIO_PINS(59);
303 DECLARE_MSM_GPIO_PINS(60);
304 DECLARE_MSM_GPIO_PINS(61);
305 DECLARE_MSM_GPIO_PINS(62);
306 DECLARE_MSM_GPIO_PINS(63);
307 DECLARE_MSM_GPIO_PINS(64);
308 DECLARE_MSM_GPIO_PINS(65);
309 DECLARE_MSM_GPIO_PINS(66);
310 DECLARE_MSM_GPIO_PINS(67);
311 DECLARE_MSM_GPIO_PINS(68);
312 DECLARE_MSM_GPIO_PINS(69);
313 DECLARE_MSM_GPIO_PINS(70);
314 DECLARE_MSM_GPIO_PINS(71);
315 DECLARE_MSM_GPIO_PINS(72);
316 DECLARE_MSM_GPIO_PINS(73);
317 DECLARE_MSM_GPIO_PINS(74);
318 DECLARE_MSM_GPIO_PINS(75);
319 DECLARE_MSM_GPIO_PINS(76);
320 DECLARE_MSM_GPIO_PINS(77);
321 DECLARE_MSM_GPIO_PINS(78);
322 DECLARE_MSM_GPIO_PINS(79);
323 DECLARE_MSM_GPIO_PINS(80);
324 DECLARE_MSM_GPIO_PINS(81);
325 DECLARE_MSM_GPIO_PINS(82);
326 DECLARE_MSM_GPIO_PINS(83);
327 DECLARE_MSM_GPIO_PINS(84);
328 DECLARE_MSM_GPIO_PINS(85);
329 DECLARE_MSM_GPIO_PINS(86);
330 DECLARE_MSM_GPIO_PINS(87);
331 DECLARE_MSM_GPIO_PINS(88);
332 DECLARE_MSM_GPIO_PINS(89);
333 DECLARE_MSM_GPIO_PINS(90);
334 DECLARE_MSM_GPIO_PINS(91);
335 DECLARE_MSM_GPIO_PINS(92);
336 DECLARE_MSM_GPIO_PINS(93);
337 DECLARE_MSM_GPIO_PINS(94);
338 DECLARE_MSM_GPIO_PINS(95);
339 DECLARE_MSM_GPIO_PINS(96);
340 DECLARE_MSM_GPIO_PINS(97);
341 DECLARE_MSM_GPIO_PINS(98);
342 DECLARE_MSM_GPIO_PINS(99);
343 DECLARE_MSM_GPIO_PINS(100);
344 DECLARE_MSM_GPIO_PINS(101);
345 DECLARE_MSM_GPIO_PINS(102);
346 DECLARE_MSM_GPIO_PINS(103);
347 DECLARE_MSM_GPIO_PINS(104);
348 DECLARE_MSM_GPIO_PINS(105);
349 DECLARE_MSM_GPIO_PINS(106);
350 DECLARE_MSM_GPIO_PINS(107);
351 DECLARE_MSM_GPIO_PINS(108);
352 DECLARE_MSM_GPIO_PINS(109);
353 DECLARE_MSM_GPIO_PINS(110);
354 DECLARE_MSM_GPIO_PINS(111);
355 DECLARE_MSM_GPIO_PINS(112);
356 DECLARE_MSM_GPIO_PINS(113);
357 DECLARE_MSM_GPIO_PINS(114);
358 DECLARE_MSM_GPIO_PINS(115);
359 DECLARE_MSM_GPIO_PINS(116);
360 DECLARE_MSM_GPIO_PINS(117);
361 DECLARE_MSM_GPIO_PINS(118);
362 DECLARE_MSM_GPIO_PINS(119);
363 DECLARE_MSM_GPIO_PINS(120);
364 DECLARE_MSM_GPIO_PINS(121);
365 DECLARE_MSM_GPIO_PINS(122);
366 DECLARE_MSM_GPIO_PINS(123);
367 DECLARE_MSM_GPIO_PINS(124);
368 DECLARE_MSM_GPIO_PINS(125);
369 DECLARE_MSM_GPIO_PINS(126);
370 
371 static const unsigned int sdc1_rclk_pins[] = { 127 };
372 static const unsigned int sdc1_clk_pins[] = { 128 };
373 static const unsigned int sdc1_cmd_pins[] = { 129 };
374 static const unsigned int sdc1_data_pins[] = { 130 };
375 static const unsigned int sdc2_clk_pins[] = { 131 };
376 static const unsigned int sdc2_cmd_pins[] = { 132 };
377 static const unsigned int sdc2_data_pins[] = { 133 };
378 
379 enum qcm2290_functions {
380 	msm_mux_adsp_ext,
381 	msm_mux_agera_pll,
382 	msm_mux_atest,
383 	msm_mux_cam_mclk,
384 	msm_mux_cci_async,
385 	msm_mux_cci_i2c,
386 	msm_mux_cci_timer0,
387 	msm_mux_cci_timer1,
388 	msm_mux_cci_timer2,
389 	msm_mux_cci_timer3,
390 	msm_mux_char_exec,
391 	msm_mux_cri_trng,
392 	msm_mux_cri_trng0,
393 	msm_mux_cri_trng1,
394 	msm_mux_dac_calib,
395 	msm_mux_dbg_out,
396 	msm_mux_ddr_bist,
397 	msm_mux_ddr_pxi0,
398 	msm_mux_ddr_pxi1,
399 	msm_mux_ddr_pxi2,
400 	msm_mux_ddr_pxi3,
401 	msm_mux_egpio,
402 	msm_mux_gcc_gp1,
403 	msm_mux_gcc_gp2,
404 	msm_mux_gcc_gp3,
405 	msm_mux_gpio,
406 	msm_mux_gp_pdm0,
407 	msm_mux_gp_pdm1,
408 	msm_mux_gp_pdm2,
409 	msm_mux_gsm0_tx,
410 	msm_mux_gsm1_tx,
411 	msm_mux_jitter_bist,
412 	msm_mux_mdp_vsync,
413 	msm_mux_mdp_vsync_out_0,
414 	msm_mux_mdp_vsync_out_1,
415 	msm_mux_mpm_pwr,
416 	msm_mux_mss_lte,
417 	msm_mux_m_voc,
418 	msm_mux_nav_gpio,
419 	msm_mux_pa_indicator,
420 	msm_mux_pbs0,
421 	msm_mux_pbs1,
422 	msm_mux_pbs2,
423 	msm_mux_pbs3,
424 	msm_mux_pbs4,
425 	msm_mux_pbs5,
426 	msm_mux_pbs6,
427 	msm_mux_pbs7,
428 	msm_mux_pbs8,
429 	msm_mux_pbs9,
430 	msm_mux_pbs10,
431 	msm_mux_pbs11,
432 	msm_mux_pbs12,
433 	msm_mux_pbs13,
434 	msm_mux_pbs14,
435 	msm_mux_pbs15,
436 	msm_mux_pbs_out,
437 	msm_mux_phase_flag,
438 	msm_mux_pll_bist,
439 	msm_mux_pll_bypassnl,
440 	msm_mux_pll_reset,
441 	msm_mux_prng_rosc,
442 	msm_mux_pwm_0,
443 	msm_mux_pwm_1,
444 	msm_mux_pwm_2,
445 	msm_mux_pwm_3,
446 	msm_mux_pwm_4,
447 	msm_mux_pwm_5,
448 	msm_mux_pwm_6,
449 	msm_mux_pwm_7,
450 	msm_mux_pwm_8,
451 	msm_mux_pwm_9,
452 	msm_mux_qdss_cti,
453 	msm_mux_qdss_gpio,
454 	msm_mux_qup0,
455 	msm_mux_qup1,
456 	msm_mux_qup2,
457 	msm_mux_qup3,
458 	msm_mux_qup4,
459 	msm_mux_qup5,
460 	msm_mux_sdc1_tb,
461 	msm_mux_sdc2_tb,
462 	msm_mux_sd_write,
463 	msm_mux_ssbi_wtr1,
464 	msm_mux_tgu_ch0,
465 	msm_mux_tgu_ch1,
466 	msm_mux_tgu_ch2,
467 	msm_mux_tgu_ch3,
468 	msm_mux_tsense_pwm,
469 	msm_mux_uim1_clk,
470 	msm_mux_uim1_data,
471 	msm_mux_uim1_present,
472 	msm_mux_uim1_reset,
473 	msm_mux_uim2_clk,
474 	msm_mux_uim2_data,
475 	msm_mux_uim2_present,
476 	msm_mux_uim2_reset,
477 	msm_mux_usb_phy,
478 	msm_mux_vfr_1,
479 	msm_mux_vsense_trigger,
480 	msm_mux_wlan1_adc0,
481 	msm_mux_wlan1_adc1,
482 	msm_mux__,
483 };
484 
485 static const char * const qup0_groups[] = {
486 	"gpio0", "gpio1", "gpio2", "gpio3", "gpio82", "gpio86",
487 };
488 static const char * const gpio_groups[] = {
489 	"gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
490 	"gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
491 	"gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
492 	"gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
493 	"gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
494 	"gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
495 	"gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
496 	"gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
497 	"gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
498 	"gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
499 	"gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
500 	"gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
501 	"gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
502 	"gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
503 	"gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
504 	"gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
505 	"gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
506 	"gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
507 	"gpio123", "gpio124", "gpio125", "gpio126",
508 };
509 static const char * const ddr_bist_groups[] = {
510 	"gpio0", "gpio1", "gpio2", "gpio3",
511 };
512 static const char * const phase_flag_groups[] = {
513 	"gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6",
514 	"gpio14", "gpio15", "gpio16", "gpio17", "gpio22", "gpio23", "gpio24",
515 	"gpio25", "gpio26", "gpio29", "gpio30", "gpio31", "gpio32", "gpio33",
516 	"gpio35", "gpio36", "gpio43", "gpio44", "gpio45", "gpio63", "gpio64",
517 	"gpio102", "gpio103", "gpio104", "gpio105",
518 };
519 static const char * const qdss_gpio_groups[] = {
520 	"gpio0", "gpio1", "gpio2", "gpio3", "gpio8", "gpio9", "gpio10",
521 	"gpio11", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19",
522 	"gpio20", "gpio21", "gpio22", "gpio23", "gpio24", "gpio25", "gpio26",
523 	"gpio47", "gpio48", "gpio69", "gpio70", "gpio87", "gpio90", "gpio91",
524 	"gpio94", "gpio95", "gpio104", "gpio105", "gpio106", "gpio107",
525 	"gpio109", "gpio110",
526 };
527 static const char * const atest_groups[] = {
528 	"gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6",
529 	"gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio29", "gpio30",
530 	"gpio31", "gpio32", "gpio33", "gpio86", "gpio89", "gpio100", "gpio101",
531 };
532 static const char * const mpm_pwr_groups[] = {
533 	"gpio1",
534 };
535 static const char * const m_voc_groups[] = {
536 	"gpio0",
537 };
538 static const char * const dac_calib_groups[] = {
539 	"gpio2",
540 	"gpio3",
541 	"gpio4",
542 	"gpio5",
543 	"gpio6",
544 	"gpio14",
545 	"gpio15",
546 	"gpio16",
547 	"gpio17",
548 	"gpio22",
549 	"gpio23",
550 	"gpio24",
551 	"gpio25",
552 	"gpio26",
553 	"gpio29",
554 	"gpio30",
555 	"gpio31",
556 	"gpio32",
557 	"gpio33",
558 	"gpio80",
559 	"gpio81",
560 	"gpio82",
561 	"gpio102",
562 	"gpio103",
563 	"gpio104",
564 	"gpio105",
565 };
566 static const char * const qup1_groups[] = {
567 	"gpio4", "gpio5", "gpio69", "gpio70",
568 };
569 static const char * const cri_trng0_groups[] = {
570 	"gpio4",
571 };
572 static const char * const cri_trng1_groups[] = {
573 	"gpio5",
574 };
575 static const char * const qup2_groups[] = {
576 	"gpio6", "gpio7", "gpio71", "gpio80",
577 };
578 static const char * const qup3_groups[] = {
579 	"gpio8", "gpio9", "gpio10", "gpio11",
580 };
581 static const char * const pbs_out_groups[] = {
582 	"gpio8", "gpio9", "gpio52",
583 };
584 static const char * const pll_bist_groups[] = {
585 	"gpio8", "gpio9",
586 };
587 static const char * const tsense_pwm_groups[] = {
588 	"gpio8",
589 };
590 static const char * const agera_pll_groups[] = {
591 	"gpio10", "gpio11",
592 };
593 static const char * const pbs0_groups[] = {
594 	"gpio10",
595 };
596 static const char * const pbs1_groups[] = {
597 	"gpio11",
598 };
599 static const char * const qup4_groups[] = {
600 	"gpio12", "gpio13", "gpio96", "gpio97",
601 };
602 static const char * const tgu_ch0_groups[] = {
603 	"gpio12",
604 };
605 static const char * const tgu_ch1_groups[] = {
606 	"gpio13",
607 };
608 static const char * const qup5_groups[] = {
609 	"gpio14", "gpio15", "gpio16", "gpio17",
610 };
611 static const char * const tgu_ch2_groups[] = {
612 	"gpio14",
613 };
614 static const char * const tgu_ch3_groups[] = {
615 	"gpio15",
616 };
617 static const char * const sdc2_tb_groups[] = {
618 	"gpio18",
619 };
620 static const char * const cri_trng_groups[] = {
621 	"gpio18",
622 };
623 static const char * const pbs2_groups[] = {
624 	"gpio18",
625 };
626 static const char * const pwm_0_groups[] = {
627 	"gpio18",
628 };
629 static const char * const sdc1_tb_groups[] = {
630 	"gpio19",
631 };
632 static const char * const pbs3_groups[] = {
633 	"gpio19",
634 };
635 static const char * const cam_mclk_groups[] = {
636 	"gpio20", "gpio21", "gpio27", "gpio28",
637 };
638 static const char * const pbs4_groups[] = {
639 	"gpio20",
640 };
641 static const char * const adsp_ext_groups[] = {
642 	"gpio21",
643 };
644 static const char * const pbs5_groups[] = {
645 	"gpio21",
646 };
647 static const char * const cci_i2c_groups[] = {
648 	"gpio22", "gpio23", "gpio29", "gpio30",
649 };
650 static const char * const prng_rosc_groups[] = {
651 	"gpio22", "gpio23",
652 };
653 static const char * const pbs6_groups[] = {
654 	"gpio22",
655 };
656 static const char * const pbs7_groups[] = {
657 	"gpio23",
658 };
659 static const char * const cci_timer1_groups[] = {
660 	"gpio24",
661 };
662 static const char * const gcc_gp1_groups[] = {
663 	"gpio24", "gpio86",
664 };
665 static const char * const pbs8_groups[] = {
666 	"gpio24",
667 };
668 static const char * const cci_async_groups[] = {
669 	"gpio25",
670 };
671 static const char * const cci_timer0_groups[] = {
672 	"gpio25",
673 };
674 static const char * const pbs9_groups[] = {
675 	"gpio25",
676 };
677 static const char * const pbs10_groups[] = {
678 	"gpio26",
679 };
680 static const char * const vsense_trigger_groups[] = {
681 	"gpio26",
682 };
683 static const char * const qdss_cti_groups[] = {
684 	"gpio27", "gpio28", "gpio72", "gpio73", "gpio96", "gpio97",
685 };
686 static const char * const cci_timer2_groups[] = {
687 	"gpio28",
688 };
689 static const char * const pwm_1_groups[] = {
690 	"gpio28",
691 };
692 static const char * const gp_pdm0_groups[] = {
693 	"gpio31", "gpio95",
694 };
695 static const char * const cci_timer3_groups[] = {
696 	"gpio32",
697 };
698 static const char * const gp_pdm1_groups[] = {
699 	"gpio32", "gpio96",
700 };
701 static const char * const gp_pdm2_groups[] = {
702 	"gpio33", "gpio97",
703 };
704 static const char * const char_exec_groups[] = {
705 	"gpio37", "gpio38",
706 };
707 static const char * const nav_gpio_groups[] = {
708 	"gpio42", "gpio47", "gpio52", "gpio95", "gpio96", "gpio97", "gpio106",
709 	"gpio107", "gpio108",
710 };
711 static const char * const pbs14_groups[] = {
712 	"gpio47",
713 };
714 static const char * const vfr_1_groups[] = {
715 	"gpio48",
716 };
717 static const char * const pbs15_groups[] = {
718 	"gpio48",
719 };
720 static const char * const pa_indicator_groups[] = {
721 	"gpio49",
722 };
723 static const char * const pwm_2_groups[] = {
724 	"gpio51",
725 };
726 static const char * const gsm1_tx_groups[] = {
727 	"gpio53",
728 };
729 static const char * const ssbi_wtr1_groups[] = {
730 	"gpio59", "gpio60",
731 };
732 static const char * const pll_bypassnl_groups[] = {
733 	"gpio62",
734 };
735 static const char * const pll_reset_groups[] = {
736 	"gpio63",
737 };
738 static const char * const ddr_pxi0_groups[] = {
739 	"gpio63", "gpio64",
740 };
741 static const char * const gsm0_tx_groups[] = {
742 	"gpio64",
743 };
744 static const char * const gcc_gp2_groups[] = {
745 	"gpio69", "gpio107",
746 };
747 static const char * const ddr_pxi1_groups[] = {
748 	"gpio69", "gpio70",
749 };
750 static const char * const gcc_gp3_groups[] = {
751 	"gpio70", "gpio106",
752 };
753 static const char * const dbg_out_groups[] = {
754 	"gpio71",
755 };
756 static const char * const uim2_data_groups[] = {
757 	"gpio72",
758 };
759 static const char * const pwm_3_groups[] = {
760 	"gpio72",
761 };
762 static const char * const uim2_clk_groups[] = {
763 	"gpio73",
764 };
765 static const char * const uim2_reset_groups[] = {
766 	"gpio74",
767 };
768 static const char * const pwm_4_groups[] = {
769 	"gpio74",
770 };
771 static const char * const uim2_present_groups[] = {
772 	"gpio75",
773 };
774 static const char * const pwm_5_groups[] = {
775 	"gpio75",
776 };
777 static const char * const uim1_data_groups[] = {
778 	"gpio76",
779 };
780 static const char * const uim1_clk_groups[] = {
781 	"gpio77",
782 };
783 static const char * const uim1_reset_groups[] = {
784 	"gpio78",
785 };
786 static const char * const uim1_present_groups[] = {
787 	"gpio79",
788 };
789 static const char * const mdp_vsync_groups[] = {
790 	"gpio81", "gpio96", "gpio97",
791 };
792 static const char * const mdp_vsync_out_0_groups[] = {
793 	"gpio81",
794 };
795 static const char * const mdp_vsync_out_1_groups[] = {
796 	"gpio81",
797 };
798 static const char * const pwm_6_groups[] = {
799 	"gpio82",
800 };
801 static const char * const pbs11_groups[] = {
802 	"gpio87",
803 };
804 static const char * const usb_phy_groups[] = {
805 	"gpio89",
806 };
807 static const char * const pwm_7_groups[] = {
808 	"gpio89",
809 };
810 static const char * const mss_lte_groups[] = {
811 	"gpio90", "gpio91",
812 };
813 static const char * const pbs12_groups[] = {
814 	"gpio90",
815 };
816 static const char * const pbs13_groups[] = {
817 	"gpio91",
818 };
819 static const char * const wlan1_adc0_groups[] = {
820 	"gpio94",
821 };
822 static const char * const wlan1_adc1_groups[] = {
823 	"gpio95",
824 };
825 static const char * const sd_write_groups[] = {
826 	"gpio96",
827 };
828 static const char * const jitter_bist_groups[] = {
829 	"gpio96", "gpio97",
830 };
831 static const char * const egpio_groups[] = {
832 	"gpio98", "gpio99", "gpio100", "gpio101", "gpio102", "gpio103",
833 	"gpio104", "gpio105", "gpio106", "gpio107", "gpio108", "gpio109",
834 	"gpio110", "gpio111", "gpio112", "gpio113", "gpio114", "gpio115",
835 	"gpio116", "gpio117", "gpio118", "gpio119", "gpio120", "gpio121",
836 	"gpio122", "gpio123", "gpio124", "gpio125", "gpio126",
837 };
838 static const char * const ddr_pxi2_groups[] = {
839 	"gpio102", "gpio103",
840 };
841 static const char * const ddr_pxi3_groups[] = {
842 	"gpio104", "gpio105",
843 };
844 static const char * const pwm_8_groups[] = {
845 	"gpio104",
846 };
847 static const char * const pwm_9_groups[] = {
848 	"gpio115",
849 };
850 
851 static const struct pinfunction qcm2290_functions[] = {
852 	MSM_PIN_FUNCTION(adsp_ext),
853 	MSM_PIN_FUNCTION(agera_pll),
854 	MSM_PIN_FUNCTION(atest),
855 	MSM_PIN_FUNCTION(cam_mclk),
856 	MSM_PIN_FUNCTION(cci_async),
857 	MSM_PIN_FUNCTION(cci_i2c),
858 	MSM_PIN_FUNCTION(cci_timer0),
859 	MSM_PIN_FUNCTION(cci_timer1),
860 	MSM_PIN_FUNCTION(cci_timer2),
861 	MSM_PIN_FUNCTION(cci_timer3),
862 	MSM_PIN_FUNCTION(char_exec),
863 	MSM_PIN_FUNCTION(cri_trng),
864 	MSM_PIN_FUNCTION(cri_trng0),
865 	MSM_PIN_FUNCTION(cri_trng1),
866 	MSM_PIN_FUNCTION(dac_calib),
867 	MSM_PIN_FUNCTION(dbg_out),
868 	MSM_PIN_FUNCTION(ddr_bist),
869 	MSM_PIN_FUNCTION(ddr_pxi0),
870 	MSM_PIN_FUNCTION(ddr_pxi1),
871 	MSM_PIN_FUNCTION(ddr_pxi2),
872 	MSM_PIN_FUNCTION(ddr_pxi3),
873 	MSM_PIN_FUNCTION(egpio),
874 	MSM_PIN_FUNCTION(gcc_gp1),
875 	MSM_PIN_FUNCTION(gcc_gp2),
876 	MSM_PIN_FUNCTION(gcc_gp3),
877 	MSM_PIN_FUNCTION(gpio),
878 	MSM_PIN_FUNCTION(gp_pdm0),
879 	MSM_PIN_FUNCTION(gp_pdm1),
880 	MSM_PIN_FUNCTION(gp_pdm2),
881 	MSM_PIN_FUNCTION(gsm0_tx),
882 	MSM_PIN_FUNCTION(gsm1_tx),
883 	MSM_PIN_FUNCTION(jitter_bist),
884 	MSM_PIN_FUNCTION(mdp_vsync),
885 	MSM_PIN_FUNCTION(mdp_vsync_out_0),
886 	MSM_PIN_FUNCTION(mdp_vsync_out_1),
887 	MSM_PIN_FUNCTION(mpm_pwr),
888 	MSM_PIN_FUNCTION(mss_lte),
889 	MSM_PIN_FUNCTION(m_voc),
890 	MSM_PIN_FUNCTION(nav_gpio),
891 	MSM_PIN_FUNCTION(pa_indicator),
892 	MSM_PIN_FUNCTION(pbs0),
893 	MSM_PIN_FUNCTION(pbs1),
894 	MSM_PIN_FUNCTION(pbs2),
895 	MSM_PIN_FUNCTION(pbs3),
896 	MSM_PIN_FUNCTION(pbs4),
897 	MSM_PIN_FUNCTION(pbs5),
898 	MSM_PIN_FUNCTION(pbs6),
899 	MSM_PIN_FUNCTION(pbs7),
900 	MSM_PIN_FUNCTION(pbs8),
901 	MSM_PIN_FUNCTION(pbs9),
902 	MSM_PIN_FUNCTION(pbs10),
903 	MSM_PIN_FUNCTION(pbs11),
904 	MSM_PIN_FUNCTION(pbs12),
905 	MSM_PIN_FUNCTION(pbs13),
906 	MSM_PIN_FUNCTION(pbs14),
907 	MSM_PIN_FUNCTION(pbs15),
908 	MSM_PIN_FUNCTION(pbs_out),
909 	MSM_PIN_FUNCTION(phase_flag),
910 	MSM_PIN_FUNCTION(pll_bist),
911 	MSM_PIN_FUNCTION(pll_bypassnl),
912 	MSM_PIN_FUNCTION(pll_reset),
913 	MSM_PIN_FUNCTION(prng_rosc),
914 	MSM_PIN_FUNCTION(pwm_0),
915 	MSM_PIN_FUNCTION(pwm_1),
916 	MSM_PIN_FUNCTION(pwm_2),
917 	MSM_PIN_FUNCTION(pwm_3),
918 	MSM_PIN_FUNCTION(pwm_4),
919 	MSM_PIN_FUNCTION(pwm_5),
920 	MSM_PIN_FUNCTION(pwm_6),
921 	MSM_PIN_FUNCTION(pwm_7),
922 	MSM_PIN_FUNCTION(pwm_8),
923 	MSM_PIN_FUNCTION(pwm_9),
924 	MSM_PIN_FUNCTION(qdss_cti),
925 	MSM_PIN_FUNCTION(qdss_gpio),
926 	MSM_PIN_FUNCTION(qup0),
927 	MSM_PIN_FUNCTION(qup1),
928 	MSM_PIN_FUNCTION(qup2),
929 	MSM_PIN_FUNCTION(qup3),
930 	MSM_PIN_FUNCTION(qup4),
931 	MSM_PIN_FUNCTION(qup5),
932 	MSM_PIN_FUNCTION(sdc1_tb),
933 	MSM_PIN_FUNCTION(sdc2_tb),
934 	MSM_PIN_FUNCTION(sd_write),
935 	MSM_PIN_FUNCTION(ssbi_wtr1),
936 	MSM_PIN_FUNCTION(tgu_ch0),
937 	MSM_PIN_FUNCTION(tgu_ch1),
938 	MSM_PIN_FUNCTION(tgu_ch2),
939 	MSM_PIN_FUNCTION(tgu_ch3),
940 	MSM_PIN_FUNCTION(tsense_pwm),
941 	MSM_PIN_FUNCTION(uim1_clk),
942 	MSM_PIN_FUNCTION(uim1_data),
943 	MSM_PIN_FUNCTION(uim1_present),
944 	MSM_PIN_FUNCTION(uim1_reset),
945 	MSM_PIN_FUNCTION(uim2_clk),
946 	MSM_PIN_FUNCTION(uim2_data),
947 	MSM_PIN_FUNCTION(uim2_present),
948 	MSM_PIN_FUNCTION(uim2_reset),
949 	MSM_PIN_FUNCTION(usb_phy),
950 	MSM_PIN_FUNCTION(vfr_1),
951 	MSM_PIN_FUNCTION(vsense_trigger),
952 	MSM_PIN_FUNCTION(wlan1_adc0),
953 	MSM_PIN_FUNCTION(wlan1_adc1),
954 };
955 
956 /* Every pin is maintained as a single group, and missing or non-existing pin
957  * would be maintained as dummy group to synchronize pin group index with
958  * pin descriptor registered with pinctrl core.
959  * Clients would not be able to request these dummy pin groups.
960  */
961 static const struct msm_pingroup qcm2290_groups[] = {
962 	[0] = PINGROUP(0, qup0, m_voc, ddr_bist, _, phase_flag, qdss_gpio, atest, _, _),
963 	[1] = PINGROUP(1, qup0, mpm_pwr, ddr_bist, _, phase_flag, qdss_gpio, atest, _, _),
964 	[2] = PINGROUP(2, qup0, ddr_bist, _, phase_flag, qdss_gpio, dac_calib, atest, _, _),
965 	[3] = PINGROUP(3, qup0, ddr_bist, _, phase_flag, qdss_gpio, dac_calib, atest, _, _),
966 	[4] = PINGROUP(4, qup1, cri_trng0, _, phase_flag, dac_calib, atest, _, _, _),
967 	[5] = PINGROUP(5, qup1, cri_trng1, _, phase_flag, dac_calib, atest, _, _, _),
968 	[6] = PINGROUP(6, qup2, _, phase_flag, dac_calib, atest, _, _, _, _),
969 	[7] = PINGROUP(7, qup2, _, _, _, _, _, _, _, _),
970 	[8] = PINGROUP(8, qup3, pbs_out, pll_bist, _, qdss_gpio, _, tsense_pwm, _, _),
971 	[9] = PINGROUP(9, qup3, pbs_out, pll_bist, _, qdss_gpio, _, _, _, _),
972 	[10] = PINGROUP(10, qup3, agera_pll, _, pbs0, qdss_gpio, _, _, _, _),
973 	[11] = PINGROUP(11, qup3, agera_pll, _, pbs1, qdss_gpio, _, _, _, _),
974 	[12] = PINGROUP(12, qup4, tgu_ch0, _, _, _, _, _, _, _),
975 	[13] = PINGROUP(13, qup4, tgu_ch1, _, _, _, _, _, _, _),
976 	[14] = PINGROUP(14, qup5, tgu_ch2, _, phase_flag, qdss_gpio, dac_calib, _, _, _),
977 	[15] = PINGROUP(15, qup5, tgu_ch3, _, phase_flag, qdss_gpio, dac_calib, _, _, _),
978 	[16] = PINGROUP(16, qup5, _, phase_flag, qdss_gpio, dac_calib, _, _, _, _),
979 	[17] = PINGROUP(17, qup5, _, phase_flag, qdss_gpio, dac_calib, _, _, _, _),
980 	[18] = PINGROUP(18, sdc2_tb, cri_trng, pbs2, qdss_gpio, _, pwm_0, _, _, _),
981 	[19] = PINGROUP(19, sdc1_tb, pbs3, qdss_gpio, _, _, _, _, _, _),
982 	[20] = PINGROUP(20, cam_mclk, pbs4, qdss_gpio, _, _, _, _, _, _),
983 	[21] = PINGROUP(21, cam_mclk, adsp_ext, pbs5, qdss_gpio, _, _, _, _, _),
984 	[22] = PINGROUP(22, cci_i2c, prng_rosc, _, pbs6, phase_flag, qdss_gpio, dac_calib, atest, _),
985 	[23] = PINGROUP(23, cci_i2c, prng_rosc, _, pbs7, phase_flag, qdss_gpio, dac_calib, atest, _),
986 	[24] = PINGROUP(24, cci_timer1, gcc_gp1, _, pbs8, phase_flag, qdss_gpio, dac_calib, atest, _),
987 	[25] = PINGROUP(25, cci_async, cci_timer0, _, pbs9, phase_flag, qdss_gpio, dac_calib, atest, _),
988 	[26] = PINGROUP(26, _, pbs10, phase_flag, qdss_gpio, dac_calib, atest, vsense_trigger, _, _),
989 	[27] = PINGROUP(27, cam_mclk, qdss_cti, _, _, _, _, _, _, _),
990 	[28] = PINGROUP(28, cam_mclk, cci_timer2, qdss_cti, _, pwm_1, _, _, _, _),
991 	[29] = PINGROUP(29, cci_i2c, _, phase_flag, dac_calib, atest, _, _, _, _),
992 	[30] = PINGROUP(30, cci_i2c, _, phase_flag, dac_calib, atest, _, _, _, _),
993 	[31] = PINGROUP(31, gp_pdm0, _, phase_flag, dac_calib, atest, _, _, _, _),
994 	[32] = PINGROUP(32, cci_timer3, gp_pdm1, _, phase_flag, dac_calib, atest, _, _, _),
995 	[33] = PINGROUP(33, gp_pdm2, _, phase_flag, dac_calib, atest, _, _, _, _),
996 	[34] = PINGROUP(34, _, _, _, _, _, _, _, _, _),
997 	[35] = PINGROUP(35, _, phase_flag, _, _, _, _, _, _, _),
998 	[36] = PINGROUP(36, _, phase_flag, _, _, _, _, _, _, _),
999 	[37] = PINGROUP(37, _, _, char_exec, _, _, _, _, _, _),
1000 	[38] = PINGROUP(38, _, _, _, char_exec, _, _, _, _, _),
1001 	[39] = PINGROUP(39, _, _, _, _, _, _, _, _, _),
1002 	[40] = PINGROUP(40, _, _, _, _, _, _, _, _, _),
1003 	[41] = PINGROUP(41, _, _, _, _, _, _, _, _, _),
1004 	[42] = PINGROUP(42, _, nav_gpio, _, _, _, _, _, _, _),
1005 	[43] = PINGROUP(43, _, _, phase_flag, _, _, _, _, _, _),
1006 	[44] = PINGROUP(44, _, _, phase_flag, _, _, _, _, _, _),
1007 	[45] = PINGROUP(45, _, _, phase_flag, _, _, _, _, _, _),
1008 	[46] = PINGROUP(46, _, _, _, _, _, _, _, _, _),
1009 	[47] = PINGROUP(47, _, nav_gpio, pbs14, qdss_gpio, _, _, _, _, _),
1010 	[48] = PINGROUP(48, _, vfr_1, _, pbs15, qdss_gpio, _, _, _, _),
1011 	[49] = PINGROUP(49, _, pa_indicator, _, _, _, _, _, _, _),
1012 	[50] = PINGROUP(50, _, _, _, _, _, _, _, _, _),
1013 	[51] = PINGROUP(51, _, _, _, pwm_2, _, _, _, _, _),
1014 	[52] = PINGROUP(52, _, nav_gpio, pbs_out, _, _, _, _, _, _),
1015 	[53] = PINGROUP(53, _, gsm1_tx, _, _, _, _, _, _, _),
1016 	[54] = PINGROUP(54, _, _, _, _, _, _, _, _, _),
1017 	[55] = PINGROUP(55, _, _, _, _, _, _, _, _, _),
1018 	[56] = PINGROUP(56, _, _, _, _, _, _, _, _, _),
1019 	[57] = PINGROUP(57, _, _, _, _, _, _, _, _, _),
1020 	[58] = PINGROUP(58, _, _, _, _, _, _, _, _, _),
1021 	[59] = PINGROUP(59, _, ssbi_wtr1, _, _, _, _, _, _, _),
1022 	[60] = PINGROUP(60, _, ssbi_wtr1, _, _, _, _, _, _, _),
1023 	[61] = PINGROUP(61, _, _, _, _, _, _, _, _, _),
1024 	[62] = PINGROUP(62, _, pll_bypassnl, _, _, _, _, _, _, _),
1025 	[63] = PINGROUP(63, pll_reset, _, phase_flag, ddr_pxi0, _, _, _, _, _),
1026 	[64] = PINGROUP(64, gsm0_tx, _, phase_flag, ddr_pxi0, _, _, _, _, _),
1027 	[65] = PINGROUP(65, _, _, _, _, _, _, _, _, _),
1028 	[66] = PINGROUP(66, _, _, _, _, _, _, _, _, _),
1029 	[67] = PINGROUP(67, _, _, _, _, _, _, _, _, _),
1030 	[68] = PINGROUP(68, _, _, _, _, _, _, _, _, _),
1031 	[69] = PINGROUP(69, qup1, gcc_gp2, qdss_gpio, ddr_pxi1, _, _, _, _, _),
1032 	[70] = PINGROUP(70, qup1, gcc_gp3, qdss_gpio, ddr_pxi1, _, _, _, _, _),
1033 	[71] = PINGROUP(71, qup2, dbg_out, _, _, _, _, _, _, _),
1034 	[72] = PINGROUP(72, uim2_data, qdss_cti, _, pwm_3, _, _, _, _, _),
1035 	[73] = PINGROUP(73, uim2_clk, _, qdss_cti, _, _, _, _, _, _),
1036 	[74] = PINGROUP(74, uim2_reset, _, _, pwm_4, _, _, _, _, _),
1037 	[75] = PINGROUP(75, uim2_present, _, _, pwm_5, _, _, _, _, _),
1038 	[76] = PINGROUP(76, uim1_data, _, _, _, _, _, _, _, _),
1039 	[77] = PINGROUP(77, uim1_clk, _, _, _, _, _, _, _, _),
1040 	[78] = PINGROUP(78, uim1_reset, _, _, _, _, _, _, _, _),
1041 	[79] = PINGROUP(79, uim1_present, _, _, _, _, _, _, _, _),
1042 	[80] = PINGROUP(80, qup2, dac_calib, _, _, _, _, _, _, _),
1043 	[81] = PINGROUP(81, mdp_vsync_out_0, mdp_vsync_out_1, mdp_vsync, dac_calib, _, _, _, _, _),
1044 	[82] = PINGROUP(82, qup0, dac_calib, _, pwm_6, _, _, _, _, _),
1045 	[83] = PINGROUP(83, _, _, _, _, _, _, _, _, _),
1046 	[84] = PINGROUP(84, _, _, _, _, _, _, _, _, _),
1047 	[85] = PINGROUP(85, _, _, _, _, _, _, _, _, _),
1048 	[86] = PINGROUP(86, qup0, gcc_gp1, atest, _, _, _, _, _, _),
1049 	[87] = PINGROUP(87, pbs11, qdss_gpio, _, _, _, _, _, _, _),
1050 	[88] = PINGROUP(88, _, _, _, _, _, _, _, _, _),
1051 	[89] = PINGROUP(89, usb_phy, atest, _, pwm_7, _, _, _, _, _),
1052 	[90] = PINGROUP(90, mss_lte, pbs12, qdss_gpio, _, _, _, _, _, _),
1053 	[91] = PINGROUP(91, mss_lte, pbs13, qdss_gpio, _, _, _, _, _, _),
1054 	[92] = PINGROUP(92, _, _, _, _, _, _, _, _, _),
1055 	[93] = PINGROUP(93, _, _, _, _, _, _, _, _, _),
1056 	[94] = PINGROUP(94, _, qdss_gpio, wlan1_adc0, _, _, _, _, _, _),
1057 	[95] = PINGROUP(95, nav_gpio, gp_pdm0, qdss_gpio, wlan1_adc1, _, _, _, _, _),
1058 	[96] = PINGROUP(96, qup4, nav_gpio, mdp_vsync, gp_pdm1, sd_write, jitter_bist, qdss_cti, qdss_cti, _),
1059 	[97] = PINGROUP(97, qup4, nav_gpio, mdp_vsync, gp_pdm2, jitter_bist, qdss_cti, qdss_cti, _, _),
1060 	[98] = PINGROUP(98, _, _, _, _, _, _, _, _, egpio),
1061 	[99] = PINGROUP(99, _, _, _, _, _, _, _, _, egpio),
1062 	[100] = PINGROUP(100, atest, _, _, _, _, _, _, _, egpio),
1063 	[101] = PINGROUP(101, atest, _, _, _, _, _, _, _, egpio),
1064 	[102] = PINGROUP(102, _, phase_flag, dac_calib, ddr_pxi2, _, _, _, _, egpio),
1065 	[103] = PINGROUP(103, _, phase_flag, dac_calib, ddr_pxi2, _, _, _, _, egpio),
1066 	[104] = PINGROUP(104, _, phase_flag, qdss_gpio, dac_calib, ddr_pxi3, _, pwm_8, _, egpio),
1067 	[105] = PINGROUP(105, _, phase_flag, qdss_gpio, dac_calib, ddr_pxi3, _, _, _, egpio),
1068 	[106] = PINGROUP(106, nav_gpio, gcc_gp3, qdss_gpio, _, _, _, _, _, egpio),
1069 	[107] = PINGROUP(107, nav_gpio, gcc_gp2, qdss_gpio, _, _, _, _, _, egpio),
1070 	[108] = PINGROUP(108, nav_gpio, _, _, _, _, _, _, _, egpio),
1071 	[109] = PINGROUP(109, _, qdss_gpio, _, _, _, _, _, _, egpio),
1072 	[110] = PINGROUP(110, _, qdss_gpio, _, _, _, _, _, _, egpio),
1073 	[111] = PINGROUP(111, _, _, _, _, _, _, _, _, egpio),
1074 	[112] = PINGROUP(112, _, _, _, _, _, _, _, _, egpio),
1075 	[113] = PINGROUP(113, _, _, _, _, _, _, _, _, egpio),
1076 	[114] = PINGROUP(114, _, _, _, _, _, _, _, _, egpio),
1077 	[115] = PINGROUP(115, _, pwm_9, _, _, _, _, _, _, egpio),
1078 	[116] = PINGROUP(116, _, _, _, _, _, _, _, _, egpio),
1079 	[117] = PINGROUP(117, _, _, _, _, _, _, _, _, egpio),
1080 	[118] = PINGROUP(118, _, _, _, _, _, _, _, _, egpio),
1081 	[119] = PINGROUP(119, _, _, _, _, _, _, _, _, egpio),
1082 	[120] = PINGROUP(120, _, _, _, _, _, _, _, _, egpio),
1083 	[121] = PINGROUP(121, _, _, _, _, _, _, _, _, egpio),
1084 	[122] = PINGROUP(122, _, _, _, _, _, _, _, _, egpio),
1085 	[123] = PINGROUP(123, _, _, _, _, _, _, _, _, egpio),
1086 	[124] = PINGROUP(124, _, _, _, _, _, _, _, _, egpio),
1087 	[125] = PINGROUP(125, _, _, _, _, _, _, _, _, egpio),
1088 	[126] = PINGROUP(126, _, _, _, _, _, _, _, _, egpio),
1089 	[127] = SDC_QDSD_PINGROUP(sdc1_rclk, 0x84004, 0, 0),
1090 	[128] = SDC_QDSD_PINGROUP(sdc1_clk, 0x84000, 13, 6),
1091 	[129] = SDC_QDSD_PINGROUP(sdc1_cmd, 0x84000, 11, 3),
1092 	[130] = SDC_QDSD_PINGROUP(sdc1_data, 0x84000, 9, 0),
1093 	[131] = SDC_QDSD_PINGROUP(sdc2_clk, 0x86000, 14, 6),
1094 	[132] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x86000, 11, 3),
1095 	[133] = SDC_QDSD_PINGROUP(sdc2_data, 0x86000, 9, 0),
1096 };
1097 
1098 static const struct msm_gpio_wakeirq_map qcm2290_mpm_map[] = {
1099 	{ 0, 84 }, { 3, 75 }, { 4, 16 }, { 6, 59 }, { 8, 63 }, { 11, 17 },
1100 	{ 13, 18 }, { 14, 51 }, { 17, 20 }, { 18, 52 }, { 19, 53 }, { 24, 6 },
1101 	{ 25, 71 }, { 27, 73 }, { 28, 41 }, { 31, 27 }, { 32, 54 }, { 33, 55 },
1102 	{ 34, 56 }, { 35, 57 }, { 36, 58 }, { 39, 28 }, { 46, 29 }, { 62, 60 },
1103 	{ 63, 61 }, { 64, 62 }, { 69, 33 }, { 70, 34 }, { 72, 72 }, { 75, 35 },
1104 	{ 79, 36 }, { 80, 21 }, { 81, 38 }, { 86, 19 }, { 87, 42 }, { 88, 43 },
1105 	{ 89, 45 }, { 91, 74 }, { 94, 47 }, { 95, 48 }, { 96, 49 }, { 97, 50 },
1106 };
1107 
1108 static const struct msm_pinctrl_soc_data qcm2290_pinctrl = {
1109 	.pins = qcm2290_pins,
1110 	.npins = ARRAY_SIZE(qcm2290_pins),
1111 	.functions = qcm2290_functions,
1112 	.nfunctions = ARRAY_SIZE(qcm2290_functions),
1113 	.groups = qcm2290_groups,
1114 	.ngroups = ARRAY_SIZE(qcm2290_groups),
1115 	.ngpios = 127,
1116 	.wakeirq_map = qcm2290_mpm_map,
1117 	.nwakeirq_map = ARRAY_SIZE(qcm2290_mpm_map),
1118 	.egpio_func = 9,
1119 };
1120 
qcm2290_pinctrl_probe(struct platform_device * pdev)1121 static int qcm2290_pinctrl_probe(struct platform_device *pdev)
1122 {
1123 	return msm_pinctrl_probe(pdev, &qcm2290_pinctrl);
1124 }
1125 
1126 static const struct of_device_id qcm2290_pinctrl_of_match[] = {
1127 	{ .compatible = "qcom,qcm2290-tlmm", },
1128 	{ },
1129 };
1130 
1131 static struct platform_driver qcm2290_pinctrl_driver = {
1132 	.driver = {
1133 		.name = "qcm2290-pinctrl",
1134 		.of_match_table = qcm2290_pinctrl_of_match,
1135 	},
1136 	.probe = qcm2290_pinctrl_probe,
1137 };
1138 
qcm2290_pinctrl_init(void)1139 static int __init qcm2290_pinctrl_init(void)
1140 {
1141 	return platform_driver_register(&qcm2290_pinctrl_driver);
1142 }
1143 arch_initcall(qcm2290_pinctrl_init);
1144 
qcm2290_pinctrl_exit(void)1145 static void __exit qcm2290_pinctrl_exit(void)
1146 {
1147 	platform_driver_unregister(&qcm2290_pinctrl_driver);
1148 }
1149 module_exit(qcm2290_pinctrl_exit);
1150 
1151 MODULE_DESCRIPTION("QTI QCM2290 pinctrl driver");
1152 MODULE_LICENSE("GPL v2");
1153 MODULE_DEVICE_TABLE(of, qcm2290_pinctrl_of_match);
1154