1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2020, The Linux Foundation. All rights reserved.
6 #include <linux/module.h>
8 #include <linux/platform_device.h>
9 #include <linux/pinctrl/pinctrl.h>
11 #include "pinctrl-msm.h"
13 #define FUNCTION(fname) \
14 [msm_mux_##fname] = { \
16 .groups = fname##_groups, \
17 .ngroups = ARRAY_SIZE(fname##_groups), \
20 #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
23 .pins = gpio##id##_pins, \
24 .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \
26 msm_mux_gpio, /* gpio mode */ \
38 .ctl_reg = 0x1000 * id, \
39 .io_reg = 0x1000 * id + 0x4, \
40 .intr_cfg_reg = 0x1000 * id + 0x8, \
41 .intr_status_reg = 0x1000 * id + 0xc, \
42 .intr_target_reg = 0x1000 * id + 0x8, \
49 .intr_enable_bit = 0, \
50 .intr_status_bit = 0, \
51 .intr_target_bit = 5, \
52 .intr_target_kpss_val = 3, \
53 .intr_raw_status_bit = 4, \
54 .intr_polarity_bit = 1, \
55 .intr_detection_bit = 2, \
56 .intr_detection_width = 2, \
59 #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
62 .pins = pg_name##_pins, \
63 .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
67 .intr_status_reg = 0, \
68 .intr_target_reg = 0, \
75 .intr_enable_bit = -1, \
76 .intr_status_bit = -1, \
77 .intr_target_bit = -1, \
78 .intr_raw_status_bit = -1, \
79 .intr_polarity_bit = -1, \
80 .intr_detection_bit = -1, \
81 .intr_detection_width = -1, \
84 #define UFS_RESET(pg_name, offset) \
87 .pins = pg_name##_pins, \
88 .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
90 .io_reg = offset + 0x4, \
92 .intr_status_reg = 0, \
93 .intr_target_reg = 0, \
100 .intr_enable_bit = -1, \
101 .intr_status_bit = -1, \
102 .intr_target_bit = -1, \
103 .intr_raw_status_bit = -1, \
104 .intr_polarity_bit = -1, \
105 .intr_detection_bit = -1, \
106 .intr_detection_width = -1, \
109 static const struct pinctrl_pin_desc sc7280_pins
[] = {
110 PINCTRL_PIN(0, "GPIO_0"),
111 PINCTRL_PIN(1, "GPIO_1"),
112 PINCTRL_PIN(2, "GPIO_2"),
113 PINCTRL_PIN(3, "GPIO_3"),
114 PINCTRL_PIN(4, "GPIO_4"),
115 PINCTRL_PIN(5, "GPIO_5"),
116 PINCTRL_PIN(6, "GPIO_6"),
117 PINCTRL_PIN(7, "GPIO_7"),
118 PINCTRL_PIN(8, "GPIO_8"),
119 PINCTRL_PIN(9, "GPIO_9"),
120 PINCTRL_PIN(10, "GPIO_10"),
121 PINCTRL_PIN(11, "GPIO_11"),
122 PINCTRL_PIN(12, "GPIO_12"),
123 PINCTRL_PIN(13, "GPIO_13"),
124 PINCTRL_PIN(14, "GPIO_14"),
125 PINCTRL_PIN(15, "GPIO_15"),
126 PINCTRL_PIN(16, "GPIO_16"),
127 PINCTRL_PIN(17, "GPIO_17"),
128 PINCTRL_PIN(18, "GPIO_18"),
129 PINCTRL_PIN(19, "GPIO_19"),
130 PINCTRL_PIN(20, "GPIO_20"),
131 PINCTRL_PIN(21, "GPIO_21"),
132 PINCTRL_PIN(22, "GPIO_22"),
133 PINCTRL_PIN(23, "GPIO_23"),
134 PINCTRL_PIN(24, "GPIO_24"),
135 PINCTRL_PIN(25, "GPIO_25"),
136 PINCTRL_PIN(26, "GPIO_26"),
137 PINCTRL_PIN(27, "GPIO_27"),
138 PINCTRL_PIN(28, "GPIO_28"),
139 PINCTRL_PIN(29, "GPIO_29"),
140 PINCTRL_PIN(30, "GPIO_30"),
141 PINCTRL_PIN(31, "GPIO_31"),
142 PINCTRL_PIN(32, "GPIO_32"),
143 PINCTRL_PIN(33, "GPIO_33"),
144 PINCTRL_PIN(34, "GPIO_34"),
145 PINCTRL_PIN(35, "GPIO_35"),
146 PINCTRL_PIN(36, "GPIO_36"),
147 PINCTRL_PIN(37, "GPIO_37"),
148 PINCTRL_PIN(38, "GPIO_38"),
149 PINCTRL_PIN(39, "GPIO_39"),
150 PINCTRL_PIN(40, "GPIO_40"),
151 PINCTRL_PIN(41, "GPIO_41"),
152 PINCTRL_PIN(42, "GPIO_42"),
153 PINCTRL_PIN(43, "GPIO_43"),
154 PINCTRL_PIN(44, "GPIO_44"),
155 PINCTRL_PIN(45, "GPIO_45"),
156 PINCTRL_PIN(46, "GPIO_46"),
157 PINCTRL_PIN(47, "GPIO_47"),
158 PINCTRL_PIN(48, "GPIO_48"),
159 PINCTRL_PIN(49, "GPIO_49"),
160 PINCTRL_PIN(50, "GPIO_50"),
161 PINCTRL_PIN(51, "GPIO_51"),
162 PINCTRL_PIN(52, "GPIO_52"),
163 PINCTRL_PIN(53, "GPIO_53"),
164 PINCTRL_PIN(54, "GPIO_54"),
165 PINCTRL_PIN(55, "GPIO_55"),
166 PINCTRL_PIN(56, "GPIO_56"),
167 PINCTRL_PIN(57, "GPIO_57"),
168 PINCTRL_PIN(58, "GPIO_58"),
169 PINCTRL_PIN(59, "GPIO_59"),
170 PINCTRL_PIN(60, "GPIO_60"),
171 PINCTRL_PIN(61, "GPIO_61"),
172 PINCTRL_PIN(62, "GPIO_62"),
173 PINCTRL_PIN(63, "GPIO_63"),
174 PINCTRL_PIN(64, "GPIO_64"),
175 PINCTRL_PIN(65, "GPIO_65"),
176 PINCTRL_PIN(66, "GPIO_66"),
177 PINCTRL_PIN(67, "GPIO_67"),
178 PINCTRL_PIN(68, "GPIO_68"),
179 PINCTRL_PIN(69, "GPIO_69"),
180 PINCTRL_PIN(70, "GPIO_70"),
181 PINCTRL_PIN(71, "GPIO_71"),
182 PINCTRL_PIN(72, "GPIO_72"),
183 PINCTRL_PIN(73, "GPIO_73"),
184 PINCTRL_PIN(74, "GPIO_74"),
185 PINCTRL_PIN(75, "GPIO_75"),
186 PINCTRL_PIN(76, "GPIO_76"),
187 PINCTRL_PIN(77, "GPIO_77"),
188 PINCTRL_PIN(78, "GPIO_78"),
189 PINCTRL_PIN(79, "GPIO_79"),
190 PINCTRL_PIN(80, "GPIO_80"),
191 PINCTRL_PIN(81, "GPIO_81"),
192 PINCTRL_PIN(82, "GPIO_82"),
193 PINCTRL_PIN(83, "GPIO_83"),
194 PINCTRL_PIN(84, "GPIO_84"),
195 PINCTRL_PIN(85, "GPIO_85"),
196 PINCTRL_PIN(86, "GPIO_86"),
197 PINCTRL_PIN(87, "GPIO_87"),
198 PINCTRL_PIN(88, "GPIO_88"),
199 PINCTRL_PIN(89, "GPIO_89"),
200 PINCTRL_PIN(90, "GPIO_90"),
201 PINCTRL_PIN(91, "GPIO_91"),
202 PINCTRL_PIN(92, "GPIO_92"),
203 PINCTRL_PIN(93, "GPIO_93"),
204 PINCTRL_PIN(94, "GPIO_94"),
205 PINCTRL_PIN(95, "GPIO_95"),
206 PINCTRL_PIN(96, "GPIO_96"),
207 PINCTRL_PIN(97, "GPIO_97"),
208 PINCTRL_PIN(98, "GPIO_98"),
209 PINCTRL_PIN(99, "GPIO_99"),
210 PINCTRL_PIN(100, "GPIO_100"),
211 PINCTRL_PIN(101, "GPIO_101"),
212 PINCTRL_PIN(102, "GPIO_102"),
213 PINCTRL_PIN(103, "GPIO_103"),
214 PINCTRL_PIN(104, "GPIO_104"),
215 PINCTRL_PIN(105, "GPIO_105"),
216 PINCTRL_PIN(106, "GPIO_106"),
217 PINCTRL_PIN(107, "GPIO_107"),
218 PINCTRL_PIN(108, "GPIO_108"),
219 PINCTRL_PIN(109, "GPIO_109"),
220 PINCTRL_PIN(110, "GPIO_110"),
221 PINCTRL_PIN(111, "GPIO_111"),
222 PINCTRL_PIN(112, "GPIO_112"),
223 PINCTRL_PIN(113, "GPIO_113"),
224 PINCTRL_PIN(114, "GPIO_114"),
225 PINCTRL_PIN(115, "GPIO_115"),
226 PINCTRL_PIN(116, "GPIO_116"),
227 PINCTRL_PIN(117, "GPIO_117"),
228 PINCTRL_PIN(118, "GPIO_118"),
229 PINCTRL_PIN(119, "GPIO_119"),
230 PINCTRL_PIN(120, "GPIO_120"),
231 PINCTRL_PIN(121, "GPIO_121"),
232 PINCTRL_PIN(122, "GPIO_122"),
233 PINCTRL_PIN(123, "GPIO_123"),
234 PINCTRL_PIN(124, "GPIO_124"),
235 PINCTRL_PIN(125, "GPIO_125"),
236 PINCTRL_PIN(126, "GPIO_126"),
237 PINCTRL_PIN(127, "GPIO_127"),
238 PINCTRL_PIN(128, "GPIO_128"),
239 PINCTRL_PIN(129, "GPIO_129"),
240 PINCTRL_PIN(130, "GPIO_130"),
241 PINCTRL_PIN(131, "GPIO_131"),
242 PINCTRL_PIN(132, "GPIO_132"),
243 PINCTRL_PIN(133, "GPIO_133"),
244 PINCTRL_PIN(134, "GPIO_134"),
245 PINCTRL_PIN(135, "GPIO_135"),
246 PINCTRL_PIN(136, "GPIO_136"),
247 PINCTRL_PIN(137, "GPIO_137"),
248 PINCTRL_PIN(138, "GPIO_138"),
249 PINCTRL_PIN(139, "GPIO_139"),
250 PINCTRL_PIN(140, "GPIO_140"),
251 PINCTRL_PIN(141, "GPIO_141"),
252 PINCTRL_PIN(142, "GPIO_142"),
253 PINCTRL_PIN(143, "GPIO_143"),
254 PINCTRL_PIN(144, "GPIO_144"),
255 PINCTRL_PIN(145, "GPIO_145"),
256 PINCTRL_PIN(146, "GPIO_146"),
257 PINCTRL_PIN(147, "GPIO_147"),
258 PINCTRL_PIN(148, "GPIO_148"),
259 PINCTRL_PIN(149, "GPIO_149"),
260 PINCTRL_PIN(150, "GPIO_150"),
261 PINCTRL_PIN(151, "GPIO_151"),
262 PINCTRL_PIN(152, "GPIO_152"),
263 PINCTRL_PIN(153, "GPIO_153"),
264 PINCTRL_PIN(154, "GPIO_154"),
265 PINCTRL_PIN(155, "GPIO_155"),
266 PINCTRL_PIN(156, "GPIO_156"),
267 PINCTRL_PIN(157, "GPIO_157"),
268 PINCTRL_PIN(158, "GPIO_158"),
269 PINCTRL_PIN(159, "GPIO_159"),
270 PINCTRL_PIN(160, "GPIO_160"),
271 PINCTRL_PIN(161, "GPIO_161"),
272 PINCTRL_PIN(162, "GPIO_162"),
273 PINCTRL_PIN(163, "GPIO_163"),
274 PINCTRL_PIN(164, "GPIO_164"),
275 PINCTRL_PIN(165, "GPIO_165"),
276 PINCTRL_PIN(166, "GPIO_166"),
277 PINCTRL_PIN(167, "GPIO_167"),
278 PINCTRL_PIN(168, "GPIO_168"),
279 PINCTRL_PIN(169, "GPIO_169"),
280 PINCTRL_PIN(170, "GPIO_170"),
281 PINCTRL_PIN(171, "GPIO_171"),
282 PINCTRL_PIN(172, "GPIO_172"),
283 PINCTRL_PIN(173, "GPIO_173"),
284 PINCTRL_PIN(174, "GPIO_174"),
285 PINCTRL_PIN(175, "UFS_RESET"),
286 PINCTRL_PIN(176, "SDC1_RCLK"),
287 PINCTRL_PIN(177, "SDC1_CLK"),
288 PINCTRL_PIN(178, "SDC1_CMD"),
289 PINCTRL_PIN(179, "SDC1_DATA"),
290 PINCTRL_PIN(180, "SDC2_CLK"),
291 PINCTRL_PIN(181, "SDC2_CMD"),
292 PINCTRL_PIN(182, "SDC2_DATA"),
295 #define DECLARE_MSM_GPIO_PINS(pin) \
296 static const unsigned int gpio##pin##_pins[] = { pin }
297 DECLARE_MSM_GPIO_PINS(0);
298 DECLARE_MSM_GPIO_PINS(1);
299 DECLARE_MSM_GPIO_PINS(2);
300 DECLARE_MSM_GPIO_PINS(3);
301 DECLARE_MSM_GPIO_PINS(4);
302 DECLARE_MSM_GPIO_PINS(5);
303 DECLARE_MSM_GPIO_PINS(6);
304 DECLARE_MSM_GPIO_PINS(7);
305 DECLARE_MSM_GPIO_PINS(8);
306 DECLARE_MSM_GPIO_PINS(9);
307 DECLARE_MSM_GPIO_PINS(10);
308 DECLARE_MSM_GPIO_PINS(11);
309 DECLARE_MSM_GPIO_PINS(12);
310 DECLARE_MSM_GPIO_PINS(13);
311 DECLARE_MSM_GPIO_PINS(14);
312 DECLARE_MSM_GPIO_PINS(15);
313 DECLARE_MSM_GPIO_PINS(16);
314 DECLARE_MSM_GPIO_PINS(17);
315 DECLARE_MSM_GPIO_PINS(18);
316 DECLARE_MSM_GPIO_PINS(19);
317 DECLARE_MSM_GPIO_PINS(20);
318 DECLARE_MSM_GPIO_PINS(21);
319 DECLARE_MSM_GPIO_PINS(22);
320 DECLARE_MSM_GPIO_PINS(23);
321 DECLARE_MSM_GPIO_PINS(24);
322 DECLARE_MSM_GPIO_PINS(25);
323 DECLARE_MSM_GPIO_PINS(26);
324 DECLARE_MSM_GPIO_PINS(27);
325 DECLARE_MSM_GPIO_PINS(28);
326 DECLARE_MSM_GPIO_PINS(29);
327 DECLARE_MSM_GPIO_PINS(30);
328 DECLARE_MSM_GPIO_PINS(31);
329 DECLARE_MSM_GPIO_PINS(32);
330 DECLARE_MSM_GPIO_PINS(33);
331 DECLARE_MSM_GPIO_PINS(34);
332 DECLARE_MSM_GPIO_PINS(35);
333 DECLARE_MSM_GPIO_PINS(36);
334 DECLARE_MSM_GPIO_PINS(37);
335 DECLARE_MSM_GPIO_PINS(38);
336 DECLARE_MSM_GPIO_PINS(39);
337 DECLARE_MSM_GPIO_PINS(40);
338 DECLARE_MSM_GPIO_PINS(41);
339 DECLARE_MSM_GPIO_PINS(42);
340 DECLARE_MSM_GPIO_PINS(43);
341 DECLARE_MSM_GPIO_PINS(44);
342 DECLARE_MSM_GPIO_PINS(45);
343 DECLARE_MSM_GPIO_PINS(46);
344 DECLARE_MSM_GPIO_PINS(47);
345 DECLARE_MSM_GPIO_PINS(48);
346 DECLARE_MSM_GPIO_PINS(49);
347 DECLARE_MSM_GPIO_PINS(50);
348 DECLARE_MSM_GPIO_PINS(51);
349 DECLARE_MSM_GPIO_PINS(52);
350 DECLARE_MSM_GPIO_PINS(53);
351 DECLARE_MSM_GPIO_PINS(54);
352 DECLARE_MSM_GPIO_PINS(55);
353 DECLARE_MSM_GPIO_PINS(56);
354 DECLARE_MSM_GPIO_PINS(57);
355 DECLARE_MSM_GPIO_PINS(58);
356 DECLARE_MSM_GPIO_PINS(59);
357 DECLARE_MSM_GPIO_PINS(60);
358 DECLARE_MSM_GPIO_PINS(61);
359 DECLARE_MSM_GPIO_PINS(62);
360 DECLARE_MSM_GPIO_PINS(63);
361 DECLARE_MSM_GPIO_PINS(64);
362 DECLARE_MSM_GPIO_PINS(65);
363 DECLARE_MSM_GPIO_PINS(66);
364 DECLARE_MSM_GPIO_PINS(67);
365 DECLARE_MSM_GPIO_PINS(68);
366 DECLARE_MSM_GPIO_PINS(69);
367 DECLARE_MSM_GPIO_PINS(70);
368 DECLARE_MSM_GPIO_PINS(71);
369 DECLARE_MSM_GPIO_PINS(72);
370 DECLARE_MSM_GPIO_PINS(73);
371 DECLARE_MSM_GPIO_PINS(74);
372 DECLARE_MSM_GPIO_PINS(75);
373 DECLARE_MSM_GPIO_PINS(76);
374 DECLARE_MSM_GPIO_PINS(77);
375 DECLARE_MSM_GPIO_PINS(78);
376 DECLARE_MSM_GPIO_PINS(79);
377 DECLARE_MSM_GPIO_PINS(80);
378 DECLARE_MSM_GPIO_PINS(81);
379 DECLARE_MSM_GPIO_PINS(82);
380 DECLARE_MSM_GPIO_PINS(83);
381 DECLARE_MSM_GPIO_PINS(84);
382 DECLARE_MSM_GPIO_PINS(85);
383 DECLARE_MSM_GPIO_PINS(86);
384 DECLARE_MSM_GPIO_PINS(87);
385 DECLARE_MSM_GPIO_PINS(88);
386 DECLARE_MSM_GPIO_PINS(89);
387 DECLARE_MSM_GPIO_PINS(90);
388 DECLARE_MSM_GPIO_PINS(91);
389 DECLARE_MSM_GPIO_PINS(92);
390 DECLARE_MSM_GPIO_PINS(93);
391 DECLARE_MSM_GPIO_PINS(94);
392 DECLARE_MSM_GPIO_PINS(95);
393 DECLARE_MSM_GPIO_PINS(96);
394 DECLARE_MSM_GPIO_PINS(97);
395 DECLARE_MSM_GPIO_PINS(98);
396 DECLARE_MSM_GPIO_PINS(99);
397 DECLARE_MSM_GPIO_PINS(100);
398 DECLARE_MSM_GPIO_PINS(101);
399 DECLARE_MSM_GPIO_PINS(102);
400 DECLARE_MSM_GPIO_PINS(103);
401 DECLARE_MSM_GPIO_PINS(104);
402 DECLARE_MSM_GPIO_PINS(105);
403 DECLARE_MSM_GPIO_PINS(106);
404 DECLARE_MSM_GPIO_PINS(107);
405 DECLARE_MSM_GPIO_PINS(108);
406 DECLARE_MSM_GPIO_PINS(109);
407 DECLARE_MSM_GPIO_PINS(110);
408 DECLARE_MSM_GPIO_PINS(111);
409 DECLARE_MSM_GPIO_PINS(112);
410 DECLARE_MSM_GPIO_PINS(113);
411 DECLARE_MSM_GPIO_PINS(114);
412 DECLARE_MSM_GPIO_PINS(115);
413 DECLARE_MSM_GPIO_PINS(116);
414 DECLARE_MSM_GPIO_PINS(117);
415 DECLARE_MSM_GPIO_PINS(118);
416 DECLARE_MSM_GPIO_PINS(119);
417 DECLARE_MSM_GPIO_PINS(120);
418 DECLARE_MSM_GPIO_PINS(121);
419 DECLARE_MSM_GPIO_PINS(122);
420 DECLARE_MSM_GPIO_PINS(123);
421 DECLARE_MSM_GPIO_PINS(124);
422 DECLARE_MSM_GPIO_PINS(125);
423 DECLARE_MSM_GPIO_PINS(126);
424 DECLARE_MSM_GPIO_PINS(127);
425 DECLARE_MSM_GPIO_PINS(128);
426 DECLARE_MSM_GPIO_PINS(129);
427 DECLARE_MSM_GPIO_PINS(130);
428 DECLARE_MSM_GPIO_PINS(131);
429 DECLARE_MSM_GPIO_PINS(132);
430 DECLARE_MSM_GPIO_PINS(133);
431 DECLARE_MSM_GPIO_PINS(134);
432 DECLARE_MSM_GPIO_PINS(135);
433 DECLARE_MSM_GPIO_PINS(136);
434 DECLARE_MSM_GPIO_PINS(137);
435 DECLARE_MSM_GPIO_PINS(138);
436 DECLARE_MSM_GPIO_PINS(139);
437 DECLARE_MSM_GPIO_PINS(140);
438 DECLARE_MSM_GPIO_PINS(141);
439 DECLARE_MSM_GPIO_PINS(142);
440 DECLARE_MSM_GPIO_PINS(143);
441 DECLARE_MSM_GPIO_PINS(144);
442 DECLARE_MSM_GPIO_PINS(145);
443 DECLARE_MSM_GPIO_PINS(146);
444 DECLARE_MSM_GPIO_PINS(147);
445 DECLARE_MSM_GPIO_PINS(148);
446 DECLARE_MSM_GPIO_PINS(149);
447 DECLARE_MSM_GPIO_PINS(150);
448 DECLARE_MSM_GPIO_PINS(151);
449 DECLARE_MSM_GPIO_PINS(152);
450 DECLARE_MSM_GPIO_PINS(153);
451 DECLARE_MSM_GPIO_PINS(154);
452 DECLARE_MSM_GPIO_PINS(155);
453 DECLARE_MSM_GPIO_PINS(156);
454 DECLARE_MSM_GPIO_PINS(157);
455 DECLARE_MSM_GPIO_PINS(158);
456 DECLARE_MSM_GPIO_PINS(159);
457 DECLARE_MSM_GPIO_PINS(160);
458 DECLARE_MSM_GPIO_PINS(161);
459 DECLARE_MSM_GPIO_PINS(162);
460 DECLARE_MSM_GPIO_PINS(163);
461 DECLARE_MSM_GPIO_PINS(164);
462 DECLARE_MSM_GPIO_PINS(165);
463 DECLARE_MSM_GPIO_PINS(166);
464 DECLARE_MSM_GPIO_PINS(167);
465 DECLARE_MSM_GPIO_PINS(168);
466 DECLARE_MSM_GPIO_PINS(169);
467 DECLARE_MSM_GPIO_PINS(170);
468 DECLARE_MSM_GPIO_PINS(171);
469 DECLARE_MSM_GPIO_PINS(172);
470 DECLARE_MSM_GPIO_PINS(173);
471 DECLARE_MSM_GPIO_PINS(174);
473 static const unsigned int ufs_reset_pins
[] = { 175 };
474 static const unsigned int sdc1_rclk_pins
[] = { 176 };
475 static const unsigned int sdc1_clk_pins
[] = { 177 };
476 static const unsigned int sdc1_cmd_pins
[] = { 178 };
477 static const unsigned int sdc1_data_pins
[] = { 179 };
478 static const unsigned int sdc2_clk_pins
[] = { 180 };
479 static const unsigned int sdc2_cmd_pins
[] = { 181 };
480 static const unsigned int sdc2_data_pins
[] = { 182 };
482 enum sc7280_functions
{
527 msm_mux_host2wlan_sol
,
530 msm_mux_lpass_slimbus
,
566 msm_mux_pa_indicator
,
567 msm_mux_pcie0_clkreqn
,
568 msm_mux_pcie1_clkreqn
,
571 msm_mux_pll_bypassnl
,
578 msm_mux_qlink0_enable
,
579 msm_mux_qlink0_request
,
581 msm_mux_qlink1_enable
,
582 msm_mux_qlink1_request
,
618 msm_mux_uim0_present
,
622 msm_mux_uim1_present
,
628 msm_mux_vsense_trigger
,
632 static const char * const gpio_groups
[] = {
633 "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
634 "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
635 "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
636 "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
637 "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
638 "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
639 "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
640 "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
641 "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
642 "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
643 "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
644 "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
645 "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
646 "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
647 "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
648 "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
649 "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
650 "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
651 "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128",
652 "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134",
653 "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140",
654 "gpio141", "gpio142", "gpio143", "gpio144", "gpio145", "gpio146",
655 "gpio147", "gpio148", "gpio149", "gpio150", "gpio151", "gpio152",
656 "gpio153", "gpio154", "gpio155", "gpio156", "gpio157", "gpio158",
657 "gpio159", "gpio160", "gpio161", "gpio162", "gpio163", "gpio164",
658 "gpio165", "gpio166", "gpio167", "gpio168", "gpio169", "gpio170",
659 "gpio171", "gpio172", "gpio173", "gpio174",
661 static const char * const atest_char_groups
[] = {
664 static const char * const atest_char0_groups
[] = {
667 static const char * const atest_char1_groups
[] = {
670 static const char * const atest_char2_groups
[] = {
673 static const char * const atest_char3_groups
[] = {
676 static const char * const atest_usb0_groups
[] = {
679 static const char * const atest_usb00_groups
[] = {
682 static const char * const atest_usb01_groups
[] = {
685 static const char * const atest_usb02_groups
[] = {
688 static const char * const atest_usb03_groups
[] = {
691 static const char * const atest_usb1_groups
[] = {
694 static const char * const atest_usb10_groups
[] = {
697 static const char * const atest_usb11_groups
[] = {
700 static const char * const atest_usb12_groups
[] = {
703 static const char * const atest_usb13_groups
[] = {
706 static const char * const audio_ref_groups
[] = {
709 static const char * const cam_mclk_groups
[] = {
710 "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio93",
712 static const char * const cci_async_groups
[] = {
713 "gpio78", "gpio79", "gpio93",
715 static const char * const cci_i2c_groups
[] = {
716 "gpio69", "gpio70", "gpio71", "gpio72", "gpio73", "gpio74", "gpio75",
719 static const char * const cci_timer0_groups
[] = {
722 static const char * const cci_timer1_groups
[] = {
725 static const char * const cci_timer2_groups
[] = {
728 static const char * const cci_timer3_groups
[] = {
731 static const char * const cci_timer4_groups
[] = {
734 static const char * const cmu_rng0_groups
[] = {
737 static const char * const cmu_rng1_groups
[] = {
740 static const char * const cmu_rng2_groups
[] = {
743 static const char * const cmu_rng3_groups
[] = {
746 static const char * const coex_uart1_groups
[] = {
747 "gpio127", "gpio128",
749 static const char * const cri_trng_groups
[] = {
752 static const char * const cri_trng0_groups
[] = {
755 static const char * const cri_trng1_groups
[] = {
758 static const char * const dbg_out_groups
[] = {
761 static const char * const ddr_bist_groups
[] = {
762 "gpio56", "gpio57", "gpio58", "gpio59",
764 static const char * const ddr_pxi0_groups
[] = {
767 static const char * const ddr_pxi1_groups
[] = {
770 static const char * const dp_hot_groups
[] = {
773 static const char * const dp_lcd_groups
[] = {
776 static const char * const edp_hot_groups
[] = {
779 static const char * const edp_lcd_groups
[] = {
782 static const char * const gcc_gp1_groups
[] = {
785 static const char * const gcc_gp2_groups
[] = {
788 static const char * const gcc_gp3_groups
[] = {
791 static const char * const host2wlan_sol_groups
[] = {
794 static const char * const ibi_i3c_groups
[] = {
795 "gpio0", "gpio1", "gpio4", "gpio5", "gpio36", "gpio37",
797 static const char * const jitter_bist_groups
[] = {
800 static const char * const lpass_slimbus_groups
[] = {
803 static const char * const mdp_vsync_groups
[] = {
804 "gpio14", "gpio16", "gpio79", "gpio80", "gpio81",
806 static const char * const mdp_vsync0_groups
[] = {
809 static const char * const mdp_vsync1_groups
[] = {
812 static const char * const mdp_vsync2_groups
[] = {
815 static const char * const mdp_vsync3_groups
[] = {
818 static const char * const mdp_vsync4_groups
[] = {
821 static const char * const mdp_vsync5_groups
[] = {
824 static const char * const mi2s0_data0_groups
[] = {
827 static const char * const mi2s0_data1_groups
[] = {
830 static const char * const mi2s0_sck_groups
[] = {
833 static const char * const mi2s0_ws_groups
[] = {
836 static const char * const mi2s1_data0_groups
[] = {
839 static const char * const mi2s1_data1_groups
[] = {
842 static const char * const mi2s1_sck_groups
[] = {
845 static const char * const mi2s1_ws_groups
[] = {
848 static const char * const mi2s2_data0_groups
[] = {
851 static const char * const mi2s2_data1_groups
[] = {
854 static const char * const mi2s2_sck_groups
[] = {
857 static const char * const mi2s2_ws_groups
[] = {
860 static const char * const mss_grfc0_groups
[] = {
861 "gpio117", "gpio132",
863 static const char * const mss_grfc1_groups
[] = {
866 static const char * const mss_grfc10_groups
[] = {
869 static const char * const mss_grfc11_groups
[] = {
872 static const char * const mss_grfc12_groups
[] = {
875 static const char * const mss_grfc2_groups
[] = {
878 static const char * const mss_grfc3_groups
[] = {
881 static const char * const mss_grfc4_groups
[] = {
884 static const char * const mss_grfc5_groups
[] = {
887 static const char * const mss_grfc6_groups
[] = {
890 static const char * const mss_grfc7_groups
[] = {
893 static const char * const mss_grfc8_groups
[] = {
896 static const char * const mss_grfc9_groups
[] = {
899 static const char * const nav_gpio0_groups
[] = {
902 static const char * const nav_gpio1_groups
[] = {
905 static const char * const nav_gpio2_groups
[] = {
908 static const char * const pa_indicator_groups
[] = {
911 static const char * const pcie0_clkreqn_groups
[] = {
914 static const char * const pcie1_clkreqn_groups
[] = {
917 static const char * const phase_flag_groups
[] = {
918 "gpio12", "gpio13", "gpio14", "gpio15", "gpio16",
919 "gpio17", "gpio18", "gpio19", "gpio56", "gpio57",
920 "gpio58", "gpio59", "gpio60", "gpio61", "gpio62",
921 "gpio63", "gpio117", "gpio118", "gpio119", "gpio120",
922 "gpio121", "gpio122", "gpio123", "gpio124", "gpio125",
923 "gpio126", "gpio127", "gpio128", "gpio129", "gpio130",
924 "gpio131", "gpio132",
926 static const char * const pll_bist_groups
[] = {
929 static const char * const pll_bypassnl_groups
[] = {
932 static const char * const pll_clk_groups
[] = {
935 static const char * const pll_reset_groups
[] = {
938 static const char * const pri_mi2s_groups
[] = {
941 static const char * const prng_rosc_groups
[] = {
944 static const char * const qdss_groups
[] = {
945 "gpio2", "gpio3", "gpio8", "gpio9", "gpio10",
946 "gpio11", "gpio12", "gpio13", "gpio20", "gpio21",
947 "gpio22", "gpio23", "gpio24", "gpio25", "gpio26",
948 "gpio27", "gpio28", "gpio29", "gpio58", "gpio59",
949 "gpio101", "gpio102", "gpio103", "gpio104", "gpio105",
950 "gpio106", "gpio107", "gpio108", "gpio150", "gpio151",
951 "gpio152", "gpio153", "gpio171", "gpio172", "gpio173",
954 static const char * const qdss_cti_groups
[] = {
955 "gpio15", "gpio16", "gpio18", "gpio19", "gpio156", "gpio157",
956 "gpio165", "gpio166",
958 static const char * const qlink0_enable_groups
[] = {
961 static const char * const qlink0_request_groups
[] = {
964 static const char * const qlink0_wmss_groups
[] = {
967 static const char * const qlink1_enable_groups
[] = {
970 static const char * const qlink1_request_groups
[] = {
973 static const char * const qlink1_wmss_groups
[] = {
976 static const char * const qspi_clk_groups
[] = {
979 static const char * const qspi_cs_groups
[] = {
982 static const char * const qspi_data_groups
[] = {
983 "gpio12", "gpio13", "gpio16", "gpio17",
985 static const char * const qup00_groups
[] = {
986 "gpio0", "gpio1", "gpio2", "gpio3",
988 static const char * const qup01_groups
[] = {
989 "gpio4", "gpio5", "gpio6", "gpio7",
991 static const char * const qup02_groups
[] = {
992 "gpio8", "gpio9", "gpio10", "gpio11",
994 static const char * const qup03_groups
[] = {
995 "gpio12", "gpio13", "gpio14", "gpio15",
997 static const char * const qup04_groups
[] = {
998 "gpio16", "gpio17", "gpio18", "gpio19",
1000 static const char * const qup05_groups
[] = {
1001 "gpio20", "gpio21", "gpio22", "gpio23",
1003 static const char * const qup06_groups
[] = {
1004 "gpio24", "gpio25", "gpio26", "gpio27",
1006 static const char * const qup07_groups
[] = {
1007 "gpio2", "gpio3", "gpio6", "gpio28", "gpio29", "gpio30", "gpio31",
1009 static const char * const qup10_groups
[] = {
1010 "gpio32", "gpio33", "gpio34", "gpio35",
1012 static const char * const qup11_groups
[] = {
1013 "gpio36", "gpio37", "gpio38", "gpio39",
1015 static const char * const qup12_groups
[] = {
1016 "gpio40", "gpio41", "gpio42", "gpio43",
1018 static const char * const qup13_groups
[] = {
1019 "gpio44", "gpio45", "gpio46", "gpio47",
1021 static const char * const qup14_groups
[] = {
1022 "gpio38", "gpio48", "gpio49", "gpio50", "gpio51", "gpio54", "gpio55",
1024 static const char * const qup15_groups
[] = {
1025 "gpio52", "gpio53", "gpio54", "gpio55",
1027 static const char * const qup16_groups
[] = {
1028 "gpio50", "gpio56", "gpio57", "gpio58", "gpio59", "gpio62", "gpio63",
1030 static const char * const qup17_groups
[] = {
1031 "gpio60", "gpio61", "gpio62", "gpio63",
1033 static const char * const sd_write_groups
[] = {
1036 static const char * const sdc40_groups
[] = {
1039 static const char * const sdc41_groups
[] = {
1042 static const char * const sdc42_groups
[] = {
1045 static const char * const sdc43_groups
[] = {
1048 static const char * const sdc4_clk_groups
[] = {
1051 static const char * const sdc4_cmd_groups
[] = {
1054 static const char * const sec_mi2s_groups
[] = {
1057 static const char * const tb_trig_groups
[] = {
1058 "gpio12", "gpio13", "gpio15",
1060 static const char * const tgu_ch0_groups
[] = {
1063 static const char * const tgu_ch1_groups
[] = {
1066 static const char * const tsense_pwm1_groups
[] = {
1069 static const char * const tsense_pwm2_groups
[] = {
1072 static const char * const uim0_clk_groups
[] = {
1075 static const char * const uim0_data_groups
[] = {
1078 static const char * const uim0_present_groups
[] = {
1081 static const char * const uim0_reset_groups
[] = {
1084 static const char * const uim1_clk_groups
[] = {
1087 static const char * const uim1_data_groups
[] = {
1090 static const char * const uim1_present_groups
[] = {
1093 static const char * const uim1_reset_groups
[] = {
1096 static const char * const usb2phy_ac_groups
[] = {
1099 static const char * const usb_phy_groups
[] = {
1102 static const char * const vfr_0_groups
[] = {
1105 static const char * const vfr_1_groups
[] = {
1108 static const char * const vsense_trigger_groups
[] = {
1112 static const struct msm_function sc7280_functions
[] = {
1113 FUNCTION(atest_char
),
1114 FUNCTION(atest_char0
),
1115 FUNCTION(atest_char1
),
1116 FUNCTION(atest_char2
),
1117 FUNCTION(atest_char3
),
1118 FUNCTION(atest_usb0
),
1119 FUNCTION(atest_usb00
),
1120 FUNCTION(atest_usb01
),
1121 FUNCTION(atest_usb02
),
1122 FUNCTION(atest_usb03
),
1123 FUNCTION(atest_usb1
),
1124 FUNCTION(atest_usb10
),
1125 FUNCTION(atest_usb11
),
1126 FUNCTION(atest_usb12
),
1127 FUNCTION(atest_usb13
),
1128 FUNCTION(audio_ref
),
1130 FUNCTION(cci_async
),
1132 FUNCTION(cci_timer0
),
1133 FUNCTION(cci_timer1
),
1134 FUNCTION(cci_timer2
),
1135 FUNCTION(cci_timer3
),
1136 FUNCTION(cci_timer4
),
1141 FUNCTION(coex_uart1
),
1143 FUNCTION(cri_trng0
),
1144 FUNCTION(cri_trng1
),
1157 FUNCTION(host2wlan_sol
),
1159 FUNCTION(jitter_bist
),
1160 FUNCTION(lpass_slimbus
),
1161 FUNCTION(mdp_vsync
),
1162 FUNCTION(mdp_vsync0
),
1163 FUNCTION(mdp_vsync1
),
1164 FUNCTION(mdp_vsync2
),
1165 FUNCTION(mdp_vsync3
),
1166 FUNCTION(mdp_vsync4
),
1167 FUNCTION(mdp_vsync5
),
1168 FUNCTION(mi2s0_data0
),
1169 FUNCTION(mi2s0_data1
),
1170 FUNCTION(mi2s0_sck
),
1172 FUNCTION(mi2s1_data0
),
1173 FUNCTION(mi2s1_data1
),
1174 FUNCTION(mi2s1_sck
),
1176 FUNCTION(mi2s2_data0
),
1177 FUNCTION(mi2s2_data1
),
1178 FUNCTION(mi2s2_sck
),
1180 FUNCTION(mss_grfc0
),
1181 FUNCTION(mss_grfc1
),
1182 FUNCTION(mss_grfc10
),
1183 FUNCTION(mss_grfc11
),
1184 FUNCTION(mss_grfc12
),
1185 FUNCTION(mss_grfc2
),
1186 FUNCTION(mss_grfc3
),
1187 FUNCTION(mss_grfc4
),
1188 FUNCTION(mss_grfc5
),
1189 FUNCTION(mss_grfc6
),
1190 FUNCTION(mss_grfc7
),
1191 FUNCTION(mss_grfc8
),
1192 FUNCTION(mss_grfc9
),
1193 FUNCTION(nav_gpio0
),
1194 FUNCTION(nav_gpio1
),
1195 FUNCTION(nav_gpio2
),
1196 FUNCTION(pa_indicator
),
1197 FUNCTION(pcie0_clkreqn
),
1198 FUNCTION(pcie1_clkreqn
),
1199 FUNCTION(phase_flag
),
1201 FUNCTION(pll_bypassnl
),
1203 FUNCTION(pll_reset
),
1205 FUNCTION(prng_rosc
),
1208 FUNCTION(qlink0_enable
),
1209 FUNCTION(qlink0_request
),
1210 FUNCTION(qlink0_wmss
),
1211 FUNCTION(qlink1_enable
),
1212 FUNCTION(qlink1_request
),
1213 FUNCTION(qlink1_wmss
),
1216 FUNCTION(qspi_data
),
1244 FUNCTION(tsense_pwm1
),
1245 FUNCTION(tsense_pwm2
),
1247 FUNCTION(uim0_data
),
1248 FUNCTION(uim0_present
),
1249 FUNCTION(uim0_reset
),
1251 FUNCTION(uim1_data
),
1252 FUNCTION(uim1_present
),
1253 FUNCTION(uim1_reset
),
1254 FUNCTION(usb2phy_ac
),
1258 FUNCTION(vsense_trigger
),
1261 /* Every pin is maintained as a single group, and missing or non-existing pin
1262 * would be maintained as dummy group to synchronize pin group index with
1263 * pin descriptor registered with pinctrl core.
1264 * Clients would not be able to request these dummy pin groups.
1266 static const struct msm_pingroup sc7280_groups
[] = {
1267 [0] = PINGROUP(0, qup00
, ibi_i3c
, _
, _
, _
, _
, _
, _
, _
),
1268 [1] = PINGROUP(1, qup00
, ibi_i3c
, _
, _
, _
, _
, _
, _
, _
),
1269 [2] = PINGROUP(2, qup00
, qup07
, _
, qdss
, _
, _
, _
, _
, _
),
1270 [3] = PINGROUP(3, qup00
, qup07
, _
, qdss
, _
, _
, _
, _
, _
),
1271 [4] = PINGROUP(4, qup01
, ibi_i3c
, _
, _
, _
, _
, _
, _
, _
),
1272 [5] = PINGROUP(5, qup01
, ibi_i3c
, _
, _
, _
, _
, _
, _
, _
),
1273 [6] = PINGROUP(6, qup01
, qup07
, _
, _
, _
, _
, _
, _
, _
),
1274 [7] = PINGROUP(7, qup01
, _
, _
, _
, _
, _
, _
, _
, _
),
1275 [8] = PINGROUP(8, qup02
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1276 [9] = PINGROUP(9, qup02
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1277 [10] = PINGROUP(10, qup02
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1278 [11] = PINGROUP(11, qup02
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1279 [12] = PINGROUP(12, qup03
, qspi_data
, sdc40
, tb_trig
, phase_flag
, qdss
, ddr_pxi1
, _
, _
),
1280 [13] = PINGROUP(13, qup03
, qspi_data
, sdc41
, tb_trig
, phase_flag
, qdss
, ddr_pxi1
, _
, _
),
1281 [14] = PINGROUP(14, qup03
, qspi_clk
, sdc4_clk
, mdp_vsync
, phase_flag
, ddr_pxi0
, _
, _
, _
),
1282 [15] = PINGROUP(15, qup03
, qspi_cs
, tb_trig
, phase_flag
, qdss_cti
, ddr_pxi0
, _
, _
, _
),
1283 [16] = PINGROUP(16, qup04
, qspi_data
, sdc42
, mdp_vsync
, phase_flag
, qdss_cti
, _
, _
, _
),
1284 [17] = PINGROUP(17, qup04
, qspi_data
, sdc43
, _
, phase_flag
, _
, _
, _
, _
),
1285 [18] = PINGROUP(18, qup04
, _
, phase_flag
, qdss_cti
, _
, _
, _
, _
, _
),
1286 [19] = PINGROUP(19, qup04
, qspi_cs
, sdc4_cmd
, _
, phase_flag
, qdss_cti
, _
, _
, _
),
1287 [20] = PINGROUP(20, qup05
, cci_timer0
, _
, qdss
, _
, _
, _
, _
, _
),
1288 [21] = PINGROUP(21, qup05
, cci_timer1
, _
, qdss
, _
, _
, _
, _
, _
),
1289 [22] = PINGROUP(22, qup05
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1290 [23] = PINGROUP(23, qup05
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1291 [24] = PINGROUP(24, qup06
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1292 [25] = PINGROUP(25, qup06
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1293 [26] = PINGROUP(26, qup06
, host2wlan_sol
, _
, qdss
, _
, _
, _
, _
, _
),
1294 [27] = PINGROUP(27, qup06
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1295 [28] = PINGROUP(28, qup07
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1296 [29] = PINGROUP(29, qup07
, qdss
, _
, _
, _
, _
, _
, _
, _
),
1297 [30] = PINGROUP(30, qup07
, _
, _
, _
, _
, _
, _
, _
, _
),
1298 [31] = PINGROUP(31, qup07
, _
, _
, _
, _
, _
, _
, _
, _
),
1299 [32] = PINGROUP(32, qup10
, _
, _
, _
, _
, _
, _
, _
, _
),
1300 [33] = PINGROUP(33, qup10
, _
, _
, _
, _
, _
, _
, _
, _
),
1301 [34] = PINGROUP(34, qup10
, _
, _
, _
, _
, _
, _
, _
, _
),
1302 [35] = PINGROUP(35, qup10
, _
, _
, _
, _
, _
, _
, _
, _
),
1303 [36] = PINGROUP(36, qup11
, ibi_i3c
, _
, _
, _
, _
, _
, _
, _
),
1304 [37] = PINGROUP(37, qup11
, ibi_i3c
, _
, _
, _
, _
, _
, _
, _
),
1305 [38] = PINGROUP(38, qup11
, qup14
, dbg_out
, _
, _
, _
, _
, _
, _
),
1306 [39] = PINGROUP(39, qup11
, _
, _
, _
, _
, _
, _
, _
, _
),
1307 [40] = PINGROUP(40, qup12
, _
, _
, _
, _
, _
, _
, _
, _
),
1308 [41] = PINGROUP(41, qup12
, _
, _
, _
, _
, _
, _
, _
, _
),
1309 [42] = PINGROUP(42, qup12
, _
, _
, _
, _
, _
, _
, _
, _
),
1310 [43] = PINGROUP(43, qup12
, _
, _
, _
, _
, _
, _
, _
, _
),
1311 [44] = PINGROUP(44, qup13
, _
, _
, _
, _
, _
, _
, _
, _
),
1312 [45] = PINGROUP(45, qup13
, _
, _
, _
, _
, _
, _
, _
, _
),
1313 [46] = PINGROUP(46, qup13
, edp_lcd
, _
, _
, _
, _
, _
, _
, _
),
1314 [47] = PINGROUP(47, qup13
, dp_hot
, _
, _
, _
, _
, _
, _
, _
),
1315 [48] = PINGROUP(48, qup14
, _
, _
, _
, _
, _
, _
, _
, _
),
1316 [49] = PINGROUP(49, qup14
, _
, _
, _
, _
, _
, _
, _
, _
),
1317 [50] = PINGROUP(50, qup14
, qup16
, _
, _
, _
, _
, _
, _
, _
),
1318 [51] = PINGROUP(51, qup14
, _
, _
, _
, _
, _
, _
, _
, _
),
1319 [52] = PINGROUP(52, qup15
, _
, _
, _
, _
, _
, _
, _
, _
),
1320 [53] = PINGROUP(53, qup15
, _
, _
, _
, _
, _
, _
, _
, _
),
1321 [54] = PINGROUP(54, qup15
, qup14
, _
, _
, _
, _
, _
, _
, _
),
1322 [55] = PINGROUP(55, qup15
, qup14
, _
, _
, _
, _
, _
, _
, _
),
1323 [56] = PINGROUP(56, qup16
, ddr_bist
, phase_flag
, _
, _
, _
, _
, _
, _
),
1324 [57] = PINGROUP(57, qup16
, ddr_bist
, phase_flag
, _
, _
, _
, _
, _
, _
),
1325 [58] = PINGROUP(58, qup16
, ddr_bist
, phase_flag
, qdss
, _
, _
, _
, _
, _
),
1326 [59] = PINGROUP(59, qup16
, ddr_bist
, phase_flag
, qdss
, _
, _
, _
, _
, _
),
1327 [60] = PINGROUP(60, qup17
, edp_hot
, _
, phase_flag
, _
, _
, _
, _
, _
),
1328 [61] = PINGROUP(61, qup17
, sd_write
, phase_flag
, tsense_pwm1
, tsense_pwm2
, _
, _
, _
, _
),
1329 [62] = PINGROUP(62, qup17
, qup16
, phase_flag
, _
, _
, _
, _
, _
, _
),
1330 [63] = PINGROUP(63, qup17
, qup16
, phase_flag
, _
, _
, _
, _
, _
, _
),
1331 [64] = PINGROUP(64, cam_mclk
, _
, _
, _
, _
, _
, _
, _
, _
),
1332 [65] = PINGROUP(65, cam_mclk
, tgu_ch0
, _
, _
, _
, _
, _
, _
, _
),
1333 [66] = PINGROUP(66, cam_mclk
, pll_bypassnl
, tgu_ch1
, _
, _
, _
, _
, _
, _
),
1334 [67] = PINGROUP(67, cam_mclk
, pll_reset
, _
, _
, _
, _
, _
, _
, _
),
1335 [68] = PINGROUP(68, cam_mclk
, _
, _
, _
, _
, _
, _
, _
, _
),
1336 [69] = PINGROUP(69, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1337 [70] = PINGROUP(70, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1338 [71] = PINGROUP(71, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1339 [72] = PINGROUP(72, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1340 [73] = PINGROUP(73, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1341 [74] = PINGROUP(74, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1342 [75] = PINGROUP(75, cci_i2c
, _
, _
, _
, _
, _
, _
, _
, _
),
1343 [76] = PINGROUP(76, cci_i2c
, gcc_gp1
, _
, _
, _
, _
, _
, _
, _
),
1344 [77] = PINGROUP(77, cci_timer2
, gcc_gp2
, _
, atest_usb13
, atest_char0
, _
, _
, _
, _
),
1345 [78] = PINGROUP(78, cci_timer3
, cci_async
, gcc_gp3
, _
, atest_usb12
, atest_char1
, _
, _
, _
),
1346 [79] = PINGROUP(79, cci_timer4
, cci_async
, pcie1_clkreqn
, mdp_vsync
, jitter_bist
, atest_usb11
, atest_char2
, _
, _
),
1347 [80] = PINGROUP(80, mdp_vsync
, vfr_0
, mdp_vsync0
, mdp_vsync1
, mdp_vsync4
, pll_bist
, atest_usb10
, atest_char3
, _
),
1348 [81] = PINGROUP(81, mdp_vsync
, dp_lcd
, mdp_vsync2
, mdp_vsync3
, mdp_vsync5
, atest_usb1
, atest_char
, _
, _
),
1349 [82] = PINGROUP(82, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1350 [83] = PINGROUP(83, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1351 [84] = PINGROUP(84, usb2phy_ac
, _
, _
, _
, _
, _
, _
, _
, _
),
1352 [85] = PINGROUP(85, usb2phy_ac
, _
, _
, _
, _
, _
, _
, _
, _
),
1353 [86] = PINGROUP(86, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1354 [87] = PINGROUP(87, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1355 [88] = PINGROUP(88, pcie0_clkreqn
, _
, _
, _
, _
, _
, _
, _
, _
),
1356 [89] = PINGROUP(89, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1357 [90] = PINGROUP(90, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1358 [91] = PINGROUP(91, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1359 [92] = PINGROUP(92, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1360 [93] = PINGROUP(93, cam_mclk
, cci_async
, _
, _
, _
, _
, _
, _
, _
),
1361 [94] = PINGROUP(94, lpass_slimbus
, _
, _
, _
, _
, _
, _
, _
, _
),
1362 [95] = PINGROUP(95, lpass_slimbus
, _
, _
, _
, _
, _
, _
, _
, _
),
1363 [96] = PINGROUP(96, pri_mi2s
, _
, _
, _
, _
, _
, _
, _
, _
),
1364 [97] = PINGROUP(97, mi2s0_sck
, _
, _
, _
, _
, _
, _
, _
, _
),
1365 [98] = PINGROUP(98, mi2s0_data0
, _
, _
, _
, _
, _
, _
, _
, _
),
1366 [99] = PINGROUP(99, mi2s0_data1
, _
, _
, _
, _
, _
, _
, _
, _
),
1367 [100] = PINGROUP(100, mi2s0_ws
, _
, vsense_trigger
, _
, _
, _
, _
, _
, _
),
1368 [101] = PINGROUP(101, mi2s2_sck
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1369 [102] = PINGROUP(102, mi2s2_data0
, _
, _
, qdss
, _
, _
, _
, _
, _
),
1370 [103] = PINGROUP(103, mi2s2_ws
, vfr_1
, _
, _
, qdss
, _
, atest_usb03
, _
, _
),
1371 [104] = PINGROUP(104, mi2s2_data1
, _
, _
, qdss
, _
, atest_usb02
, _
, _
, _
),
1372 [105] = PINGROUP(105, sec_mi2s
, mi2s1_data1
, audio_ref
, gcc_gp1
, _
, qdss
, atest_usb01
, _
, _
),
1373 [106] = PINGROUP(106, mi2s1_sck
, gcc_gp2
, _
, qdss
, atest_usb00
, _
, _
, _
, _
),
1374 [107] = PINGROUP(107, mi2s1_data0
, gcc_gp3
, _
, qdss
, atest_usb0
, _
, _
, _
, _
),
1375 [108] = PINGROUP(108, mi2s1_ws
, _
, qdss
, _
, _
, _
, _
, _
, _
),
1376 [109] = PINGROUP(109, uim1_data
, _
, _
, _
, _
, _
, _
, _
, _
),
1377 [110] = PINGROUP(110, uim1_clk
, _
, _
, _
, _
, _
, _
, _
, _
),
1378 [111] = PINGROUP(111, uim1_reset
, _
, _
, _
, _
, _
, _
, _
, _
),
1379 [112] = PINGROUP(112, uim1_present
, _
, _
, _
, _
, _
, _
, _
, _
),
1380 [113] = PINGROUP(113, uim0_data
, _
, _
, _
, _
, _
, _
, _
, _
),
1381 [114] = PINGROUP(114, uim0_clk
, _
, _
, _
, _
, _
, _
, _
, _
),
1382 [115] = PINGROUP(115, uim0_reset
, _
, _
, _
, _
, _
, _
, _
, _
),
1383 [116] = PINGROUP(116, uim0_present
, _
, _
, _
, _
, _
, _
, _
, _
),
1384 [117] = PINGROUP(117, _
, mss_grfc0
, cmu_rng3
, phase_flag
, _
, _
, _
, _
, _
),
1385 [118] = PINGROUP(118, _
, mss_grfc1
, cmu_rng2
, phase_flag
, _
, _
, _
, _
, _
),
1386 [119] = PINGROUP(119, _
, mss_grfc2
, cmu_rng1
, phase_flag
, _
, _
, _
, _
, _
),
1387 [120] = PINGROUP(120, _
, mss_grfc3
, cmu_rng0
, phase_flag
, _
, _
, _
, _
, _
),
1388 [121] = PINGROUP(121, _
, mss_grfc4
, cri_trng0
, phase_flag
, _
, _
, _
, _
, _
),
1389 [122] = PINGROUP(122, _
, mss_grfc5
, cri_trng1
, phase_flag
, _
, _
, _
, _
, _
),
1390 [123] = PINGROUP(123, _
, mss_grfc6
, prng_rosc
, phase_flag
, _
, _
, _
, _
, _
),
1391 [124] = PINGROUP(124, _
, mss_grfc7
, cri_trng
, phase_flag
, _
, _
, _
, _
, _
),
1392 [125] = PINGROUP(125, _
, mss_grfc8
, phase_flag
, _
, _
, _
, _
, _
, _
),
1393 [126] = PINGROUP(126, _
, mss_grfc9
, phase_flag
, _
, _
, _
, _
, _
, _
),
1394 [127] = PINGROUP(127, coex_uart1
, mss_grfc10
, phase_flag
, _
, _
, _
, _
, _
, _
),
1395 [128] = PINGROUP(128, coex_uart1
, mss_grfc11
, phase_flag
, _
, _
, _
, _
, _
, _
),
1396 [129] = PINGROUP(129, nav_gpio0
, phase_flag
, _
, _
, _
, _
, _
, _
, _
),
1397 [130] = PINGROUP(130, nav_gpio1
, phase_flag
, _
, _
, _
, _
, _
, _
, _
),
1398 [131] = PINGROUP(131, mss_grfc12
, nav_gpio2
, pa_indicator
, phase_flag
, _
, _
, _
, _
, _
),
1399 [132] = PINGROUP(132, mss_grfc0
, phase_flag
, _
, _
, _
, _
, _
, _
, _
),
1400 [133] = PINGROUP(133, qlink0_request
, _
, _
, _
, _
, _
, _
, _
, _
),
1401 [134] = PINGROUP(134, qlink0_enable
, _
, _
, _
, _
, _
, _
, _
, _
),
1402 [135] = PINGROUP(135, qlink0_wmss
, _
, _
, _
, _
, _
, _
, _
, _
),
1403 [136] = PINGROUP(136, qlink1_request
, _
, _
, _
, _
, _
, _
, _
, _
),
1404 [137] = PINGROUP(137, qlink1_enable
, _
, _
, _
, _
, _
, _
, _
, _
),
1405 [138] = PINGROUP(138, qlink1_wmss
, _
, _
, _
, _
, _
, _
, _
, _
),
1406 [139] = PINGROUP(139, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1407 [140] = PINGROUP(140, usb_phy
, pll_clk
, _
, _
, _
, _
, _
, _
, _
),
1408 [141] = PINGROUP(141, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1409 [142] = PINGROUP(142, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1410 [143] = PINGROUP(143, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1411 [144] = PINGROUP(144, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1412 [145] = PINGROUP(145, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1413 [146] = PINGROUP(146, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1414 [147] = PINGROUP(147, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1415 [148] = PINGROUP(148, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1416 [149] = PINGROUP(149, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1417 [150] = PINGROUP(150, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1418 [151] = PINGROUP(151, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1419 [152] = PINGROUP(152, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1420 [153] = PINGROUP(153, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1421 [154] = PINGROUP(154, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1422 [155] = PINGROUP(155, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1423 [156] = PINGROUP(156, qdss_cti
, _
, _
, _
, _
, _
, _
, _
, _
),
1424 [157] = PINGROUP(157, qdss_cti
, _
, _
, _
, _
, _
, _
, _
, _
),
1425 [158] = PINGROUP(158, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1426 [159] = PINGROUP(159, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1427 [160] = PINGROUP(160, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1428 [161] = PINGROUP(161, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1429 [162] = PINGROUP(162, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1430 [163] = PINGROUP(163, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1431 [164] = PINGROUP(164, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1432 [165] = PINGROUP(165, qdss_cti
, _
, _
, _
, _
, _
, _
, _
, _
),
1433 [166] = PINGROUP(166, qdss_cti
, _
, _
, _
, _
, _
, _
, _
, _
),
1434 [167] = PINGROUP(167, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1435 [168] = PINGROUP(168, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1436 [169] = PINGROUP(169, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1437 [170] = PINGROUP(170, _
, _
, _
, _
, _
, _
, _
, _
, _
),
1438 [171] = PINGROUP(171, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1439 [172] = PINGROUP(172, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1440 [173] = PINGROUP(173, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1441 [174] = PINGROUP(174, qdss
, _
, _
, _
, _
, _
, _
, _
, _
),
1442 [175] = UFS_RESET(ufs_reset
, 0x1be000),
1443 [176] = SDC_QDSD_PINGROUP(sdc1_rclk
, 0x1b3000, 15, 0),
1444 [177] = SDC_QDSD_PINGROUP(sdc1_clk
, 0x1b3000, 13, 6),
1445 [178] = SDC_QDSD_PINGROUP(sdc1_cmd
, 0x1b3000, 11, 3),
1446 [179] = SDC_QDSD_PINGROUP(sdc1_data
, 0x1b3000, 9, 0),
1447 [180] = SDC_QDSD_PINGROUP(sdc2_clk
, 0x1b4000, 14, 6),
1448 [181] = SDC_QDSD_PINGROUP(sdc2_cmd
, 0x1b4000, 11, 3),
1449 [182] = SDC_QDSD_PINGROUP(sdc2_data
, 0x1b4000, 9, 0),
1452 static const struct msm_pinctrl_soc_data sc7280_pinctrl
= {
1453 .pins
= sc7280_pins
,
1454 .npins
= ARRAY_SIZE(sc7280_pins
),
1455 .functions
= sc7280_functions
,
1456 .nfunctions
= ARRAY_SIZE(sc7280_functions
),
1457 .groups
= sc7280_groups
,
1458 .ngroups
= ARRAY_SIZE(sc7280_groups
),
1462 static int sc7280_pinctrl_probe(struct platform_device
*pdev
)
1464 return msm_pinctrl_probe(pdev
, &sc7280_pinctrl
);
1467 static const struct of_device_id sc7280_pinctrl_of_match
[] = {
1468 { .compatible
= "qcom,sc7280-pinctrl", },
1472 static struct platform_driver sc7280_pinctrl_driver
= {
1474 .name
= "sc7280-pinctrl",
1475 .of_match_table
= sc7280_pinctrl_of_match
,
1477 .probe
= sc7280_pinctrl_probe
,
1478 .remove
= msm_pinctrl_remove
,
1481 static int __init
sc7280_pinctrl_init(void)
1483 return platform_driver_register(&sc7280_pinctrl_driver
);
1485 arch_initcall(sc7280_pinctrl_init
);
1487 static void __exit
sc7280_pinctrl_exit(void)
1489 platform_driver_unregister(&sc7280_pinctrl_driver
);
1491 module_exit(sc7280_pinctrl_exit
);
1493 MODULE_DESCRIPTION("QTI sc7280 pinctrl driver");
1494 MODULE_LICENSE("GPL v2");
1495 MODULE_DEVICE_TABLE(of
, sc7280_pinctrl_of_match
);