1 // SPDX-License-Identifier: GPL-2.0-only 2 /* 3 * Copyright (c) 2020-2021, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2021, Linaro Limited 5 */ 6 7 #include <linux/module.h> 8 #include <linux/of.h> 9 #include <linux/platform_device.h> 10 11 #include "pinctrl-msm.h" 12 13 #define REG_SIZE 0x1000 14 15 #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \ 16 { \ 17 .grp = PINCTRL_PINGROUP("gpio" #id, \ 18 gpio##id##_pins, \ 19 ARRAY_SIZE(gpio##id##_pins)), \ 20 .funcs = (int[]){ \ 21 msm_mux_gpio, /* gpio mode */ \ 22 msm_mux_##f1, \ 23 msm_mux_##f2, \ 24 msm_mux_##f3, \ 25 msm_mux_##f4, \ 26 msm_mux_##f5, \ 27 msm_mux_##f6, \ 28 msm_mux_##f7, \ 29 msm_mux_##f8, \ 30 msm_mux_##f9 \ 31 }, \ 32 .nfuncs = 10, \ 33 .ctl_reg = REG_SIZE * id, \ 34 .io_reg = 0x4 + REG_SIZE * id, \ 35 .intr_cfg_reg = 0x8 + REG_SIZE * id, \ 36 .intr_status_reg = 0xc + REG_SIZE * id, \ 37 .mux_bit = 2, \ 38 .pull_bit = 0, \ 39 .drv_bit = 6, \ 40 .egpio_enable = 12, \ 41 .egpio_present = 11, \ 42 .oe_bit = 9, \ 43 .in_bit = 0, \ 44 .out_bit = 1, \ 45 .intr_enable_bit = 0, \ 46 .intr_status_bit = 0, \ 47 .intr_target_bit = 5, \ 48 .intr_target_kpss_val = 3, \ 49 .intr_raw_status_bit = 4, \ 50 .intr_polarity_bit = 1, \ 51 .intr_detection_bit = 2, \ 52 .intr_detection_width = 2, \ 53 } 54 55 #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \ 56 { \ 57 .grp = PINCTRL_PINGROUP(#pg_name, \ 58 pg_name##_pins, \ 59 ARRAY_SIZE(pg_name##_pins)), \ 60 .ctl_reg = ctl, \ 61 .io_reg = 0, \ 62 .intr_cfg_reg = 0, \ 63 .intr_status_reg = 0, \ 64 .mux_bit = -1, \ 65 .pull_bit = pull, \ 66 .drv_bit = drv, \ 67 .oe_bit = -1, \ 68 .in_bit = -1, \ 69 .out_bit = -1, \ 70 .intr_enable_bit = -1, \ 71 .intr_status_bit = -1, \ 72 .intr_target_bit = -1, \ 73 .intr_raw_status_bit = -1, \ 74 .intr_polarity_bit = -1, \ 75 .intr_detection_bit = -1, \ 76 .intr_detection_width = -1, \ 77 } 78 79 #define UFS_RESET(pg_name, offset) \ 80 { \ 81 .grp = PINCTRL_PINGROUP(#pg_name, \ 82 pg_name##_pins, \ 83 ARRAY_SIZE(pg_name##_pins)), \ 84 .ctl_reg = offset, \ 85 .io_reg = offset + 0x4, \ 86 .intr_cfg_reg = 0, \ 87 .intr_status_reg = 0, \ 88 .mux_bit = -1, \ 89 .pull_bit = 3, \ 90 .drv_bit = 0, \ 91 .oe_bit = -1, \ 92 .in_bit = -1, \ 93 .out_bit = 0, \ 94 .intr_enable_bit = -1, \ 95 .intr_status_bit = -1, \ 96 .intr_target_bit = -1, \ 97 .intr_raw_status_bit = -1, \ 98 .intr_polarity_bit = -1, \ 99 .intr_detection_bit = -1, \ 100 .intr_detection_width = -1, \ 101 } 102 103 static const struct pinctrl_pin_desc sm8450_pins[] = { 104 PINCTRL_PIN(0, "GPIO_0"), 105 PINCTRL_PIN(1, "GPIO_1"), 106 PINCTRL_PIN(2, "GPIO_2"), 107 PINCTRL_PIN(3, "GPIO_3"), 108 PINCTRL_PIN(4, "GPIO_4"), 109 PINCTRL_PIN(5, "GPIO_5"), 110 PINCTRL_PIN(6, "GPIO_6"), 111 PINCTRL_PIN(7, "GPIO_7"), 112 PINCTRL_PIN(8, "GPIO_8"), 113 PINCTRL_PIN(9, "GPIO_9"), 114 PINCTRL_PIN(10, "GPIO_10"), 115 PINCTRL_PIN(11, "GPIO_11"), 116 PINCTRL_PIN(12, "GPIO_12"), 117 PINCTRL_PIN(13, "GPIO_13"), 118 PINCTRL_PIN(14, "GPIO_14"), 119 PINCTRL_PIN(15, "GPIO_15"), 120 PINCTRL_PIN(16, "GPIO_16"), 121 PINCTRL_PIN(17, "GPIO_17"), 122 PINCTRL_PIN(18, "GPIO_18"), 123 PINCTRL_PIN(19, "GPIO_19"), 124 PINCTRL_PIN(20, "GPIO_20"), 125 PINCTRL_PIN(21, "GPIO_21"), 126 PINCTRL_PIN(22, "GPIO_22"), 127 PINCTRL_PIN(23, "GPIO_23"), 128 PINCTRL_PIN(24, "GPIO_24"), 129 PINCTRL_PIN(25, "GPIO_25"), 130 PINCTRL_PIN(26, "GPIO_26"), 131 PINCTRL_PIN(27, "GPIO_27"), 132 PINCTRL_PIN(28, "GPIO_28"), 133 PINCTRL_PIN(29, "GPIO_29"), 134 PINCTRL_PIN(30, "GPIO_30"), 135 PINCTRL_PIN(31, "GPIO_31"), 136 PINCTRL_PIN(32, "GPIO_32"), 137 PINCTRL_PIN(33, "GPIO_33"), 138 PINCTRL_PIN(34, "GPIO_34"), 139 PINCTRL_PIN(35, "GPIO_35"), 140 PINCTRL_PIN(36, "GPIO_36"), 141 PINCTRL_PIN(37, "GPIO_37"), 142 PINCTRL_PIN(38, "GPIO_38"), 143 PINCTRL_PIN(39, "GPIO_39"), 144 PINCTRL_PIN(40, "GPIO_40"), 145 PINCTRL_PIN(41, "GPIO_41"), 146 PINCTRL_PIN(42, "GPIO_42"), 147 PINCTRL_PIN(43, "GPIO_43"), 148 PINCTRL_PIN(44, "GPIO_44"), 149 PINCTRL_PIN(45, "GPIO_45"), 150 PINCTRL_PIN(46, "GPIO_46"), 151 PINCTRL_PIN(47, "GPIO_47"), 152 PINCTRL_PIN(48, "GPIO_48"), 153 PINCTRL_PIN(49, "GPIO_49"), 154 PINCTRL_PIN(50, "GPIO_50"), 155 PINCTRL_PIN(51, "GPIO_51"), 156 PINCTRL_PIN(52, "GPIO_52"), 157 PINCTRL_PIN(53, "GPIO_53"), 158 PINCTRL_PIN(54, "GPIO_54"), 159 PINCTRL_PIN(55, "GPIO_55"), 160 PINCTRL_PIN(56, "GPIO_56"), 161 PINCTRL_PIN(57, "GPIO_57"), 162 PINCTRL_PIN(58, "GPIO_58"), 163 PINCTRL_PIN(59, "GPIO_59"), 164 PINCTRL_PIN(60, "GPIO_60"), 165 PINCTRL_PIN(61, "GPIO_61"), 166 PINCTRL_PIN(62, "GPIO_62"), 167 PINCTRL_PIN(63, "GPIO_63"), 168 PINCTRL_PIN(64, "GPIO_64"), 169 PINCTRL_PIN(65, "GPIO_65"), 170 PINCTRL_PIN(66, "GPIO_66"), 171 PINCTRL_PIN(67, "GPIO_67"), 172 PINCTRL_PIN(68, "GPIO_68"), 173 PINCTRL_PIN(69, "GPIO_69"), 174 PINCTRL_PIN(70, "GPIO_70"), 175 PINCTRL_PIN(71, "GPIO_71"), 176 PINCTRL_PIN(72, "GPIO_72"), 177 PINCTRL_PIN(73, "GPIO_73"), 178 PINCTRL_PIN(74, "GPIO_74"), 179 PINCTRL_PIN(75, "GPIO_75"), 180 PINCTRL_PIN(76, "GPIO_76"), 181 PINCTRL_PIN(77, "GPIO_77"), 182 PINCTRL_PIN(78, "GPIO_78"), 183 PINCTRL_PIN(79, "GPIO_79"), 184 PINCTRL_PIN(80, "GPIO_80"), 185 PINCTRL_PIN(81, "GPIO_81"), 186 PINCTRL_PIN(82, "GPIO_82"), 187 PINCTRL_PIN(83, "GPIO_83"), 188 PINCTRL_PIN(84, "GPIO_84"), 189 PINCTRL_PIN(85, "GPIO_85"), 190 PINCTRL_PIN(86, "GPIO_86"), 191 PINCTRL_PIN(87, "GPIO_87"), 192 PINCTRL_PIN(88, "GPIO_88"), 193 PINCTRL_PIN(89, "GPIO_89"), 194 PINCTRL_PIN(90, "GPIO_90"), 195 PINCTRL_PIN(91, "GPIO_91"), 196 PINCTRL_PIN(92, "GPIO_92"), 197 PINCTRL_PIN(93, "GPIO_93"), 198 PINCTRL_PIN(94, "GPIO_94"), 199 PINCTRL_PIN(95, "GPIO_95"), 200 PINCTRL_PIN(96, "GPIO_96"), 201 PINCTRL_PIN(97, "GPIO_97"), 202 PINCTRL_PIN(98, "GPIO_98"), 203 PINCTRL_PIN(99, "GPIO_99"), 204 PINCTRL_PIN(100, "GPIO_100"), 205 PINCTRL_PIN(101, "GPIO_101"), 206 PINCTRL_PIN(102, "GPIO_102"), 207 PINCTRL_PIN(103, "GPIO_103"), 208 PINCTRL_PIN(104, "GPIO_104"), 209 PINCTRL_PIN(105, "GPIO_105"), 210 PINCTRL_PIN(106, "GPIO_106"), 211 PINCTRL_PIN(107, "GPIO_107"), 212 PINCTRL_PIN(108, "GPIO_108"), 213 PINCTRL_PIN(109, "GPIO_109"), 214 PINCTRL_PIN(110, "GPIO_110"), 215 PINCTRL_PIN(111, "GPIO_111"), 216 PINCTRL_PIN(112, "GPIO_112"), 217 PINCTRL_PIN(113, "GPIO_113"), 218 PINCTRL_PIN(114, "GPIO_114"), 219 PINCTRL_PIN(115, "GPIO_115"), 220 PINCTRL_PIN(116, "GPIO_116"), 221 PINCTRL_PIN(117, "GPIO_117"), 222 PINCTRL_PIN(118, "GPIO_118"), 223 PINCTRL_PIN(119, "GPIO_119"), 224 PINCTRL_PIN(120, "GPIO_120"), 225 PINCTRL_PIN(121, "GPIO_121"), 226 PINCTRL_PIN(122, "GPIO_122"), 227 PINCTRL_PIN(123, "GPIO_123"), 228 PINCTRL_PIN(124, "GPIO_124"), 229 PINCTRL_PIN(125, "GPIO_125"), 230 PINCTRL_PIN(126, "GPIO_126"), 231 PINCTRL_PIN(127, "GPIO_127"), 232 PINCTRL_PIN(128, "GPIO_128"), 233 PINCTRL_PIN(129, "GPIO_129"), 234 PINCTRL_PIN(130, "GPIO_130"), 235 PINCTRL_PIN(131, "GPIO_131"), 236 PINCTRL_PIN(132, "GPIO_132"), 237 PINCTRL_PIN(133, "GPIO_133"), 238 PINCTRL_PIN(134, "GPIO_134"), 239 PINCTRL_PIN(135, "GPIO_135"), 240 PINCTRL_PIN(136, "GPIO_136"), 241 PINCTRL_PIN(137, "GPIO_137"), 242 PINCTRL_PIN(138, "GPIO_138"), 243 PINCTRL_PIN(139, "GPIO_139"), 244 PINCTRL_PIN(140, "GPIO_140"), 245 PINCTRL_PIN(141, "GPIO_141"), 246 PINCTRL_PIN(142, "GPIO_142"), 247 PINCTRL_PIN(143, "GPIO_143"), 248 PINCTRL_PIN(144, "GPIO_144"), 249 PINCTRL_PIN(145, "GPIO_145"), 250 PINCTRL_PIN(146, "GPIO_146"), 251 PINCTRL_PIN(147, "GPIO_147"), 252 PINCTRL_PIN(148, "GPIO_148"), 253 PINCTRL_PIN(149, "GPIO_149"), 254 PINCTRL_PIN(150, "GPIO_150"), 255 PINCTRL_PIN(151, "GPIO_151"), 256 PINCTRL_PIN(152, "GPIO_152"), 257 PINCTRL_PIN(153, "GPIO_153"), 258 PINCTRL_PIN(154, "GPIO_154"), 259 PINCTRL_PIN(155, "GPIO_155"), 260 PINCTRL_PIN(156, "GPIO_156"), 261 PINCTRL_PIN(157, "GPIO_157"), 262 PINCTRL_PIN(158, "GPIO_158"), 263 PINCTRL_PIN(159, "GPIO_159"), 264 PINCTRL_PIN(160, "GPIO_160"), 265 PINCTRL_PIN(161, "GPIO_161"), 266 PINCTRL_PIN(162, "GPIO_162"), 267 PINCTRL_PIN(163, "GPIO_163"), 268 PINCTRL_PIN(164, "GPIO_164"), 269 PINCTRL_PIN(165, "GPIO_165"), 270 PINCTRL_PIN(166, "GPIO_166"), 271 PINCTRL_PIN(167, "GPIO_167"), 272 PINCTRL_PIN(168, "GPIO_168"), 273 PINCTRL_PIN(169, "GPIO_169"), 274 PINCTRL_PIN(170, "GPIO_170"), 275 PINCTRL_PIN(171, "GPIO_171"), 276 PINCTRL_PIN(172, "GPIO_172"), 277 PINCTRL_PIN(173, "GPIO_173"), 278 PINCTRL_PIN(174, "GPIO_174"), 279 PINCTRL_PIN(175, "GPIO_175"), 280 PINCTRL_PIN(176, "GPIO_176"), 281 PINCTRL_PIN(177, "GPIO_177"), 282 PINCTRL_PIN(178, "GPIO_178"), 283 PINCTRL_PIN(179, "GPIO_179"), 284 PINCTRL_PIN(180, "GPIO_180"), 285 PINCTRL_PIN(181, "GPIO_181"), 286 PINCTRL_PIN(182, "GPIO_182"), 287 PINCTRL_PIN(183, "GPIO_183"), 288 PINCTRL_PIN(184, "GPIO_184"), 289 PINCTRL_PIN(185, "GPIO_185"), 290 PINCTRL_PIN(186, "GPIO_186"), 291 PINCTRL_PIN(187, "GPIO_187"), 292 PINCTRL_PIN(188, "GPIO_188"), 293 PINCTRL_PIN(189, "GPIO_189"), 294 PINCTRL_PIN(190, "GPIO_190"), 295 PINCTRL_PIN(191, "GPIO_191"), 296 PINCTRL_PIN(192, "GPIO_192"), 297 PINCTRL_PIN(193, "GPIO_193"), 298 PINCTRL_PIN(194, "GPIO_194"), 299 PINCTRL_PIN(195, "GPIO_195"), 300 PINCTRL_PIN(196, "GPIO_196"), 301 PINCTRL_PIN(197, "GPIO_197"), 302 PINCTRL_PIN(198, "GPIO_198"), 303 PINCTRL_PIN(199, "GPIO_199"), 304 PINCTRL_PIN(200, "GPIO_200"), 305 PINCTRL_PIN(201, "GPIO_201"), 306 PINCTRL_PIN(202, "GPIO_202"), 307 PINCTRL_PIN(203, "GPIO_203"), 308 PINCTRL_PIN(204, "GPIO_204"), 309 PINCTRL_PIN(205, "GPIO_205"), 310 PINCTRL_PIN(206, "GPIO_206"), 311 PINCTRL_PIN(207, "GPIO_207"), 312 PINCTRL_PIN(208, "GPIO_208"), 313 PINCTRL_PIN(209, "GPIO_209"), 314 PINCTRL_PIN(210, "UFS_RESET"), 315 PINCTRL_PIN(211, "SDC2_CLK"), 316 PINCTRL_PIN(212, "SDC2_CMD"), 317 PINCTRL_PIN(213, "SDC2_DATA"), 318 }; 319 320 #define DECLARE_MSM_GPIO_PINS(pin) \ 321 static const unsigned int gpio##pin##_pins[] = { pin } 322 DECLARE_MSM_GPIO_PINS(0); 323 DECLARE_MSM_GPIO_PINS(1); 324 DECLARE_MSM_GPIO_PINS(2); 325 DECLARE_MSM_GPIO_PINS(3); 326 DECLARE_MSM_GPIO_PINS(4); 327 DECLARE_MSM_GPIO_PINS(5); 328 DECLARE_MSM_GPIO_PINS(6); 329 DECLARE_MSM_GPIO_PINS(7); 330 DECLARE_MSM_GPIO_PINS(8); 331 DECLARE_MSM_GPIO_PINS(9); 332 DECLARE_MSM_GPIO_PINS(10); 333 DECLARE_MSM_GPIO_PINS(11); 334 DECLARE_MSM_GPIO_PINS(12); 335 DECLARE_MSM_GPIO_PINS(13); 336 DECLARE_MSM_GPIO_PINS(14); 337 DECLARE_MSM_GPIO_PINS(15); 338 DECLARE_MSM_GPIO_PINS(16); 339 DECLARE_MSM_GPIO_PINS(17); 340 DECLARE_MSM_GPIO_PINS(18); 341 DECLARE_MSM_GPIO_PINS(19); 342 DECLARE_MSM_GPIO_PINS(20); 343 DECLARE_MSM_GPIO_PINS(21); 344 DECLARE_MSM_GPIO_PINS(22); 345 DECLARE_MSM_GPIO_PINS(23); 346 DECLARE_MSM_GPIO_PINS(24); 347 DECLARE_MSM_GPIO_PINS(25); 348 DECLARE_MSM_GPIO_PINS(26); 349 DECLARE_MSM_GPIO_PINS(27); 350 DECLARE_MSM_GPIO_PINS(28); 351 DECLARE_MSM_GPIO_PINS(29); 352 DECLARE_MSM_GPIO_PINS(30); 353 DECLARE_MSM_GPIO_PINS(31); 354 DECLARE_MSM_GPIO_PINS(32); 355 DECLARE_MSM_GPIO_PINS(33); 356 DECLARE_MSM_GPIO_PINS(34); 357 DECLARE_MSM_GPIO_PINS(35); 358 DECLARE_MSM_GPIO_PINS(36); 359 DECLARE_MSM_GPIO_PINS(37); 360 DECLARE_MSM_GPIO_PINS(38); 361 DECLARE_MSM_GPIO_PINS(39); 362 DECLARE_MSM_GPIO_PINS(40); 363 DECLARE_MSM_GPIO_PINS(41); 364 DECLARE_MSM_GPIO_PINS(42); 365 DECLARE_MSM_GPIO_PINS(43); 366 DECLARE_MSM_GPIO_PINS(44); 367 DECLARE_MSM_GPIO_PINS(45); 368 DECLARE_MSM_GPIO_PINS(46); 369 DECLARE_MSM_GPIO_PINS(47); 370 DECLARE_MSM_GPIO_PINS(48); 371 DECLARE_MSM_GPIO_PINS(49); 372 DECLARE_MSM_GPIO_PINS(50); 373 DECLARE_MSM_GPIO_PINS(51); 374 DECLARE_MSM_GPIO_PINS(52); 375 DECLARE_MSM_GPIO_PINS(53); 376 DECLARE_MSM_GPIO_PINS(54); 377 DECLARE_MSM_GPIO_PINS(55); 378 DECLARE_MSM_GPIO_PINS(56); 379 DECLARE_MSM_GPIO_PINS(57); 380 DECLARE_MSM_GPIO_PINS(58); 381 DECLARE_MSM_GPIO_PINS(59); 382 DECLARE_MSM_GPIO_PINS(60); 383 DECLARE_MSM_GPIO_PINS(61); 384 DECLARE_MSM_GPIO_PINS(62); 385 DECLARE_MSM_GPIO_PINS(63); 386 DECLARE_MSM_GPIO_PINS(64); 387 DECLARE_MSM_GPIO_PINS(65); 388 DECLARE_MSM_GPIO_PINS(66); 389 DECLARE_MSM_GPIO_PINS(67); 390 DECLARE_MSM_GPIO_PINS(68); 391 DECLARE_MSM_GPIO_PINS(69); 392 DECLARE_MSM_GPIO_PINS(70); 393 DECLARE_MSM_GPIO_PINS(71); 394 DECLARE_MSM_GPIO_PINS(72); 395 DECLARE_MSM_GPIO_PINS(73); 396 DECLARE_MSM_GPIO_PINS(74); 397 DECLARE_MSM_GPIO_PINS(75); 398 DECLARE_MSM_GPIO_PINS(76); 399 DECLARE_MSM_GPIO_PINS(77); 400 DECLARE_MSM_GPIO_PINS(78); 401 DECLARE_MSM_GPIO_PINS(79); 402 DECLARE_MSM_GPIO_PINS(80); 403 DECLARE_MSM_GPIO_PINS(81); 404 DECLARE_MSM_GPIO_PINS(82); 405 DECLARE_MSM_GPIO_PINS(83); 406 DECLARE_MSM_GPIO_PINS(84); 407 DECLARE_MSM_GPIO_PINS(85); 408 DECLARE_MSM_GPIO_PINS(86); 409 DECLARE_MSM_GPIO_PINS(87); 410 DECLARE_MSM_GPIO_PINS(88); 411 DECLARE_MSM_GPIO_PINS(89); 412 DECLARE_MSM_GPIO_PINS(90); 413 DECLARE_MSM_GPIO_PINS(91); 414 DECLARE_MSM_GPIO_PINS(92); 415 DECLARE_MSM_GPIO_PINS(93); 416 DECLARE_MSM_GPIO_PINS(94); 417 DECLARE_MSM_GPIO_PINS(95); 418 DECLARE_MSM_GPIO_PINS(96); 419 DECLARE_MSM_GPIO_PINS(97); 420 DECLARE_MSM_GPIO_PINS(98); 421 DECLARE_MSM_GPIO_PINS(99); 422 DECLARE_MSM_GPIO_PINS(100); 423 DECLARE_MSM_GPIO_PINS(101); 424 DECLARE_MSM_GPIO_PINS(102); 425 DECLARE_MSM_GPIO_PINS(103); 426 DECLARE_MSM_GPIO_PINS(104); 427 DECLARE_MSM_GPIO_PINS(105); 428 DECLARE_MSM_GPIO_PINS(106); 429 DECLARE_MSM_GPIO_PINS(107); 430 DECLARE_MSM_GPIO_PINS(108); 431 DECLARE_MSM_GPIO_PINS(109); 432 DECLARE_MSM_GPIO_PINS(110); 433 DECLARE_MSM_GPIO_PINS(111); 434 DECLARE_MSM_GPIO_PINS(112); 435 DECLARE_MSM_GPIO_PINS(113); 436 DECLARE_MSM_GPIO_PINS(114); 437 DECLARE_MSM_GPIO_PINS(115); 438 DECLARE_MSM_GPIO_PINS(116); 439 DECLARE_MSM_GPIO_PINS(117); 440 DECLARE_MSM_GPIO_PINS(118); 441 DECLARE_MSM_GPIO_PINS(119); 442 DECLARE_MSM_GPIO_PINS(120); 443 DECLARE_MSM_GPIO_PINS(121); 444 DECLARE_MSM_GPIO_PINS(122); 445 DECLARE_MSM_GPIO_PINS(123); 446 DECLARE_MSM_GPIO_PINS(124); 447 DECLARE_MSM_GPIO_PINS(125); 448 DECLARE_MSM_GPIO_PINS(126); 449 DECLARE_MSM_GPIO_PINS(127); 450 DECLARE_MSM_GPIO_PINS(128); 451 DECLARE_MSM_GPIO_PINS(129); 452 DECLARE_MSM_GPIO_PINS(130); 453 DECLARE_MSM_GPIO_PINS(131); 454 DECLARE_MSM_GPIO_PINS(132); 455 DECLARE_MSM_GPIO_PINS(133); 456 DECLARE_MSM_GPIO_PINS(134); 457 DECLARE_MSM_GPIO_PINS(135); 458 DECLARE_MSM_GPIO_PINS(136); 459 DECLARE_MSM_GPIO_PINS(137); 460 DECLARE_MSM_GPIO_PINS(138); 461 DECLARE_MSM_GPIO_PINS(139); 462 DECLARE_MSM_GPIO_PINS(140); 463 DECLARE_MSM_GPIO_PINS(141); 464 DECLARE_MSM_GPIO_PINS(142); 465 DECLARE_MSM_GPIO_PINS(143); 466 DECLARE_MSM_GPIO_PINS(144); 467 DECLARE_MSM_GPIO_PINS(145); 468 DECLARE_MSM_GPIO_PINS(146); 469 DECLARE_MSM_GPIO_PINS(147); 470 DECLARE_MSM_GPIO_PINS(148); 471 DECLARE_MSM_GPIO_PINS(149); 472 DECLARE_MSM_GPIO_PINS(150); 473 DECLARE_MSM_GPIO_PINS(151); 474 DECLARE_MSM_GPIO_PINS(152); 475 DECLARE_MSM_GPIO_PINS(153); 476 DECLARE_MSM_GPIO_PINS(154); 477 DECLARE_MSM_GPIO_PINS(155); 478 DECLARE_MSM_GPIO_PINS(156); 479 DECLARE_MSM_GPIO_PINS(157); 480 DECLARE_MSM_GPIO_PINS(158); 481 DECLARE_MSM_GPIO_PINS(159); 482 DECLARE_MSM_GPIO_PINS(160); 483 DECLARE_MSM_GPIO_PINS(161); 484 DECLARE_MSM_GPIO_PINS(162); 485 DECLARE_MSM_GPIO_PINS(163); 486 DECLARE_MSM_GPIO_PINS(164); 487 DECLARE_MSM_GPIO_PINS(165); 488 DECLARE_MSM_GPIO_PINS(166); 489 DECLARE_MSM_GPIO_PINS(167); 490 DECLARE_MSM_GPIO_PINS(168); 491 DECLARE_MSM_GPIO_PINS(169); 492 DECLARE_MSM_GPIO_PINS(170); 493 DECLARE_MSM_GPIO_PINS(171); 494 DECLARE_MSM_GPIO_PINS(172); 495 DECLARE_MSM_GPIO_PINS(173); 496 DECLARE_MSM_GPIO_PINS(174); 497 DECLARE_MSM_GPIO_PINS(175); 498 DECLARE_MSM_GPIO_PINS(176); 499 DECLARE_MSM_GPIO_PINS(177); 500 DECLARE_MSM_GPIO_PINS(178); 501 DECLARE_MSM_GPIO_PINS(179); 502 DECLARE_MSM_GPIO_PINS(180); 503 DECLARE_MSM_GPIO_PINS(181); 504 DECLARE_MSM_GPIO_PINS(182); 505 DECLARE_MSM_GPIO_PINS(183); 506 DECLARE_MSM_GPIO_PINS(184); 507 DECLARE_MSM_GPIO_PINS(185); 508 DECLARE_MSM_GPIO_PINS(186); 509 DECLARE_MSM_GPIO_PINS(187); 510 DECLARE_MSM_GPIO_PINS(188); 511 DECLARE_MSM_GPIO_PINS(189); 512 DECLARE_MSM_GPIO_PINS(190); 513 DECLARE_MSM_GPIO_PINS(191); 514 DECLARE_MSM_GPIO_PINS(192); 515 DECLARE_MSM_GPIO_PINS(193); 516 DECLARE_MSM_GPIO_PINS(194); 517 DECLARE_MSM_GPIO_PINS(195); 518 DECLARE_MSM_GPIO_PINS(196); 519 DECLARE_MSM_GPIO_PINS(197); 520 DECLARE_MSM_GPIO_PINS(198); 521 DECLARE_MSM_GPIO_PINS(199); 522 DECLARE_MSM_GPIO_PINS(200); 523 DECLARE_MSM_GPIO_PINS(201); 524 DECLARE_MSM_GPIO_PINS(202); 525 DECLARE_MSM_GPIO_PINS(203); 526 DECLARE_MSM_GPIO_PINS(204); 527 DECLARE_MSM_GPIO_PINS(205); 528 DECLARE_MSM_GPIO_PINS(206); 529 DECLARE_MSM_GPIO_PINS(207); 530 DECLARE_MSM_GPIO_PINS(208); 531 DECLARE_MSM_GPIO_PINS(209); 532 533 static const unsigned int ufs_reset_pins[] = { 210 }; 534 static const unsigned int sdc2_clk_pins[] = { 211 }; 535 static const unsigned int sdc2_cmd_pins[] = { 212 }; 536 static const unsigned int sdc2_data_pins[] = { 213 }; 537 538 enum sm8450_functions { 539 msm_mux_gpio, 540 msm_mux_aon_cam, 541 msm_mux_atest_char, 542 msm_mux_atest_usb, 543 msm_mux_audio_ref, 544 msm_mux_cam_mclk, 545 msm_mux_cci_async, 546 msm_mux_cci_i2c, 547 msm_mux_cci_timer, 548 msm_mux_cmu_rng, 549 msm_mux_coex_uart1, 550 msm_mux_coex_uart2, 551 msm_mux_cri_trng, 552 msm_mux_cri_trng0, 553 msm_mux_cri_trng1, 554 msm_mux_dbg_out, 555 msm_mux_ddr_bist, 556 msm_mux_ddr_pxi0, 557 msm_mux_ddr_pxi1, 558 msm_mux_ddr_pxi2, 559 msm_mux_ddr_pxi3, 560 msm_mux_dp_hot, 561 msm_mux_egpio, 562 msm_mux_gcc_gp1, 563 msm_mux_gcc_gp2, 564 msm_mux_gcc_gp3, 565 msm_mux_ibi_i3c, 566 msm_mux_jitter_bist, 567 msm_mux_mdp_vsync, 568 msm_mux_mdp_vsync0, 569 msm_mux_mdp_vsync1, 570 msm_mux_mdp_vsync2, 571 msm_mux_mdp_vsync3, 572 msm_mux_mi2s0_data0, 573 msm_mux_mi2s0_data1, 574 msm_mux_mi2s0_sck, 575 msm_mux_mi2s0_ws, 576 msm_mux_mi2s2_data0, 577 msm_mux_mi2s2_data1, 578 msm_mux_mi2s2_sck, 579 msm_mux_mi2s2_ws, 580 msm_mux_mss_grfc0, 581 msm_mux_mss_grfc1, 582 msm_mux_mss_grfc10, 583 msm_mux_mss_grfc11, 584 msm_mux_mss_grfc12, 585 msm_mux_mss_grfc2, 586 msm_mux_mss_grfc3, 587 msm_mux_mss_grfc4, 588 msm_mux_mss_grfc5, 589 msm_mux_mss_grfc6, 590 msm_mux_mss_grfc7, 591 msm_mux_mss_grfc8, 592 msm_mux_mss_grfc9, 593 msm_mux_nav, 594 msm_mux_pcie0_clkreqn, 595 msm_mux_pcie1_clkreqn, 596 msm_mux_phase_flag, 597 msm_mux_pll_bist, 598 msm_mux_pll_clk, 599 msm_mux_pri_mi2s, 600 msm_mux_prng_rosc, 601 msm_mux_qdss_cti, 602 msm_mux_qdss_gpio, 603 msm_mux_qlink0_enable, 604 msm_mux_qlink0_request, 605 msm_mux_qlink0_wmss, 606 msm_mux_qlink1_enable, 607 msm_mux_qlink1_request, 608 msm_mux_qlink1_wmss, 609 msm_mux_qlink2_enable, 610 msm_mux_qlink2_request, 611 msm_mux_qlink2_wmss, 612 msm_mux_qspi0, 613 msm_mux_qspi1, 614 msm_mux_qspi2, 615 msm_mux_qspi3, 616 msm_mux_qspi_clk, 617 msm_mux_qspi_cs, 618 msm_mux_qup0, 619 msm_mux_qup1, 620 msm_mux_qup10, 621 msm_mux_qup11, 622 msm_mux_qup12, 623 msm_mux_qup13, 624 msm_mux_qup14, 625 msm_mux_qup15, 626 msm_mux_qup16, 627 msm_mux_qup17, 628 msm_mux_qup18, 629 msm_mux_qup19, 630 msm_mux_qup2, 631 msm_mux_qup20, 632 msm_mux_qup21, 633 msm_mux_qup3, 634 msm_mux_qup4, 635 msm_mux_qup5, 636 msm_mux_qup6, 637 msm_mux_qup7, 638 msm_mux_qup8, 639 msm_mux_qup9, 640 msm_mux_qup_l4, 641 msm_mux_qup_l5, 642 msm_mux_qup_l6, 643 msm_mux_sd_write, 644 msm_mux_sdc40, 645 msm_mux_sdc41, 646 msm_mux_sdc42, 647 msm_mux_sdc43, 648 msm_mux_sdc4_clk, 649 msm_mux_sdc4_cmd, 650 msm_mux_sec_mi2s, 651 msm_mux_tb_trig, 652 msm_mux_tgu_ch0, 653 msm_mux_tgu_ch1, 654 msm_mux_tgu_ch2, 655 msm_mux_tgu_ch3, 656 msm_mux_tmess_prng0, 657 msm_mux_tmess_prng1, 658 msm_mux_tmess_prng2, 659 msm_mux_tmess_prng3, 660 msm_mux_tsense_pwm1, 661 msm_mux_tsense_pwm2, 662 msm_mux_uim0_clk, 663 msm_mux_uim0_data, 664 msm_mux_uim0_present, 665 msm_mux_uim0_reset, 666 msm_mux_uim1_clk, 667 msm_mux_uim1_data, 668 msm_mux_uim1_present, 669 msm_mux_uim1_reset, 670 msm_mux_usb2phy_ac, 671 msm_mux_usb_phy, 672 msm_mux_vfr_0, 673 msm_mux_vfr_1, 674 msm_mux_vsense_trigger, 675 msm_mux__, 676 }; 677 678 static const char * const gpio_groups[] = { 679 "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7", 680 "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14", 681 "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21", 682 "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", 683 "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35", 684 "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42", 685 "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49", 686 "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56", 687 "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63", 688 "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70", 689 "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77", 690 "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84", 691 "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91", 692 "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98", 693 "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", 694 "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110", 695 "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116", 696 "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122", 697 "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128", 698 "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134", 699 "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140", 700 "gpio141", "gpio142", "gpio143", "gpio144", "gpio145", "gpio146", 701 "gpio147", "gpio148", "gpio149", "gpio150", "gpio151", "gpio152", 702 "gpio153", "gpio154", "gpio155", "gpio156", "gpio157", "gpio158", 703 "gpio159", "gpio160", "gpio161", "gpio162", "gpio163", "gpio164", 704 "gpio165", "gpio166", "gpio167", "gpio168", "gpio169", "gpio170", 705 "gpio171", "gpio172", "gpio173", "gpio174", "gpio175", "gpio176", 706 "gpio177", "gpio178", "gpio179", "gpio180", "gpio181", "gpio182", 707 "gpio183", "gpio184", "gpio185", "gpio186", "gpio187", "gpio188", 708 "gpio189", "gpio190", "gpio191", "gpio192", "gpio193", "gpio194", 709 "gpio195", "gpio196", "gpio197", "gpio198", "gpio199", "gpio200", 710 "gpio201", "gpio202", "gpio203", "gpio204", "gpio205", "gpio206", 711 "gpio207", "gpio208", "gpio209", 712 }; 713 714 static const char * const egpio_groups[] = { 715 "gpio165", "gpio166", "gpio167", "gpio168", "gpio169", "gpio170", 716 "gpio171", "gpio172", "gpio173", "gpio174", "gpio175", "gpio176", 717 "gpio177", "gpio178", "gpio179", "gpio180", "gpio181", "gpio182", 718 "gpio183", "gpio184", "gpio185", "gpio186", "gpio187", "gpio188", 719 "gpio189", "gpio190", "gpio191", "gpio192", "gpio193", "gpio194", 720 "gpio195", "gpio196", "gpio197", "gpio198", "gpio199", "gpio200", 721 "gpio201", "gpio202", "gpio203", "gpio204", "gpio205", "gpio206", 722 "gpio207", "gpio208", "gpio209", 723 }; 724 725 static const char * const aon_cam_groups[] = { 726 "gpio108", 727 }; 728 729 static const char * const atest_char_groups[] = { 730 "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", 731 }; 732 733 static const char * const atest_usb_groups[] = { 734 "gpio37", "gpio39", "gpio55", "gpio148", "gpio149", 735 }; 736 737 static const char * const audio_ref_groups[] = { 738 "gpio124", 739 }; 740 741 static const char * const cam_mclk_groups[] = { 742 "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", "gpio105", "gpio106", "gpio107", 743 }; 744 745 static const char * const cci_async_groups[] = { 746 "gpio109", "gpio119", "gpio120", 747 }; 748 749 static const char * const cci_i2c_groups[] = { 750 "gpio110", "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio208", "gpio209", 751 }; 752 753 static const char * const cci_timer_groups[] = { 754 "gpio116", "gpio117", "gpio118", "gpio119", "gpio120", 755 }; 756 757 static const char * const cmu_rng_groups[] = { 758 "gpio94", "gpio95", "gpio96", "gpio97", 759 }; 760 761 static const char * const coex_uart1_groups[] = { 762 "gpio148", "gpio149", 763 }; 764 765 static const char * const coex_uart2_groups[] = { 766 "gpio150", "gpio151", 767 }; 768 769 static const char * const cri_trng_groups[] = { 770 "gpio99", 771 }; 772 773 static const char * const cri_trng0_groups[] = { 774 "gpio71", 775 }; 776 777 static const char * const cri_trng1_groups[] = { 778 "gpio72", 779 }; 780 781 static const char * const dbg_out_groups[] = { 782 "gpio9", 783 }; 784 785 static const char * const ddr_bist_groups[] = { 786 "gpio36", "gpio37", "gpio40", "gpio41", 787 }; 788 789 static const char * const ddr_pxi0_groups[] = { 790 "gpio51", "gpio52", 791 }; 792 793 static const char * const ddr_pxi1_groups[] = { 794 "gpio40", "gpio41", 795 }; 796 797 static const char * const ddr_pxi2_groups[] = { 798 "gpio45", "gpio47", 799 }; 800 801 static const char * const ddr_pxi3_groups[] = { 802 "gpio43", "gpio44", 803 }; 804 805 static const char * const dp_hot_groups[] = { 806 "gpio47", 807 }; 808 809 static const char * const gcc_gp1_groups[] = { 810 "gpio86", "gpio134", 811 }; 812 813 static const char * const gcc_gp2_groups[] = { 814 "gpio87", "gpio135", 815 }; 816 817 static const char * const gcc_gp3_groups[] = { 818 "gpio88", "gpio136", 819 }; 820 821 static const char * const ibi_i3c_groups[] = { 822 "gpio28", "gpio29", "gpio32", "gpio33", "gpio56", "gpio57", "gpio60", "gpio61", 823 }; 824 825 static const char * const jitter_bist_groups[] = { 826 "gpio24", 827 }; 828 829 static const char * const mdp_vsync_groups[] = { 830 "gpio46", "gpio47", "gpio86", "gpio87", "gpio88", 831 }; 832 833 static const char * const mdp_vsync0_groups[] = { 834 "gpio86", 835 }; 836 837 static const char * const mdp_vsync1_groups[] = { 838 "gpio86", 839 }; 840 841 static const char * const mdp_vsync2_groups[] = { 842 "gpio87", 843 }; 844 845 static const char * const mdp_vsync3_groups[] = { 846 "gpio87", 847 }; 848 849 static const char * const mi2s0_data0_groups[] = { 850 "gpio127", 851 }; 852 853 static const char * const mi2s0_data1_groups[] = { 854 "gpio128", 855 }; 856 857 static const char * const mi2s0_sck_groups[] = { 858 "gpio126", 859 }; 860 861 static const char * const mi2s0_ws_groups[] = { 862 "gpio129", 863 }; 864 865 static const char * const mi2s2_data0_groups[] = { 866 "gpio122", 867 }; 868 869 static const char * const mi2s2_data1_groups[] = { 870 "gpio124", 871 }; 872 873 static const char * const mi2s2_sck_groups[] = { 874 "gpio121", 875 }; 876 877 static const char * const mi2s2_ws_groups[] = { 878 "gpio123", 879 }; 880 881 static const char * const mss_grfc0_groups[] = { 882 "gpio138", "gpio153", 883 }; 884 885 static const char * const mss_grfc1_groups[] = { 886 "gpio139", 887 }; 888 889 static const char * const mss_grfc10_groups[] = { 890 "gpio150", 891 }; 892 893 static const char * const mss_grfc11_groups[] = { 894 "gpio151", 895 }; 896 897 static const char * const mss_grfc12_groups[] = { 898 "gpio152", 899 }; 900 901 static const char * const mss_grfc2_groups[] = { 902 "gpio140", 903 }; 904 905 static const char * const mss_grfc3_groups[] = { 906 "gpio141", 907 }; 908 909 static const char * const mss_grfc4_groups[] = { 910 "gpio142", 911 }; 912 913 static const char * const mss_grfc5_groups[] = { 914 "gpio143", 915 }; 916 917 static const char * const mss_grfc6_groups[] = { 918 "gpio144", 919 }; 920 921 static const char * const mss_grfc7_groups[] = { 922 "gpio145", 923 }; 924 925 static const char * const mss_grfc8_groups[] = { 926 "gpio146", 927 }; 928 929 static const char * const mss_grfc9_groups[] = { 930 "gpio147", 931 }; 932 933 static const char * const nav_groups[] = { 934 "gpio153", "gpio154", "gpio155", 935 }; 936 937 static const char * const pcie0_clkreqn_groups[] = { 938 "gpio95", 939 }; 940 941 static const char * const pcie1_clkreqn_groups[] = { 942 "gpio98", 943 }; 944 945 static const char * const phase_flag_groups[] = { 946 "gpio4", "gpio5", "gpio6", "gpio7", "gpio10", "gpio11", "gpio12", "gpio13", 947 "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio25", "gpio26", 948 "gpio76", "gpio77", "gpio78", "gpio79", "gpio81", "gpio82", "gpio83", "gpio92", 949 "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98", "gpio99", 950 }; 951 952 static const char * const pll_bist_groups[] = { 953 "gpio20", 954 }; 955 956 static const char * const pll_clk_groups[] = { 957 "gpio107", 958 }; 959 960 static const char * const pri_mi2s_groups[] = { 961 "gpio125", 962 }; 963 964 static const char * const prng_rosc_groups[] = { 965 "gpio73", "gpio75", "gpio81", "gpio83", "gpio81", 966 }; 967 968 static const char * const qdss_cti_groups[] = { 969 "gpio2", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84", "gpio85", "gpio93", 970 }; 971 972 static const char * const qdss_gpio_groups[] = { 973 "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", "gpio105", "gpio106", "gpio107", 974 "gpio110", "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio117", "gpio118", 975 "gpio119", "gpio120", "gpio188", "gpio189", "gpio190", "gpio191", "gpio192", "gpio193", 976 "gpio194", "gpio195", "gpio196", "gpio197", "gpio198", "gpio199", "gpio200", "gpio201", 977 "gpio202", "gpio203", "gpio204", "gpio205", 978 }; 979 980 static const char * const qlink0_enable_groups[] = { 981 "gpio157", 982 }; 983 984 static const char * const qlink0_request_groups[] = { 985 "gpio156", 986 }; 987 988 static const char * const qlink0_wmss_groups[] = { 989 "gpio158", 990 }; 991 992 static const char * const qlink1_enable_groups[] = { 993 "gpio160", 994 }; 995 996 static const char * const qlink1_request_groups[] = { 997 "gpio159", 998 }; 999 1000 static const char * const qlink1_wmss_groups[] = { 1001 "gpio161", 1002 }; 1003 1004 static const char * const qlink2_enable_groups[] = { 1005 "gpio163", 1006 }; 1007 1008 static const char * const qlink2_request_groups[] = { 1009 "gpio162", 1010 }; 1011 1012 static const char * const qlink2_wmss_groups[] = { 1013 "gpio164", 1014 }; 1015 1016 static const char * const qspi0_groups[] = { 1017 "gpio52", 1018 }; 1019 1020 static const char * const qspi1_groups[] = { 1021 "gpio53", 1022 }; 1023 1024 static const char * const qspi2_groups[] = { 1025 "gpio48", 1026 }; 1027 1028 static const char * const qspi3_groups[] = { 1029 "gpio49", 1030 }; 1031 1032 static const char * const qspi_clk_groups[] = { 1033 "gpio50", 1034 }; 1035 1036 static const char * const qspi_cs_groups[] = { 1037 "gpio51", "gpio54", 1038 }; 1039 1040 static const char * const qup0_groups[] = { 1041 "gpio0", "gpio1", "gpio2", "gpio3", 1042 }; 1043 1044 static const char * const qup1_groups[] = { 1045 "gpio4", "gpio5", "gpio6", "gpio7", 1046 }; 1047 1048 static const char * const qup10_groups[] = { 1049 "gpio36", "gpio37", "gpio38", "gpio39", 1050 }; 1051 1052 static const char * const qup11_groups[] = { 1053 "gpio40", "gpio41", "gpio42", "gpio43", 1054 }; 1055 1056 static const char * const qup12_groups[] = { 1057 "gpio44", "gpio45", "gpio46", "gpio47", 1058 }; 1059 1060 static const char * const qup13_groups[] = { 1061 "gpio48", "gpio49", "gpio50", "gpio51", 1062 }; 1063 1064 static const char * const qup14_groups[] = { 1065 "gpio52", "gpio53", "gpio54", "gpio55", 1066 }; 1067 1068 static const char * const qup15_groups[] = { 1069 "gpio56", "gpio57", "gpio58", "gpio59", 1070 }; 1071 1072 static const char * const qup16_groups[] = { 1073 "gpio60", "gpio61", "gpio62", "gpio63", 1074 }; 1075 1076 static const char * const qup17_groups[] = { 1077 "gpio64", "gpio65", "gpio66", "gpio67", 1078 }; 1079 1080 static const char * const qup18_groups[] = { 1081 "gpio68", "gpio69", "gpio70", "gpio71", 1082 }; 1083 1084 static const char * const qup19_groups[] = { 1085 "gpio72", "gpio73", "gpio74", "gpio75", 1086 }; 1087 1088 static const char * const qup2_groups[] = { 1089 "gpio8", "gpio9", "gpio10", "gpio11", 1090 }; 1091 1092 static const char * const qup20_groups[] = { 1093 "gpio76", "gpio77", "gpio78", "gpio79", 1094 }; 1095 1096 static const char * const qup21_groups[] = { 1097 "gpio80", "gpio81", "gpio82", "gpio83", 1098 }; 1099 1100 static const char * const qup3_groups[] = { 1101 "gpio12", "gpio13", "gpio14", "gpio15", 1102 }; 1103 1104 static const char * const qup4_groups[] = { 1105 "gpio16", "gpio17", "gpio18", "gpio19", 1106 }; 1107 1108 static const char * const qup5_groups[] = { 1109 "gpio84", "gpio85", "gpio206", "gpio207", 1110 }; 1111 1112 static const char * const qup6_groups[] = { 1113 "gpio20", "gpio21", "gpio22", "gpio23", 1114 }; 1115 1116 static const char * const qup7_groups[] = { 1117 "gpio24", "gpio25", "gpio26", "gpio27", 1118 }; 1119 1120 static const char * const qup8_groups[] = { 1121 "gpio28", "gpio29", "gpio30", "gpio31", 1122 }; 1123 1124 static const char * const qup9_groups[] = { 1125 "gpio32", "gpio33", "gpio34", "gpio35", 1126 }; 1127 1128 static const char * const qup_l4_groups[] = { 1129 "gpio24", "gpio40", "gpio58", "gpio63", 1130 }; 1131 1132 static const char * const qup_l5_groups[] = { 1133 "gpio25", "gpio41", "gpio59", "gpio66", 1134 }; 1135 1136 static const char * const qup_l6_groups[] = { 1137 "gpio26", "gpio42", "gpio62", "gpio67", 1138 }; 1139 1140 static const char * const sd_write_groups[] = { 1141 "gpio93", 1142 }; 1143 1144 static const char * const sdc40_groups[] = { 1145 "gpio52", 1146 }; 1147 1148 static const char * const sdc41_groups[] = { 1149 "gpio53", 1150 }; 1151 1152 static const char * const sdc42_groups[] = { 1153 "gpio48", 1154 }; 1155 1156 static const char * const sdc43_groups[] = { 1157 "gpio49", 1158 }; 1159 1160 static const char * const sdc4_clk_groups[] = { 1161 "gpio50", 1162 }; 1163 1164 static const char * const sdc4_cmd_groups[] = { 1165 "gpio51", 1166 }; 1167 1168 static const char * const sec_mi2s_groups[] = { 1169 "gpio124", 1170 }; 1171 1172 static const char * const tb_trig_groups[] = { 1173 "gpio64", "gpio137", 1174 }; 1175 1176 static const char * const tgu_ch0_groups[] = { 1177 "gpio64", 1178 }; 1179 1180 static const char * const tgu_ch1_groups[] = { 1181 "gpio65", 1182 }; 1183 1184 static const char * const tgu_ch2_groups[] = { 1185 "gpio66", 1186 }; 1187 1188 static const char * const tgu_ch3_groups[] = { 1189 "gpio67", 1190 }; 1191 1192 static const char * const tmess_prng0_groups[] = { 1193 "gpio80", 1194 }; 1195 1196 static const char * const tmess_prng1_groups[] = { 1197 "gpio79", 1198 }; 1199 1200 static const char * const tmess_prng2_groups[] = { 1201 "gpio77", 1202 }; 1203 1204 static const char * const tmess_prng3_groups[] = { 1205 "gpio76", 1206 }; 1207 1208 static const char * const tsense_pwm1_groups[] = { 1209 "gpio91", 1210 }; 1211 1212 static const char * const tsense_pwm2_groups[] = { 1213 "gpio91", 1214 }; 1215 1216 static const char * const uim0_clk_groups[] = { 1217 "gpio131", 1218 }; 1219 1220 static const char * const uim0_data_groups[] = { 1221 "gpio130", 1222 }; 1223 1224 static const char * const uim0_present_groups[] = { 1225 "gpio133", 1226 }; 1227 1228 static const char * const uim0_reset_groups[] = { 1229 "gpio132", 1230 }; 1231 1232 static const char * const uim1_clk_groups[] = { 1233 "gpio135", 1234 }; 1235 1236 static const char * const uim1_data_groups[] = { 1237 "gpio134", 1238 }; 1239 1240 static const char * const uim1_present_groups[] = { 1241 "gpio137", 1242 }; 1243 1244 static const char * const uim1_reset_groups[] = { 1245 "gpio136", 1246 }; 1247 1248 static const char * const usb2phy_ac_groups[] = { 1249 "gpio90", 1250 }; 1251 1252 static const char * const usb_phy_groups[] = { 1253 "gpio91", 1254 }; 1255 1256 static const char * const vfr_0_groups[] = { 1257 "gpio89", 1258 }; 1259 1260 static const char * const vfr_1_groups[] = { 1261 "gpio155", 1262 }; 1263 1264 static const char * const vsense_trigger_groups[] = { 1265 "gpio18", 1266 }; 1267 1268 static const struct pinfunction sm8450_functions[] = { 1269 MSM_GPIO_PIN_FUNCTION(gpio), 1270 MSM_PIN_FUNCTION(aon_cam), 1271 MSM_PIN_FUNCTION(atest_char), 1272 MSM_PIN_FUNCTION(atest_usb), 1273 MSM_PIN_FUNCTION(audio_ref), 1274 MSM_PIN_FUNCTION(cam_mclk), 1275 MSM_PIN_FUNCTION(cci_async), 1276 MSM_PIN_FUNCTION(cci_i2c), 1277 MSM_PIN_FUNCTION(cci_timer), 1278 MSM_PIN_FUNCTION(cmu_rng), 1279 MSM_PIN_FUNCTION(coex_uart1), 1280 MSM_PIN_FUNCTION(coex_uart2), 1281 MSM_PIN_FUNCTION(cri_trng), 1282 MSM_PIN_FUNCTION(cri_trng0), 1283 MSM_PIN_FUNCTION(cri_trng1), 1284 MSM_PIN_FUNCTION(dbg_out), 1285 MSM_PIN_FUNCTION(ddr_bist), 1286 MSM_PIN_FUNCTION(ddr_pxi0), 1287 MSM_PIN_FUNCTION(ddr_pxi1), 1288 MSM_PIN_FUNCTION(ddr_pxi2), 1289 MSM_PIN_FUNCTION(ddr_pxi3), 1290 MSM_PIN_FUNCTION(dp_hot), 1291 MSM_GPIO_PIN_FUNCTION(egpio), 1292 MSM_PIN_FUNCTION(gcc_gp1), 1293 MSM_PIN_FUNCTION(gcc_gp2), 1294 MSM_PIN_FUNCTION(gcc_gp3), 1295 MSM_PIN_FUNCTION(ibi_i3c), 1296 MSM_PIN_FUNCTION(jitter_bist), 1297 MSM_PIN_FUNCTION(mdp_vsync), 1298 MSM_PIN_FUNCTION(mdp_vsync0), 1299 MSM_PIN_FUNCTION(mdp_vsync1), 1300 MSM_PIN_FUNCTION(mdp_vsync2), 1301 MSM_PIN_FUNCTION(mdp_vsync3), 1302 MSM_PIN_FUNCTION(mi2s0_data0), 1303 MSM_PIN_FUNCTION(mi2s0_data1), 1304 MSM_PIN_FUNCTION(mi2s0_sck), 1305 MSM_PIN_FUNCTION(mi2s0_ws), 1306 MSM_PIN_FUNCTION(mi2s2_data0), 1307 MSM_PIN_FUNCTION(mi2s2_data1), 1308 MSM_PIN_FUNCTION(mi2s2_sck), 1309 MSM_PIN_FUNCTION(mi2s2_ws), 1310 MSM_PIN_FUNCTION(mss_grfc0), 1311 MSM_PIN_FUNCTION(mss_grfc1), 1312 MSM_PIN_FUNCTION(mss_grfc10), 1313 MSM_PIN_FUNCTION(mss_grfc11), 1314 MSM_PIN_FUNCTION(mss_grfc12), 1315 MSM_PIN_FUNCTION(mss_grfc2), 1316 MSM_PIN_FUNCTION(mss_grfc3), 1317 MSM_PIN_FUNCTION(mss_grfc4), 1318 MSM_PIN_FUNCTION(mss_grfc5), 1319 MSM_PIN_FUNCTION(mss_grfc6), 1320 MSM_PIN_FUNCTION(mss_grfc7), 1321 MSM_PIN_FUNCTION(mss_grfc8), 1322 MSM_PIN_FUNCTION(mss_grfc9), 1323 MSM_PIN_FUNCTION(nav), 1324 MSM_PIN_FUNCTION(pcie0_clkreqn), 1325 MSM_PIN_FUNCTION(pcie1_clkreqn), 1326 MSM_PIN_FUNCTION(phase_flag), 1327 MSM_PIN_FUNCTION(pll_bist), 1328 MSM_PIN_FUNCTION(pll_clk), 1329 MSM_PIN_FUNCTION(pri_mi2s), 1330 MSM_PIN_FUNCTION(prng_rosc), 1331 MSM_PIN_FUNCTION(qdss_cti), 1332 MSM_PIN_FUNCTION(qdss_gpio), 1333 MSM_PIN_FUNCTION(qlink0_enable), 1334 MSM_PIN_FUNCTION(qlink0_request), 1335 MSM_PIN_FUNCTION(qlink0_wmss), 1336 MSM_PIN_FUNCTION(qlink1_enable), 1337 MSM_PIN_FUNCTION(qlink1_request), 1338 MSM_PIN_FUNCTION(qlink1_wmss), 1339 MSM_PIN_FUNCTION(qlink2_enable), 1340 MSM_PIN_FUNCTION(qlink2_request), 1341 MSM_PIN_FUNCTION(qlink2_wmss), 1342 MSM_PIN_FUNCTION(qspi0), 1343 MSM_PIN_FUNCTION(qspi1), 1344 MSM_PIN_FUNCTION(qspi2), 1345 MSM_PIN_FUNCTION(qspi3), 1346 MSM_PIN_FUNCTION(qspi_clk), 1347 MSM_PIN_FUNCTION(qspi_cs), 1348 MSM_PIN_FUNCTION(qup0), 1349 MSM_PIN_FUNCTION(qup1), 1350 MSM_PIN_FUNCTION(qup10), 1351 MSM_PIN_FUNCTION(qup11), 1352 MSM_PIN_FUNCTION(qup12), 1353 MSM_PIN_FUNCTION(qup13), 1354 MSM_PIN_FUNCTION(qup14), 1355 MSM_PIN_FUNCTION(qup15), 1356 MSM_PIN_FUNCTION(qup16), 1357 MSM_PIN_FUNCTION(qup17), 1358 MSM_PIN_FUNCTION(qup18), 1359 MSM_PIN_FUNCTION(qup19), 1360 MSM_PIN_FUNCTION(qup2), 1361 MSM_PIN_FUNCTION(qup20), 1362 MSM_PIN_FUNCTION(qup21), 1363 MSM_PIN_FUNCTION(qup3), 1364 MSM_PIN_FUNCTION(qup4), 1365 MSM_PIN_FUNCTION(qup5), 1366 MSM_PIN_FUNCTION(qup6), 1367 MSM_PIN_FUNCTION(qup7), 1368 MSM_PIN_FUNCTION(qup8), 1369 MSM_PIN_FUNCTION(qup9), 1370 MSM_PIN_FUNCTION(qup_l4), 1371 MSM_PIN_FUNCTION(qup_l5), 1372 MSM_PIN_FUNCTION(qup_l6), 1373 MSM_PIN_FUNCTION(sd_write), 1374 MSM_PIN_FUNCTION(sdc40), 1375 MSM_PIN_FUNCTION(sdc41), 1376 MSM_PIN_FUNCTION(sdc42), 1377 MSM_PIN_FUNCTION(sdc43), 1378 MSM_PIN_FUNCTION(sdc4_clk), 1379 MSM_PIN_FUNCTION(sdc4_cmd), 1380 MSM_PIN_FUNCTION(sec_mi2s), 1381 MSM_PIN_FUNCTION(tb_trig), 1382 MSM_PIN_FUNCTION(tgu_ch0), 1383 MSM_PIN_FUNCTION(tgu_ch1), 1384 MSM_PIN_FUNCTION(tgu_ch2), 1385 MSM_PIN_FUNCTION(tgu_ch3), 1386 MSM_PIN_FUNCTION(tmess_prng0), 1387 MSM_PIN_FUNCTION(tmess_prng1), 1388 MSM_PIN_FUNCTION(tmess_prng2), 1389 MSM_PIN_FUNCTION(tmess_prng3), 1390 MSM_PIN_FUNCTION(tsense_pwm1), 1391 MSM_PIN_FUNCTION(tsense_pwm2), 1392 MSM_PIN_FUNCTION(uim0_clk), 1393 MSM_PIN_FUNCTION(uim0_data), 1394 MSM_PIN_FUNCTION(uim0_present), 1395 MSM_PIN_FUNCTION(uim0_reset), 1396 MSM_PIN_FUNCTION(uim1_clk), 1397 MSM_PIN_FUNCTION(uim1_data), 1398 MSM_PIN_FUNCTION(uim1_present), 1399 MSM_PIN_FUNCTION(uim1_reset), 1400 MSM_PIN_FUNCTION(usb2phy_ac), 1401 MSM_PIN_FUNCTION(usb_phy), 1402 MSM_PIN_FUNCTION(vfr_0), 1403 MSM_PIN_FUNCTION(vfr_1), 1404 MSM_PIN_FUNCTION(vsense_trigger), 1405 }; 1406 1407 /* Every pin is maintained as a single group, and missing or non-existing pin 1408 * would be maintained as dummy group to synchronize pin group index with 1409 * pin descriptor registered with pinctrl core. 1410 * Clients would not be able to request these dummy pin groups. 1411 */ 1412 static const struct msm_pingroup sm8450_groups[] = { 1413 [0] = PINGROUP(0, qup0, _, _, _, _, _, _, _, _), 1414 [1] = PINGROUP(1, qup0, _, _, _, _, _, _, _, _), 1415 [2] = PINGROUP(2, qup0, qdss_cti, _, _, _, _, _, _, _), 1416 [3] = PINGROUP(3, qup0, _, _, _, _, _, _, _, _), 1417 [4] = PINGROUP(4, qup1, phase_flag, _, _, _, _, _, _, _), 1418 [5] = PINGROUP(5, qup1, phase_flag, _, _, _, _, _, _, _), 1419 [6] = PINGROUP(6, qup1, phase_flag, _, _, _, _, _, _, _), 1420 [7] = PINGROUP(7, qup1, phase_flag, _, _, _, _, _, _, _), 1421 [8] = PINGROUP(8, qup2, _, _, _, _, _, _, _, _), 1422 [9] = PINGROUP(9, qup2, dbg_out, _, _, _, _, _, _, _), 1423 [10] = PINGROUP(10, qup2, phase_flag, _, _, _, _, _, _, _), 1424 [11] = PINGROUP(11, qup2, phase_flag, _, _, _, _, _, _, _), 1425 [12] = PINGROUP(12, qup3, phase_flag, _, _, _, _, _, _, _), 1426 [13] = PINGROUP(13, qup3, phase_flag, _, _, _, _, _, _, _), 1427 [14] = PINGROUP(14, qup3, phase_flag, _, _, _, _, _, _, _), 1428 [15] = PINGROUP(15, qup3, phase_flag, _, _, _, _, _, _, _), 1429 [16] = PINGROUP(16, qup4, phase_flag, _, _, _, _, _, _, _), 1430 [17] = PINGROUP(17, qup4, phase_flag, _, _, _, _, _, _, _), 1431 [18] = PINGROUP(18, qup4, phase_flag, _, vsense_trigger, _, _, _, _, _), 1432 [19] = PINGROUP(19, qup4, phase_flag, _, _, _, _, _, _, _), 1433 [20] = PINGROUP(20, qup6, pll_bist, _, _, _, _, _, _, _), 1434 [21] = PINGROUP(21, qup6, _, _, _, _, _, _, _, _), 1435 [22] = PINGROUP(22, qup6, _, _, _, _, _, _, _, _), 1436 [23] = PINGROUP(23, qup6, _, _, _, _, _, _, _, _), 1437 [24] = PINGROUP(24, qup7, qup_l4, jitter_bist, _, _, _, _, _, _), 1438 [25] = PINGROUP(25, qup7, qup_l5, phase_flag, _, _, _, _, _, _), 1439 [26] = PINGROUP(26, qup7, qup_l6, phase_flag, _, _, _, _, _, _), 1440 [27] = PINGROUP(27, qup7, _, _, _, _, _, _, _, _), 1441 [28] = PINGROUP(28, qup8, ibi_i3c, _, _, _, _, _, _, _), 1442 [29] = PINGROUP(29, qup8, ibi_i3c, _, _, _, _, _, _, _), 1443 [30] = PINGROUP(30, qup8, _, _, _, _, _, _, _, _), 1444 [31] = PINGROUP(31, qup8, _, _, _, _, _, _, _, _), 1445 [32] = PINGROUP(32, qup9, ibi_i3c, _, _, _, _, _, _, _), 1446 [33] = PINGROUP(33, qup9, ibi_i3c, _, _, _, _, _, _, _), 1447 [34] = PINGROUP(34, qup9, _, _, _, _, _, _, _, _), 1448 [35] = PINGROUP(35, qup9, _, _, _, _, _, _, _, _), 1449 [36] = PINGROUP(36, qup10, ddr_bist, _, _, _, _, _, _, _), 1450 [37] = PINGROUP(37, qup10, ddr_bist, atest_usb, _, _, _, _, _, _), 1451 [38] = PINGROUP(38, qup10, _, _, _, _, _, _, _, _), 1452 [39] = PINGROUP(39, qup10, atest_usb, _, _, _, _, _, _, _), 1453 [40] = PINGROUP(40, qup11, qup_l4, ddr_bist, ddr_pxi1, _, _, _, _, _), 1454 [41] = PINGROUP(41, qup11, qup_l5, ddr_bist, ddr_pxi1, _, _, _, _, _), 1455 [42] = PINGROUP(42, qup11, qup_l6, _, _, _, _, _, _, _), 1456 [43] = PINGROUP(43, qup11, ddr_pxi3, _, _, _, _, _, _, _), 1457 [44] = PINGROUP(44, qup12, ddr_pxi3, _, _, _, _, _, _, _), 1458 [45] = PINGROUP(45, qup12, ddr_pxi2, _, _, _, _, _, _, _), 1459 [46] = PINGROUP(46, qup12, mdp_vsync, _, _, _, _, _, _, _), 1460 [47] = PINGROUP(47, qup12, dp_hot, mdp_vsync, ddr_pxi2, _, _, _, _, _), 1461 [48] = PINGROUP(48, qup13, qspi2, sdc42, _, _, _, _, _, _), 1462 [49] = PINGROUP(49, qup13, qspi3, sdc43, _, _, _, _, _, _), 1463 [50] = PINGROUP(50, qup13, qspi_clk, sdc4_clk, _, _, _, _, _, _), 1464 [51] = PINGROUP(51, qup13, qspi_cs, sdc4_cmd, ddr_pxi0, _, _, _, _, _), 1465 [52] = PINGROUP(52, qup14, qspi0, sdc40, ddr_pxi0, _, _, _, _, _), 1466 [53] = PINGROUP(53, qup14, qspi1, sdc41, _, _, _, _, _, _), 1467 [54] = PINGROUP(54, qup14, qspi_cs, _, _, _, _, _, _, _), 1468 [55] = PINGROUP(55, qup14, atest_usb, _, _, _, _, _, _, _), 1469 [56] = PINGROUP(56, qup15, ibi_i3c, _, _, _, _, _, _, _), 1470 [57] = PINGROUP(57, qup15, ibi_i3c, _, _, _, _, _, _, _), 1471 [58] = PINGROUP(58, qup15, qup_l4, _, _, _, _, _, _, _), 1472 [59] = PINGROUP(59, qup15, qup_l5, _, _, _, _, _, _, _), 1473 [60] = PINGROUP(60, qup16, ibi_i3c, _, _, _, _, _, _, _), 1474 [61] = PINGROUP(61, qup16, ibi_i3c, _, _, _, _, _, _, _), 1475 [62] = PINGROUP(62, qup16, qup_l6, _, _, _, _, _, _, _), 1476 [63] = PINGROUP(63, qup16, qup_l4, _, _, _, _, _, _, _), 1477 [64] = PINGROUP(64, qup17, tb_trig, tgu_ch0, _, _, _, _, _, _), 1478 [65] = PINGROUP(65, qup17, tgu_ch1, _, _, _, _, _, _, _), 1479 [66] = PINGROUP(66, qup17, qup_l5, tgu_ch2, _, _, _, _, _, _), 1480 [67] = PINGROUP(67, qup17, qup_l6, tgu_ch3, _, _, _, _, _, _), 1481 [68] = PINGROUP(68, qup18, _, _, _, _, _, _, _, _), 1482 [69] = PINGROUP(69, qup18, _, _, _, _, _, _, _, _), 1483 [70] = PINGROUP(70, qup18, _, _, _, _, _, _, _, _), 1484 [71] = PINGROUP(71, qup18, cri_trng0, _, _, _, _, _, _, _), 1485 [72] = PINGROUP(72, qup19, cri_trng1, _, _, _, _, _, _, _), 1486 [73] = PINGROUP(73, qup19, prng_rosc, _, _, _, _, _, _, _), 1487 [74] = PINGROUP(74, qup19, _, _, _, _, _, _, _, _), 1488 [75] = PINGROUP(75, qup19, prng_rosc, _, _, _, _, _, _, _), 1489 [76] = PINGROUP(76, qup20, phase_flag, tmess_prng3, _, _, _, _, _, _), 1490 [77] = PINGROUP(77, qup20, phase_flag, tmess_prng2, _, _, _, _, _, _), 1491 [78] = PINGROUP(78, qup20, phase_flag, _, _, _, _, _, _, _), 1492 [79] = PINGROUP(79, qup20, phase_flag, tmess_prng1, _, _, _, _, _, _), 1493 [80] = PINGROUP(80, qup21, qdss_cti, phase_flag, tmess_prng0, _, _, _, _, _), 1494 [81] = PINGROUP(81, qup21, qdss_cti, phase_flag, prng_rosc, _, _, _, _, _), 1495 [82] = PINGROUP(82, qup21, qdss_cti, phase_flag, _, _, _, _, _, _), 1496 [83] = PINGROUP(83, qup21, qdss_cti, phase_flag, prng_rosc, _, _, _, _, _), 1497 [84] = PINGROUP(84, qup5, qdss_cti, _, _, _, _, _, _, _), 1498 [85] = PINGROUP(85, qup5, qdss_cti, _, _, _, _, _, _, _), 1499 [86] = PINGROUP(86, mdp_vsync, mdp_vsync0, mdp_vsync1, gcc_gp1, atest_char, _, _, _, _), 1500 [87] = PINGROUP(87, mdp_vsync, mdp_vsync2, mdp_vsync3, gcc_gp2, atest_char, _, _, _, _), 1501 [88] = PINGROUP(88, mdp_vsync, gcc_gp3, atest_char, _, _, _, _, _, _), 1502 [89] = PINGROUP(89, vfr_0, atest_char, _, _, _, _, _, _, _), 1503 [90] = PINGROUP(90, usb2phy_ac, atest_char, _, _, _, _, _, _, _), 1504 [91] = PINGROUP(91, usb_phy, tsense_pwm1, tsense_pwm2, _, _, _, _, _, _), 1505 [92] = PINGROUP(92, phase_flag, _, _, _, _, _, _, _, _), 1506 [93] = PINGROUP(93, sd_write, qdss_cti, phase_flag, _, _, _, _, _, _), 1507 [94] = PINGROUP(94, cmu_rng, phase_flag, _, _, _, _, _, _, _), 1508 [95] = PINGROUP(95, pcie0_clkreqn, cmu_rng, phase_flag, _, _, _, _, _, _), 1509 [96] = PINGROUP(96, cmu_rng, phase_flag, _, _, _, _, _, _, _), 1510 [97] = PINGROUP(97, cmu_rng, phase_flag, _, _, _, _, _, _, _), 1511 [98] = PINGROUP(98, pcie1_clkreqn, phase_flag, _, _, _, _, _, _, _), 1512 [99] = PINGROUP(99, phase_flag, cri_trng, _, _, _, _, _, _, _), 1513 [100] = PINGROUP(100, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1514 [101] = PINGROUP(101, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1515 [102] = PINGROUP(102, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1516 [103] = PINGROUP(103, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1517 [104] = PINGROUP(104, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1518 [105] = PINGROUP(105, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1519 [106] = PINGROUP(106, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1520 [107] = PINGROUP(107, cam_mclk, qdss_gpio, pll_clk, _, _, _, _, _, _), 1521 [108] = PINGROUP(108, aon_cam, _, _, _, _, _, _, _, _), 1522 [109] = PINGROUP(109, cci_async, _, _, _, _, _, _, _, _), 1523 [110] = PINGROUP(110, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1524 [111] = PINGROUP(111, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1525 [112] = PINGROUP(112, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1526 [113] = PINGROUP(113, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1527 [114] = PINGROUP(114, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1528 [115] = PINGROUP(115, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1529 [116] = PINGROUP(116, cci_timer, _, _, _, _, _, _, _, _), 1530 [117] = PINGROUP(117, cci_timer, qdss_gpio, _, _, _, _, _, _, _), 1531 [118] = PINGROUP(118, cci_timer, qdss_gpio, _, _, _, _, _, _, _), 1532 [119] = PINGROUP(119, cci_timer, cci_async, qdss_gpio, _, _, _, _, _, _), 1533 [120] = PINGROUP(120, cci_timer, cci_async, qdss_gpio, _, _, _, _, _, _), 1534 [121] = PINGROUP(121, mi2s2_sck, _, _, _, _, _, _, _, _), 1535 [122] = PINGROUP(122, mi2s2_data0, _, _, _, _, _, _, _, _), 1536 [123] = PINGROUP(123, mi2s2_ws, _, _, _, _, _, _, _, _), 1537 [124] = PINGROUP(124, mi2s2_data1, sec_mi2s, audio_ref, _, _, _, _, _, _), 1538 [125] = PINGROUP(125, pri_mi2s, _, _, _, _, _, _, _, _), 1539 [126] = PINGROUP(126, mi2s0_sck, _, _, _, _, _, _, _, _), 1540 [127] = PINGROUP(127, mi2s0_data0, _, _, _, _, _, _, _, _), 1541 [128] = PINGROUP(128, mi2s0_data1, _, _, _, _, _, _, _, _), 1542 [129] = PINGROUP(129, mi2s0_ws, _, _, _, _, _, _, _, _), 1543 [130] = PINGROUP(130, uim0_data, _, _, _, _, _, _, _, _), 1544 [131] = PINGROUP(131, uim0_clk, _, _, _, _, _, _, _, _), 1545 [132] = PINGROUP(132, uim0_reset, _, _, _, _, _, _, _, _), 1546 [133] = PINGROUP(133, uim0_present, _, _, _, _, _, _, _, _), 1547 [134] = PINGROUP(134, uim1_data, gcc_gp1, _, _, _, _, _, _, _), 1548 [135] = PINGROUP(135, uim1_clk, gcc_gp2, _, _, _, _, _, _, _), 1549 [136] = PINGROUP(136, uim1_reset, gcc_gp3, _, _, _, _, _, _, _), 1550 [137] = PINGROUP(137, uim1_present, tb_trig, _, _, _, _, _, _, _), 1551 [138] = PINGROUP(138, _, mss_grfc0, _, _, _, _, _, _, _), 1552 [139] = PINGROUP(139, _, mss_grfc1, _, _, _, _, _, _, _), 1553 [140] = PINGROUP(140, _, mss_grfc2, _, _, _, _, _, _, _), 1554 [141] = PINGROUP(141, _, mss_grfc3, _, _, _, _, _, _, _), 1555 [142] = PINGROUP(142, _, mss_grfc4, _, _, _, _, _, _, _), 1556 [143] = PINGROUP(143, _, mss_grfc5, _, _, _, _, _, _, _), 1557 [144] = PINGROUP(144, _, mss_grfc6, _, _, _, _, _, _, _), 1558 [145] = PINGROUP(145, _, mss_grfc7, _, _, _, _, _, _, _), 1559 [146] = PINGROUP(146, _, mss_grfc8, _, _, _, _, _, _, _), 1560 [147] = PINGROUP(147, _, mss_grfc9, _, _, _, _, _, _, _), 1561 [148] = PINGROUP(148, coex_uart1, atest_usb, _, _, _, _, _, _, _), 1562 [149] = PINGROUP(149, coex_uart1, atest_usb, _, _, _, _, _, _, _), 1563 [150] = PINGROUP(150, coex_uart2, mss_grfc10, _, _, _, _, _, _, _), 1564 [151] = PINGROUP(151, coex_uart2, mss_grfc11, _, _, _, _, _, _, _), 1565 [152] = PINGROUP(152, mss_grfc12, _, _, _, _, _, _, _, _), 1566 [153] = PINGROUP(153, mss_grfc0, nav, _, _, _, _, _, _, _), 1567 [154] = PINGROUP(154, nav, _, _, _, _, _, _, _, _), 1568 [155] = PINGROUP(155, nav, vfr_1, _, _, _, _, _, _, _), 1569 [156] = PINGROUP(156, qlink0_request, _, _, _, _, _, _, _, _), 1570 [157] = PINGROUP(157, qlink0_enable, _, _, _, _, _, _, _, _), 1571 [158] = PINGROUP(158, qlink0_wmss, _, _, _, _, _, _, _, _), 1572 [159] = PINGROUP(159, qlink1_request, _, _, _, _, _, _, _, _), 1573 [160] = PINGROUP(160, qlink1_enable, _, _, _, _, _, _, _, _), 1574 [161] = PINGROUP(161, qlink1_wmss, _, _, _, _, _, _, _, _), 1575 [162] = PINGROUP(162, qlink2_request, _, _, _, _, _, _, _, _), 1576 [163] = PINGROUP(163, qlink2_enable, _, _, _, _, _, _, _, _), 1577 [164] = PINGROUP(164, qlink2_wmss, _, _, _, _, _, _, _, _), 1578 [165] = PINGROUP(165, _, _, _, _, _, _, _, _, egpio), 1579 [166] = PINGROUP(166, _, _, _, _, _, _, _, _, egpio), 1580 [167] = PINGROUP(167, _, _, _, _, _, _, _, _, egpio), 1581 [168] = PINGROUP(168, _, _, _, _, _, _, _, _, egpio), 1582 [169] = PINGROUP(169, _, _, _, _, _, _, _, _, egpio), 1583 [170] = PINGROUP(170, _, _, _, _, _, _, _, _, egpio), 1584 [171] = PINGROUP(171, _, _, _, _, _, _, _, _, egpio), 1585 [172] = PINGROUP(172, _, _, _, _, _, _, _, _, egpio), 1586 [173] = PINGROUP(173, _, _, _, _, _, _, _, _, egpio), 1587 [174] = PINGROUP(174, _, _, _, _, _, _, _, _, egpio), 1588 [175] = PINGROUP(175, _, _, _, _, _, _, _, _, egpio), 1589 [176] = PINGROUP(176, _, _, _, _, _, _, _, _, egpio), 1590 [177] = PINGROUP(177, _, _, _, _, _, _, _, _, egpio), 1591 [178] = PINGROUP(178, _, _, _, _, _, _, _, _, egpio), 1592 [179] = PINGROUP(179, _, _, _, _, _, _, _, _, egpio), 1593 [180] = PINGROUP(180, _, _, _, _, _, _, _, _, egpio), 1594 [181] = PINGROUP(181, _, _, _, _, _, _, _, _, egpio), 1595 [182] = PINGROUP(182, _, _, _, _, _, _, _, _, egpio), 1596 [183] = PINGROUP(183, _, _, _, _, _, _, _, _, egpio), 1597 [184] = PINGROUP(184, _, _, _, _, _, _, _, _, egpio), 1598 [185] = PINGROUP(185, _, _, _, _, _, _, _, _, egpio), 1599 [186] = PINGROUP(186, _, _, _, _, _, _, _, _, egpio), 1600 [187] = PINGROUP(187, _, _, _, _, _, _, _, _, egpio), 1601 [188] = PINGROUP(188, _, qdss_gpio, _, _, _, _, _, _, egpio), 1602 [189] = PINGROUP(189, _, qdss_gpio, _, _, _, _, _, _, egpio), 1603 [190] = PINGROUP(190, qdss_gpio, _, _, _, _, _, _, _, egpio), 1604 [191] = PINGROUP(191, qdss_gpio, _, _, _, _, _, _, _, egpio), 1605 [192] = PINGROUP(192, _, qdss_gpio, _, _, _, _, _, _, egpio), 1606 [193] = PINGROUP(193, _, qdss_gpio, _, _, _, _, _, _, egpio), 1607 [194] = PINGROUP(194, _, qdss_gpio, _, _, _, _, _, _, egpio), 1608 [195] = PINGROUP(195, _, qdss_gpio, _, _, _, _, _, _, egpio), 1609 [196] = PINGROUP(196, _, qdss_gpio, _, _, _, _, _, _, egpio), 1610 [197] = PINGROUP(197, _, qdss_gpio, _, _, _, _, _, _, egpio), 1611 [198] = PINGROUP(198, _, qdss_gpio, _, _, _, _, _, _, egpio), 1612 [199] = PINGROUP(199, _, qdss_gpio, _, _, _, _, _, _, egpio), 1613 [200] = PINGROUP(200, _, qdss_gpio, _, _, _, _, _, _, egpio), 1614 [201] = PINGROUP(201, _, qdss_gpio, _, _, _, _, _, _, egpio), 1615 [202] = PINGROUP(202, qdss_gpio, _, _, _, _, _, _, _, egpio), 1616 [203] = PINGROUP(203, qdss_gpio, _, _, _, _, _, _, _, egpio), 1617 [204] = PINGROUP(204, qdss_gpio, _, _, _, _, _, _, _, egpio), 1618 [205] = PINGROUP(205, qdss_gpio, _, _, _, _, _, _, _, egpio), 1619 [206] = PINGROUP(206, qup5, _, _, _, _, _, _, _, egpio), 1620 [207] = PINGROUP(207, qup5, _, _, _, _, _, _, _, egpio), 1621 [208] = PINGROUP(208, cci_i2c, _, _, _, _, _, _, _, egpio), 1622 [209] = PINGROUP(209, cci_i2c, _, _, _, _, _, _, _, egpio), 1623 [210] = UFS_RESET(ufs_reset, 0xde000), 1624 [211] = SDC_QDSD_PINGROUP(sdc2_clk, 0xd6000, 14, 6), 1625 [212] = SDC_QDSD_PINGROUP(sdc2_cmd, 0xd6000, 11, 3), 1626 [213] = SDC_QDSD_PINGROUP(sdc2_data, 0xd6000, 9, 0), 1627 }; 1628 1629 static const struct msm_gpio_wakeirq_map sm8450_pdc_map[] = { 1630 { 2, 70 }, { 3, 77 }, { 7, 52 }, { 8, 108 }, { 10, 128 }, { 11, 53 }, 1631 { 12, 129 }, { 13, 130 }, { 14, 131 }, { 15, 67 }, { 19, 69 }, { 21, 132 }, 1632 { 23, 54 }, { 26, 56 }, { 27, 71 }, { 28, 57 }, { 31, 55 }, { 32, 58 }, 1633 { 34, 72 }, { 35, 43 }, { 36, 78 }, { 38, 79 }, { 39, 62 }, { 40, 80 }, 1634 { 41, 133 }, { 43, 81 }, { 44, 87 }, { 45, 134 }, { 46, 66 }, { 47, 63 }, 1635 { 50, 88 }, { 51, 89 }, { 55, 90 }, { 56, 59 }, { 59, 82 }, { 60, 60 }, 1636 { 62, 135 }, { 63, 91 }, { 66, 136 }, { 67, 44 }, { 69, 137 }, { 71, 97 }, 1637 { 75, 73 }, { 79, 74 }, { 80, 96 }, { 81, 98 }, { 82, 45 }, { 83, 99 }, 1638 { 84, 94 }, { 85, 100 }, { 86, 101 }, { 87, 102 }, { 88, 92 }, { 89, 83 }, 1639 { 90, 84 }, { 91, 85 }, { 92, 46 }, { 95, 103 }, { 96, 104 }, { 98, 105 }, 1640 { 99, 106 }, { 115, 95 }, { 116, 76 }, { 117, 75 }, { 118, 86 }, { 119, 93 }, 1641 { 133, 47 }, { 137, 42 }, { 148, 61 }, { 150, 68 }, { 153, 65 }, { 154, 48 }, 1642 { 155, 49 }, { 156, 64 }, { 159, 50 }, { 162, 51 }, { 166, 111 }, { 169, 114 }, 1643 { 171, 115 }, { 172, 116 }, { 174, 117 }, { 176, 107 }, { 181, 109 }, 1644 { 182, 110 }, { 185, 112 }, { 187, 113 }, { 188, 118 }, { 190, 122 }, 1645 { 192, 123 }, { 195, 124 }, { 201, 119 }, { 203, 120 }, { 205, 121 }, 1646 }; 1647 1648 static const struct msm_pinctrl_soc_data sm8450_tlmm = { 1649 .pins = sm8450_pins, 1650 .npins = ARRAY_SIZE(sm8450_pins), 1651 .functions = sm8450_functions, 1652 .nfunctions = ARRAY_SIZE(sm8450_functions), 1653 .groups = sm8450_groups, 1654 .ngroups = ARRAY_SIZE(sm8450_groups), 1655 .ngpios = 211, 1656 .wakeirq_map = sm8450_pdc_map, 1657 .nwakeirq_map = ARRAY_SIZE(sm8450_pdc_map), 1658 .egpio_func = 9, 1659 }; 1660 1661 static int sm8450_tlmm_probe(struct platform_device *pdev) 1662 { 1663 return msm_pinctrl_probe(pdev, &sm8450_tlmm); 1664 } 1665 1666 static const struct of_device_id sm8450_tlmm_of_match[] = { 1667 { .compatible = "qcom,sm8450-tlmm", }, 1668 { }, 1669 }; 1670 MODULE_DEVICE_TABLE(of, sm8450_tlmm_of_match); 1671 1672 static struct platform_driver sm8450_tlmm_driver = { 1673 .driver = { 1674 .name = "sm8450-tlmm", 1675 .of_match_table = sm8450_tlmm_of_match, 1676 }, 1677 .probe = sm8450_tlmm_probe, 1678 }; 1679 1680 static int __init sm8450_tlmm_init(void) 1681 { 1682 return platform_driver_register(&sm8450_tlmm_driver); 1683 } 1684 arch_initcall(sm8450_tlmm_init); 1685 1686 static void __exit sm8450_tlmm_exit(void) 1687 { 1688 platform_driver_unregister(&sm8450_tlmm_driver); 1689 } 1690 module_exit(sm8450_tlmm_exit); 1691 1692 MODULE_DESCRIPTION("QTI SM8450 TLMM driver"); 1693 MODULE_LICENSE("GPL v2"); 1694