]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/pinctrl/pinctrl-apq8064.c
video: mxc: ldb: sanitize error messages
[karo-tx-linux.git] / drivers / pinctrl / pinctrl-apq8064.c
1 /*
2  * Copyright (c) 2014, Sony Mobile Communications AB.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 and
6  * only version 2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  */
13
14 #include <linux/module.h>
15 #include <linux/of.h>
16 #include <linux/platform_device.h>
17 #include <linux/pinctrl/pinctrl.h>
18
19 #include "pinctrl-msm.h"
20
21 static const struct pinctrl_pin_desc apq8064_pins[] = {
22         PINCTRL_PIN(0, "GPIO_0"),
23         PINCTRL_PIN(1, "GPIO_1"),
24         PINCTRL_PIN(2, "GPIO_2"),
25         PINCTRL_PIN(3, "GPIO_3"),
26         PINCTRL_PIN(4, "GPIO_4"),
27         PINCTRL_PIN(5, "GPIO_5"),
28         PINCTRL_PIN(6, "GPIO_6"),
29         PINCTRL_PIN(7, "GPIO_7"),
30         PINCTRL_PIN(8, "GPIO_8"),
31         PINCTRL_PIN(9, "GPIO_9"),
32         PINCTRL_PIN(10, "GPIO_10"),
33         PINCTRL_PIN(11, "GPIO_11"),
34         PINCTRL_PIN(12, "GPIO_12"),
35         PINCTRL_PIN(13, "GPIO_13"),
36         PINCTRL_PIN(14, "GPIO_14"),
37         PINCTRL_PIN(15, "GPIO_15"),
38         PINCTRL_PIN(16, "GPIO_16"),
39         PINCTRL_PIN(17, "GPIO_17"),
40         PINCTRL_PIN(18, "GPIO_18"),
41         PINCTRL_PIN(19, "GPIO_19"),
42         PINCTRL_PIN(20, "GPIO_20"),
43         PINCTRL_PIN(21, "GPIO_21"),
44         PINCTRL_PIN(22, "GPIO_22"),
45         PINCTRL_PIN(23, "GPIO_23"),
46         PINCTRL_PIN(24, "GPIO_24"),
47         PINCTRL_PIN(25, "GPIO_25"),
48         PINCTRL_PIN(26, "GPIO_26"),
49         PINCTRL_PIN(27, "GPIO_27"),
50         PINCTRL_PIN(28, "GPIO_28"),
51         PINCTRL_PIN(29, "GPIO_29"),
52         PINCTRL_PIN(30, "GPIO_30"),
53         PINCTRL_PIN(31, "GPIO_31"),
54         PINCTRL_PIN(32, "GPIO_32"),
55         PINCTRL_PIN(33, "GPIO_33"),
56         PINCTRL_PIN(34, "GPIO_34"),
57         PINCTRL_PIN(35, "GPIO_35"),
58         PINCTRL_PIN(36, "GPIO_36"),
59         PINCTRL_PIN(37, "GPIO_37"),
60         PINCTRL_PIN(38, "GPIO_38"),
61         PINCTRL_PIN(39, "GPIO_39"),
62         PINCTRL_PIN(40, "GPIO_40"),
63         PINCTRL_PIN(41, "GPIO_41"),
64         PINCTRL_PIN(42, "GPIO_42"),
65         PINCTRL_PIN(43, "GPIO_43"),
66         PINCTRL_PIN(44, "GPIO_44"),
67         PINCTRL_PIN(45, "GPIO_45"),
68         PINCTRL_PIN(46, "GPIO_46"),
69         PINCTRL_PIN(47, "GPIO_47"),
70         PINCTRL_PIN(48, "GPIO_48"),
71         PINCTRL_PIN(49, "GPIO_49"),
72         PINCTRL_PIN(50, "GPIO_50"),
73         PINCTRL_PIN(51, "GPIO_51"),
74         PINCTRL_PIN(52, "GPIO_52"),
75         PINCTRL_PIN(53, "GPIO_53"),
76         PINCTRL_PIN(54, "GPIO_54"),
77         PINCTRL_PIN(55, "GPIO_55"),
78         PINCTRL_PIN(56, "GPIO_56"),
79         PINCTRL_PIN(57, "GPIO_57"),
80         PINCTRL_PIN(58, "GPIO_58"),
81         PINCTRL_PIN(59, "GPIO_59"),
82         PINCTRL_PIN(60, "GPIO_60"),
83         PINCTRL_PIN(61, "GPIO_61"),
84         PINCTRL_PIN(62, "GPIO_62"),
85         PINCTRL_PIN(63, "GPIO_63"),
86         PINCTRL_PIN(64, "GPIO_64"),
87         PINCTRL_PIN(65, "GPIO_65"),
88         PINCTRL_PIN(66, "GPIO_66"),
89         PINCTRL_PIN(67, "GPIO_67"),
90         PINCTRL_PIN(68, "GPIO_68"),
91         PINCTRL_PIN(69, "GPIO_69"),
92         PINCTRL_PIN(70, "GPIO_70"),
93         PINCTRL_PIN(71, "GPIO_71"),
94         PINCTRL_PIN(72, "GPIO_72"),
95         PINCTRL_PIN(73, "GPIO_73"),
96         PINCTRL_PIN(74, "GPIO_74"),
97         PINCTRL_PIN(75, "GPIO_75"),
98         PINCTRL_PIN(76, "GPIO_76"),
99         PINCTRL_PIN(77, "GPIO_77"),
100         PINCTRL_PIN(78, "GPIO_78"),
101         PINCTRL_PIN(79, "GPIO_79"),
102         PINCTRL_PIN(80, "GPIO_80"),
103         PINCTRL_PIN(81, "GPIO_81"),
104         PINCTRL_PIN(82, "GPIO_82"),
105         PINCTRL_PIN(83, "GPIO_83"),
106         PINCTRL_PIN(84, "GPIO_84"),
107         PINCTRL_PIN(85, "GPIO_85"),
108         PINCTRL_PIN(86, "GPIO_86"),
109         PINCTRL_PIN(87, "GPIO_87"),
110         PINCTRL_PIN(88, "GPIO_88"),
111         PINCTRL_PIN(89, "GPIO_89"),
112
113         PINCTRL_PIN(90, "SDC1_CLK"),
114         PINCTRL_PIN(91, "SDC1_CMD"),
115         PINCTRL_PIN(92, "SDC1_DATA"),
116         PINCTRL_PIN(93, "SDC3_CLK"),
117         PINCTRL_PIN(94, "SDC3_CMD"),
118         PINCTRL_PIN(95, "SDC3_DATA"),
119 };
120
121 #define DECLARE_APQ_GPIO_PINS(pin) static const unsigned int gpio##pin##_pins[] = { pin }
122 DECLARE_APQ_GPIO_PINS(0);
123 DECLARE_APQ_GPIO_PINS(1);
124 DECLARE_APQ_GPIO_PINS(2);
125 DECLARE_APQ_GPIO_PINS(3);
126 DECLARE_APQ_GPIO_PINS(4);
127 DECLARE_APQ_GPIO_PINS(5);
128 DECLARE_APQ_GPIO_PINS(6);
129 DECLARE_APQ_GPIO_PINS(7);
130 DECLARE_APQ_GPIO_PINS(8);
131 DECLARE_APQ_GPIO_PINS(9);
132 DECLARE_APQ_GPIO_PINS(10);
133 DECLARE_APQ_GPIO_PINS(11);
134 DECLARE_APQ_GPIO_PINS(12);
135 DECLARE_APQ_GPIO_PINS(13);
136 DECLARE_APQ_GPIO_PINS(14);
137 DECLARE_APQ_GPIO_PINS(15);
138 DECLARE_APQ_GPIO_PINS(16);
139 DECLARE_APQ_GPIO_PINS(17);
140 DECLARE_APQ_GPIO_PINS(18);
141 DECLARE_APQ_GPIO_PINS(19);
142 DECLARE_APQ_GPIO_PINS(20);
143 DECLARE_APQ_GPIO_PINS(21);
144 DECLARE_APQ_GPIO_PINS(22);
145 DECLARE_APQ_GPIO_PINS(23);
146 DECLARE_APQ_GPIO_PINS(24);
147 DECLARE_APQ_GPIO_PINS(25);
148 DECLARE_APQ_GPIO_PINS(26);
149 DECLARE_APQ_GPIO_PINS(27);
150 DECLARE_APQ_GPIO_PINS(28);
151 DECLARE_APQ_GPIO_PINS(29);
152 DECLARE_APQ_GPIO_PINS(30);
153 DECLARE_APQ_GPIO_PINS(31);
154 DECLARE_APQ_GPIO_PINS(32);
155 DECLARE_APQ_GPIO_PINS(33);
156 DECLARE_APQ_GPIO_PINS(34);
157 DECLARE_APQ_GPIO_PINS(35);
158 DECLARE_APQ_GPIO_PINS(36);
159 DECLARE_APQ_GPIO_PINS(37);
160 DECLARE_APQ_GPIO_PINS(38);
161 DECLARE_APQ_GPIO_PINS(39);
162 DECLARE_APQ_GPIO_PINS(40);
163 DECLARE_APQ_GPIO_PINS(41);
164 DECLARE_APQ_GPIO_PINS(42);
165 DECLARE_APQ_GPIO_PINS(43);
166 DECLARE_APQ_GPIO_PINS(44);
167 DECLARE_APQ_GPIO_PINS(45);
168 DECLARE_APQ_GPIO_PINS(46);
169 DECLARE_APQ_GPIO_PINS(47);
170 DECLARE_APQ_GPIO_PINS(48);
171 DECLARE_APQ_GPIO_PINS(49);
172 DECLARE_APQ_GPIO_PINS(50);
173 DECLARE_APQ_GPIO_PINS(51);
174 DECLARE_APQ_GPIO_PINS(52);
175 DECLARE_APQ_GPIO_PINS(53);
176 DECLARE_APQ_GPIO_PINS(54);
177 DECLARE_APQ_GPIO_PINS(55);
178 DECLARE_APQ_GPIO_PINS(56);
179 DECLARE_APQ_GPIO_PINS(57);
180 DECLARE_APQ_GPIO_PINS(58);
181 DECLARE_APQ_GPIO_PINS(59);
182 DECLARE_APQ_GPIO_PINS(60);
183 DECLARE_APQ_GPIO_PINS(61);
184 DECLARE_APQ_GPIO_PINS(62);
185 DECLARE_APQ_GPIO_PINS(63);
186 DECLARE_APQ_GPIO_PINS(64);
187 DECLARE_APQ_GPIO_PINS(65);
188 DECLARE_APQ_GPIO_PINS(66);
189 DECLARE_APQ_GPIO_PINS(67);
190 DECLARE_APQ_GPIO_PINS(68);
191 DECLARE_APQ_GPIO_PINS(69);
192 DECLARE_APQ_GPIO_PINS(70);
193 DECLARE_APQ_GPIO_PINS(71);
194 DECLARE_APQ_GPIO_PINS(72);
195 DECLARE_APQ_GPIO_PINS(73);
196 DECLARE_APQ_GPIO_PINS(74);
197 DECLARE_APQ_GPIO_PINS(75);
198 DECLARE_APQ_GPIO_PINS(76);
199 DECLARE_APQ_GPIO_PINS(77);
200 DECLARE_APQ_GPIO_PINS(78);
201 DECLARE_APQ_GPIO_PINS(79);
202 DECLARE_APQ_GPIO_PINS(80);
203 DECLARE_APQ_GPIO_PINS(81);
204 DECLARE_APQ_GPIO_PINS(82);
205 DECLARE_APQ_GPIO_PINS(83);
206 DECLARE_APQ_GPIO_PINS(84);
207 DECLARE_APQ_GPIO_PINS(85);
208 DECLARE_APQ_GPIO_PINS(86);
209 DECLARE_APQ_GPIO_PINS(87);
210 DECLARE_APQ_GPIO_PINS(88);
211 DECLARE_APQ_GPIO_PINS(89);
212
213 static const unsigned int sdc1_clk_pins[] = { 90 };
214 static const unsigned int sdc1_cmd_pins[] = { 91 };
215 static const unsigned int sdc1_data_pins[] = { 92 };
216 static const unsigned int sdc3_clk_pins[] = { 93 };
217 static const unsigned int sdc3_cmd_pins[] = { 94 };
218 static const unsigned int sdc3_data_pins[] = { 95 };
219
220 #define FUNCTION(fname)                                 \
221         [APQ_MUX_##fname] = {                           \
222                 .name = #fname,                         \
223                 .groups = fname##_groups,               \
224                 .ngroups = ARRAY_SIZE(fname##_groups),  \
225         }
226
227 #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10) \
228         {                                               \
229                 .name = "gpio" #id,                     \
230                 .pins = gpio##id##_pins,                \
231                 .npins = ARRAY_SIZE(gpio##id##_pins),   \
232                 .funcs = (int[]){                       \
233                         APQ_MUX_NA, /* gpio mode */     \
234                         APQ_MUX_##f1,                   \
235                         APQ_MUX_##f2,                   \
236                         APQ_MUX_##f3,                   \
237                         APQ_MUX_##f4,                   \
238                         APQ_MUX_##f5,                   \
239                         APQ_MUX_##f6,                   \
240                         APQ_MUX_##f7,                   \
241                         APQ_MUX_##f8,                   \
242                         APQ_MUX_##f9,                   \
243                         APQ_MUX_##f10,                  \
244                 },                                      \
245                 .nfuncs = 11,                           \
246                 .ctl_reg = 0x1000 + 0x10 * id,          \
247                 .io_reg = 0x1004 + 0x10 * id,           \
248                 .intr_cfg_reg = 0x1008 + 0x10 * id,     \
249                 .intr_status_reg = 0x100c + 0x10 * id,  \
250                 .intr_target_reg = 0x400 + 0x4 * id,    \
251                 .mux_bit = 2,                           \
252                 .pull_bit = 0,                          \
253                 .drv_bit = 6,                           \
254                 .oe_bit = 9,                            \
255                 .in_bit = 0,                            \
256                 .out_bit = 1,                           \
257                 .intr_enable_bit = 0,                   \
258                 .intr_status_bit = 0,                   \
259                 .intr_ack_high = 1,                     \
260                 .intr_target_bit = 0,                   \
261                 .intr_raw_status_bit = 3,               \
262                 .intr_polarity_bit = 1,                 \
263                 .intr_detection_bit = 2,                \
264                 .intr_detection_width = 1,              \
265         }
266
267 #define SDC_PINGROUP(pg_name, ctl, pull, drv)           \
268         {                                               \
269                 .name = #pg_name,                       \
270                 .pins = pg_name##_pins,                 \
271                 .npins = ARRAY_SIZE(pg_name##_pins),    \
272                 .ctl_reg = ctl,                         \
273                 .io_reg = 0,                            \
274                 .intr_cfg_reg = 0,                      \
275                 .intr_status_reg = 0,                   \
276                 .intr_target_reg = 0,                   \
277                 .mux_bit = -1,                          \
278                 .pull_bit = pull,                       \
279                 .drv_bit = drv,                         \
280                 .oe_bit = -1,                           \
281                 .in_bit = -1,                           \
282                 .out_bit = -1,                          \
283                 .intr_enable_bit = -1,                  \
284                 .intr_status_bit = -1,                  \
285                 .intr_target_bit = -1,                  \
286                 .intr_raw_status_bit = -1,              \
287                 .intr_polarity_bit = -1,                \
288                 .intr_detection_bit = -1,               \
289                 .intr_detection_width = -1,             \
290         }
291
292 enum apq8064_functions {
293         APQ_MUX_cam_mclk,
294         APQ_MUX_codec_mic_i2s,
295         APQ_MUX_codec_spkr_i2s,
296         APQ_MUX_gsbi1,
297         APQ_MUX_gsbi2,
298         APQ_MUX_gsbi3,
299         APQ_MUX_gsbi4,
300         APQ_MUX_gsbi4_cam_i2c,
301         APQ_MUX_gsbi5,
302         APQ_MUX_gsbi5_spi_cs1,
303         APQ_MUX_gsbi5_spi_cs2,
304         APQ_MUX_gsbi5_spi_cs3,
305         APQ_MUX_gsbi6,
306         APQ_MUX_gsbi6_spi_cs1,
307         APQ_MUX_gsbi6_spi_cs2,
308         APQ_MUX_gsbi6_spi_cs3,
309         APQ_MUX_gsbi7,
310         APQ_MUX_gsbi7_spi_cs1,
311         APQ_MUX_gsbi7_spi_cs2,
312         APQ_MUX_gsbi7_spi_cs3,
313         APQ_MUX_gsbi_cam_i2c,
314         APQ_MUX_hdmi,
315         APQ_MUX_mi2s,
316         APQ_MUX_riva_bt,
317         APQ_MUX_riva_fm,
318         APQ_MUX_riva_wlan,
319         APQ_MUX_sdc2,
320         APQ_MUX_sdc4,
321         APQ_MUX_slimbus,
322         APQ_MUX_spkr_i2s,
323         APQ_MUX_tsif1,
324         APQ_MUX_tsif2,
325         APQ_MUX_usb2_hsic,
326         APQ_MUX_NA,
327 };
328
329 static const char * const cam_mclk_groups[] = {
330         "gpio4" "gpio5"
331 };
332 static const char * const codec_mic_i2s_groups[] = {
333         "gpio34", "gpio35", "gpio36", "gpio37", "gpio38"
334 };
335 static const char * const codec_spkr_i2s_groups[] = {
336         "gpio39", "gpio40", "gpio41", "gpio42"
337 };
338 static const char * const gsbi1_groups[] = {
339         "gpio18", "gpio19", "gpio20", "gpio21"
340 };
341 static const char * const gsbi2_groups[] = {
342         "gpio22", "gpio23", "gpio24", "gpio25"
343 };
344 static const char * const gsbi3_groups[] = {
345         "gpio6", "gpio7", "gpio8", "gpio9"
346 };
347 static const char * const gsbi4_groups[] = {
348         "gpio10", "gpio11", "gpio12", "gpio13"
349 };
350 static const char * const gsbi4_cam_i2c_groups[] = {
351         "gpio10", "gpio11", "gpio12", "gpio13"
352 };
353 static const char * const gsbi5_groups[] = {
354         "gpio51", "gpio52", "gpio53", "gpio54"
355 };
356 static const char * const gsbi5_spi_cs1_groups[] = {
357         "gpio47"
358 };
359 static const char * const gsbi5_spi_cs2_groups[] = {
360         "gpio31"
361 };
362 static const char * const gsbi5_spi_cs3_groups[] = {
363         "gpio32"
364 };
365 static const char * const gsbi6_groups[] = {
366         "gpio14", "gpio15", "gpio16", "gpio17"
367 };
368 static const char * const gsbi6_spi_cs1_groups[] = {
369         "gpio47"
370 };
371 static const char * const gsbi6_spi_cs2_groups[] = {
372         "gpio31"
373 };
374 static const char * const gsbi6_spi_cs3_groups[] = {
375         "gpio32"
376 };
377 static const char * const gsbi7_groups[] = {
378         "gpio82", "gpio83", "gpio84", "gpio85"
379 };
380 static const char * const gsbi7_spi_cs1_groups[] = {
381         "gpio47"
382 };
383 static const char * const gsbi7_spi_cs2_groups[] = {
384         "gpio31"
385 };
386 static const char * const gsbi7_spi_cs3_groups[] = {
387         "gpio32"
388 };
389 static const char * const gsbi_cam_i2c_groups[] = {
390         "gpio10", "gpio11", "gpio12", "gpio13"
391 };
392 static const char * const hdmi_groups[] = {
393         "gpio69", "gpio70", "gpio71", "gpio72"
394 };
395 static const char * const mi2s_groups[] = {
396         "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32", "gpio33"
397 };
398 static const char * const riva_bt_groups[] = {
399         "gpio16", "gpio17"
400 };
401 static const char * const riva_fm_groups[] = {
402         "gpio14", "gpio15"
403 };
404 static const char * const riva_wlan_groups[] = {
405         "gpio64", "gpio65", "gpio66", "gpio67", "gpio68"
406 };
407 static const char * const sdc2_groups[] = {
408         "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62"
409 };
410 static const char * const sdc4_groups[] = {
411         "gpio63", "gpio64", "gpio65", "gpio66", "gpio67", "gpio68"
412 };
413 static const char * const slimbus_groups[] = {
414         "gpio40", "gpio41"
415 };
416 static const char * const spkr_i2s_groups[] = {
417         "gpio47", "gpio48", "gpio49", "gpio50"
418 };
419 static const char * const tsif1_groups[] = {
420         "gpio55", "gpio56", "gpio57"
421 };
422 static const char * const tsif2_groups[] = {
423         "gpio58", "gpio59", "gpio60"
424 };
425 static const char * const usb2_hsic_groups[] = {
426         "gpio88", "gpio89"
427 };
428
429 static const struct msm_function apq8064_functions[] = {
430         FUNCTION(cam_mclk),
431         FUNCTION(codec_mic_i2s),
432         FUNCTION(codec_spkr_i2s),
433         FUNCTION(gsbi1),
434         FUNCTION(gsbi2),
435         FUNCTION(gsbi3),
436         FUNCTION(gsbi4),
437         FUNCTION(gsbi4_cam_i2c),
438         FUNCTION(gsbi5),
439         FUNCTION(gsbi5_spi_cs1),
440         FUNCTION(gsbi5_spi_cs2),
441         FUNCTION(gsbi5_spi_cs3),
442         FUNCTION(gsbi6),
443         FUNCTION(gsbi6_spi_cs1),
444         FUNCTION(gsbi6_spi_cs2),
445         FUNCTION(gsbi6_spi_cs3),
446         FUNCTION(gsbi7),
447         FUNCTION(gsbi7_spi_cs1),
448         FUNCTION(gsbi7_spi_cs2),
449         FUNCTION(gsbi7_spi_cs3),
450         FUNCTION(gsbi_cam_i2c),
451         FUNCTION(hdmi),
452         FUNCTION(mi2s),
453         FUNCTION(riva_bt),
454         FUNCTION(riva_fm),
455         FUNCTION(riva_wlan),
456         FUNCTION(sdc2),
457         FUNCTION(sdc4),
458         FUNCTION(slimbus),
459         FUNCTION(spkr_i2s),
460         FUNCTION(tsif1),
461         FUNCTION(tsif2),
462         FUNCTION(usb2_hsic),
463 };
464
465 static const struct msm_pingroup apq8064_groups[] = {
466         PINGROUP(0, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
467         PINGROUP(1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
468         PINGROUP(2, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
469         PINGROUP(3, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
470         PINGROUP(4, NA, NA, cam_mclk, NA, NA, NA, NA, NA, NA, NA),
471         PINGROUP(5, NA, cam_mclk, NA, NA, NA, NA, NA, NA, NA, NA),
472         PINGROUP(6, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
473         PINGROUP(7, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
474         PINGROUP(8, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
475         PINGROUP(9, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
476         PINGROUP(10, gsbi4, NA, NA, NA, NA, NA, NA, NA, gsbi4_cam_i2c, NA),
477         PINGROUP(11, gsbi4, NA, NA, NA, NA, NA, NA, NA, NA, gsbi4_cam_i2c),
478         PINGROUP(12, gsbi4, NA, NA, NA, NA, gsbi4_cam_i2c, NA, NA, NA, NA),
479         PINGROUP(13, gsbi4, NA, NA, NA, NA, gsbi4_cam_i2c, NA, NA, NA, NA),
480         PINGROUP(14, riva_fm, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
481         PINGROUP(15, riva_fm, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
482         PINGROUP(16, riva_bt, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
483         PINGROUP(17, riva_bt, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
484         PINGROUP(18, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
485         PINGROUP(19, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
486         PINGROUP(20, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
487         PINGROUP(21, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
488         PINGROUP(22, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
489         PINGROUP(23, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
490         PINGROUP(24, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
491         PINGROUP(25, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
492         PINGROUP(26, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
493         PINGROUP(27, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
494         PINGROUP(28, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
495         PINGROUP(29, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
496         PINGROUP(30, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
497         PINGROUP(31, mi2s, NA, gsbi5_spi_cs2, gsbi6_spi_cs2, gsbi7_spi_cs2, NA, NA, NA, NA, NA),
498         PINGROUP(32, mi2s, NA, NA, NA, NA, gsbi5_spi_cs3, gsbi6_spi_cs3, gsbi7_spi_cs3, NA, NA),
499         PINGROUP(33, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
500         PINGROUP(34, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
501         PINGROUP(35, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
502         PINGROUP(36, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
503         PINGROUP(37, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
504         PINGROUP(38, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
505         PINGROUP(39, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
506         PINGROUP(40, slimbus, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA),
507         PINGROUP(41, slimbus, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA),
508         PINGROUP(42, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
509         PINGROUP(43, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
510         PINGROUP(44, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
511         PINGROUP(45, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
512         PINGROUP(46, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
513         PINGROUP(47, spkr_i2s, gsbi5_spi_cs1, gsbi6_spi_cs1, gsbi7_spi_cs1, NA, NA, NA, NA, NA, NA),
514         PINGROUP(48, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
515         PINGROUP(49, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
516         PINGROUP(50, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
517         PINGROUP(51, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
518         PINGROUP(52, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
519         PINGROUP(53, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
520         PINGROUP(54, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
521         PINGROUP(55, tsif1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
522         PINGROUP(56, tsif1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
523         PINGROUP(57, tsif1, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
524         PINGROUP(58, tsif2, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
525         PINGROUP(59, tsif2, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
526         PINGROUP(60, tsif2, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
527         PINGROUP(61, NA, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
528         PINGROUP(62, NA, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
529         PINGROUP(63, NA, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
530         PINGROUP(64, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
531         PINGROUP(65, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
532         PINGROUP(66, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
533         PINGROUP(67, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
534         PINGROUP(68, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
535         PINGROUP(69, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
536         PINGROUP(70, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
537         PINGROUP(71, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
538         PINGROUP(72, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
539         PINGROUP(73, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
540         PINGROUP(74, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
541         PINGROUP(75, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
542         PINGROUP(76, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
543         PINGROUP(77, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
544         PINGROUP(78, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
545         PINGROUP(79, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
546         PINGROUP(80, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
547         PINGROUP(81, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
548         PINGROUP(82, NA, gsbi7, NA, NA, NA, NA, NA, NA, NA, NA),
549         PINGROUP(83, gsbi7, NA, NA, NA, NA, NA, NA, NA, NA, NA),
550         PINGROUP(84, NA, gsbi7, NA, NA, NA, NA, NA, NA, NA, NA),
551         PINGROUP(85, NA, NA, gsbi7, NA, NA, NA, NA, NA, NA, NA),
552         PINGROUP(86, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
553         PINGROUP(87, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
554         PINGROUP(88, usb2_hsic, NA, NA, NA, NA, NA, NA, NA, NA, NA),
555         PINGROUP(89, usb2_hsic, NA, NA, NA, NA, NA, NA, NA, NA, NA),
556
557         SDC_PINGROUP(sdc1_clk, 0x20a0, 13, 6),
558         SDC_PINGROUP(sdc1_cmd, 0x20a0, 11, 3),
559         SDC_PINGROUP(sdc1_data, 0x20a0, 9, 0),
560
561         SDC_PINGROUP(sdc3_clk, 0x20a4, 14, 6),
562         SDC_PINGROUP(sdc3_cmd, 0x20a4, 11, 3),
563         SDC_PINGROUP(sdc3_data, 0x20a4, 9, 0),
564 };
565
566 #define NUM_GPIO_PINGROUPS 90
567
568 static const struct msm_pinctrl_soc_data apq8064_pinctrl = {
569         .pins = apq8064_pins,
570         .npins = ARRAY_SIZE(apq8064_pins),
571         .functions = apq8064_functions,
572         .nfunctions = ARRAY_SIZE(apq8064_functions),
573         .groups = apq8064_groups,
574         .ngroups = ARRAY_SIZE(apq8064_groups),
575         .ngpios = NUM_GPIO_PINGROUPS,
576 };
577
578 static int apq8064_pinctrl_probe(struct platform_device *pdev)
579 {
580         return msm_pinctrl_probe(pdev, &apq8064_pinctrl);
581 }
582
583 static const struct of_device_id apq8064_pinctrl_of_match[] = {
584         { .compatible = "qcom,apq8064-pinctrl", },
585         { },
586 };
587
588 static struct platform_driver apq8064_pinctrl_driver = {
589         .driver = {
590                 .name = "apq8064-pinctrl",
591                 .owner = THIS_MODULE,
592                 .of_match_table = apq8064_pinctrl_of_match,
593         },
594         .probe = apq8064_pinctrl_probe,
595         .remove = msm_pinctrl_remove,
596 };
597
598 static int __init apq8064_pinctrl_init(void)
599 {
600         return platform_driver_register(&apq8064_pinctrl_driver);
601 }
602 arch_initcall(apq8064_pinctrl_init);
603
604 static void __exit apq8064_pinctrl_exit(void)
605 {
606         platform_driver_unregister(&apq8064_pinctrl_driver);
607 }
608 module_exit(apq8064_pinctrl_exit);
609
610 MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@sonymobile.com>");
611 MODULE_DESCRIPTION("Qualcomm APQ8064 pinctrl driver");
612 MODULE_LICENSE("GPL v2");
613 MODULE_DEVICE_TABLE(of, apq8064_pinctrl_of_match);