pinctrl-direwolf.c 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/of.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/pinctrl/pinctrl.h>
  9. #include "pinctrl-msm.h"
  10. #define FUNCTION(fname) \
  11. [msm_mux_##fname] = { \
  12. .name = #fname, \
  13. .groups = fname##_groups, \
  14. .ngroups = ARRAY_SIZE(fname##_groups), \
  15. }
  16. #define REG_BASE 0x100000
  17. #define REG_SIZE 0x1000
  18. #define REG_DIRCONN 0x110000
  19. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
  20. { \
  21. .name = "gpio" #id, \
  22. .pins = gpio##id##_pins, \
  23. .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \
  24. .funcs = (int[]){ \
  25. msm_mux_gpio, /* gpio mode */ \
  26. msm_mux_##f1, \
  27. msm_mux_##f2, \
  28. msm_mux_##f3, \
  29. msm_mux_##f4, \
  30. msm_mux_##f5, \
  31. msm_mux_##f6, \
  32. msm_mux_##f7, \
  33. msm_mux_##f8, \
  34. msm_mux_##f9 \
  35. }, \
  36. .nfuncs = 10, \
  37. .ctl_reg = REG_BASE + REG_SIZE * id, \
  38. .io_reg = REG_BASE + 0x4 + REG_SIZE * id, \
  39. .intr_cfg_reg = REG_BASE + 0x8 + REG_SIZE * id, \
  40. .intr_status_reg = REG_BASE + 0xc + REG_SIZE * id, \
  41. .intr_target_reg = REG_BASE + 0x8 + REG_SIZE * id, \
  42. .dir_conn_reg = REG_BASE + REG_DIRCONN, \
  43. .mux_bit = 2, \
  44. .pull_bit = 0, \
  45. .drv_bit = 6, \
  46. .oe_bit = 9, \
  47. .in_bit = 0, \
  48. .out_bit = 1, \
  49. .egpio_enable = 12, \
  50. .egpio_present = 11, \
  51. .intr_enable_bit = 0, \
  52. .intr_status_bit = 0, \
  53. .intr_target_bit = 5, \
  54. .intr_target_kpss_val = 3, \
  55. .intr_raw_status_bit = 4, \
  56. .intr_polarity_bit = 1, \
  57. .intr_detection_bit = 2, \
  58. .intr_detection_width = 2, \
  59. .dir_conn_en_bit = 8, \
  60. }
  61. #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
  62. { \
  63. .name = #pg_name, \
  64. .pins = pg_name##_pins, \
  65. .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
  66. .ctl_reg = ctl, \
  67. .io_reg = 0, \
  68. .intr_cfg_reg = 0, \
  69. .intr_status_reg = 0, \
  70. .intr_target_reg = 0, \
  71. .mux_bit = -1, \
  72. .pull_bit = pull, \
  73. .drv_bit = drv, \
  74. .oe_bit = -1, \
  75. .in_bit = -1, \
  76. .out_bit = -1, \
  77. .intr_enable_bit = -1, \
  78. .intr_status_bit = -1, \
  79. .intr_target_bit = -1, \
  80. .intr_raw_status_bit = -1, \
  81. .intr_polarity_bit = -1, \
  82. .intr_detection_bit = -1, \
  83. .intr_detection_width = -1, \
  84. }
  85. #define UFS_RESET(pg_name, offset) \
  86. { \
  87. .name = #pg_name, \
  88. .pins = pg_name##_pins, \
  89. .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
  90. .ctl_reg = offset, \
  91. .io_reg = offset + 0x4, \
  92. .intr_cfg_reg = 0, \
  93. .intr_status_reg = 0, \
  94. .intr_target_reg = 0, \
  95. .mux_bit = -1, \
  96. .pull_bit = 3, \
  97. .drv_bit = 0, \
  98. .oe_bit = -1, \
  99. .in_bit = -1, \
  100. .out_bit = 0, \
  101. .intr_enable_bit = -1, \
  102. .intr_status_bit = -1, \
  103. .intr_target_bit = -1, \
  104. .intr_raw_status_bit = -1, \
  105. .intr_polarity_bit = -1, \
  106. .intr_detection_bit = -1, \
  107. .intr_detection_width = -1, \
  108. }
  109. static const struct pinctrl_pin_desc direwolf_pins[] = {
  110. PINCTRL_PIN(0, "GPIO_0"),
  111. PINCTRL_PIN(1, "GPIO_1"),
  112. PINCTRL_PIN(2, "GPIO_2"),
  113. PINCTRL_PIN(3, "GPIO_3"),
  114. PINCTRL_PIN(4, "GPIO_4"),
  115. PINCTRL_PIN(5, "GPIO_5"),
  116. PINCTRL_PIN(6, "GPIO_6"),
  117. PINCTRL_PIN(7, "GPIO_7"),
  118. PINCTRL_PIN(8, "GPIO_8"),
  119. PINCTRL_PIN(9, "GPIO_9"),
  120. PINCTRL_PIN(10, "GPIO_10"),
  121. PINCTRL_PIN(11, "GPIO_11"),
  122. PINCTRL_PIN(12, "GPIO_12"),
  123. PINCTRL_PIN(13, "GPIO_13"),
  124. PINCTRL_PIN(14, "GPIO_14"),
  125. PINCTRL_PIN(15, "GPIO_15"),
  126. PINCTRL_PIN(16, "GPIO_16"),
  127. PINCTRL_PIN(17, "GPIO_17"),
  128. PINCTRL_PIN(18, "GPIO_18"),
  129. PINCTRL_PIN(19, "GPIO_19"),
  130. PINCTRL_PIN(20, "GPIO_20"),
  131. PINCTRL_PIN(21, "GPIO_21"),
  132. PINCTRL_PIN(22, "GPIO_22"),
  133. PINCTRL_PIN(23, "GPIO_23"),
  134. PINCTRL_PIN(24, "GPIO_24"),
  135. PINCTRL_PIN(25, "GPIO_25"),
  136. PINCTRL_PIN(26, "GPIO_26"),
  137. PINCTRL_PIN(27, "GPIO_27"),
  138. PINCTRL_PIN(28, "GPIO_28"),
  139. PINCTRL_PIN(29, "GPIO_29"),
  140. PINCTRL_PIN(30, "GPIO_30"),
  141. PINCTRL_PIN(31, "GPIO_31"),
  142. PINCTRL_PIN(32, "GPIO_32"),
  143. PINCTRL_PIN(33, "GPIO_33"),
  144. PINCTRL_PIN(34, "GPIO_34"),
  145. PINCTRL_PIN(35, "GPIO_35"),
  146. PINCTRL_PIN(36, "GPIO_36"),
  147. PINCTRL_PIN(37, "GPIO_37"),
  148. PINCTRL_PIN(38, "GPIO_38"),
  149. PINCTRL_PIN(39, "GPIO_39"),
  150. PINCTRL_PIN(40, "GPIO_40"),
  151. PINCTRL_PIN(41, "GPIO_41"),
  152. PINCTRL_PIN(42, "GPIO_42"),
  153. PINCTRL_PIN(43, "GPIO_43"),
  154. PINCTRL_PIN(44, "GPIO_44"),
  155. PINCTRL_PIN(45, "GPIO_45"),
  156. PINCTRL_PIN(46, "GPIO_46"),
  157. PINCTRL_PIN(47, "GPIO_47"),
  158. PINCTRL_PIN(48, "GPIO_48"),
  159. PINCTRL_PIN(49, "GPIO_49"),
  160. PINCTRL_PIN(50, "GPIO_50"),
  161. PINCTRL_PIN(51, "GPIO_51"),
  162. PINCTRL_PIN(52, "GPIO_52"),
  163. PINCTRL_PIN(53, "GPIO_53"),
  164. PINCTRL_PIN(54, "GPIO_54"),
  165. PINCTRL_PIN(55, "GPIO_55"),
  166. PINCTRL_PIN(56, "GPIO_56"),
  167. PINCTRL_PIN(57, "GPIO_57"),
  168. PINCTRL_PIN(58, "GPIO_58"),
  169. PINCTRL_PIN(59, "GPIO_59"),
  170. PINCTRL_PIN(60, "GPIO_60"),
  171. PINCTRL_PIN(61, "GPIO_61"),
  172. PINCTRL_PIN(62, "GPIO_62"),
  173. PINCTRL_PIN(63, "GPIO_63"),
  174. PINCTRL_PIN(64, "GPIO_64"),
  175. PINCTRL_PIN(65, "GPIO_65"),
  176. PINCTRL_PIN(66, "GPIO_66"),
  177. PINCTRL_PIN(67, "GPIO_67"),
  178. PINCTRL_PIN(68, "GPIO_68"),
  179. PINCTRL_PIN(69, "GPIO_69"),
  180. PINCTRL_PIN(70, "GPIO_70"),
  181. PINCTRL_PIN(71, "GPIO_71"),
  182. PINCTRL_PIN(72, "GPIO_72"),
  183. PINCTRL_PIN(73, "GPIO_73"),
  184. PINCTRL_PIN(74, "GPIO_74"),
  185. PINCTRL_PIN(75, "GPIO_75"),
  186. PINCTRL_PIN(76, "GPIO_76"),
  187. PINCTRL_PIN(78, "GPIO_78"),
  188. PINCTRL_PIN(79, "GPIO_79"),
  189. PINCTRL_PIN(80, "GPIO_80"),
  190. PINCTRL_PIN(81, "GPIO_81"),
  191. PINCTRL_PIN(82, "GPIO_82"),
  192. PINCTRL_PIN(83, "GPIO_83"),
  193. PINCTRL_PIN(84, "GPIO_84"),
  194. PINCTRL_PIN(85, "GPIO_85"),
  195. PINCTRL_PIN(86, "GPIO_86"),
  196. PINCTRL_PIN(87, "GPIO_87"),
  197. PINCTRL_PIN(88, "GPIO_88"),
  198. PINCTRL_PIN(89, "GPIO_89"),
  199. PINCTRL_PIN(90, "GPIO_90"),
  200. PINCTRL_PIN(91, "GPIO_91"),
  201. PINCTRL_PIN(92, "GPIO_92"),
  202. PINCTRL_PIN(93, "GPIO_93"),
  203. PINCTRL_PIN(94, "GPIO_94"),
  204. PINCTRL_PIN(95, "GPIO_95"),
  205. PINCTRL_PIN(96, "GPIO_96"),
  206. PINCTRL_PIN(97, "GPIO_97"),
  207. PINCTRL_PIN(98, "GPIO_98"),
  208. PINCTRL_PIN(99, "GPIO_99"),
  209. PINCTRL_PIN(100, "GPIO_100"),
  210. PINCTRL_PIN(101, "GPIO_101"),
  211. PINCTRL_PIN(102, "GPIO_102"),
  212. PINCTRL_PIN(103, "GPIO_103"),
  213. PINCTRL_PIN(104, "GPIO_104"),
  214. PINCTRL_PIN(105, "GPIO_105"),
  215. PINCTRL_PIN(106, "GPIO_106"),
  216. PINCTRL_PIN(107, "GPIO_107"),
  217. PINCTRL_PIN(108, "GPIO_108"),
  218. PINCTRL_PIN(109, "GPIO_109"),
  219. PINCTRL_PIN(110, "GPIO_110"),
  220. PINCTRL_PIN(111, "GPIO_111"),
  221. PINCTRL_PIN(112, "GPIO_112"),
  222. PINCTRL_PIN(113, "GPIO_113"),
  223. PINCTRL_PIN(114, "GPIO_114"),
  224. PINCTRL_PIN(115, "GPIO_115"),
  225. PINCTRL_PIN(116, "GPIO_116"),
  226. PINCTRL_PIN(117, "GPIO_117"),
  227. PINCTRL_PIN(118, "GPIO_118"),
  228. PINCTRL_PIN(119, "GPIO_119"),
  229. PINCTRL_PIN(120, "GPIO_120"),
  230. PINCTRL_PIN(121, "GPIO_121"),
  231. PINCTRL_PIN(122, "GPIO_122"),
  232. PINCTRL_PIN(123, "GPIO_123"),
  233. PINCTRL_PIN(124, "GPIO_124"),
  234. PINCTRL_PIN(125, "GPIO_125"),
  235. PINCTRL_PIN(126, "GPIO_126"),
  236. PINCTRL_PIN(127, "GPIO_127"),
  237. PINCTRL_PIN(128, "GPIO_128"),
  238. PINCTRL_PIN(129, "GPIO_129"),
  239. PINCTRL_PIN(130, "GPIO_130"),
  240. PINCTRL_PIN(131, "GPIO_131"),
  241. PINCTRL_PIN(132, "GPIO_132"),
  242. PINCTRL_PIN(133, "GPIO_133"),
  243. PINCTRL_PIN(134, "GPIO_134"),
  244. PINCTRL_PIN(135, "GPIO_135"),
  245. PINCTRL_PIN(136, "GPIO_136"),
  246. PINCTRL_PIN(137, "GPIO_137"),
  247. PINCTRL_PIN(138, "GPIO_138"),
  248. PINCTRL_PIN(139, "GPIO_139"),
  249. PINCTRL_PIN(140, "GPIO_140"),
  250. PINCTRL_PIN(141, "GPIO_141"),
  251. PINCTRL_PIN(142, "GPIO_142"),
  252. PINCTRL_PIN(143, "GPIO_143"),
  253. PINCTRL_PIN(144, "GPIO_144"),
  254. PINCTRL_PIN(145, "GPIO_145"),
  255. PINCTRL_PIN(146, "GPIO_146"),
  256. PINCTRL_PIN(147, "GPIO_147"),
  257. PINCTRL_PIN(148, "GPIO_148"),
  258. PINCTRL_PIN(149, "GPIO_149"),
  259. PINCTRL_PIN(150, "GPIO_150"),
  260. PINCTRL_PIN(151, "GPIO_151"),
  261. PINCTRL_PIN(152, "GPIO_152"),
  262. PINCTRL_PIN(153, "GPIO_153"),
  263. PINCTRL_PIN(154, "GPIO_154"),
  264. PINCTRL_PIN(155, "GPIO_155"),
  265. PINCTRL_PIN(156, "GPIO_156"),
  266. PINCTRL_PIN(157, "GPIO_157"),
  267. PINCTRL_PIN(158, "GPIO_158"),
  268. PINCTRL_PIN(159, "GPIO_159"),
  269. PINCTRL_PIN(160, "GPIO_160"),
  270. PINCTRL_PIN(161, "GPIO_161"),
  271. PINCTRL_PIN(162, "GPIO_162"),
  272. PINCTRL_PIN(163, "GPIO_163"),
  273. PINCTRL_PIN(164, "GPIO_164"),
  274. PINCTRL_PIN(165, "GPIO_165"),
  275. PINCTRL_PIN(166, "GPIO_166"),
  276. PINCTRL_PIN(167, "GPIO_167"),
  277. PINCTRL_PIN(168, "GPIO_168"),
  278. PINCTRL_PIN(169, "GPIO_169"),
  279. PINCTRL_PIN(170, "GPIO_170"),
  280. PINCTRL_PIN(171, "GPIO_171"),
  281. PINCTRL_PIN(172, "GPIO_172"),
  282. PINCTRL_PIN(173, "GPIO_173"),
  283. PINCTRL_PIN(174, "GPIO_174"),
  284. PINCTRL_PIN(175, "GPIO_175"),
  285. PINCTRL_PIN(176, "GPIO_176"),
  286. PINCTRL_PIN(177, "GPIO_177"),
  287. PINCTRL_PIN(178, "GPIO_178"),
  288. PINCTRL_PIN(179, "GPIO_179"),
  289. PINCTRL_PIN(180, "GPIO_180"),
  290. PINCTRL_PIN(181, "GPIO_181"),
  291. PINCTRL_PIN(182, "GPIO_182"),
  292. PINCTRL_PIN(183, "GPIO_183"),
  293. PINCTRL_PIN(184, "GPIO_184"),
  294. PINCTRL_PIN(185, "GPIO_185"),
  295. PINCTRL_PIN(186, "GPIO_186"),
  296. PINCTRL_PIN(187, "GPIO_187"),
  297. PINCTRL_PIN(188, "GPIO_188"),
  298. PINCTRL_PIN(189, "GPIO_189"),
  299. PINCTRL_PIN(190, "GPIO_190"),
  300. PINCTRL_PIN(191, "GPIO_191"),
  301. PINCTRL_PIN(192, "GPIO_192"),
  302. PINCTRL_PIN(193, "GPIO_193"),
  303. PINCTRL_PIN(194, "GPIO_194"),
  304. PINCTRL_PIN(195, "GPIO_195"),
  305. PINCTRL_PIN(196, "GPIO_196"),
  306. PINCTRL_PIN(197, "GPIO_197"),
  307. PINCTRL_PIN(198, "GPIO_198"),
  308. PINCTRL_PIN(199, "GPIO_199"),
  309. PINCTRL_PIN(200, "GPIO_200"),
  310. PINCTRL_PIN(201, "GPIO_201"),
  311. PINCTRL_PIN(202, "GPIO_202"),
  312. PINCTRL_PIN(203, "GPIO_203"),
  313. PINCTRL_PIN(204, "GPIO_204"),
  314. PINCTRL_PIN(205, "GPIO_205"),
  315. PINCTRL_PIN(206, "GPIO_206"),
  316. PINCTRL_PIN(207, "GPIO_207"),
  317. PINCTRL_PIN(208, "GPIO_208"),
  318. PINCTRL_PIN(209, "GPIO_209"),
  319. PINCTRL_PIN(210, "GPIO_210"),
  320. PINCTRL_PIN(211, "GPIO_211"),
  321. PINCTRL_PIN(212, "GPIO_212"),
  322. PINCTRL_PIN(213, "GPIO_213"),
  323. PINCTRL_PIN(214, "GPIO_214"),
  324. PINCTRL_PIN(215, "GPIO_215"),
  325. PINCTRL_PIN(216, "GPIO_216"),
  326. PINCTRL_PIN(217, "GPIO_217"),
  327. PINCTRL_PIN(218, "GPIO_218"),
  328. PINCTRL_PIN(219, "GPIO_219"),
  329. PINCTRL_PIN(220, "GPIO_220"),
  330. PINCTRL_PIN(221, "GPIO_221"),
  331. PINCTRL_PIN(222, "GPIO_222"),
  332. PINCTRL_PIN(223, "GPIO_223"),
  333. PINCTRL_PIN(224, "GPIO_224"),
  334. PINCTRL_PIN(225, "GPIO_225"),
  335. PINCTRL_PIN(226, "GPIO_226"),
  336. PINCTRL_PIN(227, "GPIO_227"),
  337. PINCTRL_PIN(228, "UFS_RESET"),
  338. PINCTRL_PIN(229, "UFS1_RESET"),
  339. PINCTRL_PIN(230, "SDC2_CLK"),
  340. PINCTRL_PIN(231, "SDC2_CMD"),
  341. PINCTRL_PIN(232, "SDC2_DATA"),
  342. };
  343. #define DECLARE_MSM_GPIO_PINS(pin) \
  344. static const unsigned int gpio##pin##_pins[] = { pin }
  345. DECLARE_MSM_GPIO_PINS(0);
  346. DECLARE_MSM_GPIO_PINS(1);
  347. DECLARE_MSM_GPIO_PINS(2);
  348. DECLARE_MSM_GPIO_PINS(3);
  349. DECLARE_MSM_GPIO_PINS(4);
  350. DECLARE_MSM_GPIO_PINS(5);
  351. DECLARE_MSM_GPIO_PINS(6);
  352. DECLARE_MSM_GPIO_PINS(7);
  353. DECLARE_MSM_GPIO_PINS(8);
  354. DECLARE_MSM_GPIO_PINS(9);
  355. DECLARE_MSM_GPIO_PINS(10);
  356. DECLARE_MSM_GPIO_PINS(11);
  357. DECLARE_MSM_GPIO_PINS(12);
  358. DECLARE_MSM_GPIO_PINS(13);
  359. DECLARE_MSM_GPIO_PINS(14);
  360. DECLARE_MSM_GPIO_PINS(15);
  361. DECLARE_MSM_GPIO_PINS(16);
  362. DECLARE_MSM_GPIO_PINS(17);
  363. DECLARE_MSM_GPIO_PINS(18);
  364. DECLARE_MSM_GPIO_PINS(19);
  365. DECLARE_MSM_GPIO_PINS(20);
  366. DECLARE_MSM_GPIO_PINS(21);
  367. DECLARE_MSM_GPIO_PINS(22);
  368. DECLARE_MSM_GPIO_PINS(23);
  369. DECLARE_MSM_GPIO_PINS(24);
  370. DECLARE_MSM_GPIO_PINS(25);
  371. DECLARE_MSM_GPIO_PINS(26);
  372. DECLARE_MSM_GPIO_PINS(27);
  373. DECLARE_MSM_GPIO_PINS(28);
  374. DECLARE_MSM_GPIO_PINS(29);
  375. DECLARE_MSM_GPIO_PINS(30);
  376. DECLARE_MSM_GPIO_PINS(31);
  377. DECLARE_MSM_GPIO_PINS(32);
  378. DECLARE_MSM_GPIO_PINS(33);
  379. DECLARE_MSM_GPIO_PINS(34);
  380. DECLARE_MSM_GPIO_PINS(35);
  381. DECLARE_MSM_GPIO_PINS(36);
  382. DECLARE_MSM_GPIO_PINS(37);
  383. DECLARE_MSM_GPIO_PINS(38);
  384. DECLARE_MSM_GPIO_PINS(39);
  385. DECLARE_MSM_GPIO_PINS(40);
  386. DECLARE_MSM_GPIO_PINS(41);
  387. DECLARE_MSM_GPIO_PINS(42);
  388. DECLARE_MSM_GPIO_PINS(43);
  389. DECLARE_MSM_GPIO_PINS(44);
  390. DECLARE_MSM_GPIO_PINS(45);
  391. DECLARE_MSM_GPIO_PINS(46);
  392. DECLARE_MSM_GPIO_PINS(47);
  393. DECLARE_MSM_GPIO_PINS(48);
  394. DECLARE_MSM_GPIO_PINS(49);
  395. DECLARE_MSM_GPIO_PINS(50);
  396. DECLARE_MSM_GPIO_PINS(51);
  397. DECLARE_MSM_GPIO_PINS(52);
  398. DECLARE_MSM_GPIO_PINS(53);
  399. DECLARE_MSM_GPIO_PINS(54);
  400. DECLARE_MSM_GPIO_PINS(55);
  401. DECLARE_MSM_GPIO_PINS(56);
  402. DECLARE_MSM_GPIO_PINS(57);
  403. DECLARE_MSM_GPIO_PINS(58);
  404. DECLARE_MSM_GPIO_PINS(59);
  405. DECLARE_MSM_GPIO_PINS(60);
  406. DECLARE_MSM_GPIO_PINS(61);
  407. DECLARE_MSM_GPIO_PINS(62);
  408. DECLARE_MSM_GPIO_PINS(63);
  409. DECLARE_MSM_GPIO_PINS(64);
  410. DECLARE_MSM_GPIO_PINS(65);
  411. DECLARE_MSM_GPIO_PINS(66);
  412. DECLARE_MSM_GPIO_PINS(67);
  413. DECLARE_MSM_GPIO_PINS(68);
  414. DECLARE_MSM_GPIO_PINS(69);
  415. DECLARE_MSM_GPIO_PINS(70);
  416. DECLARE_MSM_GPIO_PINS(71);
  417. DECLARE_MSM_GPIO_PINS(72);
  418. DECLARE_MSM_GPIO_PINS(73);
  419. DECLARE_MSM_GPIO_PINS(74);
  420. DECLARE_MSM_GPIO_PINS(75);
  421. DECLARE_MSM_GPIO_PINS(76);
  422. DECLARE_MSM_GPIO_PINS(77);
  423. DECLARE_MSM_GPIO_PINS(78);
  424. DECLARE_MSM_GPIO_PINS(79);
  425. DECLARE_MSM_GPIO_PINS(80);
  426. DECLARE_MSM_GPIO_PINS(81);
  427. DECLARE_MSM_GPIO_PINS(82);
  428. DECLARE_MSM_GPIO_PINS(83);
  429. DECLARE_MSM_GPIO_PINS(84);
  430. DECLARE_MSM_GPIO_PINS(85);
  431. DECLARE_MSM_GPIO_PINS(86);
  432. DECLARE_MSM_GPIO_PINS(87);
  433. DECLARE_MSM_GPIO_PINS(88);
  434. DECLARE_MSM_GPIO_PINS(89);
  435. DECLARE_MSM_GPIO_PINS(90);
  436. DECLARE_MSM_GPIO_PINS(91);
  437. DECLARE_MSM_GPIO_PINS(92);
  438. DECLARE_MSM_GPIO_PINS(93);
  439. DECLARE_MSM_GPIO_PINS(94);
  440. DECLARE_MSM_GPIO_PINS(95);
  441. DECLARE_MSM_GPIO_PINS(96);
  442. DECLARE_MSM_GPIO_PINS(97);
  443. DECLARE_MSM_GPIO_PINS(98);
  444. DECLARE_MSM_GPIO_PINS(99);
  445. DECLARE_MSM_GPIO_PINS(100);
  446. DECLARE_MSM_GPIO_PINS(101);
  447. DECLARE_MSM_GPIO_PINS(102);
  448. DECLARE_MSM_GPIO_PINS(103);
  449. DECLARE_MSM_GPIO_PINS(104);
  450. DECLARE_MSM_GPIO_PINS(105);
  451. DECLARE_MSM_GPIO_PINS(106);
  452. DECLARE_MSM_GPIO_PINS(107);
  453. DECLARE_MSM_GPIO_PINS(108);
  454. DECLARE_MSM_GPIO_PINS(109);
  455. DECLARE_MSM_GPIO_PINS(110);
  456. DECLARE_MSM_GPIO_PINS(111);
  457. DECLARE_MSM_GPIO_PINS(112);
  458. DECLARE_MSM_GPIO_PINS(113);
  459. DECLARE_MSM_GPIO_PINS(114);
  460. DECLARE_MSM_GPIO_PINS(115);
  461. DECLARE_MSM_GPIO_PINS(116);
  462. DECLARE_MSM_GPIO_PINS(117);
  463. DECLARE_MSM_GPIO_PINS(118);
  464. DECLARE_MSM_GPIO_PINS(119);
  465. DECLARE_MSM_GPIO_PINS(120);
  466. DECLARE_MSM_GPIO_PINS(121);
  467. DECLARE_MSM_GPIO_PINS(122);
  468. DECLARE_MSM_GPIO_PINS(123);
  469. DECLARE_MSM_GPIO_PINS(124);
  470. DECLARE_MSM_GPIO_PINS(125);
  471. DECLARE_MSM_GPIO_PINS(126);
  472. DECLARE_MSM_GPIO_PINS(127);
  473. DECLARE_MSM_GPIO_PINS(128);
  474. DECLARE_MSM_GPIO_PINS(129);
  475. DECLARE_MSM_GPIO_PINS(130);
  476. DECLARE_MSM_GPIO_PINS(131);
  477. DECLARE_MSM_GPIO_PINS(132);
  478. DECLARE_MSM_GPIO_PINS(133);
  479. DECLARE_MSM_GPIO_PINS(134);
  480. DECLARE_MSM_GPIO_PINS(135);
  481. DECLARE_MSM_GPIO_PINS(136);
  482. DECLARE_MSM_GPIO_PINS(137);
  483. DECLARE_MSM_GPIO_PINS(138);
  484. DECLARE_MSM_GPIO_PINS(139);
  485. DECLARE_MSM_GPIO_PINS(140);
  486. DECLARE_MSM_GPIO_PINS(141);
  487. DECLARE_MSM_GPIO_PINS(142);
  488. DECLARE_MSM_GPIO_PINS(143);
  489. DECLARE_MSM_GPIO_PINS(144);
  490. DECLARE_MSM_GPIO_PINS(145);
  491. DECLARE_MSM_GPIO_PINS(146);
  492. DECLARE_MSM_GPIO_PINS(147);
  493. DECLARE_MSM_GPIO_PINS(148);
  494. DECLARE_MSM_GPIO_PINS(149);
  495. DECLARE_MSM_GPIO_PINS(150);
  496. DECLARE_MSM_GPIO_PINS(151);
  497. DECLARE_MSM_GPIO_PINS(152);
  498. DECLARE_MSM_GPIO_PINS(153);
  499. DECLARE_MSM_GPIO_PINS(154);
  500. DECLARE_MSM_GPIO_PINS(155);
  501. DECLARE_MSM_GPIO_PINS(156);
  502. DECLARE_MSM_GPIO_PINS(157);
  503. DECLARE_MSM_GPIO_PINS(158);
  504. DECLARE_MSM_GPIO_PINS(159);
  505. DECLARE_MSM_GPIO_PINS(160);
  506. DECLARE_MSM_GPIO_PINS(161);
  507. DECLARE_MSM_GPIO_PINS(162);
  508. DECLARE_MSM_GPIO_PINS(163);
  509. DECLARE_MSM_GPIO_PINS(164);
  510. DECLARE_MSM_GPIO_PINS(165);
  511. DECLARE_MSM_GPIO_PINS(166);
  512. DECLARE_MSM_GPIO_PINS(167);
  513. DECLARE_MSM_GPIO_PINS(168);
  514. DECLARE_MSM_GPIO_PINS(169);
  515. DECLARE_MSM_GPIO_PINS(170);
  516. DECLARE_MSM_GPIO_PINS(171);
  517. DECLARE_MSM_GPIO_PINS(172);
  518. DECLARE_MSM_GPIO_PINS(173);
  519. DECLARE_MSM_GPIO_PINS(174);
  520. DECLARE_MSM_GPIO_PINS(175);
  521. DECLARE_MSM_GPIO_PINS(176);
  522. DECLARE_MSM_GPIO_PINS(177);
  523. DECLARE_MSM_GPIO_PINS(178);
  524. DECLARE_MSM_GPIO_PINS(179);
  525. DECLARE_MSM_GPIO_PINS(180);
  526. DECLARE_MSM_GPIO_PINS(181);
  527. DECLARE_MSM_GPIO_PINS(182);
  528. DECLARE_MSM_GPIO_PINS(183);
  529. DECLARE_MSM_GPIO_PINS(184);
  530. DECLARE_MSM_GPIO_PINS(185);
  531. DECLARE_MSM_GPIO_PINS(186);
  532. DECLARE_MSM_GPIO_PINS(187);
  533. DECLARE_MSM_GPIO_PINS(188);
  534. DECLARE_MSM_GPIO_PINS(189);
  535. DECLARE_MSM_GPIO_PINS(190);
  536. DECLARE_MSM_GPIO_PINS(191);
  537. DECLARE_MSM_GPIO_PINS(192);
  538. DECLARE_MSM_GPIO_PINS(193);
  539. DECLARE_MSM_GPIO_PINS(194);
  540. DECLARE_MSM_GPIO_PINS(195);
  541. DECLARE_MSM_GPIO_PINS(196);
  542. DECLARE_MSM_GPIO_PINS(197);
  543. DECLARE_MSM_GPIO_PINS(198);
  544. DECLARE_MSM_GPIO_PINS(199);
  545. DECLARE_MSM_GPIO_PINS(200);
  546. DECLARE_MSM_GPIO_PINS(201);
  547. DECLARE_MSM_GPIO_PINS(202);
  548. DECLARE_MSM_GPIO_PINS(203);
  549. DECLARE_MSM_GPIO_PINS(204);
  550. DECLARE_MSM_GPIO_PINS(205);
  551. DECLARE_MSM_GPIO_PINS(206);
  552. DECLARE_MSM_GPIO_PINS(207);
  553. DECLARE_MSM_GPIO_PINS(208);
  554. DECLARE_MSM_GPIO_PINS(209);
  555. DECLARE_MSM_GPIO_PINS(210);
  556. DECLARE_MSM_GPIO_PINS(211);
  557. DECLARE_MSM_GPIO_PINS(212);
  558. DECLARE_MSM_GPIO_PINS(213);
  559. DECLARE_MSM_GPIO_PINS(214);
  560. DECLARE_MSM_GPIO_PINS(215);
  561. DECLARE_MSM_GPIO_PINS(216);
  562. DECLARE_MSM_GPIO_PINS(217);
  563. DECLARE_MSM_GPIO_PINS(218);
  564. DECLARE_MSM_GPIO_PINS(219);
  565. DECLARE_MSM_GPIO_PINS(220);
  566. DECLARE_MSM_GPIO_PINS(221);
  567. DECLARE_MSM_GPIO_PINS(222);
  568. DECLARE_MSM_GPIO_PINS(223);
  569. DECLARE_MSM_GPIO_PINS(224);
  570. DECLARE_MSM_GPIO_PINS(225);
  571. DECLARE_MSM_GPIO_PINS(226);
  572. DECLARE_MSM_GPIO_PINS(227);
  573. static const unsigned int ufs_reset_pins[] = { 228 };
  574. static const unsigned int ufs1_reset_pins[] = { 229 };
  575. static const unsigned int sdc2_clk_pins[] = { 230 };
  576. static const unsigned int sdc2_cmd_pins[] = { 231 };
  577. static const unsigned int sdc2_data_pins[] = { 232 };
  578. enum direwolf_functions {
  579. msm_mux_gpio,
  580. msm_mux_qup12,
  581. msm_mux_mdp0_vsync0,
  582. msm_mux_edp_hot,
  583. msm_mux_mdp0_vsync1,
  584. msm_mux_qdss_cti,
  585. msm_mux_qup14,
  586. msm_mux_ibi_i3c,
  587. msm_mux_cam_mclk,
  588. msm_mux_mdp_vsync,
  589. msm_mux_mdp0_vsync2,
  590. msm_mux_usb1_dp,
  591. msm_mux_mdp0_vsync3,
  592. msm_mux_cci_i2c,
  593. msm_mux_mdp0_vsync4,
  594. msm_mux_qdss_gpio0,
  595. msm_mux_mdp0_vsync5,
  596. msm_mux_qdss_gpio1,
  597. msm_mux_mdp0_vsync6,
  598. msm_mux_qdss_gpio2,
  599. msm_mux_mdp0_vsync7,
  600. msm_mux_qdss_gpio3,
  601. msm_mux_cci_timer2,
  602. msm_mux_qdss_gpio4,
  603. msm_mux_cci_timer3,
  604. msm_mux_cci_async,
  605. msm_mux_qdss_gpio5,
  606. msm_mux_mdp0_vsync8,
  607. msm_mux_qdss_gpio6,
  608. msm_mux_mdp1_vsync0,
  609. msm_mux_qdss_gpio7,
  610. msm_mux_qup11,
  611. msm_mux_mdp1_vsync1,
  612. msm_mux_mdp1_vsync2,
  613. msm_mux_dp2_hot,
  614. msm_mux_mdp1_vsync3,
  615. msm_mux_usb0_dp,
  616. msm_mux_qup10,
  617. msm_mux_usb2phy_ac,
  618. msm_mux_qup13,
  619. msm_mux_edp0_lcd,
  620. msm_mux_edp1_lcd,
  621. msm_mux_edp2_lcd,
  622. msm_mux_edp3_lcd,
  623. msm_mux_usb1_usb4,
  624. msm_mux_qup15,
  625. msm_mux_mdp1_vsync4,
  626. msm_mux_mdp1_vsync5,
  627. msm_mux_mdp1_vsync6,
  628. msm_mux_mdp1_vsync7,
  629. msm_mux_mdp1_vsync8,
  630. msm_mux_qup9,
  631. msm_mux_ddr_bist,
  632. msm_mux_qup8,
  633. msm_mux_dp3_hot,
  634. msm_mux_usb1_phy,
  635. msm_mux_usb1_sbtx,
  636. msm_mux_usb1_sbrx,
  637. msm_mux_emac1_phy,
  638. msm_mux_emac1_ptp,
  639. msm_mux_qup19,
  640. msm_mux_emac1_mcg0,
  641. msm_mux_emac1_mcg1,
  642. msm_mux_qup23,
  643. msm_mux_qup17,
  644. msm_mux_tsense_pwm4,
  645. msm_mux_qup18,
  646. msm_mux_tsense_pwm3,
  647. msm_mux_emac1_mcg2,
  648. msm_mux_emac1_mcg3,
  649. msm_mux_tsense_pwm2,
  650. msm_mux_qup16,
  651. msm_mux_tsense_pwm1,
  652. msm_mux_atest_usb3,
  653. msm_mux_pcie3b_clkreq,
  654. msm_mux_tb_trig,
  655. msm_mux_qup6,
  656. msm_mux_qup1,
  657. msm_mux_cci_timer9,
  658. msm_mux_emac0_mcg0,
  659. msm_mux_gcc_gp4,
  660. msm_mux_cci_timer4,
  661. msm_mux_emac0_mcg1,
  662. msm_mux_qdss_gpio14,
  663. msm_mux_cci_timer6,
  664. msm_mux_emac0_mcg2,
  665. msm_mux_qdss_gpio15,
  666. msm_mux_cci_timer7,
  667. msm_mux_emac0_mcg3,
  668. msm_mux_usb0_phy,
  669. msm_mux_cci_timer8,
  670. msm_mux_gcc_gp5,
  671. msm_mux_usb0_sbtx,
  672. msm_mux_usb0_sbrx,
  673. msm_mux_rgmii_0,
  674. msm_mux_cri_trng0,
  675. msm_mux_cri_trng1,
  676. msm_mux_prng_rosc0,
  677. msm_mux_cri_trng,
  678. msm_mux_prng_rosc1,
  679. msm_mux_prng_rosc2,
  680. msm_mux_prng_rosc3,
  681. msm_mux_phase_flag12,
  682. msm_mux_phase_flag11,
  683. msm_mux_phase_flag10,
  684. msm_mux_phase_flag9,
  685. msm_mux_phase_flag19,
  686. msm_mux_hs1_mi2s,
  687. msm_mux_mi2s2_sck,
  688. msm_mux_mi2s2_ws,
  689. msm_mux_mi2s2_data0,
  690. msm_mux_ddr_pxi5,
  691. msm_mux_mi2s2_data1,
  692. msm_mux_emac1_dll0,
  693. msm_mux_emac0_dll,
  694. msm_mux_ddr_pxi4,
  695. msm_mux_mi2s_mclk2,
  696. msm_mux_emac1_dll1,
  697. msm_mux_phase_flag8,
  698. msm_mux_lpass_slimbus,
  699. msm_mux_mi2s1_sck,
  700. msm_mux_phase_flag7,
  701. msm_mux_mi2s1_ws,
  702. msm_mux_phase_flag6,
  703. msm_mux_mi2s1_data0,
  704. msm_mux_phase_flag5,
  705. msm_mux_mi2s1_data1,
  706. msm_mux_phase_flag4,
  707. msm_mux_hs3_mi2s,
  708. msm_mux_phase_flag3,
  709. msm_mux_phase_flag2,
  710. msm_mux_phase_flag1,
  711. msm_mux_phase_flag0,
  712. msm_mux_atest_usb33,
  713. msm_mux_atest_usb32,
  714. msm_mux_qspi0_clk,
  715. msm_mux_sdc4_clk,
  716. msm_mux_atest_usb23,
  717. msm_mux_qspi0_cs,
  718. msm_mux_sdc4_cmd,
  719. msm_mux_atest_usb13,
  720. msm_mux_qspi00,
  721. msm_mux_sdc40,
  722. msm_mux_atest_usb11,
  723. msm_mux_qspi02,
  724. msm_mux_sdc42,
  725. msm_mux_atest_usb02,
  726. msm_mux_qspi03,
  727. msm_mux_sdc43,
  728. msm_mux_atest_usb01,
  729. msm_mux_ddr_pxi6,
  730. msm_mux_mi2s_mclk1,
  731. msm_mux_audio_ref,
  732. msm_mux_phase_flag23,
  733. msm_mux_qdss_gpio12,
  734. msm_mux_qup20,
  735. msm_mux_phase_flag22,
  736. msm_mux_vsense_trigger,
  737. msm_mux_qup21,
  738. msm_mux_phase_flag21,
  739. msm_mux_qup22,
  740. msm_mux_phase_flag20,
  741. msm_mux_pll_bist,
  742. msm_mux_pll_clk,
  743. msm_mux_phase_flag18,
  744. msm_mux_phase_flag17,
  745. msm_mux_phase_flag16,
  746. msm_mux_phase_flag15,
  747. msm_mux_hs2_mi2s,
  748. msm_mux_phase_flag14,
  749. msm_mux_phase_flag13,
  750. msm_mux_mi2s0_sck,
  751. msm_mux_phase_flag31,
  752. msm_mux_mi2s0_ws,
  753. msm_mux_phase_flag30,
  754. msm_mux_mi2s0_data0,
  755. msm_mux_phase_flag29,
  756. msm_mux_mi2s0_data1,
  757. msm_mux_qdss_gpio13,
  758. msm_mux_rgmii_1,
  759. msm_mux_atest_usb31,
  760. msm_mux_atest_usb30,
  761. msm_mux_tgu_ch0,
  762. msm_mux_atest_usb4,
  763. msm_mux_tgu_ch1,
  764. msm_mux_atest_usb43,
  765. msm_mux_tgu_ch2,
  766. msm_mux_atest_usb42,
  767. msm_mux_tgu_ch3,
  768. msm_mux_atest_usb41,
  769. msm_mux_tgu_ch4,
  770. msm_mux_atest_usb40,
  771. msm_mux_tgu_ch5,
  772. msm_mux_tgu_ch6,
  773. msm_mux_tgu_ch7,
  774. msm_mux_atest_usb5,
  775. msm_mux_qup4,
  776. msm_mux_qup5,
  777. msm_mux_atest_usb53,
  778. msm_mux_atest_usb52,
  779. msm_mux_atest_usb51,
  780. msm_mux_gcc_gp2,
  781. msm_mux_atest_usb50,
  782. msm_mux_gcc_gp3,
  783. msm_mux_qdss_gpio,
  784. msm_mux_qdss_gpio8,
  785. msm_mux_qdss_gpio9,
  786. msm_mux_cci_timer0,
  787. msm_mux_gcc_gp1,
  788. msm_mux_qdss_gpio10,
  789. msm_mux_cci_timer1,
  790. msm_mux_qdss_gpio11,
  791. msm_mux_ddr_pxi3,
  792. msm_mux_qup2,
  793. msm_mux_atest_usb20,
  794. msm_mux_ddr_pxi0,
  795. msm_mux_atest_usb00,
  796. msm_mux_cmu_rng,
  797. msm_mux_ddr_pxi2,
  798. msm_mux_ddr_pxi1,
  799. msm_mux_qup7,
  800. msm_mux_dbg_out,
  801. msm_mux_emac0_phy,
  802. msm_mux_emac0_ptp,
  803. msm_mux_sd_write,
  804. msm_mux_atest_usb1,
  805. msm_mux_atest_usb0,
  806. msm_mux_usb0_usb4,
  807. msm_mux_phase_flag28,
  808. msm_mux_atest_char0,
  809. msm_mux_qup0,
  810. msm_mux_qup3,
  811. msm_mux_atest_usb12,
  812. msm_mux_ddr_pxi7,
  813. msm_mux_atest_usb22,
  814. msm_mux_atest_usb21,
  815. msm_mux_cci_timer5,
  816. msm_mux_atest_char2,
  817. msm_mux_pcie4_clkreq,
  818. msm_mux_jitter_bist,
  819. msm_mux_atest_char1,
  820. msm_mux_pcie2a_clkreq,
  821. msm_mux_atest_char3,
  822. msm_mux_atest_char,
  823. msm_mux_pcie2b_clkreq,
  824. msm_mux_phase_flag27,
  825. msm_mux_phase_flag26,
  826. msm_mux_phase_flag25,
  827. msm_mux_phase_flag24,
  828. msm_mux_atest_usb2,
  829. msm_mux_atest_usb03,
  830. msm_mux_pcie3a_clkreq,
  831. msm_mux_NA,
  832. };
  833. static const char * const gpio_groups[] = {
  834. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  835. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  836. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  837. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  838. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  839. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  840. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  841. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  842. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  843. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  844. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio78",
  845. "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84", "gpio85",
  846. "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91", "gpio92",
  847. "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98", "gpio99",
  848. "gpio100", "gpio101", "gpio102", "gpio103", "gpio104", "gpio105",
  849. "gpio106", "gpio107", "gpio108", "gpio109", "gpio110", "gpio111",
  850. "gpio112", "gpio113", "gpio114", "gpio115", "gpio116", "gpio117",
  851. "gpio118", "gpio119", "gpio120", "gpio121", "gpio122", "gpio123",
  852. "gpio124", "gpio125", "gpio126", "gpio127", "gpio128", "gpio129",
  853. "gpio130", "gpio131", "gpio132", "gpio133", "gpio134", "gpio135",
  854. "gpio136", "gpio137", "gpio138", "gpio139", "gpio140", "gpio141",
  855. "gpio142", "gpio143", "gpio144", "gpio145", "gpio146", "gpio147",
  856. "gpio148", "gpio149", "gpio150", "gpio151", "gpio152", "gpio153",
  857. "gpio154", "gpio155", "gpio156", "gpio157", "gpio158", "gpio159",
  858. "gpio160", "gpio161", "gpio162", "gpio163", "gpio164", "gpio165",
  859. "gpio166", "gpio167", "gpio168", "gpio169", "gpio170", "gpio171",
  860. "gpio172", "gpio173", "gpio174", "gpio175", "gpio176", "gpio177",
  861. "gpio178", "gpio179", "gpio180", "gpio181", "gpio182", "gpio183",
  862. "gpio184", "gpio185", "gpio186", "gpio187", "gpio188", "gpio189",
  863. "gpio190", "gpio191", "gpio192", "gpio193", "gpio194", "gpio195",
  864. "gpio196", "gpio197", "gpio198", "gpio199", "gpio200", "gpio201",
  865. "gpio202", "gpio203", "gpio204", "gpio205", "gpio206", "gpio207",
  866. "gpio208", "gpio209", "gpio210", "gpio211", "gpio212", "gpio213",
  867. "gpio214", "gpio215", "gpio216", "gpio217", "gpio218", "gpio219",
  868. "gpio220", "gpio221", "gpio222", "gpio223", "gpio224", "gpio225",
  869. "gpio226", "gpio227",
  870. };
  871. static const char * const qup12_groups[] = {
  872. "gpio0", "gpio1", "gpio2", "gpio3",
  873. };
  874. static const char * const mdp0_vsync0_groups[] = {
  875. "gpio1",
  876. };
  877. static const char * const edp_hot_groups[] = {
  878. "gpio2", "gpio3", "gpio6", "gpio7",
  879. };
  880. static const char * const mdp0_vsync1_groups[] = {
  881. "gpio2",
  882. };
  883. static const char * const qdss_cti_groups[] = {
  884. "gpio3", "gpio4", "gpio7", "gpio21", "gpio30", "gpio30", "gpio31",
  885. "gpio31",
  886. };
  887. static const char * const qup14_groups[] = {
  888. "gpio4", "gpio5", "gpio6", "gpio7",
  889. };
  890. static const char * const ibi_i3c_groups[] = {
  891. "gpio4", "gpio5", "gpio36", "gpio37", "gpio128", "gpio129", "gpio154",
  892. "gpio155",
  893. };
  894. static const char * const cam_mclk_groups[] = {
  895. "gpio6", "gpio7", "gpio16", "gpio17", "gpio33", "gpio34", "gpio119",
  896. "gpio120",
  897. };
  898. static const char * const mdp_vsync_groups[] = {
  899. "gpio8", "gpio100", "gpio101",
  900. };
  901. static const char * const mdp0_vsync2_groups[] = {
  902. "gpio8",
  903. };
  904. static const char * const usb1_dp_groups[] = {
  905. "gpio9",
  906. };
  907. static const char * const mdp0_vsync3_groups[] = {
  908. "gpio9",
  909. };
  910. static const char * const cci_i2c_groups[] = {
  911. "gpio10", "gpio11", "gpio12", "gpio13", "gpio113", "gpio114",
  912. "gpio115", "gpio116", "gpio117", "gpio118", "gpio123", "gpio124",
  913. "gpio145", "gpio146", "gpio164", "gpio165",
  914. };
  915. static const char * const mdp0_vsync4_groups[] = {
  916. "gpio10",
  917. };
  918. static const char * const qdss_gpio0_groups[] = {
  919. "gpio10", "gpio195",
  920. };
  921. static const char * const mdp0_vsync5_groups[] = {
  922. "gpio11",
  923. };
  924. static const char * const qdss_gpio1_groups[] = {
  925. "gpio11", "gpio196",
  926. };
  927. static const char * const mdp0_vsync6_groups[] = {
  928. "gpio12",
  929. };
  930. static const char * const qdss_gpio2_groups[] = {
  931. "gpio12", "gpio197",
  932. };
  933. static const char * const mdp0_vsync7_groups[] = {
  934. "gpio13",
  935. };
  936. static const char * const qdss_gpio3_groups[] = {
  937. "gpio13", "gpio198",
  938. };
  939. static const char * const cci_timer2_groups[] = {
  940. "gpio14",
  941. };
  942. static const char * const qdss_gpio4_groups[] = {
  943. "gpio14", "gpio201",
  944. };
  945. static const char * const cci_timer3_groups[] = {
  946. "gpio15",
  947. };
  948. static const char * const cci_async_groups[] = {
  949. "gpio15", "gpio119", "gpio120", "gpio160", "gpio161", "gpio167",
  950. };
  951. static const char * const qdss_gpio5_groups[] = {
  952. "gpio15", "gpio202",
  953. };
  954. static const char * const mdp0_vsync8_groups[] = {
  955. "gpio16",
  956. };
  957. static const char * const qdss_gpio6_groups[] = {
  958. "gpio16", "gpio206",
  959. };
  960. static const char * const mdp1_vsync0_groups[] = {
  961. "gpio17",
  962. };
  963. static const char * const qdss_gpio7_groups[] = {
  964. "gpio17", "gpio207",
  965. };
  966. static const char * const qup11_groups[] = {
  967. "gpio18", "gpio19", "gpio20", "gpio21",
  968. };
  969. static const char * const mdp1_vsync1_groups[] = {
  970. "gpio18",
  971. };
  972. static const char * const mdp1_vsync2_groups[] = {
  973. "gpio19",
  974. };
  975. static const char * const dp2_hot_groups[] = {
  976. "gpio20",
  977. };
  978. static const char * const mdp1_vsync3_groups[] = {
  979. "gpio20",
  980. };
  981. static const char * const usb0_dp_groups[] = {
  982. "gpio21",
  983. };
  984. static const char * const qup10_groups[] = {
  985. "gpio22", "gpio23", "gpio24", "gpio25",
  986. };
  987. static const char * const usb2phy_ac_groups[] = {
  988. "gpio24", "gpio25", "gpio133", "gpio134", "gpio148", "gpio149",
  989. };
  990. static const char * const qup13_groups[] = {
  991. "gpio26", "gpio27", "gpio28", "gpio29",
  992. };
  993. static const char * const edp0_lcd_groups[] = {
  994. "gpio26",
  995. };
  996. static const char * const edp1_lcd_groups[] = {
  997. "gpio27",
  998. };
  999. static const char * const edp2_lcd_groups[] = {
  1000. "gpio28",
  1001. };
  1002. static const char * const edp3_lcd_groups[] = {
  1003. "gpio29",
  1004. };
  1005. static const char * const usb1_usb4_groups[] = {
  1006. "gpio32",
  1007. };
  1008. static const char * const qup15_groups[] = {
  1009. "gpio36", "gpio37", "gpio38", "gpio39",
  1010. };
  1011. static const char * const mdp1_vsync4_groups[] = {
  1012. "gpio36",
  1013. };
  1014. static const char * const mdp1_vsync5_groups[] = {
  1015. "gpio37",
  1016. };
  1017. static const char * const mdp1_vsync6_groups[] = {
  1018. "gpio38",
  1019. };
  1020. static const char * const mdp1_vsync7_groups[] = {
  1021. "gpio39",
  1022. };
  1023. static const char * const mdp1_vsync8_groups[] = {
  1024. "gpio40",
  1025. };
  1026. static const char * const qup9_groups[] = {
  1027. "gpio41", "gpio42", "gpio43", "gpio44",
  1028. };
  1029. static const char * const ddr_bist_groups[] = {
  1030. "gpio42", "gpio45", "gpio46", "gpio47",
  1031. };
  1032. static const char * const qup8_groups[] = {
  1033. "gpio43", "gpio44", "gpio45", "gpio46",
  1034. };
  1035. static const char * const dp3_hot_groups[] = {
  1036. "gpio45",
  1037. };
  1038. static const char * const usb1_phy_groups[] = {
  1039. "gpio49",
  1040. };
  1041. static const char * const usb1_sbtx_groups[] = {
  1042. "gpio51", "gpio52",
  1043. };
  1044. static const char * const usb1_sbrx_groups[] = {
  1045. "gpio53",
  1046. };
  1047. static const char * const emac1_phy_groups[] = {
  1048. "gpio54",
  1049. };
  1050. static const char * const emac1_ptp_groups[] = {
  1051. "gpio55", "gpio55", "gpio56", "gpio56", "gpio93", "gpio93", "gpio94",
  1052. "gpio94", "gpio95", "gpio95", "gpio96", "gpio96",
  1053. };
  1054. static const char * const qup19_groups[] = {
  1055. "gpio55", "gpio56", "gpio57", "gpio58",
  1056. };
  1057. static const char * const emac1_mcg0_groups[] = {
  1058. "gpio57",
  1059. };
  1060. static const char * const emac1_mcg1_groups[] = {
  1061. "gpio58",
  1062. };
  1063. static const char * const qup23_groups[] = {
  1064. "gpio59", "gpio60", "gpio61", "gpio62",
  1065. };
  1066. static const char * const qup17_groups[] = {
  1067. "gpio61", "gpio62", "gpio63", "gpio64",
  1068. };
  1069. static const char * const tsense_pwm4_groups[] = {
  1070. "gpio65",
  1071. };
  1072. static const char * const qup18_groups[] = {
  1073. "gpio66", "gpio67", "gpio68", "gpio69",
  1074. };
  1075. static const char * const tsense_pwm3_groups[] = {
  1076. "gpio67",
  1077. };
  1078. static const char * const emac1_mcg2_groups[] = {
  1079. "gpio68",
  1080. };
  1081. static const char * const emac1_mcg3_groups[] = {
  1082. "gpio69",
  1083. };
  1084. static const char * const tsense_pwm2_groups[] = {
  1085. "gpio69",
  1086. };
  1087. static const char * const qup16_groups[] = {
  1088. "gpio70", "gpio71", "gpio72", "gpio73",
  1089. };
  1090. static const char * const tsense_pwm1_groups[] = {
  1091. "gpio70",
  1092. };
  1093. static const char * const atest_usb3_groups[] = {
  1094. "gpio71",
  1095. };
  1096. static const char * const pcie3b_clkreq_groups[] = {
  1097. "gpio152",
  1098. };
  1099. static const char * const tb_trig_groups[] = {
  1100. "gpio153", "gpio157",
  1101. };
  1102. static const char * const qup6_groups[] = {
  1103. "gpio154", "gpio155", "gpio156", "gpio157",
  1104. };
  1105. static const char * const qup1_groups[] = {
  1106. "gpio158", "gpio159", "gpio160", "gpio161",
  1107. };
  1108. static const char * const cci_timer9_groups[] = {
  1109. "gpio160",
  1110. };
  1111. static const char * const emac0_mcg0_groups[] = {
  1112. "gpio160",
  1113. };
  1114. static const char * const gcc_gp4_groups[] = {
  1115. "gpio160", "gpio162",
  1116. };
  1117. static const char * const cci_timer4_groups[] = {
  1118. "gpio161",
  1119. };
  1120. static const char * const emac0_mcg1_groups[] = {
  1121. "gpio161",
  1122. };
  1123. static const char * const qdss_gpio14_groups[] = {
  1124. "gpio161", "gpio222",
  1125. };
  1126. static const char * const cci_timer6_groups[] = {
  1127. "gpio162",
  1128. };
  1129. static const char * const emac0_mcg2_groups[] = {
  1130. "gpio162",
  1131. };
  1132. static const char * const qdss_gpio15_groups[] = {
  1133. "gpio162", "gpio223",
  1134. };
  1135. static const char * const cci_timer7_groups[] = {
  1136. "gpio163",
  1137. };
  1138. static const char * const emac0_mcg3_groups[] = {
  1139. "gpio163",
  1140. };
  1141. static const char * const usb0_phy_groups[] = {
  1142. "gpio166",
  1143. };
  1144. static const char * const cci_timer8_groups[] = {
  1145. "gpio167",
  1146. };
  1147. static const char * const gcc_gp5_groups[] = {
  1148. "gpio167", "gpio168",
  1149. };
  1150. static const char * const usb0_sbtx_groups[] = {
  1151. "gpio168", "gpio169",
  1152. };
  1153. static const char * const usb0_sbrx_groups[] = {
  1154. "gpio170",
  1155. };
  1156. static const char * const rgmii_0_groups[] = {
  1157. "gpio175", "gpio176", "gpio177", "gpio178", "gpio179", "gpio180",
  1158. "gpio181", "gpio182", "gpio183", "gpio184", "gpio185", "gpio186",
  1159. "gpio187", "gpio188",
  1160. };
  1161. static const char * const cri_trng0_groups[] = {
  1162. "gpio187",
  1163. };
  1164. static const char * const cri_trng1_groups[] = {
  1165. "gpio188",
  1166. };
  1167. static const char * const prng_rosc0_groups[] = {
  1168. "gpio189",
  1169. };
  1170. static const char * const cri_trng_groups[] = {
  1171. "gpio190",
  1172. };
  1173. static const char * const prng_rosc1_groups[] = {
  1174. "gpio191",
  1175. };
  1176. static const char * const prng_rosc2_groups[] = {
  1177. "gpio193",
  1178. };
  1179. static const char * const prng_rosc3_groups[] = {
  1180. "gpio194",
  1181. };
  1182. static const char * const phase_flag12_groups[] = {
  1183. "gpio195",
  1184. };
  1185. static const char * const phase_flag11_groups[] = {
  1186. "gpio196",
  1187. };
  1188. static const char * const phase_flag10_groups[] = {
  1189. "gpio197",
  1190. };
  1191. static const char * const phase_flag9_groups[] = {
  1192. "gpio198",
  1193. };
  1194. static const char * const phase_flag19_groups[] = {
  1195. "gpio202",
  1196. };
  1197. static const char * const hs1_mi2s_groups[] = {
  1198. "gpio208", "gpio209", "gpio210", "gpio211",
  1199. };
  1200. static const char * const mi2s2_sck_groups[] = {
  1201. "gpio212",
  1202. };
  1203. static const char * const mi2s2_ws_groups[] = {
  1204. "gpio213",
  1205. };
  1206. static const char * const mi2s2_data0_groups[] = {
  1207. "gpio214",
  1208. };
  1209. static const char * const ddr_pxi5_groups[] = {
  1210. "gpio214", "gpio215",
  1211. };
  1212. static const char * const mi2s2_data1_groups[] = {
  1213. "gpio215",
  1214. };
  1215. static const char * const emac1_dll0_groups[] = {
  1216. "gpio215",
  1217. };
  1218. static const char * const emac0_dll_groups[] = {
  1219. "gpio216", "gpio217",
  1220. };
  1221. static const char * const ddr_pxi4_groups[] = {
  1222. "gpio216", "gpio217",
  1223. };
  1224. static const char * const mi2s_mclk2_groups[] = {
  1225. "gpio217",
  1226. };
  1227. static const char * const emac1_dll1_groups[] = {
  1228. "gpio218",
  1229. };
  1230. static const char * const phase_flag8_groups[] = {
  1231. "gpio219",
  1232. };
  1233. static const char * const lpass_slimbus_groups[] = {
  1234. "gpio220", "gpio221",
  1235. };
  1236. static const char * const mi2s1_sck_groups[] = {
  1237. "gpio220",
  1238. };
  1239. static const char * const phase_flag7_groups[] = {
  1240. "gpio220",
  1241. };
  1242. static const char * const mi2s1_ws_groups[] = {
  1243. "gpio221",
  1244. };
  1245. static const char * const phase_flag6_groups[] = {
  1246. "gpio221",
  1247. };
  1248. static const char * const mi2s1_data0_groups[] = {
  1249. "gpio222",
  1250. };
  1251. static const char * const phase_flag5_groups[] = {
  1252. "gpio222",
  1253. };
  1254. static const char * const mi2s1_data1_groups[] = {
  1255. "gpio223",
  1256. };
  1257. static const char * const phase_flag4_groups[] = {
  1258. "gpio223",
  1259. };
  1260. static const char * const hs3_mi2s_groups[] = {
  1261. "gpio224", "gpio225", "gpio226", "gpio227",
  1262. };
  1263. static const char * const phase_flag3_groups[] = {
  1264. "gpio224",
  1265. };
  1266. static const char * const phase_flag2_groups[] = {
  1267. "gpio225",
  1268. };
  1269. static const char * const phase_flag1_groups[] = {
  1270. "gpio226",
  1271. };
  1272. static const char * const phase_flag0_groups[] = {
  1273. "gpio227",
  1274. };
  1275. static const char * const atest_usb33_groups[] = {
  1276. "gpio72",
  1277. };
  1278. static const char * const atest_usb32_groups[] = {
  1279. "gpio73",
  1280. };
  1281. static const char * const qspi0_clk_groups[] = {
  1282. "gpio74",
  1283. };
  1284. static const char * const sdc4_clk_groups[] = {
  1285. "gpio74",
  1286. };
  1287. static const char * const atest_usb23_groups[] = {
  1288. "gpio74",
  1289. };
  1290. static const char * const qspi0_cs_groups[] = {
  1291. "gpio75", "gpio81",
  1292. };
  1293. static const char * const sdc4_cmd_groups[] = {
  1294. "gpio75",
  1295. };
  1296. static const char * const atest_usb13_groups[] = {
  1297. "gpio75",
  1298. };
  1299. static const char * const qspi00_groups[] = {
  1300. "gpio76",
  1301. };
  1302. static const char * const sdc40_groups[] = {
  1303. "gpio76",
  1304. };
  1305. static const char * const atest_usb11_groups[] = {
  1306. "gpio76",
  1307. };
  1308. static const char * const qspi02_groups[] = {
  1309. "gpio78",
  1310. };
  1311. static const char * const sdc42_groups[] = {
  1312. "gpio78",
  1313. };
  1314. static const char * const atest_usb02_groups[] = {
  1315. "gpio78",
  1316. };
  1317. static const char * const qspi03_groups[] = {
  1318. "gpio79",
  1319. };
  1320. static const char * const sdc43_groups[] = {
  1321. "gpio79",
  1322. };
  1323. static const char * const atest_usb01_groups[] = {
  1324. "gpio79",
  1325. };
  1326. static const char * const ddr_pxi6_groups[] = {
  1327. "gpio79", "gpio218",
  1328. };
  1329. static const char * const mi2s_mclk1_groups[] = {
  1330. "gpio80", "gpio216",
  1331. };
  1332. static const char * const audio_ref_groups[] = {
  1333. "gpio80",
  1334. };
  1335. static const char * const phase_flag23_groups[] = {
  1336. "gpio80",
  1337. };
  1338. static const char * const qdss_gpio12_groups[] = {
  1339. "gpio80", "gpio121",
  1340. };
  1341. static const char * const qup20_groups[] = {
  1342. "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
  1343. "gpio92", "gpio110",
  1344. };
  1345. static const char * const phase_flag22_groups[] = {
  1346. "gpio81",
  1347. };
  1348. static const char * const vsense_trigger_groups[] = {
  1349. "gpio81",
  1350. };
  1351. static const char * const qup21_groups[] = {
  1352. "gpio81", "gpio82", "gpio83", "gpio84",
  1353. };
  1354. static const char * const phase_flag21_groups[] = {
  1355. "gpio82",
  1356. };
  1357. static const char * const qup22_groups[] = {
  1358. "gpio83", "gpio84", "gpio85", "gpio86",
  1359. };
  1360. static const char * const phase_flag20_groups[] = {
  1361. "gpio83",
  1362. };
  1363. static const char * const pll_bist_groups[] = {
  1364. "gpio84",
  1365. };
  1366. static const char * const pll_clk_groups[] = {
  1367. "gpio84", "gpio86",
  1368. };
  1369. static const char * const phase_flag18_groups[] = {
  1370. "gpio87",
  1371. };
  1372. static const char * const phase_flag17_groups[] = {
  1373. "gpio88",
  1374. };
  1375. static const char * const phase_flag16_groups[] = {
  1376. "gpio89",
  1377. };
  1378. static const char * const phase_flag15_groups[] = {
  1379. "gpio90",
  1380. };
  1381. static const char * const hs2_mi2s_groups[] = {
  1382. "gpio91", "gpio92", "gpio218", "gpio219",
  1383. };
  1384. static const char * const phase_flag14_groups[] = {
  1385. "gpio91",
  1386. };
  1387. static const char * const phase_flag13_groups[] = {
  1388. "gpio92",
  1389. };
  1390. static const char * const mi2s0_sck_groups[] = {
  1391. "gpio93",
  1392. };
  1393. static const char * const phase_flag31_groups[] = {
  1394. "gpio93",
  1395. };
  1396. static const char * const mi2s0_ws_groups[] = {
  1397. "gpio94",
  1398. };
  1399. static const char * const phase_flag30_groups[] = {
  1400. "gpio94",
  1401. };
  1402. static const char * const mi2s0_data0_groups[] = {
  1403. "gpio95",
  1404. };
  1405. static const char * const phase_flag29_groups[] = {
  1406. "gpio95",
  1407. };
  1408. static const char * const mi2s0_data1_groups[] = {
  1409. "gpio96",
  1410. };
  1411. static const char * const qdss_gpio13_groups[] = {
  1412. "gpio96", "gpio122",
  1413. };
  1414. static const char * const rgmii_1_groups[] = {
  1415. "gpio97", "gpio98", "gpio99", "gpio100", "gpio101", "gpio102",
  1416. "gpio103", "gpio104", "gpio105", "gpio106", "gpio107", "gpio108",
  1417. "gpio109", "gpio110",
  1418. };
  1419. static const char * const atest_usb31_groups[] = {
  1420. "gpio97",
  1421. };
  1422. static const char * const atest_usb30_groups[] = {
  1423. "gpio98",
  1424. };
  1425. static const char * const tgu_ch0_groups[] = {
  1426. "gpio101",
  1427. };
  1428. static const char * const atest_usb4_groups[] = {
  1429. "gpio101",
  1430. };
  1431. static const char * const tgu_ch1_groups[] = {
  1432. "gpio102",
  1433. };
  1434. static const char * const atest_usb43_groups[] = {
  1435. "gpio102",
  1436. };
  1437. static const char * const tgu_ch2_groups[] = {
  1438. "gpio103",
  1439. };
  1440. static const char * const atest_usb42_groups[] = {
  1441. "gpio103",
  1442. };
  1443. static const char * const tgu_ch3_groups[] = {
  1444. "gpio104",
  1445. };
  1446. static const char * const atest_usb41_groups[] = {
  1447. "gpio104",
  1448. };
  1449. static const char * const tgu_ch4_groups[] = {
  1450. "gpio105",
  1451. };
  1452. static const char * const atest_usb40_groups[] = {
  1453. "gpio105",
  1454. };
  1455. static const char * const tgu_ch5_groups[] = {
  1456. "gpio106",
  1457. };
  1458. static const char * const tgu_ch6_groups[] = {
  1459. "gpio107",
  1460. };
  1461. static const char * const tgu_ch7_groups[] = {
  1462. "gpio108",
  1463. };
  1464. static const char * const atest_usb5_groups[] = {
  1465. "gpio110",
  1466. };
  1467. static const char * const qup4_groups[] = {
  1468. "gpio111", "gpio112", "gpio171", "gpio172", "gpio173", "gpio174",
  1469. "gpio175",
  1470. };
  1471. static const char * const qup5_groups[] = {
  1472. "gpio111", "gpio112", "gpio145", "gpio146",
  1473. };
  1474. static const char * const atest_usb53_groups[] = {
  1475. "gpio111",
  1476. };
  1477. static const char * const atest_usb52_groups[] = {
  1478. "gpio112",
  1479. };
  1480. static const char * const atest_usb51_groups[] = {
  1481. "gpio113",
  1482. };
  1483. static const char * const gcc_gp2_groups[] = {
  1484. "gpio114", "gpio120",
  1485. };
  1486. static const char * const atest_usb50_groups[] = {
  1487. "gpio114",
  1488. };
  1489. static const char * const gcc_gp3_groups[] = {
  1490. "gpio115", "gpio139",
  1491. };
  1492. static const char * const qdss_gpio_groups[] = {
  1493. "gpio115", "gpio116", "gpio216", "gpio217",
  1494. };
  1495. static const char * const qdss_gpio8_groups[] = {
  1496. "gpio117", "gpio212",
  1497. };
  1498. static const char * const qdss_gpio9_groups[] = {
  1499. "gpio118", "gpio213",
  1500. };
  1501. static const char * const cci_timer0_groups[] = {
  1502. "gpio119",
  1503. };
  1504. static const char * const gcc_gp1_groups[] = {
  1505. "gpio119", "gpio149",
  1506. };
  1507. static const char * const qdss_gpio10_groups[] = {
  1508. "gpio119", "gpio214",
  1509. };
  1510. static const char * const cci_timer1_groups[] = {
  1511. "gpio120",
  1512. };
  1513. static const char * const qdss_gpio11_groups[] = {
  1514. "gpio120", "gpio215",
  1515. };
  1516. static const char * const ddr_pxi3_groups[] = {
  1517. "gpio120", "gpio137",
  1518. };
  1519. static const char * const qup2_groups[] = {
  1520. "gpio121", "gpio122", "gpio123", "gpio124",
  1521. };
  1522. static const char * const atest_usb20_groups[] = {
  1523. "gpio121",
  1524. };
  1525. static const char * const ddr_pxi0_groups[] = {
  1526. "gpio121", "gpio126",
  1527. };
  1528. static const char * const atest_usb00_groups[] = {
  1529. "gpio122",
  1530. };
  1531. static const char * const cmu_rng_groups[] = {
  1532. "gpio123", "gpio124", "gpio126", "gpio136",
  1533. };
  1534. static const char * const ddr_pxi2_groups[] = {
  1535. "gpio123", "gpio138",
  1536. };
  1537. static const char * const ddr_pxi1_groups[] = {
  1538. "gpio124", "gpio125",
  1539. };
  1540. static const char * const qup7_groups[] = {
  1541. "gpio125", "gpio126", "gpio128", "gpio129",
  1542. };
  1543. static const char * const dbg_out_groups[] = {
  1544. "gpio125",
  1545. };
  1546. static const char * const emac0_phy_groups[] = {
  1547. "gpio127",
  1548. };
  1549. static const char * const emac0_ptp_groups[] = {
  1550. "gpio130", "gpio130", "gpio131", "gpio131", "gpio156", "gpio156",
  1551. "gpio157", "gpio157", "gpio158", "gpio158", "gpio159", "gpio159",
  1552. };
  1553. static const char * const sd_write_groups[] = {
  1554. "gpio130",
  1555. };
  1556. static const char * const atest_usb1_groups[] = {
  1557. "gpio130",
  1558. };
  1559. static const char * const atest_usb0_groups[] = {
  1560. "gpio131",
  1561. };
  1562. static const char * const usb0_usb4_groups[] = {
  1563. "gpio132",
  1564. };
  1565. static const char * const phase_flag28_groups[] = {
  1566. "gpio132",
  1567. };
  1568. static const char * const atest_char0_groups[] = {
  1569. "gpio134",
  1570. };
  1571. static const char * const qup0_groups[] = {
  1572. "gpio135", "gpio136", "gpio137", "gpio138",
  1573. };
  1574. static const char * const qup3_groups[] = {
  1575. "gpio135", "gpio136", "gpio137", "gpio138",
  1576. };
  1577. static const char * const atest_usb12_groups[] = {
  1578. "gpio135",
  1579. };
  1580. static const char * const ddr_pxi7_groups[] = {
  1581. "gpio135", "gpio136",
  1582. };
  1583. static const char * const atest_usb22_groups[] = {
  1584. "gpio137",
  1585. };
  1586. static const char * const atest_usb21_groups[] = {
  1587. "gpio138",
  1588. };
  1589. static const char * const cci_timer5_groups[] = {
  1590. "gpio139",
  1591. };
  1592. static const char * const atest_char2_groups[] = {
  1593. "gpio139",
  1594. };
  1595. static const char * const pcie4_clkreq_groups[] = {
  1596. "gpio140",
  1597. };
  1598. static const char * const jitter_bist_groups[] = {
  1599. "gpio140",
  1600. };
  1601. static const char * const atest_char1_groups[] = {
  1602. "gpio140",
  1603. };
  1604. static const char * const pcie2a_clkreq_groups[] = {
  1605. "gpio142",
  1606. };
  1607. static const char * const atest_char3_groups[] = {
  1608. "gpio142",
  1609. };
  1610. static const char * const atest_char_groups[] = {
  1611. "gpio143",
  1612. };
  1613. static const char * const pcie2b_clkreq_groups[] = {
  1614. "gpio144",
  1615. };
  1616. static const char * const phase_flag27_groups[] = {
  1617. "gpio144",
  1618. };
  1619. static const char * const phase_flag26_groups[] = {
  1620. "gpio145",
  1621. };
  1622. static const char * const phase_flag25_groups[] = {
  1623. "gpio146",
  1624. };
  1625. static const char * const phase_flag24_groups[] = {
  1626. "gpio147",
  1627. };
  1628. static const char * const atest_usb2_groups[] = {
  1629. "gpio148",
  1630. };
  1631. static const char * const atest_usb03_groups[] = {
  1632. "gpio149",
  1633. };
  1634. static const char * const pcie3a_clkreq_groups[] = {
  1635. "gpio150",
  1636. };
  1637. static const struct msm_function direwolf_functions[] = {
  1638. FUNCTION(gpio),
  1639. FUNCTION(qup12),
  1640. FUNCTION(mdp0_vsync0),
  1641. FUNCTION(edp_hot),
  1642. FUNCTION(mdp0_vsync1),
  1643. FUNCTION(qdss_cti),
  1644. FUNCTION(qup14),
  1645. FUNCTION(ibi_i3c),
  1646. FUNCTION(cam_mclk),
  1647. FUNCTION(mdp_vsync),
  1648. FUNCTION(mdp0_vsync2),
  1649. FUNCTION(usb1_dp),
  1650. FUNCTION(mdp0_vsync3),
  1651. FUNCTION(cci_i2c),
  1652. FUNCTION(mdp0_vsync4),
  1653. FUNCTION(qdss_gpio0),
  1654. FUNCTION(mdp0_vsync5),
  1655. FUNCTION(qdss_gpio1),
  1656. FUNCTION(mdp0_vsync6),
  1657. FUNCTION(qdss_gpio2),
  1658. FUNCTION(mdp0_vsync7),
  1659. FUNCTION(qdss_gpio3),
  1660. FUNCTION(cci_timer2),
  1661. FUNCTION(qdss_gpio4),
  1662. FUNCTION(cci_timer3),
  1663. FUNCTION(cci_async),
  1664. FUNCTION(qdss_gpio5),
  1665. FUNCTION(mdp0_vsync8),
  1666. FUNCTION(qdss_gpio6),
  1667. FUNCTION(mdp1_vsync0),
  1668. FUNCTION(qdss_gpio7),
  1669. FUNCTION(qup11),
  1670. FUNCTION(mdp1_vsync1),
  1671. FUNCTION(mdp1_vsync2),
  1672. FUNCTION(dp2_hot),
  1673. FUNCTION(mdp1_vsync3),
  1674. FUNCTION(usb0_dp),
  1675. FUNCTION(qup10),
  1676. FUNCTION(usb2phy_ac),
  1677. FUNCTION(qup13),
  1678. FUNCTION(edp0_lcd),
  1679. FUNCTION(edp1_lcd),
  1680. FUNCTION(edp2_lcd),
  1681. FUNCTION(edp3_lcd),
  1682. FUNCTION(usb1_usb4),
  1683. FUNCTION(qup15),
  1684. FUNCTION(mdp1_vsync4),
  1685. FUNCTION(mdp1_vsync5),
  1686. FUNCTION(mdp1_vsync6),
  1687. FUNCTION(mdp1_vsync7),
  1688. FUNCTION(mdp1_vsync8),
  1689. FUNCTION(qup9),
  1690. FUNCTION(ddr_bist),
  1691. FUNCTION(qup8),
  1692. FUNCTION(dp3_hot),
  1693. FUNCTION(usb1_phy),
  1694. FUNCTION(usb1_sbtx),
  1695. FUNCTION(usb1_sbrx),
  1696. FUNCTION(emac1_phy),
  1697. FUNCTION(emac1_ptp),
  1698. FUNCTION(qup19),
  1699. FUNCTION(emac1_mcg0),
  1700. FUNCTION(emac1_mcg1),
  1701. FUNCTION(qup23),
  1702. FUNCTION(qup17),
  1703. FUNCTION(tsense_pwm4),
  1704. FUNCTION(qup18),
  1705. FUNCTION(tsense_pwm3),
  1706. FUNCTION(emac1_mcg2),
  1707. FUNCTION(emac1_mcg3),
  1708. FUNCTION(tsense_pwm2),
  1709. FUNCTION(qup16),
  1710. FUNCTION(tsense_pwm1),
  1711. FUNCTION(atest_usb3),
  1712. FUNCTION(pcie3b_clkreq),
  1713. FUNCTION(tb_trig),
  1714. FUNCTION(qup6),
  1715. FUNCTION(qup1),
  1716. FUNCTION(cci_timer9),
  1717. FUNCTION(emac0_mcg0),
  1718. FUNCTION(gcc_gp4),
  1719. FUNCTION(cci_timer4),
  1720. FUNCTION(emac0_mcg1),
  1721. FUNCTION(qdss_gpio14),
  1722. FUNCTION(cci_timer6),
  1723. FUNCTION(emac0_mcg2),
  1724. FUNCTION(qdss_gpio15),
  1725. FUNCTION(cci_timer7),
  1726. FUNCTION(emac0_mcg3),
  1727. FUNCTION(usb0_phy),
  1728. FUNCTION(cci_timer8),
  1729. FUNCTION(gcc_gp5),
  1730. FUNCTION(usb0_sbtx),
  1731. FUNCTION(usb0_sbrx),
  1732. FUNCTION(rgmii_0),
  1733. FUNCTION(cri_trng0),
  1734. FUNCTION(cri_trng1),
  1735. FUNCTION(prng_rosc0),
  1736. FUNCTION(cri_trng),
  1737. FUNCTION(prng_rosc1),
  1738. FUNCTION(prng_rosc2),
  1739. FUNCTION(prng_rosc3),
  1740. FUNCTION(phase_flag12),
  1741. FUNCTION(phase_flag11),
  1742. FUNCTION(phase_flag10),
  1743. FUNCTION(phase_flag9),
  1744. FUNCTION(phase_flag19),
  1745. FUNCTION(hs1_mi2s),
  1746. FUNCTION(mi2s2_sck),
  1747. FUNCTION(mi2s2_ws),
  1748. FUNCTION(mi2s2_data0),
  1749. FUNCTION(ddr_pxi5),
  1750. FUNCTION(mi2s2_data1),
  1751. FUNCTION(emac1_dll0),
  1752. FUNCTION(emac0_dll),
  1753. FUNCTION(ddr_pxi4),
  1754. FUNCTION(mi2s_mclk2),
  1755. FUNCTION(emac1_dll1),
  1756. FUNCTION(phase_flag8),
  1757. FUNCTION(lpass_slimbus),
  1758. FUNCTION(mi2s1_sck),
  1759. FUNCTION(phase_flag7),
  1760. FUNCTION(mi2s1_ws),
  1761. FUNCTION(phase_flag6),
  1762. FUNCTION(mi2s1_data0),
  1763. FUNCTION(phase_flag5),
  1764. FUNCTION(mi2s1_data1),
  1765. FUNCTION(phase_flag4),
  1766. FUNCTION(hs3_mi2s),
  1767. FUNCTION(phase_flag3),
  1768. FUNCTION(phase_flag2),
  1769. FUNCTION(phase_flag1),
  1770. FUNCTION(phase_flag0),
  1771. FUNCTION(atest_usb33),
  1772. FUNCTION(atest_usb32),
  1773. FUNCTION(qspi0_clk),
  1774. FUNCTION(sdc4_clk),
  1775. FUNCTION(atest_usb23),
  1776. FUNCTION(qspi0_cs),
  1777. FUNCTION(sdc4_cmd),
  1778. FUNCTION(atest_usb13),
  1779. FUNCTION(qspi00),
  1780. FUNCTION(sdc40),
  1781. FUNCTION(atest_usb11),
  1782. FUNCTION(qspi02),
  1783. FUNCTION(sdc42),
  1784. FUNCTION(atest_usb02),
  1785. FUNCTION(qspi03),
  1786. FUNCTION(sdc43),
  1787. FUNCTION(atest_usb01),
  1788. FUNCTION(ddr_pxi6),
  1789. FUNCTION(mi2s_mclk1),
  1790. FUNCTION(audio_ref),
  1791. FUNCTION(phase_flag23),
  1792. FUNCTION(qdss_gpio12),
  1793. FUNCTION(qup20),
  1794. FUNCTION(phase_flag22),
  1795. FUNCTION(vsense_trigger),
  1796. FUNCTION(qup21),
  1797. FUNCTION(phase_flag21),
  1798. FUNCTION(qup22),
  1799. FUNCTION(phase_flag20),
  1800. FUNCTION(pll_bist),
  1801. FUNCTION(pll_clk),
  1802. FUNCTION(phase_flag18),
  1803. FUNCTION(phase_flag17),
  1804. FUNCTION(phase_flag16),
  1805. FUNCTION(phase_flag15),
  1806. FUNCTION(hs2_mi2s),
  1807. FUNCTION(phase_flag14),
  1808. FUNCTION(phase_flag13),
  1809. FUNCTION(mi2s0_sck),
  1810. FUNCTION(phase_flag31),
  1811. FUNCTION(mi2s0_ws),
  1812. FUNCTION(phase_flag30),
  1813. FUNCTION(mi2s0_data0),
  1814. FUNCTION(phase_flag29),
  1815. FUNCTION(mi2s0_data1),
  1816. FUNCTION(qdss_gpio13),
  1817. FUNCTION(rgmii_1),
  1818. FUNCTION(atest_usb31),
  1819. FUNCTION(atest_usb30),
  1820. FUNCTION(tgu_ch0),
  1821. FUNCTION(atest_usb4),
  1822. FUNCTION(tgu_ch1),
  1823. FUNCTION(atest_usb43),
  1824. FUNCTION(tgu_ch2),
  1825. FUNCTION(atest_usb42),
  1826. FUNCTION(tgu_ch3),
  1827. FUNCTION(atest_usb41),
  1828. FUNCTION(tgu_ch4),
  1829. FUNCTION(atest_usb40),
  1830. FUNCTION(tgu_ch5),
  1831. FUNCTION(tgu_ch6),
  1832. FUNCTION(tgu_ch7),
  1833. FUNCTION(atest_usb5),
  1834. FUNCTION(qup4),
  1835. FUNCTION(qup5),
  1836. FUNCTION(atest_usb53),
  1837. FUNCTION(atest_usb52),
  1838. FUNCTION(atest_usb51),
  1839. FUNCTION(gcc_gp2),
  1840. FUNCTION(atest_usb50),
  1841. FUNCTION(gcc_gp3),
  1842. FUNCTION(qdss_gpio),
  1843. FUNCTION(qdss_gpio8),
  1844. FUNCTION(qdss_gpio9),
  1845. FUNCTION(cci_timer0),
  1846. FUNCTION(gcc_gp1),
  1847. FUNCTION(qdss_gpio10),
  1848. FUNCTION(cci_timer1),
  1849. FUNCTION(qdss_gpio11),
  1850. FUNCTION(ddr_pxi3),
  1851. FUNCTION(qup2),
  1852. FUNCTION(atest_usb20),
  1853. FUNCTION(ddr_pxi0),
  1854. FUNCTION(atest_usb00),
  1855. FUNCTION(cmu_rng),
  1856. FUNCTION(ddr_pxi2),
  1857. FUNCTION(ddr_pxi1),
  1858. FUNCTION(qup7),
  1859. FUNCTION(dbg_out),
  1860. FUNCTION(emac0_phy),
  1861. FUNCTION(emac0_ptp),
  1862. FUNCTION(sd_write),
  1863. FUNCTION(atest_usb1),
  1864. FUNCTION(atest_usb0),
  1865. FUNCTION(usb0_usb4),
  1866. FUNCTION(phase_flag28),
  1867. FUNCTION(atest_char0),
  1868. FUNCTION(qup0),
  1869. FUNCTION(qup3),
  1870. FUNCTION(atest_usb12),
  1871. FUNCTION(ddr_pxi7),
  1872. FUNCTION(atest_usb22),
  1873. FUNCTION(atest_usb21),
  1874. FUNCTION(cci_timer5),
  1875. FUNCTION(atest_char2),
  1876. FUNCTION(pcie4_clkreq),
  1877. FUNCTION(jitter_bist),
  1878. FUNCTION(atest_char1),
  1879. FUNCTION(pcie2a_clkreq),
  1880. FUNCTION(atest_char3),
  1881. FUNCTION(atest_char),
  1882. FUNCTION(pcie2b_clkreq),
  1883. FUNCTION(phase_flag27),
  1884. FUNCTION(phase_flag26),
  1885. FUNCTION(phase_flag25),
  1886. FUNCTION(phase_flag24),
  1887. FUNCTION(atest_usb2),
  1888. FUNCTION(atest_usb03),
  1889. FUNCTION(pcie3a_clkreq),
  1890. };
  1891. /* Every pin is maintained as a single group, and missing or non-existing pin
  1892. * would be maintained as dummy group to synchronize pin group index with
  1893. * pin descriptor registered with pinctrl core.
  1894. * Clients would not be able to request these dummy pin groups.
  1895. */
  1896. static const struct msm_pingroup direwolf_groups[] = {
  1897. [0] = PINGROUP(0, qup12, NA, NA, NA, NA, NA, NA, NA, NA),
  1898. [1] = PINGROUP(1, qup12, mdp0_vsync0, NA, NA, NA, NA, NA, NA,
  1899. NA),
  1900. [2] = PINGROUP(2, edp_hot, qup12, mdp0_vsync1, NA, NA, NA, NA,
  1901. NA, NA),
  1902. [3] = PINGROUP(3, edp_hot, qup12, qdss_cti, NA, NA, NA, NA, NA,
  1903. NA),
  1904. [4] = PINGROUP(4, qup14, ibi_i3c, qdss_cti, NA, NA, NA, NA, NA,
  1905. NA),
  1906. [5] = PINGROUP(5, qup14, ibi_i3c, NA, NA, NA, NA, NA, NA, NA),
  1907. [6] = PINGROUP(6, edp_hot, qup14, cam_mclk, NA, NA, NA, NA, NA,
  1908. NA),
  1909. [7] = PINGROUP(7, edp_hot, qup14, qdss_cti, cam_mclk, NA, NA,
  1910. NA, NA, NA),
  1911. [8] = PINGROUP(8, mdp_vsync, mdp0_vsync2, NA, NA, NA, NA, NA,
  1912. NA, NA),
  1913. [9] = PINGROUP(9, usb1_dp, mdp0_vsync3, NA, NA, NA, NA, NA, NA,
  1914. NA),
  1915. [10] = PINGROUP(10, cci_i2c, mdp0_vsync4, NA, qdss_gpio0, NA,
  1916. NA, NA, NA, NA),
  1917. [11] = PINGROUP(11, cci_i2c, mdp0_vsync5, NA, qdss_gpio1, NA,
  1918. NA, NA, NA, NA),
  1919. [12] = PINGROUP(12, cci_i2c, mdp0_vsync6, NA, qdss_gpio2, NA,
  1920. NA, NA, NA, NA),
  1921. [13] = PINGROUP(13, cci_i2c, mdp0_vsync7, NA, qdss_gpio3, NA,
  1922. NA, NA, NA, NA),
  1923. [14] = PINGROUP(14, cci_timer2, qdss_gpio4, NA, NA, NA, NA, NA,
  1924. NA, NA),
  1925. [15] = PINGROUP(15, cci_timer3, cci_async, NA, qdss_gpio5, NA,
  1926. NA, NA, NA, NA),
  1927. [16] = PINGROUP(16, cam_mclk, mdp0_vsync8, NA, qdss_gpio6, NA,
  1928. NA, NA, NA, NA),
  1929. [17] = PINGROUP(17, cam_mclk, mdp1_vsync0, NA, qdss_gpio7, NA,
  1930. NA, NA, NA, NA),
  1931. [18] = PINGROUP(18, qup11, mdp1_vsync1, NA, NA, NA, NA, NA, NA,
  1932. NA),
  1933. [19] = PINGROUP(19, qup11, mdp1_vsync2, NA, NA, NA, NA, NA, NA,
  1934. NA),
  1935. [20] = PINGROUP(20, qup11, dp2_hot, mdp1_vsync3, NA, NA, NA, NA,
  1936. NA, NA),
  1937. [21] = PINGROUP(21, qup11, usb0_dp, qdss_cti, NA, NA, NA, NA,
  1938. NA, NA),
  1939. [22] = PINGROUP(22, qup10, NA, NA, NA, NA, NA, NA, NA, NA),
  1940. [23] = PINGROUP(23, qup10, NA, NA, NA, NA, NA, NA, NA, NA),
  1941. [24] = PINGROUP(24, qup10, usb2phy_ac, NA, NA, NA, NA, NA, NA,
  1942. NA),
  1943. [25] = PINGROUP(25, qup10, usb2phy_ac, NA, NA, NA, NA, NA, NA,
  1944. NA),
  1945. [26] = PINGROUP(26, qup13, edp0_lcd, NA, NA, NA, NA, NA, NA, NA),
  1946. [27] = PINGROUP(27, qup13, edp1_lcd, NA, NA, NA, NA, NA, NA, NA),
  1947. [28] = PINGROUP(28, qup13, edp2_lcd, NA, NA, NA, NA, NA, NA, NA),
  1948. [29] = PINGROUP(29, qup13, edp3_lcd, NA, NA, NA, NA, NA, NA, NA),
  1949. [30] = PINGROUP(30, qdss_cti, qdss_cti, NA, NA, NA, NA, NA, NA,
  1950. NA),
  1951. [31] = PINGROUP(31, qdss_cti, qdss_cti, NA, NA, NA, NA, NA, NA,
  1952. NA),
  1953. [32] = PINGROUP(32, usb1_usb4, NA, NA, NA, NA, NA, NA, NA, NA),
  1954. [33] = PINGROUP(33, cam_mclk, NA, NA, NA, NA, NA, NA, NA, NA),
  1955. [34] = PINGROUP(34, cam_mclk, NA, NA, NA, NA, NA, NA, NA, NA),
  1956. [35] = PINGROUP(35, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  1957. [36] = PINGROUP(36, qup15, ibi_i3c, mdp1_vsync4, NA, NA, NA, NA,
  1958. NA, NA),
  1959. [37] = PINGROUP(37, qup15, ibi_i3c, mdp1_vsync5, NA, NA, NA, NA,
  1960. NA, NA),
  1961. [38] = PINGROUP(38, qup15, mdp1_vsync6, NA, NA, NA, NA, NA, NA,
  1962. NA),
  1963. [39] = PINGROUP(39, qup15, mdp1_vsync7, NA, NA, NA, NA, NA, NA,
  1964. NA),
  1965. [40] = PINGROUP(40, mdp1_vsync8, NA, NA, NA, NA, NA, NA, NA, NA),
  1966. [41] = PINGROUP(41, qup9, NA, NA, NA, NA, NA, NA, NA, NA),
  1967. [42] = PINGROUP(42, qup9, ddr_bist, NA, NA, NA, NA, NA, NA, NA),
  1968. [43] = PINGROUP(43, qup8, qup9, NA, NA, NA, NA, NA, NA, NA),
  1969. [44] = PINGROUP(44, qup8, qup9, NA, NA, NA, NA, NA, NA, NA),
  1970. [45] = PINGROUP(45, qup8, dp3_hot, ddr_bist, NA, NA, NA, NA, NA,
  1971. NA),
  1972. [46] = PINGROUP(46, qup8, ddr_bist, NA, NA, NA, NA, NA, NA, NA),
  1973. [47] = PINGROUP(47, ddr_bist, NA, NA, NA, NA, NA, NA, NA, NA),
  1974. [48] = PINGROUP(48, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  1975. [49] = PINGROUP(49, usb1_phy, NA, NA, NA, NA, NA, NA, NA, NA),
  1976. [50] = PINGROUP(50, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  1977. [51] = PINGROUP(51, usb1_sbtx, NA, NA, NA, NA, NA, NA, NA, NA),
  1978. [52] = PINGROUP(52, usb1_sbtx, NA, NA, NA, NA, NA, NA, NA, NA),
  1979. [53] = PINGROUP(53, usb1_sbrx, NA, NA, NA, NA, NA, NA, NA, NA),
  1980. [54] = PINGROUP(54, emac1_phy, NA, NA, NA, NA, NA, NA, NA, NA),
  1981. [55] = PINGROUP(55, emac1_ptp, emac1_ptp, qup19, NA, NA, NA, NA,
  1982. NA, NA),
  1983. [56] = PINGROUP(56, emac1_ptp, emac1_ptp, qup19, NA, NA, NA, NA,
  1984. NA, NA),
  1985. [57] = PINGROUP(57, qup19, emac1_mcg0, NA, NA, NA, NA, NA, NA,
  1986. NA),
  1987. [58] = PINGROUP(58, qup19, emac1_mcg1, NA, NA, NA, NA, NA, NA,
  1988. NA),
  1989. [59] = PINGROUP(59, qup23, NA, NA, NA, NA, NA, NA, NA, NA),
  1990. [60] = PINGROUP(60, qup23, NA, NA, NA, NA, NA, NA, NA, NA),
  1991. [61] = PINGROUP(61, qup23, qup17, NA, NA, NA, NA, NA, NA, NA),
  1992. [62] = PINGROUP(62, qup23, qup17, NA, NA, NA, NA, NA, NA, NA),
  1993. [63] = PINGROUP(63, qup17, NA, NA, NA, NA, NA, NA, NA, NA),
  1994. [64] = PINGROUP(64, qup17, NA, NA, NA, NA, NA, NA, NA, NA),
  1995. [65] = PINGROUP(65, tsense_pwm4, NA, NA, NA, NA, NA, NA, NA, NA),
  1996. [66] = PINGROUP(66, qup18, NA, NA, NA, NA, NA, NA, NA, NA),
  1997. [67] = PINGROUP(67, qup18, tsense_pwm3, NA, NA, NA, NA, NA, NA,
  1998. NA),
  1999. [68] = PINGROUP(68, qup18, emac1_mcg2, NA, NA, NA, NA, NA, NA,
  2000. NA),
  2001. [69] = PINGROUP(69, qup18, emac1_mcg3, tsense_pwm2, NA, NA, NA,
  2002. NA, NA, NA),
  2003. [70] = PINGROUP(70, qup16, tsense_pwm1, NA, NA, NA, NA, NA, NA,
  2004. NA),
  2005. [71] = PINGROUP(71, qup16, atest_usb3, NA, NA, NA, NA, NA, NA,
  2006. NA),
  2007. [72] = PINGROUP(72, qup16, atest_usb33, NA, NA, NA, NA, NA, NA,
  2008. NA),
  2009. [73] = PINGROUP(73, qup16, atest_usb32, NA, NA, NA, NA, NA, NA,
  2010. NA),
  2011. [74] = PINGROUP(74, qspi0_clk, sdc4_clk, atest_usb23, NA, NA,
  2012. NA, NA, NA, NA),
  2013. [75] = PINGROUP(75, qspi0_cs, sdc4_cmd, atest_usb13, NA, NA, NA,
  2014. NA, NA, NA),
  2015. [76] = PINGROUP(76, qspi00, sdc40, atest_usb11, NA, NA, NA, NA,
  2016. NA, NA),
  2017. [77] = PINGROUP(77, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2018. [78] = PINGROUP(78, qspi02, sdc42, atest_usb02, NA, NA, NA, NA,
  2019. NA, NA),
  2020. [79] = PINGROUP(79, qspi03, sdc43, atest_usb01, ddr_pxi6, NA,
  2021. NA, NA, NA, NA),
  2022. [80] = PINGROUP(80, mi2s_mclk1, audio_ref, phase_flag23, NA,
  2023. qdss_gpio12, NA, NA, NA, NA),
  2024. [81] = PINGROUP(81, qup21, qspi0_cs, phase_flag22, NA,
  2025. vsense_trigger, NA, NA, NA, NA),
  2026. [82] = PINGROUP(82, qup21, phase_flag21, NA, NA, NA, NA, NA,
  2027. NA, NA),
  2028. [83] = PINGROUP(83, qup21, qup22, phase_flag20, NA, NA, NA,
  2029. NA, NA, NA),
  2030. [84] = PINGROUP(84, qup21, qup22, pll_bist, pll_clk, NA, NA,
  2031. NA, NA, NA),
  2032. [85] = PINGROUP(85, qup22, NA, NA, NA, NA, NA, NA, NA, NA),
  2033. [86] = PINGROUP(86, qup22, NA, pll_clk, NA, NA, NA, NA, NA, NA),
  2034. [87] = PINGROUP(87, qup20, phase_flag18, NA, NA, NA, NA, NA,
  2035. NA, NA),
  2036. [88] = PINGROUP(88, qup20, phase_flag17, NA, NA, NA, NA, NA,
  2037. NA, NA),
  2038. [89] = PINGROUP(89, qup20, phase_flag16, NA, NA, NA, NA, NA,
  2039. NA, NA),
  2040. [90] = PINGROUP(90, qup20, phase_flag15, NA, NA, NA, NA, NA,
  2041. NA, NA),
  2042. [91] = PINGROUP(91, qup20, hs2_mi2s, phase_flag14, NA, NA, NA,
  2043. NA, NA, NA),
  2044. [92] = PINGROUP(92, qup20, hs2_mi2s, phase_flag13, NA, NA, NA,
  2045. NA, NA, NA),
  2046. [93] = PINGROUP(93, mi2s0_sck, emac1_ptp, emac1_ptp,
  2047. phase_flag31, NA, NA, NA, NA, NA),
  2048. [94] = PINGROUP(94, mi2s0_ws, emac1_ptp, emac1_ptp,
  2049. phase_flag30, NA, NA, NA, NA, NA),
  2050. [95] = PINGROUP(95, mi2s0_data0, emac1_ptp, emac1_ptp,
  2051. phase_flag29, NA, NA, NA, NA, NA),
  2052. [96] = PINGROUP(96, mi2s0_data1, emac1_ptp, emac1_ptp,
  2053. qdss_gpio13, NA, NA, NA, NA, NA),
  2054. [97] = PINGROUP(97, rgmii_1, atest_usb31, NA, NA, NA, NA, NA,
  2055. NA, NA),
  2056. [98] = PINGROUP(98, rgmii_1, atest_usb30, NA, NA, NA, NA, NA,
  2057. NA, NA),
  2058. [99] = PINGROUP(99, rgmii_1, NA, NA, NA, NA, NA, NA, NA, NA),
  2059. [100] = PINGROUP(100, mdp_vsync, rgmii_1, NA, NA, NA, NA, NA,
  2060. NA, NA),
  2061. [101] = PINGROUP(101, mdp_vsync, rgmii_1, tgu_ch0, atest_usb4,
  2062. NA, NA, NA, NA, NA),
  2063. [102] = PINGROUP(102, rgmii_1, tgu_ch1, atest_usb43, NA, NA, NA,
  2064. NA, NA, NA),
  2065. [103] = PINGROUP(103, rgmii_1, tgu_ch2, atest_usb42, NA, NA, NA,
  2066. NA, NA, NA),
  2067. [104] = PINGROUP(104, rgmii_1, tgu_ch3, atest_usb41, NA, NA, NA,
  2068. NA, NA, NA),
  2069. [105] = PINGROUP(105, rgmii_1, tgu_ch4, atest_usb40, NA, NA, NA,
  2070. NA, NA, NA),
  2071. [106] = PINGROUP(106, rgmii_1, tgu_ch5, NA, NA, NA, NA, NA, NA,
  2072. NA),
  2073. [107] = PINGROUP(107, rgmii_1, tgu_ch6, NA, NA, NA, NA, NA, NA,
  2074. NA),
  2075. [108] = PINGROUP(108, rgmii_1, tgu_ch7, NA, NA, NA, NA, NA, NA,
  2076. NA),
  2077. [109] = PINGROUP(109, rgmii_1, NA, NA, NA, NA, NA, NA, NA, NA),
  2078. [110] = PINGROUP(110, qup20, rgmii_1, atest_usb5, NA, NA, NA,
  2079. NA, NA, NA),
  2080. [111] = PINGROUP(111, qup4, qup5, atest_usb53, NA, NA, NA, NA,
  2081. NA, NA),
  2082. [112] = PINGROUP(112, qup4, qup5, atest_usb52, NA, NA, NA, NA,
  2083. NA, NA),
  2084. [113] = PINGROUP(113, cci_i2c, atest_usb51, NA, NA, NA, NA, NA,
  2085. NA, NA),
  2086. [114] = PINGROUP(114, cci_i2c, gcc_gp2, atest_usb50, NA, NA, NA,
  2087. NA, NA, NA),
  2088. [115] = PINGROUP(115, cci_i2c, gcc_gp3, qdss_gpio, NA, NA, NA,
  2089. NA, NA, NA),
  2090. [116] = PINGROUP(116, cci_i2c, qdss_gpio, NA, NA, NA, NA, NA,
  2091. NA, NA),
  2092. [117] = PINGROUP(117, cci_i2c, NA, qdss_gpio8, NA, NA, NA, NA,
  2093. NA, NA),
  2094. [118] = PINGROUP(118, cci_i2c, NA, qdss_gpio9, NA, NA, NA, NA,
  2095. NA, NA),
  2096. [119] = PINGROUP(119, cam_mclk, cci_timer0, cci_async, gcc_gp1,
  2097. qdss_gpio10, NA, NA, NA, NA),
  2098. [120] = PINGROUP(120, cam_mclk, cci_timer1, cci_async, gcc_gp2,
  2099. qdss_gpio11, ddr_pxi3, NA, NA, NA),
  2100. [121] = PINGROUP(121, qup2, qdss_gpio12, NA, atest_usb20,
  2101. ddr_pxi0, NA, NA, NA, NA),
  2102. [122] = PINGROUP(122, qup2, qdss_gpio13, atest_usb00, NA, NA,
  2103. NA, NA, NA, NA),
  2104. [123] = PINGROUP(123, qup2, cci_i2c, cmu_rng, ddr_pxi2, NA, NA,
  2105. NA, NA, NA),
  2106. [124] = PINGROUP(124, qup2, cci_i2c, cmu_rng, ddr_pxi1, NA, NA,
  2107. NA, NA, NA),
  2108. [125] = PINGROUP(125, qup7, dbg_out, ddr_pxi1, NA, NA, NA, NA,
  2109. NA, NA),
  2110. [126] = PINGROUP(126, qup7, cmu_rng, ddr_pxi0, NA, NA, NA, NA,
  2111. NA, NA),
  2112. [127] = PINGROUP(127, emac0_phy, NA, NA, NA, NA, NA, NA, NA, NA),
  2113. [128] = PINGROUP(128, qup7, ibi_i3c, NA, NA, NA, NA, NA, NA, NA),
  2114. [129] = PINGROUP(129, qup7, ibi_i3c, NA, NA, NA, NA, NA, NA, NA),
  2115. [130] = PINGROUP(130, emac0_ptp, emac0_ptp, sd_write,
  2116. atest_usb1, NA, NA, NA, NA, NA),
  2117. [131] = PINGROUP(131, emac0_ptp, emac0_ptp, atest_usb0, NA, NA,
  2118. NA, NA, NA, NA),
  2119. [132] = PINGROUP(132, usb0_usb4, phase_flag28, NA, NA, NA, NA,
  2120. NA, NA, NA),
  2121. [133] = PINGROUP(133, usb2phy_ac, NA, NA, NA, NA, NA, NA, NA,
  2122. NA),
  2123. [134] = PINGROUP(134, usb2phy_ac, atest_char0, NA, NA, NA, NA,
  2124. NA, NA, NA),
  2125. [135] = PINGROUP(135, qup0, qup3, NA, atest_usb12, ddr_pxi7, NA,
  2126. NA, NA, NA),
  2127. [136] = PINGROUP(136, qup0, qup3, cmu_rng, ddr_pxi7, NA, NA, NA,
  2128. NA, NA),
  2129. [137] = PINGROUP(137, qup3, qup0, NA, atest_usb22, ddr_pxi3, NA,
  2130. NA, NA, NA),
  2131. [138] = PINGROUP(138, qup3, qup0, NA, atest_usb21, ddr_pxi2, NA,
  2132. NA, NA, NA),
  2133. [139] = PINGROUP(139, cci_timer5, gcc_gp3, atest_char2, NA, NA,
  2134. NA, NA, NA, NA),
  2135. [140] = PINGROUP(140, pcie4_clkreq, jitter_bist, atest_char1,
  2136. NA, NA, NA, NA, NA, NA),
  2137. [141] = PINGROUP(141, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2138. [142] = PINGROUP(142, pcie2a_clkreq, atest_char3, NA, NA, NA,
  2139. NA, NA, NA, NA),
  2140. [143] = PINGROUP(143, NA, atest_char, NA, NA, NA, NA, NA, NA,
  2141. NA),
  2142. [144] = PINGROUP(144, pcie2b_clkreq, phase_flag27, NA, NA, NA,
  2143. NA, NA, NA, NA),
  2144. [145] = PINGROUP(145, qup5, cci_i2c, phase_flag26, NA, NA, NA,
  2145. NA, NA, NA),
  2146. [146] = PINGROUP(146, qup5, cci_i2c, phase_flag25, NA, NA, NA,
  2147. NA, NA, NA),
  2148. [147] = PINGROUP(147, NA, phase_flag24, NA, NA, NA, NA, NA, NA,
  2149. NA),
  2150. [148] = PINGROUP(148, usb2phy_ac, NA, atest_usb2, NA, NA, NA,
  2151. NA, NA, NA),
  2152. [149] = PINGROUP(149, usb2phy_ac, gcc_gp1, atest_usb03, NA, NA,
  2153. NA, NA, NA, NA),
  2154. [150] = PINGROUP(150, pcie3a_clkreq, NA, NA, NA, NA, NA, NA, NA,
  2155. NA),
  2156. [151] = PINGROUP(151, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2157. [152] = PINGROUP(152, pcie3b_clkreq, NA, NA, NA, NA, NA, NA, NA,
  2158. NA),
  2159. [153] = PINGROUP(153, NA, tb_trig, NA, NA, NA, NA, NA, NA, NA),
  2160. [154] = PINGROUP(154, qup6, ibi_i3c, NA, NA, NA, NA, NA, NA, NA),
  2161. [155] = PINGROUP(155, qup6, ibi_i3c, NA, NA, NA, NA, NA, NA, NA),
  2162. [156] = PINGROUP(156, qup6, emac0_ptp, emac0_ptp, NA, NA, NA,
  2163. NA, NA, NA),
  2164. [157] = PINGROUP(157, qup6, emac0_ptp, emac0_ptp, tb_trig, NA,
  2165. NA, NA, NA, NA),
  2166. [158] = PINGROUP(158, qup1, emac0_ptp, emac0_ptp, NA, NA, NA,
  2167. NA, NA, NA),
  2168. [159] = PINGROUP(159, qup1, emac0_ptp, emac0_ptp, NA, NA, NA,
  2169. NA, NA, NA),
  2170. [160] = PINGROUP(160, cci_timer9, qup1, cci_async, emac0_mcg0,
  2171. gcc_gp4, NA, NA, NA, NA),
  2172. [161] = PINGROUP(161, cci_timer4, cci_async, qup1, emac0_mcg1,
  2173. qdss_gpio14, NA, NA, NA, NA),
  2174. [162] = PINGROUP(162, cci_timer6, emac0_mcg2, gcc_gp4,
  2175. qdss_gpio15, NA, NA, NA, NA, NA),
  2176. [163] = PINGROUP(163, cci_timer7, emac0_mcg3, NA, NA, NA, NA,
  2177. NA, NA, NA),
  2178. [164] = PINGROUP(164, cci_i2c, NA, NA, NA, NA, NA, NA, NA, NA),
  2179. [165] = PINGROUP(165, cci_i2c, NA, NA, NA, NA, NA, NA, NA, NA),
  2180. [166] = PINGROUP(166, usb0_phy, NA, NA, NA, NA, NA, NA, NA, NA),
  2181. [167] = PINGROUP(167, cci_timer8, cci_async, gcc_gp5, NA, NA,
  2182. NA, NA, NA, NA),
  2183. [168] = PINGROUP(168, usb0_sbtx, gcc_gp5, NA, NA, NA, NA, NA,
  2184. NA, NA),
  2185. [169] = PINGROUP(169, usb0_sbtx, NA, NA, NA, NA, NA, NA, NA, NA),
  2186. [170] = PINGROUP(170, usb0_sbrx, NA, NA, NA, NA, NA, NA, NA, NA),
  2187. [171] = PINGROUP(171, qup4, NA, NA, NA, NA, NA, NA, NA, NA),
  2188. [172] = PINGROUP(172, qup4, NA, NA, NA, NA, NA, NA, NA, NA),
  2189. [173] = PINGROUP(173, qup4, NA, NA, NA, NA, NA, NA, NA, NA),
  2190. [174] = PINGROUP(174, qup4, NA, NA, NA, NA, NA, NA, NA, NA),
  2191. [175] = PINGROUP(175, qup4, rgmii_0, NA, NA, NA, NA, NA, NA, NA),
  2192. [176] = PINGROUP(176, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2193. [177] = PINGROUP(177, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2194. [178] = PINGROUP(178, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2195. [179] = PINGROUP(179, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2196. [180] = PINGROUP(180, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2197. [181] = PINGROUP(181, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2198. [182] = PINGROUP(182, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2199. [183] = PINGROUP(183, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2200. [184] = PINGROUP(184, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2201. [185] = PINGROUP(185, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2202. [186] = PINGROUP(186, rgmii_0, NA, NA, NA, NA, NA, NA, NA, NA),
  2203. [187] = PINGROUP(187, rgmii_0, cri_trng0, NA, NA, NA, NA, NA,
  2204. NA, NA),
  2205. [188] = PINGROUP(188, rgmii_0, cri_trng1, NA, NA, NA, NA, NA,
  2206. NA, NA),
  2207. [189] = PINGROUP(189, prng_rosc0, NA, NA, NA, NA, NA, NA, NA,
  2208. NA),
  2209. [190] = PINGROUP(190, cri_trng, NA, NA, NA, NA, NA, NA, NA, NA),
  2210. [191] = PINGROUP(191, prng_rosc1, NA, NA, NA, NA, NA, NA, NA,
  2211. NA),
  2212. [192] = PINGROUP(192, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2213. [193] = PINGROUP(193, prng_rosc2, NA, NA, NA, NA, NA, NA, NA,
  2214. NA),
  2215. [194] = PINGROUP(194, prng_rosc3, NA, NA, NA, NA, NA, NA, NA,
  2216. NA),
  2217. [195] = PINGROUP(195, phase_flag12, NA, qdss_gpio0, NA, NA, NA,
  2218. NA, NA, NA),
  2219. [196] = PINGROUP(196, phase_flag11, NA, qdss_gpio1, NA, NA, NA,
  2220. NA, NA, NA),
  2221. [197] = PINGROUP(197, phase_flag10, NA, qdss_gpio2, NA, NA, NA,
  2222. NA, NA, NA),
  2223. [198] = PINGROUP(198, phase_flag9, NA, qdss_gpio3, NA, NA, NA,
  2224. NA, NA, NA),
  2225. [199] = PINGROUP(199, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2226. [200] = PINGROUP(200, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2227. [201] = PINGROUP(201, qdss_gpio4, NA, NA, NA, NA, NA, NA, NA,
  2228. NA),
  2229. [202] = PINGROUP(202, phase_flag19, NA, qdss_gpio5, NA, NA, NA,
  2230. NA, NA, NA),
  2231. [203] = PINGROUP(203, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2232. [204] = PINGROUP(204, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2233. [205] = PINGROUP(205, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  2234. [206] = PINGROUP(206, qdss_gpio6, NA, NA, NA, NA, NA, NA, NA,
  2235. NA),
  2236. [207] = PINGROUP(207, qdss_gpio7, NA, NA, NA, NA, NA, NA, NA,
  2237. NA),
  2238. [208] = PINGROUP(208, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  2239. [209] = PINGROUP(209, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  2240. [210] = PINGROUP(210, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  2241. [211] = PINGROUP(211, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  2242. [212] = PINGROUP(212, mi2s2_sck, qdss_gpio8, NA, NA, NA, NA, NA,
  2243. NA, NA),
  2244. [213] = PINGROUP(213, mi2s2_ws, qdss_gpio9, NA, NA, NA, NA, NA,
  2245. NA, NA),
  2246. [214] = PINGROUP(214, mi2s2_data0, qdss_gpio10, ddr_pxi5, NA,
  2247. NA, NA, NA, NA, NA),
  2248. [215] = PINGROUP(215, mi2s2_data1, qdss_gpio11, emac1_dll0,
  2249. ddr_pxi5, NA, NA, NA, NA, NA),
  2250. [216] = PINGROUP(216, mi2s_mclk1, qdss_gpio, emac0_dll,
  2251. ddr_pxi4, NA, NA, NA, NA, NA),
  2252. [217] = PINGROUP(217, mi2s_mclk2, qdss_gpio, emac0_dll,
  2253. ddr_pxi4, NA, NA, NA, NA, NA),
  2254. [218] = PINGROUP(218, hs2_mi2s, emac1_dll1, ddr_pxi6, NA, NA,
  2255. NA, NA, NA, NA),
  2256. [219] = PINGROUP(219, hs2_mi2s, phase_flag8, NA, NA, NA, NA, NA,
  2257. NA, NA),
  2258. [220] = PINGROUP(220, lpass_slimbus, mi2s1_sck, phase_flag7, NA,
  2259. NA, NA, NA, NA, NA),
  2260. [221] = PINGROUP(221, lpass_slimbus, mi2s1_ws, phase_flag6, NA,
  2261. NA, NA, NA, NA, NA),
  2262. [222] = PINGROUP(222, mi2s1_data0, phase_flag5, NA, qdss_gpio14,
  2263. NA, NA, NA, NA, NA),
  2264. [223] = PINGROUP(223, mi2s1_data1, phase_flag4, NA, qdss_gpio15,
  2265. NA, NA, NA, NA, NA),
  2266. [224] = PINGROUP(224, hs3_mi2s, phase_flag3, NA, NA, NA, NA, NA,
  2267. NA, NA),
  2268. [225] = PINGROUP(225, hs3_mi2s, phase_flag2, NA, NA, NA, NA, NA,
  2269. NA, NA),
  2270. [226] = PINGROUP(226, hs3_mi2s, phase_flag1, NA, NA, NA, NA, NA,
  2271. NA, NA),
  2272. [227] = PINGROUP(227, hs3_mi2s, phase_flag0, NA, NA, NA, NA, NA,
  2273. NA, NA),
  2274. [228] = UFS_RESET(ufs_reset, 0x1f1000),
  2275. [229] = UFS_RESET(ufs1_reset, 0x1f3000),
  2276. [230] = SDC_QDSD_PINGROUP(sdc2_clk, 0x1e8000, 14, 6),
  2277. [231] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x1e8000, 11, 3),
  2278. [232] = SDC_QDSD_PINGROUP(sdc2_data, 0x1e8000, 9, 0),
  2279. };
  2280. static struct msm_dir_conn direwolf_dir_conn[] = {
  2281. {-1, 0}, {-1, 0}, {-1, 0}, {-1, 0}, {-1, 0},
  2282. {-1, 0}, {-1, 0}, {-1, 0}, {-1, 0}
  2283. };
  2284. static const struct msm_pinctrl_soc_data direwolf_pinctrl = {
  2285. .pins = direwolf_pins,
  2286. .npins = ARRAY_SIZE(direwolf_pins),
  2287. .functions = direwolf_functions,
  2288. .nfunctions = ARRAY_SIZE(direwolf_functions),
  2289. .groups = direwolf_groups,
  2290. .ngroups = ARRAY_SIZE(direwolf_groups),
  2291. .ngpios = 230,
  2292. .dir_conn = direwolf_dir_conn,
  2293. };
  2294. static int direwolf_pinctrl_dirconn_list_probe(struct platform_device *pdev)
  2295. {
  2296. int ret, n, dirconn_list_count, m;
  2297. struct device_node *np = pdev->dev.of_node;
  2298. n = of_property_count_elems_of_size(np, "qcom,dirconn-list",
  2299. sizeof(u32));
  2300. if (n <= 0 || n % 2)
  2301. return -EINVAL;
  2302. m = ARRAY_SIZE(direwolf_dir_conn) - 1;
  2303. dirconn_list_count = n / 2;
  2304. for (n = 0; n < dirconn_list_count; n++) {
  2305. ret = of_property_read_u32_index(np, "qcom,dirconn-list",
  2306. n * 2 + 0,
  2307. &direwolf_dir_conn[m].gpio);
  2308. if (ret)
  2309. return ret;
  2310. ret = of_property_read_u32_index(np, "qcom,dirconn-list",
  2311. n * 2 + 1,
  2312. &direwolf_dir_conn[m].irq);
  2313. if (ret)
  2314. return ret;
  2315. m--;
  2316. }
  2317. return 0;
  2318. }
  2319. static int direwolf_pinctrl_probe(struct platform_device *pdev)
  2320. {
  2321. int len, ret;
  2322. if (of_find_property(pdev->dev.of_node, "qcom,dirconn-list", &len)) {
  2323. ret = direwolf_pinctrl_dirconn_list_probe(pdev);
  2324. if (ret) {
  2325. dev_err(&pdev->dev,
  2326. "Unable to parse Direct Connect List\n");
  2327. return ret;
  2328. }
  2329. }
  2330. return msm_pinctrl_probe(pdev, &direwolf_pinctrl);
  2331. }
  2332. static const struct of_device_id direwolf_pinctrl_of_match[] = {
  2333. { .compatible = "qcom,direwolf-pinctrl", },
  2334. { },
  2335. };
  2336. static struct platform_driver direwolf_pinctrl_driver = {
  2337. .driver = {
  2338. .name = "direwolf-pinctrl",
  2339. .of_match_table = direwolf_pinctrl_of_match,
  2340. },
  2341. .probe = direwolf_pinctrl_probe,
  2342. .remove = msm_pinctrl_remove,
  2343. };
  2344. static int __init direwolf_pinctrl_init(void)
  2345. {
  2346. return platform_driver_register(&direwolf_pinctrl_driver);
  2347. }
  2348. arch_initcall(direwolf_pinctrl_init);
  2349. static void __exit direwolf_pinctrl_exit(void)
  2350. {
  2351. platform_driver_unregister(&direwolf_pinctrl_driver);
  2352. }
  2353. module_exit(direwolf_pinctrl_exit);
  2354. MODULE_DESCRIPTION("QTI Direwolf pinctrl driver");
  2355. MODULE_LICENSE("GPL");
  2356. MODULE_DEVICE_TABLE(of, direwolf_pinctrl_of_match);