]>
Commit | Line | Data |
---|---|---|
97fb5e8d | 1 | // SPDX-License-Identifier: GPL-2.0-only |
465e4218 MS |
2 | /* |
3 | * Copyright (c) 2016, The Linux Foundation. All rights reserved. | |
465e4218 MS |
4 | */ |
5 | ||
6 | #include <linux/module.h> | |
7 | #include <linux/of.h> | |
8 | #include <linux/platform_device.h> | |
465e4218 MS |
9 | |
10 | #include "pinctrl-msm.h" | |
11 | ||
465e4218 MS |
12 | #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, f11) \ |
13 | { \ | |
6a16d1a5 RA |
14 | .grp = PINCTRL_PINGROUP("gpio" #id, \ |
15 | gpio##id##_pins, \ | |
16 | ARRAY_SIZE(gpio##id##_pins)), \ | |
465e4218 | 17 | .funcs = (int[]){ \ |
c7a291db RA |
18 | msm_mux_gpio, \ |
19 | msm_mux_##f1, \ | |
20 | msm_mux_##f2, \ | |
21 | msm_mux_##f3, \ | |
22 | msm_mux_##f4, \ | |
23 | msm_mux_##f5, \ | |
24 | msm_mux_##f6, \ | |
25 | msm_mux_##f7, \ | |
26 | msm_mux_##f8, \ | |
27 | msm_mux_##f9, \ | |
28 | msm_mux_##f10, \ | |
29 | msm_mux_##f11 \ | |
465e4218 MS |
30 | }, \ |
31 | .nfuncs = 12, \ | |
32 | .ctl_reg = 0x1000 + 0x10 * id, \ | |
33 | .io_reg = 0x1004 + 0x10 * id, \ | |
34 | .intr_cfg_reg = 0x1008 + 0x10 * id, \ | |
35 | .intr_status_reg = 0x100c + 0x10 * id, \ | |
36 | .intr_target_reg = 0x1008 + 0x10 * id, \ | |
37 | .mux_bit = 2, \ | |
38 | .pull_bit = 0, \ | |
39 | .drv_bit = 6, \ | |
40 | .oe_bit = 9, \ | |
41 | .in_bit = 0, \ | |
42 | .out_bit = 1, \ | |
43 | .intr_enable_bit = 0, \ | |
44 | .intr_status_bit = 0, \ | |
45 | .intr_target_bit = 5, \ | |
46 | .intr_target_kpss_val = 4, \ | |
47 | .intr_raw_status_bit = 4, \ | |
48 | .intr_polarity_bit = 1, \ | |
49 | .intr_detection_bit = 2, \ | |
50 | .intr_detection_width = 2, \ | |
51 | } | |
52 | ||
53 | #define SDC_PINGROUP(pg_name, ctl, pull, drv) \ | |
54 | { \ | |
6a16d1a5 RA |
55 | .grp = PINCTRL_PINGROUP(#pg_name, \ |
56 | pg_name##_pins, \ | |
57 | ARRAY_SIZE(pg_name##_pins)), \ | |
465e4218 MS |
58 | .ctl_reg = ctl, \ |
59 | .io_reg = 0, \ | |
60 | .intr_cfg_reg = 0, \ | |
61 | .intr_status_reg = 0, \ | |
62 | .intr_target_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_target_kpss_val = -1, \ | |
73 | .intr_raw_status_bit = -1, \ | |
74 | .intr_polarity_bit = -1, \ | |
75 | .intr_detection_bit = -1, \ | |
76 | .intr_detection_width = -1, \ | |
77 | } | |
78 | static const struct pinctrl_pin_desc msm8994_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, "GPIO_127"), | |
207 | PINCTRL_PIN(128, "GPIO_128"), | |
208 | PINCTRL_PIN(129, "GPIO_129"), | |
209 | PINCTRL_PIN(130, "GPIO_130"), | |
210 | PINCTRL_PIN(131, "GPIO_131"), | |
211 | PINCTRL_PIN(132, "GPIO_132"), | |
212 | PINCTRL_PIN(133, "GPIO_133"), | |
213 | PINCTRL_PIN(134, "GPIO_134"), | |
214 | PINCTRL_PIN(135, "GPIO_135"), | |
215 | PINCTRL_PIN(136, "GPIO_136"), | |
216 | PINCTRL_PIN(137, "GPIO_137"), | |
217 | PINCTRL_PIN(138, "GPIO_138"), | |
218 | PINCTRL_PIN(139, "GPIO_139"), | |
219 | PINCTRL_PIN(140, "GPIO_140"), | |
220 | PINCTRL_PIN(141, "GPIO_141"), | |
221 | PINCTRL_PIN(142, "GPIO_142"), | |
222 | PINCTRL_PIN(143, "GPIO_143"), | |
223 | PINCTRL_PIN(144, "GPIO_144"), | |
224 | PINCTRL_PIN(145, "GPIO_145"), | |
225 | PINCTRL_PIN(146, "SDC1_RCLK"), | |
226 | PINCTRL_PIN(147, "SDC1_CLK"), | |
227 | PINCTRL_PIN(148, "SDC1_CMD"), | |
228 | PINCTRL_PIN(149, "SDC1_DATA"), | |
229 | PINCTRL_PIN(150, "SDC2_CLK"), | |
230 | PINCTRL_PIN(151, "SDC2_CMD"), | |
231 | PINCTRL_PIN(152, "SDC2_DATA"), | |
232 | PINCTRL_PIN(153, "SDC3_CLK"), | |
233 | PINCTRL_PIN(154, "SDC3_CMD"), | |
234 | PINCTRL_PIN(155, "SDC3_DATA"), | |
235 | }; | |
236 | ||
237 | #define DECLARE_MSM_GPIO_PINS(pin) \ | |
238 | static const unsigned int gpio##pin##_pins[] = { pin } | |
239 | DECLARE_MSM_GPIO_PINS(0); | |
240 | DECLARE_MSM_GPIO_PINS(1); | |
241 | DECLARE_MSM_GPIO_PINS(2); | |
242 | DECLARE_MSM_GPIO_PINS(3); | |
243 | DECLARE_MSM_GPIO_PINS(4); | |
244 | DECLARE_MSM_GPIO_PINS(5); | |
245 | DECLARE_MSM_GPIO_PINS(6); | |
246 | DECLARE_MSM_GPIO_PINS(7); | |
247 | DECLARE_MSM_GPIO_PINS(8); | |
248 | DECLARE_MSM_GPIO_PINS(9); | |
249 | DECLARE_MSM_GPIO_PINS(10); | |
250 | DECLARE_MSM_GPIO_PINS(11); | |
251 | DECLARE_MSM_GPIO_PINS(12); | |
252 | DECLARE_MSM_GPIO_PINS(13); | |
253 | DECLARE_MSM_GPIO_PINS(14); | |
254 | DECLARE_MSM_GPIO_PINS(15); | |
255 | DECLARE_MSM_GPIO_PINS(16); | |
256 | DECLARE_MSM_GPIO_PINS(17); | |
257 | DECLARE_MSM_GPIO_PINS(18); | |
258 | DECLARE_MSM_GPIO_PINS(19); | |
259 | DECLARE_MSM_GPIO_PINS(20); | |
260 | DECLARE_MSM_GPIO_PINS(21); | |
261 | DECLARE_MSM_GPIO_PINS(22); | |
262 | DECLARE_MSM_GPIO_PINS(23); | |
263 | DECLARE_MSM_GPIO_PINS(24); | |
264 | DECLARE_MSM_GPIO_PINS(25); | |
265 | DECLARE_MSM_GPIO_PINS(26); | |
266 | DECLARE_MSM_GPIO_PINS(27); | |
267 | DECLARE_MSM_GPIO_PINS(28); | |
268 | DECLARE_MSM_GPIO_PINS(29); | |
269 | DECLARE_MSM_GPIO_PINS(30); | |
270 | DECLARE_MSM_GPIO_PINS(31); | |
271 | DECLARE_MSM_GPIO_PINS(32); | |
272 | DECLARE_MSM_GPIO_PINS(33); | |
273 | DECLARE_MSM_GPIO_PINS(34); | |
274 | DECLARE_MSM_GPIO_PINS(35); | |
275 | DECLARE_MSM_GPIO_PINS(36); | |
276 | DECLARE_MSM_GPIO_PINS(37); | |
277 | DECLARE_MSM_GPIO_PINS(38); | |
278 | DECLARE_MSM_GPIO_PINS(39); | |
279 | DECLARE_MSM_GPIO_PINS(40); | |
280 | DECLARE_MSM_GPIO_PINS(41); | |
281 | DECLARE_MSM_GPIO_PINS(42); | |
282 | DECLARE_MSM_GPIO_PINS(43); | |
283 | DECLARE_MSM_GPIO_PINS(44); | |
284 | DECLARE_MSM_GPIO_PINS(45); | |
285 | DECLARE_MSM_GPIO_PINS(46); | |
286 | DECLARE_MSM_GPIO_PINS(47); | |
287 | DECLARE_MSM_GPIO_PINS(48); | |
288 | DECLARE_MSM_GPIO_PINS(49); | |
289 | DECLARE_MSM_GPIO_PINS(50); | |
290 | DECLARE_MSM_GPIO_PINS(51); | |
291 | DECLARE_MSM_GPIO_PINS(52); | |
292 | DECLARE_MSM_GPIO_PINS(53); | |
293 | DECLARE_MSM_GPIO_PINS(54); | |
294 | DECLARE_MSM_GPIO_PINS(55); | |
295 | DECLARE_MSM_GPIO_PINS(56); | |
296 | DECLARE_MSM_GPIO_PINS(57); | |
297 | DECLARE_MSM_GPIO_PINS(58); | |
298 | DECLARE_MSM_GPIO_PINS(59); | |
299 | DECLARE_MSM_GPIO_PINS(60); | |
300 | DECLARE_MSM_GPIO_PINS(61); | |
301 | DECLARE_MSM_GPIO_PINS(62); | |
302 | DECLARE_MSM_GPIO_PINS(63); | |
303 | DECLARE_MSM_GPIO_PINS(64); | |
304 | DECLARE_MSM_GPIO_PINS(65); | |
305 | DECLARE_MSM_GPIO_PINS(66); | |
306 | DECLARE_MSM_GPIO_PINS(67); | |
307 | DECLARE_MSM_GPIO_PINS(68); | |
308 | DECLARE_MSM_GPIO_PINS(69); | |
309 | DECLARE_MSM_GPIO_PINS(70); | |
310 | DECLARE_MSM_GPIO_PINS(71); | |
311 | DECLARE_MSM_GPIO_PINS(72); | |
312 | DECLARE_MSM_GPIO_PINS(73); | |
313 | DECLARE_MSM_GPIO_PINS(74); | |
314 | DECLARE_MSM_GPIO_PINS(75); | |
315 | DECLARE_MSM_GPIO_PINS(76); | |
316 | DECLARE_MSM_GPIO_PINS(77); | |
317 | DECLARE_MSM_GPIO_PINS(78); | |
318 | DECLARE_MSM_GPIO_PINS(79); | |
319 | DECLARE_MSM_GPIO_PINS(80); | |
320 | DECLARE_MSM_GPIO_PINS(81); | |
321 | DECLARE_MSM_GPIO_PINS(82); | |
322 | DECLARE_MSM_GPIO_PINS(83); | |
323 | DECLARE_MSM_GPIO_PINS(84); | |
324 | DECLARE_MSM_GPIO_PINS(85); | |
325 | DECLARE_MSM_GPIO_PINS(86); | |
326 | DECLARE_MSM_GPIO_PINS(87); | |
327 | DECLARE_MSM_GPIO_PINS(88); | |
328 | DECLARE_MSM_GPIO_PINS(89); | |
329 | DECLARE_MSM_GPIO_PINS(90); | |
330 | DECLARE_MSM_GPIO_PINS(91); | |
331 | DECLARE_MSM_GPIO_PINS(92); | |
332 | DECLARE_MSM_GPIO_PINS(93); | |
333 | DECLARE_MSM_GPIO_PINS(94); | |
334 | DECLARE_MSM_GPIO_PINS(95); | |
335 | DECLARE_MSM_GPIO_PINS(96); | |
336 | DECLARE_MSM_GPIO_PINS(97); | |
337 | DECLARE_MSM_GPIO_PINS(98); | |
338 | DECLARE_MSM_GPIO_PINS(99); | |
339 | DECLARE_MSM_GPIO_PINS(100); | |
340 | DECLARE_MSM_GPIO_PINS(101); | |
341 | DECLARE_MSM_GPIO_PINS(102); | |
342 | DECLARE_MSM_GPIO_PINS(103); | |
343 | DECLARE_MSM_GPIO_PINS(104); | |
344 | DECLARE_MSM_GPIO_PINS(105); | |
345 | DECLARE_MSM_GPIO_PINS(106); | |
346 | DECLARE_MSM_GPIO_PINS(107); | |
347 | DECLARE_MSM_GPIO_PINS(108); | |
348 | DECLARE_MSM_GPIO_PINS(109); | |
349 | DECLARE_MSM_GPIO_PINS(110); | |
350 | DECLARE_MSM_GPIO_PINS(111); | |
351 | DECLARE_MSM_GPIO_PINS(112); | |
352 | DECLARE_MSM_GPIO_PINS(113); | |
353 | DECLARE_MSM_GPIO_PINS(114); | |
354 | DECLARE_MSM_GPIO_PINS(115); | |
355 | DECLARE_MSM_GPIO_PINS(116); | |
356 | DECLARE_MSM_GPIO_PINS(117); | |
357 | DECLARE_MSM_GPIO_PINS(118); | |
358 | DECLARE_MSM_GPIO_PINS(119); | |
359 | DECLARE_MSM_GPIO_PINS(120); | |
360 | DECLARE_MSM_GPIO_PINS(121); | |
361 | DECLARE_MSM_GPIO_PINS(122); | |
362 | DECLARE_MSM_GPIO_PINS(123); | |
363 | DECLARE_MSM_GPIO_PINS(124); | |
364 | DECLARE_MSM_GPIO_PINS(125); | |
365 | DECLARE_MSM_GPIO_PINS(126); | |
366 | DECLARE_MSM_GPIO_PINS(127); | |
367 | DECLARE_MSM_GPIO_PINS(128); | |
368 | DECLARE_MSM_GPIO_PINS(129); | |
369 | DECLARE_MSM_GPIO_PINS(130); | |
370 | DECLARE_MSM_GPIO_PINS(131); | |
371 | DECLARE_MSM_GPIO_PINS(132); | |
372 | DECLARE_MSM_GPIO_PINS(133); | |
373 | DECLARE_MSM_GPIO_PINS(134); | |
374 | DECLARE_MSM_GPIO_PINS(135); | |
375 | DECLARE_MSM_GPIO_PINS(136); | |
376 | DECLARE_MSM_GPIO_PINS(137); | |
377 | DECLARE_MSM_GPIO_PINS(138); | |
378 | DECLARE_MSM_GPIO_PINS(139); | |
379 | DECLARE_MSM_GPIO_PINS(140); | |
380 | DECLARE_MSM_GPIO_PINS(141); | |
381 | DECLARE_MSM_GPIO_PINS(142); | |
382 | DECLARE_MSM_GPIO_PINS(143); | |
383 | DECLARE_MSM_GPIO_PINS(144); | |
384 | DECLARE_MSM_GPIO_PINS(145); | |
385 | ||
386 | static const unsigned int sdc1_rclk_pins[] = { 146 }; | |
387 | static const unsigned int sdc1_clk_pins[] = { 147 }; | |
388 | static const unsigned int sdc1_cmd_pins[] = { 148 }; | |
389 | static const unsigned int sdc1_data_pins[] = { 149 }; | |
390 | static const unsigned int sdc2_clk_pins[] = { 150 }; | |
391 | static const unsigned int sdc2_cmd_pins[] = { 151 }; | |
392 | static const unsigned int sdc2_data_pins[] = { 152 }; | |
393 | static const unsigned int sdc3_clk_pins[] = { 153 }; | |
394 | static const unsigned int sdc3_cmd_pins[] = { 154 }; | |
395 | static const unsigned int sdc3_data_pins[] = { 155 }; | |
396 | ||
397 | enum msm8994_functions { | |
c7a291db RA |
398 | msm_mux_audio_ref_clk, |
399 | msm_mux_blsp_i2c1, | |
400 | msm_mux_blsp_i2c2, | |
401 | msm_mux_blsp_i2c3, | |
402 | msm_mux_blsp_i2c4, | |
403 | msm_mux_blsp_i2c5, | |
404 | msm_mux_blsp_i2c6, | |
405 | msm_mux_blsp_i2c7, | |
406 | msm_mux_blsp_i2c8, | |
407 | msm_mux_blsp_i2c9, | |
408 | msm_mux_blsp_i2c10, | |
409 | msm_mux_blsp_i2c11, | |
410 | msm_mux_blsp_i2c12, | |
411 | msm_mux_blsp_spi1, | |
412 | msm_mux_blsp_spi1_cs1, | |
413 | msm_mux_blsp_spi1_cs2, | |
414 | msm_mux_blsp_spi1_cs3, | |
415 | msm_mux_blsp_spi2, | |
416 | msm_mux_blsp_spi2_cs1, | |
417 | msm_mux_blsp_spi2_cs2, | |
418 | msm_mux_blsp_spi2_cs3, | |
419 | msm_mux_blsp_spi3, | |
420 | msm_mux_blsp_spi4, | |
421 | msm_mux_blsp_spi5, | |
422 | msm_mux_blsp_spi6, | |
423 | msm_mux_blsp_spi7, | |
424 | msm_mux_blsp_spi8, | |
425 | msm_mux_blsp_spi9, | |
426 | msm_mux_blsp_spi10, | |
427 | msm_mux_blsp_spi10_cs1, | |
428 | msm_mux_blsp_spi10_cs2, | |
429 | msm_mux_blsp_spi10_cs3, | |
430 | msm_mux_blsp_spi11, | |
431 | msm_mux_blsp_spi12, | |
432 | msm_mux_blsp_uart1, | |
433 | msm_mux_blsp_uart2, | |
434 | msm_mux_blsp_uart3, | |
435 | msm_mux_blsp_uart4, | |
436 | msm_mux_blsp_uart5, | |
437 | msm_mux_blsp_uart6, | |
438 | msm_mux_blsp_uart7, | |
439 | msm_mux_blsp_uart8, | |
440 | msm_mux_blsp_uart9, | |
441 | msm_mux_blsp_uart10, | |
442 | msm_mux_blsp_uart11, | |
443 | msm_mux_blsp_uart12, | |
444 | msm_mux_blsp_uim1, | |
445 | msm_mux_blsp_uim2, | |
446 | msm_mux_blsp_uim3, | |
447 | msm_mux_blsp_uim4, | |
448 | msm_mux_blsp_uim5, | |
449 | msm_mux_blsp_uim6, | |
450 | msm_mux_blsp_uim7, | |
451 | msm_mux_blsp_uim8, | |
452 | msm_mux_blsp_uim9, | |
453 | msm_mux_blsp_uim10, | |
454 | msm_mux_blsp_uim11, | |
455 | msm_mux_blsp_uim12, | |
456 | msm_mux_blsp11_i2c_scl_b, | |
457 | msm_mux_blsp11_i2c_sda_b, | |
458 | msm_mux_blsp11_uart_rx_b, | |
459 | msm_mux_blsp11_uart_tx_b, | |
460 | msm_mux_cam_mclk0, | |
461 | msm_mux_cam_mclk1, | |
462 | msm_mux_cam_mclk2, | |
463 | msm_mux_cam_mclk3, | |
464 | msm_mux_cci_async_in0, | |
465 | msm_mux_cci_async_in1, | |
466 | msm_mux_cci_async_in2, | |
467 | msm_mux_cci_i2c0, | |
468 | msm_mux_cci_i2c1, | |
469 | msm_mux_cci_timer0, | |
470 | msm_mux_cci_timer1, | |
471 | msm_mux_cci_timer2, | |
472 | msm_mux_cci_timer3, | |
473 | msm_mux_cci_timer4, | |
474 | msm_mux_gcc_gp1_clk_a, | |
475 | msm_mux_gcc_gp1_clk_b, | |
476 | msm_mux_gcc_gp2_clk_a, | |
477 | msm_mux_gcc_gp2_clk_b, | |
478 | msm_mux_gcc_gp3_clk_a, | |
479 | msm_mux_gcc_gp3_clk_b, | |
480 | msm_mux_gp_mn, | |
481 | msm_mux_gp_pdm0, | |
482 | msm_mux_gp_pdm1, | |
483 | msm_mux_gp_pdm2, | |
484 | msm_mux_gp0_clk, | |
485 | msm_mux_gp1_clk, | |
486 | msm_mux_gps_tx, | |
487 | msm_mux_gsm_tx, | |
488 | msm_mux_hdmi_cec, | |
489 | msm_mux_hdmi_ddc, | |
490 | msm_mux_hdmi_hpd, | |
491 | msm_mux_hdmi_rcv, | |
492 | msm_mux_mdp_vsync, | |
493 | msm_mux_mss_lte, | |
494 | msm_mux_nav_pps, | |
495 | msm_mux_nav_tsync, | |
496 | msm_mux_qdss_cti_trig_in_a, | |
497 | msm_mux_qdss_cti_trig_in_b, | |
498 | msm_mux_qdss_cti_trig_in_c, | |
499 | msm_mux_qdss_cti_trig_in_d, | |
500 | msm_mux_qdss_cti_trig_out_a, | |
501 | msm_mux_qdss_cti_trig_out_b, | |
502 | msm_mux_qdss_cti_trig_out_c, | |
503 | msm_mux_qdss_cti_trig_out_d, | |
504 | msm_mux_qdss_traceclk_a, | |
505 | msm_mux_qdss_traceclk_b, | |
506 | msm_mux_qdss_tracectl_a, | |
507 | msm_mux_qdss_tracectl_b, | |
508 | msm_mux_qdss_tracedata_a, | |
509 | msm_mux_qdss_tracedata_b, | |
510 | msm_mux_qua_mi2s, | |
511 | msm_mux_pci_e0, | |
512 | msm_mux_pci_e1, | |
513 | msm_mux_pri_mi2s, | |
514 | msm_mux_sdc4, | |
515 | msm_mux_sec_mi2s, | |
516 | msm_mux_slimbus, | |
517 | msm_mux_spkr_i2s, | |
518 | msm_mux_ter_mi2s, | |
519 | msm_mux_tsif1, | |
520 | msm_mux_tsif2, | |
521 | msm_mux_uim1, | |
522 | msm_mux_uim2, | |
523 | msm_mux_uim3, | |
524 | msm_mux_uim4, | |
525 | msm_mux_uim_batt_alarm, | |
526 | msm_mux_gpio, | |
527 | msm_mux_NA, | |
465e4218 MS |
528 | }; |
529 | ||
530 | static const char * const gpio_groups[] = { | |
531 | "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7", | |
532 | "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14", | |
533 | "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21", | |
534 | "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", | |
535 | "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35", | |
536 | "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42", | |
537 | "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49", | |
538 | "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56", | |
539 | "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63", | |
540 | "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70", | |
541 | "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77", | |
542 | "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84", | |
543 | "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91", | |
544 | "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98", | |
545 | "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", | |
546 | "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110", | |
547 | "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116", | |
548 | "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122", | |
549 | "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128", | |
550 | "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134", | |
551 | "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140", | |
552 | "gpio141", "gpio142", "gpio143", "gpio144", "gpio145", | |
553 | }; | |
554 | ||
555 | static const char * const blsp_spi1_groups[] = { | |
556 | "gpio0", "gpio1", "gpio2", "gpio3" | |
557 | }; | |
558 | static const char * const blsp_uart1_groups[] = { | |
559 | "gpio0", "gpio1", "gpio2", "gpio3" | |
560 | }; | |
561 | static const char * const blsp_uim1_groups[] = { | |
562 | "gpio0", "gpio1" | |
563 | }; | |
564 | static const char * const hdmi_rcv_groups[] = { | |
565 | "gpio0" | |
566 | }; | |
567 | static const char * const blsp_i2c1_groups[] = { | |
568 | "gpio2", "gpio3" | |
569 | }; | |
570 | static const char * const blsp_spi2_groups[] = { | |
571 | "gpio4", "gpio5", "gpio6", "gpio7" | |
572 | }; | |
573 | static const char * const blsp_uart2_groups[] = { | |
574 | "gpio4", "gpio5", "gpio6", "gpio7" | |
575 | }; | |
576 | static const char * const blsp_uim2_groups[] = { | |
577 | "gpio4", "gpio5" | |
578 | }; | |
579 | static const char * const qdss_cti_trig_out_b_groups[] = { | |
580 | "gpio4", | |
581 | }; | |
582 | static const char * const qdss_cti_trig_in_b_groups[] = { | |
583 | "gpio5", | |
584 | }; | |
585 | static const char * const blsp_i2c2_groups[] = { | |
586 | "gpio6", "gpio7" | |
587 | }; | |
588 | static const char * const blsp_spi3_groups[] = { | |
589 | "gpio8", "gpio9", "gpio10", "gpio11" | |
590 | }; | |
591 | static const char * const blsp_uart3_groups[] = { | |
592 | "gpio8", "gpio9", "gpio10", "gpio11" | |
593 | }; | |
594 | static const char * const blsp_uim3_groups[] = { | |
595 | "gpio8", "gpio9" | |
596 | }; | |
597 | static const char * const blsp_spi1_cs1_groups[] = { | |
598 | "gpio8" | |
599 | }; | |
600 | static const char * const blsp_spi1_cs2_groups[] = { | |
601 | "gpio9", "gpio11" | |
602 | }; | |
603 | static const char * const mdp_vsync_groups[] = { | |
604 | "gpio10", "gpio11", "gpio12" | |
605 | }; | |
606 | static const char * const blsp_i2c3_groups[] = { | |
607 | "gpio10", "gpio11" | |
608 | }; | |
609 | static const char * const blsp_spi1_cs3_groups[] = { | |
610 | "gpio10" | |
611 | }; | |
612 | static const char * const qdss_tracedata_b_groups[] = { | |
613 | "gpio13", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", | |
614 | "gpio19", "gpio21", "gpio22", "gpio23", "gpio25", "gpio26", | |
615 | "gpio57", "gpio58", "gpio92", "gpio93", | |
616 | }; | |
617 | static const char * const cam_mclk0_groups[] = { | |
618 | "gpio13" | |
619 | }; | |
620 | static const char * const cam_mclk1_groups[] = { | |
621 | "gpio14" | |
622 | }; | |
623 | static const char * const cam_mclk2_groups[] = { | |
624 | "gpio15" | |
625 | }; | |
626 | static const char * const cam_mclk3_groups[] = { | |
627 | "gpio16" | |
628 | }; | |
629 | static const char * const cci_i2c0_groups[] = { | |
630 | "gpio17", "gpio18" | |
631 | }; | |
632 | static const char * const blsp_spi4_groups[] = { | |
633 | "gpio17", "gpio18", "gpio19", "gpio20" | |
634 | }; | |
635 | static const char * const blsp_uart4_groups[] = { | |
636 | "gpio17", "gpio18", "gpio19", "gpio20" | |
637 | }; | |
638 | static const char * const blsp_uim4_groups[] = { | |
639 | "gpio17", "gpio18" | |
640 | }; | |
641 | static const char * const cci_i2c1_groups[] = { | |
642 | "gpio19", "gpio20" | |
643 | }; | |
644 | static const char * const blsp_i2c4_groups[] = { | |
645 | "gpio19", "gpio20" | |
646 | }; | |
647 | static const char * const cci_timer0_groups[] = { | |
648 | "gpio21" | |
649 | }; | |
650 | static const char * const blsp_spi5_groups[] = { | |
651 | "gpio21", "gpio22", "gpio23", "gpio24" | |
652 | }; | |
653 | static const char * const blsp_uart5_groups[] = { | |
654 | "gpio21", "gpio22", "gpio23", "gpio24" | |
655 | }; | |
656 | static const char * const blsp_uim5_groups[] = { | |
657 | "gpio21", "gpio22" | |
658 | }; | |
659 | static const char * const cci_timer1_groups[] = { | |
660 | "gpio22" | |
661 | }; | |
662 | static const char * const cci_timer2_groups[] = { | |
663 | "gpio23" | |
664 | }; | |
665 | static const char * const blsp_i2c5_groups[] = { | |
666 | "gpio23", "gpio24" | |
667 | }; | |
668 | static const char * const cci_timer3_groups[] = { | |
669 | "gpio24" | |
670 | }; | |
671 | static const char * const cci_async_in1_groups[] = { | |
672 | "gpio24" | |
673 | }; | |
674 | static const char * const cci_timer4_groups[] = { | |
675 | "gpio25" | |
676 | }; | |
677 | static const char * const cci_async_in2_groups[] = { | |
678 | "gpio25" | |
679 | }; | |
680 | static const char * const blsp_spi6_groups[] = { | |
681 | "gpio25", "gpio26", "gpio27", "gpio28" | |
682 | }; | |
683 | static const char * const blsp_uart6_groups[] = { | |
684 | "gpio25", "gpio26", "gpio27", "gpio28" | |
685 | }; | |
686 | static const char * const blsp_uim6_groups[] = { | |
687 | "gpio25", "gpio26" | |
688 | }; | |
689 | static const char * const cci_async_in0_groups[] = { | |
690 | "gpio26" | |
691 | }; | |
692 | static const char * const gp0_clk_groups[] = { | |
693 | "gpio26" | |
694 | }; | |
695 | static const char * const gp1_clk_groups[] = { | |
696 | "gpio27", "gpio57", "gpio78" | |
697 | }; | |
698 | static const char * const blsp_i2c6_groups[] = { | |
699 | "gpio27", "gpio28" | |
700 | }; | |
701 | static const char * const qdss_tracectl_a_groups[] = { | |
702 | "gpio27", | |
703 | }; | |
704 | static const char * const qdss_traceclk_a_groups[] = { | |
705 | "gpio28", | |
706 | }; | |
707 | static const char * const gp_mn_groups[] = { | |
708 | "gpio29" | |
709 | }; | |
710 | static const char * const hdmi_cec_groups[] = { | |
711 | "gpio31" | |
712 | }; | |
713 | static const char * const hdmi_ddc_groups[] = { | |
714 | "gpio32", "gpio33" | |
715 | }; | |
716 | static const char * const hdmi_hpd_groups[] = { | |
717 | "gpio34" | |
718 | }; | |
719 | static const char * const uim3_groups[] = { | |
720 | "gpio35", "gpio36", "gpio37", "gpio38" | |
721 | }; | |
722 | static const char * const pci_e1_groups[] = { | |
723 | "gpio35", "gpio36", | |
724 | }; | |
725 | static const char * const blsp_spi7_groups[] = { | |
726 | "gpio41", "gpio42", "gpio43", "gpio44" | |
727 | }; | |
728 | static const char * const blsp_uart7_groups[] = { | |
729 | "gpio41", "gpio42", "gpio43", "gpio44" | |
730 | }; | |
731 | static const char * const blsp_uim7_groups[] = { | |
732 | "gpio41", "gpio42" | |
733 | }; | |
734 | static const char * const qdss_cti_trig_out_c_groups[] = { | |
735 | "gpio41", | |
736 | }; | |
737 | static const char * const qdss_cti_trig_in_c_groups[] = { | |
738 | "gpio42", | |
739 | }; | |
740 | static const char * const blsp_i2c7_groups[] = { | |
741 | "gpio43", "gpio44" | |
742 | }; | |
743 | static const char * const blsp_spi8_groups[] = { | |
744 | "gpio45", "gpio46", "gpio47", "gpio48" | |
745 | }; | |
746 | static const char * const blsp_uart8_groups[] = { | |
747 | "gpio45", "gpio46", "gpio47", "gpio48" | |
748 | }; | |
749 | static const char * const blsp_uim8_groups[] = { | |
750 | "gpio45", "gpio46" | |
751 | }; | |
752 | static const char * const blsp_i2c8_groups[] = { | |
753 | "gpio47", "gpio48" | |
754 | }; | |
755 | static const char * const blsp_spi10_cs1_groups[] = { | |
756 | "gpio47", "gpio67" | |
757 | }; | |
758 | static const char * const blsp_spi10_cs2_groups[] = { | |
759 | "gpio48", "gpio68" | |
760 | }; | |
761 | static const char * const uim2_groups[] = { | |
762 | "gpio49", "gpio50", "gpio51", "gpio52" | |
763 | }; | |
764 | static const char * const blsp_spi9_groups[] = { | |
765 | "gpio49", "gpio50", "gpio51", "gpio52" | |
766 | }; | |
767 | static const char * const blsp_uart9_groups[] = { | |
768 | "gpio49", "gpio50", "gpio51", "gpio52" | |
769 | }; | |
770 | static const char * const blsp_uim9_groups[] = { | |
771 | "gpio49", "gpio50" | |
772 | }; | |
773 | static const char * const blsp_i2c9_groups[] = { | |
774 | "gpio51", "gpio52" | |
775 | }; | |
776 | static const char * const pci_e0_groups[] = { | |
777 | "gpio53", "gpio54", | |
778 | }; | |
779 | static const char * const uim4_groups[] = { | |
780 | "gpio53", "gpio54", "gpio55", "gpio56" | |
781 | }; | |
782 | static const char * const blsp_spi10_groups[] = { | |
783 | "gpio53", "gpio54", "gpio55", "gpio56" | |
784 | }; | |
785 | static const char * const blsp_uart10_groups[] = { | |
786 | "gpio53", "gpio54", "gpio55", "gpio56" | |
787 | }; | |
788 | static const char * const blsp_uim10_groups[] = { | |
789 | "gpio53", "gpio54" | |
790 | }; | |
791 | static const char * const qdss_tracedata_a_groups[] = { | |
792 | "gpio53", "gpio54", "gpio63", "gpio64", "gpio65", | |
793 | "gpio66", "gpio67", "gpio74", "gpio75", "gpio76", | |
794 | "gpio77", "gpio85", "gpio86", "gpio87", "gpio89", | |
795 | "gpio90" | |
796 | }; | |
797 | static const char * const gp_pdm0_groups[] = { | |
798 | "gpio54", "gpio95" | |
799 | }; | |
800 | static const char * const blsp_i2c10_groups[] = { | |
801 | "gpio55", "gpio56" | |
802 | }; | |
803 | static const char * const qdss_cti_trig_in_a_groups[] = { | |
804 | "gpio55", | |
805 | }; | |
806 | static const char * const qdss_cti_trig_out_a_groups[] = { | |
807 | "gpio56", | |
808 | }; | |
809 | static const char * const qua_mi2s_groups[] = { | |
810 | "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63", | |
811 | }; | |
812 | static const char * const gcc_gp1_clk_a_groups[] = { | |
813 | "gpio57" | |
814 | }; | |
815 | static const char * const gcc_gp2_clk_a_groups[] = { | |
816 | "gpio58" | |
817 | }; | |
818 | static const char * const gcc_gp3_clk_a_groups[] = { | |
819 | "gpio59" | |
820 | }; | |
821 | static const char * const blsp_spi2_cs1_groups[] = { | |
822 | "gpio62" | |
823 | }; | |
824 | static const char * const blsp_spi2_cs2_groups[] = { | |
825 | "gpio63" | |
826 | }; | |
827 | static const char * const gp_pdm2_groups[] = { | |
828 | "gpio63", "gpio79" | |
829 | }; | |
830 | static const char * const pri_mi2s_groups[] = { | |
831 | "gpio64", "gpio65", "gpio66", "gpio67", "gpio68" | |
832 | }; | |
833 | static const char * const blsp_spi2_cs3_groups[] = { | |
834 | "gpio66" | |
835 | }; | |
836 | static const char * const spkr_i2s_groups[] = { | |
837 | "gpio69", "gpio70", "gpio71", "gpio72" | |
838 | }; | |
839 | static const char * const audio_ref_clk_groups[] = { | |
840 | "gpio69" | |
841 | }; | |
842 | static const char * const slimbus_groups[] = { | |
843 | "gpio70", "gpio71" | |
844 | }; | |
845 | static const char * const ter_mi2s_groups[] = { | |
846 | "gpio73", "gpio74", "gpio75", "gpio76", "gpio77" | |
847 | }; | |
848 | static const char * const gp_pdm1_groups[] = { | |
849 | "gpio74", "gpio86" | |
850 | }; | |
851 | static const char * const sec_mi2s_groups[] = { | |
852 | "gpio78", "gpio79", "gpio80", "gpio81", "gpio82" | |
853 | }; | |
854 | static const char * const gcc_gp1_clk_b_groups[] = { | |
855 | "gpio78" | |
856 | }; | |
857 | static const char * const blsp_spi11_groups[] = { | |
858 | "gpio81", "gpio82", "gpio83", "gpio84" | |
859 | }; | |
860 | static const char * const blsp_uart11_groups[] = { | |
861 | "gpio81", "gpio82", "gpio83", "gpio84" | |
862 | }; | |
863 | static const char * const blsp_uim11_groups[] = { | |
864 | "gpio81", "gpio82" | |
865 | }; | |
866 | static const char * const gcc_gp2_clk_b_groups[] = { | |
867 | "gpio81" | |
868 | }; | |
869 | static const char * const gcc_gp3_clk_b_groups[] = { | |
870 | "gpio82" | |
871 | }; | |
872 | static const char * const blsp_i2c11_groups[] = { | |
873 | "gpio83", "gpio84" | |
874 | }; | |
875 | static const char * const blsp_uart12_groups[] = { | |
876 | "gpio85", "gpio86", "gpio87", "gpio88" | |
877 | }; | |
878 | static const char * const blsp_uim12_groups[] = { | |
879 | "gpio85", "gpio86" | |
880 | }; | |
881 | static const char * const blsp_i2c12_groups[] = { | |
882 | "gpio87", "gpio88" | |
883 | }; | |
884 | static const char * const blsp_spi12_groups[] = { | |
885 | "gpio85", "gpio86", "gpio87", "gpio88" | |
886 | }; | |
887 | static const char * const tsif1_groups[] = { | |
888 | "gpio89", "gpio90", "gpio91", "gpio110", "gpio111" | |
889 | }; | |
890 | static const char * const blsp_spi10_cs3_groups[] = { | |
891 | "gpio90" | |
892 | }; | |
893 | static const char * const sdc4_groups[] = { | |
894 | "gpio91", "gpio92", "gpio93", "gpio94", "gpio95", "gpio96" | |
895 | }; | |
896 | static const char * const qdss_traceclk_b_groups[] = { | |
897 | "gpio91", | |
898 | }; | |
899 | static const char * const tsif2_groups[] = { | |
900 | "gpio92", "gpio93", "gpio94", "gpio95", "gpio96" | |
901 | }; | |
902 | static const char * const qdss_tracectl_b_groups[] = { | |
903 | "gpio94", | |
904 | }; | |
905 | static const char * const qdss_cti_trig_out_d_groups[] = { | |
906 | "gpio95", | |
907 | }; | |
908 | static const char * const qdss_cti_trig_in_d_groups[] = { | |
909 | "gpio96", | |
910 | }; | |
911 | static const char * const uim1_groups[] = { | |
912 | "gpio97", "gpio98", "gpio99", "gpio100" | |
913 | }; | |
914 | static const char * const uim_batt_alarm_groups[] = { | |
915 | "gpio101" | |
916 | }; | |
917 | static const char * const blsp11_uart_tx_b_groups[] = { | |
918 | "gpio111" | |
919 | }; | |
920 | static const char * const blsp11_uart_rx_b_groups[] = { | |
921 | "gpio112" | |
922 | }; | |
923 | static const char * const blsp11_i2c_sda_b_groups[] = { | |
924 | "gpio113" | |
925 | }; | |
926 | static const char * const blsp11_i2c_scl_b_groups[] = { | |
927 | "gpio114" | |
928 | }; | |
929 | static const char * const gsm_tx_groups[] = { | |
930 | "gpio126", "gpio131", "gpio132", "gpio133" | |
931 | }; | |
932 | static const char * const nav_tsync_groups[] = { | |
933 | "gpio127" | |
934 | }; | |
935 | static const char * const nav_pps_groups[] = { | |
936 | "gpio127" | |
937 | }; | |
938 | static const char * const gps_tx_groups[] = { | |
939 | "gpio130" | |
940 | }; | |
941 | static const char * const mss_lte_groups[] = { | |
942 | "gpio134", "gpio135" | |
943 | }; | |
944 | ||
c7a291db RA |
945 | static const struct pinfunction msm8994_functions[] = { |
946 | MSM_PIN_FUNCTION(audio_ref_clk), | |
947 | MSM_PIN_FUNCTION(blsp_i2c1), | |
948 | MSM_PIN_FUNCTION(blsp_i2c2), | |
949 | MSM_PIN_FUNCTION(blsp_i2c3), | |
950 | MSM_PIN_FUNCTION(blsp_i2c4), | |
951 | MSM_PIN_FUNCTION(blsp_i2c5), | |
952 | MSM_PIN_FUNCTION(blsp_i2c6), | |
953 | MSM_PIN_FUNCTION(blsp_i2c7), | |
954 | MSM_PIN_FUNCTION(blsp_i2c8), | |
955 | MSM_PIN_FUNCTION(blsp_i2c9), | |
956 | MSM_PIN_FUNCTION(blsp_i2c10), | |
957 | MSM_PIN_FUNCTION(blsp_i2c11), | |
958 | MSM_PIN_FUNCTION(blsp_i2c12), | |
959 | MSM_PIN_FUNCTION(blsp_spi1), | |
960 | MSM_PIN_FUNCTION(blsp_spi1_cs1), | |
961 | MSM_PIN_FUNCTION(blsp_spi1_cs2), | |
962 | MSM_PIN_FUNCTION(blsp_spi1_cs3), | |
963 | MSM_PIN_FUNCTION(blsp_spi2), | |
964 | MSM_PIN_FUNCTION(blsp_spi2_cs1), | |
965 | MSM_PIN_FUNCTION(blsp_spi2_cs2), | |
966 | MSM_PIN_FUNCTION(blsp_spi2_cs3), | |
967 | MSM_PIN_FUNCTION(blsp_spi3), | |
968 | MSM_PIN_FUNCTION(blsp_spi4), | |
969 | MSM_PIN_FUNCTION(blsp_spi5), | |
970 | MSM_PIN_FUNCTION(blsp_spi6), | |
971 | MSM_PIN_FUNCTION(blsp_spi7), | |
972 | MSM_PIN_FUNCTION(blsp_spi8), | |
973 | MSM_PIN_FUNCTION(blsp_spi9), | |
974 | MSM_PIN_FUNCTION(blsp_spi10), | |
975 | MSM_PIN_FUNCTION(blsp_spi10_cs1), | |
976 | MSM_PIN_FUNCTION(blsp_spi10_cs2), | |
977 | MSM_PIN_FUNCTION(blsp_spi10_cs3), | |
978 | MSM_PIN_FUNCTION(blsp_spi11), | |
979 | MSM_PIN_FUNCTION(blsp_spi12), | |
980 | MSM_PIN_FUNCTION(blsp_uart1), | |
981 | MSM_PIN_FUNCTION(blsp_uart2), | |
982 | MSM_PIN_FUNCTION(blsp_uart3), | |
983 | MSM_PIN_FUNCTION(blsp_uart4), | |
984 | MSM_PIN_FUNCTION(blsp_uart5), | |
985 | MSM_PIN_FUNCTION(blsp_uart6), | |
986 | MSM_PIN_FUNCTION(blsp_uart7), | |
987 | MSM_PIN_FUNCTION(blsp_uart8), | |
988 | MSM_PIN_FUNCTION(blsp_uart9), | |
989 | MSM_PIN_FUNCTION(blsp_uart10), | |
990 | MSM_PIN_FUNCTION(blsp_uart11), | |
991 | MSM_PIN_FUNCTION(blsp_uart12), | |
992 | MSM_PIN_FUNCTION(blsp_uim1), | |
993 | MSM_PIN_FUNCTION(blsp_uim2), | |
994 | MSM_PIN_FUNCTION(blsp_uim3), | |
995 | MSM_PIN_FUNCTION(blsp_uim4), | |
996 | MSM_PIN_FUNCTION(blsp_uim5), | |
997 | MSM_PIN_FUNCTION(blsp_uim6), | |
998 | MSM_PIN_FUNCTION(blsp_uim7), | |
999 | MSM_PIN_FUNCTION(blsp_uim8), | |
1000 | MSM_PIN_FUNCTION(blsp_uim9), | |
1001 | MSM_PIN_FUNCTION(blsp_uim10), | |
1002 | MSM_PIN_FUNCTION(blsp_uim11), | |
1003 | MSM_PIN_FUNCTION(blsp_uim12), | |
1004 | MSM_PIN_FUNCTION(blsp11_i2c_scl_b), | |
1005 | MSM_PIN_FUNCTION(blsp11_i2c_sda_b), | |
1006 | MSM_PIN_FUNCTION(blsp11_uart_rx_b), | |
1007 | MSM_PIN_FUNCTION(blsp11_uart_tx_b), | |
1008 | MSM_PIN_FUNCTION(cam_mclk0), | |
1009 | MSM_PIN_FUNCTION(cam_mclk1), | |
1010 | MSM_PIN_FUNCTION(cam_mclk2), | |
1011 | MSM_PIN_FUNCTION(cam_mclk3), | |
1012 | MSM_PIN_FUNCTION(cci_async_in0), | |
1013 | MSM_PIN_FUNCTION(cci_async_in1), | |
1014 | MSM_PIN_FUNCTION(cci_async_in2), | |
1015 | MSM_PIN_FUNCTION(cci_i2c0), | |
1016 | MSM_PIN_FUNCTION(cci_i2c1), | |
1017 | MSM_PIN_FUNCTION(cci_timer0), | |
1018 | MSM_PIN_FUNCTION(cci_timer1), | |
1019 | MSM_PIN_FUNCTION(cci_timer2), | |
1020 | MSM_PIN_FUNCTION(cci_timer3), | |
1021 | MSM_PIN_FUNCTION(cci_timer4), | |
1022 | MSM_PIN_FUNCTION(gcc_gp1_clk_a), | |
1023 | MSM_PIN_FUNCTION(gcc_gp1_clk_b), | |
1024 | MSM_PIN_FUNCTION(gcc_gp2_clk_a), | |
1025 | MSM_PIN_FUNCTION(gcc_gp2_clk_b), | |
1026 | MSM_PIN_FUNCTION(gcc_gp3_clk_a), | |
1027 | MSM_PIN_FUNCTION(gcc_gp3_clk_b), | |
1028 | MSM_PIN_FUNCTION(gp_mn), | |
1029 | MSM_PIN_FUNCTION(gp_pdm0), | |
1030 | MSM_PIN_FUNCTION(gp_pdm1), | |
1031 | MSM_PIN_FUNCTION(gp_pdm2), | |
1032 | MSM_PIN_FUNCTION(gp0_clk), | |
1033 | MSM_PIN_FUNCTION(gp1_clk), | |
1034 | MSM_PIN_FUNCTION(gps_tx), | |
1035 | MSM_PIN_FUNCTION(gsm_tx), | |
1036 | MSM_PIN_FUNCTION(hdmi_cec), | |
1037 | MSM_PIN_FUNCTION(hdmi_ddc), | |
1038 | MSM_PIN_FUNCTION(hdmi_hpd), | |
1039 | MSM_PIN_FUNCTION(hdmi_rcv), | |
1040 | MSM_PIN_FUNCTION(mdp_vsync), | |
1041 | MSM_PIN_FUNCTION(mss_lte), | |
1042 | MSM_PIN_FUNCTION(nav_pps), | |
1043 | MSM_PIN_FUNCTION(nav_tsync), | |
1044 | MSM_PIN_FUNCTION(qdss_cti_trig_in_a), | |
1045 | MSM_PIN_FUNCTION(qdss_cti_trig_in_b), | |
1046 | MSM_PIN_FUNCTION(qdss_cti_trig_in_c), | |
1047 | MSM_PIN_FUNCTION(qdss_cti_trig_in_d), | |
1048 | MSM_PIN_FUNCTION(qdss_cti_trig_out_a), | |
1049 | MSM_PIN_FUNCTION(qdss_cti_trig_out_b), | |
1050 | MSM_PIN_FUNCTION(qdss_cti_trig_out_c), | |
1051 | MSM_PIN_FUNCTION(qdss_cti_trig_out_d), | |
1052 | MSM_PIN_FUNCTION(qdss_traceclk_a), | |
1053 | MSM_PIN_FUNCTION(qdss_traceclk_b), | |
1054 | MSM_PIN_FUNCTION(qdss_tracectl_a), | |
1055 | MSM_PIN_FUNCTION(qdss_tracectl_b), | |
1056 | MSM_PIN_FUNCTION(qdss_tracedata_a), | |
1057 | MSM_PIN_FUNCTION(qdss_tracedata_b), | |
1058 | MSM_PIN_FUNCTION(qua_mi2s), | |
1059 | MSM_PIN_FUNCTION(pci_e0), | |
1060 | MSM_PIN_FUNCTION(pci_e1), | |
1061 | MSM_PIN_FUNCTION(pri_mi2s), | |
1062 | MSM_PIN_FUNCTION(sdc4), | |
1063 | MSM_PIN_FUNCTION(sec_mi2s), | |
1064 | MSM_PIN_FUNCTION(slimbus), | |
1065 | MSM_PIN_FUNCTION(spkr_i2s), | |
1066 | MSM_PIN_FUNCTION(ter_mi2s), | |
1067 | MSM_PIN_FUNCTION(tsif1), | |
1068 | MSM_PIN_FUNCTION(tsif2), | |
1069 | MSM_PIN_FUNCTION(uim_batt_alarm), | |
1070 | MSM_PIN_FUNCTION(uim1), | |
1071 | MSM_PIN_FUNCTION(uim2), | |
1072 | MSM_PIN_FUNCTION(uim3), | |
1073 | MSM_PIN_FUNCTION(uim4), | |
1074 | MSM_PIN_FUNCTION(gpio), | |
465e4218 MS |
1075 | }; |
1076 | ||
1077 | static const struct msm_pingroup msm8994_groups[] = { | |
1078 | PINGROUP(0, blsp_spi1, blsp_uart1, blsp_uim1, hdmi_rcv, NA, NA, NA, | |
1079 | NA, NA, NA, NA), | |
1080 | PINGROUP(1, blsp_spi1, blsp_uart1, blsp_uim1, NA, NA, NA, NA, NA, NA, | |
1081 | NA, NA), | |
1082 | PINGROUP(2, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA, | |
1083 | NA, NA), | |
1084 | PINGROUP(3, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA, | |
1085 | NA, NA), | |
1086 | PINGROUP(4, blsp_spi2, blsp_uart2, blsp_uim2, NA, qdss_cti_trig_out_b, | |
1087 | NA, NA, NA, NA, NA, NA), | |
1088 | PINGROUP(5, blsp_spi2, blsp_uart2, blsp_uim2, NA, qdss_cti_trig_in_b, | |
1089 | NA, NA, NA, NA, NA, NA), | |
1090 | PINGROUP(6, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA, NA, NA, | |
1091 | NA, NA), | |
1092 | PINGROUP(7, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA, NA, NA, | |
1093 | NA, NA), | |
1094 | PINGROUP(8, blsp_spi3, blsp_uart3, blsp_uim3, blsp_spi1_cs1, NA, NA, | |
1095 | NA, NA, NA, NA, NA), | |
1096 | PINGROUP(9, blsp_spi3, blsp_uart3, blsp_uim3, blsp_spi1_cs2, NA, NA, | |
1097 | NA, NA, NA, NA, NA), | |
1098 | PINGROUP(10, mdp_vsync, blsp_spi3, blsp_uart3, blsp_i2c3, | |
1099 | blsp_spi1_cs3, NA, NA, NA, NA, NA, NA), | |
1100 | PINGROUP(11, mdp_vsync, blsp_spi3, blsp_uart3, blsp_i2c3, | |
1101 | blsp_spi1_cs2, NA, NA, NA, NA, NA, NA), | |
1102 | PINGROUP(12, mdp_vsync, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1103 | PINGROUP(13, cam_mclk0, NA, NA, qdss_tracedata_b, NA, NA, NA, NA, NA, | |
1104 | NA, NA), | |
1105 | PINGROUP(14, cam_mclk1, NA, NA, qdss_tracedata_b, NA, NA, NA, NA, NA, | |
1106 | NA, NA), | |
1107 | PINGROUP(15, cam_mclk2, NA, qdss_tracedata_b, NA, NA, NA, NA, NA, NA, | |
1108 | NA, NA), | |
1109 | PINGROUP(16, cam_mclk3, NA, qdss_tracedata_b, NA, NA, NA, NA, NA, NA, | |
1110 | NA, NA), | |
1111 | PINGROUP(17, cci_i2c0, blsp_spi4, blsp_uart4, blsp_uim4, NA, | |
1112 | qdss_tracedata_b, NA, NA, NA, NA, NA), | |
1113 | PINGROUP(18, cci_i2c0, blsp_spi4, blsp_uart4, blsp_uim4, NA, | |
1114 | qdss_tracedata_b, NA, NA, NA, NA, NA), | |
1115 | PINGROUP(19, cci_i2c1, blsp_spi4, blsp_uart4, blsp_i2c4, NA, | |
1116 | qdss_tracedata_b, NA, NA, NA, NA, NA), | |
1117 | PINGROUP(20, cci_i2c1, blsp_spi4, blsp_uart4, blsp_i2c4, NA, NA, NA, | |
1118 | NA, NA, NA, NA), | |
1119 | PINGROUP(21, cci_timer0, blsp_spi5, blsp_uart5, blsp_uim5, NA, | |
1120 | qdss_tracedata_b, NA, NA, NA, NA, NA), | |
1121 | PINGROUP(22, cci_timer1, blsp_spi5, blsp_uart5, blsp_uim5, NA, | |
1122 | qdss_tracedata_b, NA, NA, NA, NA, NA), | |
1123 | PINGROUP(23, cci_timer2, blsp_spi5, blsp_uart5, blsp_i2c5, NA, NA, | |
1124 | qdss_tracedata_b, NA, NA, NA, NA), | |
1125 | PINGROUP(24, cci_timer3, cci_async_in1, blsp_spi5, blsp_uart5, | |
1126 | blsp_i2c5, NA, NA, NA, NA, NA, NA), | |
1127 | PINGROUP(25, cci_timer4, cci_async_in2, blsp_spi6, blsp_uart6, | |
1128 | blsp_uim6, NA, NA, qdss_tracedata_b, NA, NA, NA), | |
1129 | PINGROUP(26, cci_async_in0, blsp_spi6, blsp_uart6, blsp_uim6, gp0_clk, | |
1130 | NA, qdss_tracedata_b, NA, NA, NA, NA), | |
1131 | PINGROUP(27, blsp_spi6, blsp_uart6, blsp_i2c6, gp1_clk, | |
1132 | qdss_tracectl_a, NA, NA, NA, NA, NA, NA), | |
1133 | PINGROUP(28, blsp_spi6, blsp_uart6, blsp_i2c6, qdss_traceclk_a, NA, | |
1134 | NA, NA, NA, NA, NA, NA), | |
1135 | PINGROUP(29, gp_mn, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1136 | PINGROUP(30, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1137 | PINGROUP(31, hdmi_cec, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1138 | PINGROUP(32, hdmi_ddc, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1139 | PINGROUP(33, hdmi_ddc, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1140 | PINGROUP(34, hdmi_hpd, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1141 | PINGROUP(35, uim3, pci_e1, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1142 | PINGROUP(36, uim3, pci_e1, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1143 | PINGROUP(37, uim3, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1144 | PINGROUP(38, uim3, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1145 | PINGROUP(39, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1146 | PINGROUP(40, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1147 | PINGROUP(41, blsp_spi7, blsp_uart7, blsp_uim7, qdss_cti_trig_out_c, | |
1148 | NA, NA, NA, NA, NA, NA, NA), | |
1149 | PINGROUP(42, blsp_spi7, blsp_uart7, blsp_uim7, qdss_cti_trig_in_c, NA, | |
1150 | NA, NA, NA, NA, NA, NA), | |
1151 | PINGROUP(43, blsp_spi7, blsp_uart7, blsp_i2c7, NA, NA, NA, NA, NA, NA, | |
1152 | NA, NA), | |
1153 | PINGROUP(44, blsp_spi7, blsp_uart7, blsp_i2c7, NA, NA, NA, NA, NA, NA, | |
1154 | NA, NA), | |
1155 | PINGROUP(45, blsp_spi8, blsp_uart8, blsp_uim8, NA, NA, NA, NA, NA, NA, | |
1156 | NA, NA), | |
1157 | PINGROUP(46, blsp_spi8, blsp_uart8, blsp_uim8, NA, NA, NA, NA, NA, NA, | |
1158 | NA, NA), | |
1159 | PINGROUP(47, blsp_spi8, blsp_uart8, blsp_i2c8, blsp_spi10_cs1, NA, NA, | |
1160 | NA, NA, NA, NA, NA), | |
1161 | PINGROUP(48, blsp_spi8, blsp_uart8, blsp_i2c8, blsp_spi10_cs2, NA, NA, | |
1162 | NA, NA, NA, NA, NA), | |
1163 | PINGROUP(49, uim2, blsp_spi9, blsp_uart9, blsp_uim9, NA, NA, NA, NA, | |
1164 | NA, NA, NA), | |
1165 | PINGROUP(50, uim2, blsp_spi9, blsp_uart9, blsp_uim9, NA, NA, NA, NA, | |
1166 | NA, NA, NA), | |
1167 | PINGROUP(51, uim2, blsp_spi9, blsp_uart9, blsp_i2c9, NA, NA, NA, NA, | |
1168 | NA, NA, NA), | |
1169 | PINGROUP(52, uim2, blsp_spi9, blsp_uart9, blsp_i2c9, NA, NA, NA, NA, | |
1170 | NA, NA, NA), | |
1171 | PINGROUP(53, uim4, pci_e0, blsp_spi10, blsp_uart10, blsp_uim10, NA, | |
1172 | NA, qdss_tracedata_a, NA, NA, NA), | |
1173 | PINGROUP(54, uim4, pci_e0, blsp_spi10, blsp_uart10, blsp_uim10, | |
1174 | gp_pdm0, NA, NA, qdss_tracedata_a, NA, NA), | |
1175 | PINGROUP(55, uim4, blsp_spi10, blsp_uart10, blsp_i2c10, NA, NA, NA, | |
1176 | qdss_cti_trig_in_a, NA, NA, NA), | |
1177 | PINGROUP(56, uim4, blsp_spi10, blsp_uart10, blsp_i2c10, NA, NA, | |
1178 | qdss_cti_trig_out_a, NA, NA, NA, NA), | |
1179 | PINGROUP(57, qua_mi2s, gcc_gp1_clk_a, NA, NA, qdss_tracedata_b, NA, NA, | |
1180 | NA, NA, NA, NA), | |
1181 | PINGROUP(58, qua_mi2s, gcc_gp2_clk_a, NA, NA, qdss_tracedata_b, NA, NA, | |
1182 | NA, NA, NA, NA), | |
1183 | PINGROUP(59, qua_mi2s, gcc_gp3_clk_a, NA, NA, NA, NA, NA, NA, NA, NA, | |
1184 | NA), | |
1185 | PINGROUP(60, qua_mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1186 | PINGROUP(61, qua_mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1187 | PINGROUP(62, qua_mi2s, blsp_spi2_cs1, NA, NA, NA, NA, NA, NA, NA, NA, | |
1188 | NA), | |
1189 | PINGROUP(63, qua_mi2s, blsp_spi2_cs2, gp_pdm2, NA, NA, NA, NA, NA, | |
1190 | qdss_tracedata_a, NA, NA), | |
1191 | PINGROUP(64, pri_mi2s, NA, NA, NA, qdss_tracedata_a, NA, NA, NA, NA, | |
1192 | NA, NA), | |
1193 | PINGROUP(65, pri_mi2s, NA, NA, NA, qdss_tracedata_a, NA, NA, NA, NA, | |
1194 | NA, NA), | |
1195 | PINGROUP(66, pri_mi2s, blsp_spi2_cs3, NA, NA, NA, qdss_tracedata_a, | |
1196 | NA, NA, NA, NA, NA), | |
1197 | PINGROUP(67, pri_mi2s, blsp_spi10_cs1, NA, NA, NA, qdss_tracedata_a, | |
1198 | NA, NA, NA, NA, NA), | |
1199 | PINGROUP(68, pri_mi2s, blsp_spi10_cs2, NA, NA, NA, NA, NA, NA, NA, NA, | |
1200 | NA), | |
1201 | PINGROUP(69, spkr_i2s, audio_ref_clk, NA, NA, NA, NA, NA, NA, NA, NA, | |
1202 | NA), | |
1203 | PINGROUP(70, slimbus, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1204 | PINGROUP(71, slimbus, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1205 | PINGROUP(72, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1206 | PINGROUP(73, ter_mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1207 | PINGROUP(74, ter_mi2s, gp_pdm1, NA, NA, NA, qdss_tracedata_a, NA, NA, | |
1208 | NA, NA, NA), | |
1209 | PINGROUP(75, ter_mi2s, NA, NA, qdss_tracedata_a, NA, NA, NA, NA, NA, | |
1210 | NA, NA), | |
1211 | PINGROUP(76, ter_mi2s, NA, NA, qdss_tracedata_a, NA, NA, NA, NA, NA, | |
1212 | NA, NA), | |
1213 | PINGROUP(77, ter_mi2s, NA, NA, qdss_tracedata_a, NA, NA, NA, NA, NA, | |
1214 | NA, NA), | |
1215 | PINGROUP(78, sec_mi2s, gcc_gp1_clk_b, NA, NA, NA, NA, NA, NA, NA, NA, | |
1216 | NA), | |
1217 | PINGROUP(79, sec_mi2s, gp_pdm2, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1218 | PINGROUP(80, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1219 | PINGROUP(81, sec_mi2s, blsp_spi11, blsp_uart11, blsp_uim11, | |
1220 | gcc_gp2_clk_b, NA, NA, NA, NA, NA, NA), | |
1221 | PINGROUP(82, sec_mi2s, blsp_spi11, blsp_uart11, blsp_uim11, | |
1222 | gcc_gp3_clk_b, NA, NA, NA, NA, NA, NA), | |
1223 | PINGROUP(83, blsp_spi11, blsp_uart11, blsp_i2c11, NA, NA, NA, NA, NA, | |
1224 | NA, NA, NA), | |
1225 | PINGROUP(84, blsp_spi11, blsp_uart11, blsp_i2c11, NA, NA, NA, NA, NA, | |
1226 | NA, NA, NA), | |
1227 | PINGROUP(85, blsp_spi12, blsp_uart12, blsp_uim12, NA, NA, | |
1228 | qdss_tracedata_a, NA, NA, NA, NA, NA), | |
1229 | PINGROUP(86, blsp_spi12, blsp_uart12, blsp_uim12, gp_pdm1, NA, | |
1230 | qdss_tracedata_a, NA, NA, NA, NA, NA), | |
1231 | PINGROUP(87, blsp_spi12, blsp_uart12, blsp_i2c12, NA, | |
1232 | qdss_tracedata_a, NA, NA, NA, NA, NA, NA), | |
1233 | PINGROUP(88, blsp_spi12, blsp_uart12, blsp_i2c12, NA, NA, NA, NA, NA, | |
1234 | NA, NA, NA), | |
1235 | PINGROUP(89, tsif1, NA, qdss_tracedata_a, NA, NA, NA, NA, NA, NA, NA, | |
1236 | NA), | |
1237 | PINGROUP(90, tsif1, blsp_spi10_cs3, qdss_tracedata_a, NA, NA, NA, NA, | |
1238 | NA, NA, NA, NA), | |
1239 | PINGROUP(91, tsif1, sdc4, NA, NA, NA, NA, qdss_traceclk_b, NA, NA, NA, | |
1240 | NA), | |
1241 | PINGROUP(92, tsif2, sdc4, NA, NA, qdss_tracedata_b, NA, NA, NA, NA, | |
1242 | NA, NA), | |
1243 | PINGROUP(93, tsif2, sdc4, NA, NA, NA, NA, qdss_tracedata_b, NA, NA, | |
1244 | NA, NA), | |
1245 | PINGROUP(94, tsif2, sdc4, NA, NA, NA, NA, qdss_tracectl_b, NA, NA, NA, | |
1246 | NA), | |
1247 | PINGROUP(95, tsif2, sdc4, gp_pdm0, NA, NA, NA, qdss_cti_trig_out_d, | |
1248 | NA, NA, NA, NA), | |
1249 | PINGROUP(96, tsif2, sdc4, qdss_cti_trig_in_d, NA, NA, NA, NA, NA, NA, | |
1250 | NA, NA), | |
1251 | PINGROUP(97, uim1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1252 | PINGROUP(98, uim1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1253 | PINGROUP(99, uim1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1254 | PINGROUP(100, uim1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1255 | PINGROUP(101, uim_batt_alarm, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1256 | PINGROUP(102, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1257 | PINGROUP(103, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1258 | PINGROUP(104, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1259 | PINGROUP(105, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1260 | PINGROUP(106, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1261 | PINGROUP(107, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1262 | PINGROUP(108, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1263 | PINGROUP(109, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1264 | PINGROUP(110, tsif1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1265 | PINGROUP(111, tsif1, blsp11_uart_tx_b, NA, NA, NA, NA, NA, NA, NA, NA, | |
1266 | NA), | |
1267 | PINGROUP(112, blsp11_uart_rx_b, NA, NA, NA, NA, NA, NA, NA, NA, NA, | |
1268 | NA), | |
1269 | PINGROUP(113, blsp11_i2c_sda_b, NA, NA, NA, NA, NA, NA, NA, NA, NA, | |
1270 | NA), | |
1271 | PINGROUP(114, blsp11_i2c_scl_b, NA, NA, NA, NA, NA, NA, NA, NA, NA, | |
1272 | NA), | |
1273 | PINGROUP(115, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1274 | PINGROUP(116, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1275 | PINGROUP(117, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1276 | PINGROUP(118, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1277 | PINGROUP(119, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1278 | PINGROUP(120, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1279 | PINGROUP(121, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1280 | PINGROUP(122, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1281 | PINGROUP(123, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1282 | PINGROUP(124, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1283 | PINGROUP(125, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1284 | PINGROUP(126, NA, gsm_tx, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1285 | PINGROUP(127, NA, nav_tsync, nav_pps, NA, NA, NA, NA, NA, NA, NA, | |
1286 | NA), | |
1287 | PINGROUP(128, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1288 | PINGROUP(129, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1289 | PINGROUP(130, gps_tx, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1290 | PINGROUP(131, gsm_tx, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1291 | PINGROUP(132, gsm_tx, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1292 | PINGROUP(133, gsm_tx, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1293 | PINGROUP(134, mss_lte, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1294 | PINGROUP(135, mss_lte, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1295 | PINGROUP(136, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1296 | PINGROUP(137, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1297 | PINGROUP(138, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1298 | PINGROUP(139, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1299 | PINGROUP(140, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1300 | PINGROUP(141, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1301 | PINGROUP(142, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1302 | PINGROUP(143, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1303 | PINGROUP(144, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1304 | PINGROUP(145, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA), | |
1305 | SDC_PINGROUP(sdc1_rclk, 0x2044, 15, 0), | |
1306 | SDC_PINGROUP(sdc1_clk, 0x2044, 13, 6), | |
1307 | SDC_PINGROUP(sdc1_cmd, 0x2044, 11, 3), | |
1308 | SDC_PINGROUP(sdc1_data, 0x2044, 9, 0), | |
1309 | SDC_PINGROUP(sdc2_clk, 0x2048, 14, 6), | |
1310 | SDC_PINGROUP(sdc2_cmd, 0x2048, 11, 3), | |
1311 | SDC_PINGROUP(sdc2_data, 0x2048, 9, 0), | |
1312 | SDC_PINGROUP(sdc3_clk, 0x206c, 14, 6), | |
1313 | SDC_PINGROUP(sdc3_cmd, 0x206c, 11, 3), | |
1314 | SDC_PINGROUP(sdc3_data, 0x206c, 9, 0), | |
1315 | }; | |
1316 | ||
1317 | #define NUM_GPIO_PINGROUPS 146 | |
1318 | ||
1319 | static const struct msm_pinctrl_soc_data msm8994_pinctrl = { | |
1320 | .pins = msm8994_pins, | |
1321 | .npins = ARRAY_SIZE(msm8994_pins), | |
1322 | .functions = msm8994_functions, | |
1323 | .nfunctions = ARRAY_SIZE(msm8994_functions), | |
1324 | .groups = msm8994_groups, | |
1325 | .ngroups = ARRAY_SIZE(msm8994_groups), | |
1326 | .ngpios = NUM_GPIO_PINGROUPS, | |
1327 | }; | |
1328 | ||
1329 | static int msm8994_pinctrl_probe(struct platform_device *pdev) | |
1330 | { | |
1331 | return msm_pinctrl_probe(pdev, &msm8994_pinctrl); | |
1332 | } | |
1333 | ||
1334 | static const struct of_device_id msm8994_pinctrl_of_match[] = { | |
1335 | { .compatible = "qcom,msm8992-pinctrl", }, | |
1336 | { .compatible = "qcom,msm8994-pinctrl", }, | |
1337 | { } | |
1338 | }; | |
1339 | ||
1340 | static struct platform_driver msm8994_pinctrl_driver = { | |
1341 | .driver = { | |
1342 | .name = "msm8994-pinctrl", | |
1343 | .of_match_table = msm8994_pinctrl_of_match, | |
1344 | }, | |
1345 | .probe = msm8994_pinctrl_probe, | |
1a075b1d | 1346 | .remove = msm_pinctrl_remove, |
465e4218 MS |
1347 | }; |
1348 | ||
1349 | static int __init msm8994_pinctrl_init(void) | |
1350 | { | |
1351 | return platform_driver_register(&msm8994_pinctrl_driver); | |
1352 | } | |
1353 | arch_initcall(msm8994_pinctrl_init); | |
1354 | ||
1355 | static void __exit msm8994_pinctrl_exit(void) | |
1356 | { | |
1357 | platform_driver_unregister(&msm8994_pinctrl_driver); | |
1358 | } | |
1359 | module_exit(msm8994_pinctrl_exit); | |
1360 | ||
1361 | MODULE_DESCRIPTION("Qualcomm MSM8994 pinctrl driver"); | |
1362 | MODULE_LICENSE("GPL v2"); | |
1363 | MODULE_DEVICE_TABLE(of, msm8994_pinctrl_of_match); |