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