root/drivers/pinctrl/qcom/pinctrl-sc7180.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. sc7180_pinctrl_probe
  2. sc7180_pinctrl_init
  3. sc7180_pinctrl_exit

   1 // SPDX-License-Identifier: GPL-2.0
   2 // Copyright (c) 2019, The Linux Foundation. All rights reserved.
   3 
   4 #include <linux/module.h>
   5 #include <linux/of.h>
   6 #include <linux/platform_device.h>
   7 #include <linux/pinctrl/pinctrl.h>
   8 
   9 #include "pinctrl-msm.h"
  10 
  11 static const char * const sc7180_tiles[] = {
  12         "north",
  13         "south",
  14         "west",
  15 };
  16 
  17 enum {
  18         NORTH,
  19         SOUTH,
  20         WEST
  21 };
  22 
  23 #define FUNCTION(fname)                                 \
  24         [msm_mux_##fname] = {                           \
  25                 .name = #fname,                         \
  26                 .groups = fname##_groups,               \
  27                 .ngroups = ARRAY_SIZE(fname##_groups),  \
  28         }
  29 
  30 #define PINGROUP(id, _tile, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
  31         {                                               \
  32                 .name = "gpio" #id,                     \
  33                 .pins = gpio##id##_pins,                \
  34                 .npins = ARRAY_SIZE(gpio##id##_pins),   \
  35                 .funcs = (int[]){                       \
  36                         msm_mux_gpio, /* gpio mode */   \
  37                         msm_mux_##f1,                   \
  38                         msm_mux_##f2,                   \
  39                         msm_mux_##f3,                   \
  40                         msm_mux_##f4,                   \
  41                         msm_mux_##f5,                   \
  42                         msm_mux_##f6,                   \
  43                         msm_mux_##f7,                   \
  44                         msm_mux_##f8,                   \
  45                         msm_mux_##f9                    \
  46                 },                                      \
  47                 .nfuncs = 10,                           \
  48                 .ctl_reg = 0x1000 * id,         \
  49                 .io_reg = 0x1000 * id + 0x4,            \
  50                 .intr_cfg_reg = 0x1000 * id + 0x8,      \
  51                 .intr_status_reg = 0x1000 * id + 0xc,   \
  52                 .intr_target_reg = 0x1000 * id + 0x8,   \
  53                 .tile = _tile,                  \
  54                 .mux_bit = 2,                   \
  55                 .pull_bit = 0,                  \
  56                 .drv_bit = 6,                   \
  57                 .oe_bit = 9,                    \
  58                 .in_bit = 0,                    \
  59                 .out_bit = 1,                   \
  60                 .intr_enable_bit = 0,           \
  61                 .intr_status_bit = 0,           \
  62                 .intr_target_bit = 5,           \
  63                 .intr_target_kpss_val = 3,      \
  64                 .intr_raw_status_bit = 4,       \
  65                 .intr_polarity_bit = 1,         \
  66                 .intr_detection_bit = 2,        \
  67                 .intr_detection_width = 2,      \
  68         }
  69 
  70 #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv)      \
  71         {                                               \
  72                 .name = #pg_name,                       \
  73                 .pins = pg_name##_pins,                 \
  74                 .npins = ARRAY_SIZE(pg_name##_pins),    \
  75                 .ctl_reg = ctl,                         \
  76                 .io_reg = 0,                            \
  77                 .intr_cfg_reg = 0,                      \
  78                 .intr_status_reg = 0,                   \
  79                 .intr_target_reg = 0,                   \
  80                 .tile = SOUTH,                          \
  81                 .mux_bit = -1,                          \
  82                 .pull_bit = pull,                       \
  83                 .drv_bit = drv,                         \
  84                 .oe_bit = -1,                           \
  85                 .in_bit = -1,                           \
  86                 .out_bit = -1,                          \
  87                 .intr_enable_bit = -1,                  \
  88                 .intr_status_bit = -1,                  \
  89                 .intr_target_bit = -1,                  \
  90                 .intr_raw_status_bit = -1,              \
  91                 .intr_polarity_bit = -1,                \
  92                 .intr_detection_bit = -1,               \
  93                 .intr_detection_width = -1,             \
  94         }
  95 
  96 #define UFS_RESET(pg_name, offset)                              \
  97         {                                               \
  98                 .name = #pg_name,                       \
  99                 .pins = pg_name##_pins,                 \
 100                 .npins = ARRAY_SIZE(pg_name##_pins),    \
 101                 .ctl_reg = offset,                      \
 102                 .io_reg = offset + 0x4,                 \
 103                 .intr_cfg_reg = 0,                      \
 104                 .intr_status_reg = 0,                   \
 105                 .intr_target_reg = 0,                   \
 106                 .tile = SOUTH,                          \
 107                 .mux_bit = -1,                          \
 108                 .pull_bit = 3,                          \
 109                 .drv_bit = 0,                           \
 110                 .oe_bit = -1,                           \
 111                 .in_bit = -1,                           \
 112                 .out_bit = 0,                           \
 113                 .intr_enable_bit = -1,                  \
 114                 .intr_status_bit = -1,                  \
 115                 .intr_target_bit = -1,                  \
 116                 .intr_raw_status_bit = -1,              \
 117                 .intr_polarity_bit = -1,                \
 118                 .intr_detection_bit = -1,               \
 119                 .intr_detection_width = -1,             \
 120         }
 121 static const struct pinctrl_pin_desc sc7180_pins[] = {
 122         PINCTRL_PIN(0, "GPIO_0"),
 123         PINCTRL_PIN(1, "GPIO_1"),
 124         PINCTRL_PIN(2, "GPIO_2"),
 125         PINCTRL_PIN(3, "GPIO_3"),
 126         PINCTRL_PIN(4, "GPIO_4"),
 127         PINCTRL_PIN(5, "GPIO_5"),
 128         PINCTRL_PIN(6, "GPIO_6"),
 129         PINCTRL_PIN(7, "GPIO_7"),
 130         PINCTRL_PIN(8, "GPIO_8"),
 131         PINCTRL_PIN(9, "GPIO_9"),
 132         PINCTRL_PIN(10, "GPIO_10"),
 133         PINCTRL_PIN(11, "GPIO_11"),
 134         PINCTRL_PIN(12, "GPIO_12"),
 135         PINCTRL_PIN(13, "GPIO_13"),
 136         PINCTRL_PIN(14, "GPIO_14"),
 137         PINCTRL_PIN(15, "GPIO_15"),
 138         PINCTRL_PIN(16, "GPIO_16"),
 139         PINCTRL_PIN(17, "GPIO_17"),
 140         PINCTRL_PIN(18, "GPIO_18"),
 141         PINCTRL_PIN(19, "GPIO_19"),
 142         PINCTRL_PIN(20, "GPIO_20"),
 143         PINCTRL_PIN(21, "GPIO_21"),
 144         PINCTRL_PIN(22, "GPIO_22"),
 145         PINCTRL_PIN(23, "GPIO_23"),
 146         PINCTRL_PIN(24, "GPIO_24"),
 147         PINCTRL_PIN(25, "GPIO_25"),
 148         PINCTRL_PIN(26, "GPIO_26"),
 149         PINCTRL_PIN(27, "GPIO_27"),
 150         PINCTRL_PIN(28, "GPIO_28"),
 151         PINCTRL_PIN(29, "GPIO_29"),
 152         PINCTRL_PIN(30, "GPIO_30"),
 153         PINCTRL_PIN(31, "GPIO_31"),
 154         PINCTRL_PIN(32, "GPIO_32"),
 155         PINCTRL_PIN(33, "GPIO_33"),
 156         PINCTRL_PIN(34, "GPIO_34"),
 157         PINCTRL_PIN(35, "GPIO_35"),
 158         PINCTRL_PIN(36, "GPIO_36"),
 159         PINCTRL_PIN(37, "GPIO_37"),
 160         PINCTRL_PIN(38, "GPIO_38"),
 161         PINCTRL_PIN(39, "GPIO_39"),
 162         PINCTRL_PIN(40, "GPIO_40"),
 163         PINCTRL_PIN(41, "GPIO_41"),
 164         PINCTRL_PIN(42, "GPIO_42"),
 165         PINCTRL_PIN(43, "GPIO_43"),
 166         PINCTRL_PIN(44, "GPIO_44"),
 167         PINCTRL_PIN(45, "GPIO_45"),
 168         PINCTRL_PIN(46, "GPIO_46"),
 169         PINCTRL_PIN(47, "GPIO_47"),
 170         PINCTRL_PIN(48, "GPIO_48"),
 171         PINCTRL_PIN(49, "GPIO_49"),
 172         PINCTRL_PIN(50, "GPIO_50"),
 173         PINCTRL_PIN(51, "GPIO_51"),
 174         PINCTRL_PIN(52, "GPIO_52"),
 175         PINCTRL_PIN(53, "GPIO_53"),
 176         PINCTRL_PIN(54, "GPIO_54"),
 177         PINCTRL_PIN(55, "GPIO_55"),
 178         PINCTRL_PIN(56, "GPIO_56"),
 179         PINCTRL_PIN(57, "GPIO_57"),
 180         PINCTRL_PIN(58, "GPIO_58"),
 181         PINCTRL_PIN(59, "GPIO_59"),
 182         PINCTRL_PIN(60, "GPIO_60"),
 183         PINCTRL_PIN(61, "GPIO_61"),
 184         PINCTRL_PIN(62, "GPIO_62"),
 185         PINCTRL_PIN(63, "GPIO_63"),
 186         PINCTRL_PIN(64, "GPIO_64"),
 187         PINCTRL_PIN(65, "GPIO_65"),
 188         PINCTRL_PIN(66, "GPIO_66"),
 189         PINCTRL_PIN(67, "GPIO_67"),
 190         PINCTRL_PIN(68, "GPIO_68"),
 191         PINCTRL_PIN(69, "GPIO_69"),
 192         PINCTRL_PIN(70, "GPIO_70"),
 193         PINCTRL_PIN(71, "GPIO_71"),
 194         PINCTRL_PIN(72, "GPIO_72"),
 195         PINCTRL_PIN(73, "GPIO_73"),
 196         PINCTRL_PIN(74, "GPIO_74"),
 197         PINCTRL_PIN(75, "GPIO_75"),
 198         PINCTRL_PIN(76, "GPIO_76"),
 199         PINCTRL_PIN(77, "GPIO_77"),
 200         PINCTRL_PIN(78, "GPIO_78"),
 201         PINCTRL_PIN(79, "GPIO_79"),
 202         PINCTRL_PIN(80, "GPIO_80"),
 203         PINCTRL_PIN(81, "GPIO_81"),
 204         PINCTRL_PIN(82, "GPIO_82"),
 205         PINCTRL_PIN(83, "GPIO_83"),
 206         PINCTRL_PIN(84, "GPIO_84"),
 207         PINCTRL_PIN(85, "GPIO_85"),
 208         PINCTRL_PIN(86, "GPIO_86"),
 209         PINCTRL_PIN(87, "GPIO_87"),
 210         PINCTRL_PIN(88, "GPIO_88"),
 211         PINCTRL_PIN(89, "GPIO_89"),
 212         PINCTRL_PIN(90, "GPIO_90"),
 213         PINCTRL_PIN(91, "GPIO_91"),
 214         PINCTRL_PIN(92, "GPIO_92"),
 215         PINCTRL_PIN(93, "GPIO_93"),
 216         PINCTRL_PIN(94, "GPIO_94"),
 217         PINCTRL_PIN(95, "GPIO_95"),
 218         PINCTRL_PIN(96, "GPIO_96"),
 219         PINCTRL_PIN(97, "GPIO_97"),
 220         PINCTRL_PIN(98, "GPIO_98"),
 221         PINCTRL_PIN(99, "GPIO_99"),
 222         PINCTRL_PIN(100, "GPIO_100"),
 223         PINCTRL_PIN(101, "GPIO_101"),
 224         PINCTRL_PIN(102, "GPIO_102"),
 225         PINCTRL_PIN(103, "GPIO_103"),
 226         PINCTRL_PIN(104, "GPIO_104"),
 227         PINCTRL_PIN(105, "GPIO_105"),
 228         PINCTRL_PIN(106, "GPIO_106"),
 229         PINCTRL_PIN(107, "GPIO_107"),
 230         PINCTRL_PIN(108, "GPIO_108"),
 231         PINCTRL_PIN(109, "GPIO_109"),
 232         PINCTRL_PIN(110, "GPIO_110"),
 233         PINCTRL_PIN(111, "GPIO_111"),
 234         PINCTRL_PIN(112, "GPIO_112"),
 235         PINCTRL_PIN(113, "GPIO_113"),
 236         PINCTRL_PIN(114, "GPIO_114"),
 237         PINCTRL_PIN(115, "GPIO_115"),
 238         PINCTRL_PIN(116, "GPIO_116"),
 239         PINCTRL_PIN(117, "GPIO_117"),
 240         PINCTRL_PIN(118, "GPIO_118"),
 241         PINCTRL_PIN(119, "UFS_RESET"),
 242         PINCTRL_PIN(120, "SDC1_RCLK"),
 243         PINCTRL_PIN(121, "SDC1_CLK"),
 244         PINCTRL_PIN(122, "SDC1_CMD"),
 245         PINCTRL_PIN(123, "SDC1_DATA"),
 246         PINCTRL_PIN(124, "SDC2_CLK"),
 247         PINCTRL_PIN(125, "SDC2_CMD"),
 248         PINCTRL_PIN(126, "SDC2_DATA"),
 249 };
 250 
 251 #define DECLARE_MSM_GPIO_PINS(pin) \
 252         static const unsigned int gpio##pin##_pins[] = { pin }
 253 DECLARE_MSM_GPIO_PINS(0);
 254 DECLARE_MSM_GPIO_PINS(1);
 255 DECLARE_MSM_GPIO_PINS(2);
 256 DECLARE_MSM_GPIO_PINS(3);
 257 DECLARE_MSM_GPIO_PINS(4);
 258 DECLARE_MSM_GPIO_PINS(5);
 259 DECLARE_MSM_GPIO_PINS(6);
 260 DECLARE_MSM_GPIO_PINS(7);
 261 DECLARE_MSM_GPIO_PINS(8);
 262 DECLARE_MSM_GPIO_PINS(9);
 263 DECLARE_MSM_GPIO_PINS(10);
 264 DECLARE_MSM_GPIO_PINS(11);
 265 DECLARE_MSM_GPIO_PINS(12);
 266 DECLARE_MSM_GPIO_PINS(13);
 267 DECLARE_MSM_GPIO_PINS(14);
 268 DECLARE_MSM_GPIO_PINS(15);
 269 DECLARE_MSM_GPIO_PINS(16);
 270 DECLARE_MSM_GPIO_PINS(17);
 271 DECLARE_MSM_GPIO_PINS(18);
 272 DECLARE_MSM_GPIO_PINS(19);
 273 DECLARE_MSM_GPIO_PINS(20);
 274 DECLARE_MSM_GPIO_PINS(21);
 275 DECLARE_MSM_GPIO_PINS(22);
 276 DECLARE_MSM_GPIO_PINS(23);
 277 DECLARE_MSM_GPIO_PINS(24);
 278 DECLARE_MSM_GPIO_PINS(25);
 279 DECLARE_MSM_GPIO_PINS(26);
 280 DECLARE_MSM_GPIO_PINS(27);
 281 DECLARE_MSM_GPIO_PINS(28);
 282 DECLARE_MSM_GPIO_PINS(29);
 283 DECLARE_MSM_GPIO_PINS(30);
 284 DECLARE_MSM_GPIO_PINS(31);
 285 DECLARE_MSM_GPIO_PINS(32);
 286 DECLARE_MSM_GPIO_PINS(33);
 287 DECLARE_MSM_GPIO_PINS(34);
 288 DECLARE_MSM_GPIO_PINS(35);
 289 DECLARE_MSM_GPIO_PINS(36);
 290 DECLARE_MSM_GPIO_PINS(37);
 291 DECLARE_MSM_GPIO_PINS(38);
 292 DECLARE_MSM_GPIO_PINS(39);
 293 DECLARE_MSM_GPIO_PINS(40);
 294 DECLARE_MSM_GPIO_PINS(41);
 295 DECLARE_MSM_GPIO_PINS(42);
 296 DECLARE_MSM_GPIO_PINS(43);
 297 DECLARE_MSM_GPIO_PINS(44);
 298 DECLARE_MSM_GPIO_PINS(45);
 299 DECLARE_MSM_GPIO_PINS(46);
 300 DECLARE_MSM_GPIO_PINS(47);
 301 DECLARE_MSM_GPIO_PINS(48);
 302 DECLARE_MSM_GPIO_PINS(49);
 303 DECLARE_MSM_GPIO_PINS(50);
 304 DECLARE_MSM_GPIO_PINS(51);
 305 DECLARE_MSM_GPIO_PINS(52);
 306 DECLARE_MSM_GPIO_PINS(53);
 307 DECLARE_MSM_GPIO_PINS(54);
 308 DECLARE_MSM_GPIO_PINS(55);
 309 DECLARE_MSM_GPIO_PINS(56);
 310 DECLARE_MSM_GPIO_PINS(57);
 311 DECLARE_MSM_GPIO_PINS(58);
 312 DECLARE_MSM_GPIO_PINS(59);
 313 DECLARE_MSM_GPIO_PINS(60);
 314 DECLARE_MSM_GPIO_PINS(61);
 315 DECLARE_MSM_GPIO_PINS(62);
 316 DECLARE_MSM_GPIO_PINS(63);
 317 DECLARE_MSM_GPIO_PINS(64);
 318 DECLARE_MSM_GPIO_PINS(65);
 319 DECLARE_MSM_GPIO_PINS(66);
 320 DECLARE_MSM_GPIO_PINS(67);
 321 DECLARE_MSM_GPIO_PINS(68);
 322 DECLARE_MSM_GPIO_PINS(69);
 323 DECLARE_MSM_GPIO_PINS(70);
 324 DECLARE_MSM_GPIO_PINS(71);
 325 DECLARE_MSM_GPIO_PINS(72);
 326 DECLARE_MSM_GPIO_PINS(73);
 327 DECLARE_MSM_GPIO_PINS(74);
 328 DECLARE_MSM_GPIO_PINS(75);
 329 DECLARE_MSM_GPIO_PINS(76);
 330 DECLARE_MSM_GPIO_PINS(77);
 331 DECLARE_MSM_GPIO_PINS(78);
 332 DECLARE_MSM_GPIO_PINS(79);
 333 DECLARE_MSM_GPIO_PINS(80);
 334 DECLARE_MSM_GPIO_PINS(81);
 335 DECLARE_MSM_GPIO_PINS(82);
 336 DECLARE_MSM_GPIO_PINS(83);
 337 DECLARE_MSM_GPIO_PINS(84);
 338 DECLARE_MSM_GPIO_PINS(85);
 339 DECLARE_MSM_GPIO_PINS(86);
 340 DECLARE_MSM_GPIO_PINS(87);
 341 DECLARE_MSM_GPIO_PINS(88);
 342 DECLARE_MSM_GPIO_PINS(89);
 343 DECLARE_MSM_GPIO_PINS(90);
 344 DECLARE_MSM_GPIO_PINS(91);
 345 DECLARE_MSM_GPIO_PINS(92);
 346 DECLARE_MSM_GPIO_PINS(93);
 347 DECLARE_MSM_GPIO_PINS(94);
 348 DECLARE_MSM_GPIO_PINS(95);
 349 DECLARE_MSM_GPIO_PINS(96);
 350 DECLARE_MSM_GPIO_PINS(97);
 351 DECLARE_MSM_GPIO_PINS(98);
 352 DECLARE_MSM_GPIO_PINS(99);
 353 DECLARE_MSM_GPIO_PINS(100);
 354 DECLARE_MSM_GPIO_PINS(101);
 355 DECLARE_MSM_GPIO_PINS(102);
 356 DECLARE_MSM_GPIO_PINS(103);
 357 DECLARE_MSM_GPIO_PINS(104);
 358 DECLARE_MSM_GPIO_PINS(105);
 359 DECLARE_MSM_GPIO_PINS(106);
 360 DECLARE_MSM_GPIO_PINS(107);
 361 DECLARE_MSM_GPIO_PINS(108);
 362 DECLARE_MSM_GPIO_PINS(109);
 363 DECLARE_MSM_GPIO_PINS(110);
 364 DECLARE_MSM_GPIO_PINS(111);
 365 DECLARE_MSM_GPIO_PINS(112);
 366 DECLARE_MSM_GPIO_PINS(113);
 367 DECLARE_MSM_GPIO_PINS(114);
 368 DECLARE_MSM_GPIO_PINS(115);
 369 DECLARE_MSM_GPIO_PINS(116);
 370 DECLARE_MSM_GPIO_PINS(117);
 371 DECLARE_MSM_GPIO_PINS(118);
 372 
 373 static const unsigned int ufs_reset_pins[] = { 119 };
 374 static const unsigned int sdc1_rclk_pins[] = { 120 };
 375 static const unsigned int sdc1_clk_pins[] = { 121 };
 376 static const unsigned int sdc1_cmd_pins[] = { 122 };
 377 static const unsigned int sdc1_data_pins[] = { 123 };
 378 static const unsigned int sdc2_clk_pins[] = { 124 };
 379 static const unsigned int sdc2_cmd_pins[] = { 125 };
 380 static const unsigned int sdc2_data_pins[] = { 126 };
 381 
 382 enum sc7180_functions {
 383         msm_mux_adsp_ext,
 384         msm_mux_agera_pll,
 385         msm_mux_aoss_cti,
 386         msm_mux_atest_char,
 387         msm_mux_atest_char0,
 388         msm_mux_atest_char1,
 389         msm_mux_atest_char2,
 390         msm_mux_atest_char3,
 391         msm_mux_atest_tsens,
 392         msm_mux_atest_tsens2,
 393         msm_mux_atest_usb1,
 394         msm_mux_atest_usb2,
 395         msm_mux_atest_usb10,
 396         msm_mux_atest_usb11,
 397         msm_mux_atest_usb12,
 398         msm_mux_atest_usb13,
 399         msm_mux_atest_usb20,
 400         msm_mux_atest_usb21,
 401         msm_mux_atest_usb22,
 402         msm_mux_atest_usb23,
 403         msm_mux_audio_ref,
 404         msm_mux_btfm_slimbus,
 405         msm_mux_cam_mclk,
 406         msm_mux_cci_async,
 407         msm_mux_cci_i2c,
 408         msm_mux_cci_timer0,
 409         msm_mux_cci_timer1,
 410         msm_mux_cci_timer2,
 411         msm_mux_cci_timer3,
 412         msm_mux_cci_timer4,
 413         msm_mux_cri_trng,
 414         msm_mux_dbg_out,
 415         msm_mux_ddr_bist,
 416         msm_mux_ddr_pxi0,
 417         msm_mux_ddr_pxi1,
 418         msm_mux_ddr_pxi2,
 419         msm_mux_ddr_pxi3,
 420         msm_mux_dp_hot,
 421         msm_mux_edp_lcd,
 422         msm_mux_gcc_gp1,
 423         msm_mux_gcc_gp2,
 424         msm_mux_gcc_gp3,
 425         msm_mux_gpio,
 426         msm_mux_gp_pdm0,
 427         msm_mux_gp_pdm1,
 428         msm_mux_gp_pdm2,
 429         msm_mux_gps_tx,
 430         msm_mux_jitter_bist,
 431         msm_mux_ldo_en,
 432         msm_mux_ldo_update,
 433         msm_mux_lpass_ext,
 434         msm_mux_mdp_vsync,
 435         msm_mux_mdp_vsync0,
 436         msm_mux_mdp_vsync1,
 437         msm_mux_mdp_vsync2,
 438         msm_mux_mdp_vsync3,
 439         msm_mux_mi2s_1,
 440         msm_mux_mi2s_0,
 441         msm_mux_mi2s_2,
 442         msm_mux_mss_lte,
 443         msm_mux_m_voc,
 444         msm_mux_pa_indicator,
 445         msm_mux_phase_flag,
 446         msm_mux_PLL_BIST,
 447         msm_mux_pll_bypassnl,
 448         msm_mux_pll_reset,
 449         msm_mux_prng_rosc,
 450         msm_mux_qdss,
 451         msm_mux_qdss_cti,
 452         msm_mux_qlink_enable,
 453         msm_mux_qlink_request,
 454         msm_mux_qspi_clk,
 455         msm_mux_qspi_cs,
 456         msm_mux_qspi_data,
 457         msm_mux_qup00,
 458         msm_mux_qup01,
 459         msm_mux_qup02,
 460         msm_mux_qup03,
 461         msm_mux_qup04,
 462         msm_mux_qup05,
 463         msm_mux_qup10,
 464         msm_mux_qup11,
 465         msm_mux_qup12,
 466         msm_mux_qup13,
 467         msm_mux_qup14,
 468         msm_mux_qup15,
 469         msm_mux_sdc1_tb,
 470         msm_mux_sdc2_tb,
 471         msm_mux_sd_write,
 472         msm_mux_sp_cmu,
 473         msm_mux_tgu_ch0,
 474         msm_mux_tgu_ch1,
 475         msm_mux_tgu_ch2,
 476         msm_mux_tgu_ch3,
 477         msm_mux_tsense_pwm1,
 478         msm_mux_tsense_pwm2,
 479         msm_mux_uim1,
 480         msm_mux_uim2,
 481         msm_mux_uim_batt,
 482         msm_mux_usb_phy,
 483         msm_mux_vfr_1,
 484         msm_mux__V_GPIO,
 485         msm_mux__V_PPS_IN,
 486         msm_mux__V_PPS_OUT,
 487         msm_mux_vsense_trigger,
 488         msm_mux_wlan1_adc0,
 489         msm_mux_wlan1_adc1,
 490         msm_mux_wlan2_adc0,
 491         msm_mux_wlan2_adc1,
 492         msm_mux__,
 493 };
 494 
 495 static const char * const qup01_groups[] = {
 496         "gpio0", "gpio1", "gpio2", "gpio3", "gpio12", "gpio94",
 497 };
 498 static const char * const gpio_groups[] = {
 499         "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
 500         "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
 501         "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
 502         "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
 503         "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
 504         "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
 505         "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
 506         "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
 507         "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
 508         "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
 509         "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
 510         "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
 511         "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
 512         "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
 513         "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
 514         "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
 515         "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
 516         "gpio117", "gpio118",
 517 };
 518 static const char * const phase_flag_groups[] = {
 519         "gpio0", "gpio1", "gpio2", "gpio8", "gpio9",
 520         "gpio11", "gpio12", "gpio17", "gpio18", "gpio19",
 521         "gpio20", "gpio25", "gpio26", "gpio27", "gpio28",
 522         "gpio32", "gpio33", "gpio34", "gpio35", "gpio36",
 523         "gpio37", "gpio38", "gpio39", "gpio42", "gpio44",
 524         "gpio56", "gpio57", "gpio58", "gpio63", "gpio64",
 525         "gpio108", "gpio109",
 526 };
 527 static const char * const cri_trng_groups[] = {
 528         "gpio0", "gpio1", "gpio2",
 529 };
 530 static const char * const sp_cmu_groups[] = {
 531         "gpio3",
 532 };
 533 static const char * const dbg_out_groups[] = {
 534         "gpio3",
 535 };
 536 static const char * const qdss_cti_groups[] = {
 537         "gpio3", "gpio4", "gpio8", "gpio9", "gpio33", "gpio44", "gpio45",
 538         "gpio72",
 539 };
 540 static const char * const sdc1_tb_groups[] = {
 541         "gpio4",
 542 };
 543 static const char * const sdc2_tb_groups[] = {
 544         "gpio5",
 545 };
 546 static const char * const qup11_groups[] = {
 547         "gpio6", "gpio7",
 548 };
 549 static const char * const ddr_bist_groups[] = {
 550         "gpio7", "gpio8", "gpio9", "gpio10",
 551 };
 552 static const char * const gp_pdm1_groups[] = {
 553         "gpio8", "gpio50",
 554 };
 555 static const char * const mdp_vsync_groups[] = {
 556         "gpio10", "gpio11", "gpio12", "gpio70", "gpio71",
 557 };
 558 static const char * const edp_lcd_groups[] = {
 559         "gpio11",
 560 };
 561 static const char * const ddr_pxi2_groups[] = {
 562         "gpio11", "gpio26",
 563 };
 564 static const char * const m_voc_groups[] = {
 565         "gpio12",
 566 };
 567 static const char * const wlan2_adc0_groups[] = {
 568         "gpio12",
 569 };
 570 static const char * const atest_usb10_groups[] = {
 571         "gpio12",
 572 };
 573 static const char * const ddr_pxi3_groups[] = {
 574         "gpio12", "gpio108",
 575 };
 576 static const char * const cam_mclk_groups[] = {
 577         "gpio13", "gpio14", "gpio15", "gpio16", "gpio23",
 578 };
 579 static const char * const pll_bypassnl_groups[] = {
 580         "gpio13",
 581 };
 582 static const char * const qdss_groups[] = {
 583         "gpio13", "gpio86", "gpio14", "gpio87",
 584         "gpio15", "gpio88", "gpio16", "gpio89",
 585         "gpio17", "gpio90", "gpio18", "gpio91",
 586         "gpio19", "gpio21", "gpio20", "gpio22",
 587         "gpio23", "gpio54", "gpio24", "gpio36",
 588         "gpio25", "gpio57", "gpio26", "gpio31",
 589         "gpio27", "gpio56", "gpio28", "gpio29",
 590         "gpio30", "gpio35", "gpio93", "gpio104",
 591         "gpio34", "gpio53", "gpio37", "gpio55",
 592 };
 593 static const char * const pll_reset_groups[] = {
 594         "gpio14",
 595 };
 596 static const char * const qup02_groups[] = {
 597         "gpio15", "gpio16",
 598 };
 599 static const char * const cci_i2c_groups[] = {
 600         "gpio17", "gpio18", "gpio19", "gpio20", "gpio27", "gpio28",
 601 };
 602 static const char * const wlan1_adc0_groups[] = {
 603         "gpio17",
 604 };
 605 static const char * const atest_usb12_groups[] = {
 606         "gpio17",
 607 };
 608 static const char * const ddr_pxi1_groups[] = {
 609         "gpio17", "gpio44",
 610 };
 611 static const char * const atest_char_groups[] = {
 612         "gpio17",
 613 };
 614 static const char * const agera_pll_groups[] = {
 615         "gpio18",
 616 };
 617 static const char * const vsense_trigger_groups[] = {
 618         "gpio18",
 619 };
 620 static const char * const ddr_pxi0_groups[] = {
 621         "gpio18", "gpio27",
 622 };
 623 static const char * const atest_char3_groups[] = {
 624         "gpio18",
 625 };
 626 static const char * const atest_char2_groups[] = {
 627         "gpio19",
 628 };
 629 static const char * const atest_char1_groups[] = {
 630         "gpio20",
 631 };
 632 static const char * const cci_timer0_groups[] = {
 633         "gpio21",
 634 };
 635 static const char * const gcc_gp2_groups[] = {
 636         "gpio21",
 637 };
 638 static const char * const atest_char0_groups[] = {
 639         "gpio21",
 640 };
 641 static const char * const cci_timer1_groups[] = {
 642         "gpio22",
 643 };
 644 static const char * const gcc_gp3_groups[] = {
 645         "gpio22",
 646 };
 647 static const char * const cci_timer2_groups[] = {
 648         "gpio23",
 649 };
 650 static const char * const cci_timer3_groups[] = {
 651         "gpio24",
 652 };
 653 static const char * const cci_async_groups[] = {
 654         "gpio24", "gpio25", "gpio26",
 655 };
 656 static const char * const cci_timer4_groups[] = {
 657         "gpio25",
 658 };
 659 static const char * const qup05_groups[] = {
 660         "gpio25", "gpio26", "gpio27", "gpio28",
 661 };
 662 static const char * const atest_tsens_groups[] = {
 663         "gpio26",
 664 };
 665 static const char * const atest_usb11_groups[] = {
 666         "gpio26",
 667 };
 668 static const char * const PLL_BIST_groups[] = {
 669         "gpio27",
 670 };
 671 static const char * const sd_write_groups[] = {
 672         "gpio33",
 673 };
 674 static const char * const qup00_groups[] = {
 675         "gpio34", "gpio35", "gpio36", "gpio37",
 676 };
 677 static const char * const gp_pdm0_groups[] = {
 678         "gpio37", "gpio68",
 679 };
 680 static const char * const qup03_groups[] = {
 681         "gpio38", "gpio39", "gpio40", "gpio41",
 682 };
 683 static const char * const atest_tsens2_groups[] = {
 684         "gpio39",
 685 };
 686 static const char * const wlan2_adc1_groups[] = {
 687         "gpio39",
 688 };
 689 static const char * const atest_usb1_groups[] = {
 690         "gpio39",
 691 };
 692 static const char * const qup12_groups[] = {
 693         "gpio42", "gpio43", "gpio44", "gpio45",
 694 };
 695 static const char * const wlan1_adc1_groups[] = {
 696         "gpio44",
 697 };
 698 static const char * const atest_usb13_groups[] = {
 699         "gpio44",
 700 };
 701 static const char * const qup13_groups[] = {
 702         "gpio46", "gpio47",
 703 };
 704 static const char * const gcc_gp1_groups[] = {
 705         "gpio48", "gpio56",
 706 };
 707 static const char * const mi2s_1_groups[] = {
 708         "gpio49", "gpio50", "gpio51", "gpio52",
 709 };
 710 static const char * const btfm_slimbus_groups[] = {
 711         "gpio49", "gpio50", "gpio51", "gpio52",
 712 };
 713 static const char * const atest_usb2_groups[] = {
 714         "gpio51",
 715 };
 716 static const char * const atest_usb23_groups[] = {
 717         "gpio52",
 718 };
 719 static const char * const mi2s_0_groups[] = {
 720         "gpio53", "gpio54", "gpio55", "gpio56",
 721 };
 722 static const char * const qup15_groups[] = {
 723         "gpio53", "gpio54", "gpio55", "gpio56",
 724 };
 725 static const char * const atest_usb22_groups[] = {
 726         "gpio53",
 727 };
 728 static const char * const atest_usb21_groups[] = {
 729         "gpio54",
 730 };
 731 static const char * const atest_usb20_groups[] = {
 732         "gpio55",
 733 };
 734 static const char * const lpass_ext_groups[] = {
 735         "gpio57", "gpio58",
 736 };
 737 static const char * const audio_ref_groups[] = {
 738         "gpio57",
 739 };
 740 static const char * const jitter_bist_groups[] = {
 741         "gpio57",
 742 };
 743 static const char * const gp_pdm2_groups[] = {
 744         "gpio57",
 745 };
 746 static const char * const qup10_groups[] = {
 747         "gpio59", "gpio60", "gpio61", "gpio62", "gpio68", "gpio72",
 748 };
 749 static const char * const tgu_ch3_groups[] = {
 750         "gpio62",
 751 };
 752 static const char * const qspi_clk_groups[] = {
 753         "gpio63",
 754 };
 755 static const char * const mdp_vsync0_groups[] = {
 756         "gpio63",
 757 };
 758 static const char * const mi2s_2_groups[] = {
 759         "gpio63", "gpio64", "gpio65", "gpio66",
 760 };
 761 static const char * const mdp_vsync1_groups[] = {
 762         "gpio63",
 763 };
 764 static const char * const mdp_vsync2_groups[] = {
 765         "gpio63",
 766 };
 767 static const char * const mdp_vsync3_groups[] = {
 768         "gpio63",
 769 };
 770 static const char * const tgu_ch0_groups[] = {
 771         "gpio63",
 772 };
 773 static const char * const qspi_data_groups[] = {
 774         "gpio64", "gpio65", "gpio66", "gpio67",
 775 };
 776 static const char * const tgu_ch1_groups[] = {
 777         "gpio64",
 778 };
 779 static const char * const vfr_1_groups[] = {
 780         "gpio65",
 781 };
 782 static const char * const tgu_ch2_groups[] = {
 783         "gpio65",
 784 };
 785 static const char * const qspi_cs_groups[] = {
 786         "gpio68", "gpio72",
 787 };
 788 static const char * const ldo_en_groups[] = {
 789         "gpio70",
 790 };
 791 static const char * const ldo_update_groups[] = {
 792         "gpio71",
 793 };
 794 static const char * const prng_rosc_groups[] = {
 795         "gpio72",
 796 };
 797 static const char * const uim2_groups[] = {
 798         "gpio75", "gpio76", "gpio77", "gpio78",
 799 };
 800 static const char * const uim1_groups[] = {
 801         "gpio79", "gpio80", "gpio81", "gpio82",
 802 };
 803 static const char * const _V_GPIO_groups[] = {
 804         "gpio83", "gpio84", "gpio107",
 805 };
 806 static const char * const _V_PPS_IN_groups[] = {
 807         "gpio83", "gpio84", "gpio107",
 808 };
 809 static const char * const _V_PPS_OUT_groups[] = {
 810         "gpio83", "gpio84", "gpio107",
 811 };
 812 static const char * const gps_tx_groups[] = {
 813         "gpio83", "gpio84", "gpio107", "gpio109",
 814 };
 815 static const char * const uim_batt_groups[] = {
 816         "gpio85",
 817 };
 818 static const char * const dp_hot_groups[] = {
 819         "gpio85", "gpio117",
 820 };
 821 static const char * const aoss_cti_groups[] = {
 822         "gpio85",
 823 };
 824 static const char * const qup14_groups[] = {
 825         "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
 826 };
 827 static const char * const adsp_ext_groups[] = {
 828         "gpio87",
 829 };
 830 static const char * const tsense_pwm1_groups[] = {
 831         "gpio88",
 832 };
 833 static const char * const tsense_pwm2_groups[] = {
 834         "gpio88",
 835 };
 836 static const char * const qlink_request_groups[] = {
 837         "gpio96",
 838 };
 839 static const char * const qlink_enable_groups[] = {
 840         "gpio97",
 841 };
 842 static const char * const pa_indicator_groups[] = {
 843         "gpio99",
 844 };
 845 static const char * const usb_phy_groups[] = {
 846         "gpio104",
 847 };
 848 static const char * const mss_lte_groups[] = {
 849         "gpio108", "gpio109",
 850 };
 851 static const char * const qup04_groups[] = {
 852         "gpio115", "gpio116",
 853 };
 854 
 855 static const struct msm_function sc7180_functions[] = {
 856         FUNCTION(adsp_ext),
 857         FUNCTION(agera_pll),
 858         FUNCTION(aoss_cti),
 859         FUNCTION(atest_char),
 860         FUNCTION(atest_char0),
 861         FUNCTION(atest_char1),
 862         FUNCTION(atest_char2),
 863         FUNCTION(atest_char3),
 864         FUNCTION(atest_tsens),
 865         FUNCTION(atest_tsens2),
 866         FUNCTION(atest_usb1),
 867         FUNCTION(atest_usb2),
 868         FUNCTION(atest_usb10),
 869         FUNCTION(atest_usb11),
 870         FUNCTION(atest_usb12),
 871         FUNCTION(atest_usb13),
 872         FUNCTION(atest_usb20),
 873         FUNCTION(atest_usb21),
 874         FUNCTION(atest_usb22),
 875         FUNCTION(atest_usb23),
 876         FUNCTION(audio_ref),
 877         FUNCTION(btfm_slimbus),
 878         FUNCTION(cam_mclk),
 879         FUNCTION(cci_async),
 880         FUNCTION(cci_i2c),
 881         FUNCTION(cci_timer0),
 882         FUNCTION(cci_timer1),
 883         FUNCTION(cci_timer2),
 884         FUNCTION(cci_timer3),
 885         FUNCTION(cci_timer4),
 886         FUNCTION(cri_trng),
 887         FUNCTION(dbg_out),
 888         FUNCTION(ddr_bist),
 889         FUNCTION(ddr_pxi0),
 890         FUNCTION(ddr_pxi1),
 891         FUNCTION(ddr_pxi2),
 892         FUNCTION(ddr_pxi3),
 893         FUNCTION(dp_hot),
 894         FUNCTION(edp_lcd),
 895         FUNCTION(gcc_gp1),
 896         FUNCTION(gcc_gp2),
 897         FUNCTION(gcc_gp3),
 898         FUNCTION(gpio),
 899         FUNCTION(gp_pdm0),
 900         FUNCTION(gp_pdm1),
 901         FUNCTION(gp_pdm2),
 902         FUNCTION(gps_tx),
 903         FUNCTION(jitter_bist),
 904         FUNCTION(ldo_en),
 905         FUNCTION(ldo_update),
 906         FUNCTION(lpass_ext),
 907         FUNCTION(mdp_vsync),
 908         FUNCTION(mdp_vsync0),
 909         FUNCTION(mdp_vsync1),
 910         FUNCTION(mdp_vsync2),
 911         FUNCTION(mdp_vsync3),
 912         FUNCTION(mi2s_0),
 913         FUNCTION(mi2s_1),
 914         FUNCTION(mi2s_2),
 915         FUNCTION(mss_lte),
 916         FUNCTION(m_voc),
 917         FUNCTION(pa_indicator),
 918         FUNCTION(phase_flag),
 919         FUNCTION(PLL_BIST),
 920         FUNCTION(pll_bypassnl),
 921         FUNCTION(pll_reset),
 922         FUNCTION(prng_rosc),
 923         FUNCTION(qdss),
 924         FUNCTION(qdss_cti),
 925         FUNCTION(qlink_enable),
 926         FUNCTION(qlink_request),
 927         FUNCTION(qspi_clk),
 928         FUNCTION(qspi_cs),
 929         FUNCTION(qspi_data),
 930         FUNCTION(qup00),
 931         FUNCTION(qup01),
 932         FUNCTION(qup02),
 933         FUNCTION(qup03),
 934         FUNCTION(qup04),
 935         FUNCTION(qup05),
 936         FUNCTION(qup10),
 937         FUNCTION(qup11),
 938         FUNCTION(qup12),
 939         FUNCTION(qup13),
 940         FUNCTION(qup14),
 941         FUNCTION(qup15),
 942         FUNCTION(sdc1_tb),
 943         FUNCTION(sdc2_tb),
 944         FUNCTION(sd_write),
 945         FUNCTION(sp_cmu),
 946         FUNCTION(tgu_ch0),
 947         FUNCTION(tgu_ch1),
 948         FUNCTION(tgu_ch2),
 949         FUNCTION(tgu_ch3),
 950         FUNCTION(tsense_pwm1),
 951         FUNCTION(tsense_pwm2),
 952         FUNCTION(uim1),
 953         FUNCTION(uim2),
 954         FUNCTION(uim_batt),
 955         FUNCTION(usb_phy),
 956         FUNCTION(vfr_1),
 957         FUNCTION(_V_GPIO),
 958         FUNCTION(_V_PPS_IN),
 959         FUNCTION(_V_PPS_OUT),
 960         FUNCTION(vsense_trigger),
 961         FUNCTION(wlan1_adc0),
 962         FUNCTION(wlan1_adc1),
 963         FUNCTION(wlan2_adc0),
 964         FUNCTION(wlan2_adc1),
 965 };
 966 
 967 /* Every pin is maintained as a single group, and missing or non-existing pin
 968  * would be maintained as dummy group to synchronize pin group index with
 969  * pin descriptor registered with pinctrl core.
 970  * Clients would not be able to request these dummy pin groups.
 971  */
 972 static const struct msm_pingroup sc7180_groups[] = {
 973         [0] = PINGROUP(0, SOUTH, qup01, cri_trng, _, phase_flag, _, _, _, _, _),
 974         [1] = PINGROUP(1, SOUTH, qup01, cri_trng, _, phase_flag, _, _, _, _, _),
 975         [2] = PINGROUP(2, SOUTH, qup01, cri_trng, _, phase_flag, _, _, _, _, _),
 976         [3] = PINGROUP(3, SOUTH, qup01, sp_cmu, dbg_out, qdss_cti, _, _, _, _, _),
 977         [4] = PINGROUP(4, NORTH, sdc1_tb, _, qdss_cti, _, _, _, _, _, _),
 978         [5] = PINGROUP(5, NORTH, sdc2_tb, _, _, _, _, _, _, _, _),
 979         [6] = PINGROUP(6, NORTH, qup11, qup11, _, _, _, _, _, _, _),
 980         [7] = PINGROUP(7, NORTH, qup11, qup11, ddr_bist, _, _, _, _, _, _),
 981         [8] = PINGROUP(8, NORTH, gp_pdm1, ddr_bist, _, phase_flag, qdss_cti, _, _, _, _),
 982         [9] = PINGROUP(9, NORTH, ddr_bist, _, phase_flag, qdss_cti, _, _, _, _, _),
 983         [10] = PINGROUP(10, NORTH, mdp_vsync, ddr_bist, _, _, _, _, _, _, _),
 984         [11] = PINGROUP(11, NORTH, mdp_vsync, edp_lcd, _, phase_flag, ddr_pxi2, _, _, _, _),
 985         [12] = PINGROUP(12, SOUTH, mdp_vsync, m_voc, qup01, _, phase_flag, wlan2_adc0, atest_usb10, ddr_pxi3, _),
 986         [13] = PINGROUP(13, SOUTH, cam_mclk, pll_bypassnl, qdss, _, _, _, _, _, _),
 987         [14] = PINGROUP(14, SOUTH, cam_mclk, pll_reset, qdss, _, _, _, _, _, _),
 988         [15] = PINGROUP(15, SOUTH, cam_mclk, qup02, qup02, qdss, _, _, _, _, _),
 989         [16] = PINGROUP(16, SOUTH, cam_mclk, qup02, qup02, qdss, _, _, _, _, _),
 990         [17] = PINGROUP(17, SOUTH, cci_i2c, _, phase_flag, qdss, _, wlan1_adc0, atest_usb12, ddr_pxi1, atest_char),
 991         [18] = PINGROUP(18, SOUTH, cci_i2c, agera_pll, _, phase_flag, qdss, vsense_trigger, ddr_pxi0, atest_char3, _),
 992         [19] = PINGROUP(19, SOUTH, cci_i2c, _, phase_flag, qdss, atest_char2, _, _, _, _),
 993         [20] = PINGROUP(20, SOUTH, cci_i2c, _, phase_flag, qdss, atest_char1, _, _, _, _),
 994         [21] = PINGROUP(21, NORTH, cci_timer0, gcc_gp2, _, qdss, atest_char0, _, _, _, _),
 995         [22] = PINGROUP(22, NORTH, cci_timer1, gcc_gp3, _, qdss, _, _, _, _, _),
 996         [23] = PINGROUP(23, SOUTH, cci_timer2, cam_mclk, qdss, _, _, _, _, _, _),
 997         [24] = PINGROUP(24, SOUTH, cci_timer3, cci_async, qdss, _, _, _, _, _, _),
 998         [25] = PINGROUP(25, SOUTH, cci_timer4, cci_async, qup05, _, phase_flag, qdss, _, _, _),
 999         [26] = PINGROUP(26, SOUTH, cci_async, qup05, _, phase_flag, qdss, atest_tsens, atest_usb11, ddr_pxi2, _),
1000         [27] = PINGROUP(27, SOUTH, cci_i2c, qup05, PLL_BIST, _, phase_flag, qdss, ddr_pxi0, _, _),
1001         [28] = PINGROUP(28, SOUTH, cci_i2c, qup05, _, phase_flag, qdss, _, _, _, _),
1002         [29] = PINGROUP(29, NORTH, _, qdss, _, _, _, _, _, _, _),
1003         [30] = PINGROUP(30, SOUTH, qdss, _, _, _, _, _, _, _, _),
1004         [31] = PINGROUP(31, NORTH, _, qdss, _, _, _, _, _, _, _),
1005         [32] = PINGROUP(32, NORTH, _, phase_flag, _, _, _, _, _, _, _),
1006         [33] = PINGROUP(33, NORTH, sd_write, _, phase_flag, qdss_cti, _, _, _, _, _),
1007         [34] = PINGROUP(34, SOUTH, qup00, _, phase_flag, qdss, _, _, _, _, _),
1008         [35] = PINGROUP(35, SOUTH, qup00, _, phase_flag, qdss, _, _, _, _, _),
1009         [36] = PINGROUP(36, SOUTH, qup00, _, phase_flag, qdss, _, _, _, _, _),
1010         [37] = PINGROUP(37, SOUTH, qup00, gp_pdm0, _, phase_flag, qdss, _, _, _, _),
1011         [38] = PINGROUP(38, SOUTH, qup03, _, phase_flag, _, _, _, _, _, _),
1012         [39] = PINGROUP(39, SOUTH, qup03, _, phase_flag, atest_tsens2, wlan2_adc1, atest_usb1, _, _, _),
1013         [40] = PINGROUP(40, SOUTH, qup03, _, _, _, _, _, _, _, _),
1014         [41] = PINGROUP(41, SOUTH, qup03, _, _, _, _, _, _, _, _),
1015         [42] = PINGROUP(42, NORTH, qup12, _, phase_flag, _, _, _, _, _, _),
1016         [43] = PINGROUP(43, NORTH, qup12, _, _, _, _, _, _, _, _),
1017         [44] = PINGROUP(44, NORTH, qup12, _, phase_flag, qdss_cti, wlan1_adc1, atest_usb13, ddr_pxi1, _, _),
1018         [45] = PINGROUP(45, NORTH, qup12, qdss_cti, _, _, _, _, _, _, _),
1019         [46] = PINGROUP(46, NORTH, qup13, qup13, _, _, _, _, _, _, _),
1020         [47] = PINGROUP(47, NORTH, qup13, qup13, _, _, _, _, _, _, _),
1021         [48] = PINGROUP(48, NORTH, gcc_gp1, _, _, _, _, _, _, _, _),
1022         [49] = PINGROUP(49, WEST, mi2s_1, btfm_slimbus, _, _, _, _, _, _, _),
1023         [50] = PINGROUP(50, WEST, mi2s_1, btfm_slimbus, gp_pdm1, _, _, _, _, _, _),
1024         [51] = PINGROUP(51, WEST, mi2s_1, btfm_slimbus, atest_usb2, _, _, _, _, _, _),
1025         [52] = PINGROUP(52, WEST, mi2s_1, btfm_slimbus, atest_usb23, _, _, _, _, _, _),
1026         [53] = PINGROUP(53, WEST, mi2s_0, qup15, qdss, atest_usb22, _, _, _, _, _),
1027         [54] = PINGROUP(54, WEST, mi2s_0, qup15, qdss, atest_usb21, _, _, _, _, _),
1028         [55] = PINGROUP(55, WEST, mi2s_0, qup15, qdss, atest_usb20, _, _, _, _, _),
1029         [56] = PINGROUP(56, WEST, mi2s_0, qup15, gcc_gp1, _, phase_flag, qdss, _, _, _),
1030         [57] = PINGROUP(57, WEST, lpass_ext, audio_ref, jitter_bist, gp_pdm2, _, phase_flag, qdss, _, _),
1031         [58] = PINGROUP(58, WEST, lpass_ext, _, phase_flag, _, _, _, _, _, _),
1032         [59] = PINGROUP(59, NORTH, qup10, _, _, _, _, _, _, _, _),
1033         [60] = PINGROUP(60, NORTH, qup10, _, _, _, _, _, _, _, _),
1034         [61] = PINGROUP(61, NORTH, qup10, _, _, _, _, _, _, _, _),
1035         [62] = PINGROUP(62, NORTH, qup10, tgu_ch3, _, _, _, _, _, _, _),
1036         [63] = PINGROUP(63, NORTH, qspi_clk, mdp_vsync0, mi2s_2, mdp_vsync1, mdp_vsync2, mdp_vsync3, tgu_ch0, _, phase_flag),
1037         [64] = PINGROUP(64, NORTH, qspi_data, mi2s_2, tgu_ch1, _, phase_flag, _, _, _, _),
1038         [65] = PINGROUP(65, NORTH, qspi_data, mi2s_2, vfr_1, tgu_ch2, _, _, _, _, _),
1039         [66] = PINGROUP(66, NORTH, qspi_data, mi2s_2, _, _, _, _, _, _, _),
1040         [67] = PINGROUP(67, NORTH, qspi_data, _, _, _, _, _, _, _, _),
1041         [68] = PINGROUP(68, NORTH, qspi_cs, qup10, gp_pdm0, _, _, _, _, _, _),
1042         [69] = PINGROUP(69, WEST, _, _, _, _, _, _, _, _, _),
1043         [70] = PINGROUP(70, NORTH, _, _, mdp_vsync, ldo_en, _, _, _, _, _),
1044         [71] = PINGROUP(71, NORTH, _, mdp_vsync, ldo_update, _, _, _, _, _, _),
1045         [72] = PINGROUP(72, NORTH, qspi_cs, qup10, prng_rosc, _, qdss_cti, _, _, _, _),
1046         [73] = PINGROUP(73, WEST, _, _, _, _, _, _, _, _, _),
1047         [74] = PINGROUP(74, WEST, _, _, _, _, _, _, _, _, _),
1048         [75] = PINGROUP(75, WEST, uim2, _, _, _, _, _, _, _, _),
1049         [76] = PINGROUP(76, WEST, uim2, _, _, _, _, _, _, _, _),
1050         [77] = PINGROUP(77, WEST, uim2, _, _, _, _, _, _, _, _),
1051         [78] = PINGROUP(78, WEST, uim2, _, _, _, _, _, _, _, _),
1052         [79] = PINGROUP(79, WEST, uim1, _, _, _, _, _, _, _, _),
1053         [80] = PINGROUP(80, WEST, uim1, _, _, _, _, _, _, _, _),
1054         [81] = PINGROUP(81, WEST, uim1, _, _, _, _, _, _, _, _),
1055         [82] = PINGROUP(82, WEST, uim1, _, _, _, _, _, _, _, _),
1056         [83] = PINGROUP(83, WEST, _, _V_GPIO, _V_PPS_IN, _V_PPS_OUT, gps_tx, _, _, _, _),
1057         [84] = PINGROUP(84, WEST, _, _V_GPIO, _V_PPS_IN, _V_PPS_OUT, gps_tx, _, _, _, _),
1058         [85] = PINGROUP(85, WEST, uim_batt, dp_hot, aoss_cti, _, _, _, _, _, _),
1059         [86] = PINGROUP(86, NORTH, qup14, qdss, _, _, _, _, _, _, _),
1060         [87] = PINGROUP(87, NORTH, qup14, adsp_ext, qdss, _, _, _, _, _, _),
1061         [88] = PINGROUP(88, NORTH, qup14, qdss, tsense_pwm1, tsense_pwm2, _, _, _, _, _),
1062         [89] = PINGROUP(89, NORTH, qup14, qdss, _, _, _, _, _, _, _),
1063         [90] = PINGROUP(90, NORTH, qup14, qdss, _, _, _, _, _, _, _),
1064         [91] = PINGROUP(91, NORTH, qup14, qdss, _, _, _, _, _, _, _),
1065         [92] = PINGROUP(92, NORTH, _, _, _, _, _, _, _, _, _),
1066         [93] = PINGROUP(93, NORTH, qdss, _, _, _, _, _, _, _, _),
1067         [94] = PINGROUP(94, SOUTH, qup01, _, _, _, _, _, _, _, _),
1068         [95] = PINGROUP(95, WEST, _, _, _, _, _, _, _, _, _),
1069         [96] = PINGROUP(96, WEST, qlink_request, _, _, _, _, _, _, _, _),
1070         [97] = PINGROUP(97, WEST, qlink_enable, _, _, _, _, _, _, _, _),
1071         [98] = PINGROUP(98, WEST, _, _, _, _, _, _, _, _, _),
1072         [99] = PINGROUP(99, WEST, _, pa_indicator, _, _, _, _, _, _, _),
1073         [100] = PINGROUP(100, WEST, _, _, _, _, _, _, _, _, _),
1074         [101] = PINGROUP(101, NORTH, _, _, _, _, _, _, _, _, _),
1075         [102] = PINGROUP(102, NORTH, _, _, _, _, _, _, _, _, _),
1076         [103] = PINGROUP(103, NORTH, _, _, _, _, _, _, _, _, _),
1077         [104] = PINGROUP(104, WEST, usb_phy, _, qdss, _, _, _, _, _, _),
1078         [105] = PINGROUP(105, NORTH, _, _, _, _, _, _, _, _, _),
1079         [106] = PINGROUP(106, NORTH, _, _, _, _, _, _, _, _, _),
1080         [107] = PINGROUP(107, WEST, _, _V_GPIO, _V_PPS_IN, _V_PPS_OUT, gps_tx, _, _, _, _),
1081         [108] = PINGROUP(108, SOUTH, mss_lte, _, phase_flag, ddr_pxi3, _, _, _, _, _),
1082         [109] = PINGROUP(109, SOUTH, mss_lte, gps_tx, _, phase_flag, _, _, _, _, _),
1083         [110] = PINGROUP(110, NORTH, _, _, _, _, _, _, _, _, _),
1084         [111] = PINGROUP(111, NORTH, _, _, _, _, _, _, _, _, _),
1085         [112] = PINGROUP(112, NORTH, _, _, _, _, _, _, _, _, _),
1086         [113] = PINGROUP(113, NORTH, _, _, _, _, _, _, _, _, _),
1087         [114] = PINGROUP(114, NORTH, _, _, _, _, _, _, _, _, _),
1088         [115] = PINGROUP(115, WEST, qup04, qup04, _, _, _, _, _, _, _),
1089         [116] = PINGROUP(116, WEST, qup04, qup04, _, _, _, _, _, _, _),
1090         [117] = PINGROUP(117, WEST, dp_hot, _, _, _, _, _, _, _, _),
1091         [118] = PINGROUP(118, WEST, _, _, _, _, _, _, _, _, _),
1092         [119] = UFS_RESET(ufs_reset, 0x7f000),
1093         [120] = SDC_QDSD_PINGROUP(sdc1_rclk, 0x7a000, 15, 0),
1094         [121] = SDC_QDSD_PINGROUP(sdc1_clk, 0x7a000, 13, 6),
1095         [122] = SDC_QDSD_PINGROUP(sdc1_cmd, 0x7a000, 11, 3),
1096         [123] = SDC_QDSD_PINGROUP(sdc1_data, 0x7a000, 9, 0),
1097         [124] = SDC_QDSD_PINGROUP(sdc2_clk, 0x7b000, 14, 6),
1098         [125] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x7b000, 11, 3),
1099         [126] = SDC_QDSD_PINGROUP(sdc2_data, 0x7b000, 9, 0),
1100 };
1101 
1102 static const struct msm_pinctrl_soc_data sc7180_pinctrl = {
1103         .pins = sc7180_pins,
1104         .npins = ARRAY_SIZE(sc7180_pins),
1105         .functions = sc7180_functions,
1106         .nfunctions = ARRAY_SIZE(sc7180_functions),
1107         .groups = sc7180_groups,
1108         .ngroups = ARRAY_SIZE(sc7180_groups),
1109         .ngpios = 120,
1110         .tiles = sc7180_tiles,
1111         .ntiles = ARRAY_SIZE(sc7180_tiles),
1112 };
1113 
1114 static int sc7180_pinctrl_probe(struct platform_device *pdev)
1115 {
1116         return msm_pinctrl_probe(pdev, &sc7180_pinctrl);
1117 }
1118 
1119 static const struct of_device_id sc7180_pinctrl_of_match[] = {
1120         { .compatible = "qcom,sc7180-pinctrl", },
1121         { },
1122 };
1123 
1124 static struct platform_driver sc7180_pinctrl_driver = {
1125         .driver = {
1126                 .name = "sc7180-pinctrl",
1127                 .pm = &msm_pinctrl_dev_pm_ops,
1128                 .of_match_table = sc7180_pinctrl_of_match,
1129         },
1130         .probe = sc7180_pinctrl_probe,
1131         .remove = msm_pinctrl_remove,
1132 };
1133 
1134 static int __init sc7180_pinctrl_init(void)
1135 {
1136         return platform_driver_register(&sc7180_pinctrl_driver);
1137 }
1138 arch_initcall(sc7180_pinctrl_init);
1139 
1140 static void __exit sc7180_pinctrl_exit(void)
1141 {
1142         platform_driver_unregister(&sc7180_pinctrl_driver);
1143 }
1144 module_exit(sc7180_pinctrl_exit);
1145 
1146 MODULE_DESCRIPTION("QTI sc7180 pinctrl driver");
1147 MODULE_LICENSE("GPL v2");
1148 MODULE_DEVICE_TABLE(of, sc7180_pinctrl_of_match);

/* [<][>][^][v][top][bottom][index][help] */