1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2018, The Linux Foundation. All rights reserved.
4 */
5
6#include <linux/module.h>
7#include <linux/of.h>
8#include <linux/platform_device.h>
9#include <linux/pinctrl/pinctrl.h>
10
11#include "pinctrl-msm.h"
12
13static const char * const qcs404_tiles[] = {
14	"north",
15	"south",
16	"east"
17};
18
19enum {
20	NORTH,
21	SOUTH,
22	EAST
23};
24
25#define FUNCTION(fname)					\
26	[msm_mux_##fname] = {				\
27		.name = #fname,				\
28		.groups = fname##_groups,		\
29		.ngroups = ARRAY_SIZE(fname##_groups),	\
30	}
31
32#define PINGROUP(id, _tile, f1, f2, f3, f4, f5, f6, f7, f8, f9)	\
33	{						\
34		.name = "gpio" #id,			\
35		.pins = gpio##id##_pins,		\
36		.npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins),	\
37		.funcs = (int[]){			\
38			msm_mux_gpio, /* gpio mode */	\
39			msm_mux_##f1,			\
40			msm_mux_##f2,			\
41			msm_mux_##f3,			\
42			msm_mux_##f4,			\
43			msm_mux_##f5,			\
44			msm_mux_##f6,			\
45			msm_mux_##f7,			\
46			msm_mux_##f8,			\
47			msm_mux_##f9			\
48		},					\
49		.nfuncs = 10,				\
50		.ctl_reg = 0x1000 * id,		\
51		.io_reg = 0x1000 * id + 0x4,		\
52		.intr_cfg_reg = 0x1000 * id + 0x8,	\
53		.intr_status_reg = 0x1000 * id + 0xc,	\
54		.intr_target_reg = 0x1000 * id + 0x8,	\
55		.tile = _tile,			\
56		.mux_bit = 2,			\
57		.pull_bit = 0,			\
58		.drv_bit = 6,			\
59		.oe_bit = 9,			\
60		.in_bit = 0,			\
61		.out_bit = 1,			\
62		.intr_enable_bit = 0,		\
63		.intr_status_bit = 0,		\
64		.intr_target_bit = 5,		\
65		.intr_target_kpss_val = 4,	\
66		.intr_raw_status_bit = 4,	\
67		.intr_polarity_bit = 1,		\
68		.intr_detection_bit = 2,	\
69		.intr_detection_width = 2,	\
70	}
71
72#define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv)	\
73	{						\
74		.name = #pg_name,			\
75		.pins = pg_name##_pins,			\
76		.npins = (unsigned int)ARRAY_SIZE(pg_name##_pins),	\
77		.ctl_reg = ctl,				\
78		.io_reg = 0,				\
79		.intr_cfg_reg = 0,			\
80		.intr_status_reg = 0,			\
81		.intr_target_reg = 0,			\
82		.tile = SOUTH,				\
83		.mux_bit = -1,				\
84		.pull_bit = pull,			\
85		.drv_bit = drv,				\
86		.oe_bit = -1,				\
87		.in_bit = -1,				\
88		.out_bit = -1,				\
89		.intr_enable_bit = -1,			\
90		.intr_status_bit = -1,			\
91		.intr_target_bit = -1,			\
92		.intr_raw_status_bit = -1,		\
93		.intr_polarity_bit = -1,		\
94		.intr_detection_bit = -1,		\
95		.intr_detection_width = -1,		\
96	}
97
98static const struct pinctrl_pin_desc qcs404_pins[] = {
99	PINCTRL_PIN(0, "GPIO_0"),
100	PINCTRL_PIN(1, "GPIO_1"),
101	PINCTRL_PIN(2, "GPIO_2"),
102	PINCTRL_PIN(3, "GPIO_3"),
103	PINCTRL_PIN(4, "GPIO_4"),
104	PINCTRL_PIN(5, "GPIO_5"),
105	PINCTRL_PIN(6, "GPIO_6"),
106	PINCTRL_PIN(7, "GPIO_7"),
107	PINCTRL_PIN(8, "GPIO_8"),
108	PINCTRL_PIN(9, "GPIO_9"),
109	PINCTRL_PIN(10, "GPIO_10"),
110	PINCTRL_PIN(11, "GPIO_11"),
111	PINCTRL_PIN(12, "GPIO_12"),
112	PINCTRL_PIN(13, "GPIO_13"),
113	PINCTRL_PIN(14, "GPIO_14"),
114	PINCTRL_PIN(15, "GPIO_15"),
115	PINCTRL_PIN(16, "GPIO_16"),
116	PINCTRL_PIN(17, "GPIO_17"),
117	PINCTRL_PIN(18, "GPIO_18"),
118	PINCTRL_PIN(19, "GPIO_19"),
119	PINCTRL_PIN(20, "GPIO_20"),
120	PINCTRL_PIN(21, "GPIO_21"),
121	PINCTRL_PIN(22, "GPIO_22"),
122	PINCTRL_PIN(23, "GPIO_23"),
123	PINCTRL_PIN(24, "GPIO_24"),
124	PINCTRL_PIN(25, "GPIO_25"),
125	PINCTRL_PIN(26, "GPIO_26"),
126	PINCTRL_PIN(27, "GPIO_27"),
127	PINCTRL_PIN(28, "GPIO_28"),
128	PINCTRL_PIN(29, "GPIO_29"),
129	PINCTRL_PIN(30, "GPIO_30"),
130	PINCTRL_PIN(31, "GPIO_31"),
131	PINCTRL_PIN(32, "GPIO_32"),
132	PINCTRL_PIN(33, "GPIO_33"),
133	PINCTRL_PIN(34, "GPIO_34"),
134	PINCTRL_PIN(35, "GPIO_35"),
135	PINCTRL_PIN(36, "GPIO_36"),
136	PINCTRL_PIN(37, "GPIO_37"),
137	PINCTRL_PIN(38, "GPIO_38"),
138	PINCTRL_PIN(39, "GPIO_39"),
139	PINCTRL_PIN(40, "GPIO_40"),
140	PINCTRL_PIN(41, "GPIO_41"),
141	PINCTRL_PIN(42, "GPIO_42"),
142	PINCTRL_PIN(43, "GPIO_43"),
143	PINCTRL_PIN(44, "GPIO_44"),
144	PINCTRL_PIN(45, "GPIO_45"),
145	PINCTRL_PIN(46, "GPIO_46"),
146	PINCTRL_PIN(47, "GPIO_47"),
147	PINCTRL_PIN(48, "GPIO_48"),
148	PINCTRL_PIN(49, "GPIO_49"),
149	PINCTRL_PIN(50, "GPIO_50"),
150	PINCTRL_PIN(51, "GPIO_51"),
151	PINCTRL_PIN(52, "GPIO_52"),
152	PINCTRL_PIN(53, "GPIO_53"),
153	PINCTRL_PIN(54, "GPIO_54"),
154	PINCTRL_PIN(55, "GPIO_55"),
155	PINCTRL_PIN(56, "GPIO_56"),
156	PINCTRL_PIN(57, "GPIO_57"),
157	PINCTRL_PIN(58, "GPIO_58"),
158	PINCTRL_PIN(59, "GPIO_59"),
159	PINCTRL_PIN(60, "GPIO_60"),
160	PINCTRL_PIN(61, "GPIO_61"),
161	PINCTRL_PIN(62, "GPIO_62"),
162	PINCTRL_PIN(63, "GPIO_63"),
163	PINCTRL_PIN(64, "GPIO_64"),
164	PINCTRL_PIN(65, "GPIO_65"),
165	PINCTRL_PIN(66, "GPIO_66"),
166	PINCTRL_PIN(67, "GPIO_67"),
167	PINCTRL_PIN(68, "GPIO_68"),
168	PINCTRL_PIN(69, "GPIO_69"),
169	PINCTRL_PIN(70, "GPIO_70"),
170	PINCTRL_PIN(71, "GPIO_71"),
171	PINCTRL_PIN(72, "GPIO_72"),
172	PINCTRL_PIN(73, "GPIO_73"),
173	PINCTRL_PIN(74, "GPIO_74"),
174	PINCTRL_PIN(75, "GPIO_75"),
175	PINCTRL_PIN(76, "GPIO_76"),
176	PINCTRL_PIN(77, "GPIO_77"),
177	PINCTRL_PIN(78, "GPIO_78"),
178	PINCTRL_PIN(79, "GPIO_79"),
179	PINCTRL_PIN(80, "GPIO_80"),
180	PINCTRL_PIN(81, "GPIO_81"),
181	PINCTRL_PIN(82, "GPIO_82"),
182	PINCTRL_PIN(83, "GPIO_83"),
183	PINCTRL_PIN(84, "GPIO_84"),
184	PINCTRL_PIN(85, "GPIO_85"),
185	PINCTRL_PIN(86, "GPIO_86"),
186	PINCTRL_PIN(87, "GPIO_87"),
187	PINCTRL_PIN(88, "GPIO_88"),
188	PINCTRL_PIN(89, "GPIO_89"),
189	PINCTRL_PIN(90, "GPIO_90"),
190	PINCTRL_PIN(91, "GPIO_91"),
191	PINCTRL_PIN(92, "GPIO_92"),
192	PINCTRL_PIN(93, "GPIO_93"),
193	PINCTRL_PIN(94, "GPIO_94"),
194	PINCTRL_PIN(95, "GPIO_95"),
195	PINCTRL_PIN(96, "GPIO_96"),
196	PINCTRL_PIN(97, "GPIO_97"),
197	PINCTRL_PIN(98, "GPIO_98"),
198	PINCTRL_PIN(99, "GPIO_99"),
199	PINCTRL_PIN(100, "GPIO_100"),
200	PINCTRL_PIN(101, "GPIO_101"),
201	PINCTRL_PIN(102, "GPIO_102"),
202	PINCTRL_PIN(103, "GPIO_103"),
203	PINCTRL_PIN(104, "GPIO_104"),
204	PINCTRL_PIN(105, "GPIO_105"),
205	PINCTRL_PIN(106, "GPIO_106"),
206	PINCTRL_PIN(107, "GPIO_107"),
207	PINCTRL_PIN(108, "GPIO_108"),
208	PINCTRL_PIN(109, "GPIO_109"),
209	PINCTRL_PIN(110, "GPIO_110"),
210	PINCTRL_PIN(111, "GPIO_111"),
211	PINCTRL_PIN(112, "GPIO_112"),
212	PINCTRL_PIN(113, "GPIO_113"),
213	PINCTRL_PIN(114, "GPIO_114"),
214	PINCTRL_PIN(115, "GPIO_115"),
215	PINCTRL_PIN(116, "GPIO_116"),
216	PINCTRL_PIN(117, "GPIO_117"),
217	PINCTRL_PIN(118, "GPIO_118"),
218	PINCTRL_PIN(119, "GPIO_119"),
219	PINCTRL_PIN(120, "SDC1_RCLK"),
220	PINCTRL_PIN(121, "SDC1_CLK"),
221	PINCTRL_PIN(122, "SDC1_CMD"),
222	PINCTRL_PIN(123, "SDC1_DATA"),
223	PINCTRL_PIN(124, "SDC2_CLK"),
224	PINCTRL_PIN(125, "SDC2_CMD"),
225	PINCTRL_PIN(126, "SDC2_DATA"),
226};
227
228#define DECLARE_MSM_GPIO_PINS(pin) \
229	static const unsigned int gpio##pin##_pins[] = { pin }
230DECLARE_MSM_GPIO_PINS(0);
231DECLARE_MSM_GPIO_PINS(1);
232DECLARE_MSM_GPIO_PINS(2);
233DECLARE_MSM_GPIO_PINS(3);
234DECLARE_MSM_GPIO_PINS(4);
235DECLARE_MSM_GPIO_PINS(5);
236DECLARE_MSM_GPIO_PINS(6);
237DECLARE_MSM_GPIO_PINS(7);
238DECLARE_MSM_GPIO_PINS(8);
239DECLARE_MSM_GPIO_PINS(9);
240DECLARE_MSM_GPIO_PINS(10);
241DECLARE_MSM_GPIO_PINS(11);
242DECLARE_MSM_GPIO_PINS(12);
243DECLARE_MSM_GPIO_PINS(13);
244DECLARE_MSM_GPIO_PINS(14);
245DECLARE_MSM_GPIO_PINS(15);
246DECLARE_MSM_GPIO_PINS(16);
247DECLARE_MSM_GPIO_PINS(17);
248DECLARE_MSM_GPIO_PINS(18);
249DECLARE_MSM_GPIO_PINS(19);
250DECLARE_MSM_GPIO_PINS(20);
251DECLARE_MSM_GPIO_PINS(21);
252DECLARE_MSM_GPIO_PINS(22);
253DECLARE_MSM_GPIO_PINS(23);
254DECLARE_MSM_GPIO_PINS(24);
255DECLARE_MSM_GPIO_PINS(25);
256DECLARE_MSM_GPIO_PINS(26);
257DECLARE_MSM_GPIO_PINS(27);
258DECLARE_MSM_GPIO_PINS(28);
259DECLARE_MSM_GPIO_PINS(29);
260DECLARE_MSM_GPIO_PINS(30);
261DECLARE_MSM_GPIO_PINS(31);
262DECLARE_MSM_GPIO_PINS(32);
263DECLARE_MSM_GPIO_PINS(33);
264DECLARE_MSM_GPIO_PINS(34);
265DECLARE_MSM_GPIO_PINS(35);
266DECLARE_MSM_GPIO_PINS(36);
267DECLARE_MSM_GPIO_PINS(37);
268DECLARE_MSM_GPIO_PINS(38);
269DECLARE_MSM_GPIO_PINS(39);
270DECLARE_MSM_GPIO_PINS(40);
271DECLARE_MSM_GPIO_PINS(41);
272DECLARE_MSM_GPIO_PINS(42);
273DECLARE_MSM_GPIO_PINS(43);
274DECLARE_MSM_GPIO_PINS(44);
275DECLARE_MSM_GPIO_PINS(45);
276DECLARE_MSM_GPIO_PINS(46);
277DECLARE_MSM_GPIO_PINS(47);
278DECLARE_MSM_GPIO_PINS(48);
279DECLARE_MSM_GPIO_PINS(49);
280DECLARE_MSM_GPIO_PINS(50);
281DECLARE_MSM_GPIO_PINS(51);
282DECLARE_MSM_GPIO_PINS(52);
283DECLARE_MSM_GPIO_PINS(53);
284DECLARE_MSM_GPIO_PINS(54);
285DECLARE_MSM_GPIO_PINS(55);
286DECLARE_MSM_GPIO_PINS(56);
287DECLARE_MSM_GPIO_PINS(57);
288DECLARE_MSM_GPIO_PINS(58);
289DECLARE_MSM_GPIO_PINS(59);
290DECLARE_MSM_GPIO_PINS(60);
291DECLARE_MSM_GPIO_PINS(61);
292DECLARE_MSM_GPIO_PINS(62);
293DECLARE_MSM_GPIO_PINS(63);
294DECLARE_MSM_GPIO_PINS(64);
295DECLARE_MSM_GPIO_PINS(65);
296DECLARE_MSM_GPIO_PINS(66);
297DECLARE_MSM_GPIO_PINS(67);
298DECLARE_MSM_GPIO_PINS(68);
299DECLARE_MSM_GPIO_PINS(69);
300DECLARE_MSM_GPIO_PINS(70);
301DECLARE_MSM_GPIO_PINS(71);
302DECLARE_MSM_GPIO_PINS(72);
303DECLARE_MSM_GPIO_PINS(73);
304DECLARE_MSM_GPIO_PINS(74);
305DECLARE_MSM_GPIO_PINS(75);
306DECLARE_MSM_GPIO_PINS(76);
307DECLARE_MSM_GPIO_PINS(77);
308DECLARE_MSM_GPIO_PINS(78);
309DECLARE_MSM_GPIO_PINS(79);
310DECLARE_MSM_GPIO_PINS(80);
311DECLARE_MSM_GPIO_PINS(81);
312DECLARE_MSM_GPIO_PINS(82);
313DECLARE_MSM_GPIO_PINS(83);
314DECLARE_MSM_GPIO_PINS(84);
315DECLARE_MSM_GPIO_PINS(85);
316DECLARE_MSM_GPIO_PINS(86);
317DECLARE_MSM_GPIO_PINS(87);
318DECLARE_MSM_GPIO_PINS(88);
319DECLARE_MSM_GPIO_PINS(89);
320DECLARE_MSM_GPIO_PINS(90);
321DECLARE_MSM_GPIO_PINS(91);
322DECLARE_MSM_GPIO_PINS(92);
323DECLARE_MSM_GPIO_PINS(93);
324DECLARE_MSM_GPIO_PINS(94);
325DECLARE_MSM_GPIO_PINS(95);
326DECLARE_MSM_GPIO_PINS(96);
327DECLARE_MSM_GPIO_PINS(97);
328DECLARE_MSM_GPIO_PINS(98);
329DECLARE_MSM_GPIO_PINS(99);
330DECLARE_MSM_GPIO_PINS(100);
331DECLARE_MSM_GPIO_PINS(101);
332DECLARE_MSM_GPIO_PINS(102);
333DECLARE_MSM_GPIO_PINS(103);
334DECLARE_MSM_GPIO_PINS(104);
335DECLARE_MSM_GPIO_PINS(105);
336DECLARE_MSM_GPIO_PINS(106);
337DECLARE_MSM_GPIO_PINS(107);
338DECLARE_MSM_GPIO_PINS(108);
339DECLARE_MSM_GPIO_PINS(109);
340DECLARE_MSM_GPIO_PINS(110);
341DECLARE_MSM_GPIO_PINS(111);
342DECLARE_MSM_GPIO_PINS(112);
343DECLARE_MSM_GPIO_PINS(113);
344DECLARE_MSM_GPIO_PINS(114);
345DECLARE_MSM_GPIO_PINS(115);
346DECLARE_MSM_GPIO_PINS(116);
347DECLARE_MSM_GPIO_PINS(117);
348DECLARE_MSM_GPIO_PINS(118);
349DECLARE_MSM_GPIO_PINS(119);
350
351static const unsigned int sdc1_rclk_pins[] = { 120 };
352static const unsigned int sdc1_clk_pins[] = { 121 };
353static const unsigned int sdc1_cmd_pins[] = { 122 };
354static const unsigned int sdc1_data_pins[] = { 123 };
355static const unsigned int sdc2_clk_pins[] = { 124 };
356static const unsigned int sdc2_cmd_pins[] = { 125 };
357static const unsigned int sdc2_data_pins[] = { 126 };
358
359enum qcs404_functions {
360	msm_mux_gpio,
361	msm_mux_hdmi_tx,
362	msm_mux_hdmi_ddc,
363	msm_mux_blsp_uart_tx_a2,
364	msm_mux_blsp_spi2,
365	msm_mux_m_voc,
366	msm_mux_qdss_cti_trig_in_a0,
367	msm_mux_blsp_uart_rx_a2,
368	msm_mux_qdss_tracectl_a,
369	msm_mux_blsp_uart2,
370	msm_mux_aud_cdc,
371	msm_mux_blsp_i2c_sda_a2,
372	msm_mux_qdss_tracedata_a,
373	msm_mux_blsp_i2c_scl_a2,
374	msm_mux_qdss_tracectl_b,
375	msm_mux_qdss_cti_trig_in_b0,
376	msm_mux_blsp_uart1,
377	msm_mux_blsp_spi_mosi_a1,
378	msm_mux_blsp_spi_miso_a1,
379	msm_mux_qdss_tracedata_b,
380	msm_mux_blsp_i2c1,
381	msm_mux_blsp_spi_cs_n_a1,
382	msm_mux_gcc_plltest,
383	msm_mux_blsp_spi_clk_a1,
384	msm_mux_rgb_data0,
385	msm_mux_blsp_uart5,
386	msm_mux_blsp_spi5,
387	msm_mux_adsp_ext,
388	msm_mux_rgb_data1,
389	msm_mux_prng_rosc,
390	msm_mux_rgb_data2,
391	msm_mux_blsp_i2c5,
392	msm_mux_gcc_gp1_clk_b,
393	msm_mux_rgb_data3,
394	msm_mux_gcc_gp2_clk_b,
395	msm_mux_blsp_spi0,
396	msm_mux_blsp_uart0,
397	msm_mux_gcc_gp3_clk_b,
398	msm_mux_blsp_i2c0,
399	msm_mux_qdss_traceclk_b,
400	msm_mux_pcie_clk,
401	msm_mux_nfc_irq,
402	msm_mux_blsp_spi4,
403	msm_mux_nfc_dwl,
404	msm_mux_audio_ts,
405	msm_mux_rgb_data4,
406	msm_mux_spi_lcd,
407	msm_mux_blsp_uart_tx_b2,
408	msm_mux_gcc_gp3_clk_a,
409	msm_mux_rgb_data5,
410	msm_mux_blsp_uart_rx_b2,
411	msm_mux_blsp_i2c_sda_b2,
412	msm_mux_blsp_i2c_scl_b2,
413	msm_mux_pwm_led11,
414	msm_mux_i2s_3_data0_a,
415	msm_mux_ebi2_lcd,
416	msm_mux_i2s_3_data1_a,
417	msm_mux_i2s_3_data2_a,
418	msm_mux_atest_char,
419	msm_mux_pwm_led3,
420	msm_mux_i2s_3_data3_a,
421	msm_mux_pwm_led4,
422	msm_mux_i2s_4,
423	msm_mux_ebi2_a,
424	msm_mux_dsd_clk_b,
425	msm_mux_pwm_led5,
426	msm_mux_pwm_led6,
427	msm_mux_pwm_led7,
428	msm_mux_pwm_led8,
429	msm_mux_pwm_led24,
430	msm_mux_spkr_dac0,
431	msm_mux_blsp_i2c4,
432	msm_mux_pwm_led9,
433	msm_mux_pwm_led10,
434	msm_mux_spdifrx_opt,
435	msm_mux_pwm_led12,
436	msm_mux_pwm_led13,
437	msm_mux_pwm_led14,
438	msm_mux_wlan1_adc1,
439	msm_mux_rgb_data_b0,
440	msm_mux_pwm_led15,
441	msm_mux_blsp_spi_mosi_b1,
442	msm_mux_wlan1_adc0,
443	msm_mux_rgb_data_b1,
444	msm_mux_pwm_led16,
445	msm_mux_blsp_spi_miso_b1,
446	msm_mux_qdss_cti_trig_out_b0,
447	msm_mux_wlan2_adc1,
448	msm_mux_rgb_data_b2,
449	msm_mux_pwm_led17,
450	msm_mux_blsp_spi_cs_n_b1,
451	msm_mux_wlan2_adc0,
452	msm_mux_rgb_data_b3,
453	msm_mux_pwm_led18,
454	msm_mux_blsp_spi_clk_b1,
455	msm_mux_rgb_data_b4,
456	msm_mux_pwm_led19,
457	msm_mux_ext_mclk1_b,
458	msm_mux_qdss_traceclk_a,
459	msm_mux_rgb_data_b5,
460	msm_mux_pwm_led20,
461	msm_mux_atest_char3,
462	msm_mux_i2s_3_sck_b,
463	msm_mux_ldo_update,
464	msm_mux_bimc_dte0,
465	msm_mux_rgb_hsync,
466	msm_mux_pwm_led21,
467	msm_mux_i2s_3_ws_b,
468	msm_mux_dbg_out,
469	msm_mux_rgb_vsync,
470	msm_mux_i2s_3_data0_b,
471	msm_mux_ldo_en,
472	msm_mux_hdmi_dtest,
473	msm_mux_rgb_de,
474	msm_mux_i2s_3_data1_b,
475	msm_mux_hdmi_lbk9,
476	msm_mux_rgb_clk,
477	msm_mux_atest_char1,
478	msm_mux_i2s_3_data2_b,
479	msm_mux_ebi_cdc,
480	msm_mux_hdmi_lbk8,
481	msm_mux_rgb_mdp,
482	msm_mux_atest_char0,
483	msm_mux_i2s_3_data3_b,
484	msm_mux_hdmi_lbk7,
485	msm_mux_rgb_data_b6,
486	msm_mux_rgb_data_b7,
487	msm_mux_hdmi_lbk6,
488	msm_mux_rgmii_int,
489	msm_mux_cri_trng1,
490	msm_mux_rgmii_wol,
491	msm_mux_cri_trng0,
492	msm_mux_gcc_tlmm,
493	msm_mux_rgmii_ck,
494	msm_mux_rgmii_tx,
495	msm_mux_hdmi_lbk5,
496	msm_mux_hdmi_pixel,
497	msm_mux_hdmi_rcv,
498	msm_mux_hdmi_lbk4,
499	msm_mux_rgmii_ctl,
500	msm_mux_ext_lpass,
501	msm_mux_rgmii_rx,
502	msm_mux_cri_trng,
503	msm_mux_hdmi_lbk3,
504	msm_mux_hdmi_lbk2,
505	msm_mux_qdss_cti_trig_out_b1,
506	msm_mux_rgmii_mdio,
507	msm_mux_hdmi_lbk1,
508	msm_mux_rgmii_mdc,
509	msm_mux_hdmi_lbk0,
510	msm_mux_ir_in,
511	msm_mux_wsa_en,
512	msm_mux_rgb_data6,
513	msm_mux_rgb_data7,
514	msm_mux_atest_char2,
515	msm_mux_ebi_ch0,
516	msm_mux_blsp_uart3,
517	msm_mux_blsp_spi3,
518	msm_mux_sd_write,
519	msm_mux_blsp_i2c3,
520	msm_mux_gcc_gp1_clk_a,
521	msm_mux_qdss_cti_trig_in_b1,
522	msm_mux_gcc_gp2_clk_a,
523	msm_mux_ext_mclk0,
524	msm_mux_mclk_in1,
525	msm_mux_i2s_1,
526	msm_mux_dsd_clk_a,
527	msm_mux_qdss_cti_trig_in_a1,
528	msm_mux_rgmi_dll1,
529	msm_mux_pwm_led22,
530	msm_mux_pwm_led23,
531	msm_mux_qdss_cti_trig_out_a0,
532	msm_mux_rgmi_dll2,
533	msm_mux_pwm_led1,
534	msm_mux_qdss_cti_trig_out_a1,
535	msm_mux_pwm_led2,
536	msm_mux_i2s_2,
537	msm_mux_pll_bist,
538	msm_mux_ext_mclk1_a,
539	msm_mux_mclk_in2,
540	msm_mux_bimc_dte1,
541	msm_mux_i2s_3_sck_a,
542	msm_mux_i2s_3_ws_a,
543	msm_mux__,
544};
545
546static const char * const gpio_groups[] = {
547	"gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
548	"gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
549	"gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
550	"gpio21", "gpio21", "gpio22", "gpio22", "gpio23", "gpio23", "gpio24",
551	"gpio25", "gpio26", "gpio27", "gpio28", "gpio29", "gpio30", "gpio31",
552	"gpio32", "gpio33", "gpio34", "gpio35", "gpio36", "gpio36", "gpio36",
553	"gpio36", "gpio37", "gpio37", "gpio37", "gpio38", "gpio38", "gpio38",
554	"gpio39", "gpio39", "gpio40", "gpio40", "gpio41", "gpio41", "gpio41",
555	"gpio42", "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48",
556	"gpio49", "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55",
557	"gpio56", "gpio57", "gpio58", "gpio59", "gpio59", "gpio60", "gpio61",
558	"gpio62", "gpio63", "gpio64", "gpio65", "gpio66", "gpio67", "gpio68",
559	"gpio69", "gpio70", "gpio71", "gpio72", "gpio73", "gpio74", "gpio75",
560	"gpio76", "gpio77", "gpio77", "gpio78", "gpio78", "gpio78", "gpio79",
561	"gpio79", "gpio79", "gpio80", "gpio81", "gpio81", "gpio82", "gpio83",
562	"gpio84", "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90",
563	"gpio91", "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97",
564	"gpio98", "gpio99", "gpio100", "gpio101", "gpio102", "gpio103",
565	"gpio104", "gpio105", "gpio106", "gpio107", "gpio108", "gpio108",
566	"gpio108", "gpio109", "gpio109", "gpio110", "gpio111", "gpio112",
567	"gpio113", "gpio114", "gpio115", "gpio116", "gpio117", "gpio118",
568	"gpio119",
569};
570
571static const char * const hdmi_tx_groups[] = {
572	"gpio14",
573};
574
575static const char * const hdmi_ddc_groups[] = {
576	"gpio15", "gpio16",
577};
578
579static const char * const blsp_uart_tx_a2_groups[] = {
580	"gpio17",
581};
582
583static const char * const blsp_spi2_groups[] = {
584	"gpio17", "gpio18", "gpio19", "gpio20",
585};
586
587static const char * const m_voc_groups[] = {
588	"gpio17", "gpio21",
589};
590
591static const char * const qdss_cti_trig_in_a0_groups[] = {
592	"gpio17",
593};
594
595static const char * const blsp_uart_rx_a2_groups[] = {
596	"gpio18",
597};
598
599static const char * const qdss_tracectl_a_groups[] = {
600	"gpio18",
601};
602
603static const char * const blsp_uart2_groups[] = {
604	"gpio19", "gpio20",
605};
606
607static const char * const aud_cdc_groups[] = {
608	"gpio19", "gpio20",
609};
610
611static const char * const blsp_i2c_sda_a2_groups[] = {
612	"gpio19",
613};
614
615static const char * const qdss_tracedata_a_groups[] = {
616	"gpio19", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", "gpio30",
617	"gpio31", "gpio32", "gpio36", "gpio38", "gpio39", "gpio42", "gpio43",
618	"gpio82", "gpio83",
619};
620
621static const char * const blsp_i2c_scl_a2_groups[] = {
622	"gpio20",
623};
624
625static const char * const qdss_tracectl_b_groups[] = {
626	"gpio20",
627};
628
629static const char * const qdss_cti_trig_in_b0_groups[] = {
630	"gpio21",
631};
632
633static const char * const blsp_uart1_groups[] = {
634	"gpio22", "gpio23", "gpio24", "gpio25",
635};
636
637static const char * const blsp_spi_mosi_a1_groups[] = {
638	"gpio22",
639};
640
641static const char * const blsp_spi_miso_a1_groups[] = {
642	"gpio23",
643};
644
645static const char * const qdss_tracedata_b_groups[] = {
646	"gpio23", "gpio35", "gpio40", "gpio41", "gpio44", "gpio45", "gpio46",
647	"gpio47", "gpio49", "gpio50", "gpio55", "gpio61", "gpio62", "gpio85",
648	"gpio89", "gpio93",
649};
650
651static const char * const blsp_i2c1_groups[] = {
652	"gpio24", "gpio25",
653};
654
655static const char * const blsp_spi_cs_n_a1_groups[] = {
656	"gpio24",
657};
658
659static const char * const gcc_plltest_groups[] = {
660	"gpio24", "gpio25",
661};
662
663static const char * const blsp_spi_clk_a1_groups[] = {
664	"gpio25",
665};
666
667static const char * const rgb_data0_groups[] = {
668	"gpio26", "gpio41",
669};
670
671static const char * const blsp_uart5_groups[] = {
672	"gpio26", "gpio27", "gpio28", "gpio29",
673};
674
675static const char * const blsp_spi5_groups[] = {
676	"gpio26", "gpio27", "gpio28", "gpio29", "gpio44", "gpio45", "gpio46",
677};
678
679static const char * const adsp_ext_groups[] = {
680	"gpio26",
681};
682
683static const char * const rgb_data1_groups[] = {
684	"gpio27", "gpio42",
685};
686
687static const char * const prng_rosc_groups[] = {
688	"gpio27",
689};
690
691static const char * const rgb_data2_groups[] = {
692	"gpio28", "gpio43",
693};
694
695static const char * const blsp_i2c5_groups[] = {
696	"gpio28", "gpio29",
697};
698
699static const char * const gcc_gp1_clk_b_groups[] = {
700	"gpio28",
701};
702
703static const char * const rgb_data3_groups[] = {
704	"gpio29", "gpio44",
705};
706
707static const char * const gcc_gp2_clk_b_groups[] = {
708	"gpio29",
709};
710
711static const char * const blsp_spi0_groups[] = {
712	"gpio30", "gpio31", "gpio32", "gpio33",
713};
714
715static const char * const blsp_uart0_groups[] = {
716	"gpio30", "gpio31", "gpio32", "gpio33",
717};
718
719static const char * const gcc_gp3_clk_b_groups[] = {
720	"gpio30",
721};
722
723static const char * const blsp_i2c0_groups[] = {
724	"gpio32", "gpio33",
725};
726
727static const char * const qdss_traceclk_b_groups[] = {
728	"gpio34",
729};
730
731static const char * const pcie_clk_groups[] = {
732	"gpio35",
733};
734
735static const char * const nfc_irq_groups[] = {
736	"gpio37",
737};
738
739static const char * const blsp_spi4_groups[] = {
740	"gpio37", "gpio38", "gpio117", "gpio118",
741};
742
743static const char * const nfc_dwl_groups[] = {
744	"gpio38",
745};
746
747static const char * const audio_ts_groups[] = {
748	"gpio38",
749};
750
751static const char * const rgb_data4_groups[] = {
752	"gpio39", "gpio45",
753};
754
755static const char * const spi_lcd_groups[] = {
756	"gpio39", "gpio40",
757};
758
759static const char * const blsp_uart_tx_b2_groups[] = {
760	"gpio39",
761};
762
763static const char * const gcc_gp3_clk_a_groups[] = {
764	"gpio39",
765};
766
767static const char * const rgb_data5_groups[] = {
768	"gpio40", "gpio46",
769};
770
771static const char * const blsp_uart_rx_b2_groups[] = {
772	"gpio40",
773};
774
775static const char * const blsp_i2c_sda_b2_groups[] = {
776	"gpio41",
777};
778
779static const char * const blsp_i2c_scl_b2_groups[] = {
780	"gpio42",
781};
782
783static const char * const pwm_led11_groups[] = {
784	"gpio43",
785};
786
787static const char * const i2s_3_data0_a_groups[] = {
788	"gpio106",
789};
790
791static const char * const ebi2_lcd_groups[] = {
792	"gpio106", "gpio107", "gpio108", "gpio109",
793};
794
795static const char * const i2s_3_data1_a_groups[] = {
796	"gpio107",
797};
798
799static const char * const i2s_3_data2_a_groups[] = {
800	"gpio108",
801};
802
803static const char * const atest_char_groups[] = {
804	"gpio108",
805};
806
807static const char * const pwm_led3_groups[] = {
808	"gpio108",
809};
810
811static const char * const i2s_3_data3_a_groups[] = {
812	"gpio109",
813};
814
815static const char * const pwm_led4_groups[] = {
816	"gpio109",
817};
818
819static const char * const i2s_4_groups[] = {
820	"gpio110", "gpio111", "gpio111", "gpio112", "gpio112", "gpio113",
821	"gpio113", "gpio114", "gpio114", "gpio115", "gpio115", "gpio116",
822};
823
824static const char * const ebi2_a_groups[] = {
825	"gpio110",
826};
827
828static const char * const dsd_clk_b_groups[] = {
829	"gpio110",
830};
831
832static const char * const pwm_led5_groups[] = {
833	"gpio110",
834};
835
836static const char * const pwm_led6_groups[] = {
837	"gpio111",
838};
839
840static const char * const pwm_led7_groups[] = {
841	"gpio112",
842};
843
844static const char * const pwm_led8_groups[] = {
845	"gpio113",
846};
847
848static const char * const pwm_led24_groups[] = {
849	"gpio114",
850};
851
852static const char * const spkr_dac0_groups[] = {
853	"gpio116",
854};
855
856static const char * const blsp_i2c4_groups[] = {
857	"gpio117", "gpio118",
858};
859
860static const char * const pwm_led9_groups[] = {
861	"gpio117",
862};
863
864static const char * const pwm_led10_groups[] = {
865	"gpio118",
866};
867
868static const char * const spdifrx_opt_groups[] = {
869	"gpio119",
870};
871
872static const char * const pwm_led12_groups[] = {
873	"gpio44",
874};
875
876static const char * const pwm_led13_groups[] = {
877	"gpio45",
878};
879
880static const char * const pwm_led14_groups[] = {
881	"gpio46",
882};
883
884static const char * const wlan1_adc1_groups[] = {
885	"gpio46",
886};
887
888static const char * const rgb_data_b0_groups[] = {
889	"gpio47",
890};
891
892static const char * const pwm_led15_groups[] = {
893	"gpio47",
894};
895
896static const char * const blsp_spi_mosi_b1_groups[] = {
897	"gpio47",
898};
899
900static const char * const wlan1_adc0_groups[] = {
901	"gpio47",
902};
903
904static const char * const rgb_data_b1_groups[] = {
905	"gpio48",
906};
907
908static const char * const pwm_led16_groups[] = {
909	"gpio48",
910};
911
912static const char * const blsp_spi_miso_b1_groups[] = {
913	"gpio48",
914};
915
916static const char * const qdss_cti_trig_out_b0_groups[] = {
917	"gpio48",
918};
919
920static const char * const wlan2_adc1_groups[] = {
921	"gpio48",
922};
923
924static const char * const rgb_data_b2_groups[] = {
925	"gpio49",
926};
927
928static const char * const pwm_led17_groups[] = {
929	"gpio49",
930};
931
932static const char * const blsp_spi_cs_n_b1_groups[] = {
933	"gpio49",
934};
935
936static const char * const wlan2_adc0_groups[] = {
937	"gpio49",
938};
939
940static const char * const rgb_data_b3_groups[] = {
941	"gpio50",
942};
943
944static const char * const pwm_led18_groups[] = {
945	"gpio50",
946};
947
948static const char * const blsp_spi_clk_b1_groups[] = {
949	"gpio50",
950};
951
952static const char * const rgb_data_b4_groups[] = {
953	"gpio51",
954};
955
956static const char * const pwm_led19_groups[] = {
957	"gpio51",
958};
959
960static const char * const ext_mclk1_b_groups[] = {
961	"gpio51",
962};
963
964static const char * const qdss_traceclk_a_groups[] = {
965	"gpio51",
966};
967
968static const char * const rgb_data_b5_groups[] = {
969	"gpio52",
970};
971
972static const char * const pwm_led20_groups[] = {
973	"gpio52",
974};
975
976static const char * const atest_char3_groups[] = {
977	"gpio52",
978};
979
980static const char * const i2s_3_sck_b_groups[] = {
981	"gpio52",
982};
983
984static const char * const ldo_update_groups[] = {
985	"gpio52",
986};
987
988static const char * const bimc_dte0_groups[] = {
989	"gpio52", "gpio54",
990};
991
992static const char * const rgb_hsync_groups[] = {
993	"gpio53",
994};
995
996static const char * const pwm_led21_groups[] = {
997	"gpio53",
998};
999
1000static const char * const i2s_3_ws_b_groups[] = {
1001	"gpio53",
1002};
1003
1004static const char * const dbg_out_groups[] = {
1005	"gpio53",
1006};
1007
1008static const char * const rgb_vsync_groups[] = {
1009	"gpio54",
1010};
1011
1012static const char * const i2s_3_data0_b_groups[] = {
1013	"gpio54",
1014};
1015
1016static const char * const ldo_en_groups[] = {
1017	"gpio54",
1018};
1019
1020static const char * const hdmi_dtest_groups[] = {
1021	"gpio54",
1022};
1023
1024static const char * const rgb_de_groups[] = {
1025	"gpio55",
1026};
1027
1028static const char * const i2s_3_data1_b_groups[] = {
1029	"gpio55",
1030};
1031
1032static const char * const hdmi_lbk9_groups[] = {
1033	"gpio55",
1034};
1035
1036static const char * const rgb_clk_groups[] = {
1037	"gpio56",
1038};
1039
1040static const char * const atest_char1_groups[] = {
1041	"gpio56",
1042};
1043
1044static const char * const i2s_3_data2_b_groups[] = {
1045	"gpio56",
1046};
1047
1048static const char * const ebi_cdc_groups[] = {
1049	"gpio56", "gpio58", "gpio106", "gpio107", "gpio108", "gpio111",
1050};
1051
1052static const char * const hdmi_lbk8_groups[] = {
1053	"gpio56",
1054};
1055
1056static const char * const rgb_mdp_groups[] = {
1057	"gpio57",
1058};
1059
1060static const char * const atest_char0_groups[] = {
1061	"gpio57",
1062};
1063
1064static const char * const i2s_3_data3_b_groups[] = {
1065	"gpio57",
1066};
1067
1068static const char * const hdmi_lbk7_groups[] = {
1069	"gpio57",
1070};
1071
1072static const char * const rgb_data_b6_groups[] = {
1073	"gpio58",
1074};
1075
1076static const char * const rgb_data_b7_groups[] = {
1077	"gpio59",
1078};
1079
1080static const char * const hdmi_lbk6_groups[] = {
1081	"gpio59",
1082};
1083
1084static const char * const rgmii_int_groups[] = {
1085	"gpio61",
1086};
1087
1088static const char * const cri_trng1_groups[] = {
1089	"gpio61",
1090};
1091
1092static const char * const rgmii_wol_groups[] = {
1093	"gpio62",
1094};
1095
1096static const char * const cri_trng0_groups[] = {
1097	"gpio62",
1098};
1099
1100static const char * const gcc_tlmm_groups[] = {
1101	"gpio62",
1102};
1103
1104static const char * const rgmii_ck_groups[] = {
1105	"gpio63", "gpio69",
1106};
1107
1108static const char * const rgmii_tx_groups[] = {
1109	"gpio64", "gpio65", "gpio66", "gpio67",
1110};
1111
1112static const char * const hdmi_lbk5_groups[] = {
1113	"gpio64",
1114};
1115
1116static const char * const hdmi_pixel_groups[] = {
1117	"gpio65",
1118};
1119
1120static const char * const hdmi_rcv_groups[] = {
1121	"gpio66",
1122};
1123
1124static const char * const hdmi_lbk4_groups[] = {
1125	"gpio67",
1126};
1127
1128static const char * const rgmii_ctl_groups[] = {
1129	"gpio68", "gpio74",
1130};
1131
1132static const char * const ext_lpass_groups[] = {
1133	"gpio69",
1134};
1135
1136static const char * const rgmii_rx_groups[] = {
1137	"gpio70", "gpio71", "gpio72", "gpio73",
1138};
1139
1140static const char * const cri_trng_groups[] = {
1141	"gpio70",
1142};
1143
1144static const char * const hdmi_lbk3_groups[] = {
1145	"gpio71",
1146};
1147
1148static const char * const hdmi_lbk2_groups[] = {
1149	"gpio72",
1150};
1151
1152static const char * const qdss_cti_trig_out_b1_groups[] = {
1153	"gpio73",
1154};
1155
1156static const char * const rgmii_mdio_groups[] = {
1157	"gpio75",
1158};
1159
1160static const char * const hdmi_lbk1_groups[] = {
1161	"gpio75",
1162};
1163
1164static const char * const rgmii_mdc_groups[] = {
1165	"gpio76",
1166};
1167
1168static const char * const hdmi_lbk0_groups[] = {
1169	"gpio76",
1170};
1171
1172static const char * const ir_in_groups[] = {
1173	"gpio77",
1174};
1175
1176static const char * const wsa_en_groups[] = {
1177	"gpio77",
1178};
1179
1180static const char * const rgb_data6_groups[] = {
1181	"gpio78", "gpio80",
1182};
1183
1184static const char * const rgb_data7_groups[] = {
1185	"gpio79", "gpio81",
1186};
1187
1188static const char * const atest_char2_groups[] = {
1189	"gpio80",
1190};
1191
1192static const char * const ebi_ch0_groups[] = {
1193	"gpio81",
1194};
1195
1196static const char * const blsp_uart3_groups[] = {
1197	"gpio82", "gpio83", "gpio84", "gpio85",
1198};
1199
1200static const char * const blsp_spi3_groups[] = {
1201	"gpio82", "gpio83", "gpio84", "gpio85",
1202};
1203
1204static const char * const sd_write_groups[] = {
1205	"gpio82",
1206};
1207
1208static const char * const blsp_i2c3_groups[] = {
1209	"gpio84", "gpio85",
1210};
1211
1212static const char * const gcc_gp1_clk_a_groups[] = {
1213	"gpio84",
1214};
1215
1216static const char * const qdss_cti_trig_in_b1_groups[] = {
1217	"gpio84",
1218};
1219
1220static const char * const gcc_gp2_clk_a_groups[] = {
1221	"gpio85",
1222};
1223
1224static const char * const ext_mclk0_groups[] = {
1225	"gpio86",
1226};
1227
1228static const char * const mclk_in1_groups[] = {
1229	"gpio86",
1230};
1231
1232static const char * const i2s_1_groups[] = {
1233	"gpio87", "gpio88", "gpio88", "gpio89", "gpio89", "gpio90", "gpio90",
1234	"gpio91", "gpio91", "gpio92", "gpio92", "gpio93", "gpio93", "gpio94",
1235	"gpio94", "gpio95", "gpio95", "gpio96",
1236};
1237
1238static const char * const dsd_clk_a_groups[] = {
1239	"gpio87",
1240};
1241
1242static const char * const qdss_cti_trig_in_a1_groups[] = {
1243	"gpio92",
1244};
1245
1246static const char * const rgmi_dll1_groups[] = {
1247	"gpio92",
1248};
1249
1250static const char * const pwm_led22_groups[] = {
1251	"gpio93",
1252};
1253
1254static const char * const pwm_led23_groups[] = {
1255	"gpio94",
1256};
1257
1258static const char * const qdss_cti_trig_out_a0_groups[] = {
1259	"gpio94",
1260};
1261
1262static const char * const rgmi_dll2_groups[] = {
1263	"gpio94",
1264};
1265
1266static const char * const pwm_led1_groups[] = {
1267	"gpio95",
1268};
1269
1270static const char * const qdss_cti_trig_out_a1_groups[] = {
1271	"gpio95",
1272};
1273
1274static const char * const pwm_led2_groups[] = {
1275	"gpio96",
1276};
1277
1278static const char * const i2s_2_groups[] = {
1279	"gpio97", "gpio98", "gpio99", "gpio100", "gpio101", "gpio102",
1280};
1281
1282static const char * const pll_bist_groups[] = {
1283	"gpio100",
1284};
1285
1286static const char * const ext_mclk1_a_groups[] = {
1287	"gpio103",
1288};
1289
1290static const char * const mclk_in2_groups[] = {
1291	"gpio103",
1292};
1293
1294static const char * const bimc_dte1_groups[] = {
1295	"gpio103", "gpio109",
1296};
1297
1298static const char * const i2s_3_sck_a_groups[] = {
1299	"gpio104",
1300};
1301
1302static const char * const i2s_3_ws_a_groups[] = {
1303	"gpio105",
1304};
1305
1306static const struct msm_function qcs404_functions[] = {
1307	FUNCTION(gpio),
1308	FUNCTION(hdmi_tx),
1309	FUNCTION(hdmi_ddc),
1310	FUNCTION(blsp_uart_tx_a2),
1311	FUNCTION(blsp_spi2),
1312	FUNCTION(m_voc),
1313	FUNCTION(qdss_cti_trig_in_a0),
1314	FUNCTION(blsp_uart_rx_a2),
1315	FUNCTION(qdss_tracectl_a),
1316	FUNCTION(blsp_uart2),
1317	FUNCTION(aud_cdc),
1318	FUNCTION(blsp_i2c_sda_a2),
1319	FUNCTION(qdss_tracedata_a),
1320	FUNCTION(blsp_i2c_scl_a2),
1321	FUNCTION(qdss_tracectl_b),
1322	FUNCTION(qdss_cti_trig_in_b0),
1323	FUNCTION(blsp_uart1),
1324	FUNCTION(blsp_spi_mosi_a1),
1325	FUNCTION(blsp_spi_miso_a1),
1326	FUNCTION(qdss_tracedata_b),
1327	FUNCTION(blsp_i2c1),
1328	FUNCTION(blsp_spi_cs_n_a1),
1329	FUNCTION(gcc_plltest),
1330	FUNCTION(blsp_spi_clk_a1),
1331	FUNCTION(rgb_data0),
1332	FUNCTION(blsp_uart5),
1333	FUNCTION(blsp_spi5),
1334	FUNCTION(adsp_ext),
1335	FUNCTION(rgb_data1),
1336	FUNCTION(prng_rosc),
1337	FUNCTION(rgb_data2),
1338	FUNCTION(blsp_i2c5),
1339	FUNCTION(gcc_gp1_clk_b),
1340	FUNCTION(rgb_data3),
1341	FUNCTION(gcc_gp2_clk_b),
1342	FUNCTION(blsp_spi0),
1343	FUNCTION(blsp_uart0),
1344	FUNCTION(gcc_gp3_clk_b),
1345	FUNCTION(blsp_i2c0),
1346	FUNCTION(qdss_traceclk_b),
1347	FUNCTION(pcie_clk),
1348	FUNCTION(nfc_irq),
1349	FUNCTION(blsp_spi4),
1350	FUNCTION(nfc_dwl),
1351	FUNCTION(audio_ts),
1352	FUNCTION(rgb_data4),
1353	FUNCTION(spi_lcd),
1354	FUNCTION(blsp_uart_tx_b2),
1355	FUNCTION(gcc_gp3_clk_a),
1356	FUNCTION(rgb_data5),
1357	FUNCTION(blsp_uart_rx_b2),
1358	FUNCTION(blsp_i2c_sda_b2),
1359	FUNCTION(blsp_i2c_scl_b2),
1360	FUNCTION(pwm_led11),
1361	FUNCTION(i2s_3_data0_a),
1362	FUNCTION(ebi2_lcd),
1363	FUNCTION(i2s_3_data1_a),
1364	FUNCTION(i2s_3_data2_a),
1365	FUNCTION(atest_char),
1366	FUNCTION(pwm_led3),
1367	FUNCTION(i2s_3_data3_a),
1368	FUNCTION(pwm_led4),
1369	FUNCTION(i2s_4),
1370	FUNCTION(ebi2_a),
1371	FUNCTION(dsd_clk_b),
1372	FUNCTION(pwm_led5),
1373	FUNCTION(pwm_led6),
1374	FUNCTION(pwm_led7),
1375	FUNCTION(pwm_led8),
1376	FUNCTION(pwm_led24),
1377	FUNCTION(spkr_dac0),
1378	FUNCTION(blsp_i2c4),
1379	FUNCTION(pwm_led9),
1380	FUNCTION(pwm_led10),
1381	FUNCTION(spdifrx_opt),
1382	FUNCTION(pwm_led12),
1383	FUNCTION(pwm_led13),
1384	FUNCTION(pwm_led14),
1385	FUNCTION(wlan1_adc1),
1386	FUNCTION(rgb_data_b0),
1387	FUNCTION(pwm_led15),
1388	FUNCTION(blsp_spi_mosi_b1),
1389	FUNCTION(wlan1_adc0),
1390	FUNCTION(rgb_data_b1),
1391	FUNCTION(pwm_led16),
1392	FUNCTION(blsp_spi_miso_b1),
1393	FUNCTION(qdss_cti_trig_out_b0),
1394	FUNCTION(wlan2_adc1),
1395	FUNCTION(rgb_data_b2),
1396	FUNCTION(pwm_led17),
1397	FUNCTION(blsp_spi_cs_n_b1),
1398	FUNCTION(wlan2_adc0),
1399	FUNCTION(rgb_data_b3),
1400	FUNCTION(pwm_led18),
1401	FUNCTION(blsp_spi_clk_b1),
1402	FUNCTION(rgb_data_b4),
1403	FUNCTION(pwm_led19),
1404	FUNCTION(ext_mclk1_b),
1405	FUNCTION(qdss_traceclk_a),
1406	FUNCTION(rgb_data_b5),
1407	FUNCTION(pwm_led20),
1408	FUNCTION(atest_char3),
1409	FUNCTION(i2s_3_sck_b),
1410	FUNCTION(ldo_update),
1411	FUNCTION(bimc_dte0),
1412	FUNCTION(rgb_hsync),
1413	FUNCTION(pwm_led21),
1414	FUNCTION(i2s_3_ws_b),
1415	FUNCTION(dbg_out),
1416	FUNCTION(rgb_vsync),
1417	FUNCTION(i2s_3_data0_b),
1418	FUNCTION(ldo_en),
1419	FUNCTION(hdmi_dtest),
1420	FUNCTION(rgb_de),
1421	FUNCTION(i2s_3_data1_b),
1422	FUNCTION(hdmi_lbk9),
1423	FUNCTION(rgb_clk),
1424	FUNCTION(atest_char1),
1425	FUNCTION(i2s_3_data2_b),
1426	FUNCTION(ebi_cdc),
1427	FUNCTION(hdmi_lbk8),
1428	FUNCTION(rgb_mdp),
1429	FUNCTION(atest_char0),
1430	FUNCTION(i2s_3_data3_b),
1431	FUNCTION(hdmi_lbk7),
1432	FUNCTION(rgb_data_b6),
1433	FUNCTION(rgb_data_b7),
1434	FUNCTION(hdmi_lbk6),
1435	FUNCTION(rgmii_int),
1436	FUNCTION(cri_trng1),
1437	FUNCTION(rgmii_wol),
1438	FUNCTION(cri_trng0),
1439	FUNCTION(gcc_tlmm),
1440	FUNCTION(rgmii_ck),
1441	FUNCTION(rgmii_tx),
1442	FUNCTION(hdmi_lbk5),
1443	FUNCTION(hdmi_pixel),
1444	FUNCTION(hdmi_rcv),
1445	FUNCTION(hdmi_lbk4),
1446	FUNCTION(rgmii_ctl),
1447	FUNCTION(ext_lpass),
1448	FUNCTION(rgmii_rx),
1449	FUNCTION(cri_trng),
1450	FUNCTION(hdmi_lbk3),
1451	FUNCTION(hdmi_lbk2),
1452	FUNCTION(qdss_cti_trig_out_b1),
1453	FUNCTION(rgmii_mdio),
1454	FUNCTION(hdmi_lbk1),
1455	FUNCTION(rgmii_mdc),
1456	FUNCTION(hdmi_lbk0),
1457	FUNCTION(ir_in),
1458	FUNCTION(wsa_en),
1459	FUNCTION(rgb_data6),
1460	FUNCTION(rgb_data7),
1461	FUNCTION(atest_char2),
1462	FUNCTION(ebi_ch0),
1463	FUNCTION(blsp_uart3),
1464	FUNCTION(blsp_spi3),
1465	FUNCTION(sd_write),
1466	FUNCTION(blsp_i2c3),
1467	FUNCTION(gcc_gp1_clk_a),
1468	FUNCTION(qdss_cti_trig_in_b1),
1469	FUNCTION(gcc_gp2_clk_a),
1470	FUNCTION(ext_mclk0),
1471	FUNCTION(mclk_in1),
1472	FUNCTION(i2s_1),
1473	FUNCTION(dsd_clk_a),
1474	FUNCTION(qdss_cti_trig_in_a1),
1475	FUNCTION(rgmi_dll1),
1476	FUNCTION(pwm_led22),
1477	FUNCTION(pwm_led23),
1478	FUNCTION(qdss_cti_trig_out_a0),
1479	FUNCTION(rgmi_dll2),
1480	FUNCTION(pwm_led1),
1481	FUNCTION(qdss_cti_trig_out_a1),
1482	FUNCTION(pwm_led2),
1483	FUNCTION(i2s_2),
1484	FUNCTION(pll_bist),
1485	FUNCTION(ext_mclk1_a),
1486	FUNCTION(mclk_in2),
1487	FUNCTION(bimc_dte1),
1488	FUNCTION(i2s_3_sck_a),
1489	FUNCTION(i2s_3_ws_a),
1490};
1491
1492/* Every pin is maintained as a single group, and missing or non-existing pin
1493 * would be maintained as dummy group to synchronize pin group index with
1494 * pin descriptor registered with pinctrl core.
1495 * Clients would not be able to request these dummy pin groups.
1496 */
1497static const struct msm_pingroup qcs404_groups[] = {
1498	[0] = PINGROUP(0, SOUTH, _, _, _, _, _, _, _, _, _),
1499	[1] = PINGROUP(1, SOUTH, _, _, _, _, _, _, _, _, _),
1500	[2] = PINGROUP(2, SOUTH, _, _, _, _, _, _, _, _, _),
1501	[3] = PINGROUP(3, SOUTH, _, _, _, _, _, _, _, _, _),
1502	[4] = PINGROUP(4, SOUTH, _, _, _, _, _, _, _, _, _),
1503	[5] = PINGROUP(5, SOUTH, _, _, _, _, _, _, _, _, _),
1504	[6] = PINGROUP(6, SOUTH, _, _, _, _, _, _, _, _, _),
1505	[7] = PINGROUP(7, SOUTH, _, _, _, _, _, _, _, _, _),
1506	[8] = PINGROUP(8, SOUTH, _, _, _, _, _, _, _, _, _),
1507	[9] = PINGROUP(9, SOUTH, _, _, _, _, _, _, _, _, _),
1508	[10] = PINGROUP(10, SOUTH, _, _, _, _, _, _, _, _, _),
1509	[11] = PINGROUP(11, SOUTH, _, _, _, _, _, _, _, _, _),
1510	[12] = PINGROUP(12, SOUTH, _, _, _, _, _, _, _, _, _),
1511	[13] = PINGROUP(13, SOUTH, _, _, _, _, _, _, _, _, _),
1512	[14] = PINGROUP(14, SOUTH, hdmi_tx, _, _, _, _, _, _, _, _),
1513	[15] = PINGROUP(15, SOUTH, hdmi_ddc, _, _, _, _, _, _, _, _),
1514	[16] = PINGROUP(16, SOUTH, hdmi_ddc, _, _, _, _, _, _, _, _),
1515	[17] = PINGROUP(17, NORTH, blsp_uart_tx_a2, blsp_spi2, m_voc, _, _, _, _, _, _),
1516	[18] = PINGROUP(18, NORTH, blsp_uart_rx_a2, blsp_spi2, _, _, _, _, _, qdss_tracectl_a, _),
1517	[19] = PINGROUP(19, NORTH, blsp_uart2, aud_cdc, blsp_i2c_sda_a2, blsp_spi2, _, qdss_tracedata_a, _, _, _),
1518	[20] = PINGROUP(20, NORTH, blsp_uart2, aud_cdc, blsp_i2c_scl_a2, blsp_spi2, _, _, _, _, _),
1519	[21] = PINGROUP(21, SOUTH, m_voc, _, _, _, _, _, _, _, qdss_cti_trig_in_b0),
1520	[22] = PINGROUP(22, NORTH, blsp_uart1, blsp_spi_mosi_a1, _, _, _, _, _, _, _),
1521	[23] = PINGROUP(23, NORTH, blsp_uart1, blsp_spi_miso_a1, _, _, _, _, _, qdss_tracedata_b, _),
1522	[24] = PINGROUP(24, NORTH, blsp_uart1, blsp_i2c1, blsp_spi_cs_n_a1, gcc_plltest, _, _, _, _, _),
1523	[25] = PINGROUP(25, NORTH, blsp_uart1, blsp_i2c1, blsp_spi_clk_a1, gcc_plltest, _, _, _, _, _),
1524	[26] = PINGROUP(26, EAST, rgb_data0, blsp_uart5, blsp_spi5, adsp_ext, _, _, _, _, _),
1525	[27] = PINGROUP(27, EAST, rgb_data1, blsp_uart5, blsp_spi5, prng_rosc, _, _, _, _, _),
1526	[28] = PINGROUP(28, EAST, rgb_data2, blsp_uart5, blsp_i2c5, blsp_spi5, gcc_gp1_clk_b, _, _, _, _),
1527	[29] = PINGROUP(29, EAST, rgb_data3, blsp_uart5, blsp_i2c5, blsp_spi5, gcc_gp2_clk_b, _, _, _, _),
1528	[30] = PINGROUP(30, NORTH, blsp_spi0, blsp_uart0, gcc_gp3_clk_b, _, _, _, _, _, _),
1529	[31] = PINGROUP(31, NORTH, blsp_spi0, blsp_uart0, _, _, _, _, _, _, _),
1530	[32] = PINGROUP(32, NORTH, blsp_spi0, blsp_uart0, blsp_i2c0, _, _, _, _, _, _),
1531	[33] = PINGROUP(33, NORTH, blsp_spi0, blsp_uart0, blsp_i2c0, _, _, _, _, _, _),
1532	[34] = PINGROUP(34, SOUTH, _, qdss_traceclk_b, _, _, _, _, _, _, _),
1533	[35] = PINGROUP(35, SOUTH, pcie_clk, _, qdss_tracedata_b, _, _, _, _, _, _),
1534	[36] = PINGROUP(36, NORTH, _, _, _, _, _, _, qdss_tracedata_a, _, _),
1535	[37] = PINGROUP(37, NORTH, nfc_irq, blsp_spi4, _, _, _, _, _, _, _),
1536	[38] = PINGROUP(38, NORTH, nfc_dwl, blsp_spi4, audio_ts, _, _, _, _, _, _),
1537	[39] = PINGROUP(39, EAST, rgb_data4, spi_lcd, blsp_uart_tx_b2, gcc_gp3_clk_a, qdss_tracedata_a, _, _, _, _),
1538	[40] = PINGROUP(40, EAST, rgb_data5, spi_lcd, blsp_uart_rx_b2, _, qdss_tracedata_b, _, _, _, _),
1539	[41] = PINGROUP(41, EAST, rgb_data0, blsp_i2c_sda_b2, _, qdss_tracedata_b, _, _, _, _, _),
1540	[42] = PINGROUP(42, EAST, rgb_data1, blsp_i2c_scl_b2, _, _, _, _, _, qdss_tracedata_a, _),
1541	[43] = PINGROUP(43, EAST, rgb_data2, pwm_led11, _, _, _, _, _, _, _),
1542	[44] = PINGROUP(44, EAST, rgb_data3, pwm_led12, blsp_spi5, _, _, _, _, _, _),
1543	[45] = PINGROUP(45, EAST, rgb_data4, pwm_led13, blsp_spi5, qdss_tracedata_b, _, _, _, _, _),
1544	[46] = PINGROUP(46, EAST, rgb_data5, pwm_led14, blsp_spi5, qdss_tracedata_b, _, wlan1_adc1, _, _, _),
1545	[47] = PINGROUP(47, EAST, rgb_data_b0, pwm_led15, blsp_spi_mosi_b1, qdss_tracedata_b, _, wlan1_adc0, _, _, _),
1546	[48] = PINGROUP(48, EAST, rgb_data_b1, pwm_led16, blsp_spi_miso_b1, _, qdss_cti_trig_out_b0, _, wlan2_adc1, _, _),
1547	[49] = PINGROUP(49, EAST, rgb_data_b2, pwm_led17, blsp_spi_cs_n_b1, _, qdss_tracedata_b, _, wlan2_adc0, _, _),
1548	[50] = PINGROUP(50, EAST, rgb_data_b3, pwm_led18, blsp_spi_clk_b1, qdss_tracedata_b, _, _, _, _, _),
1549	[51] = PINGROUP(51, EAST, rgb_data_b4, pwm_led19, ext_mclk1_b, qdss_traceclk_a, _, _, _, _, _),
1550	[52] = PINGROUP(52, EAST, rgb_data_b5, pwm_led20, atest_char3, i2s_3_sck_b, ldo_update, bimc_dte0, _, _, _),
1551	[53] = PINGROUP(53, EAST, rgb_hsync, pwm_led21, i2s_3_ws_b, dbg_out, _, _, _, _, _),
1552	[54] = PINGROUP(54, EAST, rgb_vsync, i2s_3_data0_b, ldo_en, bimc_dte0, _, hdmi_dtest, _, _, _),
1553	[55] = PINGROUP(55, EAST, rgb_de, i2s_3_data1_b, _, qdss_tracedata_b, _, hdmi_lbk9, _, _, _),
1554	[56] = PINGROUP(56, EAST, rgb_clk, atest_char1, i2s_3_data2_b, ebi_cdc, _, hdmi_lbk8, _, _, _),
1555	[57] = PINGROUP(57, EAST, rgb_mdp, atest_char0, i2s_3_data3_b, _, hdmi_lbk7, _, _, _, _),
1556	[58] = PINGROUP(58, EAST, rgb_data_b6, _, ebi_cdc, _, _, _, _, _, _),
1557	[59] = PINGROUP(59, EAST, rgb_data_b7, _, hdmi_lbk6, _, _, _, _, _, _),
1558	[60] = PINGROUP(60, NORTH, _, _, _, _, _, _, _, _, _),
1559	[61] = PINGROUP(61, NORTH, rgmii_int, cri_trng1, qdss_tracedata_b, _, _, _, _, _, _),
1560	[62] = PINGROUP(62, NORTH, rgmii_wol, cri_trng0, qdss_tracedata_b, gcc_tlmm, _, _, _, _, _),
1561	[63] = PINGROUP(63, NORTH, rgmii_ck, _, _, _, _, _, _, _, _),
1562	[64] = PINGROUP(64, NORTH, rgmii_tx, _, hdmi_lbk5, _, _, _, _, _, _),
1563	[65] = PINGROUP(65, NORTH, rgmii_tx, _, hdmi_pixel, _, _, _, _, _, _),
1564	[66] = PINGROUP(66, NORTH, rgmii_tx, _, hdmi_rcv, _, _, _, _, _, _),
1565	[67] = PINGROUP(67, NORTH, rgmii_tx, _, hdmi_lbk4, _, _, _, _, _, _),
1566	[68] = PINGROUP(68, NORTH, rgmii_ctl, _, _, _, _, _, _, _, _),
1567	[69] = PINGROUP(69, NORTH, rgmii_ck, ext_lpass, _, _, _, _, _, _, _),
1568	[70] = PINGROUP(70, NORTH, rgmii_rx, cri_trng, _, _, _, _, _, _, _),
1569	[71] = PINGROUP(71, NORTH, rgmii_rx, _, hdmi_lbk3, _, _, _, _, _, _),
1570	[72] = PINGROUP(72, NORTH, rgmii_rx, _, hdmi_lbk2, _, _, _, _, _, _),
1571	[73] = PINGROUP(73, NORTH, rgmii_rx, _, _, _, _, qdss_cti_trig_out_b1, _, _, _),
1572	[74] = PINGROUP(74, NORTH, rgmii_ctl, _, _, _, _, _, _, _, _),
1573	[75] = PINGROUP(75, NORTH, rgmii_mdio, _, hdmi_lbk1, _, _, _, _, _, _),
1574	[76] = PINGROUP(76, NORTH, rgmii_mdc, _, _, _, _, _, hdmi_lbk0, _, _),
1575	[77] = PINGROUP(77, NORTH, ir_in, wsa_en, _, _, _, _, _, _, _),
1576	[78] = PINGROUP(78, EAST, rgb_data6, _, _, _, _, _, _, _, _),
1577	[79] = PINGROUP(79, EAST, rgb_data7, _, _, _, _, _, _, _, _),
1578	[80] = PINGROUP(80, EAST, rgb_data6, atest_char2, _, _, _, _, _, _, _),
1579	[81] = PINGROUP(81, EAST, rgb_data7, ebi_ch0, _, _, _, _, _, _, _),
1580	[82] = PINGROUP(82, NORTH, blsp_uart3, blsp_spi3, sd_write, _, _, _, _, _, qdss_tracedata_a),
1581	[83] = PINGROUP(83, NORTH, blsp_uart3, blsp_spi3, _, _, _, _, qdss_tracedata_a, _, _),
1582	[84] = PINGROUP(84, NORTH, blsp_uart3, blsp_i2c3, blsp_spi3, gcc_gp1_clk_a, qdss_cti_trig_in_b1, _, _, _, _),
1583	[85] = PINGROUP(85, NORTH, blsp_uart3, blsp_i2c3, blsp_spi3, gcc_gp2_clk_a, qdss_tracedata_b, _, _, _, _),
1584	[86] = PINGROUP(86, EAST, ext_mclk0, mclk_in1, _, _, _, _, _, _, _),
1585	[87] = PINGROUP(87, EAST, i2s_1, dsd_clk_a, _, _, _, _, _, _, _),
1586	[88] = PINGROUP(88, EAST, i2s_1, i2s_1, _, _, _, _, _, _, _),
1587	[89] = PINGROUP(89, EAST, i2s_1, i2s_1, _, _, _, _, _, _, qdss_tracedata_b),
1588	[90] = PINGROUP(90, EAST, i2s_1, i2s_1, _, _, _, _, _, _, _),
1589	[91] = PINGROUP(91, EAST, i2s_1, i2s_1, _, _, _, _, _, _, _),
1590	[92] = PINGROUP(92, EAST, i2s_1, i2s_1, _, _, _, _, _, qdss_cti_trig_in_a1, _),
1591	[93] = PINGROUP(93, EAST, i2s_1, pwm_led22, i2s_1, _, _, _, _, _, qdss_tracedata_b),
1592	[94] = PINGROUP(94, EAST, i2s_1, pwm_led23, i2s_1, _, qdss_cti_trig_out_a0, _, rgmi_dll2, _, _),
1593	[95] = PINGROUP(95, EAST, i2s_1, pwm_led1, i2s_1, _, qdss_cti_trig_out_a1, _, _, _, _),
1594	[96] = PINGROUP(96, EAST, i2s_1, pwm_led2, _, _, _, _, _, _, _),
1595	[97] = PINGROUP(97, EAST, i2s_2, _, _, _, _, _, _, _, _),
1596	[98] = PINGROUP(98, EAST, i2s_2, _, _, _, _, _, _, _, _),
1597	[99] = PINGROUP(99, EAST, i2s_2, _, _, _, _, _, _, _, _),
1598	[100] = PINGROUP(100, EAST, i2s_2, pll_bist, _, _, _, _, _, _, _),
1599	[101] = PINGROUP(101, EAST, i2s_2, _, _, _, _, _, _, _, _),
1600	[102] = PINGROUP(102, EAST, i2s_2, _, _, _, _, _, _, _, _),
1601	[103] = PINGROUP(103, EAST, ext_mclk1_a, mclk_in2, bimc_dte1, _, _, _, _, _, _),
1602	[104] = PINGROUP(104, EAST, i2s_3_sck_a, _, _, _, _, _, _, _, _),
1603	[105] = PINGROUP(105, EAST, i2s_3_ws_a, _, _, _, _, _, _, _, _),
1604	[106] = PINGROUP(106, EAST, i2s_3_data0_a, ebi2_lcd, _, _, ebi_cdc, _, _, _, _),
1605	[107] = PINGROUP(107, EAST, i2s_3_data1_a, ebi2_lcd, _, _, ebi_cdc, _, _, _, _),
1606	[108] = PINGROUP(108, EAST, i2s_3_data2_a, ebi2_lcd, atest_char, pwm_led3, ebi_cdc, _, _, _, _),
1607	[109] = PINGROUP(109, EAST, i2s_3_data3_a, ebi2_lcd, pwm_led4, bimc_dte1, _, _, _, _, _),
1608	[110] = PINGROUP(110, EAST, i2s_4, ebi2_a, dsd_clk_b, pwm_led5, _, _, _, _, _),
1609	[111] = PINGROUP(111, EAST, i2s_4, i2s_4, pwm_led6, ebi_cdc, _, _, _, _, _),
1610	[112] = PINGROUP(112, EAST, i2s_4, i2s_4, pwm_led7, _, _, _, _, _, _),
1611	[113] = PINGROUP(113, EAST, i2s_4, i2s_4, pwm_led8, _, _, _, _, _, _),
1612	[114] = PINGROUP(114, EAST, i2s_4, i2s_4, pwm_led24, _, _, _, _, _, _),
1613	[115] = PINGROUP(115, EAST, i2s_4, i2s_4, _, _, _, _, _, _, _),
1614	[116] = PINGROUP(116, EAST, i2s_4, spkr_dac0, _, _, _, _, _, _, _),
1615	[117] = PINGROUP(117, NORTH, blsp_i2c4, blsp_spi4, pwm_led9, _, _, _, _, _, _),
1616	[118] = PINGROUP(118, NORTH, blsp_i2c4, blsp_spi4, pwm_led10, _, _, _, _, _, _),
1617	[119] = PINGROUP(119, EAST, spdifrx_opt, _, _, _, _, _, _, _, _),
1618	[120] = SDC_QDSD_PINGROUP(sdc1_rclk, 0xc2000, 15, 0),
1619	[121] = SDC_QDSD_PINGROUP(sdc1_clk, 0xc2000, 13, 6),
1620	[122] = SDC_QDSD_PINGROUP(sdc1_cmd, 0xc2000, 11, 3),
1621	[123] = SDC_QDSD_PINGROUP(sdc1_data, 0xc2000, 9, 0),
1622	[124] = SDC_QDSD_PINGROUP(sdc2_clk, 0xc3000, 14, 6),
1623	[125] = SDC_QDSD_PINGROUP(sdc2_cmd, 0xc3000, 11, 3),
1624	[126] = SDC_QDSD_PINGROUP(sdc2_data, 0xc3000, 9, 0),
1625};
1626
1627static const struct msm_pinctrl_soc_data qcs404_pinctrl = {
1628	.pins = qcs404_pins,
1629	.npins = ARRAY_SIZE(qcs404_pins),
1630	.functions = qcs404_functions,
1631	.nfunctions = ARRAY_SIZE(qcs404_functions),
1632	.groups = qcs404_groups,
1633	.ngroups = ARRAY_SIZE(qcs404_groups),
1634	.ngpios = 120,
1635	.tiles = qcs404_tiles,
1636	.ntiles = ARRAY_SIZE(qcs404_tiles),
1637};
1638
1639static int qcs404_pinctrl_probe(struct platform_device *pdev)
1640{
1641	return msm_pinctrl_probe(pdev, &qcs404_pinctrl);
1642}
1643
1644static const struct of_device_id qcs404_pinctrl_of_match[] = {
1645	{ .compatible = "qcom,qcs404-pinctrl", },
1646	{ },
1647};
1648
1649static struct platform_driver qcs404_pinctrl_driver = {
1650	.driver = {
1651		.name = "qcs404-pinctrl",
1652		.of_match_table = qcs404_pinctrl_of_match,
1653	},
1654	.probe = qcs404_pinctrl_probe,
1655	.remove = msm_pinctrl_remove,
1656};
1657
1658static int __init qcs404_pinctrl_init(void)
1659{
1660	return platform_driver_register(&qcs404_pinctrl_driver);
1661}
1662arch_initcall(qcs404_pinctrl_init);
1663
1664static void __exit qcs404_pinctrl_exit(void)
1665{
1666	platform_driver_unregister(&qcs404_pinctrl_driver);
1667}
1668module_exit(qcs404_pinctrl_exit);
1669
1670MODULE_DESCRIPTION("Qualcomm QCS404 pinctrl driver");
1671MODULE_LICENSE("GPL v2");
1672MODULE_DEVICE_TABLE(of, qcs404_pinctrl_of_match);
1673