pinctrl-monaco_auto.c 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/of.h>
  7. #include <linux/of_device.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/pinctrl/pinctrl.h>
  10. #include "pinctrl-msm.h"
  11. #define FUNCTION(fname) \
  12. [msm_mux_##fname] = { \
  13. .name = #fname, \
  14. .groups = fname##_groups, \
  15. .ngroups = ARRAY_SIZE(fname##_groups), \
  16. }
  17. #define REG_BASE 0x100000
  18. #define REG_SIZE 0x1000
  19. #define REG_DIRCONN 0xA9000
  20. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10, wake_off, bit) \
  21. { \
  22. .name = "gpio" #id, \
  23. .pins = gpio##id##_pins, \
  24. .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \
  25. .ctl_reg = REG_BASE + REG_SIZE * id, \
  26. .io_reg = REG_BASE + 0x4 + REG_SIZE * id, \
  27. .intr_cfg_reg = REG_BASE + 0x8 + REG_SIZE * id, \
  28. .intr_status_reg = REG_BASE + 0xc + REG_SIZE * id, \
  29. .intr_target_reg = REG_BASE + 0x8 + REG_SIZE * id, \
  30. .dir_conn_reg = REG_BASE + REG_DIRCONN, \
  31. .mux_bit = 2, \
  32. .pull_bit = 0, \
  33. .drv_bit = 6, \
  34. .egpio_enable = 12, \
  35. .egpio_present = 11, \
  36. .oe_bit = 9, \
  37. .in_bit = 0, \
  38. .out_bit = 1, \
  39. .intr_enable_bit = 0, \
  40. .intr_status_bit = 0, \
  41. .intr_target_bit = 5, \
  42. .intr_target_kpss_val = 3, \
  43. .intr_raw_status_bit = 4, \
  44. .intr_polarity_bit = 1, \
  45. .intr_detection_bit = 2, \
  46. .intr_detection_width = 2, \
  47. .dir_conn_en_bit = 9, \
  48. .wake_reg = REG_BASE + wake_off, \
  49. .wake_bit = bit, \
  50. .funcs = (int[]){ \
  51. msm_mux_gpio, /* gpio mode */ \
  52. msm_mux_##f1, \
  53. msm_mux_##f2, \
  54. msm_mux_##f3, \
  55. msm_mux_##f4, \
  56. msm_mux_##f5, \
  57. msm_mux_##f6, \
  58. msm_mux_##f7, \
  59. msm_mux_##f8, \
  60. msm_mux_##f9, \
  61. msm_mux_##f10 \
  62. }, \
  63. .nfuncs = 11, \
  64. }
  65. #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
  66. { \
  67. .name = #pg_name, \
  68. .pins = pg_name##_pins, \
  69. .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
  70. .ctl_reg = ctl, \
  71. .io_reg = 0, \
  72. .intr_cfg_reg = 0, \
  73. .intr_status_reg = 0, \
  74. .intr_target_reg = 0, \
  75. .mux_bit = -1, \
  76. .pull_bit = pull, \
  77. .drv_bit = drv, \
  78. .oe_bit = -1, \
  79. .in_bit = -1, \
  80. .out_bit = -1, \
  81. .intr_enable_bit = -1, \
  82. .intr_status_bit = -1, \
  83. .intr_target_bit = -1, \
  84. .intr_raw_status_bit = -1, \
  85. .intr_polarity_bit = -1, \
  86. .intr_detection_bit = -1, \
  87. .intr_detection_width = -1, \
  88. }
  89. #define UFS_RESET(pg_name, offset) \
  90. { \
  91. .name = #pg_name, \
  92. .pins = pg_name##_pins, \
  93. .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
  94. .ctl_reg = offset, \
  95. .io_reg = offset + 0x4, \
  96. .intr_cfg_reg = 0, \
  97. .intr_status_reg = 0, \
  98. .intr_target_reg = 0, \
  99. .mux_bit = -1, \
  100. .pull_bit = 3, \
  101. .drv_bit = 0, \
  102. .oe_bit = -1, \
  103. .in_bit = -1, \
  104. .out_bit = 0, \
  105. .intr_enable_bit = -1, \
  106. .intr_status_bit = -1, \
  107. .intr_target_bit = -1, \
  108. .intr_raw_status_bit = -1, \
  109. .intr_polarity_bit = -1, \
  110. .intr_detection_bit = -1, \
  111. .intr_detection_width = -1, \
  112. }
  113. #define QUP_I3C(qup_mode, qup_offset) \
  114. { \
  115. .mode = qup_mode, \
  116. .offset = REG_BASE + qup_offset, \
  117. }
  118. static const struct pinctrl_pin_desc monaco_auto_pins[] = {
  119. PINCTRL_PIN(0, "GPIO_0"),
  120. PINCTRL_PIN(1, "GPIO_1"),
  121. PINCTRL_PIN(2, "GPIO_2"),
  122. PINCTRL_PIN(3, "GPIO_3"),
  123. PINCTRL_PIN(4, "GPIO_4"),
  124. PINCTRL_PIN(5, "GPIO_5"),
  125. PINCTRL_PIN(6, "GPIO_6"),
  126. PINCTRL_PIN(7, "GPIO_7"),
  127. PINCTRL_PIN(8, "GPIO_8"),
  128. PINCTRL_PIN(9, "GPIO_9"),
  129. PINCTRL_PIN(10, "GPIO_10"),
  130. PINCTRL_PIN(11, "GPIO_11"),
  131. PINCTRL_PIN(12, "GPIO_12"),
  132. PINCTRL_PIN(13, "GPIO_13"),
  133. PINCTRL_PIN(14, "GPIO_14"),
  134. PINCTRL_PIN(15, "GPIO_15"),
  135. PINCTRL_PIN(16, "GPIO_16"),
  136. PINCTRL_PIN(17, "GPIO_17"),
  137. PINCTRL_PIN(18, "GPIO_18"),
  138. PINCTRL_PIN(19, "GPIO_19"),
  139. PINCTRL_PIN(20, "GPIO_20"),
  140. PINCTRL_PIN(21, "GPIO_21"),
  141. PINCTRL_PIN(22, "GPIO_22"),
  142. PINCTRL_PIN(23, "GPIO_23"),
  143. PINCTRL_PIN(24, "GPIO_24"),
  144. PINCTRL_PIN(25, "GPIO_25"),
  145. PINCTRL_PIN(26, "GPIO_26"),
  146. PINCTRL_PIN(27, "GPIO_27"),
  147. PINCTRL_PIN(28, "GPIO_28"),
  148. PINCTRL_PIN(29, "GPIO_29"),
  149. PINCTRL_PIN(30, "GPIO_30"),
  150. PINCTRL_PIN(31, "GPIO_31"),
  151. PINCTRL_PIN(32, "GPIO_32"),
  152. PINCTRL_PIN(33, "GPIO_33"),
  153. PINCTRL_PIN(34, "GPIO_34"),
  154. PINCTRL_PIN(35, "GPIO_35"),
  155. PINCTRL_PIN(36, "GPIO_36"),
  156. PINCTRL_PIN(37, "GPIO_37"),
  157. PINCTRL_PIN(38, "GPIO_38"),
  158. PINCTRL_PIN(39, "GPIO_39"),
  159. PINCTRL_PIN(40, "GPIO_40"),
  160. PINCTRL_PIN(41, "GPIO_41"),
  161. PINCTRL_PIN(42, "GPIO_42"),
  162. PINCTRL_PIN(43, "GPIO_43"),
  163. PINCTRL_PIN(44, "GPIO_44"),
  164. PINCTRL_PIN(45, "GPIO_45"),
  165. PINCTRL_PIN(46, "GPIO_46"),
  166. PINCTRL_PIN(47, "GPIO_47"),
  167. PINCTRL_PIN(48, "GPIO_48"),
  168. PINCTRL_PIN(49, "GPIO_49"),
  169. PINCTRL_PIN(50, "GPIO_50"),
  170. PINCTRL_PIN(51, "GPIO_51"),
  171. PINCTRL_PIN(52, "GPIO_52"),
  172. PINCTRL_PIN(53, "GPIO_53"),
  173. PINCTRL_PIN(54, "GPIO_54"),
  174. PINCTRL_PIN(55, "GPIO_55"),
  175. PINCTRL_PIN(56, "GPIO_56"),
  176. PINCTRL_PIN(57, "GPIO_57"),
  177. PINCTRL_PIN(58, "GPIO_58"),
  178. PINCTRL_PIN(59, "GPIO_59"),
  179. PINCTRL_PIN(60, "GPIO_60"),
  180. PINCTRL_PIN(61, "GPIO_61"),
  181. PINCTRL_PIN(62, "GPIO_62"),
  182. PINCTRL_PIN(63, "GPIO_63"),
  183. PINCTRL_PIN(64, "GPIO_64"),
  184. PINCTRL_PIN(65, "GPIO_65"),
  185. PINCTRL_PIN(66, "GPIO_66"),
  186. PINCTRL_PIN(67, "GPIO_67"),
  187. PINCTRL_PIN(68, "GPIO_68"),
  188. PINCTRL_PIN(69, "GPIO_69"),
  189. PINCTRL_PIN(70, "GPIO_70"),
  190. PINCTRL_PIN(71, "GPIO_71"),
  191. PINCTRL_PIN(72, "GPIO_72"),
  192. PINCTRL_PIN(73, "GPIO_73"),
  193. PINCTRL_PIN(74, "GPIO_74"),
  194. PINCTRL_PIN(75, "GPIO_75"),
  195. PINCTRL_PIN(76, "GPIO_76"),
  196. PINCTRL_PIN(77, "GPIO_77"),
  197. PINCTRL_PIN(78, "GPIO_78"),
  198. PINCTRL_PIN(79, "GPIO_79"),
  199. PINCTRL_PIN(80, "GPIO_80"),
  200. PINCTRL_PIN(81, "GPIO_81"),
  201. PINCTRL_PIN(82, "GPIO_82"),
  202. PINCTRL_PIN(83, "GPIO_83"),
  203. PINCTRL_PIN(84, "GPIO_84"),
  204. PINCTRL_PIN(85, "GPIO_85"),
  205. PINCTRL_PIN(86, "GPIO_86"),
  206. PINCTRL_PIN(87, "GPIO_87"),
  207. PINCTRL_PIN(88, "GPIO_88"),
  208. PINCTRL_PIN(89, "GPIO_89"),
  209. PINCTRL_PIN(90, "GPIO_90"),
  210. PINCTRL_PIN(91, "GPIO_91"),
  211. PINCTRL_PIN(92, "GPIO_92"),
  212. PINCTRL_PIN(93, "GPIO_93"),
  213. PINCTRL_PIN(94, "GPIO_94"),
  214. PINCTRL_PIN(95, "GPIO_95"),
  215. PINCTRL_PIN(96, "GPIO_96"),
  216. PINCTRL_PIN(97, "GPIO_97"),
  217. PINCTRL_PIN(98, "GPIO_98"),
  218. PINCTRL_PIN(99, "GPIO_99"),
  219. PINCTRL_PIN(100, "GPIO_100"),
  220. PINCTRL_PIN(101, "GPIO_101"),
  221. PINCTRL_PIN(102, "GPIO_102"),
  222. PINCTRL_PIN(103, "GPIO_103"),
  223. PINCTRL_PIN(104, "GPIO_104"),
  224. PINCTRL_PIN(105, "GPIO_105"),
  225. PINCTRL_PIN(106, "GPIO_106"),
  226. PINCTRL_PIN(107, "GPIO_107"),
  227. PINCTRL_PIN(108, "GPIO_108"),
  228. PINCTRL_PIN(109, "GPIO_109"),
  229. PINCTRL_PIN(110, "GPIO_110"),
  230. PINCTRL_PIN(111, "GPIO_111"),
  231. PINCTRL_PIN(112, "GPIO_112"),
  232. PINCTRL_PIN(113, "GPIO_113"),
  233. PINCTRL_PIN(114, "GPIO_114"),
  234. PINCTRL_PIN(115, "GPIO_115"),
  235. PINCTRL_PIN(116, "GPIO_116"),
  236. PINCTRL_PIN(117, "GPIO_117"),
  237. PINCTRL_PIN(118, "GPIO_118"),
  238. PINCTRL_PIN(119, "GPIO_119"),
  239. PINCTRL_PIN(120, "GPIO_120"),
  240. PINCTRL_PIN(121, "GPIO_121"),
  241. PINCTRL_PIN(122, "GPIO_122"),
  242. PINCTRL_PIN(123, "GPIO_123"),
  243. PINCTRL_PIN(124, "GPIO_124"),
  244. PINCTRL_PIN(125, "GPIO_125"),
  245. PINCTRL_PIN(126, "GPIO_126"),
  246. PINCTRL_PIN(127, "GPIO_127"),
  247. PINCTRL_PIN(128, "GPIO_128"),
  248. PINCTRL_PIN(129, "GPIO_129"),
  249. PINCTRL_PIN(130, "GPIO_130"),
  250. PINCTRL_PIN(131, "GPIO_131"),
  251. PINCTRL_PIN(132, "GPIO_132"),
  252. PINCTRL_PIN(133, "UFS_RESET"),
  253. };
  254. #define DECLARE_MSM_GPIO_PINS(pin) \
  255. static const unsigned int gpio##pin##_pins[] = { pin }
  256. DECLARE_MSM_GPIO_PINS(0);
  257. DECLARE_MSM_GPIO_PINS(1);
  258. DECLARE_MSM_GPIO_PINS(2);
  259. DECLARE_MSM_GPIO_PINS(3);
  260. DECLARE_MSM_GPIO_PINS(4);
  261. DECLARE_MSM_GPIO_PINS(5);
  262. DECLARE_MSM_GPIO_PINS(6);
  263. DECLARE_MSM_GPIO_PINS(7);
  264. DECLARE_MSM_GPIO_PINS(8);
  265. DECLARE_MSM_GPIO_PINS(9);
  266. DECLARE_MSM_GPIO_PINS(10);
  267. DECLARE_MSM_GPIO_PINS(11);
  268. DECLARE_MSM_GPIO_PINS(12);
  269. DECLARE_MSM_GPIO_PINS(13);
  270. DECLARE_MSM_GPIO_PINS(14);
  271. DECLARE_MSM_GPIO_PINS(15);
  272. DECLARE_MSM_GPIO_PINS(16);
  273. DECLARE_MSM_GPIO_PINS(17);
  274. DECLARE_MSM_GPIO_PINS(18);
  275. DECLARE_MSM_GPIO_PINS(19);
  276. DECLARE_MSM_GPIO_PINS(20);
  277. DECLARE_MSM_GPIO_PINS(21);
  278. DECLARE_MSM_GPIO_PINS(22);
  279. DECLARE_MSM_GPIO_PINS(23);
  280. DECLARE_MSM_GPIO_PINS(24);
  281. DECLARE_MSM_GPIO_PINS(25);
  282. DECLARE_MSM_GPIO_PINS(26);
  283. DECLARE_MSM_GPIO_PINS(27);
  284. DECLARE_MSM_GPIO_PINS(28);
  285. DECLARE_MSM_GPIO_PINS(29);
  286. DECLARE_MSM_GPIO_PINS(30);
  287. DECLARE_MSM_GPIO_PINS(31);
  288. DECLARE_MSM_GPIO_PINS(32);
  289. DECLARE_MSM_GPIO_PINS(33);
  290. DECLARE_MSM_GPIO_PINS(34);
  291. DECLARE_MSM_GPIO_PINS(35);
  292. DECLARE_MSM_GPIO_PINS(36);
  293. DECLARE_MSM_GPIO_PINS(37);
  294. DECLARE_MSM_GPIO_PINS(38);
  295. DECLARE_MSM_GPIO_PINS(39);
  296. DECLARE_MSM_GPIO_PINS(40);
  297. DECLARE_MSM_GPIO_PINS(41);
  298. DECLARE_MSM_GPIO_PINS(42);
  299. DECLARE_MSM_GPIO_PINS(43);
  300. DECLARE_MSM_GPIO_PINS(44);
  301. DECLARE_MSM_GPIO_PINS(45);
  302. DECLARE_MSM_GPIO_PINS(46);
  303. DECLARE_MSM_GPIO_PINS(47);
  304. DECLARE_MSM_GPIO_PINS(48);
  305. DECLARE_MSM_GPIO_PINS(49);
  306. DECLARE_MSM_GPIO_PINS(50);
  307. DECLARE_MSM_GPIO_PINS(51);
  308. DECLARE_MSM_GPIO_PINS(52);
  309. DECLARE_MSM_GPIO_PINS(53);
  310. DECLARE_MSM_GPIO_PINS(54);
  311. DECLARE_MSM_GPIO_PINS(55);
  312. DECLARE_MSM_GPIO_PINS(56);
  313. DECLARE_MSM_GPIO_PINS(57);
  314. DECLARE_MSM_GPIO_PINS(58);
  315. DECLARE_MSM_GPIO_PINS(59);
  316. DECLARE_MSM_GPIO_PINS(60);
  317. DECLARE_MSM_GPIO_PINS(61);
  318. DECLARE_MSM_GPIO_PINS(62);
  319. DECLARE_MSM_GPIO_PINS(63);
  320. DECLARE_MSM_GPIO_PINS(64);
  321. DECLARE_MSM_GPIO_PINS(65);
  322. DECLARE_MSM_GPIO_PINS(66);
  323. DECLARE_MSM_GPIO_PINS(67);
  324. DECLARE_MSM_GPIO_PINS(68);
  325. DECLARE_MSM_GPIO_PINS(69);
  326. DECLARE_MSM_GPIO_PINS(70);
  327. DECLARE_MSM_GPIO_PINS(71);
  328. DECLARE_MSM_GPIO_PINS(72);
  329. DECLARE_MSM_GPIO_PINS(73);
  330. DECLARE_MSM_GPIO_PINS(74);
  331. DECLARE_MSM_GPIO_PINS(75);
  332. DECLARE_MSM_GPIO_PINS(76);
  333. DECLARE_MSM_GPIO_PINS(77);
  334. DECLARE_MSM_GPIO_PINS(78);
  335. DECLARE_MSM_GPIO_PINS(79);
  336. DECLARE_MSM_GPIO_PINS(80);
  337. DECLARE_MSM_GPIO_PINS(81);
  338. DECLARE_MSM_GPIO_PINS(82);
  339. DECLARE_MSM_GPIO_PINS(83);
  340. DECLARE_MSM_GPIO_PINS(84);
  341. DECLARE_MSM_GPIO_PINS(85);
  342. DECLARE_MSM_GPIO_PINS(86);
  343. DECLARE_MSM_GPIO_PINS(87);
  344. DECLARE_MSM_GPIO_PINS(88);
  345. DECLARE_MSM_GPIO_PINS(89);
  346. DECLARE_MSM_GPIO_PINS(90);
  347. DECLARE_MSM_GPIO_PINS(91);
  348. DECLARE_MSM_GPIO_PINS(92);
  349. DECLARE_MSM_GPIO_PINS(93);
  350. DECLARE_MSM_GPIO_PINS(94);
  351. DECLARE_MSM_GPIO_PINS(95);
  352. DECLARE_MSM_GPIO_PINS(96);
  353. DECLARE_MSM_GPIO_PINS(97);
  354. DECLARE_MSM_GPIO_PINS(98);
  355. DECLARE_MSM_GPIO_PINS(99);
  356. DECLARE_MSM_GPIO_PINS(100);
  357. DECLARE_MSM_GPIO_PINS(101);
  358. DECLARE_MSM_GPIO_PINS(102);
  359. DECLARE_MSM_GPIO_PINS(103);
  360. DECLARE_MSM_GPIO_PINS(104);
  361. DECLARE_MSM_GPIO_PINS(105);
  362. DECLARE_MSM_GPIO_PINS(106);
  363. DECLARE_MSM_GPIO_PINS(107);
  364. DECLARE_MSM_GPIO_PINS(108);
  365. DECLARE_MSM_GPIO_PINS(109);
  366. DECLARE_MSM_GPIO_PINS(110);
  367. DECLARE_MSM_GPIO_PINS(111);
  368. DECLARE_MSM_GPIO_PINS(112);
  369. DECLARE_MSM_GPIO_PINS(113);
  370. DECLARE_MSM_GPIO_PINS(114);
  371. DECLARE_MSM_GPIO_PINS(115);
  372. DECLARE_MSM_GPIO_PINS(116);
  373. DECLARE_MSM_GPIO_PINS(117);
  374. DECLARE_MSM_GPIO_PINS(118);
  375. DECLARE_MSM_GPIO_PINS(119);
  376. DECLARE_MSM_GPIO_PINS(120);
  377. DECLARE_MSM_GPIO_PINS(121);
  378. DECLARE_MSM_GPIO_PINS(122);
  379. DECLARE_MSM_GPIO_PINS(123);
  380. DECLARE_MSM_GPIO_PINS(124);
  381. DECLARE_MSM_GPIO_PINS(125);
  382. DECLARE_MSM_GPIO_PINS(126);
  383. DECLARE_MSM_GPIO_PINS(127);
  384. DECLARE_MSM_GPIO_PINS(128);
  385. DECLARE_MSM_GPIO_PINS(129);
  386. DECLARE_MSM_GPIO_PINS(130);
  387. DECLARE_MSM_GPIO_PINS(131);
  388. DECLARE_MSM_GPIO_PINS(132);
  389. static const unsigned int ufs_reset_pins[] = { 133 };
  390. enum monaco_auto_functions {
  391. msm_mux_gpio,
  392. msm_mux_aoss_cti,
  393. msm_mux_atest_char0,
  394. msm_mux_atest_char1,
  395. msm_mux_atest_char2,
  396. msm_mux_atest_char3,
  397. msm_mux_atest_char_start,
  398. msm_mux_atest_usb2,
  399. msm_mux_atest_usb20,
  400. msm_mux_atest_usb21,
  401. msm_mux_atest_usb22,
  402. msm_mux_atest_usb23,
  403. msm_mux_audio_ref_clk,
  404. msm_mux_cam_mclk,
  405. msm_mux_cci_async_in0,
  406. msm_mux_cci_async_in1,
  407. msm_mux_cci_async_in2,
  408. msm_mux_cci_async_in3,
  409. msm_mux_cci_async_in4,
  410. msm_mux_cci_async_in5,
  411. msm_mux_cci_i2c_scl0,
  412. msm_mux_cci_i2c_scl1,
  413. msm_mux_cci_i2c_scl2,
  414. msm_mux_cci_i2c_scl3,
  415. msm_mux_cci_i2c_scl4,
  416. msm_mux_cci_i2c_scl5,
  417. msm_mux_cci_i2c_sda0,
  418. msm_mux_cci_i2c_sda1,
  419. msm_mux_cci_i2c_sda2,
  420. msm_mux_cci_i2c_sda3,
  421. msm_mux_cci_i2c_sda4,
  422. msm_mux_cci_i2c_sda5,
  423. msm_mux_cci_timer0,
  424. msm_mux_cci_timer1,
  425. msm_mux_cci_timer2,
  426. msm_mux_cci_timer3,
  427. msm_mux_cci_timer4,
  428. msm_mux_cci_timer5,
  429. msm_mux_cci_timer6,
  430. msm_mux_cci_timer7,
  431. msm_mux_cci_timer8,
  432. msm_mux_cci_timer9,
  433. msm_mux_cri_trng,
  434. msm_mux_cri_trng0,
  435. msm_mux_cri_trng1,
  436. msm_mux_dbg_out_clk,
  437. msm_mux_ddr_bist_complete,
  438. msm_mux_ddr_bist_fail,
  439. msm_mux_ddr_bist_start,
  440. msm_mux_ddr_bist_stop,
  441. msm_mux_ddr_pxi0,
  442. msm_mux_ddr_pxi1,
  443. msm_mux_ddr_pxi2,
  444. msm_mux_ddr_pxi3,
  445. msm_mux_edp0_hot,
  446. msm_mux_edp0_lcd,
  447. msm_mux_edp1_lcd,
  448. msm_mux_emac0_mcg0,
  449. msm_mux_emac0_mcg1,
  450. msm_mux_emac0_mcg2,
  451. msm_mux_emac0_mcg3,
  452. msm_mux_emac0_mdc,
  453. msm_mux_emac0_mdio,
  454. msm_mux_emac0_ptp,
  455. msm_mux_gcc_gp1,
  456. msm_mux_gcc_gp2,
  457. msm_mux_gcc_gp3,
  458. msm_mux_gcc_gp4,
  459. msm_mux_gcc_gp5,
  460. msm_mux_hs0_mi2s_data0,
  461. msm_mux_hs0_mi2s_data1,
  462. msm_mux_hs0_mi2s_sck,
  463. msm_mux_hs0_mi2s_ws,
  464. msm_mux_hs1_mi2s,
  465. msm_mux_hs2_mi2s,
  466. msm_mux_ibi_i3c,
  467. msm_mux_jitter_bist,
  468. msm_mux_mdp0_vsync0_out,
  469. msm_mux_mdp0_vsync1_out,
  470. msm_mux_mdp0_vsync3_out,
  471. msm_mux_mdp0_vsync6_out,
  472. msm_mux_mdp0_vsync7_out,
  473. msm_mux_mdp_vsync_e,
  474. msm_mux_mdp_vsync_p,
  475. msm_mux_mdp_vsync_s,
  476. msm_mux_mi2s1_data0,
  477. msm_mux_mi2s1_data1,
  478. msm_mux_mi2s1_sck,
  479. msm_mux_mi2s1_ws,
  480. msm_mux_mi2s2_data0,
  481. msm_mux_mi2s2_data1,
  482. msm_mux_mi2s2_sck,
  483. msm_mux_mi2s2_ws,
  484. msm_mux_mi2s_mclk0,
  485. msm_mux_mi2s_mclk1,
  486. msm_mux_pcie0_clkreq_n,
  487. msm_mux_pcie1_clkreq_n,
  488. msm_mux_phase_flag0,
  489. msm_mux_phase_flag1,
  490. msm_mux_phase_flag10,
  491. msm_mux_phase_flag11,
  492. msm_mux_phase_flag12,
  493. msm_mux_phase_flag13,
  494. msm_mux_phase_flag14,
  495. msm_mux_phase_flag15,
  496. msm_mux_phase_flag16,
  497. msm_mux_phase_flag17,
  498. msm_mux_phase_flag18,
  499. msm_mux_phase_flag19,
  500. msm_mux_phase_flag2,
  501. msm_mux_phase_flag20,
  502. msm_mux_phase_flag21,
  503. msm_mux_phase_flag22,
  504. msm_mux_phase_flag23,
  505. msm_mux_phase_flag24,
  506. msm_mux_phase_flag25,
  507. msm_mux_phase_flag26,
  508. msm_mux_phase_flag27,
  509. msm_mux_phase_flag28,
  510. msm_mux_phase_flag29,
  511. msm_mux_phase_flag3,
  512. msm_mux_phase_flag30,
  513. msm_mux_phase_flag31,
  514. msm_mux_phase_flag4,
  515. msm_mux_phase_flag5,
  516. msm_mux_phase_flag6,
  517. msm_mux_phase_flag7,
  518. msm_mux_phase_flag8,
  519. msm_mux_phase_flag9,
  520. msm_mux_pll_bist_sync,
  521. msm_mux_pll_clk_aux,
  522. msm_mux_prng_rosc0,
  523. msm_mux_prng_rosc1,
  524. msm_mux_prng_rosc2,
  525. msm_mux_prng_rosc3,
  526. msm_mux_qdss_cti,
  527. msm_mux_qdss_gpio,
  528. msm_mux_qdss_gpio0,
  529. msm_mux_qdss_gpio1,
  530. msm_mux_qdss_gpio10,
  531. msm_mux_qdss_gpio11,
  532. msm_mux_qdss_gpio12,
  533. msm_mux_qdss_gpio13,
  534. msm_mux_qdss_gpio14,
  535. msm_mux_qdss_gpio15,
  536. msm_mux_qdss_gpio2,
  537. msm_mux_qdss_gpio3,
  538. msm_mux_qdss_gpio4,
  539. msm_mux_qdss_gpio5,
  540. msm_mux_qdss_gpio6,
  541. msm_mux_qdss_gpio7,
  542. msm_mux_qdss_gpio8,
  543. msm_mux_qdss_gpio9,
  544. msm_mux_qup0_se0_l0,
  545. msm_mux_qup0_se0_l1,
  546. msm_mux_qup0_se0_l2,
  547. msm_mux_qup0_se0_l3,
  548. msm_mux_qup0_se1_l0,
  549. msm_mux_qup0_se1_l1,
  550. msm_mux_qup0_se1_l2,
  551. msm_mux_qup0_se1_l3,
  552. msm_mux_qup0_se2_l0,
  553. msm_mux_qup0_se2_l1,
  554. msm_mux_qup0_se2_l2,
  555. msm_mux_qup0_se2_l3,
  556. msm_mux_qup0_se3_l0,
  557. msm_mux_qup0_se3_l1,
  558. msm_mux_qup0_se3_l2,
  559. msm_mux_qup0_se3_l3,
  560. msm_mux_qup0_se4_l0,
  561. msm_mux_qup0_se4_l1,
  562. msm_mux_qup0_se4_l2,
  563. msm_mux_qup0_se4_l3,
  564. msm_mux_qup0_se5_l0,
  565. msm_mux_qup0_se5_l1,
  566. msm_mux_qup0_se5_l2,
  567. msm_mux_qup0_se5_l3,
  568. msm_mux_qup0_se6_l0,
  569. msm_mux_qup0_se6_l1,
  570. msm_mux_qup0_se6_l2,
  571. msm_mux_qup0_se6_l3,
  572. msm_mux_qup0_se7_l0,
  573. msm_mux_qup0_se7_l1,
  574. msm_mux_qup0_se7_l2,
  575. msm_mux_qup0_se7_l3,
  576. msm_mux_qup1_se0_l0,
  577. msm_mux_qup1_se0_l1,
  578. msm_mux_qup1_se0_l2,
  579. msm_mux_qup1_se0_l3,
  580. msm_mux_qup1_se1_l0,
  581. msm_mux_qup1_se1_l1,
  582. msm_mux_qup1_se1_l2,
  583. msm_mux_qup1_se1_l3,
  584. msm_mux_qup1_se2_l0,
  585. msm_mux_qup1_se2_l1,
  586. msm_mux_qup1_se2_l2,
  587. msm_mux_qup1_se2_l3,
  588. msm_mux_qup1_se2_l4,
  589. msm_mux_qup1_se3_l0,
  590. msm_mux_qup1_se3_l1,
  591. msm_mux_qup1_se3_l2,
  592. msm_mux_qup1_se3_l3,
  593. msm_mux_qup1_se4_l0,
  594. msm_mux_qup1_se4_l1,
  595. msm_mux_qup1_se4_l2,
  596. msm_mux_qup1_se4_l3,
  597. msm_mux_qup1_se5_l0,
  598. msm_mux_qup1_se5_l1,
  599. msm_mux_qup1_se5_l2,
  600. msm_mux_qup1_se5_l3,
  601. msm_mux_qup1_se6_l0,
  602. msm_mux_qup1_se6_l1,
  603. msm_mux_qup1_se6_l2,
  604. msm_mux_qup1_se6_l3,
  605. msm_mux_qup1_se7_l0,
  606. msm_mux_qup1_se7_l1,
  607. msm_mux_qup1_se7_l2,
  608. msm_mux_qup1_se7_l3,
  609. msm_mux_qup2_se0_l0,
  610. msm_mux_qup2_se0_l1,
  611. msm_mux_qup2_se0_l2,
  612. msm_mux_qup2_se0_l3,
  613. msm_mux_qup2_se0_l4,
  614. msm_mux_qup2_se0_l5,
  615. msm_mux_qup2_se0_l6,
  616. msm_mux_sailss_emac0,
  617. msm_mux_sailss_ospi,
  618. msm_mux_sgmii_phy_intr0_n,
  619. msm_mux_tb_trig_sdc1,
  620. msm_mux_tb_trig_sdc4,
  621. msm_mux_tgu_ch0_trigout,
  622. msm_mux_tgu_ch1_trigout,
  623. msm_mux_tgu_ch2_trigout,
  624. msm_mux_tgu_ch3_trigout,
  625. msm_mux_tsense_pwm1,
  626. msm_mux_tsense_pwm2,
  627. msm_mux_tsense_pwm3,
  628. msm_mux_tsense_pwm4,
  629. msm_mux_usb2phy_ac_en0,
  630. msm_mux_usb2phy_ac_en2,
  631. msm_mux_vsense_trigger_mirnat,
  632. msm_mux_NA,
  633. };
  634. static const char *const gpio_groups[] = {
  635. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5",
  636. "gpio6", "gpio7", "gpio8", "gpio9", "gpio10", "gpio11",
  637. "gpio12", "gpio13", "gpio14", "gpio15", "gpio16", "gpio17",
  638. "gpio18", "gpio19", "gpio20", "gpio21", "gpio22", "gpio23",
  639. "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", "gpio29",
  640. "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  641. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41",
  642. "gpio42", "gpio43", "gpio44", "gpio45", "gpio46", "gpio47",
  643. "gpio48", "gpio49", "gpio50", "gpio51", "gpio52", "gpio53",
  644. "gpio54", "gpio55", "gpio56", "gpio57", "gpio58", "gpio59",
  645. "gpio60", "gpio61", "gpio62", "gpio63", "gpio64", "gpio65",
  646. "gpio66", "gpio67", "gpio68", "gpio69", "gpio70", "gpio71",
  647. "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  648. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83",
  649. "gpio84", "gpio85", "gpio86", "gpio87", "gpio88", "gpio89",
  650. "gpio90", "gpio91", "gpio92", "gpio93", "gpio94", "gpio95",
  651. "gpio96", "gpio97", "gpio98", "gpio99", "gpio100", "gpio101",
  652. "gpio102", "gpio103", "gpio104", "gpio105", "gpio106", "gpio107",
  653. "gpio108", "gpio109", "gpio110", "gpio111", "gpio112", "gpio113",
  654. "gpio114", "gpio115", "gpio116", "gpio117", "gpio118", "gpio119",
  655. "gpio120", "gpio121", "gpio122", "gpio123", "gpio124", "gpio125",
  656. "gpio126", "gpio127", "gpio128", "gpio129", "gpio130", "gpio131",
  657. "gpio132",
  658. };
  659. static const char *const aoss_cti_groups[] = {
  660. "gpio37", "gpio38", "gpio39", "gpio40",
  661. };
  662. static const char *const atest_char0_groups[] = {
  663. "gpio70",
  664. };
  665. static const char *const atest_char1_groups[] = {
  666. "gpio71",
  667. };
  668. static const char *const atest_char2_groups[] = {
  669. "gpio72",
  670. };
  671. static const char *const atest_char3_groups[] = {
  672. "gpio93",
  673. };
  674. static const char *const atest_char_start_groups[] = {
  675. "gpio66",
  676. };
  677. static const char *const atest_usb2_groups[] = {
  678. "gpio63", "gpio83", "gpio92",
  679. };
  680. static const char *const atest_usb20_groups[] = {
  681. "gpio74", "gpio84", "gpio87",
  682. };
  683. static const char *const atest_usb21_groups[] = {
  684. "gpio67", "gpio75", "gpio85",
  685. };
  686. static const char *const atest_usb22_groups[] = {
  687. "gpio65", "gpio68", "gpio80",
  688. };
  689. static const char *const atest_usb23_groups[] = {
  690. "gpio64", "gpio69", "gpio81",
  691. };
  692. static const char *const audio_ref_clk_groups[] = {
  693. "gpio105",
  694. };
  695. static const char *const cam_mclk_groups[] = {
  696. "gpio67", "gpio68", "gpio69",
  697. };
  698. static const char *const cci_async_in0_groups[] = {
  699. "gpio63",
  700. };
  701. static const char *const cci_async_in1_groups[] = {
  702. "gpio64",
  703. };
  704. static const char *const cci_async_in2_groups[] = {
  705. "gpio65",
  706. };
  707. static const char *const cci_async_in3_groups[] = {
  708. "gpio29",
  709. };
  710. static const char *const cci_async_in4_groups[] = {
  711. "gpio30",
  712. };
  713. static const char *const cci_async_in5_groups[] = {
  714. "gpio31",
  715. };
  716. static const char *const cci_i2c_scl0_groups[] = {
  717. "gpio58",
  718. };
  719. static const char *const cci_i2c_scl1_groups[] = {
  720. "gpio30",
  721. };
  722. static const char *const cci_i2c_scl2_groups[] = {
  723. "gpio60",
  724. };
  725. static const char *const cci_i2c_scl3_groups[] = {
  726. "gpio32",
  727. };
  728. static const char *const cci_i2c_scl4_groups[] = {
  729. "gpio62",
  730. };
  731. static const char *const cci_i2c_scl5_groups[] = {
  732. "gpio55",
  733. };
  734. static const char *const cci_i2c_sda0_groups[] = {
  735. "gpio57",
  736. };
  737. static const char *const cci_i2c_sda1_groups[] = {
  738. "gpio29",
  739. };
  740. static const char *const cci_i2c_sda2_groups[] = {
  741. "gpio59",
  742. };
  743. static const char *const cci_i2c_sda3_groups[] = {
  744. "gpio31",
  745. };
  746. static const char *const cci_i2c_sda4_groups[] = {
  747. "gpio61",
  748. };
  749. static const char *const cci_i2c_sda5_groups[] = {
  750. "gpio54",
  751. };
  752. static const char *const cci_timer0_groups[] = {
  753. "gpio63",
  754. };
  755. static const char *const cci_timer1_groups[] = {
  756. "gpio64",
  757. };
  758. static const char *const cci_timer2_groups[] = {
  759. "gpio65",
  760. };
  761. static const char *const cci_timer3_groups[] = {
  762. "gpio49",
  763. };
  764. static const char *const cci_timer4_groups[] = {
  765. "gpio50",
  766. };
  767. static const char *const cci_timer5_groups[] = {
  768. "gpio19",
  769. };
  770. static const char *const cci_timer6_groups[] = {
  771. "gpio20",
  772. };
  773. static const char *const cci_timer7_groups[] = {
  774. "gpio21",
  775. };
  776. static const char *const cci_timer8_groups[] = {
  777. "gpio22",
  778. };
  779. static const char *const cci_timer9_groups[] = {
  780. "gpio23",
  781. };
  782. static const char *const cri_trng_groups[] = {
  783. "gpio92",
  784. };
  785. static const char *const cri_trng0_groups[] = {
  786. "gpio90",
  787. };
  788. static const char *const cri_trng1_groups[] = {
  789. "gpio91",
  790. };
  791. static const char *const dbg_out_clk_groups[] = {
  792. "gpio75",
  793. };
  794. static const char *const ddr_bist_complete_groups[] = {
  795. "gpio54",
  796. };
  797. static const char *const ddr_bist_fail_groups[] = {
  798. "gpio56",
  799. };
  800. static const char *const ddr_bist_start_groups[] = {
  801. "gpio53",
  802. };
  803. static const char *const ddr_bist_stop_groups[] = {
  804. "gpio55",
  805. };
  806. static const char *const ddr_pxi0_groups[] = {
  807. "gpio68", "gpio69",
  808. };
  809. static const char *const ddr_pxi1_groups[] = {
  810. "gpio49", "gpio50",
  811. };
  812. static const char *const ddr_pxi2_groups[] = {
  813. "gpio52", "gpio83",
  814. };
  815. static const char *const ddr_pxi3_groups[] = {
  816. "gpio80", "gpio81",
  817. };
  818. static const char *const edp0_hot_groups[] = {
  819. "gpio94",
  820. };
  821. static const char *const edp0_lcd_groups[] = {
  822. "gpio48",
  823. };
  824. static const char *const edp1_lcd_groups[] = {
  825. "gpio49",
  826. };
  827. static const char *const emac0_mcg0_groups[] = {
  828. "gpio10",
  829. };
  830. static const char *const emac0_mcg1_groups[] = {
  831. "gpio11",
  832. };
  833. static const char *const emac0_mcg2_groups[] = {
  834. "gpio24",
  835. };
  836. static const char *const emac0_mcg3_groups[] = {
  837. "gpio79",
  838. };
  839. static const char *const emac0_mdc_groups[] = {
  840. "gpio5",
  841. };
  842. static const char *const emac0_mdio_groups[] = {
  843. "gpio6",
  844. };
  845. static const char *const emac0_ptp_groups[] = {
  846. "gpio24", "gpio29", "gpio30", "gpio31", "gpio32", "gpio79",
  847. };
  848. static const char *const gcc_gp1_groups[] = {
  849. "gpio35", "gpio84",
  850. };
  851. static const char *const gcc_gp2_groups[] = {
  852. "gpio36", "gpio81",
  853. };
  854. static const char *const gcc_gp3_groups[] = {
  855. "gpio69", "gpio82",
  856. };
  857. static const char *const gcc_gp4_groups[] = {
  858. "gpio68", "gpio83",
  859. };
  860. static const char *const gcc_gp5_groups[] = {
  861. "gpio76", "gpio77",
  862. };
  863. static const char *const hs0_mi2s_data0_groups[] = {
  864. "gpio108",
  865. };
  866. static const char *const hs0_mi2s_data1_groups[] = {
  867. "gpio109",
  868. };
  869. static const char *const hs0_mi2s_sck_groups[] = {
  870. "gpio106",
  871. };
  872. static const char *const hs0_mi2s_ws_groups[] = {
  873. "gpio107",
  874. };
  875. static const char *const hs1_mi2s_groups[] = {
  876. "gpio45", "gpio46", "gpio47", "gpio48",
  877. };
  878. static const char *const hs2_mi2s_groups[] = {
  879. "gpio49", "gpio50", "gpio51", "gpio52",
  880. };
  881. static const char *const ibi_i3c_groups[] = {
  882. "gpio17", "gpio18", "gpio19", "gpio20", "gpio37", "gpio38",
  883. "gpio39", "gpio40",
  884. };
  885. static const char *const jitter_bist_groups[] = {
  886. "gpio97",
  887. };
  888. static const char *const mdp0_vsync0_out_groups[] = {
  889. "gpio89",
  890. };
  891. static const char *const mdp0_vsync1_out_groups[] = {
  892. "gpio90",
  893. };
  894. static const char *const mdp0_vsync3_out_groups[] = {
  895. "gpio91",
  896. };
  897. static const char *const mdp0_vsync6_out_groups[] = {
  898. "gpio80",
  899. };
  900. static const char *const mdp0_vsync7_out_groups[] = {
  901. "gpio81",
  902. };
  903. static const char *const mdp_vsync_e_groups[] = {
  904. "gpio42",
  905. };
  906. static const char *const mdp_vsync_p_groups[] = {
  907. "gpio52",
  908. };
  909. static const char *const mdp_vsync_s_groups[] = {
  910. "gpio32",
  911. };
  912. static const char *const mi2s1_data0_groups[] = {
  913. "gpio100",
  914. };
  915. static const char *const mi2s1_data1_groups[] = {
  916. "gpio101",
  917. };
  918. static const char *const mi2s1_sck_groups[] = {
  919. "gpio98",
  920. };
  921. static const char *const mi2s1_ws_groups[] = {
  922. "gpio99",
  923. };
  924. static const char *const mi2s2_data0_groups[] = {
  925. "gpio104",
  926. };
  927. static const char *const mi2s2_data1_groups[] = {
  928. "gpio105",
  929. };
  930. static const char *const mi2s2_sck_groups[] = {
  931. "gpio102",
  932. };
  933. static const char *const mi2s2_ws_groups[] = {
  934. "gpio103",
  935. };
  936. static const char *const mi2s_mclk0_groups[] = {
  937. "gpio97",
  938. };
  939. static const char *const mi2s_mclk1_groups[] = {
  940. "gpio109",
  941. };
  942. static const char *const pcie0_clkreq_n_groups[] = {
  943. "gpio1",
  944. };
  945. static const char *const pcie1_clkreq_n_groups[] = {
  946. "gpio22",
  947. };
  948. static const char *const phase_flag0_groups[] = {
  949. "gpio66",
  950. };
  951. static const char *const phase_flag1_groups[] = {
  952. "gpio56",
  953. };
  954. static const char *const phase_flag10_groups[] = {
  955. "gpio118",
  956. };
  957. static const char *const phase_flag11_groups[] = {
  958. "gpio117",
  959. };
  960. static const char *const phase_flag12_groups[] = {
  961. "gpio116",
  962. };
  963. static const char *const phase_flag13_groups[] = {
  964. "gpio3",
  965. };
  966. static const char *const phase_flag14_groups[] = {
  967. "gpio114",
  968. };
  969. static const char *const phase_flag15_groups[] = {
  970. "gpio113",
  971. };
  972. static const char *const phase_flag16_groups[] = {
  973. "gpio112",
  974. };
  975. static const char *const phase_flag17_groups[] = {
  976. "gpio111",
  977. };
  978. static const char *const phase_flag18_groups[] = {
  979. "gpio110",
  980. };
  981. static const char *const phase_flag19_groups[] = {
  982. "gpio28",
  983. };
  984. static const char *const phase_flag2_groups[] = {
  985. "gpio55",
  986. };
  987. static const char *const phase_flag20_groups[] = {
  988. "gpio108",
  989. };
  990. static const char *const phase_flag21_groups[] = {
  991. "gpio107",
  992. };
  993. static const char *const phase_flag22_groups[] = {
  994. "gpio106",
  995. };
  996. static const char *const phase_flag23_groups[] = {
  997. "gpio105",
  998. };
  999. static const char *const phase_flag24_groups[] = {
  1000. "gpio104",
  1001. };
  1002. static const char *const phase_flag25_groups[] = {
  1003. "gpio103",
  1004. };
  1005. static const char *const phase_flag26_groups[] = {
  1006. "gpio102",
  1007. };
  1008. static const char *const phase_flag27_groups[] = {
  1009. "gpio101",
  1010. };
  1011. static const char *const phase_flag28_groups[] = {
  1012. "gpio100",
  1013. };
  1014. static const char *const phase_flag29_groups[] = {
  1015. "gpio99",
  1016. };
  1017. static const char *const phase_flag3_groups[] = {
  1018. "gpio125",
  1019. };
  1020. static const char *const phase_flag30_groups[] = {
  1021. "gpio98",
  1022. };
  1023. static const char *const phase_flag31_groups[] = {
  1024. "gpio54",
  1025. };
  1026. static const char *const phase_flag4_groups[] = {
  1027. "gpio25",
  1028. };
  1029. static const char *const phase_flag5_groups[] = {
  1030. "gpio26",
  1031. };
  1032. static const char *const phase_flag6_groups[] = {
  1033. "gpio122",
  1034. };
  1035. static const char *const phase_flag7_groups[] = {
  1036. "gpio121",
  1037. };
  1038. static const char *const phase_flag8_groups[] = {
  1039. "gpio120",
  1040. };
  1041. static const char *const phase_flag9_groups[] = {
  1042. "gpio9",
  1043. };
  1044. static const char *const pll_bist_sync_groups[] = {
  1045. "gpio107",
  1046. };
  1047. static const char *const pll_clk_aux_groups[] = {
  1048. "gpio74",
  1049. };
  1050. static const char *const prng_rosc0_groups[] = {
  1051. "gpio57",
  1052. };
  1053. static const char *const prng_rosc1_groups[] = {
  1054. "gpio58",
  1055. };
  1056. static const char *const prng_rosc2_groups[] = {
  1057. "gpio59",
  1058. };
  1059. static const char *const prng_rosc3_groups[] = {
  1060. "gpio60",
  1061. };
  1062. static const char *const qdss_cti_groups[] = {
  1063. "gpio4", "gpio5", "gpio23", "gpio24", "gpio49", "gpio50",
  1064. "gpio51", "gpio52",
  1065. };
  1066. static const char *const qdss_gpio_groups[] = {
  1067. "gpio57", "gpio58", "gpio97", "gpio106",
  1068. };
  1069. static const char *const qdss_gpio0_groups[] = {
  1070. "gpio59", "gpio107",
  1071. };
  1072. static const char *const qdss_gpio1_groups[] = {
  1073. "gpio60", "gpio108",
  1074. };
  1075. static const char *const qdss_gpio10_groups[] = {
  1076. "gpio36", "gpio100",
  1077. };
  1078. static const char *const qdss_gpio11_groups[] = {
  1079. "gpio61", "gpio101",
  1080. };
  1081. static const char *const qdss_gpio12_groups[] = {
  1082. "gpio62", "gpio102",
  1083. };
  1084. static const char *const qdss_gpio13_groups[] = {
  1085. "gpio33", "gpio103",
  1086. };
  1087. static const char *const qdss_gpio14_groups[] = {
  1088. "gpio34", "gpio104",
  1089. };
  1090. static const char *const qdss_gpio15_groups[] = {
  1091. "gpio75", "gpio105",
  1092. };
  1093. static const char *const qdss_gpio2_groups[] = {
  1094. "gpio72", "gpio109",
  1095. };
  1096. static const char *const qdss_gpio3_groups[] = {
  1097. "gpio71", "gpio110",
  1098. };
  1099. static const char *const qdss_gpio4_groups[] = {
  1100. "gpio70", "gpio111",
  1101. };
  1102. static const char *const qdss_gpio5_groups[] = {
  1103. "gpio63", "gpio112",
  1104. };
  1105. static const char *const qdss_gpio6_groups[] = {
  1106. "gpio64", "gpio113",
  1107. };
  1108. static const char *const qdss_gpio7_groups[] = {
  1109. "gpio65", "gpio114",
  1110. };
  1111. static const char *const qdss_gpio8_groups[] = {
  1112. "gpio73", "gpio98",
  1113. };
  1114. static const char *const qdss_gpio9_groups[] = {
  1115. "gpio74", "gpio99",
  1116. };
  1117. static const char *const qup0_se0_l0_groups[] = {
  1118. "gpio17",
  1119. };
  1120. static const char *const qup0_se0_l1_groups[] = {
  1121. "gpio18",
  1122. };
  1123. static const char *const qup0_se0_l2_groups[] = {
  1124. "gpio19",
  1125. };
  1126. static const char *const qup0_se0_l3_groups[] = {
  1127. "gpio20",
  1128. };
  1129. static const char *const qup0_se1_l0_groups[] = {
  1130. "gpio19",
  1131. };
  1132. static const char *const qup0_se1_l1_groups[] = {
  1133. "gpio20",
  1134. };
  1135. static const char *const qup0_se1_l2_groups[] = {
  1136. "gpio17",
  1137. };
  1138. static const char *const qup0_se1_l3_groups[] = {
  1139. "gpio18",
  1140. };
  1141. static const char *const qup0_se2_l0_groups[] = {
  1142. "gpio33",
  1143. };
  1144. static const char *const qup0_se2_l1_groups[] = {
  1145. "gpio34",
  1146. };
  1147. static const char *const qup0_se2_l2_groups[] = {
  1148. "gpio35",
  1149. };
  1150. static const char *const qup0_se2_l3_groups[] = {
  1151. "gpio36",
  1152. };
  1153. static const char *const qup0_se3_l0_groups[] = {
  1154. "gpio25",
  1155. };
  1156. static const char *const qup0_se3_l1_groups[] = {
  1157. "gpio26",
  1158. };
  1159. static const char *const qup0_se3_l2_groups[] = {
  1160. "gpio27",
  1161. };
  1162. static const char *const qup0_se3_l3_groups[] = {
  1163. "gpio28",
  1164. };
  1165. static const char *const qup0_se4_l0_groups[] = {
  1166. "gpio29",
  1167. };
  1168. static const char *const qup0_se4_l1_groups[] = {
  1169. "gpio30",
  1170. };
  1171. static const char *const qup0_se4_l2_groups[] = {
  1172. "gpio31",
  1173. };
  1174. static const char *const qup0_se4_l3_groups[] = {
  1175. "gpio32",
  1176. };
  1177. static const char *const qup0_se5_l0_groups[] = {
  1178. "gpio21",
  1179. };
  1180. static const char *const qup0_se5_l1_groups[] = {
  1181. "gpio22",
  1182. };
  1183. static const char *const qup0_se5_l2_groups[] = {
  1184. "gpio23",
  1185. };
  1186. static const char *const qup0_se5_l3_groups[] = {
  1187. "gpio24",
  1188. };
  1189. static const char *const qup0_se6_l0_groups[] = {
  1190. "gpio80",
  1191. };
  1192. static const char *const qup0_se6_l1_groups[] = {
  1193. "gpio81",
  1194. };
  1195. static const char *const qup0_se6_l2_groups[] = {
  1196. "gpio82",
  1197. };
  1198. static const char *const qup0_se6_l3_groups[] = {
  1199. "gpio83",
  1200. };
  1201. static const char *const qup0_se7_l0_groups[] = {
  1202. "gpio43",
  1203. };
  1204. static const char *const qup0_se7_l1_groups[] = {
  1205. "gpio44",
  1206. };
  1207. static const char *const qup0_se7_l2_groups[] = {
  1208. "gpio43",
  1209. };
  1210. static const char *const qup0_se7_l3_groups[] = {
  1211. "gpio44",
  1212. };
  1213. static const char *const qup1_se0_l0_groups[] = {
  1214. "gpio37",
  1215. };
  1216. static const char *const qup1_se0_l1_groups[] = {
  1217. "gpio38",
  1218. };
  1219. static const char *const qup1_se0_l2_groups[] = {
  1220. "gpio39",
  1221. };
  1222. static const char *const qup1_se0_l3_groups[] = {
  1223. "gpio40",
  1224. };
  1225. static const char *const qup1_se1_l0_groups[] = {
  1226. "gpio39",
  1227. };
  1228. static const char *const qup1_se1_l1_groups[] = {
  1229. "gpio40",
  1230. };
  1231. static const char *const qup1_se1_l2_groups[] = {
  1232. "gpio37",
  1233. };
  1234. static const char *const qup1_se1_l3_groups[] = {
  1235. "gpio38",
  1236. };
  1237. static const char *const qup1_se2_l0_groups[] = {
  1238. "gpio84",
  1239. };
  1240. static const char *const qup1_se2_l1_groups[] = {
  1241. "gpio85",
  1242. };
  1243. static const char *const qup1_se2_l2_groups[] = {
  1244. "gpio86",
  1245. };
  1246. static const char *const qup1_se2_l3_groups[] = {
  1247. "gpio87",
  1248. };
  1249. static const char *const qup1_se2_l4_groups[] = {
  1250. "gpio88",
  1251. };
  1252. static const char *const qup1_se3_l0_groups[] = {
  1253. "gpio41",
  1254. };
  1255. static const char *const qup1_se3_l1_groups[] = {
  1256. "gpio42",
  1257. };
  1258. static const char *const qup1_se3_l2_groups[] = {
  1259. "gpio41",
  1260. };
  1261. static const char *const qup1_se3_l3_groups[] = {
  1262. "gpio42",
  1263. };
  1264. static const char *const qup1_se4_l0_groups[] = {
  1265. "gpio45",
  1266. };
  1267. static const char *const qup1_se4_l1_groups[] = {
  1268. "gpio46",
  1269. };
  1270. static const char *const qup1_se4_l2_groups[] = {
  1271. "gpio47",
  1272. };
  1273. static const char *const qup1_se4_l3_groups[] = {
  1274. "gpio48",
  1275. };
  1276. static const char *const qup1_se5_l0_groups[] = {
  1277. "gpio49",
  1278. };
  1279. static const char *const qup1_se5_l1_groups[] = {
  1280. "gpio50",
  1281. };
  1282. static const char *const qup1_se5_l2_groups[] = {
  1283. "gpio51",
  1284. };
  1285. static const char *const qup1_se5_l3_groups[] = {
  1286. "gpio52",
  1287. };
  1288. static const char *const qup1_se6_l0_groups[] = {
  1289. "gpio89",
  1290. };
  1291. static const char *const qup1_se6_l1_groups[] = {
  1292. "gpio90",
  1293. };
  1294. static const char *const qup1_se6_l2_groups[] = {
  1295. "gpio91",
  1296. };
  1297. static const char *const qup1_se6_l3_groups[] = {
  1298. "gpio92",
  1299. };
  1300. static const char *const qup1_se7_l0_groups[] = {
  1301. "gpio91",
  1302. };
  1303. static const char *const qup1_se7_l1_groups[] = {
  1304. "gpio92",
  1305. };
  1306. static const char *const qup1_se7_l2_groups[] = {
  1307. "gpio89",
  1308. };
  1309. static const char *const qup1_se7_l3_groups[] = {
  1310. "gpio90",
  1311. };
  1312. static const char *const qup2_se0_l0_groups[] = {
  1313. "gpio10",
  1314. };
  1315. static const char *const qup2_se0_l1_groups[] = {
  1316. "gpio11",
  1317. };
  1318. static const char *const qup2_se0_l2_groups[] = {
  1319. "gpio12",
  1320. };
  1321. static const char *const qup2_se0_l3_groups[] = {
  1322. "gpio13",
  1323. };
  1324. static const char *const qup2_se0_l4_groups[] = {
  1325. "gpio14",
  1326. };
  1327. static const char *const qup2_se0_l5_groups[] = {
  1328. "gpio15",
  1329. };
  1330. static const char *const qup2_se0_l6_groups[] = {
  1331. "gpio16",
  1332. };
  1333. static const char *const sailss_emac0_groups[] = {
  1334. "gpio15", "gpio16",
  1335. };
  1336. static const char *const sailss_ospi_groups[] = {
  1337. "gpio15", "gpio16",
  1338. };
  1339. static const char *const sgmii_phy_intr0_n_groups[] = {
  1340. "gpio4",
  1341. };
  1342. static const char *const tb_trig_sdc1_groups[] = {
  1343. "gpio14",
  1344. };
  1345. static const char *const tb_trig_sdc4_groups[] = {
  1346. "gpio14",
  1347. };
  1348. static const char *const tgu_ch0_trigout_groups[] = {
  1349. "gpio43",
  1350. };
  1351. static const char *const tgu_ch1_trigout_groups[] = {
  1352. "gpio44",
  1353. };
  1354. static const char *const tgu_ch2_trigout_groups[] = {
  1355. "gpio29",
  1356. };
  1357. static const char *const tgu_ch3_trigout_groups[] = {
  1358. "gpio30",
  1359. };
  1360. static const char *const tsense_pwm1_groups[] = {
  1361. "gpio79",
  1362. };
  1363. static const char *const tsense_pwm2_groups[] = {
  1364. "gpio78",
  1365. };
  1366. static const char *const tsense_pwm3_groups[] = {
  1367. "gpio77",
  1368. };
  1369. static const char *const tsense_pwm4_groups[] = {
  1370. "gpio76",
  1371. };
  1372. static const char *const usb2phy_ac_en0_groups[] = {
  1373. "gpio7",
  1374. };
  1375. static const char *const usb2phy_ac_en2_groups[] = {
  1376. "gpio8",
  1377. };
  1378. static const char *const vsense_trigger_mirnat_groups[] = {
  1379. "gpio67",
  1380. };
  1381. static const struct msm_function monaco_auto_functions[] = {
  1382. FUNCTION(gpio),
  1383. FUNCTION(aoss_cti),
  1384. FUNCTION(atest_char0),
  1385. FUNCTION(atest_char1),
  1386. FUNCTION(atest_char2),
  1387. FUNCTION(atest_char3),
  1388. FUNCTION(atest_char_start),
  1389. FUNCTION(atest_usb2),
  1390. FUNCTION(atest_usb20),
  1391. FUNCTION(atest_usb21),
  1392. FUNCTION(atest_usb22),
  1393. FUNCTION(atest_usb23),
  1394. FUNCTION(audio_ref_clk),
  1395. FUNCTION(cam_mclk),
  1396. FUNCTION(cci_async_in0),
  1397. FUNCTION(cci_async_in1),
  1398. FUNCTION(cci_async_in2),
  1399. FUNCTION(cci_async_in3),
  1400. FUNCTION(cci_async_in4),
  1401. FUNCTION(cci_async_in5),
  1402. FUNCTION(cci_i2c_scl0),
  1403. FUNCTION(cci_i2c_scl1),
  1404. FUNCTION(cci_i2c_scl2),
  1405. FUNCTION(cci_i2c_scl3),
  1406. FUNCTION(cci_i2c_scl4),
  1407. FUNCTION(cci_i2c_scl5),
  1408. FUNCTION(cci_i2c_sda0),
  1409. FUNCTION(cci_i2c_sda1),
  1410. FUNCTION(cci_i2c_sda2),
  1411. FUNCTION(cci_i2c_sda3),
  1412. FUNCTION(cci_i2c_sda4),
  1413. FUNCTION(cci_i2c_sda5),
  1414. FUNCTION(cci_timer0),
  1415. FUNCTION(cci_timer1),
  1416. FUNCTION(cci_timer2),
  1417. FUNCTION(cci_timer3),
  1418. FUNCTION(cci_timer4),
  1419. FUNCTION(cci_timer5),
  1420. FUNCTION(cci_timer6),
  1421. FUNCTION(cci_timer7),
  1422. FUNCTION(cci_timer8),
  1423. FUNCTION(cci_timer9),
  1424. FUNCTION(cri_trng),
  1425. FUNCTION(cri_trng0),
  1426. FUNCTION(cri_trng1),
  1427. FUNCTION(dbg_out_clk),
  1428. FUNCTION(ddr_bist_complete),
  1429. FUNCTION(ddr_bist_fail),
  1430. FUNCTION(ddr_bist_start),
  1431. FUNCTION(ddr_bist_stop),
  1432. FUNCTION(ddr_pxi0),
  1433. FUNCTION(ddr_pxi1),
  1434. FUNCTION(ddr_pxi2),
  1435. FUNCTION(ddr_pxi3),
  1436. FUNCTION(edp0_hot),
  1437. FUNCTION(edp0_lcd),
  1438. FUNCTION(edp1_lcd),
  1439. FUNCTION(emac0_mcg0),
  1440. FUNCTION(emac0_mcg1),
  1441. FUNCTION(emac0_mcg2),
  1442. FUNCTION(emac0_mcg3),
  1443. FUNCTION(emac0_mdc),
  1444. FUNCTION(emac0_mdio),
  1445. FUNCTION(emac0_ptp),
  1446. FUNCTION(gcc_gp1),
  1447. FUNCTION(gcc_gp2),
  1448. FUNCTION(gcc_gp3),
  1449. FUNCTION(gcc_gp4),
  1450. FUNCTION(gcc_gp5),
  1451. FUNCTION(hs0_mi2s_data0),
  1452. FUNCTION(hs0_mi2s_data1),
  1453. FUNCTION(hs0_mi2s_sck),
  1454. FUNCTION(hs0_mi2s_ws),
  1455. FUNCTION(hs1_mi2s),
  1456. FUNCTION(hs2_mi2s),
  1457. FUNCTION(ibi_i3c),
  1458. FUNCTION(jitter_bist),
  1459. FUNCTION(mdp0_vsync0_out),
  1460. FUNCTION(mdp0_vsync1_out),
  1461. FUNCTION(mdp0_vsync3_out),
  1462. FUNCTION(mdp0_vsync6_out),
  1463. FUNCTION(mdp0_vsync7_out),
  1464. FUNCTION(mdp_vsync_e),
  1465. FUNCTION(mdp_vsync_p),
  1466. FUNCTION(mdp_vsync_s),
  1467. FUNCTION(mi2s1_data0),
  1468. FUNCTION(mi2s1_data1),
  1469. FUNCTION(mi2s1_sck),
  1470. FUNCTION(mi2s1_ws),
  1471. FUNCTION(mi2s2_data0),
  1472. FUNCTION(mi2s2_data1),
  1473. FUNCTION(mi2s2_sck),
  1474. FUNCTION(mi2s2_ws),
  1475. FUNCTION(mi2s_mclk0),
  1476. FUNCTION(mi2s_mclk1),
  1477. FUNCTION(pcie0_clkreq_n),
  1478. FUNCTION(pcie1_clkreq_n),
  1479. FUNCTION(phase_flag0),
  1480. FUNCTION(phase_flag1),
  1481. FUNCTION(phase_flag10),
  1482. FUNCTION(phase_flag11),
  1483. FUNCTION(phase_flag12),
  1484. FUNCTION(phase_flag13),
  1485. FUNCTION(phase_flag14),
  1486. FUNCTION(phase_flag15),
  1487. FUNCTION(phase_flag16),
  1488. FUNCTION(phase_flag17),
  1489. FUNCTION(phase_flag18),
  1490. FUNCTION(phase_flag19),
  1491. FUNCTION(phase_flag2),
  1492. FUNCTION(phase_flag20),
  1493. FUNCTION(phase_flag21),
  1494. FUNCTION(phase_flag22),
  1495. FUNCTION(phase_flag23),
  1496. FUNCTION(phase_flag24),
  1497. FUNCTION(phase_flag25),
  1498. FUNCTION(phase_flag26),
  1499. FUNCTION(phase_flag27),
  1500. FUNCTION(phase_flag28),
  1501. FUNCTION(phase_flag29),
  1502. FUNCTION(phase_flag3),
  1503. FUNCTION(phase_flag30),
  1504. FUNCTION(phase_flag31),
  1505. FUNCTION(phase_flag4),
  1506. FUNCTION(phase_flag5),
  1507. FUNCTION(phase_flag6),
  1508. FUNCTION(phase_flag7),
  1509. FUNCTION(phase_flag8),
  1510. FUNCTION(phase_flag9),
  1511. FUNCTION(pll_bist_sync),
  1512. FUNCTION(pll_clk_aux),
  1513. FUNCTION(prng_rosc0),
  1514. FUNCTION(prng_rosc1),
  1515. FUNCTION(prng_rosc2),
  1516. FUNCTION(prng_rosc3),
  1517. FUNCTION(qdss_cti),
  1518. FUNCTION(qdss_gpio),
  1519. FUNCTION(qdss_gpio0),
  1520. FUNCTION(qdss_gpio1),
  1521. FUNCTION(qdss_gpio10),
  1522. FUNCTION(qdss_gpio11),
  1523. FUNCTION(qdss_gpio12),
  1524. FUNCTION(qdss_gpio13),
  1525. FUNCTION(qdss_gpio14),
  1526. FUNCTION(qdss_gpio15),
  1527. FUNCTION(qdss_gpio2),
  1528. FUNCTION(qdss_gpio3),
  1529. FUNCTION(qdss_gpio4),
  1530. FUNCTION(qdss_gpio5),
  1531. FUNCTION(qdss_gpio6),
  1532. FUNCTION(qdss_gpio7),
  1533. FUNCTION(qdss_gpio8),
  1534. FUNCTION(qdss_gpio9),
  1535. FUNCTION(qup0_se0_l0),
  1536. FUNCTION(qup0_se0_l1),
  1537. FUNCTION(qup0_se0_l2),
  1538. FUNCTION(qup0_se0_l3),
  1539. FUNCTION(qup0_se1_l0),
  1540. FUNCTION(qup0_se1_l1),
  1541. FUNCTION(qup0_se1_l2),
  1542. FUNCTION(qup0_se1_l3),
  1543. FUNCTION(qup0_se2_l0),
  1544. FUNCTION(qup0_se2_l1),
  1545. FUNCTION(qup0_se2_l2),
  1546. FUNCTION(qup0_se2_l3),
  1547. FUNCTION(qup0_se3_l0),
  1548. FUNCTION(qup0_se3_l1),
  1549. FUNCTION(qup0_se3_l2),
  1550. FUNCTION(qup0_se3_l3),
  1551. FUNCTION(qup0_se4_l0),
  1552. FUNCTION(qup0_se4_l1),
  1553. FUNCTION(qup0_se4_l2),
  1554. FUNCTION(qup0_se4_l3),
  1555. FUNCTION(qup0_se5_l0),
  1556. FUNCTION(qup0_se5_l1),
  1557. FUNCTION(qup0_se5_l2),
  1558. FUNCTION(qup0_se5_l3),
  1559. FUNCTION(qup0_se6_l0),
  1560. FUNCTION(qup0_se6_l1),
  1561. FUNCTION(qup0_se6_l2),
  1562. FUNCTION(qup0_se6_l3),
  1563. FUNCTION(qup0_se7_l0),
  1564. FUNCTION(qup0_se7_l1),
  1565. FUNCTION(qup0_se7_l2),
  1566. FUNCTION(qup0_se7_l3),
  1567. FUNCTION(qup1_se0_l0),
  1568. FUNCTION(qup1_se0_l1),
  1569. FUNCTION(qup1_se0_l2),
  1570. FUNCTION(qup1_se0_l3),
  1571. FUNCTION(qup1_se1_l0),
  1572. FUNCTION(qup1_se1_l1),
  1573. FUNCTION(qup1_se1_l2),
  1574. FUNCTION(qup1_se1_l3),
  1575. FUNCTION(qup1_se2_l0),
  1576. FUNCTION(qup1_se2_l1),
  1577. FUNCTION(qup1_se2_l2),
  1578. FUNCTION(qup1_se2_l3),
  1579. FUNCTION(qup1_se2_l4),
  1580. FUNCTION(qup1_se3_l0),
  1581. FUNCTION(qup1_se3_l1),
  1582. FUNCTION(qup1_se3_l2),
  1583. FUNCTION(qup1_se3_l3),
  1584. FUNCTION(qup1_se4_l0),
  1585. FUNCTION(qup1_se4_l1),
  1586. FUNCTION(qup1_se4_l2),
  1587. FUNCTION(qup1_se4_l3),
  1588. FUNCTION(qup1_se5_l0),
  1589. FUNCTION(qup1_se5_l1),
  1590. FUNCTION(qup1_se5_l2),
  1591. FUNCTION(qup1_se5_l3),
  1592. FUNCTION(qup1_se6_l0),
  1593. FUNCTION(qup1_se6_l1),
  1594. FUNCTION(qup1_se6_l2),
  1595. FUNCTION(qup1_se6_l3),
  1596. FUNCTION(qup1_se7_l0),
  1597. FUNCTION(qup1_se7_l1),
  1598. FUNCTION(qup1_se7_l2),
  1599. FUNCTION(qup1_se7_l3),
  1600. FUNCTION(qup2_se0_l0),
  1601. FUNCTION(qup2_se0_l1),
  1602. FUNCTION(qup2_se0_l2),
  1603. FUNCTION(qup2_se0_l3),
  1604. FUNCTION(qup2_se0_l4),
  1605. FUNCTION(qup2_se0_l5),
  1606. FUNCTION(qup2_se0_l6),
  1607. FUNCTION(sailss_emac0),
  1608. FUNCTION(sailss_ospi),
  1609. FUNCTION(sgmii_phy_intr0_n),
  1610. FUNCTION(tb_trig_sdc1),
  1611. FUNCTION(tb_trig_sdc4),
  1612. FUNCTION(tgu_ch0_trigout),
  1613. FUNCTION(tgu_ch1_trigout),
  1614. FUNCTION(tgu_ch2_trigout),
  1615. FUNCTION(tgu_ch3_trigout),
  1616. FUNCTION(tsense_pwm1),
  1617. FUNCTION(tsense_pwm2),
  1618. FUNCTION(tsense_pwm3),
  1619. FUNCTION(tsense_pwm4),
  1620. FUNCTION(usb2phy_ac_en0),
  1621. FUNCTION(usb2phy_ac_en2),
  1622. FUNCTION(vsense_trigger_mirnat),
  1623. };
  1624. /* Every pin is maintained as a single group, and missing or non-existing pin
  1625. * would be maintained as dummy group to synchronize pin group index with
  1626. * pin descriptor registered with pinctrl core.
  1627. * Clients would not be able to request these dummy pin groups.
  1628. */
  1629. static const struct msm_pingroup monaco_auto_groups[] = {
  1630. [0] = PINGROUP(0, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0x8500C, 0),
  1631. [1] = PINGROUP(1, pcie0_clkreq_n, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1632. 0x8500C, 1),
  1633. [2] = PINGROUP(2, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0x8500C, 2),
  1634. [3] = PINGROUP(3, phase_flag13, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1635. 0x85000, 0),
  1636. [4] = PINGROUP(4, sgmii_phy_intr0_n, qdss_cti, NA, NA, NA, NA, NA, NA,
  1637. NA, NA, 0x85018, 1),
  1638. [5] = PINGROUP(5, emac0_mdc, qdss_cti, NA, NA, NA, NA, NA, NA, NA, NA,
  1639. 0, -1),
  1640. [6] = PINGROUP(6, emac0_mdio, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1641. -1),
  1642. [7] = PINGROUP(7, usb2phy_ac_en0, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1643. -1),
  1644. [8] = PINGROUP(8, usb2phy_ac_en2, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1645. -1),
  1646. [9] = PINGROUP(9, phase_flag9, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1647. 0x85000, 1),
  1648. [10] = PINGROUP(10, qup2_se0_l0, emac0_mcg0, NA, NA, NA, NA, NA, NA, NA,
  1649. NA, 0x85018, 2),
  1650. [11] = PINGROUP(11, qup2_se0_l1, emac0_mcg1, NA, NA, NA, NA, NA, NA, NA,
  1651. NA, 0x85018, 3),
  1652. [12] = PINGROUP(12, qup2_se0_l2, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1653. -1),
  1654. [13] = PINGROUP(13, qup2_se0_l3, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1655. 0x85018, 4),
  1656. [14] = PINGROUP(14, qup2_se0_l4, tb_trig_sdc1, tb_trig_sdc4, NA, NA, NA,
  1657. NA, NA, NA, NA, 0, -1),
  1658. [15] = PINGROUP(15, qup2_se0_l5, NA, sailss_ospi, sailss_emac0, NA, NA,
  1659. NA, NA, NA, NA, 0, -1),
  1660. [16] = PINGROUP(16, qup2_se0_l6, NA, NA, sailss_ospi, sailss_emac0, NA,
  1661. NA, NA, NA, NA, 0x85018, 5),
  1662. [17] = PINGROUP(17, qup0_se0_l0, qup0_se1_l2, ibi_i3c, NA, NA, NA, NA,
  1663. NA, NA, NA, 0x85010, 0),
  1664. [18] = PINGROUP(18, qup0_se0_l1, qup0_se1_l3, ibi_i3c, NA, NA, NA, NA,
  1665. NA, NA, NA, 0x85010, 1),
  1666. [19] = PINGROUP(19, qup0_se1_l0, qup0_se0_l2, cci_timer5, ibi_i3c, NA,
  1667. NA, NA, NA, NA, NA, 0x85010, 2),
  1668. [20] = PINGROUP(20, qup0_se1_l1, qup0_se0_l3, cci_timer6, ibi_i3c, NA,
  1669. NA, NA, NA, NA, NA, 0x85010, 3),
  1670. [21] = PINGROUP(21, qup0_se5_l0, cci_timer7, NA, NA, NA, NA, NA, NA, NA,
  1671. NA, 0x85000, 2),
  1672. [22] = PINGROUP(22, pcie1_clkreq_n, qup0_se5_l1, cci_timer8, NA, NA, NA,
  1673. NA, NA, NA, NA, 0x85000, 3),
  1674. [23] = PINGROUP(23, qup0_se5_l2, cci_timer9, qdss_cti, NA, NA, NA, NA,
  1675. NA, NA, NA, 0x85000, 4),
  1676. [24] = PINGROUP(24, qup0_se5_l3, emac0_ptp, emac0_ptp, qdss_cti,
  1677. emac0_mcg2, NA, NA, NA, NA, NA, 0x85000, 5),
  1678. [25] = PINGROUP(25, qup0_se3_l0, phase_flag4, NA, NA, NA, NA, NA, NA,
  1679. NA, NA, 0x85000, 6),
  1680. [26] = PINGROUP(26, qup0_se3_l1, phase_flag5, NA, NA, NA, NA, NA, NA,
  1681. NA, NA, 0, -1),
  1682. [27] = PINGROUP(27, qup0_se3_l2, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1683. -1),
  1684. [28] = PINGROUP(28, qup0_se3_l3, phase_flag19, NA, NA, NA, NA, NA, NA,
  1685. NA, NA, 0x85000, 7),
  1686. [29] = PINGROUP(29, qup0_se4_l0, cci_i2c_sda1, cci_async_in3, emac0_ptp,
  1687. tgu_ch2_trigout, NA, NA, NA, NA, NA, 0x85000, 8),
  1688. [30] = PINGROUP(30, qup0_se4_l1, cci_i2c_scl1, cci_async_in4, emac0_ptp,
  1689. tgu_ch3_trigout, NA, NA, NA, NA, NA, 0, -1),
  1690. [31] = PINGROUP(31, qup0_se4_l2, cci_i2c_sda3, cci_async_in5, emac0_ptp,
  1691. NA, NA, NA, NA, NA, NA, 0x85000, 9),
  1692. [32] = PINGROUP(32, qup0_se4_l3, cci_i2c_scl3, emac0_ptp, mdp_vsync_s,
  1693. NA, NA, NA, NA, NA, NA, 0x85000, 10),
  1694. [33] = PINGROUP(33, qup0_se2_l0, qdss_gpio13, NA, NA, NA, NA, NA, NA,
  1695. NA, NA, 0x85000, 11),
  1696. [34] = PINGROUP(34, qup0_se2_l1, qdss_gpio14, NA, NA, NA, NA, NA, NA,
  1697. NA, NA, 0, -1),
  1698. [35] = PINGROUP(35, qup0_se2_l2, gcc_gp1, NA, NA, NA, NA, NA, NA, NA,
  1699. NA, 0, -1),
  1700. [36] = PINGROUP(36, qup0_se2_l3, gcc_gp2, qdss_gpio10, NA, NA, NA, NA,
  1701. NA, NA, NA, 0x85000, 12),
  1702. [37] = PINGROUP(37, qup1_se0_l0, ibi_i3c, qup1_se1_l2, aoss_cti, NA, NA,
  1703. NA, NA, NA, NA, 0x85010, 4),
  1704. [38] = PINGROUP(38, qup1_se0_l1, ibi_i3c, qup1_se1_l3, aoss_cti, NA, NA,
  1705. NA, NA, NA, NA, 0x85010, 5),
  1706. [39] = PINGROUP(39, qup1_se1_l0, ibi_i3c, qup1_se0_l2, aoss_cti, NA, NA,
  1707. NA, NA, NA, NA, 0x85010, 6),
  1708. [40] = PINGROUP(40, qup1_se1_l1, ibi_i3c, qup1_se0_l3, aoss_cti, NA, NA,
  1709. NA, NA, NA, NA, 0x85010, 7),
  1710. [41] = PINGROUP(41, qup1_se3_l2, qup1_se3_l0, NA, NA, NA, NA, NA, NA,
  1711. NA, NA, 0, -1),
  1712. [42] = PINGROUP(42, qup1_se3_l3, qup1_se3_l1, mdp_vsync_e, NA, NA, NA,
  1713. NA, NA, NA, NA, 0x85000, 13),
  1714. [43] = PINGROUP(43, qup0_se7_l2, qup0_se7_l0, tgu_ch0_trigout, NA, NA,
  1715. NA, NA, NA, NA, NA, 0, -1),
  1716. [44] = PINGROUP(44, qup0_se7_l3, qup0_se7_l1, tgu_ch1_trigout, NA, NA,
  1717. NA, NA, NA, NA, NA, 0x85000, 14),
  1718. [45] = PINGROUP(45, qup1_se4_l0, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA,
  1719. NA, 0x85000, 15),
  1720. [46] = PINGROUP(46, qup1_se4_l1, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA,
  1721. NA, 0, -1),
  1722. [47] = PINGROUP(47, qup1_se4_l2, hs1_mi2s, NA, NA, NA, NA, NA, NA, NA,
  1723. NA, 0, -1),
  1724. [48] = PINGROUP(48, qup1_se4_l3, hs1_mi2s, edp0_lcd, NA, NA, NA, NA, NA,
  1725. NA, NA, 0x85004, 0),
  1726. [49] = PINGROUP(49, qup1_se5_l0, hs2_mi2s, cci_timer3, qdss_cti,
  1727. edp1_lcd, ddr_pxi1, NA, NA, NA, NA, 0, -1),
  1728. [50] = PINGROUP(50, qup1_se5_l1, hs2_mi2s, cci_timer4, qdss_cti, NA,
  1729. ddr_pxi1, NA, NA, NA, NA, 0, -1),
  1730. [51] = PINGROUP(51, qup1_se5_l2, hs2_mi2s, qdss_cti, NA, NA, NA, NA, NA,
  1731. NA, NA, 0x85004, 1),
  1732. [52] = PINGROUP(52, qup1_se5_l3, hs2_mi2s, qdss_cti, mdp_vsync_p,
  1733. ddr_pxi2, NA, NA, NA, NA, NA, 0x85004, 2),
  1734. [53] = PINGROUP(53, ddr_bist_start, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1735. 0x8500C, 3),
  1736. [54] = PINGROUP(54, cci_i2c_sda5, phase_flag31, ddr_bist_complete, NA,
  1737. NA, NA, NA, NA, NA, NA, 0, -1),
  1738. [55] = PINGROUP(55, cci_i2c_scl5, phase_flag2, ddr_bist_stop, NA, NA,
  1739. NA, NA, NA, NA, NA, 0, -1),
  1740. [56] = PINGROUP(56, phase_flag1, ddr_bist_fail, NA, NA, NA, NA, NA, NA,
  1741. NA, NA, 0x85004, 3),
  1742. [57] = PINGROUP(57, cci_i2c_sda0, prng_rosc0, qdss_gpio, NA, NA, NA, NA,
  1743. NA, NA, NA, 0, -1),
  1744. [58] = PINGROUP(58, cci_i2c_scl0, prng_rosc1, qdss_gpio, NA, NA, NA, NA,
  1745. NA, NA, NA, 0, -1),
  1746. [59] = PINGROUP(59, cci_i2c_sda2, prng_rosc2, qdss_gpio0, NA, NA, NA,
  1747. NA, NA, NA, NA, 0, -1),
  1748. [60] = PINGROUP(60, cci_i2c_scl2, prng_rosc3, qdss_gpio1, NA, NA, NA,
  1749. NA, NA, NA, NA, 0, -1),
  1750. [61] = PINGROUP(61, cci_i2c_sda4, qdss_gpio11, NA, NA, NA, NA, NA, NA,
  1751. NA, NA, 0, -1),
  1752. [62] = PINGROUP(62, cci_i2c_scl4, qdss_gpio12, NA, NA, NA, NA, NA, NA,
  1753. NA, NA, 0, -1),
  1754. [63] = PINGROUP(63, cci_timer0, cci_async_in0, qdss_gpio5, atest_usb2,
  1755. NA, NA, NA, NA, NA, NA, 0, -1),
  1756. [64] = PINGROUP(64, cci_timer1, cci_async_in1, qdss_gpio6, atest_usb23,
  1757. NA, NA, NA, NA, NA, NA, 0, -1),
  1758. [65] = PINGROUP(65, cci_timer2, cci_async_in2, qdss_gpio7, atest_usb22,
  1759. NA, NA, NA, NA, NA, NA, 0, -1),
  1760. [66] = PINGROUP(66, phase_flag0, NA, atest_char_start, NA, NA, NA, NA,
  1761. NA, NA, NA, 0x85004, 4),
  1762. [67] = PINGROUP(67, cam_mclk, vsense_trigger_mirnat, atest_usb21, NA,
  1763. NA, NA, NA, NA, NA, NA, 0x85004, 5),
  1764. [68] = PINGROUP(68, cam_mclk, gcc_gp4, atest_usb22, ddr_pxi0, NA, NA,
  1765. NA, NA, NA, NA, 0x85004, 6),
  1766. [69] = PINGROUP(69, cam_mclk, gcc_gp3, atest_usb23, ddr_pxi0, NA, NA,
  1767. NA, NA, NA, NA, 0x85004, 7),
  1768. [70] = PINGROUP(70, qdss_gpio4, atest_char0, NA, NA, NA, NA, NA, NA, NA,
  1769. NA, 0x85004, 8),
  1770. [71] = PINGROUP(71, qdss_gpio3, atest_char1, NA, NA, NA, NA, NA, NA, NA,
  1771. NA, 0x85004, 9),
  1772. [72] = PINGROUP(72, qdss_gpio2, atest_char2, NA, NA, NA, NA, NA, NA, NA,
  1773. NA, 0x85004, 10),
  1774. [73] = PINGROUP(73, NA, qdss_gpio8, NA, NA, NA, NA, NA, NA, NA, NA,
  1775. 0x85004, 11),
  1776. [74] = PINGROUP(74, pll_clk_aux, qdss_gpio9, atest_usb20, NA, NA, NA,
  1777. NA, NA, NA, NA, 0x85004, 12),
  1778. [75] = PINGROUP(75, NA, dbg_out_clk, qdss_gpio15, atest_usb21, NA, NA,
  1779. NA, NA, NA, NA, 0x85004, 13),
  1780. [76] = PINGROUP(76, gcc_gp5, tsense_pwm4, NA, NA, NA, NA, NA, NA, NA,
  1781. NA, 0x85004, 14),
  1782. [77] = PINGROUP(77, gcc_gp5, tsense_pwm3, NA, NA, NA, NA, NA, NA, NA,
  1783. NA, 0x85010, 8),
  1784. [78] = PINGROUP(78, tsense_pwm2, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1785. 0x8500C, 4),
  1786. [79] = PINGROUP(79, emac0_ptp, emac0_ptp, emac0_mcg3, NA, tsense_pwm1,
  1787. NA, NA, NA, NA, NA, 0x8500C, 5),
  1788. [80] = PINGROUP(80, qup0_se6_l0, mdp0_vsync6_out, NA, atest_usb22,
  1789. ddr_pxi3, NA, NA, NA, NA, NA, 0x85004, 15),
  1790. [81] = PINGROUP(81, qup0_se6_l1, mdp0_vsync7_out, gcc_gp2, NA,
  1791. atest_usb23, ddr_pxi3, NA, NA, NA, NA, 0, -1),
  1792. [82] = PINGROUP(82, qup0_se6_l2, gcc_gp3, NA, NA, NA, NA, NA, NA, NA,
  1793. NA, 0, -1),
  1794. [83] = PINGROUP(83, qup0_se6_l3, gcc_gp4, NA, atest_usb2, ddr_pxi2, NA,
  1795. NA, NA, NA, NA, 0x85008, 0),
  1796. [84] = PINGROUP(84, qup1_se2_l0, gcc_gp1, NA, atest_usb20, NA, NA, NA,
  1797. NA, NA, NA, 0x85008, 1),
  1798. [85] = PINGROUP(85, qup1_se2_l1, NA, atest_usb21, NA, NA, NA, NA, NA,
  1799. NA, NA, 0, -1),
  1800. [86] = PINGROUP(86, qup1_se2_l2, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1801. -1),
  1802. [87] = PINGROUP(87, qup1_se2_l3, NA, atest_usb20, NA, NA, NA, NA, NA,
  1803. NA, NA, 0x85008, 2),
  1804. [88] = PINGROUP(88, qup1_se2_l4, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0,
  1805. -1),
  1806. [89] = PINGROUP(89, qup1_se6_l0, qup1_se7_l2, mdp0_vsync0_out, NA, NA,
  1807. NA, NA, NA, NA, NA, 0x85008, 3),
  1808. [90] = PINGROUP(90, qup1_se6_l1, qup1_se7_l3, mdp0_vsync1_out,
  1809. cri_trng0, NA, NA, NA, NA, NA, NA, 0x85008, 4),
  1810. [91] = PINGROUP(91, qup1_se7_l0, qup1_se6_l2, mdp0_vsync3_out,
  1811. cri_trng1, NA, NA, NA, NA, NA, NA, 0x85008, 5),
  1812. [92] = PINGROUP(92, qup1_se7_l1, qup1_se6_l3, cri_trng, NA, atest_usb2,
  1813. NA, NA, NA, NA, NA, 0x85008, 6),
  1814. [93] = PINGROUP(93, atest_char3, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1815. 0x85008, 7),
  1816. [94] = PINGROUP(94, edp0_hot, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1817. 0x85008, 8),
  1818. [95] = PINGROUP(95, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0x85010, 9),
  1819. [96] = PINGROUP(96, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1820. [97] = PINGROUP(97, mi2s_mclk0, jitter_bist, qdss_gpio, NA, NA, NA, NA,
  1821. NA, NA, NA, 0x85010, 10),
  1822. [98] = PINGROUP(98, mi2s1_sck, phase_flag30, NA, qdss_gpio8, NA, NA, NA,
  1823. NA, NA, NA, 0x85010, 11),
  1824. [99] = PINGROUP(99, mi2s1_ws, phase_flag29, NA, qdss_gpio9, NA, NA, NA,
  1825. NA, NA, NA, 0x85010, 12),
  1826. [100] = PINGROUP(100, mi2s1_data0, phase_flag28, NA, qdss_gpio10, NA,
  1827. NA, NA, NA, NA, NA, 0x85010, 13),
  1828. [101] = PINGROUP(101, mi2s1_data1, phase_flag27, NA, qdss_gpio11, NA,
  1829. NA, NA, NA, NA, NA, 0x85010, 14),
  1830. [102] = PINGROUP(102, mi2s2_sck, phase_flag26, NA, qdss_gpio12, NA, NA,
  1831. NA, NA, NA, NA, 0x85010, 15),
  1832. [103] = PINGROUP(103, mi2s2_ws, phase_flag25, NA, qdss_gpio13, NA, NA,
  1833. NA, NA, NA, NA, 0x85014, 0),
  1834. [104] = PINGROUP(104, mi2s2_data0, phase_flag24, NA, qdss_gpio14, NA,
  1835. NA, NA, NA, NA, NA, 0x85014, 1),
  1836. [105] = PINGROUP(105, mi2s2_data1, audio_ref_clk, phase_flag23, NA,
  1837. qdss_gpio15, NA, NA, NA, NA, NA, 0x85014, 2),
  1838. [106] = PINGROUP(106, hs0_mi2s_sck, phase_flag22, NA, qdss_gpio, NA, NA,
  1839. NA, NA, NA, NA, 0, -1),
  1840. [107] = PINGROUP(107, hs0_mi2s_ws, pll_bist_sync, phase_flag21, NA,
  1841. qdss_gpio0, NA, NA, NA, NA, NA, 0, -1),
  1842. [108] = PINGROUP(108, hs0_mi2s_data0, phase_flag20, NA, qdss_gpio1, NA,
  1843. NA, NA, NA, NA, NA, 0, -1),
  1844. [109] = PINGROUP(109, hs0_mi2s_data1, mi2s_mclk1, qdss_gpio2, NA, NA,
  1845. NA, NA, NA, NA, NA, 0, -1),
  1846. [110] = PINGROUP(110, phase_flag18, NA, qdss_gpio3, NA, NA, NA, NA, NA,
  1847. NA, NA, 0, -1),
  1848. [111] = PINGROUP(111, phase_flag17, NA, qdss_gpio4, NA, NA, NA, NA, NA,
  1849. NA, NA, 0, -1),
  1850. [112] = PINGROUP(112, phase_flag16, NA, qdss_gpio5, NA, NA, NA, NA, NA,
  1851. NA, NA, 0, -1),
  1852. [113] = PINGROUP(113, phase_flag15, NA, qdss_gpio6, NA, NA, NA, NA, NA,
  1853. NA, NA, 0, -1),
  1854. [114] = PINGROUP(114, phase_flag14, NA, qdss_gpio7, NA, NA, NA, NA, NA,
  1855. NA, NA, 0, -1),
  1856. [115] = PINGROUP(115, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1857. [116] = PINGROUP(116, phase_flag12, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1858. 0, -1),
  1859. [117] = PINGROUP(117, phase_flag11, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1860. 0, -1),
  1861. [118] = PINGROUP(118, phase_flag10, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1862. 0, -1),
  1863. [119] = PINGROUP(119, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1864. [120] = PINGROUP(120, phase_flag8, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1865. 0, -1),
  1866. [121] = PINGROUP(121, phase_flag7, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1867. 0, -1),
  1868. [122] = PINGROUP(122, phase_flag6, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1869. 0, -1),
  1870. [123] = PINGROUP(123, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1871. [124] = PINGROUP(124, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1872. [125] = PINGROUP(125, phase_flag3, NA, NA, NA, NA, NA, NA, NA, NA, NA,
  1873. 0, -1),
  1874. [126] = PINGROUP(126, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1875. [127] = PINGROUP(127, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1876. [128] = PINGROUP(128, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1877. [129] = PINGROUP(129, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0x85014,
  1878. 3),
  1879. [130] = PINGROUP(130, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0x85014,
  1880. 4),
  1881. [131] = PINGROUP(131, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1882. [132] = PINGROUP(132, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA, 0, -1),
  1883. [133] = UFS_RESET(ufs_reset, 0x192000),
  1884. };
  1885. static struct pinctrl_qup monaco_auto_qup_regs[] = {
  1886. };
  1887. static const struct msm_gpio_wakeirq_map monaco_auto_pdc_map[] = {
  1888. { 0, 169 }, { 1, 174 }, { 2, 221 }, { 3, 176 }, { 4, 171 }, { 9, 198 },
  1889. { 10, 187 }, { 11, 188 }, { 13, 211 }, { 16, 203 }, { 17, 213 }, { 18, 209 },
  1890. { 19, 201 }, { 20, 230 }, { 21, 231 }, { 22, 175 }, { 23, 170 }, { 24, 232 },
  1891. { 28, 235 }, { 29, 216 }, { 31, 208 }, { 32, 200 }, { 36, 212 }, { 37, 177 },
  1892. { 38, 178 }, { 39, 184 }, { 40, 185 }, { 42, 186 }, { 44, 194 }, { 45, 173 },
  1893. { 48, 195 }, { 51, 215 }, { 52, 197 }, { 53, 192 }, { 56, 193 }, { 66, 238 },
  1894. { 67, 172 }, { 68, 182 }, { 69, 179 }, { 70, 181 }, { 71, 202 }, { 72, 183 },
  1895. { 73, 189 }, { 74, 196 }, { 75, 190 }, { 76, 191 }, { 77, 204 }, { 78, 206 },
  1896. { 79, 207 }, { 83, 214 }, { 84, 205 }, { 87, 237 }, { 89, 225 }, { 90, 217 },
  1897. { 91, 218 }, { 92, 226 }, { 93, 227 }, { 94, 228 }, { 95, 236 }, { 97, 199 },
  1898. { 98, 229 }, { 99, 180 }, { 100, 220 }, { 101, 239 }, { 102, 219 }, { 103, 233 },
  1899. { 104, 234 }, { 105, 223 }, { 129, 210 }, { 130, 222 },
  1900. };
  1901. static struct msm_dir_conn monaco_dir_conn[] = {
  1902. {-1, 0}, {-1, 0}, {-1, 0}, {-1, 0}, {-1, 0},
  1903. {-1, 0}, {-1, 0}, {-1, 0}, {-1, 0}
  1904. };
  1905. static const struct msm_pinctrl_soc_data monaco_auto_pinctrl = {
  1906. .pins = monaco_auto_pins,
  1907. .npins = ARRAY_SIZE(monaco_auto_pins),
  1908. .functions = monaco_auto_functions,
  1909. .nfunctions = ARRAY_SIZE(monaco_auto_functions),
  1910. .groups = monaco_auto_groups,
  1911. .ngroups = ARRAY_SIZE(monaco_auto_groups),
  1912. .ngpios = 134,
  1913. .qup_regs = monaco_auto_qup_regs,
  1914. .nqup_regs = ARRAY_SIZE(monaco_auto_qup_regs),
  1915. .wakeirq_map = monaco_auto_pdc_map,
  1916. .nwakeirq_map = ARRAY_SIZE(monaco_auto_pdc_map),
  1917. .dir_conn = monaco_dir_conn,
  1918. };
  1919. static int monaco_pinctrl_dirconn_list_probe(struct platform_device *pdev)
  1920. {
  1921. int ret, n, dirconn_list_count, m;
  1922. struct device_node *np = pdev->dev.of_node;
  1923. n = of_property_count_elems_of_size(np, "qcom,dirconn-list", sizeof(u32));
  1924. if (n <= 0 || n % 2)
  1925. return -EINVAL;
  1926. m = ARRAY_SIZE(monaco_dir_conn) - 1;
  1927. dirconn_list_count = n / 2;
  1928. for (n = 0; n < dirconn_list_count; n++) {
  1929. ret = of_property_read_u32_index(np, "qcom,dirconn-list",
  1930. n * 2 + 0, &monaco_dir_conn[m].gpio);
  1931. if (ret)
  1932. return ret;
  1933. ret = of_property_read_u32_index(np, "qcom,dirconn-list",
  1934. n * 2 + 1, &monaco_dir_conn[m].irq);
  1935. if (ret)
  1936. return ret;
  1937. m--;
  1938. }
  1939. return 0;
  1940. }
  1941. static const struct of_device_id monaco_auto_pinctrl_of_match[] = {
  1942. { .compatible = "qcom,monaco_auto-pinctrl", .data = &monaco_auto_pinctrl},
  1943. {},
  1944. };
  1945. static int monaco_auto_pinctrl_probe(struct platform_device *pdev)
  1946. {
  1947. const struct msm_pinctrl_soc_data *pinctrl_data;
  1948. struct device *dev = &pdev->dev;
  1949. int len, ret;
  1950. if (of_find_property(pdev->dev.of_node, "qcom,dirconn-list", &len)) {
  1951. ret = monaco_pinctrl_dirconn_list_probe(pdev);
  1952. if (ret) {
  1953. dev_err(&pdev->dev,
  1954. "Unable to parse Direct Connect List\n");
  1955. return ret;
  1956. }
  1957. }
  1958. pinctrl_data = of_device_get_match_data(dev);
  1959. if (!pinctrl_data)
  1960. return -EINVAL;
  1961. return msm_pinctrl_probe(pdev, pinctrl_data);
  1962. }
  1963. static struct platform_driver monaco_auto_pinctrl_driver = {
  1964. .driver = {
  1965. .name = "monaco_auto-pinctrl",
  1966. .of_match_table = monaco_auto_pinctrl_of_match,
  1967. },
  1968. .probe = monaco_auto_pinctrl_probe,
  1969. .remove = msm_pinctrl_remove,
  1970. };
  1971. static int __init monaco_auto_pinctrl_init(void)
  1972. {
  1973. return platform_driver_register(&monaco_auto_pinctrl_driver);
  1974. }
  1975. arch_initcall(monaco_auto_pinctrl_init);
  1976. static void __exit monaco_auto_pinctrl_exit(void)
  1977. {
  1978. platform_driver_unregister(&monaco_auto_pinctrl_driver);
  1979. }
  1980. module_exit(monaco_auto_pinctrl_exit);
  1981. MODULE_DESCRIPTION("QTI monaco_auto pinctrl driver");
  1982. MODULE_LICENSE("GPL");
  1983. MODULE_DEVICE_TABLE(of, monaco_auto_pinctrl_of_match);