0001
0002
0003
0004
0005
0006
0007 #include <linux/module.h>
0008 #include <linux/of.h>
0009 #include <linux/platform_device.h>
0010 #include <linux/pinctrl/pinctrl.h>
0011
0012 #include "pinctrl-msm.h"
0013
0014 #define FUNCTION(fname) \
0015 [msm_mux_##fname] = { \
0016 .name = #fname, \
0017 .groups = fname##_groups, \
0018 .ngroups = ARRAY_SIZE(fname##_groups), \
0019 }
0020
0021 #define REG_BASE 0x100000
0022 #define REG_SIZE 0x1000
0023 #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
0024 { \
0025 .name = "gpio" #id, \
0026 .pins = gpio##id##_pins, \
0027 .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \
0028 .funcs = (int[]){ \
0029 msm_mux_gpio, \
0030 msm_mux_##f1, \
0031 msm_mux_##f2, \
0032 msm_mux_##f3, \
0033 msm_mux_##f4, \
0034 msm_mux_##f5, \
0035 msm_mux_##f6, \
0036 msm_mux_##f7, \
0037 msm_mux_##f8, \
0038 msm_mux_##f9 \
0039 }, \
0040 .nfuncs = 10, \
0041 .ctl_reg = REG_SIZE * id, \
0042 .io_reg = REG_SIZE * id + 0x4, \
0043 .intr_cfg_reg = REG_SIZE * id + 0x8, \
0044 .intr_status_reg = REG_SIZE * id + 0xc, \
0045 .intr_target_reg = REG_SIZE * id + 0x8, \
0046 .mux_bit = 2, \
0047 .pull_bit = 0, \
0048 .drv_bit = 6, \
0049 .egpio_enable = 12, \
0050 .egpio_present = 11, \
0051 .oe_bit = 9, \
0052 .in_bit = 0, \
0053 .out_bit = 1, \
0054 .intr_enable_bit = 0, \
0055 .intr_status_bit = 0, \
0056 .intr_target_bit = 5, \
0057 .intr_target_kpss_val = 3, \
0058 .intr_raw_status_bit = 4, \
0059 .intr_polarity_bit = 1, \
0060 .intr_detection_bit = 2, \
0061 .intr_detection_width = 2, \
0062 }
0063
0064 #define SDC_PINGROUP(pg_name, ctl, pull, drv) \
0065 { \
0066 .name = #pg_name, \
0067 .pins = pg_name##_pins, \
0068 .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
0069 .ctl_reg = ctl, \
0070 .io_reg = 0, \
0071 .intr_cfg_reg = 0, \
0072 .intr_status_reg = 0, \
0073 .intr_target_reg = 0, \
0074 .mux_bit = -1, \
0075 .pull_bit = pull, \
0076 .drv_bit = drv, \
0077 .oe_bit = -1, \
0078 .in_bit = -1, \
0079 .out_bit = -1, \
0080 .intr_enable_bit = -1, \
0081 .intr_status_bit = -1, \
0082 .intr_target_bit = -1, \
0083 .intr_raw_status_bit = -1, \
0084 .intr_polarity_bit = -1, \
0085 .intr_detection_bit = -1, \
0086 .intr_detection_width = -1, \
0087 }
0088
0089 #define UFS_RESET(pg_name, offset) \
0090 { \
0091 .name = #pg_name, \
0092 .pins = pg_name##_pins, \
0093 .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
0094 .ctl_reg = offset, \
0095 .io_reg = offset + 0x4, \
0096 .intr_cfg_reg = 0, \
0097 .intr_status_reg = 0, \
0098 .intr_target_reg = 0, \
0099 .mux_bit = -1, \
0100 .pull_bit = 3, \
0101 .drv_bit = 0, \
0102 .oe_bit = -1, \
0103 .in_bit = -1, \
0104 .out_bit = 0, \
0105 .intr_enable_bit = -1, \
0106 .intr_status_bit = -1, \
0107 .intr_target_bit = -1, \
0108 .intr_raw_status_bit = -1, \
0109 .intr_polarity_bit = -1, \
0110 .intr_detection_bit = -1, \
0111 .intr_detection_width = -1, \
0112 }
0113
0114 static const struct pinctrl_pin_desc sm6375_pins[] = {
0115 PINCTRL_PIN(0, "GPIO_0"),
0116 PINCTRL_PIN(1, "GPIO_1"),
0117 PINCTRL_PIN(2, "GPIO_2"),
0118 PINCTRL_PIN(3, "GPIO_3"),
0119 PINCTRL_PIN(4, "GPIO_4"),
0120 PINCTRL_PIN(5, "GPIO_5"),
0121 PINCTRL_PIN(6, "GPIO_6"),
0122 PINCTRL_PIN(7, "GPIO_7"),
0123 PINCTRL_PIN(8, "GPIO_8"),
0124 PINCTRL_PIN(9, "GPIO_9"),
0125 PINCTRL_PIN(10, "GPIO_10"),
0126 PINCTRL_PIN(11, "GPIO_11"),
0127 PINCTRL_PIN(12, "GPIO_12"),
0128 PINCTRL_PIN(13, "GPIO_13"),
0129 PINCTRL_PIN(14, "GPIO_14"),
0130 PINCTRL_PIN(15, "GPIO_15"),
0131 PINCTRL_PIN(16, "GPIO_16"),
0132 PINCTRL_PIN(17, "GPIO_17"),
0133 PINCTRL_PIN(18, "GPIO_18"),
0134 PINCTRL_PIN(19, "GPIO_19"),
0135 PINCTRL_PIN(20, "GPIO_20"),
0136 PINCTRL_PIN(21, "GPIO_21"),
0137 PINCTRL_PIN(22, "GPIO_22"),
0138 PINCTRL_PIN(23, "GPIO_23"),
0139 PINCTRL_PIN(24, "GPIO_24"),
0140 PINCTRL_PIN(25, "GPIO_25"),
0141 PINCTRL_PIN(26, "GPIO_26"),
0142 PINCTRL_PIN(27, "GPIO_27"),
0143 PINCTRL_PIN(28, "GPIO_28"),
0144 PINCTRL_PIN(29, "GPIO_29"),
0145 PINCTRL_PIN(30, "GPIO_30"),
0146 PINCTRL_PIN(31, "GPIO_31"),
0147 PINCTRL_PIN(32, "GPIO_32"),
0148 PINCTRL_PIN(33, "GPIO_33"),
0149 PINCTRL_PIN(34, "GPIO_34"),
0150 PINCTRL_PIN(35, "GPIO_35"),
0151 PINCTRL_PIN(36, "GPIO_36"),
0152 PINCTRL_PIN(37, "GPIO_37"),
0153 PINCTRL_PIN(38, "GPIO_38"),
0154 PINCTRL_PIN(39, "GPIO_39"),
0155 PINCTRL_PIN(40, "GPIO_40"),
0156 PINCTRL_PIN(41, "GPIO_41"),
0157 PINCTRL_PIN(42, "GPIO_42"),
0158 PINCTRL_PIN(43, "GPIO_43"),
0159 PINCTRL_PIN(44, "GPIO_44"),
0160 PINCTRL_PIN(45, "GPIO_45"),
0161 PINCTRL_PIN(46, "GPIO_46"),
0162 PINCTRL_PIN(47, "GPIO_47"),
0163 PINCTRL_PIN(48, "GPIO_48"),
0164 PINCTRL_PIN(49, "GPIO_49"),
0165 PINCTRL_PIN(50, "GPIO_50"),
0166 PINCTRL_PIN(51, "GPIO_51"),
0167 PINCTRL_PIN(52, "GPIO_52"),
0168 PINCTRL_PIN(53, "GPIO_53"),
0169 PINCTRL_PIN(54, "GPIO_54"),
0170 PINCTRL_PIN(55, "GPIO_55"),
0171 PINCTRL_PIN(56, "GPIO_56"),
0172 PINCTRL_PIN(57, "GPIO_57"),
0173 PINCTRL_PIN(58, "GPIO_58"),
0174 PINCTRL_PIN(59, "GPIO_59"),
0175 PINCTRL_PIN(60, "GPIO_60"),
0176 PINCTRL_PIN(61, "GPIO_61"),
0177 PINCTRL_PIN(62, "GPIO_62"),
0178 PINCTRL_PIN(63, "GPIO_63"),
0179 PINCTRL_PIN(64, "GPIO_64"),
0180 PINCTRL_PIN(65, "GPIO_65"),
0181 PINCTRL_PIN(66, "GPIO_66"),
0182 PINCTRL_PIN(67, "GPIO_67"),
0183 PINCTRL_PIN(68, "GPIO_68"),
0184 PINCTRL_PIN(69, "GPIO_69"),
0185 PINCTRL_PIN(70, "GPIO_70"),
0186 PINCTRL_PIN(71, "GPIO_71"),
0187 PINCTRL_PIN(72, "GPIO_72"),
0188 PINCTRL_PIN(73, "GPIO_73"),
0189 PINCTRL_PIN(74, "GPIO_74"),
0190 PINCTRL_PIN(75, "GPIO_75"),
0191 PINCTRL_PIN(76, "GPIO_76"),
0192 PINCTRL_PIN(77, "GPIO_77"),
0193 PINCTRL_PIN(78, "GPIO_78"),
0194 PINCTRL_PIN(79, "GPIO_79"),
0195 PINCTRL_PIN(80, "GPIO_80"),
0196 PINCTRL_PIN(81, "GPIO_81"),
0197 PINCTRL_PIN(82, "GPIO_82"),
0198 PINCTRL_PIN(83, "GPIO_83"),
0199 PINCTRL_PIN(84, "GPIO_84"),
0200 PINCTRL_PIN(85, "GPIO_85"),
0201 PINCTRL_PIN(86, "GPIO_86"),
0202 PINCTRL_PIN(87, "GPIO_87"),
0203 PINCTRL_PIN(88, "GPIO_88"),
0204 PINCTRL_PIN(89, "GPIO_89"),
0205 PINCTRL_PIN(90, "GPIO_90"),
0206 PINCTRL_PIN(91, "GPIO_91"),
0207 PINCTRL_PIN(92, "GPIO_92"),
0208 PINCTRL_PIN(93, "GPIO_93"),
0209 PINCTRL_PIN(94, "GPIO_94"),
0210 PINCTRL_PIN(95, "GPIO_95"),
0211 PINCTRL_PIN(96, "GPIO_96"),
0212 PINCTRL_PIN(97, "GPIO_97"),
0213 PINCTRL_PIN(98, "GPIO_98"),
0214 PINCTRL_PIN(99, "GPIO_99"),
0215 PINCTRL_PIN(100, "GPIO_100"),
0216 PINCTRL_PIN(101, "GPIO_101"),
0217 PINCTRL_PIN(102, "GPIO_102"),
0218 PINCTRL_PIN(103, "GPIO_103"),
0219 PINCTRL_PIN(104, "GPIO_104"),
0220 PINCTRL_PIN(105, "GPIO_105"),
0221 PINCTRL_PIN(106, "GPIO_106"),
0222 PINCTRL_PIN(107, "GPIO_107"),
0223 PINCTRL_PIN(108, "GPIO_108"),
0224 PINCTRL_PIN(109, "GPIO_109"),
0225 PINCTRL_PIN(110, "GPIO_110"),
0226 PINCTRL_PIN(111, "GPIO_111"),
0227 PINCTRL_PIN(112, "GPIO_112"),
0228 PINCTRL_PIN(113, "GPIO_113"),
0229 PINCTRL_PIN(114, "GPIO_114"),
0230 PINCTRL_PIN(115, "GPIO_115"),
0231 PINCTRL_PIN(116, "GPIO_116"),
0232 PINCTRL_PIN(117, "GPIO_117"),
0233 PINCTRL_PIN(118, "GPIO_118"),
0234 PINCTRL_PIN(119, "GPIO_119"),
0235 PINCTRL_PIN(120, "GPIO_120"),
0236 PINCTRL_PIN(121, "GPIO_121"),
0237 PINCTRL_PIN(122, "GPIO_122"),
0238 PINCTRL_PIN(123, "GPIO_123"),
0239 PINCTRL_PIN(124, "GPIO_124"),
0240 PINCTRL_PIN(125, "GPIO_125"),
0241 PINCTRL_PIN(126, "GPIO_126"),
0242 PINCTRL_PIN(127, "GPIO_127"),
0243 PINCTRL_PIN(128, "GPIO_128"),
0244 PINCTRL_PIN(129, "GPIO_129"),
0245 PINCTRL_PIN(130, "GPIO_130"),
0246 PINCTRL_PIN(131, "GPIO_131"),
0247 PINCTRL_PIN(132, "GPIO_132"),
0248 PINCTRL_PIN(133, "GPIO_133"),
0249 PINCTRL_PIN(134, "GPIO_134"),
0250 PINCTRL_PIN(135, "GPIO_135"),
0251 PINCTRL_PIN(136, "GPIO_136"),
0252 PINCTRL_PIN(137, "GPIO_137"),
0253 PINCTRL_PIN(138, "GPIO_138"),
0254 PINCTRL_PIN(139, "GPIO_139"),
0255 PINCTRL_PIN(140, "GPIO_140"),
0256 PINCTRL_PIN(141, "GPIO_141"),
0257 PINCTRL_PIN(142, "GPIO_142"),
0258 PINCTRL_PIN(143, "GPIO_143"),
0259 PINCTRL_PIN(144, "GPIO_144"),
0260 PINCTRL_PIN(145, "GPIO_145"),
0261 PINCTRL_PIN(146, "GPIO_146"),
0262 PINCTRL_PIN(147, "GPIO_147"),
0263 PINCTRL_PIN(148, "GPIO_148"),
0264 PINCTRL_PIN(149, "GPIO_149"),
0265 PINCTRL_PIN(150, "GPIO_150"),
0266 PINCTRL_PIN(151, "GPIO_151"),
0267 PINCTRL_PIN(152, "GPIO_152"),
0268 PINCTRL_PIN(153, "GPIO_153"),
0269 PINCTRL_PIN(154, "GPIO_154"),
0270 PINCTRL_PIN(155, "GPIO_155"),
0271 PINCTRL_PIN(156, "UFS_RESET"),
0272 PINCTRL_PIN(157, "SDC1_RCLK"),
0273 PINCTRL_PIN(158, "SDC1_CLK"),
0274 PINCTRL_PIN(159, "SDC1_CMD"),
0275 PINCTRL_PIN(160, "SDC1_DATA"),
0276 PINCTRL_PIN(161, "SDC2_CLK"),
0277 PINCTRL_PIN(162, "SDC2_CMD"),
0278 PINCTRL_PIN(163, "SDC2_DATA"),
0279 };
0280
0281 #define DECLARE_MSM_GPIO_PINS(pin) \
0282 static const unsigned int gpio##pin##_pins[] = { pin }
0283 DECLARE_MSM_GPIO_PINS(0);
0284 DECLARE_MSM_GPIO_PINS(1);
0285 DECLARE_MSM_GPIO_PINS(2);
0286 DECLARE_MSM_GPIO_PINS(3);
0287 DECLARE_MSM_GPIO_PINS(4);
0288 DECLARE_MSM_GPIO_PINS(5);
0289 DECLARE_MSM_GPIO_PINS(6);
0290 DECLARE_MSM_GPIO_PINS(7);
0291 DECLARE_MSM_GPIO_PINS(8);
0292 DECLARE_MSM_GPIO_PINS(9);
0293 DECLARE_MSM_GPIO_PINS(10);
0294 DECLARE_MSM_GPIO_PINS(11);
0295 DECLARE_MSM_GPIO_PINS(12);
0296 DECLARE_MSM_GPIO_PINS(13);
0297 DECLARE_MSM_GPIO_PINS(14);
0298 DECLARE_MSM_GPIO_PINS(15);
0299 DECLARE_MSM_GPIO_PINS(16);
0300 DECLARE_MSM_GPIO_PINS(17);
0301 DECLARE_MSM_GPIO_PINS(18);
0302 DECLARE_MSM_GPIO_PINS(19);
0303 DECLARE_MSM_GPIO_PINS(20);
0304 DECLARE_MSM_GPIO_PINS(21);
0305 DECLARE_MSM_GPIO_PINS(22);
0306 DECLARE_MSM_GPIO_PINS(23);
0307 DECLARE_MSM_GPIO_PINS(24);
0308 DECLARE_MSM_GPIO_PINS(25);
0309 DECLARE_MSM_GPIO_PINS(26);
0310 DECLARE_MSM_GPIO_PINS(27);
0311 DECLARE_MSM_GPIO_PINS(28);
0312 DECLARE_MSM_GPIO_PINS(29);
0313 DECLARE_MSM_GPIO_PINS(30);
0314 DECLARE_MSM_GPIO_PINS(31);
0315 DECLARE_MSM_GPIO_PINS(32);
0316 DECLARE_MSM_GPIO_PINS(33);
0317 DECLARE_MSM_GPIO_PINS(34);
0318 DECLARE_MSM_GPIO_PINS(35);
0319 DECLARE_MSM_GPIO_PINS(36);
0320 DECLARE_MSM_GPIO_PINS(37);
0321 DECLARE_MSM_GPIO_PINS(38);
0322 DECLARE_MSM_GPIO_PINS(39);
0323 DECLARE_MSM_GPIO_PINS(40);
0324 DECLARE_MSM_GPIO_PINS(41);
0325 DECLARE_MSM_GPIO_PINS(42);
0326 DECLARE_MSM_GPIO_PINS(43);
0327 DECLARE_MSM_GPIO_PINS(44);
0328 DECLARE_MSM_GPIO_PINS(45);
0329 DECLARE_MSM_GPIO_PINS(46);
0330 DECLARE_MSM_GPIO_PINS(47);
0331 DECLARE_MSM_GPIO_PINS(48);
0332 DECLARE_MSM_GPIO_PINS(49);
0333 DECLARE_MSM_GPIO_PINS(50);
0334 DECLARE_MSM_GPIO_PINS(51);
0335 DECLARE_MSM_GPIO_PINS(52);
0336 DECLARE_MSM_GPIO_PINS(53);
0337 DECLARE_MSM_GPIO_PINS(54);
0338 DECLARE_MSM_GPIO_PINS(55);
0339 DECLARE_MSM_GPIO_PINS(56);
0340 DECLARE_MSM_GPIO_PINS(57);
0341 DECLARE_MSM_GPIO_PINS(58);
0342 DECLARE_MSM_GPIO_PINS(59);
0343 DECLARE_MSM_GPIO_PINS(60);
0344 DECLARE_MSM_GPIO_PINS(61);
0345 DECLARE_MSM_GPIO_PINS(62);
0346 DECLARE_MSM_GPIO_PINS(63);
0347 DECLARE_MSM_GPIO_PINS(64);
0348 DECLARE_MSM_GPIO_PINS(65);
0349 DECLARE_MSM_GPIO_PINS(66);
0350 DECLARE_MSM_GPIO_PINS(67);
0351 DECLARE_MSM_GPIO_PINS(68);
0352 DECLARE_MSM_GPIO_PINS(69);
0353 DECLARE_MSM_GPIO_PINS(70);
0354 DECLARE_MSM_GPIO_PINS(71);
0355 DECLARE_MSM_GPIO_PINS(72);
0356 DECLARE_MSM_GPIO_PINS(73);
0357 DECLARE_MSM_GPIO_PINS(74);
0358 DECLARE_MSM_GPIO_PINS(75);
0359 DECLARE_MSM_GPIO_PINS(76);
0360 DECLARE_MSM_GPIO_PINS(77);
0361 DECLARE_MSM_GPIO_PINS(78);
0362 DECLARE_MSM_GPIO_PINS(79);
0363 DECLARE_MSM_GPIO_PINS(80);
0364 DECLARE_MSM_GPIO_PINS(81);
0365 DECLARE_MSM_GPIO_PINS(82);
0366 DECLARE_MSM_GPIO_PINS(83);
0367 DECLARE_MSM_GPIO_PINS(84);
0368 DECLARE_MSM_GPIO_PINS(85);
0369 DECLARE_MSM_GPIO_PINS(86);
0370 DECLARE_MSM_GPIO_PINS(87);
0371 DECLARE_MSM_GPIO_PINS(88);
0372 DECLARE_MSM_GPIO_PINS(89);
0373 DECLARE_MSM_GPIO_PINS(90);
0374 DECLARE_MSM_GPIO_PINS(91);
0375 DECLARE_MSM_GPIO_PINS(92);
0376 DECLARE_MSM_GPIO_PINS(93);
0377 DECLARE_MSM_GPIO_PINS(94);
0378 DECLARE_MSM_GPIO_PINS(95);
0379 DECLARE_MSM_GPIO_PINS(96);
0380 DECLARE_MSM_GPIO_PINS(97);
0381 DECLARE_MSM_GPIO_PINS(98);
0382 DECLARE_MSM_GPIO_PINS(99);
0383 DECLARE_MSM_GPIO_PINS(100);
0384 DECLARE_MSM_GPIO_PINS(101);
0385 DECLARE_MSM_GPIO_PINS(102);
0386 DECLARE_MSM_GPIO_PINS(103);
0387 DECLARE_MSM_GPIO_PINS(104);
0388 DECLARE_MSM_GPIO_PINS(105);
0389 DECLARE_MSM_GPIO_PINS(106);
0390 DECLARE_MSM_GPIO_PINS(107);
0391 DECLARE_MSM_GPIO_PINS(108);
0392 DECLARE_MSM_GPIO_PINS(109);
0393 DECLARE_MSM_GPIO_PINS(110);
0394 DECLARE_MSM_GPIO_PINS(111);
0395 DECLARE_MSM_GPIO_PINS(112);
0396 DECLARE_MSM_GPIO_PINS(113);
0397 DECLARE_MSM_GPIO_PINS(114);
0398 DECLARE_MSM_GPIO_PINS(115);
0399 DECLARE_MSM_GPIO_PINS(116);
0400 DECLARE_MSM_GPIO_PINS(117);
0401 DECLARE_MSM_GPIO_PINS(118);
0402 DECLARE_MSM_GPIO_PINS(119);
0403 DECLARE_MSM_GPIO_PINS(120);
0404 DECLARE_MSM_GPIO_PINS(121);
0405 DECLARE_MSM_GPIO_PINS(122);
0406 DECLARE_MSM_GPIO_PINS(123);
0407 DECLARE_MSM_GPIO_PINS(124);
0408 DECLARE_MSM_GPIO_PINS(125);
0409 DECLARE_MSM_GPIO_PINS(126);
0410 DECLARE_MSM_GPIO_PINS(127);
0411 DECLARE_MSM_GPIO_PINS(128);
0412 DECLARE_MSM_GPIO_PINS(129);
0413 DECLARE_MSM_GPIO_PINS(130);
0414 DECLARE_MSM_GPIO_PINS(131);
0415 DECLARE_MSM_GPIO_PINS(132);
0416 DECLARE_MSM_GPIO_PINS(133);
0417 DECLARE_MSM_GPIO_PINS(134);
0418 DECLARE_MSM_GPIO_PINS(135);
0419 DECLARE_MSM_GPIO_PINS(136);
0420 DECLARE_MSM_GPIO_PINS(137);
0421 DECLARE_MSM_GPIO_PINS(138);
0422 DECLARE_MSM_GPIO_PINS(139);
0423 DECLARE_MSM_GPIO_PINS(140);
0424 DECLARE_MSM_GPIO_PINS(141);
0425 DECLARE_MSM_GPIO_PINS(142);
0426 DECLARE_MSM_GPIO_PINS(143);
0427 DECLARE_MSM_GPIO_PINS(144);
0428 DECLARE_MSM_GPIO_PINS(145);
0429 DECLARE_MSM_GPIO_PINS(146);
0430 DECLARE_MSM_GPIO_PINS(147);
0431 DECLARE_MSM_GPIO_PINS(148);
0432 DECLARE_MSM_GPIO_PINS(149);
0433 DECLARE_MSM_GPIO_PINS(150);
0434 DECLARE_MSM_GPIO_PINS(151);
0435 DECLARE_MSM_GPIO_PINS(152);
0436 DECLARE_MSM_GPIO_PINS(153);
0437 DECLARE_MSM_GPIO_PINS(154);
0438 DECLARE_MSM_GPIO_PINS(155);
0439
0440
0441 static const unsigned int sdc1_rclk_pins[] = { 157 };
0442 static const unsigned int sdc1_clk_pins[] = { 158 };
0443 static const unsigned int sdc1_cmd_pins[] = { 159 };
0444 static const unsigned int sdc1_data_pins[] = { 160 };
0445 static const unsigned int sdc2_clk_pins[] = { 161 };
0446 static const unsigned int sdc2_cmd_pins[] = { 162 };
0447 static const unsigned int sdc2_data_pins[] = { 163 };
0448 static const unsigned int ufs_reset_pins[] = { 156 };
0449
0450 enum sm6375_functions {
0451 msm_mux_adsp_ext,
0452 msm_mux_agera_pll,
0453 msm_mux_atest_char,
0454 msm_mux_atest_char0,
0455 msm_mux_atest_char1,
0456 msm_mux_atest_char2,
0457 msm_mux_atest_char3,
0458 msm_mux_atest_tsens,
0459 msm_mux_atest_tsens2,
0460 msm_mux_atest_usb1,
0461 msm_mux_atest_usb10,
0462 msm_mux_atest_usb11,
0463 msm_mux_atest_usb12,
0464 msm_mux_atest_usb13,
0465 msm_mux_atest_usb2,
0466 msm_mux_atest_usb20,
0467 msm_mux_atest_usb21,
0468 msm_mux_atest_usb22,
0469 msm_mux_atest_usb23,
0470 msm_mux_audio_ref,
0471 msm_mux_btfm_slimbus,
0472 msm_mux_cam_mclk,
0473 msm_mux_cci_async,
0474 msm_mux_cci_i2c,
0475 msm_mux_cci_timer0,
0476 msm_mux_cci_timer1,
0477 msm_mux_cci_timer2,
0478 msm_mux_cci_timer3,
0479 msm_mux_cci_timer4,
0480 msm_mux_cri_trng,
0481 msm_mux_dbg_out,
0482 msm_mux_ddr_bist,
0483 msm_mux_ddr_pxi0,
0484 msm_mux_ddr_pxi1,
0485 msm_mux_ddr_pxi2,
0486 msm_mux_ddr_pxi3,
0487 msm_mux_dp_hot,
0488 msm_mux_edp_lcd,
0489 msm_mux_gcc_gp1,
0490 msm_mux_gcc_gp2,
0491 msm_mux_gcc_gp3,
0492 msm_mux_gp_pdm0,
0493 msm_mux_gp_pdm1,
0494 msm_mux_gp_pdm2,
0495 msm_mux_gpio,
0496 msm_mux_gps_tx,
0497 msm_mux_ibi_i3c,
0498 msm_mux_jitter_bist,
0499 msm_mux_ldo_en,
0500 msm_mux_ldo_update,
0501 msm_mux_lpass_ext,
0502 msm_mux_m_voc,
0503 msm_mux_mclk,
0504 msm_mux_mdp_vsync,
0505 msm_mux_mdp_vsync0,
0506 msm_mux_mdp_vsync1,
0507 msm_mux_mdp_vsync2,
0508 msm_mux_mdp_vsync3,
0509 msm_mux_mi2s_0,
0510 msm_mux_mi2s_1,
0511 msm_mux_mi2s_2,
0512 msm_mux_mss_lte,
0513 msm_mux_nav_gpio,
0514 msm_mux_nav_pps,
0515 msm_mux_pa_indicator,
0516 msm_mux_phase_flag0,
0517 msm_mux_phase_flag1,
0518 msm_mux_phase_flag10,
0519 msm_mux_phase_flag11,
0520 msm_mux_phase_flag12,
0521 msm_mux_phase_flag13,
0522 msm_mux_phase_flag14,
0523 msm_mux_phase_flag15,
0524 msm_mux_phase_flag16,
0525 msm_mux_phase_flag17,
0526 msm_mux_phase_flag18,
0527 msm_mux_phase_flag19,
0528 msm_mux_phase_flag2,
0529 msm_mux_phase_flag20,
0530 msm_mux_phase_flag21,
0531 msm_mux_phase_flag22,
0532 msm_mux_phase_flag23,
0533 msm_mux_phase_flag24,
0534 msm_mux_phase_flag25,
0535 msm_mux_phase_flag26,
0536 msm_mux_phase_flag27,
0537 msm_mux_phase_flag28,
0538 msm_mux_phase_flag29,
0539 msm_mux_phase_flag3,
0540 msm_mux_phase_flag30,
0541 msm_mux_phase_flag31,
0542 msm_mux_phase_flag4,
0543 msm_mux_phase_flag5,
0544 msm_mux_phase_flag6,
0545 msm_mux_phase_flag7,
0546 msm_mux_phase_flag8,
0547 msm_mux_phase_flag9,
0548 msm_mux_pll_bist,
0549 msm_mux_pll_bypassnl,
0550 msm_mux_pll_clk,
0551 msm_mux_pll_reset,
0552 msm_mux_prng_rosc0,
0553 msm_mux_prng_rosc1,
0554 msm_mux_prng_rosc2,
0555 msm_mux_prng_rosc3,
0556 msm_mux_qdss_cti,
0557 msm_mux_qdss_gpio,
0558 msm_mux_qdss_gpio0,
0559 msm_mux_qdss_gpio1,
0560 msm_mux_qdss_gpio10,
0561 msm_mux_qdss_gpio11,
0562 msm_mux_qdss_gpio12,
0563 msm_mux_qdss_gpio13,
0564 msm_mux_qdss_gpio14,
0565 msm_mux_qdss_gpio15,
0566 msm_mux_qdss_gpio2,
0567 msm_mux_qdss_gpio3,
0568 msm_mux_qdss_gpio4,
0569 msm_mux_qdss_gpio5,
0570 msm_mux_qdss_gpio6,
0571 msm_mux_qdss_gpio7,
0572 msm_mux_qdss_gpio8,
0573 msm_mux_qdss_gpio9,
0574 msm_mux_qlink0_enable,
0575 msm_mux_qlink0_request,
0576 msm_mux_qlink0_wmss,
0577 msm_mux_qlink1_enable,
0578 msm_mux_qlink1_request,
0579 msm_mux_qlink1_wmss,
0580 msm_mux_qup00,
0581 msm_mux_qup01,
0582 msm_mux_qup02,
0583 msm_mux_qup10,
0584 msm_mux_qup11_f1,
0585 msm_mux_qup11_f2,
0586 msm_mux_qup12,
0587 msm_mux_qup13_f1,
0588 msm_mux_qup13_f2,
0589 msm_mux_qup14,
0590 msm_mux_sd_write,
0591 msm_mux_sdc1_tb,
0592 msm_mux_sdc2_tb,
0593 msm_mux_sp_cmu,
0594 msm_mux_tgu_ch0,
0595 msm_mux_tgu_ch1,
0596 msm_mux_tgu_ch2,
0597 msm_mux_tgu_ch3,
0598 msm_mux_tsense_pwm1,
0599 msm_mux_tsense_pwm2,
0600 msm_mux_uim1_clk,
0601 msm_mux_uim1_data,
0602 msm_mux_uim1_present,
0603 msm_mux_uim1_reset,
0604 msm_mux_uim2_clk,
0605 msm_mux_uim2_data,
0606 msm_mux_uim2_present,
0607 msm_mux_uim2_reset,
0608 msm_mux_usb2phy_ac,
0609 msm_mux_usb_phy,
0610 msm_mux_vfr_1,
0611 msm_mux_vsense_trigger,
0612 msm_mux_wlan1_adc0,
0613 msm_mux_wlan1_adc1,
0614 msm_mux_wlan2_adc0,
0615 msm_mux_wlan2_adc1,
0616 msm_mux__,
0617 };
0618
0619 static const char * const gpio_groups[] = {
0620 "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
0621 "gpio8", "gpio9", "gpio11", "gpio12", "gpio13", "gpio14", "gpio15",
0622 "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21", "gpio22",
0623 "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", "gpio29",
0624 "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35", "gpio36",
0625 "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42", "gpio43",
0626 "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49", "gpio50",
0627 "gpio51", "gpio52", "gpio53", "gpio56", "gpio57", "gpio58", "gpio59",
0628 "gpio60", "gpio61", "gpio62", "gpio63", "gpio64", "gpio65", "gpio66",
0629 "gpio67", "gpio68", "gpio69", "gpio75", "gpio76", "gpio77", "gpio78",
0630 "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84", "gpio85",
0631 "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91", "gpio92",
0632 "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98", "gpio99",
0633 "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", "gpio105",
0634 "gpio106", "gpio107", "gpio108", "gpio109", "gpio110", "gpio111",
0635 "gpio112", "gpio113", "gpio114", "gpio115", "gpio116", "gpio117",
0636 "gpio118", "gpio119", "gpio120", "gpio124", "gpio125", "gpio126",
0637 "gpio127", "gpio128", "gpio129", "gpio130", "gpio131", "gpio132",
0638 "gpio133", "gpio134", "gpio135", "gpio136", "gpio141", "gpio142",
0639 "gpio143", "gpio150", "gpio151", "gpio152", "gpio153", "gpio154",
0640 "gpio155",
0641 };
0642 static const char * const agera_pll_groups[] = {
0643 "gpio89",
0644 };
0645 static const char * const cci_async_groups[] = {
0646 "gpio35", "gpio36", "gpio48", "gpio52", "gpio53",
0647 };
0648 static const char * const cci_i2c_groups[] = {
0649 "gpio2", "gpio3", "gpio39", "gpio40", "gpio41", "gpio42", "gpio43",
0650 "gpio44",
0651 };
0652 static const char * const gps_tx_groups[] = {
0653 "gpio101", "gpio102", "gpio107", "gpio108",
0654 };
0655 static const char * const gp_pdm0_groups[] = {
0656 "gpio37", "gpio68",
0657 };
0658 static const char * const gp_pdm1_groups[] = {
0659 "gpio8", "gpio52",
0660 };
0661 static const char * const gp_pdm2_groups[] = {
0662 "gpio57",
0663 };
0664 static const char * const jitter_bist_groups[] = {
0665 "gpio90",
0666 };
0667 static const char * const mclk_groups[] = {
0668 "gpio93",
0669 };
0670 static const char * const mdp_vsync_groups[] = {
0671 "gpio6", "gpio23", "gpio24", "gpio27", "gpio28",
0672 };
0673 static const char * const mss_lte_groups[] = {
0674 "gpio65", "gpio66",
0675 };
0676 static const char * const nav_pps_groups[] = {
0677 "gpio101", "gpio101", "gpio102", "gpio102",
0678 };
0679 static const char * const pll_bist_groups[] = {
0680 "gpio27",
0681 };
0682 static const char * const qlink0_wmss_groups[] = {
0683 "gpio103",
0684 };
0685 static const char * const qlink1_wmss_groups[] = {
0686 "gpio106",
0687 };
0688 static const char * const usb_phy_groups[] = {
0689 "gpio124",
0690 };
0691 static const char * const adsp_ext_groups[] = {
0692 "gpio87",
0693 };
0694 static const char * const atest_char_groups[] = {
0695 "gpio95",
0696 };
0697 static const char * const atest_char0_groups[] = {
0698 "gpio96",
0699 };
0700 static const char * const atest_char1_groups[] = {
0701 "gpio97",
0702 };
0703 static const char * const atest_char2_groups[] = {
0704 "gpio98",
0705 };
0706 static const char * const atest_char3_groups[] = {
0707 "gpio99",
0708 };
0709 static const char * const atest_tsens_groups[] = {
0710 "gpio92",
0711 };
0712 static const char * const atest_tsens2_groups[] = {
0713 "gpio93",
0714 };
0715 static const char * const atest_usb1_groups[] = {
0716 "gpio83",
0717 };
0718 static const char * const atest_usb10_groups[] = {
0719 "gpio84",
0720 };
0721 static const char * const atest_usb11_groups[] = {
0722 "gpio85",
0723 };
0724 static const char * const atest_usb12_groups[] = {
0725 "gpio86",
0726 };
0727 static const char * const atest_usb13_groups[] = {
0728 "gpio87",
0729 };
0730 static const char * const atest_usb2_groups[] = {
0731 "gpio88",
0732 };
0733 static const char * const atest_usb20_groups[] = {
0734 "gpio89",
0735 };
0736 static const char * const atest_usb21_groups[] = {
0737 "gpio90",
0738 };
0739 static const char * const atest_usb22_groups[] = {
0740 "gpio91",
0741 };
0742 static const char * const atest_usb23_groups[] = {
0743 "gpio92",
0744 };
0745 static const char * const audio_ref_groups[] = {
0746 "gpio60",
0747 };
0748 static const char * const btfm_slimbus_groups[] = {
0749 "gpio67", "gpio68", "gpio86", "gpio87",
0750 };
0751 static const char * const cam_mclk_groups[] = {
0752 "gpio29", "gpio30", "gpio31", "gpio32", "gpio33",
0753 };
0754 static const char * const cci_timer0_groups[] = {
0755 "gpio34",
0756 };
0757 static const char * const cci_timer1_groups[] = {
0758 "gpio35",
0759 };
0760 static const char * const cci_timer2_groups[] = {
0761 "gpio36",
0762 };
0763 static const char * const cci_timer3_groups[] = {
0764 "gpio37",
0765 };
0766 static const char * const cci_timer4_groups[] = {
0767 "gpio38",
0768 };
0769 static const char * const cri_trng_groups[] = {
0770 "gpio0", "gpio1", "gpio2",
0771 };
0772 static const char * const dbg_out_groups[] = {
0773 "gpio3",
0774 };
0775 static const char * const ddr_bist_groups[] = {
0776 "gpio19", "gpio20", "gpio21", "gpio22",
0777 };
0778 static const char * const ddr_pxi0_groups[] = {
0779 "gpio86", "gpio90",
0780 };
0781 static const char * const ddr_pxi1_groups[] = {
0782 "gpio87", "gpio91",
0783 };
0784 static const char * const ddr_pxi2_groups[] = {
0785 "gpio88", "gpio92",
0786 };
0787 static const char * const ddr_pxi3_groups[] = {
0788 "gpio89", "gpio93",
0789 };
0790 static const char * const dp_hot_groups[] = {
0791 "gpio12", "gpio118",
0792 };
0793 static const char * const edp_lcd_groups[] = {
0794 "gpio23",
0795 };
0796 static const char * const gcc_gp1_groups[] = {
0797 "gpio48", "gpio58",
0798 };
0799 static const char * const gcc_gp2_groups[] = {
0800 "gpio21",
0801 };
0802 static const char * const gcc_gp3_groups[] = {
0803 "gpio22",
0804 };
0805 static const char * const ibi_i3c_groups[] = {
0806 "gpio0", "gpio1",
0807 };
0808 static const char * const ldo_en_groups[] = {
0809 "gpio95",
0810 };
0811 static const char * const ldo_update_groups[] = {
0812 "gpio96",
0813 };
0814 static const char * const lpass_ext_groups[] = {
0815 "gpio60", "gpio93",
0816 };
0817 static const char * const m_voc_groups[] = {
0818 "gpio12",
0819 };
0820 static const char * const mdp_vsync0_groups[] = {
0821 "gpio47",
0822 };
0823 static const char * const mdp_vsync1_groups[] = {
0824 "gpio48",
0825 };
0826 static const char * const mdp_vsync2_groups[] = {
0827 "gpio56",
0828 };
0829 static const char * const mdp_vsync3_groups[] = {
0830 "gpio57",
0831 };
0832 static const char * const mi2s_0_groups[] = {
0833 "gpio88", "gpio89", "gpio90", "gpio91",
0834 };
0835 static const char * const mi2s_1_groups[] = {
0836 "gpio67", "gpio68", "gpio86", "gpio87",
0837 };
0838 static const char * const mi2s_2_groups[] = {
0839 "gpio60",
0840 };
0841 static const char * const nav_gpio_groups[] = {
0842 "gpio101", "gpio102",
0843 };
0844 static const char * const pa_indicator_groups[] = {
0845 "gpio118",
0846 };
0847 static const char * const phase_flag0_groups[] = {
0848 "gpio12",
0849 };
0850 static const char * const phase_flag1_groups[] = {
0851 "gpio17",
0852 };
0853 static const char * const phase_flag10_groups[] = {
0854 "gpio41",
0855 };
0856 static const char * const phase_flag11_groups[] = {
0857 "gpio42",
0858 };
0859 static const char * const phase_flag12_groups[] = {
0860 "gpio43",
0861 };
0862 static const char * const phase_flag13_groups[] = {
0863 "gpio44",
0864 };
0865 static const char * const phase_flag14_groups[] = {
0866 "gpio45",
0867 };
0868 static const char * const phase_flag15_groups[] = {
0869 "gpio46",
0870 };
0871 static const char * const phase_flag16_groups[] = {
0872 "gpio47",
0873 };
0874 static const char * const phase_flag17_groups[] = {
0875 "gpio48",
0876 };
0877 static const char * const phase_flag18_groups[] = {
0878 "gpio49",
0879 };
0880 static const char * const phase_flag19_groups[] = {
0881 "gpio50",
0882 };
0883 static const char * const phase_flag2_groups[] = {
0884 "gpio18",
0885 };
0886 static const char * const phase_flag20_groups[] = {
0887 "gpio51",
0888 };
0889 static const char * const phase_flag21_groups[] = {
0890 "gpio52",
0891 };
0892 static const char * const phase_flag22_groups[] = {
0893 "gpio53",
0894 };
0895 static const char * const phase_flag23_groups[] = {
0896 "gpio56",
0897 };
0898 static const char * const phase_flag24_groups[] = {
0899 "gpio57",
0900 };
0901 static const char * const phase_flag25_groups[] = {
0902 "gpio60",
0903 };
0904 static const char * const phase_flag26_groups[] = {
0905 "gpio61",
0906 };
0907 static const char * const phase_flag27_groups[] = {
0908 "gpio62",
0909 };
0910 static const char * const phase_flag28_groups[] = {
0911 "gpio63",
0912 };
0913 static const char * const phase_flag29_groups[] = {
0914 "gpio64",
0915 };
0916 static const char * const phase_flag3_groups[] = {
0917 "gpio34",
0918 };
0919 static const char * const phase_flag30_groups[] = {
0920 "gpio67",
0921 };
0922 static const char * const phase_flag31_groups[] = {
0923 "gpio68",
0924 };
0925 static const char * const phase_flag4_groups[] = {
0926 "gpio35",
0927 };
0928 static const char * const phase_flag5_groups[] = {
0929 "gpio36",
0930 };
0931 static const char * const phase_flag6_groups[] = {
0932 "gpio37",
0933 };
0934 static const char * const phase_flag7_groups[] = {
0935 "gpio38",
0936 };
0937 static const char * const phase_flag8_groups[] = {
0938 "gpio39",
0939 };
0940 static const char * const phase_flag9_groups[] = {
0941 "gpio40",
0942 };
0943 static const char * const pll_bypassnl_groups[] = {
0944 "gpio13",
0945 };
0946 static const char * const pll_clk_groups[] = {
0947 "gpio98",
0948 };
0949 static const char * const pll_reset_groups[] = {
0950 "gpio14",
0951 };
0952 static const char * const prng_rosc0_groups[] = {
0953 "gpio97",
0954 };
0955 static const char * const prng_rosc1_groups[] = {
0956 "gpio98",
0957 };
0958 static const char * const prng_rosc2_groups[] = {
0959 "gpio99",
0960 };
0961 static const char * const prng_rosc3_groups[] = {
0962 "gpio100",
0963 };
0964 static const char * const qdss_cti_groups[] = {
0965 "gpio2", "gpio3", "gpio6", "gpio7", "gpio61", "gpio62", "gpio86",
0966 "gpio87",
0967 };
0968 static const char * const qdss_gpio_groups[] = {
0969 "gpio8", "gpio9", "gpio63", "gpio64",
0970 };
0971 static const char * const qdss_gpio0_groups[] = {
0972 "gpio39", "gpio65",
0973 };
0974 static const char * const qdss_gpio1_groups[] = {
0975 "gpio40", "gpio66",
0976 };
0977 static const char * const qdss_gpio10_groups[] = {
0978 "gpio50", "gpio56",
0979 };
0980 static const char * const qdss_gpio11_groups[] = {
0981 "gpio51", "gpio57",
0982 };
0983 static const char * const qdss_gpio12_groups[] = {
0984 "gpio34", "gpio52",
0985 };
0986 static const char * const qdss_gpio13_groups[] = {
0987 "gpio35", "gpio53",
0988 };
0989 static const char * const qdss_gpio14_groups[] = {
0990 "gpio27", "gpio36",
0991 };
0992 static const char * const qdss_gpio15_groups[] = {
0993 "gpio28", "gpio37",
0994 };
0995 static const char * const qdss_gpio2_groups[] = {
0996 "gpio38", "gpio41",
0997 };
0998 static const char * const qdss_gpio3_groups[] = {
0999 "gpio42", "gpio47",
1000 };
1001 static const char * const qdss_gpio4_groups[] = {
1002 "gpio43", "gpio88",
1003 };
1004 static const char * const qdss_gpio5_groups[] = {
1005 "gpio44", "gpio89",
1006 };
1007 static const char * const qdss_gpio6_groups[] = {
1008 "gpio45", "gpio90",
1009 };
1010 static const char * const qdss_gpio7_groups[] = {
1011 "gpio46", "gpio91",
1012 };
1013 static const char * const qdss_gpio8_groups[] = {
1014 "gpio48", "gpio92",
1015 };
1016 static const char * const qdss_gpio9_groups[] = {
1017 "gpio49", "gpio93",
1018 };
1019 static const char * const qlink0_enable_groups[] = {
1020 "gpio105",
1021 };
1022 static const char * const qlink0_request_groups[] = {
1023 "gpio104",
1024 };
1025 static const char * const qlink1_enable_groups[] = {
1026 "gpio108",
1027 };
1028 static const char * const qlink1_request_groups[] = {
1029 "gpio107",
1030 };
1031 static const char * const qup00_groups[] = {
1032 "gpio0", "gpio1", "gpio2", "gpio3",
1033 };
1034 static const char * const qup01_groups[] = {
1035 "gpio61", "gpio62", "gpio63", "gpio64",
1036 };
1037 static const char * const qup02_groups[] = {
1038 "gpio45", "gpio46", "gpio48", "gpio56", "gpio57",
1039 };
1040 static const char * const qup10_groups[] = {
1041 "gpio13", "gpio14", "gpio15", "gpio16", "gpio17",
1042 };
1043 static const char * const qup11_f1_groups[] = {
1044 "gpio27", "gpio28",
1045 };
1046 static const char * const qup11_f2_groups[] = {
1047 "gpio27", "gpio28",
1048 };
1049
1050 static const char * const qup12_groups[] = {
1051 "gpio19", "gpio19", "gpio20", "gpio20",
1052 };
1053 static const char * const qup13_f1_groups[] = {
1054 "gpio25", "gpio26",
1055 };
1056 static const char * const qup13_f2_groups[] = {
1057 "gpio25", "gpio26",
1058 };
1059 static const char * const qup14_groups[] = {
1060 "gpio4", "gpio4", "gpio5", "gpio5",
1061 };
1062 static const char * const sd_write_groups[] = {
1063 "gpio85",
1064 };
1065 static const char * const sdc1_tb_groups[] = {
1066 "gpio4",
1067 };
1068 static const char * const sdc2_tb_groups[] = {
1069 "gpio5",
1070 };
1071 static const char * const sp_cmu_groups[] = {
1072 "gpio3",
1073 };
1074 static const char * const tgu_ch0_groups[] = {
1075 "gpio61",
1076 };
1077 static const char * const tgu_ch1_groups[] = {
1078 "gpio62",
1079 };
1080 static const char * const tgu_ch2_groups[] = {
1081 "gpio63",
1082 };
1083 static const char * const tgu_ch3_groups[] = {
1084 "gpio64",
1085 };
1086 static const char * const tsense_pwm1_groups[] = {
1087 "gpio88",
1088 };
1089 static const char * const tsense_pwm2_groups[] = {
1090 "gpio88",
1091 };
1092 static const char * const uim1_clk_groups[] = {
1093 "gpio80",
1094 };
1095 static const char * const uim1_data_groups[] = {
1096 "gpio79",
1097 };
1098 static const char * const uim1_present_groups[] = {
1099 "gpio82",
1100 };
1101 static const char * const uim1_reset_groups[] = {
1102 "gpio81",
1103 };
1104 static const char * const uim2_clk_groups[] = {
1105 "gpio76",
1106 };
1107 static const char * const uim2_data_groups[] = {
1108 "gpio75",
1109 };
1110 static const char * const uim2_present_groups[] = {
1111 "gpio78",
1112 };
1113 static const char * const uim2_reset_groups[] = {
1114 "gpio77",
1115 };
1116 static const char * const usb2phy_ac_groups[] = {
1117 "gpio47",
1118 };
1119 static const char * const vfr_1_groups[] = {
1120 "gpio49",
1121 };
1122 static const char * const vsense_trigger_groups[] = {
1123 "gpio89",
1124 };
1125 static const char * const wlan1_adc0_groups[] = {
1126 "gpio90",
1127 };
1128 static const char * const wlan1_adc1_groups[] = {
1129 "gpio92",
1130 };
1131 static const char * const wlan2_adc0_groups[] = {
1132 "gpio91",
1133 };
1134 static const char * const wlan2_adc1_groups[] = {
1135 "gpio93",
1136 };
1137
1138 static const struct msm_function sm6375_functions[] = {
1139 FUNCTION(adsp_ext),
1140 FUNCTION(agera_pll),
1141 FUNCTION(atest_char),
1142 FUNCTION(atest_char0),
1143 FUNCTION(atest_char1),
1144 FUNCTION(atest_char2),
1145 FUNCTION(atest_char3),
1146 FUNCTION(atest_tsens),
1147 FUNCTION(atest_tsens2),
1148 FUNCTION(atest_usb1),
1149 FUNCTION(atest_usb10),
1150 FUNCTION(atest_usb11),
1151 FUNCTION(atest_usb12),
1152 FUNCTION(atest_usb13),
1153 FUNCTION(atest_usb2),
1154 FUNCTION(atest_usb20),
1155 FUNCTION(atest_usb21),
1156 FUNCTION(atest_usb22),
1157 FUNCTION(atest_usb23),
1158 FUNCTION(audio_ref),
1159 FUNCTION(btfm_slimbus),
1160 FUNCTION(cam_mclk),
1161 FUNCTION(cci_async),
1162 FUNCTION(cci_i2c),
1163 FUNCTION(cci_timer0),
1164 FUNCTION(cci_timer1),
1165 FUNCTION(cci_timer2),
1166 FUNCTION(cci_timer3),
1167 FUNCTION(cci_timer4),
1168 FUNCTION(cri_trng),
1169 FUNCTION(dbg_out),
1170 FUNCTION(ddr_bist),
1171 FUNCTION(ddr_pxi0),
1172 FUNCTION(ddr_pxi1),
1173 FUNCTION(ddr_pxi2),
1174 FUNCTION(ddr_pxi3),
1175 FUNCTION(dp_hot),
1176 FUNCTION(edp_lcd),
1177 FUNCTION(gcc_gp1),
1178 FUNCTION(gcc_gp2),
1179 FUNCTION(gcc_gp3),
1180 FUNCTION(gp_pdm0),
1181 FUNCTION(gp_pdm1),
1182 FUNCTION(gp_pdm2),
1183 FUNCTION(gpio),
1184 FUNCTION(gps_tx),
1185 FUNCTION(ibi_i3c),
1186 FUNCTION(jitter_bist),
1187 FUNCTION(ldo_en),
1188 FUNCTION(ldo_update),
1189 FUNCTION(lpass_ext),
1190 FUNCTION(m_voc),
1191 FUNCTION(mclk),
1192 FUNCTION(mdp_vsync),
1193 FUNCTION(mdp_vsync0),
1194 FUNCTION(mdp_vsync1),
1195 FUNCTION(mdp_vsync2),
1196 FUNCTION(mdp_vsync3),
1197 FUNCTION(mi2s_0),
1198 FUNCTION(mi2s_1),
1199 FUNCTION(mi2s_2),
1200 FUNCTION(mss_lte),
1201 FUNCTION(nav_gpio),
1202 FUNCTION(nav_pps),
1203 FUNCTION(pa_indicator),
1204 FUNCTION(phase_flag0),
1205 FUNCTION(phase_flag1),
1206 FUNCTION(phase_flag10),
1207 FUNCTION(phase_flag11),
1208 FUNCTION(phase_flag12),
1209 FUNCTION(phase_flag13),
1210 FUNCTION(phase_flag14),
1211 FUNCTION(phase_flag15),
1212 FUNCTION(phase_flag16),
1213 FUNCTION(phase_flag17),
1214 FUNCTION(phase_flag18),
1215 FUNCTION(phase_flag19),
1216 FUNCTION(phase_flag2),
1217 FUNCTION(phase_flag20),
1218 FUNCTION(phase_flag21),
1219 FUNCTION(phase_flag22),
1220 FUNCTION(phase_flag23),
1221 FUNCTION(phase_flag24),
1222 FUNCTION(phase_flag25),
1223 FUNCTION(phase_flag26),
1224 FUNCTION(phase_flag27),
1225 FUNCTION(phase_flag28),
1226 FUNCTION(phase_flag29),
1227 FUNCTION(phase_flag3),
1228 FUNCTION(phase_flag30),
1229 FUNCTION(phase_flag31),
1230 FUNCTION(phase_flag4),
1231 FUNCTION(phase_flag5),
1232 FUNCTION(phase_flag6),
1233 FUNCTION(phase_flag7),
1234 FUNCTION(phase_flag8),
1235 FUNCTION(phase_flag9),
1236 FUNCTION(pll_bist),
1237 FUNCTION(pll_bypassnl),
1238 FUNCTION(pll_clk),
1239 FUNCTION(pll_reset),
1240 FUNCTION(prng_rosc0),
1241 FUNCTION(prng_rosc1),
1242 FUNCTION(prng_rosc2),
1243 FUNCTION(prng_rosc3),
1244 FUNCTION(qdss_cti),
1245 FUNCTION(qdss_gpio),
1246 FUNCTION(qdss_gpio0),
1247 FUNCTION(qdss_gpio1),
1248 FUNCTION(qdss_gpio10),
1249 FUNCTION(qdss_gpio11),
1250 FUNCTION(qdss_gpio12),
1251 FUNCTION(qdss_gpio13),
1252 FUNCTION(qdss_gpio14),
1253 FUNCTION(qdss_gpio15),
1254 FUNCTION(qdss_gpio2),
1255 FUNCTION(qdss_gpio3),
1256 FUNCTION(qdss_gpio4),
1257 FUNCTION(qdss_gpio5),
1258 FUNCTION(qdss_gpio6),
1259 FUNCTION(qdss_gpio7),
1260 FUNCTION(qdss_gpio8),
1261 FUNCTION(qdss_gpio9),
1262 FUNCTION(qlink0_enable),
1263 FUNCTION(qlink0_request),
1264 FUNCTION(qlink0_wmss),
1265 FUNCTION(qlink1_enable),
1266 FUNCTION(qlink1_request),
1267 FUNCTION(qlink1_wmss),
1268 FUNCTION(qup00),
1269 FUNCTION(qup01),
1270 FUNCTION(qup02),
1271 FUNCTION(qup10),
1272 FUNCTION(qup11_f1),
1273 FUNCTION(qup11_f2),
1274 FUNCTION(qup12),
1275 FUNCTION(qup13_f1),
1276 FUNCTION(qup13_f2),
1277 FUNCTION(qup14),
1278 FUNCTION(sd_write),
1279 FUNCTION(sdc1_tb),
1280 FUNCTION(sdc2_tb),
1281 FUNCTION(sp_cmu),
1282 FUNCTION(tgu_ch0),
1283 FUNCTION(tgu_ch1),
1284 FUNCTION(tgu_ch2),
1285 FUNCTION(tgu_ch3),
1286 FUNCTION(tsense_pwm1),
1287 FUNCTION(tsense_pwm2),
1288 FUNCTION(uim1_clk),
1289 FUNCTION(uim1_data),
1290 FUNCTION(uim1_present),
1291 FUNCTION(uim1_reset),
1292 FUNCTION(uim2_clk),
1293 FUNCTION(uim2_data),
1294 FUNCTION(uim2_present),
1295 FUNCTION(uim2_reset),
1296 FUNCTION(usb2phy_ac),
1297 FUNCTION(usb_phy),
1298 FUNCTION(vfr_1),
1299 FUNCTION(vsense_trigger),
1300 FUNCTION(wlan1_adc0),
1301 FUNCTION(wlan1_adc1),
1302 FUNCTION(wlan2_adc0),
1303 FUNCTION(wlan2_adc1),
1304 };
1305
1306
1307
1308
1309
1310
1311
1312 static const struct msm_pingroup sm6375_groups[] = {
1313 [0] = PINGROUP(0, ibi_i3c, qup00, cri_trng, _, _, _, _, _, _),
1314 [1] = PINGROUP(1, ibi_i3c, qup00, cri_trng, _, _, _, _, _, _),
1315 [2] = PINGROUP(2, qup00, cci_i2c, cri_trng, qdss_cti, _, _, _, _, _),
1316 [3] = PINGROUP(3, qup00, cci_i2c, sp_cmu, dbg_out, qdss_cti, _, _, _, _),
1317 [4] = PINGROUP(4, qup14, qup14, sdc1_tb, _, _, _, _, _, _),
1318 [5] = PINGROUP(5, qup14, qup14, sdc2_tb, _, _, _, _, _, _),
1319 [6] = PINGROUP(6, mdp_vsync, qdss_cti, _, _, _, _, _, _, _),
1320 [7] = PINGROUP(7, qdss_cti, _, _, _, _, _, _, _, _),
1321 [8] = PINGROUP(8, gp_pdm1, qdss_gpio, _, _, _, _, _, _, _),
1322 [9] = PINGROUP(9, qdss_gpio, _, _, _, _, _, _, _, _),
1323 [10] = PINGROUP(10, _, _, _, _, _, _, _, _, _),
1324 [11] = PINGROUP(11, _, _, _, _, _, _, _, _, _),
1325 [12] = PINGROUP(12, m_voc, dp_hot, _, phase_flag0, _, _, _, _, _),
1326 [13] = PINGROUP(13, qup10, pll_bypassnl, _, _, _, _, _, _, _),
1327 [14] = PINGROUP(14, qup10, pll_reset, _, _, _, _, _, _, _),
1328 [15] = PINGROUP(15, qup10, _, _, _, _, _, _, _, _),
1329 [16] = PINGROUP(16, qup10, _, _, _, _, _, _, _, _),
1330 [17] = PINGROUP(17, _, phase_flag1, qup10, _, _, _, _, _, _),
1331 [18] = PINGROUP(18, _, phase_flag2, _, _, _, _, _, _, _),
1332 [19] = PINGROUP(19, qup12, qup12, ddr_bist, _, _, _, _, _, _),
1333 [20] = PINGROUP(20, qup12, qup12, ddr_bist, _, _, _, _, _, _),
1334 [21] = PINGROUP(21, gcc_gp2, ddr_bist, _, _, _, _, _, _, _),
1335 [22] = PINGROUP(22, gcc_gp3, ddr_bist, _, _, _, _, _, _, _),
1336 [23] = PINGROUP(23, mdp_vsync, edp_lcd, _, _, _, _, _, _, _),
1337 [24] = PINGROUP(24, mdp_vsync, _, _, _, _, _, _, _, _),
1338 [25] = PINGROUP(25, qup13_f1, qup13_f2, _, _, _, _, _, _, _),
1339 [26] = PINGROUP(26, qup13_f1, qup13_f2, _, _, _, _, _, _, _),
1340 [27] = PINGROUP(27, qup11_f1, qup11_f2, mdp_vsync, pll_bist, _, qdss_gpio14, _, _, _),
1341 [28] = PINGROUP(28, qup11_f1, qup11_f2, mdp_vsync, _, qdss_gpio15, _, _, _, _),
1342 [29] = PINGROUP(29, cam_mclk, _, _, _, _, _, _, _, _),
1343 [30] = PINGROUP(30, cam_mclk, _, _, _, _, _, _, _, _),
1344 [31] = PINGROUP(31, cam_mclk, _, _, _, _, _, _, _, _),
1345 [32] = PINGROUP(32, cam_mclk, _, _, _, _, _, _, _, _),
1346 [33] = PINGROUP(33, cam_mclk, _, _, _, _, _, _, _, _),
1347 [34] = PINGROUP(34, cci_timer0, _, phase_flag3, qdss_gpio12, _, _, _, _, _),
1348 [35] = PINGROUP(35, cci_timer1, cci_async, _, phase_flag4, qdss_gpio13, _, _, _, _),
1349 [36] = PINGROUP(36, cci_timer2, cci_async, _, phase_flag5, qdss_gpio14, _, _, _, _),
1350 [37] = PINGROUP(37, cci_timer3, gp_pdm0, _, phase_flag6, qdss_gpio15, _, _, _, _),
1351 [38] = PINGROUP(38, cci_timer4, _, phase_flag7, qdss_gpio2, _, _, _, _, _),
1352 [39] = PINGROUP(39, cci_i2c, _, phase_flag8, qdss_gpio0, _, _, _, _, _),
1353 [40] = PINGROUP(40, cci_i2c, _, phase_flag9, qdss_gpio1, _, _, _, _, _),
1354 [41] = PINGROUP(41, cci_i2c, _, phase_flag10, qdss_gpio2, _, _, _, _, _),
1355 [42] = PINGROUP(42, cci_i2c, _, phase_flag11, qdss_gpio3, _, _, _, _, _),
1356 [43] = PINGROUP(43, cci_i2c, _, phase_flag12, qdss_gpio4, _, _, _, _, _),
1357 [44] = PINGROUP(44, cci_i2c, _, phase_flag13, qdss_gpio5, _, _, _, _, _),
1358 [45] = PINGROUP(45, qup02, _, phase_flag14, qdss_gpio6, _, _, _, _, _),
1359 [46] = PINGROUP(46, qup02, _, phase_flag15, qdss_gpio7, _, _, _, _, _),
1360 [47] = PINGROUP(47, mdp_vsync0, _, phase_flag16, qdss_gpio3, _, _, usb2phy_ac, _, _),
1361 [48] = PINGROUP(48, cci_async, mdp_vsync1, gcc_gp1, _, phase_flag17, qdss_gpio8, qup02,
1362 _, _),
1363 [49] = PINGROUP(49, vfr_1, _, phase_flag18, qdss_gpio9, _, _, _, _, _),
1364 [50] = PINGROUP(50, _, phase_flag19, qdss_gpio10, _, _, _, _, _, _),
1365 [51] = PINGROUP(51, _, phase_flag20, qdss_gpio11, _, _, _, _, _, _),
1366 [52] = PINGROUP(52, cci_async, gp_pdm1, _, phase_flag21, qdss_gpio12, _, _, _, _),
1367 [53] = PINGROUP(53, cci_async, _, phase_flag22, qdss_gpio13, _, _, _, _, _),
1368 [54] = PINGROUP(54, _, _, _, _, _, _, _, _, _),
1369 [55] = PINGROUP(55, _, _, _, _, _, _, _, _, _),
1370 [56] = PINGROUP(56, qup02, mdp_vsync2, _, phase_flag23, qdss_gpio10, _, _, _, _),
1371 [57] = PINGROUP(57, qup02, mdp_vsync3, gp_pdm2, _, phase_flag24, qdss_gpio11, _, _, _),
1372 [58] = PINGROUP(58, gcc_gp1, _, _, _, _, _, _, _, _),
1373 [59] = PINGROUP(59, _, _, _, _, _, _, _, _, _),
1374 [60] = PINGROUP(60, audio_ref, lpass_ext, mi2s_2, _, phase_flag25, _, _, _, _),
1375 [61] = PINGROUP(61, qup01, tgu_ch0, _, phase_flag26, qdss_cti, _, _, _, _),
1376 [62] = PINGROUP(62, qup01, tgu_ch1, _, phase_flag27, qdss_cti, _, _, _, _),
1377 [63] = PINGROUP(63, qup01, tgu_ch2, _, phase_flag28, qdss_gpio, _, _, _, _),
1378 [64] = PINGROUP(64, qup01, tgu_ch3, _, phase_flag29, qdss_gpio, _, _, _, _),
1379 [65] = PINGROUP(65, mss_lte, _, qdss_gpio0, _, _, _, _, _, _),
1380 [66] = PINGROUP(66, mss_lte, _, qdss_gpio1, _, _, _, _, _, _),
1381 [67] = PINGROUP(67, btfm_slimbus, mi2s_1, _, phase_flag30, _, _, _, _, _),
1382 [68] = PINGROUP(68, btfm_slimbus, mi2s_1, gp_pdm0, _, phase_flag31, _, _, _, _),
1383 [69] = PINGROUP(69, _, _, _, _, _, _, _, _, _),
1384 [70] = PINGROUP(70, _, _, _, _, _, _, _, _, _),
1385 [71] = PINGROUP(71, _, _, _, _, _, _, _, _, _),
1386 [72] = PINGROUP(72, _, _, _, _, _, _, _, _, _),
1387 [73] = PINGROUP(73, _, _, _, _, _, _, _, _, _),
1388 [74] = PINGROUP(74, _, _, _, _, _, _, _, _, _),
1389 [75] = PINGROUP(75, uim2_data, _, _, _, _, _, _, _, _),
1390 [76] = PINGROUP(76, uim2_clk, _, _, _, _, _, _, _, _),
1391 [77] = PINGROUP(77, uim2_reset, _, _, _, _, _, _, _, _),
1392 [78] = PINGROUP(78, uim2_present, _, _, _, _, _, _, _, _),
1393 [79] = PINGROUP(79, uim1_data, _, _, _, _, _, _, _, _),
1394 [80] = PINGROUP(80, uim1_clk, _, _, _, _, _, _, _, _),
1395 [81] = PINGROUP(81, uim1_reset, _, _, _, _, _, _, _, _),
1396 [82] = PINGROUP(82, uim1_present, _, _, _, _, _, _, _, _),
1397 [83] = PINGROUP(83, atest_usb1, _, _, _, _, _, _, _, _),
1398 [84] = PINGROUP(84, _, atest_usb10, _, _, _, _, _, _, _),
1399 [85] = PINGROUP(85, sd_write, _, atest_usb11, _, _, _, _, _, _),
1400 [86] = PINGROUP(86, btfm_slimbus, mi2s_1, _, qdss_cti, atest_usb12, ddr_pxi0, _, _, _),
1401 [87] = PINGROUP(87, btfm_slimbus, mi2s_1, adsp_ext, _, qdss_cti, atest_usb13, ddr_pxi1, _,
1402 _),
1403 [88] = PINGROUP(88, mi2s_0, _, qdss_gpio4, _, atest_usb2, ddr_pxi2, tsense_pwm1,
1404 tsense_pwm2, _),
1405 [89] = PINGROUP(89, mi2s_0, agera_pll, _, qdss_gpio5, _, vsense_trigger, atest_usb20,
1406 ddr_pxi3, _),
1407 [90] = PINGROUP(90, mi2s_0, jitter_bist, _, qdss_gpio6, _, wlan1_adc0, atest_usb21,
1408 ddr_pxi0, _),
1409 [91] = PINGROUP(91, mi2s_0, _, qdss_gpio7, _, wlan2_adc0, atest_usb22, ddr_pxi1, _, _),
1410 [92] = PINGROUP(92, _, qdss_gpio8, atest_tsens, wlan1_adc1, atest_usb23, ddr_pxi2, _, _,
1411 _),
1412 [93] = PINGROUP(93, mclk, lpass_ext, _, qdss_gpio9, atest_tsens2, wlan2_adc1, ddr_pxi3,
1413 _, _),
1414 [94] = PINGROUP(94, _, _, _, _, _, _, _, _, _),
1415 [95] = PINGROUP(95, ldo_en, _, atest_char, _, _, _, _, _, _),
1416 [96] = PINGROUP(96, ldo_update, _, atest_char0, _, _, _, _, _, _),
1417 [97] = PINGROUP(97, prng_rosc0, _, atest_char1, _, _, _, _, _, _),
1418 [98] = PINGROUP(98, _, atest_char2, _, _, prng_rosc1, pll_clk, _, _, _),
1419 [99] = PINGROUP(99, _, atest_char3, _, _, prng_rosc2, _, _, _, _),
1420 [100] = PINGROUP(100, _, _, prng_rosc3, _, _, _, _, _, _),
1421 [101] = PINGROUP(101, nav_gpio, nav_pps, nav_pps, gps_tx, _, _, _, _, _),
1422 [102] = PINGROUP(102, nav_gpio, nav_pps, nav_pps, gps_tx, _, _, _, _, _),
1423 [103] = PINGROUP(103, qlink0_wmss, _, _, _, _, _, _, _, _),
1424 [104] = PINGROUP(104, qlink0_request, _, _, _, _, _, _, _, _),
1425 [105] = PINGROUP(105, qlink0_enable, _, _, _, _, _, _, _, _),
1426 [106] = PINGROUP(106, qlink1_wmss, _, _, _, _, _, _, _, _),
1427 [107] = PINGROUP(107, qlink1_request, gps_tx, _, _, _, _, _, _, _),
1428 [108] = PINGROUP(108, qlink1_enable, gps_tx, _, _, _, _, _, _, _),
1429 [109] = PINGROUP(109, _, _, _, _, _, _, _, _, _),
1430 [110] = PINGROUP(110, _, _, _, _, _, _, _, _, _),
1431 [111] = PINGROUP(111, _, _, _, _, _, _, _, _, _),
1432 [112] = PINGROUP(112, _, _, _, _, _, _, _, _, _),
1433 [113] = PINGROUP(113, _, _, _, _, _, _, _, _, _),
1434 [114] = PINGROUP(114, _, _, _, _, _, _, _, _, _),
1435 [115] = PINGROUP(115, _, _, _, _, _, _, _, _, _),
1436 [116] = PINGROUP(116, _, _, _, _, _, _, _, _, _),
1437 [117] = PINGROUP(117, _, _, _, _, _, _, _, _, _),
1438 [118] = PINGROUP(118, _, _, pa_indicator, dp_hot, _, _, _, _, _),
1439 [119] = PINGROUP(119, _, _, _, _, _, _, _, _, _),
1440 [120] = PINGROUP(120, _, _, _, _, _, _, _, _, _),
1441 [121] = PINGROUP(121, _, _, _, _, _, _, _, _, _),
1442 [122] = PINGROUP(122, _, _, _, _, _, _, _, _, _),
1443 [123] = PINGROUP(123, _, _, _, _, _, _, _, _, _),
1444 [124] = PINGROUP(124, usb_phy, _, _, _, _, _, _, _, _),
1445 [125] = PINGROUP(125, _, _, _, _, _, _, _, _, _),
1446 [126] = PINGROUP(126, _, _, _, _, _, _, _, _, _),
1447 [127] = PINGROUP(127, _, _, _, _, _, _, _, _, _),
1448 [128] = PINGROUP(128, _, _, _, _, _, _, _, _, _),
1449 [129] = PINGROUP(129, _, _, _, _, _, _, _, _, _),
1450 [130] = PINGROUP(130, _, _, _, _, _, _, _, _, _),
1451 [131] = PINGROUP(131, _, _, _, _, _, _, _, _, _),
1452 [132] = PINGROUP(132, _, _, _, _, _, _, _, _, _),
1453 [133] = PINGROUP(133, _, _, _, _, _, _, _, _, _),
1454 [134] = PINGROUP(134, _, _, _, _, _, _, _, _, _),
1455 [135] = PINGROUP(135, _, _, _, _, _, _, _, _, _),
1456 [136] = PINGROUP(136, _, _, _, _, _, _, _, _, _),
1457 [137] = PINGROUP(137, _, _, _, _, _, _, _, _, _),
1458 [138] = PINGROUP(138, _, _, _, _, _, _, _, _, _),
1459 [139] = PINGROUP(139, _, _, _, _, _, _, _, _, _),
1460 [140] = PINGROUP(140, _, _, _, _, _, _, _, _, _),
1461 [141] = PINGROUP(141, _, _, _, _, _, _, _, _, _),
1462 [142] = PINGROUP(142, _, _, _, _, _, _, _, _, _),
1463 [143] = PINGROUP(143, _, _, _, _, _, _, _, _, _),
1464 [144] = PINGROUP(144, _, _, _, _, _, _, _, _, _),
1465 [145] = PINGROUP(145, _, _, _, _, _, _, _, _, _),
1466 [146] = PINGROUP(146, _, _, _, _, _, _, _, _, _),
1467 [147] = PINGROUP(147, _, _, _, _, _, _, _, _, _),
1468 [148] = PINGROUP(148, _, _, _, _, _, _, _, _, _),
1469 [149] = PINGROUP(149, _, _, _, _, _, _, _, _, _),
1470 [150] = PINGROUP(150, _, _, _, _, _, _, _, _, _),
1471 [151] = PINGROUP(151, _, _, _, _, _, _, _, _, _),
1472 [152] = PINGROUP(152, _, _, _, _, _, _, _, _, _),
1473 [153] = PINGROUP(153, _, _, _, _, _, _, _, _, _),
1474 [154] = PINGROUP(154, _, _, _, _, _, _, _, _, _),
1475 [155] = PINGROUP(155, _, _, _, _, _, _, _, _, _),
1476 [156] = UFS_RESET(ufs_reset, 0x1ae000),
1477 [157] = SDC_PINGROUP(sdc1_rclk, 0x1a1000, 0, 0),
1478 [158] = SDC_PINGROUP(sdc1_clk, 0x1a0000, 13, 6),
1479 [159] = SDC_PINGROUP(sdc1_cmd, 0x1a0000, 11, 3),
1480 [160] = SDC_PINGROUP(sdc1_data, 0x1a0000, 9, 0),
1481 [161] = SDC_PINGROUP(sdc2_clk, 0x1a2000, 14, 6),
1482 [162] = SDC_PINGROUP(sdc2_cmd, 0x1a2000, 11, 3),
1483 [163] = SDC_PINGROUP(sdc2_data, 0x1a2000, 9, 0),
1484 };
1485
1486 static const struct msm_gpio_wakeirq_map sm6375_mpm_map[] = {
1487 { 0, 84 }, { 3, 6 }, { 4, 7 }, { 7, 8 }, { 8, 9 }, { 9, 10 }, { 11, 11 }, { 12, 13 },
1488 { 13, 14 }, { 16, 16 }, { 17, 17 }, { 18, 18 }, { 19, 19 }, { 21, 20 }, { 22, 21 },
1489 { 23, 23 }, { 24, 24 }, { 25, 25 }, { 27, 26 }, { 28, 27 }, { 37, 28 }, { 38, 29 },
1490 { 48, 30 }, { 50, 31 }, { 51, 32 }, { 52, 33 }, { 57, 34 }, { 59, 35 }, { 60, 37 },
1491 { 61, 38 }, { 62, 39 }, { 64, 40 }, { 66, 41 }, { 67, 42 }, { 68, 43 }, { 69, 44 },
1492 { 78, 45 }, { 82, 36 }, { 83, 47 }, { 84, 48 }, { 85, 49 }, { 87, 50 }, { 88, 51 },
1493 { 91, 52 }, { 94, 53 }, { 95, 54 }, { 96, 55 }, { 97, 56 }, { 98, 57 }, { 99, 58 },
1494 { 100, 59 }, { 104, 60 }, { 107, 61 }, { 118, 62 }, { 124, 63 }, { 125, 64 }, { 126, 65 },
1495 { 128, 66 }, { 129, 67 }, { 131, 69 }, { 133, 70 }, { 134, 71 }, { 136, 73 }, { 142, 74 },
1496 { 150, 75 }, { 153, 76 }, { 155, 77 },
1497 };
1498
1499 static const struct msm_pinctrl_soc_data sm6375_tlmm = {
1500 .pins = sm6375_pins,
1501 .npins = ARRAY_SIZE(sm6375_pins),
1502 .functions = sm6375_functions,
1503 .nfunctions = ARRAY_SIZE(sm6375_functions),
1504 .groups = sm6375_groups,
1505 .ngroups = ARRAY_SIZE(sm6375_groups),
1506 .ngpios = 157,
1507 .wakeirq_map = sm6375_mpm_map,
1508 .nwakeirq_map = ARRAY_SIZE(sm6375_mpm_map),
1509 };
1510
1511 static int sm6375_tlmm_probe(struct platform_device *pdev)
1512 {
1513 return msm_pinctrl_probe(pdev, &sm6375_tlmm);
1514 }
1515
1516 static const struct of_device_id sm6375_tlmm_of_match[] = {
1517 { .compatible = "qcom,sm6375-tlmm", },
1518 { },
1519 };
1520
1521 static struct platform_driver sm6375_tlmm_driver = {
1522 .driver = {
1523 .name = "sm6375-tlmm",
1524 .of_match_table = sm6375_tlmm_of_match,
1525 },
1526 .probe = sm6375_tlmm_probe,
1527 .remove = msm_pinctrl_remove,
1528 };
1529
1530 static int __init sm6375_tlmm_init(void)
1531 {
1532 return platform_driver_register(&sm6375_tlmm_driver);
1533 }
1534 arch_initcall(sm6375_tlmm_init);
1535
1536 static void __exit sm6375_tlmm_exit(void)
1537 {
1538 platform_driver_unregister(&sm6375_tlmm_driver);
1539 }
1540 module_exit(sm6375_tlmm_exit);
1541
1542 MODULE_DESCRIPTION("QTI SM6375 TLMM driver");
1543 MODULE_LICENSE("GPL");
1544 MODULE_DEVICE_TABLE(of, sm6375_tlmm_of_match);