pinctrl-sc8180x.c (52956B)
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Copyright (c) 2018-2019, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2020-2021, Linaro Ltd. 5 */ 6 7#include <linux/module.h> 8#include <linux/of.h> 9#include <linux/platform_device.h> 10#include <linux/pinctrl/pinctrl.h> 11 12#include "pinctrl-msm.h" 13 14static const char * const sc8180x_tiles[] = { 15 "south", 16 "east", 17 "west" 18}; 19 20enum { 21 SOUTH, 22 EAST, 23 WEST 24}; 25 26/* 27 * ACPI DSDT has one single memory resource for TLMM. The offsets below are 28 * used to locate different tiles for ACPI probe. 29 */ 30struct tile_info { 31 u32 offset; 32 u32 size; 33}; 34 35static const struct tile_info sc8180x_tile_info[] = { 36 { 0x00d00000, 0x00300000, }, 37 { 0x00500000, 0x00700000, }, 38 { 0x00100000, 0x00300000, }, 39}; 40 41#define FUNCTION(fname) \ 42 [msm_mux_##fname] = { \ 43 .name = #fname, \ 44 .groups = fname##_groups, \ 45 .ngroups = ARRAY_SIZE(fname##_groups), \ 46 } 47 48#define REG_SIZE 0x1000 49#define PINGROUP_OFFSET(id, _tile, offset, f1, f2, f3, f4, f5, f6, f7, f8, f9) \ 50 { \ 51 .name = "gpio" #id, \ 52 .pins = gpio##id##_pins, \ 53 .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \ 54 .funcs = (int[]){ \ 55 msm_mux_gpio, /* gpio mode */ \ 56 msm_mux_##f1, \ 57 msm_mux_##f2, \ 58 msm_mux_##f3, \ 59 msm_mux_##f4, \ 60 msm_mux_##f5, \ 61 msm_mux_##f6, \ 62 msm_mux_##f7, \ 63 msm_mux_##f8, \ 64 msm_mux_##f9 \ 65 }, \ 66 .nfuncs = 10, \ 67 .ctl_reg = REG_SIZE * id + offset, \ 68 .io_reg = REG_SIZE * id + 0x4 + offset, \ 69 .intr_cfg_reg = REG_SIZE * id + 0x8 + offset, \ 70 .intr_status_reg = REG_SIZE * id + 0xc + offset,\ 71 .intr_target_reg = REG_SIZE * id + 0x8 + offset,\ 72 .tile = _tile, \ 73 .mux_bit = 2, \ 74 .pull_bit = 0, \ 75 .drv_bit = 6, \ 76 .oe_bit = 9, \ 77 .in_bit = 0, \ 78 .out_bit = 1, \ 79 .intr_enable_bit = 0, \ 80 .intr_status_bit = 0, \ 81 .intr_target_bit = 5, \ 82 .intr_target_kpss_val = 3, \ 83 .intr_raw_status_bit = 4, \ 84 .intr_polarity_bit = 1, \ 85 .intr_detection_bit = 2, \ 86 .intr_detection_width = 2, \ 87 } 88 89#define PINGROUP(id, _tile, f1, f2, f3, f4, f5, f6, f7, f8, f9) \ 90 PINGROUP_OFFSET(id, _tile, 0x0, f1, f2, f3, f4, f5, f6, f7, f8, f9) 91 92#define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \ 93 { \ 94 .name = #pg_name, \ 95 .pins = pg_name##_pins, \ 96 .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \ 97 .ctl_reg = ctl, \ 98 .io_reg = 0, \ 99 .intr_cfg_reg = 0, \ 100 .intr_status_reg = 0, \ 101 .intr_target_reg = 0, \ 102 .tile = EAST, \ 103 .mux_bit = -1, \ 104 .pull_bit = pull, \ 105 .drv_bit = drv, \ 106 .oe_bit = -1, \ 107 .in_bit = -1, \ 108 .out_bit = -1, \ 109 .intr_enable_bit = -1, \ 110 .intr_status_bit = -1, \ 111 .intr_target_bit = -1, \ 112 .intr_raw_status_bit = -1, \ 113 .intr_polarity_bit = -1, \ 114 .intr_detection_bit = -1, \ 115 .intr_detection_width = -1, \ 116 } 117 118#define UFS_RESET(pg_name) \ 119 { \ 120 .name = #pg_name, \ 121 .pins = pg_name##_pins, \ 122 .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \ 123 .ctl_reg = 0xb6000, \ 124 .io_reg = 0xb6004, \ 125 .intr_cfg_reg = 0, \ 126 .intr_status_reg = 0, \ 127 .intr_target_reg = 0, \ 128 .tile = SOUTH, \ 129 .mux_bit = -1, \ 130 .pull_bit = 3, \ 131 .drv_bit = 0, \ 132 .oe_bit = -1, \ 133 .in_bit = -1, \ 134 .out_bit = 0, \ 135 .intr_enable_bit = -1, \ 136 .intr_status_bit = -1, \ 137 .intr_target_bit = -1, \ 138 .intr_raw_status_bit = -1, \ 139 .intr_polarity_bit = -1, \ 140 .intr_detection_bit = -1, \ 141 .intr_detection_width = -1, \ 142 } 143static const struct pinctrl_pin_desc sc8180x_pins[] = { 144 PINCTRL_PIN(0, "GPIO_0"), 145 PINCTRL_PIN(1, "GPIO_1"), 146 PINCTRL_PIN(2, "GPIO_2"), 147 PINCTRL_PIN(3, "GPIO_3"), 148 PINCTRL_PIN(4, "GPIO_4"), 149 PINCTRL_PIN(5, "GPIO_5"), 150 PINCTRL_PIN(6, "GPIO_6"), 151 PINCTRL_PIN(7, "GPIO_7"), 152 PINCTRL_PIN(8, "GPIO_8"), 153 PINCTRL_PIN(9, "GPIO_9"), 154 PINCTRL_PIN(10, "GPIO_10"), 155 PINCTRL_PIN(11, "GPIO_11"), 156 PINCTRL_PIN(12, "GPIO_12"), 157 PINCTRL_PIN(13, "GPIO_13"), 158 PINCTRL_PIN(14, "GPIO_14"), 159 PINCTRL_PIN(15, "GPIO_15"), 160 PINCTRL_PIN(16, "GPIO_16"), 161 PINCTRL_PIN(17, "GPIO_17"), 162 PINCTRL_PIN(18, "GPIO_18"), 163 PINCTRL_PIN(19, "GPIO_19"), 164 PINCTRL_PIN(20, "GPIO_20"), 165 PINCTRL_PIN(21, "GPIO_21"), 166 PINCTRL_PIN(22, "GPIO_22"), 167 PINCTRL_PIN(23, "GPIO_23"), 168 PINCTRL_PIN(24, "GPIO_24"), 169 PINCTRL_PIN(25, "GPIO_25"), 170 PINCTRL_PIN(26, "GPIO_26"), 171 PINCTRL_PIN(27, "GPIO_27"), 172 PINCTRL_PIN(28, "GPIO_28"), 173 PINCTRL_PIN(29, "GPIO_29"), 174 PINCTRL_PIN(30, "GPIO_30"), 175 PINCTRL_PIN(31, "GPIO_31"), 176 PINCTRL_PIN(32, "GPIO_32"), 177 PINCTRL_PIN(33, "GPIO_33"), 178 PINCTRL_PIN(34, "GPIO_34"), 179 PINCTRL_PIN(35, "GPIO_35"), 180 PINCTRL_PIN(36, "GPIO_36"), 181 PINCTRL_PIN(37, "GPIO_37"), 182 PINCTRL_PIN(38, "GPIO_38"), 183 PINCTRL_PIN(39, "GPIO_39"), 184 PINCTRL_PIN(40, "GPIO_40"), 185 PINCTRL_PIN(41, "GPIO_41"), 186 PINCTRL_PIN(42, "GPIO_42"), 187 PINCTRL_PIN(43, "GPIO_43"), 188 PINCTRL_PIN(44, "GPIO_44"), 189 PINCTRL_PIN(45, "GPIO_45"), 190 PINCTRL_PIN(46, "GPIO_46"), 191 PINCTRL_PIN(47, "GPIO_47"), 192 PINCTRL_PIN(48, "GPIO_48"), 193 PINCTRL_PIN(49, "GPIO_49"), 194 PINCTRL_PIN(50, "GPIO_50"), 195 PINCTRL_PIN(51, "GPIO_51"), 196 PINCTRL_PIN(52, "GPIO_52"), 197 PINCTRL_PIN(53, "GPIO_53"), 198 PINCTRL_PIN(54, "GPIO_54"), 199 PINCTRL_PIN(55, "GPIO_55"), 200 PINCTRL_PIN(56, "GPIO_56"), 201 PINCTRL_PIN(57, "GPIO_57"), 202 PINCTRL_PIN(58, "GPIO_58"), 203 PINCTRL_PIN(59, "GPIO_59"), 204 PINCTRL_PIN(60, "GPIO_60"), 205 PINCTRL_PIN(61, "GPIO_61"), 206 PINCTRL_PIN(62, "GPIO_62"), 207 PINCTRL_PIN(63, "GPIO_63"), 208 PINCTRL_PIN(64, "GPIO_64"), 209 PINCTRL_PIN(65, "GPIO_65"), 210 PINCTRL_PIN(66, "GPIO_66"), 211 PINCTRL_PIN(67, "GPIO_67"), 212 PINCTRL_PIN(68, "GPIO_68"), 213 PINCTRL_PIN(69, "GPIO_69"), 214 PINCTRL_PIN(70, "GPIO_70"), 215 PINCTRL_PIN(71, "GPIO_71"), 216 PINCTRL_PIN(72, "GPIO_72"), 217 PINCTRL_PIN(73, "GPIO_73"), 218 PINCTRL_PIN(74, "GPIO_74"), 219 PINCTRL_PIN(75, "GPIO_75"), 220 PINCTRL_PIN(76, "GPIO_76"), 221 PINCTRL_PIN(77, "GPIO_77"), 222 PINCTRL_PIN(78, "GPIO_78"), 223 PINCTRL_PIN(79, "GPIO_79"), 224 PINCTRL_PIN(80, "GPIO_80"), 225 PINCTRL_PIN(81, "GPIO_81"), 226 PINCTRL_PIN(82, "GPIO_82"), 227 PINCTRL_PIN(83, "GPIO_83"), 228 PINCTRL_PIN(84, "GPIO_84"), 229 PINCTRL_PIN(85, "GPIO_85"), 230 PINCTRL_PIN(86, "GPIO_86"), 231 PINCTRL_PIN(87, "GPIO_87"), 232 PINCTRL_PIN(88, "GPIO_88"), 233 PINCTRL_PIN(89, "GPIO_89"), 234 PINCTRL_PIN(90, "GPIO_90"), 235 PINCTRL_PIN(91, "GPIO_91"), 236 PINCTRL_PIN(92, "GPIO_92"), 237 PINCTRL_PIN(93, "GPIO_93"), 238 PINCTRL_PIN(94, "GPIO_94"), 239 PINCTRL_PIN(95, "GPIO_95"), 240 PINCTRL_PIN(96, "GPIO_96"), 241 PINCTRL_PIN(97, "GPIO_97"), 242 PINCTRL_PIN(98, "GPIO_98"), 243 PINCTRL_PIN(99, "GPIO_99"), 244 PINCTRL_PIN(100, "GPIO_100"), 245 PINCTRL_PIN(101, "GPIO_101"), 246 PINCTRL_PIN(102, "GPIO_102"), 247 PINCTRL_PIN(103, "GPIO_103"), 248 PINCTRL_PIN(104, "GPIO_104"), 249 PINCTRL_PIN(105, "GPIO_105"), 250 PINCTRL_PIN(106, "GPIO_106"), 251 PINCTRL_PIN(107, "GPIO_107"), 252 PINCTRL_PIN(108, "GPIO_108"), 253 PINCTRL_PIN(109, "GPIO_109"), 254 PINCTRL_PIN(110, "GPIO_110"), 255 PINCTRL_PIN(111, "GPIO_111"), 256 PINCTRL_PIN(112, "GPIO_112"), 257 PINCTRL_PIN(113, "GPIO_113"), 258 PINCTRL_PIN(114, "GPIO_114"), 259 PINCTRL_PIN(115, "GPIO_115"), 260 PINCTRL_PIN(116, "GPIO_116"), 261 PINCTRL_PIN(117, "GPIO_117"), 262 PINCTRL_PIN(118, "GPIO_118"), 263 PINCTRL_PIN(119, "GPIO_119"), 264 PINCTRL_PIN(120, "GPIO_120"), 265 PINCTRL_PIN(121, "GPIO_121"), 266 PINCTRL_PIN(122, "GPIO_122"), 267 PINCTRL_PIN(123, "GPIO_123"), 268 PINCTRL_PIN(124, "GPIO_124"), 269 PINCTRL_PIN(125, "GPIO_125"), 270 PINCTRL_PIN(126, "GPIO_126"), 271 PINCTRL_PIN(127, "GPIO_127"), 272 PINCTRL_PIN(128, "GPIO_128"), 273 PINCTRL_PIN(129, "GPIO_129"), 274 PINCTRL_PIN(130, "GPIO_130"), 275 PINCTRL_PIN(131, "GPIO_131"), 276 PINCTRL_PIN(132, "GPIO_132"), 277 PINCTRL_PIN(133, "GPIO_133"), 278 PINCTRL_PIN(134, "GPIO_134"), 279 PINCTRL_PIN(135, "GPIO_135"), 280 PINCTRL_PIN(136, "GPIO_136"), 281 PINCTRL_PIN(137, "GPIO_137"), 282 PINCTRL_PIN(138, "GPIO_138"), 283 PINCTRL_PIN(139, "GPIO_139"), 284 PINCTRL_PIN(140, "GPIO_140"), 285 PINCTRL_PIN(141, "GPIO_141"), 286 PINCTRL_PIN(142, "GPIO_142"), 287 PINCTRL_PIN(143, "GPIO_143"), 288 PINCTRL_PIN(144, "GPIO_144"), 289 PINCTRL_PIN(145, "GPIO_145"), 290 PINCTRL_PIN(146, "GPIO_146"), 291 PINCTRL_PIN(147, "GPIO_147"), 292 PINCTRL_PIN(148, "GPIO_148"), 293 PINCTRL_PIN(149, "GPIO_149"), 294 PINCTRL_PIN(150, "GPIO_150"), 295 PINCTRL_PIN(151, "GPIO_151"), 296 PINCTRL_PIN(152, "GPIO_152"), 297 PINCTRL_PIN(153, "GPIO_153"), 298 PINCTRL_PIN(154, "GPIO_154"), 299 PINCTRL_PIN(155, "GPIO_155"), 300 PINCTRL_PIN(156, "GPIO_156"), 301 PINCTRL_PIN(157, "GPIO_157"), 302 PINCTRL_PIN(158, "GPIO_158"), 303 PINCTRL_PIN(159, "GPIO_159"), 304 PINCTRL_PIN(160, "GPIO_160"), 305 PINCTRL_PIN(161, "GPIO_161"), 306 PINCTRL_PIN(162, "GPIO_162"), 307 PINCTRL_PIN(163, "GPIO_163"), 308 PINCTRL_PIN(164, "GPIO_164"), 309 PINCTRL_PIN(165, "GPIO_165"), 310 PINCTRL_PIN(166, "GPIO_166"), 311 PINCTRL_PIN(167, "GPIO_167"), 312 PINCTRL_PIN(168, "GPIO_168"), 313 PINCTRL_PIN(169, "GPIO_169"), 314 PINCTRL_PIN(170, "GPIO_170"), 315 PINCTRL_PIN(171, "GPIO_171"), 316 PINCTRL_PIN(172, "GPIO_172"), 317 PINCTRL_PIN(173, "GPIO_173"), 318 PINCTRL_PIN(174, "GPIO_174"), 319 PINCTRL_PIN(175, "GPIO_175"), 320 PINCTRL_PIN(176, "GPIO_176"), 321 PINCTRL_PIN(177, "GPIO_177"), 322 PINCTRL_PIN(178, "GPIO_178"), 323 PINCTRL_PIN(179, "GPIO_179"), 324 PINCTRL_PIN(180, "GPIO_180"), 325 PINCTRL_PIN(181, "GPIO_181"), 326 PINCTRL_PIN(182, "GPIO_182"), 327 PINCTRL_PIN(183, "GPIO_183"), 328 PINCTRL_PIN(184, "GPIO_184"), 329 PINCTRL_PIN(185, "GPIO_185"), 330 PINCTRL_PIN(186, "GPIO_186"), 331 PINCTRL_PIN(187, "GPIO_187"), 332 PINCTRL_PIN(188, "GPIO_188"), 333 PINCTRL_PIN(189, "GPIO_189"), 334 PINCTRL_PIN(190, "UFS_RESET"), 335 PINCTRL_PIN(191, "SDC2_CLK"), 336 PINCTRL_PIN(192, "SDC2_CMD"), 337 PINCTRL_PIN(193, "SDC2_DATA"), 338}; 339 340#define DECLARE_MSM_GPIO_PINS(pin) \ 341 static const unsigned int gpio##pin##_pins[] = { pin } 342DECLARE_MSM_GPIO_PINS(0); 343DECLARE_MSM_GPIO_PINS(1); 344DECLARE_MSM_GPIO_PINS(2); 345DECLARE_MSM_GPIO_PINS(3); 346DECLARE_MSM_GPIO_PINS(4); 347DECLARE_MSM_GPIO_PINS(5); 348DECLARE_MSM_GPIO_PINS(6); 349DECLARE_MSM_GPIO_PINS(7); 350DECLARE_MSM_GPIO_PINS(8); 351DECLARE_MSM_GPIO_PINS(9); 352DECLARE_MSM_GPIO_PINS(10); 353DECLARE_MSM_GPIO_PINS(11); 354DECLARE_MSM_GPIO_PINS(12); 355DECLARE_MSM_GPIO_PINS(13); 356DECLARE_MSM_GPIO_PINS(14); 357DECLARE_MSM_GPIO_PINS(15); 358DECLARE_MSM_GPIO_PINS(16); 359DECLARE_MSM_GPIO_PINS(17); 360DECLARE_MSM_GPIO_PINS(18); 361DECLARE_MSM_GPIO_PINS(19); 362DECLARE_MSM_GPIO_PINS(20); 363DECLARE_MSM_GPIO_PINS(21); 364DECLARE_MSM_GPIO_PINS(22); 365DECLARE_MSM_GPIO_PINS(23); 366DECLARE_MSM_GPIO_PINS(24); 367DECLARE_MSM_GPIO_PINS(25); 368DECLARE_MSM_GPIO_PINS(26); 369DECLARE_MSM_GPIO_PINS(27); 370DECLARE_MSM_GPIO_PINS(28); 371DECLARE_MSM_GPIO_PINS(29); 372DECLARE_MSM_GPIO_PINS(30); 373DECLARE_MSM_GPIO_PINS(31); 374DECLARE_MSM_GPIO_PINS(32); 375DECLARE_MSM_GPIO_PINS(33); 376DECLARE_MSM_GPIO_PINS(34); 377DECLARE_MSM_GPIO_PINS(35); 378DECLARE_MSM_GPIO_PINS(36); 379DECLARE_MSM_GPIO_PINS(37); 380DECLARE_MSM_GPIO_PINS(38); 381DECLARE_MSM_GPIO_PINS(39); 382DECLARE_MSM_GPIO_PINS(40); 383DECLARE_MSM_GPIO_PINS(41); 384DECLARE_MSM_GPIO_PINS(42); 385DECLARE_MSM_GPIO_PINS(43); 386DECLARE_MSM_GPIO_PINS(44); 387DECLARE_MSM_GPIO_PINS(45); 388DECLARE_MSM_GPIO_PINS(46); 389DECLARE_MSM_GPIO_PINS(47); 390DECLARE_MSM_GPIO_PINS(48); 391DECLARE_MSM_GPIO_PINS(49); 392DECLARE_MSM_GPIO_PINS(50); 393DECLARE_MSM_GPIO_PINS(51); 394DECLARE_MSM_GPIO_PINS(52); 395DECLARE_MSM_GPIO_PINS(53); 396DECLARE_MSM_GPIO_PINS(54); 397DECLARE_MSM_GPIO_PINS(55); 398DECLARE_MSM_GPIO_PINS(56); 399DECLARE_MSM_GPIO_PINS(57); 400DECLARE_MSM_GPIO_PINS(58); 401DECLARE_MSM_GPIO_PINS(59); 402DECLARE_MSM_GPIO_PINS(60); 403DECLARE_MSM_GPIO_PINS(61); 404DECLARE_MSM_GPIO_PINS(62); 405DECLARE_MSM_GPIO_PINS(63); 406DECLARE_MSM_GPIO_PINS(64); 407DECLARE_MSM_GPIO_PINS(65); 408DECLARE_MSM_GPIO_PINS(66); 409DECLARE_MSM_GPIO_PINS(67); 410DECLARE_MSM_GPIO_PINS(68); 411DECLARE_MSM_GPIO_PINS(69); 412DECLARE_MSM_GPIO_PINS(70); 413DECLARE_MSM_GPIO_PINS(71); 414DECLARE_MSM_GPIO_PINS(72); 415DECLARE_MSM_GPIO_PINS(73); 416DECLARE_MSM_GPIO_PINS(74); 417DECLARE_MSM_GPIO_PINS(75); 418DECLARE_MSM_GPIO_PINS(76); 419DECLARE_MSM_GPIO_PINS(77); 420DECLARE_MSM_GPIO_PINS(78); 421DECLARE_MSM_GPIO_PINS(79); 422DECLARE_MSM_GPIO_PINS(80); 423DECLARE_MSM_GPIO_PINS(81); 424DECLARE_MSM_GPIO_PINS(82); 425DECLARE_MSM_GPIO_PINS(83); 426DECLARE_MSM_GPIO_PINS(84); 427DECLARE_MSM_GPIO_PINS(85); 428DECLARE_MSM_GPIO_PINS(86); 429DECLARE_MSM_GPIO_PINS(87); 430DECLARE_MSM_GPIO_PINS(88); 431DECLARE_MSM_GPIO_PINS(89); 432DECLARE_MSM_GPIO_PINS(90); 433DECLARE_MSM_GPIO_PINS(91); 434DECLARE_MSM_GPIO_PINS(92); 435DECLARE_MSM_GPIO_PINS(93); 436DECLARE_MSM_GPIO_PINS(94); 437DECLARE_MSM_GPIO_PINS(95); 438DECLARE_MSM_GPIO_PINS(96); 439DECLARE_MSM_GPIO_PINS(97); 440DECLARE_MSM_GPIO_PINS(98); 441DECLARE_MSM_GPIO_PINS(99); 442DECLARE_MSM_GPIO_PINS(100); 443DECLARE_MSM_GPIO_PINS(101); 444DECLARE_MSM_GPIO_PINS(102); 445DECLARE_MSM_GPIO_PINS(103); 446DECLARE_MSM_GPIO_PINS(104); 447DECLARE_MSM_GPIO_PINS(105); 448DECLARE_MSM_GPIO_PINS(106); 449DECLARE_MSM_GPIO_PINS(107); 450DECLARE_MSM_GPIO_PINS(108); 451DECLARE_MSM_GPIO_PINS(109); 452DECLARE_MSM_GPIO_PINS(110); 453DECLARE_MSM_GPIO_PINS(111); 454DECLARE_MSM_GPIO_PINS(112); 455DECLARE_MSM_GPIO_PINS(113); 456DECLARE_MSM_GPIO_PINS(114); 457DECLARE_MSM_GPIO_PINS(115); 458DECLARE_MSM_GPIO_PINS(116); 459DECLARE_MSM_GPIO_PINS(117); 460DECLARE_MSM_GPIO_PINS(118); 461DECLARE_MSM_GPIO_PINS(119); 462DECLARE_MSM_GPIO_PINS(120); 463DECLARE_MSM_GPIO_PINS(121); 464DECLARE_MSM_GPIO_PINS(122); 465DECLARE_MSM_GPIO_PINS(123); 466DECLARE_MSM_GPIO_PINS(124); 467DECLARE_MSM_GPIO_PINS(125); 468DECLARE_MSM_GPIO_PINS(126); 469DECLARE_MSM_GPIO_PINS(127); 470DECLARE_MSM_GPIO_PINS(128); 471DECLARE_MSM_GPIO_PINS(129); 472DECLARE_MSM_GPIO_PINS(130); 473DECLARE_MSM_GPIO_PINS(131); 474DECLARE_MSM_GPIO_PINS(132); 475DECLARE_MSM_GPIO_PINS(133); 476DECLARE_MSM_GPIO_PINS(134); 477DECLARE_MSM_GPIO_PINS(135); 478DECLARE_MSM_GPIO_PINS(136); 479DECLARE_MSM_GPIO_PINS(137); 480DECLARE_MSM_GPIO_PINS(138); 481DECLARE_MSM_GPIO_PINS(139); 482DECLARE_MSM_GPIO_PINS(140); 483DECLARE_MSM_GPIO_PINS(141); 484DECLARE_MSM_GPIO_PINS(142); 485DECLARE_MSM_GPIO_PINS(143); 486DECLARE_MSM_GPIO_PINS(144); 487DECLARE_MSM_GPIO_PINS(145); 488DECLARE_MSM_GPIO_PINS(146); 489DECLARE_MSM_GPIO_PINS(147); 490DECLARE_MSM_GPIO_PINS(148); 491DECLARE_MSM_GPIO_PINS(149); 492DECLARE_MSM_GPIO_PINS(150); 493DECLARE_MSM_GPIO_PINS(151); 494DECLARE_MSM_GPIO_PINS(152); 495DECLARE_MSM_GPIO_PINS(153); 496DECLARE_MSM_GPIO_PINS(154); 497DECLARE_MSM_GPIO_PINS(155); 498DECLARE_MSM_GPIO_PINS(156); 499DECLARE_MSM_GPIO_PINS(157); 500DECLARE_MSM_GPIO_PINS(158); 501DECLARE_MSM_GPIO_PINS(159); 502DECLARE_MSM_GPIO_PINS(160); 503DECLARE_MSM_GPIO_PINS(161); 504DECLARE_MSM_GPIO_PINS(162); 505DECLARE_MSM_GPIO_PINS(163); 506DECLARE_MSM_GPIO_PINS(164); 507DECLARE_MSM_GPIO_PINS(165); 508DECLARE_MSM_GPIO_PINS(166); 509DECLARE_MSM_GPIO_PINS(167); 510DECLARE_MSM_GPIO_PINS(168); 511DECLARE_MSM_GPIO_PINS(169); 512DECLARE_MSM_GPIO_PINS(170); 513DECLARE_MSM_GPIO_PINS(171); 514DECLARE_MSM_GPIO_PINS(172); 515DECLARE_MSM_GPIO_PINS(173); 516DECLARE_MSM_GPIO_PINS(174); 517DECLARE_MSM_GPIO_PINS(175); 518DECLARE_MSM_GPIO_PINS(176); 519DECLARE_MSM_GPIO_PINS(177); 520DECLARE_MSM_GPIO_PINS(178); 521DECLARE_MSM_GPIO_PINS(179); 522DECLARE_MSM_GPIO_PINS(180); 523DECLARE_MSM_GPIO_PINS(181); 524DECLARE_MSM_GPIO_PINS(182); 525DECLARE_MSM_GPIO_PINS(183); 526DECLARE_MSM_GPIO_PINS(184); 527DECLARE_MSM_GPIO_PINS(185); 528DECLARE_MSM_GPIO_PINS(186); 529DECLARE_MSM_GPIO_PINS(187); 530DECLARE_MSM_GPIO_PINS(188); 531DECLARE_MSM_GPIO_PINS(189); 532 533static const unsigned int sdc2_clk_pins[] = { 190 }; 534static const unsigned int sdc2_cmd_pins[] = { 191 }; 535static const unsigned int sdc2_data_pins[] = { 192 }; 536static const unsigned int ufs_reset_pins[] = { 193 }; 537 538enum sc8180x_functions { 539 msm_mux_adsp_ext, 540 msm_mux_agera_pll, 541 msm_mux_aoss_cti, 542 msm_mux_atest_char, 543 msm_mux_atest_tsens, 544 msm_mux_atest_tsens2, 545 msm_mux_atest_usb0, 546 msm_mux_atest_usb1, 547 msm_mux_atest_usb2, 548 msm_mux_atest_usb3, 549 msm_mux_atest_usb4, 550 msm_mux_audio_ref, 551 msm_mux_btfm_slimbus, 552 msm_mux_cam_mclk, 553 msm_mux_cci_async, 554 msm_mux_cci_i2c, 555 msm_mux_cci_timer0, 556 msm_mux_cci_timer1, 557 msm_mux_cci_timer2, 558 msm_mux_cci_timer3, 559 msm_mux_cci_timer4, 560 msm_mux_cci_timer5, 561 msm_mux_cci_timer6, 562 msm_mux_cci_timer7, 563 msm_mux_cci_timer8, 564 msm_mux_cci_timer9, 565 msm_mux_cri_trng, 566 msm_mux_dbg_out, 567 msm_mux_ddr_bist, 568 msm_mux_ddr_pxi, 569 msm_mux_debug_hot, 570 msm_mux_dp_hot, 571 msm_mux_edp_hot, 572 msm_mux_edp_lcd, 573 msm_mux_emac_phy, 574 msm_mux_emac_pps, 575 msm_mux_gcc_gp1, 576 msm_mux_gcc_gp2, 577 msm_mux_gcc_gp3, 578 msm_mux_gcc_gp4, 579 msm_mux_gcc_gp5, 580 msm_mux_gpio, 581 msm_mux_gps, 582 msm_mux_grfc, 583 msm_mux_hs1_mi2s, 584 msm_mux_hs2_mi2s, 585 msm_mux_hs3_mi2s, 586 msm_mux_jitter_bist, 587 msm_mux_lpass_slimbus, 588 msm_mux_m_voc, 589 msm_mux_mdp_vsync, 590 msm_mux_mdp_vsync0, 591 msm_mux_mdp_vsync1, 592 msm_mux_mdp_vsync2, 593 msm_mux_mdp_vsync3, 594 msm_mux_mdp_vsync4, 595 msm_mux_mdp_vsync5, 596 msm_mux_mss_lte, 597 msm_mux_nav_pps, 598 msm_mux_pa_indicator, 599 msm_mux_pci_e0, 600 msm_mux_pci_e1, 601 msm_mux_pci_e2, 602 msm_mux_pci_e3, 603 msm_mux_phase_flag, 604 msm_mux_pll_bist, 605 msm_mux_pll_bypassnl, 606 msm_mux_pll_reset, 607 msm_mux_pri_mi2s, 608 msm_mux_pri_mi2s_ws, 609 msm_mux_prng_rosc, 610 msm_mux_qdss_cti, 611 msm_mux_qdss_gpio, 612 msm_mux_qlink, 613 msm_mux_qspi0, 614 msm_mux_qspi0_clk, 615 msm_mux_qspi0_cs, 616 msm_mux_qspi1, 617 msm_mux_qspi1_clk, 618 msm_mux_qspi1_cs, 619 msm_mux_qua_mi2s, 620 msm_mux_qup0, 621 msm_mux_qup1, 622 msm_mux_qup2, 623 msm_mux_qup3, 624 msm_mux_qup4, 625 msm_mux_qup5, 626 msm_mux_qup6, 627 msm_mux_qup7, 628 msm_mux_qup8, 629 msm_mux_qup9, 630 msm_mux_qup10, 631 msm_mux_qup11, 632 msm_mux_qup12, 633 msm_mux_qup13, 634 msm_mux_qup14, 635 msm_mux_qup15, 636 msm_mux_qup16, 637 msm_mux_qup17, 638 msm_mux_qup18, 639 msm_mux_qup19, 640 msm_mux_qup_l4, 641 msm_mux_qup_l5, 642 msm_mux_qup_l6, 643 msm_mux_rgmii, 644 msm_mux_sd_write, 645 msm_mux_sdc4, 646 msm_mux_sdc4_clk, 647 msm_mux_sdc4_cmd, 648 msm_mux_sec_mi2s, 649 msm_mux_sp_cmu, 650 msm_mux_spkr_i2s, 651 msm_mux_ter_mi2s, 652 msm_mux_tgu, 653 msm_mux_tsense_pwm1, 654 msm_mux_tsense_pwm2, 655 msm_mux_tsif1, 656 msm_mux_tsif2, 657 msm_mux_uim1, 658 msm_mux_uim2, 659 msm_mux_uim_batt, 660 msm_mux_usb0_phy, 661 msm_mux_usb1_phy, 662 msm_mux_usb2phy_ac, 663 msm_mux_vfr_1, 664 msm_mux_vsense_trigger, 665 msm_mux_wlan1_adc, 666 msm_mux_wlan2_adc, 667 msm_mux_wmss_reset, 668 msm_mux__, 669}; 670 671static const char * const adsp_ext_groups[] = { 672 "gpio115", 673}; 674 675static const char * const agera_pll_groups[] = { 676 "gpio37", 677}; 678 679static const char * const aoss_cti_groups[] = { 680 "gpio113", 681}; 682 683static const char * const atest_char_groups[] = { 684 "gpio133", "gpio134", "gpio135", "gpio140", "gpio142", 685}; 686 687static const char * const atest_tsens2_groups[] = { 688 "gpio62", 689}; 690 691static const char * const atest_tsens_groups[] = { 692 "gpio93", 693}; 694 695static const char * const atest_usb0_groups[] = { 696 "gpio90", "gpio91", "gpio92", "gpio93", "gpio94", 697}; 698 699static const char * const atest_usb1_groups[] = { 700 "gpio60", "gpio62", "gpio63", "gpio64", "gpio65", 701}; 702 703static const char * const atest_usb2_groups[] = { 704 "gpio34", "gpio95", "gpio102", "gpio121", "gpio122", 705}; 706 707static const char * const atest_usb3_groups[] = { 708 "gpio68", "gpio71", "gpio72", "gpio73", "gpio74", 709}; 710 711static const char * const atest_usb4_groups[] = { 712 "gpio75", "gpio76", "gpio77", "gpio78", "gpio88", 713}; 714 715static const char * const audio_ref_groups[] = { 716 "gpio148", 717}; 718 719static const char * const btfm_slimbus_groups[] = { 720 "gpio153", "gpio154", 721}; 722 723static const char * const cam_mclk_groups[] = { 724 "gpio13", "gpio14", "gpio15", "gpio16", "gpio25", "gpio179", "gpio180", 725 "gpio181", 726}; 727 728static const char * const cci_async_groups[] = { 729 "gpio24", "gpio25", "gpio26", "gpio176", "gpio185", "gpio186", 730}; 731 732static const char * const cci_i2c_groups[] = { 733 "gpio0", "gpio1", "gpio2", "gpio3", "gpio17", "gpio18", "gpio19", 734 "gpio20", "gpio31", "gpio32", "gpio33", "gpio34", "gpio39", "gpio40", 735 "gpio41", "gpio42", 736}; 737 738static const char * const cci_timer0_groups[] = { 739 "gpio21", 740}; 741 742static const char * const cci_timer1_groups[] = { 743 "gpio22", 744}; 745 746static const char * const cci_timer2_groups[] = { 747 "gpio23", 748}; 749 750static const char * const cci_timer3_groups[] = { 751 "gpio24", 752}; 753 754static const char * const cci_timer4_groups[] = { 755 "gpio178", 756}; 757 758static const char * const cci_timer5_groups[] = { 759 "gpio182", 760}; 761 762static const char * const cci_timer6_groups[] = { 763 "gpio183", 764}; 765 766static const char * const cci_timer7_groups[] = { 767 "gpio184", 768}; 769 770static const char * const cci_timer8_groups[] = { 771 "gpio185", 772}; 773 774static const char * const cci_timer9_groups[] = { 775 "gpio186", 776}; 777 778static const char * const cri_trng_groups[] = { 779 "gpio159", 780 "gpio160", 781 "gpio161", 782}; 783 784static const char * const dbg_out_groups[] = { 785 "gpio34", 786}; 787 788static const char * const ddr_bist_groups[] = { 789 "gpio98", "gpio99", "gpio145", "gpio146", 790}; 791 792static const char * const ddr_pxi_groups[] = { 793 "gpio60", "gpio62", "gpio63", "gpio64", "gpio65", "gpio68", "gpio71", 794 "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77", "gpio78", 795 "gpio88", "gpio90", 796}; 797 798static const char * const debug_hot_groups[] = { 799 "gpio7", 800}; 801 802static const char * const dp_hot_groups[] = { 803 "gpio189", 804}; 805 806static const char * const edp_hot_groups[] = { 807 "gpio10", 808}; 809 810static const char * const edp_lcd_groups[] = { 811 "gpio11", 812}; 813 814static const char * const emac_phy_groups[] = { 815 "gpio124", 816}; 817 818static const char * const emac_pps_groups[] = { 819 "gpio81", 820}; 821 822static const char * const gcc_gp1_groups[] = { 823 "gpio131", "gpio136", 824}; 825 826static const char * const gcc_gp2_groups[] = { 827 "gpio21", "gpio137", 828}; 829 830static const char * const gcc_gp3_groups[] = { 831 "gpio22", "gpio138", 832}; 833 834static const char * const gcc_gp4_groups[] = { 835 "gpio139", "gpio182", 836}; 837 838static const char * const gcc_gp5_groups[] = { 839 "gpio140", "gpio183", 840}; 841 842static const char * const gpio_groups[] = { 843 "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7", 844 "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio12", "gpio13", 845 "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", 846 "gpio21", "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", 847 "gpio28", "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", 848 "gpio35", "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", 849 "gpio42", "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", 850 "gpio49", "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", 851 "gpio56", "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", 852 "gpio63", "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", 853 "gpio70", "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", 854 "gpio77", "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", 855 "gpio84", "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", 856 "gpio91", "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", 857 "gpio98", "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", 858 "gpio104", "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", 859 "gpio110", "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", 860 "gpio116", "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", 861 "gpio122", "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", 862 "gpio128", "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", 863 "gpio134", "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", 864 "gpio140", "gpio141", "gpio142", "gpio143", "gpio144", "gpio145", 865 "gpio146", "gpio147", "gpio148", "gpio149", "gpio150", "gpio151", 866 "gpio152", "gpio153", "gpio154", "gpio155", "gpio156", "gpio157", 867 "gpio158", "gpio159", "gpio160", "gpio161", "gpio162", "gpio163", 868 "gpio164", "gpio165", "gpio166", "gpio167", "gpio168", "gpio169", 869 "gpio170", "gpio171", "gpio172", "gpio173", "gpio174", "gpio175", 870 "gpio176", "gpio177", "gpio177", "gpio178", "gpio179", "gpio180", 871 "gpio181", "gpio182", "gpio183", "gpio184", "gpio185", "gpio186", 872 "gpio186", "gpio187", "gpio187", "gpio188", "gpio188", "gpio189", 873}; 874 875static const char * const gps_groups[] = { 876 "gpio60", "gpio76", "gpio77", "gpio81", "gpio82", 877}; 878 879static const char * const grfc_groups[] = { 880 "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio71", "gpio72", 881 "gpio73", "gpio74", "gpio75", "gpio76", "gpio77", "gpio78", "gpio79", 882 "gpio80", "gpio81", "gpio82", 883}; 884 885static const char * const hs1_mi2s_groups[] = { 886 "gpio155", "gpio156", "gpio157", "gpio158", "gpio159", 887}; 888 889static const char * const hs2_mi2s_groups[] = { 890 "gpio160", "gpio161", "gpio162", "gpio163", "gpio164", 891}; 892 893static const char * const hs3_mi2s_groups[] = { 894 "gpio125", "gpio165", "gpio166", "gpio167", "gpio168", 895}; 896 897static const char * const jitter_bist_groups[] = { 898 "gpio129", 899}; 900 901static const char * const lpass_slimbus_groups[] = { 902 "gpio149", "gpio150", "gpio151", "gpio152", 903}; 904 905static const char * const m_voc_groups[] = { 906 "gpio10", 907}; 908 909static const char * const mdp_vsync0_groups[] = { 910 "gpio89", 911}; 912 913static const char * const mdp_vsync1_groups[] = { 914 "gpio89", 915}; 916 917static const char * const mdp_vsync2_groups[] = { 918 "gpio89", 919}; 920 921static const char * const mdp_vsync3_groups[] = { 922 "gpio89", 923}; 924 925static const char * const mdp_vsync4_groups[] = { 926 "gpio89", 927}; 928 929static const char * const mdp_vsync5_groups[] = { 930 "gpio89", 931}; 932 933static const char * const mdp_vsync_groups[] = { 934 "gpio8", "gpio9", "gpio10", "gpio60", "gpio82", 935}; 936 937static const char * const mss_lte_groups[] = { 938 "gpio69", "gpio70", 939}; 940 941static const char * const nav_pps_groups[] = { 942 "gpio60", "gpio60", "gpio76", "gpio76", "gpio77", "gpio77", "gpio81", 943 "gpio81", "gpio82", "gpio82", 944}; 945 946static const char * const pa_indicator_groups[] = { 947 "gpio68", 948}; 949 950static const char * const pci_e0_groups[] = { 951 "gpio35", "gpio36", 952}; 953 954static const char * const pci_e1_groups[] = { 955 "gpio102", "gpio103", 956}; 957 958static const char * const pci_e2_groups[] = { 959 "gpio175", "gpio176", 960}; 961 962static const char * const pci_e3_groups[] = { 963 "gpio178", "gpio179", 964}; 965 966static const char * const phase_flag_groups[] = { 967 "gpio4", "gpio5", "gpio6", "gpio7", "gpio33", "gpio53", "gpio54", 968 "gpio102", "gpio120", "gpio121", "gpio122", "gpio123", "gpio125", 969 "gpio148", "gpio149", "gpio150", "gpio151", "gpio152", "gpio155", 970 "gpio156", "gpio157", "gpio158", "gpio159", "gpio160", "gpio161", 971 "gpio162", "gpio163", "gpio164", "gpio165", "gpio166", "gpio167", 972 "gpio168", 973}; 974 975static const char * const pll_bist_groups[] = { 976 "gpio130", 977}; 978 979static const char * const pll_bypassnl_groups[] = { 980 "gpio100", 981}; 982 983static const char * const pll_reset_groups[] = { 984 "gpio101", 985}; 986 987static const char * const pri_mi2s_groups[] = { 988 "gpio143", "gpio144", "gpio146", "gpio147", 989}; 990 991static const char * const pri_mi2s_ws_groups[] = { 992 "gpio145", 993}; 994 995static const char * const prng_rosc_groups[] = { 996 "gpio163", 997}; 998 999static const char * const qdss_cti_groups[] = { 1000 "gpio49", "gpio50", "gpio81", "gpio82", "gpio89", "gpio90", "gpio141", 1001 "gpio142", 1002}; 1003 1004static const char * const qdss_gpio_groups[] = { 1005 "gpio13", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", 1006 "gpio20", "gpio21", "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", 1007 "gpio27", "gpio28", "gpio29", "gpio30", "gpio39", "gpio40", "gpio41", 1008 "gpio42", "gpio92", "gpio114", "gpio115", "gpio116", "gpio117", 1009 "gpio118", "gpio119", "gpio120", "gpio121", "gpio130", "gpio132", 1010 "gpio133", "gpio134", "gpio135", 1011}; 1012 1013static const char * const qlink_groups[] = { 1014 "gpio61", "gpio62", 1015}; 1016 1017static const char * const qspi0_groups[] = { 1018 "gpio89", "gpio90", "gpio91", "gpio93", 1019}; 1020 1021static const char * const qspi0_clk_groups[] = { 1022 "gpio92", 1023}; 1024 1025static const char * const qspi0_cs_groups[] = { 1026 "gpio88", "gpio94", 1027}; 1028 1029static const char * const qspi1_groups[] = { 1030 "gpio56", "gpio57", "gpio161", "gpio162", 1031}; 1032 1033static const char * const qspi1_clk_groups[] = { 1034 "gpio163", 1035}; 1036 1037static const char * const qspi1_cs_groups[] = { 1038 "gpio55", "gpio164", 1039}; 1040 1041static const char * const qua_mi2s_groups[] = { 1042 "gpio136", "gpio137", "gpio138", "gpio139", "gpio140", "gpio141", 1043 "gpio142", 1044}; 1045 1046static const char * const qup0_groups[] = { 1047 "gpio0", "gpio1", "gpio2", "gpio3", 1048}; 1049 1050static const char * const qup10_groups[] = { 1051 "gpio9", "gpio10", "gpio11", "gpio12", 1052}; 1053 1054static const char * const qup11_groups[] = { 1055 "gpio92", "gpio93", "gpio94", "gpio95", 1056}; 1057 1058static const char * const qup12_groups[] = { 1059 "gpio83", "gpio84", "gpio85", "gpio86", 1060}; 1061 1062static const char * const qup13_groups[] = { 1063 "gpio43", "gpio44", "gpio45", "gpio46", 1064}; 1065 1066static const char * const qup14_groups[] = { 1067 "gpio47", "gpio48", "gpio49", "gpio50", 1068}; 1069 1070static const char * const qup15_groups[] = { 1071 "gpio27", "gpio28", "gpio29", "gpio30", 1072}; 1073 1074static const char * const qup16_groups[] = { 1075 "gpio83", "gpio84", "gpio85", "gpio86", 1076}; 1077 1078static const char * const qup17_groups[] = { 1079 "gpio55", "gpio56", "gpio57", "gpio58", 1080}; 1081 1082static const char * const qup18_groups[] = { 1083 "gpio23", "gpio24", "gpio25", "gpio26", 1084}; 1085 1086static const char * const qup19_groups[] = { 1087 "gpio181", "gpio182", "gpio183", "gpio184", 1088}; 1089 1090static const char * const qup1_groups[] = { 1091 "gpio114", "gpio115", "gpio116", "gpio117", 1092}; 1093 1094static const char * const qup2_groups[] = { 1095 "gpio126", "gpio127", "gpio128", "gpio129", 1096}; 1097 1098static const char * const qup3_groups[] = { 1099 "gpio144", "gpio145", "gpio146", "gpio147", 1100}; 1101 1102static const char * const qup4_groups[] = { 1103 "gpio51", "gpio52", "gpio53", "gpio54", 1104}; 1105 1106static const char * const qup5_groups[] = { 1107 "gpio119", "gpio120", "gpio121", "gpio122", 1108}; 1109 1110static const char * const qup6_groups[] = { 1111 "gpio4", "gpio5", "gpio6", "gpio7", 1112}; 1113 1114static const char * const qup7_groups[] = { 1115 "gpio98", "gpio99", "gpio100", "gpio101", 1116}; 1117 1118static const char * const qup8_groups[] = { 1119 "gpio88", "gpio89", "gpio90", "gpio91", 1120}; 1121 1122static const char * const qup9_groups[] = { 1123 "gpio39", "gpio40", "gpio41", "gpio42", 1124}; 1125 1126static const char * const qup_l4_groups[] = { 1127 "gpio35", "gpio59", "gpio60", "gpio95", 1128}; 1129 1130static const char * const qup_l5_groups[] = { 1131 "gpio7", "gpio33", "gpio36", "gpio96", 1132}; 1133 1134static const char * const qup_l6_groups[] = { 1135 "gpio6", "gpio34", "gpio37", "gpio97", 1136}; 1137 1138static const char * const rgmii_groups[] = { 1139 "gpio4", "gpio5", "gpio6", "gpio7", "gpio59", "gpio114", "gpio115", 1140 "gpio116", "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", 1141 "gpio122", 1142}; 1143 1144static const char * const sd_write_groups[] = { 1145 "gpio97", 1146}; 1147 1148static const char * const sdc4_groups[] = { 1149 "gpio91", "gpio93", "gpio94", "gpio95", 1150}; 1151 1152static const char * const sdc4_clk_groups[] = { 1153 "gpio92", 1154}; 1155 1156static const char * const sdc4_cmd_groups[] = { 1157 "gpio90", 1158}; 1159 1160static const char * const sec_mi2s_groups[] = { 1161 "gpio126", "gpio127", "gpio128", "gpio129", "gpio130", 1162}; 1163 1164static const char * const sp_cmu_groups[] = { 1165 "gpio162", 1166}; 1167 1168static const char * const spkr_i2s_groups[] = { 1169 "gpio148", "gpio149", "gpio150", "gpio151", "gpio152", 1170}; 1171 1172static const char * const ter_mi2s_groups[] = { 1173 "gpio131", "gpio132", "gpio133", "gpio134", "gpio135", 1174}; 1175 1176static const char * const tgu_groups[] = { 1177 "gpio89", "gpio90", "gpio91", "gpio88", "gpio74", "gpio77", "gpio76", 1178 "gpio75", 1179}; 1180 1181static const char * const tsense_pwm1_groups[] = { 1182 "gpio150", 1183}; 1184 1185static const char * const tsense_pwm2_groups[] = { 1186 "gpio150", 1187}; 1188 1189static const char * const tsif1_groups[] = { 1190 "gpio88", "gpio89", "gpio90", "gpio91", "gpio97", 1191}; 1192 1193static const char * const tsif2_groups[] = { 1194 "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", 1195}; 1196 1197static const char * const uim1_groups[] = { 1198 "gpio109", "gpio110", "gpio111", "gpio112", 1199}; 1200 1201static const char * const uim2_groups[] = { 1202 "gpio105", "gpio106", "gpio107", "gpio108", 1203}; 1204 1205static const char * const uim_batt_groups[] = { 1206 "gpio113", 1207}; 1208 1209static const char * const usb0_phy_groups[] = { 1210 "gpio38", 1211}; 1212 1213static const char * const usb1_phy_groups[] = { 1214 "gpio58", 1215}; 1216 1217static const char * const usb2phy_ac_groups[] = { 1218 "gpio47", "gpio48", "gpio113", "gpio123", 1219}; 1220 1221static const char * const vfr_1_groups[] = { 1222 "gpio91", 1223}; 1224 1225static const char * const vsense_trigger_groups[] = { 1226 "gpio62", 1227}; 1228 1229static const char * const wlan1_adc_groups[] = { 1230 "gpio64", "gpio63", 1231}; 1232 1233static const char * const wlan2_adc_groups[] = { 1234 "gpio68", "gpio65", 1235}; 1236 1237static const char * const wmss_reset_groups[] = { 1238 "gpio63", 1239}; 1240 1241static const struct msm_function sc8180x_functions[] = { 1242 FUNCTION(adsp_ext), 1243 FUNCTION(agera_pll), 1244 FUNCTION(aoss_cti), 1245 FUNCTION(atest_char), 1246 FUNCTION(atest_tsens), 1247 FUNCTION(atest_tsens2), 1248 FUNCTION(atest_usb0), 1249 FUNCTION(atest_usb1), 1250 FUNCTION(atest_usb2), 1251 FUNCTION(atest_usb3), 1252 FUNCTION(atest_usb4), 1253 FUNCTION(audio_ref), 1254 FUNCTION(btfm_slimbus), 1255 FUNCTION(cam_mclk), 1256 FUNCTION(cci_async), 1257 FUNCTION(cci_i2c), 1258 FUNCTION(cci_timer0), 1259 FUNCTION(cci_timer1), 1260 FUNCTION(cci_timer2), 1261 FUNCTION(cci_timer3), 1262 FUNCTION(cci_timer4), 1263 FUNCTION(cci_timer5), 1264 FUNCTION(cci_timer6), 1265 FUNCTION(cci_timer7), 1266 FUNCTION(cci_timer8), 1267 FUNCTION(cci_timer9), 1268 FUNCTION(cri_trng), 1269 FUNCTION(dbg_out), 1270 FUNCTION(ddr_bist), 1271 FUNCTION(ddr_pxi), 1272 FUNCTION(debug_hot), 1273 FUNCTION(dp_hot), 1274 FUNCTION(edp_hot), 1275 FUNCTION(edp_lcd), 1276 FUNCTION(emac_phy), 1277 FUNCTION(emac_pps), 1278 FUNCTION(gcc_gp1), 1279 FUNCTION(gcc_gp2), 1280 FUNCTION(gcc_gp3), 1281 FUNCTION(gcc_gp4), 1282 FUNCTION(gcc_gp5), 1283 FUNCTION(gpio), 1284 FUNCTION(gps), 1285 FUNCTION(grfc), 1286 FUNCTION(hs1_mi2s), 1287 FUNCTION(hs2_mi2s), 1288 FUNCTION(hs3_mi2s), 1289 FUNCTION(jitter_bist), 1290 FUNCTION(lpass_slimbus), 1291 FUNCTION(m_voc), 1292 FUNCTION(mdp_vsync), 1293 FUNCTION(mdp_vsync0), 1294 FUNCTION(mdp_vsync1), 1295 FUNCTION(mdp_vsync2), 1296 FUNCTION(mdp_vsync3), 1297 FUNCTION(mdp_vsync4), 1298 FUNCTION(mdp_vsync5), 1299 FUNCTION(mss_lte), 1300 FUNCTION(nav_pps), 1301 FUNCTION(pa_indicator), 1302 FUNCTION(pci_e0), 1303 FUNCTION(pci_e1), 1304 FUNCTION(pci_e2), 1305 FUNCTION(pci_e3), 1306 FUNCTION(phase_flag), 1307 FUNCTION(pll_bist), 1308 FUNCTION(pll_bypassnl), 1309 FUNCTION(pll_reset), 1310 FUNCTION(pri_mi2s), 1311 FUNCTION(pri_mi2s_ws), 1312 FUNCTION(prng_rosc), 1313 FUNCTION(qdss_cti), 1314 FUNCTION(qdss_gpio), 1315 FUNCTION(qlink), 1316 FUNCTION(qspi0), 1317 FUNCTION(qspi0_clk), 1318 FUNCTION(qspi0_cs), 1319 FUNCTION(qspi1), 1320 FUNCTION(qspi1_clk), 1321 FUNCTION(qspi1_cs), 1322 FUNCTION(qua_mi2s), 1323 FUNCTION(qup0), 1324 FUNCTION(qup1), 1325 FUNCTION(qup2), 1326 FUNCTION(qup3), 1327 FUNCTION(qup4), 1328 FUNCTION(qup5), 1329 FUNCTION(qup6), 1330 FUNCTION(qup7), 1331 FUNCTION(qup8), 1332 FUNCTION(qup9), 1333 FUNCTION(qup10), 1334 FUNCTION(qup11), 1335 FUNCTION(qup12), 1336 FUNCTION(qup13), 1337 FUNCTION(qup14), 1338 FUNCTION(qup15), 1339 FUNCTION(qup16), 1340 FUNCTION(qup17), 1341 FUNCTION(qup18), 1342 FUNCTION(qup19), 1343 FUNCTION(qup_l4), 1344 FUNCTION(qup_l5), 1345 FUNCTION(qup_l6), 1346 FUNCTION(rgmii), 1347 FUNCTION(sd_write), 1348 FUNCTION(sdc4), 1349 FUNCTION(sdc4_clk), 1350 FUNCTION(sdc4_cmd), 1351 FUNCTION(sec_mi2s), 1352 FUNCTION(sp_cmu), 1353 FUNCTION(spkr_i2s), 1354 FUNCTION(ter_mi2s), 1355 FUNCTION(tgu), 1356 FUNCTION(tsense_pwm1), 1357 FUNCTION(tsense_pwm2), 1358 FUNCTION(tsif1), 1359 FUNCTION(tsif2), 1360 FUNCTION(uim1), 1361 FUNCTION(uim2), 1362 FUNCTION(uim_batt), 1363 FUNCTION(usb0_phy), 1364 FUNCTION(usb1_phy), 1365 FUNCTION(usb2phy_ac), 1366 FUNCTION(vfr_1), 1367 FUNCTION(vsense_trigger), 1368 FUNCTION(wlan1_adc), 1369 FUNCTION(wlan2_adc), 1370 FUNCTION(wmss_reset), 1371}; 1372 1373/* Every pin is maintained as a single group, and missing or non-existing pin 1374 * would be maintained as dummy group to synchronize pin group index with 1375 * pin descriptor registered with pinctrl core. 1376 * Clients would not be able to request these dummy pin groups. 1377 */ 1378static const struct msm_pingroup sc8180x_groups[] = { 1379 [0] = PINGROUP(0, WEST, qup0, cci_i2c, _, _, _, _, _, _, _), 1380 [1] = PINGROUP(1, WEST, qup0, cci_i2c, _, _, _, _, _, _, _), 1381 [2] = PINGROUP(2, WEST, qup0, cci_i2c, _, _, _, _, _, _, _), 1382 [3] = PINGROUP(3, WEST, qup0, cci_i2c, _, _, _, _, _, _, _), 1383 [4] = PINGROUP(4, WEST, qup6, rgmii, _, phase_flag, _, _, _, _, _), 1384 [5] = PINGROUP(5, WEST, qup6, rgmii, _, phase_flag, _, _, _, _, _), 1385 [6] = PINGROUP(6, WEST, qup6, rgmii, qup_l6, _, phase_flag, _, _, _, _), 1386 [7] = PINGROUP(7, WEST, qup6, debug_hot, rgmii, qup_l5, _, phase_flag, _, _, _), 1387 [8] = PINGROUP(8, EAST, mdp_vsync, _, _, _, _, _, _, _, _), 1388 [9] = PINGROUP(9, EAST, mdp_vsync, qup10, _, _, _, _, _, _, _), 1389 [10] = PINGROUP(10, EAST, edp_hot, m_voc, mdp_vsync, qup10, _, _, _, _, _), 1390 [11] = PINGROUP(11, EAST, edp_lcd, qup10, _, _, _, _, _, _, _), 1391 [12] = PINGROUP(12, EAST, qup10, _, _, _, _, _, _, _, _), 1392 [13] = PINGROUP(13, EAST, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1393 [14] = PINGROUP(14, EAST, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1394 [15] = PINGROUP(15, EAST, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1395 [16] = PINGROUP(16, EAST, cam_mclk, qdss_gpio, _, _, _, _, _, _, _), 1396 [17] = PINGROUP(17, EAST, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1397 [18] = PINGROUP(18, EAST, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1398 [19] = PINGROUP(19, EAST, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1399 [20] = PINGROUP(20, EAST, cci_i2c, qdss_gpio, _, _, _, _, _, _, _), 1400 [21] = PINGROUP(21, EAST, cci_timer0, gcc_gp2, qdss_gpio, _, _, _, _, _, _), 1401 [22] = PINGROUP(22, EAST, cci_timer1, gcc_gp3, qdss_gpio, _, _, _, _, _, _), 1402 [23] = PINGROUP(23, EAST, cci_timer2, qup18, qdss_gpio, _, _, _, _, _, _), 1403 [24] = PINGROUP(24, EAST, cci_timer3, cci_async, qup18, qdss_gpio, _, _, _, _, _), 1404 [25] = PINGROUP(25, EAST, cam_mclk, cci_async, qup18, qdss_gpio, _, _, _, _, _), 1405 [26] = PINGROUP(26, EAST, cci_async, qup18, qdss_gpio, _, _, _, _, _, _), 1406 [27] = PINGROUP(27, EAST, qup15, _, qdss_gpio, _, _, _, _, _, _), 1407 [28] = PINGROUP(28, EAST, qup15, qdss_gpio, _, _, _, _, _, _, _), 1408 [29] = PINGROUP(29, EAST, qup15, qdss_gpio, _, _, _, _, _, _, _), 1409 [30] = PINGROUP(30, EAST, qup15, qdss_gpio, _, _, _, _, _, _, _), 1410 [31] = PINGROUP(31, EAST, cci_i2c, _, _, _, _, _, _, _, _), 1411 [32] = PINGROUP(32, EAST, cci_i2c, _, _, _, _, _, _, _, _), 1412 [33] = PINGROUP(33, EAST, cci_i2c, qup_l5, _, phase_flag, _, _, _, _, _), 1413 [34] = PINGROUP(34, EAST, cci_i2c, qup_l6, dbg_out, atest_usb2, _, _, _, _, _), 1414 [35] = PINGROUP(35, SOUTH, pci_e0, qup_l4, _, _, _, _, _, _, _), 1415 [36] = PINGROUP(36, SOUTH, pci_e0, qup_l5, _, _, _, _, _, _, _), 1416 [37] = PINGROUP(37, SOUTH, qup_l6, agera_pll, _, _, _, _, _, _, _), 1417 [38] = PINGROUP(38, SOUTH, usb0_phy, _, _, _, _, _, _, _, _), 1418 [39] = PINGROUP(39, EAST, qup9, cci_i2c, qdss_gpio, _, _, _, _, _, _), 1419 [40] = PINGROUP(40, EAST, qup9, cci_i2c, qdss_gpio, _, _, _, _, _, _), 1420 [41] = PINGROUP(41, EAST, qup9, cci_i2c, qdss_gpio, _, _, _, _, _, _), 1421 [42] = PINGROUP(42, EAST, qup9, cci_i2c, qdss_gpio, _, _, _, _, _, _), 1422 [43] = PINGROUP(43, EAST, qup13, _, _, _, _, _, _, _, _), 1423 [44] = PINGROUP(44, EAST, qup13, _, _, _, _, _, _, _, _), 1424 [45] = PINGROUP(45, EAST, qup13, _, _, _, _, _, _, _, _), 1425 [46] = PINGROUP(46, EAST, qup13, _, _, _, _, _, _, _, _), 1426 [47] = PINGROUP(47, EAST, qup14, usb2phy_ac, _, _, _, _, _, _, _), 1427 [48] = PINGROUP(48, EAST, qup14, usb2phy_ac, _, _, _, _, _, _, _), 1428 [49] = PINGROUP(49, EAST, qup14, qdss_cti, _, _, _, _, _, _, _), 1429 [50] = PINGROUP(50, EAST, qup14, qdss_cti, _, _, _, _, _, _, _), 1430 [51] = PINGROUP(51, WEST, qup4, _, _, _, _, _, _, _, _), 1431 [52] = PINGROUP(52, WEST, qup4, _, _, _, _, _, _, _, _), 1432 [53] = PINGROUP(53, WEST, qup4, _, phase_flag, _, _, _, _, _, _), 1433 [54] = PINGROUP(54, WEST, qup4, _, _, phase_flag, _, _, _, _, _), 1434 [55] = PINGROUP(55, WEST, qup17, qspi1_cs, _, _, _, _, _, _, _), 1435 [56] = PINGROUP(56, WEST, qup17, qspi1, _, _, _, _, _, _, _), 1436 [57] = PINGROUP(57, WEST, qup17, qspi1, _, _, _, _, _, _, _), 1437 [58] = PINGROUP(58, WEST, usb1_phy, qup17, _, _, _, _, _, _, _), 1438 [59] = PINGROUP(59, WEST, rgmii, qup_l4, _, _, _, _, _, _, _), 1439 [60] = PINGROUP(60, EAST, gps, nav_pps, nav_pps, qup_l4, mdp_vsync, atest_usb1, ddr_pxi, _, _), 1440 [61] = PINGROUP(61, EAST, qlink, _, _, _, _, _, _, _, _), 1441 [62] = PINGROUP(62, EAST, qlink, atest_tsens2, atest_usb1, ddr_pxi, vsense_trigger, _, _, _, _), 1442 [63] = PINGROUP(63, EAST, wmss_reset, _, atest_usb1, ddr_pxi, wlan1_adc, _, _, _, _), 1443 [64] = PINGROUP(64, EAST, grfc, _, atest_usb1, ddr_pxi, wlan1_adc, _, _, _, _), 1444 [65] = PINGROUP(65, EAST, grfc, atest_usb1, ddr_pxi, wlan2_adc, _, _, _, _, _), 1445 [66] = PINGROUP(66, EAST, grfc, _, _, _, _, _, _, _, _), 1446 [67] = PINGROUP(67, EAST, grfc, _, _, _, _, _, _, _, _), 1447 [68] = PINGROUP(68, EAST, grfc, pa_indicator, atest_usb3, ddr_pxi, wlan2_adc, _, _, _, _), 1448 [69] = PINGROUP(69, EAST, mss_lte, _, _, _, _, _, _, _, _), 1449 [70] = PINGROUP(70, EAST, mss_lte, _, _, _, _, _, _, _, _), 1450 [71] = PINGROUP(71, EAST, _, grfc, atest_usb3, ddr_pxi, _, _, _, _, _), 1451 [72] = PINGROUP(72, EAST, _, grfc, atest_usb3, ddr_pxi, _, _, _, _, _), 1452 [73] = PINGROUP(73, EAST, _, grfc, atest_usb3, ddr_pxi, _, _, _, _, _), 1453 [74] = PINGROUP(74, EAST, _, grfc, tgu, atest_usb3, ddr_pxi, _, _, _, _), 1454 [75] = PINGROUP(75, EAST, _, grfc, tgu, atest_usb4, ddr_pxi, _, _, _, _), 1455 [76] = PINGROUP(76, EAST, _, grfc, gps, nav_pps, nav_pps, tgu, atest_usb4, ddr_pxi, _), 1456 [77] = PINGROUP(77, EAST, _, grfc, gps, nav_pps, nav_pps, tgu, atest_usb4, ddr_pxi, _), 1457 [78] = PINGROUP(78, EAST, _, grfc, _, atest_usb4, ddr_pxi, _, _, _, _), 1458 [79] = PINGROUP(79, EAST, _, grfc, _, _, _, _, _, _, _), 1459 [80] = PINGROUP(80, EAST, _, grfc, _, _, _, _, _, _, _), 1460 [81] = PINGROUP(81, EAST, _, grfc, gps, nav_pps, nav_pps, qdss_cti, _, emac_pps, _), 1461 [82] = PINGROUP(82, EAST, _, grfc, gps, nav_pps, nav_pps, mdp_vsync, qdss_cti, _, _), 1462 [83] = PINGROUP(83, EAST, qup12, qup16, _, _, _, _, _, _, _), 1463 [84] = PINGROUP(84, EAST, qup12, qup16, _, _, _, _, _, _, _), 1464 [85] = PINGROUP(85, EAST, qup12, qup16, _, _, _, _, _, _, _), 1465 [86] = PINGROUP(86, EAST, qup12, qup16, _, _, _, _, _, _, _), 1466 [87] = PINGROUP(87, SOUTH, _, _, _, _, _, _, _, _, _), 1467 [88] = PINGROUP(88, EAST, tsif1, qup8, qspi0_cs, tgu, atest_usb4, ddr_pxi, _, _, _), 1468 [89] = PINGROUP(89, EAST, tsif1, qup8, qspi0, mdp_vsync0, mdp_vsync1, mdp_vsync2, mdp_vsync3, mdp_vsync4, mdp_vsync5), 1469 [90] = PINGROUP(90, EAST, tsif1, qup8, qspi0, sdc4_cmd, tgu, qdss_cti, atest_usb0, ddr_pxi, _), 1470 [91] = PINGROUP(91, EAST, tsif1, qup8, qspi0, sdc4, vfr_1, tgu, atest_usb0, _, _), 1471 [92] = PINGROUP(92, EAST, tsif2, qup11, qspi0_clk, sdc4_clk, qdss_gpio, atest_usb0, _, _, _), 1472 [93] = PINGROUP(93, EAST, tsif2, qup11, qspi0, sdc4, atest_tsens, atest_usb0, _, _, _), 1473 [94] = PINGROUP(94, EAST, tsif2, qup11, qspi0_cs, sdc4, _, atest_usb0, _, _, _), 1474 [95] = PINGROUP(95, EAST, tsif2, qup11, sdc4, qup_l4, atest_usb2, _, _, _, _), 1475 [96] = PINGROUP(96, WEST, tsif2, qup_l5, _, _, _, _, _, _, _), 1476 [97] = PINGROUP(97, WEST, sd_write, tsif1, qup_l6, _, _, _, _, _, _), 1477 [98] = PINGROUP(98, WEST, qup7, ddr_bist, _, _, _, _, _, _, _), 1478 [99] = PINGROUP(99, WEST, qup7, ddr_bist, _, _, _, _, _, _, _), 1479 [100] = PINGROUP(100, WEST, qup7, pll_bypassnl, _, _, _, _, _, _, _), 1480 [101] = PINGROUP(101, WEST, qup7, pll_reset, _, _, _, _, _, _, _), 1481 [102] = PINGROUP(102, SOUTH, pci_e1, _, phase_flag, atest_usb2, _, _, _, _, _), 1482 [103] = PINGROUP(103, SOUTH, pci_e1, _, _, _, _, _, _, _, _), 1483 [104] = PINGROUP(104, SOUTH, _, _, _, _, _, _, _, _, _), 1484 [105] = PINGROUP(105, WEST, uim2, _, _, _, _, _, _, _, _), 1485 [106] = PINGROUP(106, WEST, uim2, _, _, _, _, _, _, _, _), 1486 [107] = PINGROUP(107, WEST, uim2, _, _, _, _, _, _, _, _), 1487 [108] = PINGROUP(108, WEST, uim2, _, _, _, _, _, _, _, _), 1488 [109] = PINGROUP(109, WEST, uim1, _, _, _, _, _, _, _, _), 1489 [110] = PINGROUP(110, WEST, uim1, _, _, _, _, _, _, _, _), 1490 [111] = PINGROUP(111, WEST, uim1, _, _, _, _, _, _, _, _), 1491 [112] = PINGROUP(112, WEST, uim1, _, _, _, _, _, _, _, _), 1492 [113] = PINGROUP(113, WEST, uim_batt, usb2phy_ac, aoss_cti, _, _, _, _, _, _), 1493 [114] = PINGROUP(114, WEST, qup1, rgmii, _, qdss_gpio, _, _, _, _, _), 1494 [115] = PINGROUP(115, WEST, qup1, rgmii, adsp_ext, _, qdss_gpio, _, _, _, _), 1495 [116] = PINGROUP(116, WEST, qup1, rgmii, _, qdss_gpio, _, _, _, _, _), 1496 [117] = PINGROUP(117, WEST, qup1, rgmii, _, qdss_gpio, _, _, _, _, _), 1497 [118] = PINGROUP(118, WEST, rgmii, _, qdss_gpio, _, _, _, _, _, _), 1498 [119] = PINGROUP(119, WEST, qup5, rgmii, _, qdss_gpio, _, _, _, _, _), 1499 [120] = PINGROUP(120, WEST, qup5, rgmii, _, phase_flag, qdss_gpio, _, _, _, _), 1500 [121] = PINGROUP(121, WEST, qup5, rgmii, _, phase_flag, qdss_gpio, atest_usb2, _, _, _), 1501 [122] = PINGROUP(122, WEST, qup5, rgmii, _, phase_flag, atest_usb2, _, _, _, _), 1502 [123] = PINGROUP(123, SOUTH, usb2phy_ac, _, phase_flag, _, _, _, _, _, _), 1503 [124] = PINGROUP(124, SOUTH, emac_phy, _, _, _, _, _, _, _, _), 1504 [125] = PINGROUP(125, WEST, hs3_mi2s, _, phase_flag, _, _, _, _, _, _), 1505 [126] = PINGROUP(126, WEST, sec_mi2s, qup2, _, _, _, _, _, _, _), 1506 [127] = PINGROUP(127, WEST, sec_mi2s, qup2, _, _, _, _, _, _, _), 1507 [128] = PINGROUP(128, WEST, sec_mi2s, qup2, _, _, _, _, _, _, _), 1508 [129] = PINGROUP(129, WEST, sec_mi2s, qup2, jitter_bist, _, _, _, _, _, _), 1509 [130] = PINGROUP(130, WEST, sec_mi2s, pll_bist, _, qdss_gpio, _, _, _, _, _), 1510 [131] = PINGROUP(131, WEST, ter_mi2s, gcc_gp1, _, _, _, _, _, _, _), 1511 [132] = PINGROUP(132, WEST, ter_mi2s, _, qdss_gpio, _, _, _, _, _, _), 1512 [133] = PINGROUP(133, WEST, ter_mi2s, _, qdss_gpio, atest_char, _, _, _, _, _), 1513 [134] = PINGROUP(134, WEST, ter_mi2s, _, qdss_gpio, atest_char, _, _, _, _, _), 1514 [135] = PINGROUP(135, WEST, ter_mi2s, _, qdss_gpio, atest_char, _, _, _, _, _), 1515 [136] = PINGROUP(136, WEST, qua_mi2s, gcc_gp1, _, _, _, _, _, _, _), 1516 [137] = PINGROUP(137, WEST, qua_mi2s, gcc_gp2, _, _, _, _, _, _, _), 1517 [138] = PINGROUP(138, WEST, qua_mi2s, gcc_gp3, _, _, _, _, _, _, _), 1518 [139] = PINGROUP(139, WEST, qua_mi2s, gcc_gp4, _, _, _, _, _, _, _), 1519 [140] = PINGROUP(140, WEST, qua_mi2s, gcc_gp5, _, atest_char, _, _, _, _, _), 1520 [141] = PINGROUP(141, WEST, qua_mi2s, qdss_cti, _, _, _, _, _, _, _), 1521 [142] = PINGROUP(142, WEST, qua_mi2s, _, _, qdss_cti, atest_char, _, _, _, _), 1522 [143] = PINGROUP(143, WEST, pri_mi2s, _, _, _, _, _, _, _, _), 1523 [144] = PINGROUP(144, WEST, pri_mi2s, qup3, _, _, _, _, _, _, _), 1524 [145] = PINGROUP(145, WEST, pri_mi2s_ws, qup3, ddr_bist, _, _, _, _, _, _), 1525 [146] = PINGROUP(146, WEST, pri_mi2s, qup3, ddr_bist, _, _, _, _, _, _), 1526 [147] = PINGROUP(147, WEST, pri_mi2s, qup3, _, _, _, _, _, _, _), 1527 [148] = PINGROUP(148, WEST, spkr_i2s, audio_ref, _, phase_flag, _, _, _, _, _), 1528 [149] = PINGROUP(149, WEST, lpass_slimbus, spkr_i2s, _, phase_flag, _, _, _, _, _), 1529 [150] = PINGROUP(150, WEST, lpass_slimbus, spkr_i2s, _, phase_flag, tsense_pwm1, tsense_pwm2, _, _, _), 1530 [151] = PINGROUP(151, WEST, lpass_slimbus, spkr_i2s, _, phase_flag, _, _, _, _, _), 1531 [152] = PINGROUP(152, WEST, lpass_slimbus, spkr_i2s, _, phase_flag, _, _, _, _, _), 1532 [153] = PINGROUP(153, WEST, btfm_slimbus, _, _, _, _, _, _, _, _), 1533 [154] = PINGROUP(154, WEST, btfm_slimbus, _, _, _, _, _, _, _, _), 1534 [155] = PINGROUP(155, WEST, hs1_mi2s, _, phase_flag, _, _, _, _, _, _), 1535 [156] = PINGROUP(156, WEST, hs1_mi2s, _, phase_flag, _, _, _, _, _, _), 1536 [157] = PINGROUP(157, WEST, hs1_mi2s, _, phase_flag, _, _, _, _, _, _), 1537 [158] = PINGROUP(158, WEST, hs1_mi2s, _, phase_flag, _, _, _, _, _, _), 1538 [159] = PINGROUP(159, WEST, hs1_mi2s, cri_trng, _, phase_flag, _, _, _, _, _), 1539 [160] = PINGROUP(160, WEST, hs2_mi2s, cri_trng, _, phase_flag, _, _, _, _, _), 1540 [161] = PINGROUP(161, WEST, hs2_mi2s, qspi1, cri_trng, _, phase_flag, _, _, _, _), 1541 [162] = PINGROUP(162, WEST, hs2_mi2s, qspi1, sp_cmu, _, phase_flag, _, _, _, _), 1542 [163] = PINGROUP(163, WEST, hs2_mi2s, qspi1_clk, prng_rosc, _, phase_flag, _, _, _, _), 1543 [164] = PINGROUP(164, WEST, hs2_mi2s, qspi1_cs, _, phase_flag, _, _, _, _, _), 1544 [165] = PINGROUP(165, WEST, hs3_mi2s, _, phase_flag, _, _, _, _, _, _), 1545 [166] = PINGROUP(166, WEST, hs3_mi2s, _, phase_flag, _, _, _, _, _, _), 1546 [167] = PINGROUP(167, WEST, hs3_mi2s, _, phase_flag, _, _, _, _, _, _), 1547 [168] = PINGROUP(168, WEST, hs3_mi2s, _, phase_flag, _, _, _, _, _, _), 1548 [169] = PINGROUP(169, SOUTH, _, _, _, _, _, _, _, _, _), 1549 [170] = PINGROUP(170, SOUTH, _, _, _, _, _, _, _, _, _), 1550 [171] = PINGROUP(171, SOUTH, _, _, _, _, _, _, _, _, _), 1551 [172] = PINGROUP(172, SOUTH, _, _, _, _, _, _, _, _, _), 1552 [173] = PINGROUP(173, SOUTH, _, _, _, _, _, _, _, _, _), 1553 [174] = PINGROUP(174, SOUTH, _, _, _, _, _, _, _, _, _), 1554 [175] = PINGROUP(175, SOUTH, pci_e2, _, _, _, _, _, _, _, _), 1555 [176] = PINGROUP(176, SOUTH, pci_e2, cci_async, _, _, _, _, _, _, _), 1556 [177] = PINGROUP_OFFSET(177, SOUTH, 0x1e000, _, _, _, _, _, _, _, _, _), 1557 [178] = PINGROUP_OFFSET(178, SOUTH, 0x1e000, pci_e3, cci_timer4, _, _, _, _, _, _, _), 1558 [179] = PINGROUP_OFFSET(179, SOUTH, 0x1e000, pci_e3, cam_mclk, _, _, _, _, _, _, _), 1559 [180] = PINGROUP_OFFSET(180, SOUTH, 0x1e000, cam_mclk, _, _, _, _, _, _, _, _), 1560 [181] = PINGROUP_OFFSET(181, SOUTH, 0x1e000, qup19, cam_mclk, _, _, _, _, _, _, _), 1561 [182] = PINGROUP_OFFSET(182, SOUTH, 0x1e000, qup19, cci_timer5, gcc_gp4, _, _, _, _, _, _), 1562 [183] = PINGROUP_OFFSET(183, SOUTH, 0x1e000, qup19, cci_timer6, gcc_gp5, _, _, _, _, _, _), 1563 [184] = PINGROUP_OFFSET(184, SOUTH, 0x1e000, qup19, cci_timer7, _, _, _, _, _, _, _), 1564 [185] = PINGROUP_OFFSET(185, SOUTH, 0x1e000, cci_timer8, cci_async, _, _, _, _, _, _, _), 1565 [186] = PINGROUP_OFFSET(186, SOUTH, 0x1e000, cci_timer9, cci_async, _, _, _, _, _, _, _), 1566 [187] = PINGROUP_OFFSET(187, SOUTH, 0x1e000, _, _, _, _, _, _, _, _, _), 1567 [188] = PINGROUP_OFFSET(188, SOUTH, 0x1e000, _, _, _, _, _, _, _, _, _), 1568 [189] = PINGROUP_OFFSET(189, SOUTH, 0x1e000, dp_hot, _, _, _, _, _, _, _, _), 1569 [190] = UFS_RESET(ufs_reset), 1570 [191] = SDC_QDSD_PINGROUP(sdc2_clk, 0x4b2000, 14, 6), 1571 [192] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x4b2000, 11, 3), 1572 [193] = SDC_QDSD_PINGROUP(sdc2_data, 0x4b2000, 9, 0), 1573}; 1574 1575static const int sc8180x_acpi_reserved_gpios[] = { 1576 0, 1, 2, 3, 1577 47, 48, 49, 50, 1578 126, 127, 128, 129, 1579 -1 /* terminator */ 1580}; 1581 1582static const struct msm_gpio_wakeirq_map sc8180x_pdc_map[] = { 1583 { 3, 31 }, { 5, 32 }, { 8, 33 }, { 9, 34 }, { 10, 100 }, { 12, 104 }, 1584 { 24, 37 }, { 26, 38 }, { 27, 41 }, { 28, 42 }, { 30, 39 }, { 36, 43 }, 1585 { 37, 43 }, { 38, 45 }, { 39, 118 }, { 39, 125 }, { 41, 47 }, 1586 { 42, 48 }, { 46, 50 }, { 47, 49 }, { 48, 51 }, { 49, 53 }, { 50, 52 }, 1587 { 51, 116 }, { 51, 123 }, { 53, 54 }, { 54, 55 }, { 55, 56 }, 1588 { 56, 57 }, { 58, 58 }, { 60, 60 }, { 68, 62 }, { 70, 63 }, { 76, 86 }, 1589 { 77, 36 }, { 81, 64 }, { 83, 65 }, { 86, 67 }, { 87, 84 }, { 88, 117 }, 1590 { 88, 124 }, { 90, 69 }, { 91, 70 }, { 93, 75 }, { 95, 72 }, { 97, 74 }, 1591 { 101, 76 }, { 103, 77 }, { 104, 78 }, { 114, 82 }, { 117, 85 }, 1592 { 118, 101 }, { 119, 87 }, { 120, 88 }, { 121, 89 }, { 122, 90 }, 1593 { 123, 91 }, { 124, 92 }, { 125, 93 }, { 129, 94 }, { 132, 105 }, 1594 { 133, 35 }, { 134, 36 }, { 136, 97 }, { 142, 103 }, { 144, 115 }, 1595 { 144, 122 }, { 147, 106 }, { 150, 107 }, { 152, 108 }, { 153, 109 }, 1596 { 177, 111 }, { 180, 112 }, { 184, 113 }, { 189, 114 } 1597}; 1598 1599static struct msm_pinctrl_soc_data sc8180x_pinctrl = { 1600 .tiles = sc8180x_tiles, 1601 .ntiles = ARRAY_SIZE(sc8180x_tiles), 1602 .pins = sc8180x_pins, 1603 .npins = ARRAY_SIZE(sc8180x_pins), 1604 .functions = sc8180x_functions, 1605 .nfunctions = ARRAY_SIZE(sc8180x_functions), 1606 .groups = sc8180x_groups, 1607 .ngroups = ARRAY_SIZE(sc8180x_groups), 1608 .ngpios = 191, 1609 .wakeirq_map = sc8180x_pdc_map, 1610 .nwakeirq_map = ARRAY_SIZE(sc8180x_pdc_map), 1611}; 1612 1613static const struct msm_pinctrl_soc_data sc8180x_acpi_pinctrl = { 1614 .tiles = sc8180x_tiles, 1615 .ntiles = ARRAY_SIZE(sc8180x_tiles), 1616 .pins = sc8180x_pins, 1617 .npins = ARRAY_SIZE(sc8180x_pins), 1618 .groups = sc8180x_groups, 1619 .ngroups = ARRAY_SIZE(sc8180x_groups), 1620 .reserved_gpios = sc8180x_acpi_reserved_gpios, 1621 .ngpios = 190, 1622}; 1623 1624/* 1625 * ACPI DSDT has one single memory resource for TLMM, which violates the 1626 * hardware layout of 3 separate tiles. Let's split the memory resource into 1627 * 3 named ones, so that msm_pinctrl_probe() can map memory for ACPI in the 1628 * same way as for DT probe. 1629 */ 1630static int sc8180x_pinctrl_add_tile_resources(struct platform_device *pdev) 1631{ 1632 int nres_num = pdev->num_resources + ARRAY_SIZE(sc8180x_tiles) - 1; 1633 struct resource *mres, *nres, *res; 1634 int i, ret; 1635 1636 /* 1637 * DT already has tiles defined properly, so nothing needs to be done 1638 * for DT probe. 1639 */ 1640 if (pdev->dev.of_node) 1641 return 0; 1642 1643 /* Allocate for new resources */ 1644 nres = devm_kzalloc(&pdev->dev, sizeof(*nres) * nres_num, GFP_KERNEL); 1645 if (!nres) 1646 return -ENOMEM; 1647 1648 res = nres; 1649 1650 for (i = 0; i < pdev->num_resources; i++) { 1651 struct resource *r = &pdev->resource[i]; 1652 1653 /* Save memory resource and copy others */ 1654 if (resource_type(r) == IORESOURCE_MEM) 1655 mres = r; 1656 else 1657 *res++ = *r; 1658 } 1659 1660 /* Append tile memory resources */ 1661 for (i = 0; i < ARRAY_SIZE(sc8180x_tiles); i++, res++) { 1662 const struct tile_info *info = &sc8180x_tile_info[i]; 1663 1664 res->start = mres->start + info->offset; 1665 res->end = mres->start + info->offset + info->size - 1; 1666 res->flags = mres->flags; 1667 res->name = sc8180x_tiles[i]; 1668 1669 /* Add new MEM to resource tree */ 1670 insert_resource(mres->parent, res); 1671 } 1672 1673 /* Remove old MEM from resource tree */ 1674 remove_resource(mres); 1675 1676 /* Free old resources and install new ones */ 1677 ret = platform_device_add_resources(pdev, nres, nres_num); 1678 if (ret) { 1679 dev_err(&pdev->dev, "failed to add new resources: %d\n", ret); 1680 return ret; 1681 } 1682 1683 return 0; 1684} 1685 1686static int sc8180x_pinctrl_probe(struct platform_device *pdev) 1687{ 1688 const struct msm_pinctrl_soc_data *soc_data; 1689 int ret; 1690 1691 soc_data = device_get_match_data(&pdev->dev); 1692 if (!soc_data) 1693 return -EINVAL; 1694 1695 ret = sc8180x_pinctrl_add_tile_resources(pdev); 1696 if (ret) 1697 return ret; 1698 1699 return msm_pinctrl_probe(pdev, soc_data); 1700} 1701 1702static const struct acpi_device_id sc8180x_pinctrl_acpi_match[] = { 1703 { 1704 .id = "QCOM040D", 1705 .driver_data = (kernel_ulong_t) &sc8180x_acpi_pinctrl, 1706 }, 1707 { } 1708}; 1709MODULE_DEVICE_TABLE(acpi, sc8180x_pinctrl_acpi_match); 1710 1711static const struct of_device_id sc8180x_pinctrl_of_match[] = { 1712 { 1713 .compatible = "qcom,sc8180x-tlmm", 1714 .data = &sc8180x_pinctrl, 1715 }, 1716 { }, 1717}; 1718MODULE_DEVICE_TABLE(of, sc8180x_pinctrl_of_match); 1719 1720static struct platform_driver sc8180x_pinctrl_driver = { 1721 .driver = { 1722 .name = "sc8180x-pinctrl", 1723 .of_match_table = sc8180x_pinctrl_of_match, 1724 .acpi_match_table = sc8180x_pinctrl_acpi_match, 1725 }, 1726 .probe = sc8180x_pinctrl_probe, 1727 .remove = msm_pinctrl_remove, 1728}; 1729 1730static int __init sc8180x_pinctrl_init(void) 1731{ 1732 return platform_driver_register(&sc8180x_pinctrl_driver); 1733} 1734arch_initcall(sc8180x_pinctrl_init); 1735 1736static void __exit sc8180x_pinctrl_exit(void) 1737{ 1738 platform_driver_unregister(&sc8180x_pinctrl_driver); 1739} 1740module_exit(sc8180x_pinctrl_exit); 1741 1742MODULE_DESCRIPTION("QTI SC8180x pinctrl driver"); 1743MODULE_LICENSE("GPL v2");