pinctrl-msm8998.c 46 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2015-2016, The Linux Foundation. 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 NORTH 0x500000
  11. #define WEST 0x100000
  12. #define EAST 0x900000
  13. #define FUNCTION(fname) \
  14. [msm_mux_##fname] = { \
  15. .name = #fname, \
  16. .groups = fname##_groups, \
  17. .ngroups = ARRAY_SIZE(fname##_groups), \
  18. }
  19. #define PINGROUP(id, base, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
  20. { \
  21. .name = "gpio" #id, \
  22. .pins = gpio##id##_pins, \
  23. .npins = 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 = base + 0x1000 * id, \
  38. .io_reg = base + 0x4 + 0x1000 * id, \
  39. .intr_cfg_reg = base + 0x8 + 0x1000 * id, \
  40. .intr_status_reg = base + 0xc + 0x1000 * id, \
  41. .intr_target_reg = base + 0x8 + 0x1000 * id, \
  42. .mux_bit = 2, \
  43. .pull_bit = 0, \
  44. .drv_bit = 6, \
  45. .oe_bit = 9, \
  46. .in_bit = 0, \
  47. .out_bit = 1, \
  48. .intr_enable_bit = 0, \
  49. .intr_status_bit = 0, \
  50. .intr_target_bit = 5, \
  51. .intr_target_kpss_val = 3, \
  52. .intr_raw_status_bit = 4, \
  53. .intr_polarity_bit = 1, \
  54. .intr_detection_bit = 2, \
  55. .intr_detection_width = 2, \
  56. }
  57. #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
  58. { \
  59. .name = #pg_name, \
  60. .pins = pg_name##_pins, \
  61. .npins = ARRAY_SIZE(pg_name##_pins), \
  62. .ctl_reg = ctl, \
  63. .io_reg = 0, \
  64. .intr_cfg_reg = 0, \
  65. .intr_status_reg = 0, \
  66. .intr_target_reg = 0, \
  67. .mux_bit = -1, \
  68. .pull_bit = pull, \
  69. .drv_bit = drv, \
  70. .oe_bit = -1, \
  71. .in_bit = -1, \
  72. .out_bit = -1, \
  73. .intr_enable_bit = -1, \
  74. .intr_status_bit = -1, \
  75. .intr_target_bit = -1, \
  76. .intr_raw_status_bit = -1, \
  77. .intr_polarity_bit = -1, \
  78. .intr_detection_bit = -1, \
  79. .intr_detection_width = -1, \
  80. }
  81. #define UFS_RESET(pg_name, offset) \
  82. { \
  83. .name = #pg_name, \
  84. .pins = pg_name##_pins, \
  85. .npins = ARRAY_SIZE(pg_name##_pins), \
  86. .ctl_reg = offset, \
  87. .io_reg = offset + 0x4, \
  88. .intr_cfg_reg = 0, \
  89. .intr_status_reg = 0, \
  90. .intr_target_reg = 0, \
  91. .mux_bit = -1, \
  92. .pull_bit = 3, \
  93. .drv_bit = 0, \
  94. .oe_bit = -1, \
  95. .in_bit = -1, \
  96. .out_bit = 0, \
  97. .intr_enable_bit = -1, \
  98. .intr_status_bit = -1, \
  99. .intr_target_bit = -1, \
  100. .intr_raw_status_bit = -1, \
  101. .intr_polarity_bit = -1, \
  102. .intr_detection_bit = -1, \
  103. .intr_detection_width = -1, \
  104. }
  105. static const struct pinctrl_pin_desc msm8998_pins[] = {
  106. PINCTRL_PIN(0, "GPIO_0"),
  107. PINCTRL_PIN(1, "GPIO_1"),
  108. PINCTRL_PIN(2, "GPIO_2"),
  109. PINCTRL_PIN(3, "GPIO_3"),
  110. PINCTRL_PIN(4, "GPIO_4"),
  111. PINCTRL_PIN(5, "GPIO_5"),
  112. PINCTRL_PIN(6, "GPIO_6"),
  113. PINCTRL_PIN(7, "GPIO_7"),
  114. PINCTRL_PIN(8, "GPIO_8"),
  115. PINCTRL_PIN(9, "GPIO_9"),
  116. PINCTRL_PIN(10, "GPIO_10"),
  117. PINCTRL_PIN(11, "GPIO_11"),
  118. PINCTRL_PIN(12, "GPIO_12"),
  119. PINCTRL_PIN(13, "GPIO_13"),
  120. PINCTRL_PIN(14, "GPIO_14"),
  121. PINCTRL_PIN(15, "GPIO_15"),
  122. PINCTRL_PIN(16, "GPIO_16"),
  123. PINCTRL_PIN(17, "GPIO_17"),
  124. PINCTRL_PIN(18, "GPIO_18"),
  125. PINCTRL_PIN(19, "GPIO_19"),
  126. PINCTRL_PIN(20, "GPIO_20"),
  127. PINCTRL_PIN(21, "GPIO_21"),
  128. PINCTRL_PIN(22, "GPIO_22"),
  129. PINCTRL_PIN(23, "GPIO_23"),
  130. PINCTRL_PIN(24, "GPIO_24"),
  131. PINCTRL_PIN(25, "GPIO_25"),
  132. PINCTRL_PIN(26, "GPIO_26"),
  133. PINCTRL_PIN(27, "GPIO_27"),
  134. PINCTRL_PIN(28, "GPIO_28"),
  135. PINCTRL_PIN(29, "GPIO_29"),
  136. PINCTRL_PIN(30, "GPIO_30"),
  137. PINCTRL_PIN(31, "GPIO_31"),
  138. PINCTRL_PIN(32, "GPIO_32"),
  139. PINCTRL_PIN(33, "GPIO_33"),
  140. PINCTRL_PIN(34, "GPIO_34"),
  141. PINCTRL_PIN(35, "GPIO_35"),
  142. PINCTRL_PIN(36, "GPIO_36"),
  143. PINCTRL_PIN(37, "GPIO_37"),
  144. PINCTRL_PIN(38, "GPIO_38"),
  145. PINCTRL_PIN(39, "GPIO_39"),
  146. PINCTRL_PIN(40, "GPIO_40"),
  147. PINCTRL_PIN(41, "GPIO_41"),
  148. PINCTRL_PIN(42, "GPIO_42"),
  149. PINCTRL_PIN(43, "GPIO_43"),
  150. PINCTRL_PIN(44, "GPIO_44"),
  151. PINCTRL_PIN(45, "GPIO_45"),
  152. PINCTRL_PIN(46, "GPIO_46"),
  153. PINCTRL_PIN(47, "GPIO_47"),
  154. PINCTRL_PIN(48, "GPIO_48"),
  155. PINCTRL_PIN(49, "GPIO_49"),
  156. PINCTRL_PIN(50, "GPIO_50"),
  157. PINCTRL_PIN(51, "GPIO_51"),
  158. PINCTRL_PIN(52, "GPIO_52"),
  159. PINCTRL_PIN(53, "GPIO_53"),
  160. PINCTRL_PIN(54, "GPIO_54"),
  161. PINCTRL_PIN(55, "GPIO_55"),
  162. PINCTRL_PIN(56, "GPIO_56"),
  163. PINCTRL_PIN(57, "GPIO_57"),
  164. PINCTRL_PIN(58, "GPIO_58"),
  165. PINCTRL_PIN(59, "GPIO_59"),
  166. PINCTRL_PIN(60, "GPIO_60"),
  167. PINCTRL_PIN(61, "GPIO_61"),
  168. PINCTRL_PIN(62, "GPIO_62"),
  169. PINCTRL_PIN(63, "GPIO_63"),
  170. PINCTRL_PIN(64, "GPIO_64"),
  171. PINCTRL_PIN(65, "GPIO_65"),
  172. PINCTRL_PIN(66, "GPIO_66"),
  173. PINCTRL_PIN(67, "GPIO_67"),
  174. PINCTRL_PIN(68, "GPIO_68"),
  175. PINCTRL_PIN(69, "GPIO_69"),
  176. PINCTRL_PIN(70, "GPIO_70"),
  177. PINCTRL_PIN(71, "GPIO_71"),
  178. PINCTRL_PIN(72, "GPIO_72"),
  179. PINCTRL_PIN(73, "GPIO_73"),
  180. PINCTRL_PIN(74, "GPIO_74"),
  181. PINCTRL_PIN(75, "GPIO_75"),
  182. PINCTRL_PIN(76, "GPIO_76"),
  183. PINCTRL_PIN(77, "GPIO_77"),
  184. PINCTRL_PIN(78, "GPIO_78"),
  185. PINCTRL_PIN(79, "GPIO_79"),
  186. PINCTRL_PIN(80, "GPIO_80"),
  187. PINCTRL_PIN(81, "GPIO_81"),
  188. PINCTRL_PIN(82, "GPIO_82"),
  189. PINCTRL_PIN(83, "GPIO_83"),
  190. PINCTRL_PIN(84, "GPIO_84"),
  191. PINCTRL_PIN(85, "GPIO_85"),
  192. PINCTRL_PIN(86, "GPIO_86"),
  193. PINCTRL_PIN(87, "GPIO_87"),
  194. PINCTRL_PIN(88, "GPIO_88"),
  195. PINCTRL_PIN(89, "GPIO_89"),
  196. PINCTRL_PIN(90, "GPIO_90"),
  197. PINCTRL_PIN(91, "GPIO_91"),
  198. PINCTRL_PIN(92, "GPIO_92"),
  199. PINCTRL_PIN(93, "GPIO_93"),
  200. PINCTRL_PIN(94, "GPIO_94"),
  201. PINCTRL_PIN(95, "GPIO_95"),
  202. PINCTRL_PIN(96, "GPIO_96"),
  203. PINCTRL_PIN(97, "GPIO_97"),
  204. PINCTRL_PIN(98, "GPIO_98"),
  205. PINCTRL_PIN(99, "GPIO_99"),
  206. PINCTRL_PIN(100, "GPIO_100"),
  207. PINCTRL_PIN(101, "GPIO_101"),
  208. PINCTRL_PIN(102, "GPIO_102"),
  209. PINCTRL_PIN(103, "GPIO_103"),
  210. PINCTRL_PIN(104, "GPIO_104"),
  211. PINCTRL_PIN(105, "GPIO_105"),
  212. PINCTRL_PIN(106, "GPIO_106"),
  213. PINCTRL_PIN(107, "GPIO_107"),
  214. PINCTRL_PIN(108, "GPIO_108"),
  215. PINCTRL_PIN(109, "GPIO_109"),
  216. PINCTRL_PIN(110, "GPIO_110"),
  217. PINCTRL_PIN(111, "GPIO_111"),
  218. PINCTRL_PIN(112, "GPIO_112"),
  219. PINCTRL_PIN(113, "GPIO_113"),
  220. PINCTRL_PIN(114, "GPIO_114"),
  221. PINCTRL_PIN(115, "GPIO_115"),
  222. PINCTRL_PIN(116, "GPIO_116"),
  223. PINCTRL_PIN(117, "GPIO_117"),
  224. PINCTRL_PIN(118, "GPIO_118"),
  225. PINCTRL_PIN(119, "GPIO_119"),
  226. PINCTRL_PIN(120, "GPIO_120"),
  227. PINCTRL_PIN(121, "GPIO_121"),
  228. PINCTRL_PIN(122, "GPIO_122"),
  229. PINCTRL_PIN(123, "GPIO_123"),
  230. PINCTRL_PIN(124, "GPIO_124"),
  231. PINCTRL_PIN(125, "GPIO_125"),
  232. PINCTRL_PIN(126, "GPIO_126"),
  233. PINCTRL_PIN(127, "GPIO_127"),
  234. PINCTRL_PIN(128, "GPIO_128"),
  235. PINCTRL_PIN(129, "GPIO_129"),
  236. PINCTRL_PIN(130, "GPIO_130"),
  237. PINCTRL_PIN(131, "GPIO_131"),
  238. PINCTRL_PIN(132, "GPIO_132"),
  239. PINCTRL_PIN(133, "GPIO_133"),
  240. PINCTRL_PIN(134, "GPIO_134"),
  241. PINCTRL_PIN(135, "GPIO_135"),
  242. PINCTRL_PIN(136, "GPIO_136"),
  243. PINCTRL_PIN(137, "GPIO_137"),
  244. PINCTRL_PIN(138, "GPIO_138"),
  245. PINCTRL_PIN(139, "GPIO_139"),
  246. PINCTRL_PIN(140, "GPIO_140"),
  247. PINCTRL_PIN(141, "GPIO_141"),
  248. PINCTRL_PIN(142, "GPIO_142"),
  249. PINCTRL_PIN(143, "GPIO_143"),
  250. PINCTRL_PIN(144, "GPIO_144"),
  251. PINCTRL_PIN(145, "GPIO_145"),
  252. PINCTRL_PIN(146, "GPIO_146"),
  253. PINCTRL_PIN(147, "GPIO_147"),
  254. PINCTRL_PIN(148, "GPIO_148"),
  255. PINCTRL_PIN(149, "GPIO_149"),
  256. PINCTRL_PIN(150, "SDC2_CLK"),
  257. PINCTRL_PIN(151, "SDC2_CMD"),
  258. PINCTRL_PIN(152, "SDC2_DATA"),
  259. PINCTRL_PIN(153, "UFS_RESET"),
  260. };
  261. #define DECLARE_MSM_GPIO_PINS(pin) \
  262. static const unsigned int gpio##pin##_pins[] = { pin }
  263. DECLARE_MSM_GPIO_PINS(0);
  264. DECLARE_MSM_GPIO_PINS(1);
  265. DECLARE_MSM_GPIO_PINS(2);
  266. DECLARE_MSM_GPIO_PINS(3);
  267. DECLARE_MSM_GPIO_PINS(4);
  268. DECLARE_MSM_GPIO_PINS(5);
  269. DECLARE_MSM_GPIO_PINS(6);
  270. DECLARE_MSM_GPIO_PINS(7);
  271. DECLARE_MSM_GPIO_PINS(8);
  272. DECLARE_MSM_GPIO_PINS(9);
  273. DECLARE_MSM_GPIO_PINS(10);
  274. DECLARE_MSM_GPIO_PINS(11);
  275. DECLARE_MSM_GPIO_PINS(12);
  276. DECLARE_MSM_GPIO_PINS(13);
  277. DECLARE_MSM_GPIO_PINS(14);
  278. DECLARE_MSM_GPIO_PINS(15);
  279. DECLARE_MSM_GPIO_PINS(16);
  280. DECLARE_MSM_GPIO_PINS(17);
  281. DECLARE_MSM_GPIO_PINS(18);
  282. DECLARE_MSM_GPIO_PINS(19);
  283. DECLARE_MSM_GPIO_PINS(20);
  284. DECLARE_MSM_GPIO_PINS(21);
  285. DECLARE_MSM_GPIO_PINS(22);
  286. DECLARE_MSM_GPIO_PINS(23);
  287. DECLARE_MSM_GPIO_PINS(24);
  288. DECLARE_MSM_GPIO_PINS(25);
  289. DECLARE_MSM_GPIO_PINS(26);
  290. DECLARE_MSM_GPIO_PINS(27);
  291. DECLARE_MSM_GPIO_PINS(28);
  292. DECLARE_MSM_GPIO_PINS(29);
  293. DECLARE_MSM_GPIO_PINS(30);
  294. DECLARE_MSM_GPIO_PINS(31);
  295. DECLARE_MSM_GPIO_PINS(32);
  296. DECLARE_MSM_GPIO_PINS(33);
  297. DECLARE_MSM_GPIO_PINS(34);
  298. DECLARE_MSM_GPIO_PINS(35);
  299. DECLARE_MSM_GPIO_PINS(36);
  300. DECLARE_MSM_GPIO_PINS(37);
  301. DECLARE_MSM_GPIO_PINS(38);
  302. DECLARE_MSM_GPIO_PINS(39);
  303. DECLARE_MSM_GPIO_PINS(40);
  304. DECLARE_MSM_GPIO_PINS(41);
  305. DECLARE_MSM_GPIO_PINS(42);
  306. DECLARE_MSM_GPIO_PINS(43);
  307. DECLARE_MSM_GPIO_PINS(44);
  308. DECLARE_MSM_GPIO_PINS(45);
  309. DECLARE_MSM_GPIO_PINS(46);
  310. DECLARE_MSM_GPIO_PINS(47);
  311. DECLARE_MSM_GPIO_PINS(48);
  312. DECLARE_MSM_GPIO_PINS(49);
  313. DECLARE_MSM_GPIO_PINS(50);
  314. DECLARE_MSM_GPIO_PINS(51);
  315. DECLARE_MSM_GPIO_PINS(52);
  316. DECLARE_MSM_GPIO_PINS(53);
  317. DECLARE_MSM_GPIO_PINS(54);
  318. DECLARE_MSM_GPIO_PINS(55);
  319. DECLARE_MSM_GPIO_PINS(56);
  320. DECLARE_MSM_GPIO_PINS(57);
  321. DECLARE_MSM_GPIO_PINS(58);
  322. DECLARE_MSM_GPIO_PINS(59);
  323. DECLARE_MSM_GPIO_PINS(60);
  324. DECLARE_MSM_GPIO_PINS(61);
  325. DECLARE_MSM_GPIO_PINS(62);
  326. DECLARE_MSM_GPIO_PINS(63);
  327. DECLARE_MSM_GPIO_PINS(64);
  328. DECLARE_MSM_GPIO_PINS(65);
  329. DECLARE_MSM_GPIO_PINS(66);
  330. DECLARE_MSM_GPIO_PINS(67);
  331. DECLARE_MSM_GPIO_PINS(68);
  332. DECLARE_MSM_GPIO_PINS(69);
  333. DECLARE_MSM_GPIO_PINS(70);
  334. DECLARE_MSM_GPIO_PINS(71);
  335. DECLARE_MSM_GPIO_PINS(72);
  336. DECLARE_MSM_GPIO_PINS(73);
  337. DECLARE_MSM_GPIO_PINS(74);
  338. DECLARE_MSM_GPIO_PINS(75);
  339. DECLARE_MSM_GPIO_PINS(76);
  340. DECLARE_MSM_GPIO_PINS(77);
  341. DECLARE_MSM_GPIO_PINS(78);
  342. DECLARE_MSM_GPIO_PINS(79);
  343. DECLARE_MSM_GPIO_PINS(80);
  344. DECLARE_MSM_GPIO_PINS(81);
  345. DECLARE_MSM_GPIO_PINS(82);
  346. DECLARE_MSM_GPIO_PINS(83);
  347. DECLARE_MSM_GPIO_PINS(84);
  348. DECLARE_MSM_GPIO_PINS(85);
  349. DECLARE_MSM_GPIO_PINS(86);
  350. DECLARE_MSM_GPIO_PINS(87);
  351. DECLARE_MSM_GPIO_PINS(88);
  352. DECLARE_MSM_GPIO_PINS(89);
  353. DECLARE_MSM_GPIO_PINS(90);
  354. DECLARE_MSM_GPIO_PINS(91);
  355. DECLARE_MSM_GPIO_PINS(92);
  356. DECLARE_MSM_GPIO_PINS(93);
  357. DECLARE_MSM_GPIO_PINS(94);
  358. DECLARE_MSM_GPIO_PINS(95);
  359. DECLARE_MSM_GPIO_PINS(96);
  360. DECLARE_MSM_GPIO_PINS(97);
  361. DECLARE_MSM_GPIO_PINS(98);
  362. DECLARE_MSM_GPIO_PINS(99);
  363. DECLARE_MSM_GPIO_PINS(100);
  364. DECLARE_MSM_GPIO_PINS(101);
  365. DECLARE_MSM_GPIO_PINS(102);
  366. DECLARE_MSM_GPIO_PINS(103);
  367. DECLARE_MSM_GPIO_PINS(104);
  368. DECLARE_MSM_GPIO_PINS(105);
  369. DECLARE_MSM_GPIO_PINS(106);
  370. DECLARE_MSM_GPIO_PINS(107);
  371. DECLARE_MSM_GPIO_PINS(108);
  372. DECLARE_MSM_GPIO_PINS(109);
  373. DECLARE_MSM_GPIO_PINS(110);
  374. DECLARE_MSM_GPIO_PINS(111);
  375. DECLARE_MSM_GPIO_PINS(112);
  376. DECLARE_MSM_GPIO_PINS(113);
  377. DECLARE_MSM_GPIO_PINS(114);
  378. DECLARE_MSM_GPIO_PINS(115);
  379. DECLARE_MSM_GPIO_PINS(116);
  380. DECLARE_MSM_GPIO_PINS(117);
  381. DECLARE_MSM_GPIO_PINS(118);
  382. DECLARE_MSM_GPIO_PINS(119);
  383. DECLARE_MSM_GPIO_PINS(120);
  384. DECLARE_MSM_GPIO_PINS(121);
  385. DECLARE_MSM_GPIO_PINS(122);
  386. DECLARE_MSM_GPIO_PINS(123);
  387. DECLARE_MSM_GPIO_PINS(124);
  388. DECLARE_MSM_GPIO_PINS(125);
  389. DECLARE_MSM_GPIO_PINS(126);
  390. DECLARE_MSM_GPIO_PINS(127);
  391. DECLARE_MSM_GPIO_PINS(128);
  392. DECLARE_MSM_GPIO_PINS(129);
  393. DECLARE_MSM_GPIO_PINS(130);
  394. DECLARE_MSM_GPIO_PINS(131);
  395. DECLARE_MSM_GPIO_PINS(132);
  396. DECLARE_MSM_GPIO_PINS(133);
  397. DECLARE_MSM_GPIO_PINS(134);
  398. DECLARE_MSM_GPIO_PINS(135);
  399. DECLARE_MSM_GPIO_PINS(136);
  400. DECLARE_MSM_GPIO_PINS(137);
  401. DECLARE_MSM_GPIO_PINS(138);
  402. DECLARE_MSM_GPIO_PINS(139);
  403. DECLARE_MSM_GPIO_PINS(140);
  404. DECLARE_MSM_GPIO_PINS(141);
  405. DECLARE_MSM_GPIO_PINS(142);
  406. DECLARE_MSM_GPIO_PINS(143);
  407. DECLARE_MSM_GPIO_PINS(144);
  408. DECLARE_MSM_GPIO_PINS(145);
  409. DECLARE_MSM_GPIO_PINS(146);
  410. DECLARE_MSM_GPIO_PINS(147);
  411. DECLARE_MSM_GPIO_PINS(148);
  412. DECLARE_MSM_GPIO_PINS(149);
  413. static const unsigned int sdc2_clk_pins[] = { 150 };
  414. static const unsigned int sdc2_cmd_pins[] = { 151 };
  415. static const unsigned int sdc2_data_pins[] = { 152 };
  416. static const unsigned int ufs_reset_pins[] = { 153 };
  417. enum msm8998_functions {
  418. msm_mux_adsp_ext,
  419. msm_mux_agera_pll,
  420. msm_mux_atest_char,
  421. msm_mux_atest_gpsadc0,
  422. msm_mux_atest_gpsadc1,
  423. msm_mux_atest_tsens,
  424. msm_mux_atest_tsens2,
  425. msm_mux_atest_usb1,
  426. msm_mux_atest_usb10,
  427. msm_mux_atest_usb11,
  428. msm_mux_atest_usb12,
  429. msm_mux_atest_usb13,
  430. msm_mux_audio_ref,
  431. msm_mux_bimc_dte0,
  432. msm_mux_bimc_dte1,
  433. msm_mux_blsp10_spi,
  434. msm_mux_blsp10_spi_a,
  435. msm_mux_blsp10_spi_b,
  436. msm_mux_blsp11_i2c,
  437. msm_mux_blsp1_spi,
  438. msm_mux_blsp1_spi_a,
  439. msm_mux_blsp1_spi_b,
  440. msm_mux_blsp2_spi,
  441. msm_mux_blsp9_spi,
  442. msm_mux_blsp_i2c1,
  443. msm_mux_blsp_i2c10,
  444. msm_mux_blsp_i2c11,
  445. msm_mux_blsp_i2c12,
  446. msm_mux_blsp_i2c2,
  447. msm_mux_blsp_i2c3,
  448. msm_mux_blsp_i2c4,
  449. msm_mux_blsp_i2c5,
  450. msm_mux_blsp_i2c6,
  451. msm_mux_blsp_i2c7,
  452. msm_mux_blsp_i2c8,
  453. msm_mux_blsp_i2c9,
  454. msm_mux_blsp_spi1,
  455. msm_mux_blsp_spi10,
  456. msm_mux_blsp_spi11,
  457. msm_mux_blsp_spi12,
  458. msm_mux_blsp_spi2,
  459. msm_mux_blsp_spi3,
  460. msm_mux_blsp_spi4,
  461. msm_mux_blsp_spi5,
  462. msm_mux_blsp_spi6,
  463. msm_mux_blsp_spi7,
  464. msm_mux_blsp_spi8,
  465. msm_mux_blsp_spi9,
  466. msm_mux_blsp_uart1_a,
  467. msm_mux_blsp_uart1_b,
  468. msm_mux_blsp_uart2_a,
  469. msm_mux_blsp_uart2_b,
  470. msm_mux_blsp_uart3_a,
  471. msm_mux_blsp_uart3_b,
  472. msm_mux_blsp_uart7_a,
  473. msm_mux_blsp_uart7_b,
  474. msm_mux_blsp_uart8,
  475. msm_mux_blsp_uart8_a,
  476. msm_mux_blsp_uart8_b,
  477. msm_mux_blsp_uart9_a,
  478. msm_mux_blsp_uart9_b,
  479. msm_mux_blsp_uim1_a,
  480. msm_mux_blsp_uim1_b,
  481. msm_mux_blsp_uim2_a,
  482. msm_mux_blsp_uim2_b,
  483. msm_mux_blsp_uim3_a,
  484. msm_mux_blsp_uim3_b,
  485. msm_mux_blsp_uim7_a,
  486. msm_mux_blsp_uim7_b,
  487. msm_mux_blsp_uim8_a,
  488. msm_mux_blsp_uim8_b,
  489. msm_mux_blsp_uim9_a,
  490. msm_mux_blsp_uim9_b,
  491. msm_mux_bt_reset,
  492. msm_mux_btfm_slimbus,
  493. msm_mux_cam_mclk,
  494. msm_mux_cci_async,
  495. msm_mux_cci_i2c,
  496. msm_mux_cci_timer0,
  497. msm_mux_cci_timer1,
  498. msm_mux_cci_timer2,
  499. msm_mux_cci_timer3,
  500. msm_mux_cci_timer4,
  501. msm_mux_cri_trng,
  502. msm_mux_cri_trng0,
  503. msm_mux_cri_trng1,
  504. msm_mux_dbg_out,
  505. msm_mux_ddr_bist,
  506. msm_mux_edp_hot,
  507. msm_mux_edp_lcd,
  508. msm_mux_gcc_gp1_a,
  509. msm_mux_gcc_gp1_b,
  510. msm_mux_gcc_gp2_a,
  511. msm_mux_gcc_gp2_b,
  512. msm_mux_gcc_gp3_a,
  513. msm_mux_gcc_gp3_b,
  514. msm_mux_gpio,
  515. msm_mux_hdmi_cec,
  516. msm_mux_hdmi_ddc,
  517. msm_mux_hdmi_hot,
  518. msm_mux_hdmi_rcv,
  519. msm_mux_isense_dbg,
  520. msm_mux_jitter_bist,
  521. msm_mux_ldo_en,
  522. msm_mux_ldo_update,
  523. msm_mux_lpass_slimbus,
  524. msm_mux_m_voc,
  525. msm_mux_mdp_vsync,
  526. msm_mux_mdp_vsync0,
  527. msm_mux_mdp_vsync1,
  528. msm_mux_mdp_vsync2,
  529. msm_mux_mdp_vsync3,
  530. msm_mux_mdp_vsync_a,
  531. msm_mux_mdp_vsync_b,
  532. msm_mux_modem_tsync,
  533. msm_mux_mss_lte,
  534. msm_mux_nav_dr,
  535. msm_mux_nav_pps,
  536. msm_mux_pa_indicator,
  537. msm_mux_pci_e0,
  538. msm_mux_phase_flag,
  539. msm_mux_pll_bypassnl,
  540. msm_mux_pll_reset,
  541. msm_mux_pri_mi2s,
  542. msm_mux_pri_mi2s_ws,
  543. msm_mux_prng_rosc,
  544. msm_mux_pwr_crypto,
  545. msm_mux_pwr_modem,
  546. msm_mux_pwr_nav,
  547. msm_mux_qdss_cti0_a,
  548. msm_mux_qdss_cti0_b,
  549. msm_mux_qdss_cti1_a,
  550. msm_mux_qdss_cti1_b,
  551. msm_mux_qdss,
  552. msm_mux_qlink_enable,
  553. msm_mux_qlink_request,
  554. msm_mux_qua_mi2s,
  555. msm_mux_sd_card,
  556. msm_mux_sd_write,
  557. msm_mux_sdc40,
  558. msm_mux_sdc41,
  559. msm_mux_sdc42,
  560. msm_mux_sdc43,
  561. msm_mux_sdc4_clk,
  562. msm_mux_sdc4_cmd,
  563. msm_mux_sec_mi2s,
  564. msm_mux_sp_cmu,
  565. msm_mux_spkr_i2s,
  566. msm_mux_ssbi1,
  567. msm_mux_ssc_irq,
  568. msm_mux_ter_mi2s,
  569. msm_mux_tgu_ch0,
  570. msm_mux_tgu_ch1,
  571. msm_mux_tsense_pwm1,
  572. msm_mux_tsense_pwm2,
  573. msm_mux_tsif1_clk,
  574. msm_mux_tsif1_data,
  575. msm_mux_tsif1_en,
  576. msm_mux_tsif1_error,
  577. msm_mux_tsif1_sync,
  578. msm_mux_tsif2_clk,
  579. msm_mux_tsif2_data,
  580. msm_mux_tsif2_en,
  581. msm_mux_tsif2_error,
  582. msm_mux_tsif2_sync,
  583. msm_mux_uim1_clk,
  584. msm_mux_uim1_data,
  585. msm_mux_uim1_present,
  586. msm_mux_uim1_reset,
  587. msm_mux_uim2_clk,
  588. msm_mux_uim2_data,
  589. msm_mux_uim2_present,
  590. msm_mux_uim2_reset,
  591. msm_mux_uim_batt,
  592. msm_mux_usb_phy,
  593. msm_mux_vfr_1,
  594. msm_mux_vsense_clkout,
  595. msm_mux_vsense_data0,
  596. msm_mux_vsense_data1,
  597. msm_mux_vsense_mode,
  598. msm_mux_wlan1_adc0,
  599. msm_mux_wlan1_adc1,
  600. msm_mux_wlan2_adc0,
  601. msm_mux_wlan2_adc1,
  602. msm_mux__,
  603. };
  604. static const char * const gpio_groups[] = {
  605. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  606. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  607. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  608. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  609. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  610. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  611. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  612. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  613. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  614. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  615. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  616. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
  617. "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
  618. "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
  619. "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
  620. "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
  621. "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
  622. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
  623. "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128",
  624. "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134",
  625. "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140",
  626. "gpio141", "gpio142", "gpio143", "gpio144", "gpio145", "gpio146",
  627. "gpio147", "gpio148", "gpio149",
  628. };
  629. static const char * const blsp_spi1_groups[] = {
  630. "gpio0", "gpio1", "gpio2", "gpio3",
  631. };
  632. static const char * const blsp_uim1_a_groups[] = {
  633. "gpio0", "gpio1",
  634. };
  635. static const char * const blsp_uart1_a_groups[] = {
  636. "gpio0", "gpio1", "gpio2", "gpio3",
  637. };
  638. static const char * const blsp_i2c1_groups[] = {
  639. "gpio2", "gpio3",
  640. };
  641. static const char * const blsp_spi8_groups[] = {
  642. "gpio4", "gpio5", "gpio6", "gpio7",
  643. };
  644. static const char * const blsp_uart8_a_groups[] = {
  645. "gpio4", "gpio5", "gpio6", "gpio7",
  646. };
  647. static const char * const blsp_uim8_a_groups[] = {
  648. "gpio4", "gpio5",
  649. };
  650. static const char * const qdss_cti0_b_groups[] = {
  651. "gpio4", "gpio5",
  652. };
  653. static const char * const blsp_i2c8_groups[] = {
  654. "gpio6", "gpio7",
  655. };
  656. static const char * const ddr_bist_groups[] = {
  657. "gpio7", "gpio8", "gpio9", "gpio10",
  658. };
  659. static const char * const atest_tsens2_groups[] = {
  660. "gpio7",
  661. };
  662. static const char * const atest_usb1_groups[] = {
  663. "gpio7",
  664. };
  665. static const char * const blsp_spi4_groups[] = {
  666. "gpio8", "gpio9", "gpio10", "gpio11",
  667. };
  668. static const char * const blsp_uart1_b_groups[] = {
  669. "gpio8", "gpio9", "gpio10", "gpio11",
  670. };
  671. static const char * const blsp_uim1_b_groups[] = {
  672. "gpio8", "gpio9",
  673. };
  674. static const char * const wlan1_adc1_groups[] = {
  675. "gpio8",
  676. };
  677. static const char * const atest_usb13_groups[] = {
  678. "gpio8",
  679. };
  680. static const char * const bimc_dte1_groups[] = {
  681. "gpio8", "gpio10",
  682. };
  683. static const char * const tsif1_sync_groups[] = {
  684. "gpio9",
  685. };
  686. static const char * const wlan1_adc0_groups[] = {
  687. "gpio9",
  688. };
  689. static const char * const atest_usb12_groups[] = {
  690. "gpio9",
  691. };
  692. static const char * const bimc_dte0_groups[] = {
  693. "gpio9", "gpio11",
  694. };
  695. static const char * const mdp_vsync_a_groups[] = {
  696. "gpio10", "gpio11",
  697. };
  698. static const char * const blsp_i2c4_groups[] = {
  699. "gpio10", "gpio11",
  700. };
  701. static const char * const atest_gpsadc1_groups[] = {
  702. "gpio10",
  703. };
  704. static const char * const wlan2_adc1_groups[] = {
  705. "gpio10",
  706. };
  707. static const char * const atest_usb11_groups[] = {
  708. "gpio10",
  709. };
  710. static const char * const edp_lcd_groups[] = {
  711. "gpio11",
  712. };
  713. static const char * const dbg_out_groups[] = {
  714. "gpio11",
  715. };
  716. static const char * const atest_gpsadc0_groups[] = {
  717. "gpio11",
  718. };
  719. static const char * const wlan2_adc0_groups[] = {
  720. "gpio11",
  721. };
  722. static const char * const atest_usb10_groups[] = {
  723. "gpio11",
  724. };
  725. static const char * const mdp_vsync_groups[] = {
  726. "gpio12",
  727. };
  728. static const char * const m_voc_groups[] = {
  729. "gpio12",
  730. };
  731. static const char * const cam_mclk_groups[] = {
  732. "gpio13", "gpio14", "gpio15", "gpio16",
  733. };
  734. static const char * const pll_bypassnl_groups[] = {
  735. "gpio13",
  736. };
  737. static const char * const qdss_groups[] = {
  738. "gpio13", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19",
  739. "gpio20", "gpio21", "gpio22", "gpio23", "gpio24", "gpio25", "gpio26",
  740. "gpio27", "gpio28", "gpio29", "gpio30", "gpio41", "gpio42", "gpio43",
  741. "gpio44", "gpio75", "gpio76", "gpio77", "gpio79", "gpio80", "gpio93",
  742. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
  743. "gpio123", "gpio124",
  744. };
  745. static const char * const pll_reset_groups[] = {
  746. "gpio14",
  747. };
  748. static const char * const cci_i2c_groups[] = {
  749. "gpio17", "gpio18", "gpio19", "gpio20",
  750. };
  751. static const char * const phase_flag_groups[] = {
  752. "gpio18", "gpio19", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  753. "gpio89", "gpio91", "gpio92", "gpio96", "gpio114", "gpio115",
  754. "gpio116", "gpio117", "gpio118", "gpio119", "gpio120", "gpio121",
  755. "gpio122", "gpio123", "gpio124", "gpio125", "gpio126", "gpio128",
  756. "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134",
  757. };
  758. static const char * const cci_timer4_groups[] = {
  759. "gpio25",
  760. };
  761. static const char * const blsp2_spi_groups[] = {
  762. "gpio25", "gpio29", "gpio30",
  763. };
  764. static const char * const cci_timer0_groups[] = {
  765. "gpio21",
  766. };
  767. static const char * const vsense_data0_groups[] = {
  768. "gpio21",
  769. };
  770. static const char * const cci_timer1_groups[] = {
  771. "gpio22",
  772. };
  773. static const char * const vsense_data1_groups[] = {
  774. "gpio22",
  775. };
  776. static const char * const cci_timer2_groups[] = {
  777. "gpio23",
  778. };
  779. static const char * const blsp1_spi_b_groups[] = {
  780. "gpio23", "gpio28",
  781. };
  782. static const char * const vsense_mode_groups[] = {
  783. "gpio23",
  784. };
  785. static const char * const cci_timer3_groups[] = {
  786. "gpio24",
  787. };
  788. static const char * const cci_async_groups[] = {
  789. "gpio24", "gpio25", "gpio26",
  790. };
  791. static const char * const blsp1_spi_a_groups[] = {
  792. "gpio24", "gpio27",
  793. };
  794. static const char * const vsense_clkout_groups[] = {
  795. "gpio24",
  796. };
  797. static const char * const hdmi_rcv_groups[] = {
  798. "gpio30",
  799. };
  800. static const char * const hdmi_cec_groups[] = {
  801. "gpio31",
  802. };
  803. static const char * const blsp_spi2_groups[] = {
  804. "gpio31", "gpio32", "gpio33", "gpio34",
  805. };
  806. static const char * const blsp_uart2_a_groups[] = {
  807. "gpio31", "gpio32", "gpio33", "gpio34",
  808. };
  809. static const char * const blsp_uim2_a_groups[] = {
  810. "gpio31", "gpio34",
  811. };
  812. static const char * const pwr_modem_groups[] = {
  813. "gpio31",
  814. };
  815. static const char * const hdmi_ddc_groups[] = {
  816. "gpio32", "gpio33",
  817. };
  818. static const char * const blsp_i2c2_groups[] = {
  819. "gpio32", "gpio33",
  820. };
  821. static const char * const pwr_nav_groups[] = {
  822. "gpio32",
  823. };
  824. static const char * const pwr_crypto_groups[] = {
  825. "gpio33",
  826. };
  827. static const char * const hdmi_hot_groups[] = {
  828. "gpio34",
  829. };
  830. static const char * const edp_hot_groups[] = {
  831. "gpio34",
  832. };
  833. static const char * const pci_e0_groups[] = {
  834. "gpio35", "gpio36", "gpio37",
  835. };
  836. static const char * const jitter_bist_groups[] = {
  837. "gpio35",
  838. };
  839. static const char * const agera_pll_groups[] = {
  840. "gpio36", "gpio37",
  841. };
  842. static const char * const atest_tsens_groups[] = {
  843. "gpio36",
  844. };
  845. static const char * const usb_phy_groups[] = {
  846. "gpio38",
  847. };
  848. static const char * const lpass_slimbus_groups[] = {
  849. "gpio39", "gpio70", "gpio71", "gpio72",
  850. };
  851. static const char * const sd_write_groups[] = {
  852. "gpio40",
  853. };
  854. static const char * const tsif1_error_groups[] = {
  855. "gpio40",
  856. };
  857. static const char * const blsp_spi6_groups[] = {
  858. "gpio41", "gpio42", "gpio43", "gpio44",
  859. };
  860. static const char * const blsp_uart3_b_groups[] = {
  861. "gpio41", "gpio42", "gpio43", "gpio44",
  862. };
  863. static const char * const blsp_uim3_b_groups[] = {
  864. "gpio41", "gpio42",
  865. };
  866. static const char * const blsp_i2c6_groups[] = {
  867. "gpio43", "gpio44",
  868. };
  869. static const char * const bt_reset_groups[] = {
  870. "gpio45",
  871. };
  872. static const char * const blsp_spi3_groups[] = {
  873. "gpio45", "gpio46", "gpio47", "gpio48",
  874. };
  875. static const char * const blsp_uart3_a_groups[] = {
  876. "gpio45", "gpio46", "gpio47", "gpio48",
  877. };
  878. static const char * const blsp_uim3_a_groups[] = {
  879. "gpio45", "gpio46",
  880. };
  881. static const char * const blsp_i2c3_groups[] = {
  882. "gpio47", "gpio48",
  883. };
  884. static const char * const blsp_spi9_groups[] = {
  885. "gpio49", "gpio50", "gpio51", "gpio52",
  886. };
  887. static const char * const blsp_uart9_a_groups[] = {
  888. "gpio49", "gpio50", "gpio51", "gpio52",
  889. };
  890. static const char * const blsp_uim9_a_groups[] = {
  891. "gpio49", "gpio50",
  892. };
  893. static const char * const blsp10_spi_b_groups[] = {
  894. "gpio49", "gpio50",
  895. };
  896. static const char * const qdss_cti0_a_groups[] = {
  897. "gpio49", "gpio50",
  898. };
  899. static const char * const blsp_i2c9_groups[] = {
  900. "gpio51", "gpio52",
  901. };
  902. static const char * const blsp10_spi_a_groups[] = {
  903. "gpio51", "gpio52",
  904. };
  905. static const char * const blsp_spi7_groups[] = {
  906. "gpio53", "gpio54", "gpio55", "gpio56",
  907. };
  908. static const char * const blsp_uart7_a_groups[] = {
  909. "gpio53", "gpio54", "gpio55", "gpio56",
  910. };
  911. static const char * const blsp_uim7_a_groups[] = {
  912. "gpio53", "gpio54",
  913. };
  914. static const char * const blsp_i2c7_groups[] = {
  915. "gpio55", "gpio56",
  916. };
  917. static const char * const qua_mi2s_groups[] = {
  918. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  919. };
  920. static const char * const blsp10_spi_groups[] = {
  921. "gpio57",
  922. };
  923. static const char * const gcc_gp1_a_groups[] = {
  924. "gpio57",
  925. };
  926. static const char * const ssc_irq_groups[] = {
  927. "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63", "gpio78",
  928. "gpio79", "gpio80", "gpio117", "gpio118", "gpio119", "gpio120",
  929. "gpio121", "gpio122", "gpio123", "gpio124", "gpio125",
  930. };
  931. static const char * const blsp_spi11_groups[] = {
  932. "gpio58", "gpio59", "gpio60", "gpio61",
  933. };
  934. static const char * const blsp_uart8_b_groups[] = {
  935. "gpio58", "gpio59", "gpio60", "gpio61",
  936. };
  937. static const char * const blsp_uim8_b_groups[] = {
  938. "gpio58", "gpio59",
  939. };
  940. static const char * const gcc_gp2_a_groups[] = {
  941. "gpio58",
  942. };
  943. static const char * const qdss_cti1_a_groups[] = {
  944. "gpio58", "gpio59",
  945. };
  946. static const char * const gcc_gp3_a_groups[] = {
  947. "gpio59",
  948. };
  949. static const char * const blsp_i2c11_groups[] = {
  950. "gpio60", "gpio61",
  951. };
  952. static const char * const cri_trng0_groups[] = {
  953. "gpio60",
  954. };
  955. static const char * const cri_trng1_groups[] = {
  956. "gpio61",
  957. };
  958. static const char * const cri_trng_groups[] = {
  959. "gpio62",
  960. };
  961. static const char * const pri_mi2s_groups[] = {
  962. "gpio64", "gpio65", "gpio67", "gpio68",
  963. };
  964. static const char * const sp_cmu_groups[] = {
  965. "gpio64",
  966. };
  967. static const char * const blsp_spi10_groups[] = {
  968. "gpio65", "gpio66", "gpio67", "gpio68",
  969. };
  970. static const char * const blsp_uart7_b_groups[] = {
  971. "gpio65", "gpio66", "gpio67", "gpio68",
  972. };
  973. static const char * const blsp_uim7_b_groups[] = {
  974. "gpio65", "gpio66",
  975. };
  976. static const char * const pri_mi2s_ws_groups[] = {
  977. "gpio66",
  978. };
  979. static const char * const blsp_i2c10_groups[] = {
  980. "gpio67", "gpio68",
  981. };
  982. static const char * const spkr_i2s_groups[] = {
  983. "gpio69", "gpio70", "gpio71", "gpio72",
  984. };
  985. static const char * const audio_ref_groups[] = {
  986. "gpio69",
  987. };
  988. static const char * const blsp9_spi_groups[] = {
  989. "gpio70", "gpio71", "gpio72",
  990. };
  991. static const char * const tsense_pwm1_groups[] = {
  992. "gpio71",
  993. };
  994. static const char * const tsense_pwm2_groups[] = {
  995. "gpio71",
  996. };
  997. static const char * const btfm_slimbus_groups[] = {
  998. "gpio73", "gpio74",
  999. };
  1000. static const char * const ter_mi2s_groups[] = {
  1001. "gpio74", "gpio75", "gpio76", "gpio77", "gpio78",
  1002. };
  1003. static const char * const gcc_gp1_b_groups[] = {
  1004. "gpio78",
  1005. };
  1006. static const char * const sec_mi2s_groups[] = {
  1007. "gpio79", "gpio80", "gpio81", "gpio82", "gpio83",
  1008. };
  1009. static const char * const blsp_spi12_groups[] = {
  1010. "gpio81", "gpio82", "gpio83", "gpio84",
  1011. };
  1012. static const char * const blsp_uart9_b_groups[] = {
  1013. "gpio81", "gpio82", "gpio83", "gpio84",
  1014. };
  1015. static const char * const blsp_uim9_b_groups[] = {
  1016. "gpio81", "gpio82",
  1017. };
  1018. static const char * const gcc_gp2_b_groups[] = {
  1019. "gpio81",
  1020. };
  1021. static const char * const gcc_gp3_b_groups[] = {
  1022. "gpio82",
  1023. };
  1024. static const char * const blsp_i2c12_groups[] = {
  1025. "gpio83", "gpio84",
  1026. };
  1027. static const char * const blsp_spi5_groups[] = {
  1028. "gpio85", "gpio86", "gpio87", "gpio88",
  1029. };
  1030. static const char * const blsp_uart2_b_groups[] = {
  1031. "gpio85", "gpio86", "gpio87", "gpio88",
  1032. };
  1033. static const char * const blsp_uim2_b_groups[] = {
  1034. "gpio85", "gpio86",
  1035. };
  1036. static const char * const blsp_i2c5_groups[] = {
  1037. "gpio87", "gpio88",
  1038. };
  1039. static const char * const tsif1_clk_groups[] = {
  1040. "gpio89",
  1041. };
  1042. static const char * const tsif1_en_groups[] = {
  1043. "gpio90",
  1044. };
  1045. static const char * const mdp_vsync0_groups[] = {
  1046. "gpio90",
  1047. };
  1048. static const char * const mdp_vsync1_groups[] = {
  1049. "gpio90",
  1050. };
  1051. static const char * const mdp_vsync2_groups[] = {
  1052. "gpio90",
  1053. };
  1054. static const char * const mdp_vsync3_groups[] = {
  1055. "gpio90",
  1056. };
  1057. static const char * const blsp1_spi_groups[] = {
  1058. "gpio90",
  1059. };
  1060. static const char * const tgu_ch0_groups[] = {
  1061. "gpio90",
  1062. };
  1063. static const char * const qdss_cti1_b_groups[] = {
  1064. "gpio90", "gpio91",
  1065. };
  1066. static const char * const tsif1_data_groups[] = {
  1067. "gpio91",
  1068. };
  1069. static const char * const sdc4_cmd_groups[] = {
  1070. "gpio91",
  1071. };
  1072. static const char * const tgu_ch1_groups[] = {
  1073. "gpio91",
  1074. };
  1075. static const char * const tsif2_error_groups[] = {
  1076. "gpio92",
  1077. };
  1078. static const char * const sdc43_groups[] = {
  1079. "gpio92",
  1080. };
  1081. static const char * const vfr_1_groups[] = {
  1082. "gpio92",
  1083. };
  1084. static const char * const tsif2_clk_groups[] = {
  1085. "gpio93",
  1086. };
  1087. static const char * const sdc4_clk_groups[] = {
  1088. "gpio93",
  1089. };
  1090. static const char * const tsif2_en_groups[] = {
  1091. "gpio94",
  1092. };
  1093. static const char * const sdc42_groups[] = {
  1094. "gpio94",
  1095. };
  1096. static const char * const sd_card_groups[] = {
  1097. "gpio95",
  1098. };
  1099. static const char * const tsif2_data_groups[] = {
  1100. "gpio95",
  1101. };
  1102. static const char * const sdc41_groups[] = {
  1103. "gpio95",
  1104. };
  1105. static const char * const tsif2_sync_groups[] = {
  1106. "gpio96",
  1107. };
  1108. static const char * const sdc40_groups[] = {
  1109. "gpio96",
  1110. };
  1111. static const char * const mdp_vsync_b_groups[] = {
  1112. "gpio97", "gpio98",
  1113. };
  1114. static const char * const ldo_en_groups[] = {
  1115. "gpio97",
  1116. };
  1117. static const char * const ldo_update_groups[] = {
  1118. "gpio98",
  1119. };
  1120. static const char * const blsp_uart8_groups[] = {
  1121. "gpio100", "gpio101",
  1122. };
  1123. static const char * const blsp11_i2c_groups[] = {
  1124. "gpio102", "gpio103",
  1125. };
  1126. static const char * const prng_rosc_groups[] = {
  1127. "gpio102",
  1128. };
  1129. static const char * const uim2_data_groups[] = {
  1130. "gpio105",
  1131. };
  1132. static const char * const uim2_clk_groups[] = {
  1133. "gpio106",
  1134. };
  1135. static const char * const uim2_reset_groups[] = {
  1136. "gpio107",
  1137. };
  1138. static const char * const uim2_present_groups[] = {
  1139. "gpio108",
  1140. };
  1141. static const char * const uim1_data_groups[] = {
  1142. "gpio109",
  1143. };
  1144. static const char * const uim1_clk_groups[] = {
  1145. "gpio110",
  1146. };
  1147. static const char * const uim1_reset_groups[] = {
  1148. "gpio111",
  1149. };
  1150. static const char * const uim1_present_groups[] = {
  1151. "gpio112",
  1152. };
  1153. static const char * const uim_batt_groups[] = {
  1154. "gpio113",
  1155. };
  1156. static const char * const nav_dr_groups[] = {
  1157. "gpio115",
  1158. };
  1159. static const char * const atest_char_groups[] = {
  1160. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121",
  1161. };
  1162. static const char * const adsp_ext_groups[] = {
  1163. "gpio118",
  1164. };
  1165. static const char * const modem_tsync_groups[] = {
  1166. "gpio128",
  1167. };
  1168. static const char * const nav_pps_groups[] = {
  1169. "gpio128",
  1170. };
  1171. static const char * const qlink_request_groups[] = {
  1172. "gpio130",
  1173. };
  1174. static const char * const qlink_enable_groups[] = {
  1175. "gpio131",
  1176. };
  1177. static const char * const pa_indicator_groups[] = {
  1178. "gpio135",
  1179. };
  1180. static const char * const ssbi1_groups[] = {
  1181. "gpio142",
  1182. };
  1183. static const char * const isense_dbg_groups[] = {
  1184. "gpio143",
  1185. };
  1186. static const char * const mss_lte_groups[] = {
  1187. "gpio144", "gpio145",
  1188. };
  1189. static const struct msm_function msm8998_functions[] = {
  1190. FUNCTION(gpio),
  1191. FUNCTION(adsp_ext),
  1192. FUNCTION(agera_pll),
  1193. FUNCTION(atest_char),
  1194. FUNCTION(atest_gpsadc0),
  1195. FUNCTION(atest_gpsadc1),
  1196. FUNCTION(atest_tsens),
  1197. FUNCTION(atest_tsens2),
  1198. FUNCTION(atest_usb1),
  1199. FUNCTION(atest_usb10),
  1200. FUNCTION(atest_usb11),
  1201. FUNCTION(atest_usb12),
  1202. FUNCTION(atest_usb13),
  1203. FUNCTION(audio_ref),
  1204. FUNCTION(bimc_dte0),
  1205. FUNCTION(bimc_dte1),
  1206. FUNCTION(blsp10_spi),
  1207. FUNCTION(blsp10_spi_a),
  1208. FUNCTION(blsp10_spi_b),
  1209. FUNCTION(blsp11_i2c),
  1210. FUNCTION(blsp1_spi),
  1211. FUNCTION(blsp1_spi_a),
  1212. FUNCTION(blsp1_spi_b),
  1213. FUNCTION(blsp2_spi),
  1214. FUNCTION(blsp9_spi),
  1215. FUNCTION(blsp_i2c1),
  1216. FUNCTION(blsp_i2c2),
  1217. FUNCTION(blsp_i2c3),
  1218. FUNCTION(blsp_i2c4),
  1219. FUNCTION(blsp_i2c5),
  1220. FUNCTION(blsp_i2c6),
  1221. FUNCTION(blsp_i2c7),
  1222. FUNCTION(blsp_i2c8),
  1223. FUNCTION(blsp_i2c9),
  1224. FUNCTION(blsp_i2c10),
  1225. FUNCTION(blsp_i2c11),
  1226. FUNCTION(blsp_i2c12),
  1227. FUNCTION(blsp_spi1),
  1228. FUNCTION(blsp_spi2),
  1229. FUNCTION(blsp_spi3),
  1230. FUNCTION(blsp_spi4),
  1231. FUNCTION(blsp_spi5),
  1232. FUNCTION(blsp_spi6),
  1233. FUNCTION(blsp_spi7),
  1234. FUNCTION(blsp_spi8),
  1235. FUNCTION(blsp_spi9),
  1236. FUNCTION(blsp_spi10),
  1237. FUNCTION(blsp_spi11),
  1238. FUNCTION(blsp_spi12),
  1239. FUNCTION(blsp_uart1_a),
  1240. FUNCTION(blsp_uart1_b),
  1241. FUNCTION(blsp_uart2_a),
  1242. FUNCTION(blsp_uart2_b),
  1243. FUNCTION(blsp_uart3_a),
  1244. FUNCTION(blsp_uart3_b),
  1245. FUNCTION(blsp_uart7_a),
  1246. FUNCTION(blsp_uart7_b),
  1247. FUNCTION(blsp_uart8),
  1248. FUNCTION(blsp_uart8_a),
  1249. FUNCTION(blsp_uart8_b),
  1250. FUNCTION(blsp_uart9_a),
  1251. FUNCTION(blsp_uart9_b),
  1252. FUNCTION(blsp_uim1_a),
  1253. FUNCTION(blsp_uim1_b),
  1254. FUNCTION(blsp_uim2_a),
  1255. FUNCTION(blsp_uim2_b),
  1256. FUNCTION(blsp_uim3_a),
  1257. FUNCTION(blsp_uim3_b),
  1258. FUNCTION(blsp_uim7_a),
  1259. FUNCTION(blsp_uim7_b),
  1260. FUNCTION(blsp_uim8_a),
  1261. FUNCTION(blsp_uim8_b),
  1262. FUNCTION(blsp_uim9_a),
  1263. FUNCTION(blsp_uim9_b),
  1264. FUNCTION(bt_reset),
  1265. FUNCTION(btfm_slimbus),
  1266. FUNCTION(cam_mclk),
  1267. FUNCTION(cci_async),
  1268. FUNCTION(cci_i2c),
  1269. FUNCTION(cci_timer0),
  1270. FUNCTION(cci_timer1),
  1271. FUNCTION(cci_timer2),
  1272. FUNCTION(cci_timer3),
  1273. FUNCTION(cci_timer4),
  1274. FUNCTION(cri_trng),
  1275. FUNCTION(cri_trng0),
  1276. FUNCTION(cri_trng1),
  1277. FUNCTION(dbg_out),
  1278. FUNCTION(ddr_bist),
  1279. FUNCTION(edp_hot),
  1280. FUNCTION(edp_lcd),
  1281. FUNCTION(gcc_gp1_a),
  1282. FUNCTION(gcc_gp1_b),
  1283. FUNCTION(gcc_gp2_a),
  1284. FUNCTION(gcc_gp2_b),
  1285. FUNCTION(gcc_gp3_a),
  1286. FUNCTION(gcc_gp3_b),
  1287. FUNCTION(hdmi_cec),
  1288. FUNCTION(hdmi_ddc),
  1289. FUNCTION(hdmi_hot),
  1290. FUNCTION(hdmi_rcv),
  1291. FUNCTION(isense_dbg),
  1292. FUNCTION(jitter_bist),
  1293. FUNCTION(ldo_en),
  1294. FUNCTION(ldo_update),
  1295. FUNCTION(lpass_slimbus),
  1296. FUNCTION(m_voc),
  1297. FUNCTION(mdp_vsync),
  1298. FUNCTION(mdp_vsync0),
  1299. FUNCTION(mdp_vsync1),
  1300. FUNCTION(mdp_vsync2),
  1301. FUNCTION(mdp_vsync3),
  1302. FUNCTION(mdp_vsync_a),
  1303. FUNCTION(mdp_vsync_b),
  1304. FUNCTION(modem_tsync),
  1305. FUNCTION(mss_lte),
  1306. FUNCTION(nav_dr),
  1307. FUNCTION(nav_pps),
  1308. FUNCTION(pa_indicator),
  1309. FUNCTION(pci_e0),
  1310. FUNCTION(phase_flag),
  1311. FUNCTION(pll_bypassnl),
  1312. FUNCTION(pll_reset),
  1313. FUNCTION(pri_mi2s),
  1314. FUNCTION(pri_mi2s_ws),
  1315. FUNCTION(prng_rosc),
  1316. FUNCTION(pwr_crypto),
  1317. FUNCTION(pwr_modem),
  1318. FUNCTION(pwr_nav),
  1319. FUNCTION(qdss_cti0_a),
  1320. FUNCTION(qdss_cti0_b),
  1321. FUNCTION(qdss_cti1_a),
  1322. FUNCTION(qdss_cti1_b),
  1323. FUNCTION(qdss),
  1324. FUNCTION(qlink_enable),
  1325. FUNCTION(qlink_request),
  1326. FUNCTION(qua_mi2s),
  1327. FUNCTION(sd_card),
  1328. FUNCTION(sd_write),
  1329. FUNCTION(sdc40),
  1330. FUNCTION(sdc41),
  1331. FUNCTION(sdc42),
  1332. FUNCTION(sdc43),
  1333. FUNCTION(sdc4_clk),
  1334. FUNCTION(sdc4_cmd),
  1335. FUNCTION(sec_mi2s),
  1336. FUNCTION(sp_cmu),
  1337. FUNCTION(spkr_i2s),
  1338. FUNCTION(ssbi1),
  1339. FUNCTION(ssc_irq),
  1340. FUNCTION(ter_mi2s),
  1341. FUNCTION(tgu_ch0),
  1342. FUNCTION(tgu_ch1),
  1343. FUNCTION(tsense_pwm1),
  1344. FUNCTION(tsense_pwm2),
  1345. FUNCTION(tsif1_clk),
  1346. FUNCTION(tsif1_data),
  1347. FUNCTION(tsif1_en),
  1348. FUNCTION(tsif1_error),
  1349. FUNCTION(tsif1_sync),
  1350. FUNCTION(tsif2_clk),
  1351. FUNCTION(tsif2_data),
  1352. FUNCTION(tsif2_en),
  1353. FUNCTION(tsif2_error),
  1354. FUNCTION(tsif2_sync),
  1355. FUNCTION(uim1_clk),
  1356. FUNCTION(uim1_data),
  1357. FUNCTION(uim1_present),
  1358. FUNCTION(uim1_reset),
  1359. FUNCTION(uim2_clk),
  1360. FUNCTION(uim2_data),
  1361. FUNCTION(uim2_present),
  1362. FUNCTION(uim2_reset),
  1363. FUNCTION(uim_batt),
  1364. FUNCTION(usb_phy),
  1365. FUNCTION(vfr_1),
  1366. FUNCTION(vsense_clkout),
  1367. FUNCTION(vsense_data0),
  1368. FUNCTION(vsense_data1),
  1369. FUNCTION(vsense_mode),
  1370. FUNCTION(wlan1_adc0),
  1371. FUNCTION(wlan1_adc1),
  1372. FUNCTION(wlan2_adc0),
  1373. FUNCTION(wlan2_adc1),
  1374. };
  1375. static const struct msm_pingroup msm8998_groups[] = {
  1376. PINGROUP(0, EAST, blsp_spi1, blsp_uart1_a, blsp_uim1_a, _, _, _, _, _, _),
  1377. PINGROUP(1, EAST, blsp_spi1, blsp_uart1_a, blsp_uim1_a, _, _, _, _, _, _),
  1378. PINGROUP(2, EAST, blsp_spi1, blsp_uart1_a, blsp_i2c1, _, _, _, _, _, _),
  1379. PINGROUP(3, EAST, blsp_spi1, blsp_uart1_a, blsp_i2c1, _, _, _, _, _, _),
  1380. PINGROUP(4, WEST, blsp_spi8, blsp_uart8_a, blsp_uim8_a, _, qdss_cti0_b, _, _, _, _),
  1381. PINGROUP(5, WEST, blsp_spi8, blsp_uart8_a, blsp_uim8_a, _, qdss_cti0_b, _, _, _, _),
  1382. PINGROUP(6, WEST, blsp_spi8, blsp_uart8_a, blsp_i2c8, _, _, _, _, _, _),
  1383. PINGROUP(7, WEST, blsp_spi8, blsp_uart8_a, blsp_i2c8, ddr_bist, _, atest_tsens2, atest_usb1, _, _),
  1384. PINGROUP(8, EAST, blsp_spi4, blsp_uart1_b, blsp_uim1_b, _, ddr_bist, _, wlan1_adc1, atest_usb13, bimc_dte1),
  1385. PINGROUP(9, EAST, blsp_spi4, blsp_uart1_b, blsp_uim1_b, tsif1_sync, ddr_bist, _, wlan1_adc0, atest_usb12, bimc_dte0),
  1386. PINGROUP(10, EAST, mdp_vsync_a, blsp_spi4, blsp_uart1_b, blsp_i2c4, ddr_bist, atest_gpsadc1, wlan2_adc1, atest_usb11, bimc_dte1),
  1387. PINGROUP(11, EAST, mdp_vsync_a, edp_lcd, blsp_spi4, blsp_uart1_b, blsp_i2c4, dbg_out, atest_gpsadc0, wlan2_adc0, atest_usb10),
  1388. PINGROUP(12, EAST, mdp_vsync, m_voc, _, _, _, _, _, _, _),
  1389. PINGROUP(13, EAST, cam_mclk, pll_bypassnl, qdss, _, _, _, _, _, _),
  1390. PINGROUP(14, EAST, cam_mclk, pll_reset, qdss, _, _, _, _, _, _),
  1391. PINGROUP(15, EAST, cam_mclk, qdss, _, _, _, _, _, _, _),
  1392. PINGROUP(16, EAST, cam_mclk, qdss, _, _, _, _, _, _, _),
  1393. PINGROUP(17, EAST, cci_i2c, qdss, _, _, _, _, _, _, _),
  1394. PINGROUP(18, EAST, cci_i2c, phase_flag, qdss, _, _, _, _, _, _),
  1395. PINGROUP(19, EAST, cci_i2c, phase_flag, qdss, _, _, _, _, _, _),
  1396. PINGROUP(20, EAST, cci_i2c, qdss, _, _, _, _, _, _, _),
  1397. PINGROUP(21, EAST, cci_timer0, _, qdss, vsense_data0, _, _, _, _, _),
  1398. PINGROUP(22, EAST, cci_timer1, _, qdss, vsense_data1, _, _, _, _, _),
  1399. PINGROUP(23, EAST, cci_timer2, blsp1_spi_b, qdss, vsense_mode, _, _, _, _, _),
  1400. PINGROUP(24, EAST, cci_timer3, cci_async, blsp1_spi_a, _, qdss, vsense_clkout, _, _, _),
  1401. PINGROUP(25, EAST, cci_timer4, cci_async, blsp2_spi, _, qdss, _, _, _, _),
  1402. PINGROUP(26, EAST, cci_async, qdss, _, _, _, _, _, _, _),
  1403. PINGROUP(27, EAST, blsp1_spi_a, qdss, _, _, _, _, _, _, _),
  1404. PINGROUP(28, EAST, blsp1_spi_b, qdss, _, _, _, _, _, _, _),
  1405. PINGROUP(29, EAST, blsp2_spi, _, qdss, _, _, _, _, _, _),
  1406. PINGROUP(30, EAST, hdmi_rcv, blsp2_spi, qdss, _, _, _, _, _, _),
  1407. PINGROUP(31, EAST, hdmi_cec, blsp_spi2, blsp_uart2_a, blsp_uim2_a, pwr_modem, _, _, _, _),
  1408. PINGROUP(32, EAST, hdmi_ddc, blsp_spi2, blsp_uart2_a, blsp_i2c2, pwr_nav, _, _, _, _),
  1409. PINGROUP(33, EAST, hdmi_ddc, blsp_spi2, blsp_uart2_a, blsp_i2c2, pwr_crypto, _, _, _, _),
  1410. PINGROUP(34, EAST, hdmi_hot, edp_hot, blsp_spi2, blsp_uart2_a, blsp_uim2_a, _, _, _, _),
  1411. PINGROUP(35, NORTH, pci_e0, jitter_bist, _, _, _, _, _, _, _),
  1412. PINGROUP(36, NORTH, pci_e0, agera_pll, _, atest_tsens, _, _, _, _, _),
  1413. PINGROUP(37, NORTH, agera_pll, _, _, _, _, _, _, _, _),
  1414. PINGROUP(38, WEST, usb_phy, _, _, _, _, _, _, _, _),
  1415. PINGROUP(39, WEST, lpass_slimbus, _, _, _, _, _, _, _, _),
  1416. PINGROUP(40, EAST, sd_write, tsif1_error, _, _, _, _, _, _, _),
  1417. PINGROUP(41, EAST, blsp_spi6, blsp_uart3_b, blsp_uim3_b, _, qdss, _, _, _, _),
  1418. PINGROUP(42, EAST, blsp_spi6, blsp_uart3_b, blsp_uim3_b, _, qdss, _, _, _, _),
  1419. PINGROUP(43, EAST, blsp_spi6, blsp_uart3_b, blsp_i2c6, _, qdss, _, _, _, _),
  1420. PINGROUP(44, EAST, blsp_spi6, blsp_uart3_b, blsp_i2c6, _, qdss, _, _, _, _),
  1421. PINGROUP(45, EAST, blsp_spi3, blsp_uart3_a, blsp_uim3_a, _, _, _, _, _, _),
  1422. PINGROUP(46, EAST, blsp_spi3, blsp_uart3_a, blsp_uim3_a, _, _, _, _, _, _),
  1423. PINGROUP(47, EAST, blsp_spi3, blsp_uart3_a, blsp_i2c3, _, _, _, _, _, _),
  1424. PINGROUP(48, EAST, blsp_spi3, blsp_uart3_a, blsp_i2c3, _, _, _, _, _, _),
  1425. PINGROUP(49, NORTH, blsp_spi9, blsp_uart9_a, blsp_uim9_a, blsp10_spi_b, qdss_cti0_a, _, _, _, _),
  1426. PINGROUP(50, NORTH, blsp_spi9, blsp_uart9_a, blsp_uim9_a, blsp10_spi_b, qdss_cti0_a, _, _, _, _),
  1427. PINGROUP(51, NORTH, blsp_spi9, blsp_uart9_a, blsp_i2c9, blsp10_spi_a, _, _, _, _, _),
  1428. PINGROUP(52, NORTH, blsp_spi9, blsp_uart9_a, blsp_i2c9, blsp10_spi_a, _, _, _, _, _),
  1429. PINGROUP(53, WEST, blsp_spi7, blsp_uart7_a, blsp_uim7_a, _, _, _, _, _, _),
  1430. PINGROUP(54, WEST, blsp_spi7, blsp_uart7_a, blsp_uim7_a, _, _, _, _, _, _),
  1431. PINGROUP(55, WEST, blsp_spi7, blsp_uart7_a, blsp_i2c7, _, _, _, _, _, _),
  1432. PINGROUP(56, WEST, blsp_spi7, blsp_uart7_a, blsp_i2c7, _, _, _, _, _, _),
  1433. PINGROUP(57, WEST, qua_mi2s, blsp10_spi, gcc_gp1_a, _, _, _, _, _, _),
  1434. PINGROUP(58, WEST, qua_mi2s, blsp_spi11, blsp_uart8_b, blsp_uim8_b, gcc_gp2_a, _, qdss_cti1_a, _, _),
  1435. PINGROUP(59, WEST, qua_mi2s, blsp_spi11, blsp_uart8_b, blsp_uim8_b, gcc_gp3_a, _, qdss_cti1_a, _, _),
  1436. PINGROUP(60, WEST, qua_mi2s, blsp_spi11, blsp_uart8_b, blsp_i2c11, cri_trng0, _, _, _, _),
  1437. PINGROUP(61, WEST, qua_mi2s, blsp_spi11, blsp_uart8_b, blsp_i2c11, cri_trng1, _, _, _, _),
  1438. PINGROUP(62, WEST, qua_mi2s, cri_trng, _, _, _, _, _, _, _),
  1439. PINGROUP(63, WEST, qua_mi2s, _, _, _, _, _, _, _, _),
  1440. PINGROUP(64, WEST, pri_mi2s, sp_cmu, _, _, _, _, _, _, _),
  1441. PINGROUP(65, WEST, pri_mi2s, blsp_spi10, blsp_uart7_b, blsp_uim7_b, _, _, _, _, _),
  1442. PINGROUP(66, WEST, pri_mi2s_ws, blsp_spi10, blsp_uart7_b, blsp_uim7_b, _, _, _, _, _),
  1443. PINGROUP(67, WEST, pri_mi2s, blsp_spi10, blsp_uart7_b, blsp_i2c10, _, _, _, _, _),
  1444. PINGROUP(68, WEST, pri_mi2s, blsp_spi10, blsp_uart7_b, blsp_i2c10, _, _, _, _, _),
  1445. PINGROUP(69, WEST, spkr_i2s, audio_ref, _, _, _, _, _, _, _),
  1446. PINGROUP(70, WEST, lpass_slimbus, spkr_i2s, blsp9_spi, _, _, _, _, _, _),
  1447. PINGROUP(71, WEST, lpass_slimbus, spkr_i2s, blsp9_spi, tsense_pwm1, tsense_pwm2, _, _, _, _),
  1448. PINGROUP(72, WEST, lpass_slimbus, spkr_i2s, blsp9_spi, _, _, _, _, _, _),
  1449. PINGROUP(73, WEST, btfm_slimbus, phase_flag, _, _, _, _, _, _, _),
  1450. PINGROUP(74, WEST, btfm_slimbus, ter_mi2s, phase_flag, _, _, _, _, _, _),
  1451. PINGROUP(75, WEST, ter_mi2s, phase_flag, qdss, _, _, _, _, _, _),
  1452. PINGROUP(76, WEST, ter_mi2s, phase_flag, qdss, _, _, _, _, _, _),
  1453. PINGROUP(77, WEST, ter_mi2s, phase_flag, qdss, _, _, _, _, _, _),
  1454. PINGROUP(78, WEST, ter_mi2s, gcc_gp1_b, _, _, _, _, _, _, _),
  1455. PINGROUP(79, WEST, sec_mi2s, _, qdss, _, _, _, _, _, _),
  1456. PINGROUP(80, WEST, sec_mi2s, _, qdss, _, _, _, _, _, _),
  1457. PINGROUP(81, WEST, sec_mi2s, blsp_spi12, blsp_uart9_b, blsp_uim9_b, gcc_gp2_b, _, _, _, _),
  1458. PINGROUP(82, WEST, sec_mi2s, blsp_spi12, blsp_uart9_b, blsp_uim9_b, gcc_gp3_b, _, _, _, _),
  1459. PINGROUP(83, WEST, sec_mi2s, blsp_spi12, blsp_uart9_b, blsp_i2c12, _, _, _, _, _),
  1460. PINGROUP(84, WEST, blsp_spi12, blsp_uart9_b, blsp_i2c12, _, _, _, _, _, _),
  1461. PINGROUP(85, EAST, blsp_spi5, blsp_uart2_b, blsp_uim2_b, _, _, _, _, _, _),
  1462. PINGROUP(86, EAST, blsp_spi5, blsp_uart2_b, blsp_uim2_b, _, _, _, _, _, _),
  1463. PINGROUP(87, EAST, blsp_spi5, blsp_uart2_b, blsp_i2c5, _, _, _, _, _, _),
  1464. PINGROUP(88, EAST, blsp_spi5, blsp_uart2_b, blsp_i2c5, _, _, _, _, _, _),
  1465. PINGROUP(89, EAST, tsif1_clk, phase_flag, _, _, _, _, _, _, _),
  1466. PINGROUP(90, EAST, tsif1_en, mdp_vsync0, mdp_vsync1, mdp_vsync2, mdp_vsync3, blsp1_spi, tgu_ch0, qdss_cti1_b, _),
  1467. PINGROUP(91, EAST, tsif1_data, sdc4_cmd, tgu_ch1, phase_flag, qdss_cti1_b, _, _, _, _),
  1468. PINGROUP(92, EAST, tsif2_error, sdc43, vfr_1, phase_flag, _, _, _, _, _),
  1469. PINGROUP(93, EAST, tsif2_clk, sdc4_clk, _, qdss, _, _, _, _, _),
  1470. PINGROUP(94, EAST, tsif2_en, sdc42, _, _, _, _, _, _, _),
  1471. PINGROUP(95, EAST, tsif2_data, sdc41, _, _, _, _, _, _, _),
  1472. PINGROUP(96, EAST, tsif2_sync, sdc40, phase_flag, _, _, _, _, _, _),
  1473. PINGROUP(97, WEST, _, mdp_vsync_b, ldo_en, _, _, _, _, _, _),
  1474. PINGROUP(98, WEST, _, mdp_vsync_b, ldo_update, _, _, _, _, _, _),
  1475. PINGROUP(99, WEST, _, _, _, _, _, _, _, _, _),
  1476. PINGROUP(100, WEST, _, _, blsp_uart8, _, _, _, _, _, _),
  1477. PINGROUP(101, WEST, _, blsp_uart8, _, _, _, _, _, _, _),
  1478. PINGROUP(102, WEST, _, blsp11_i2c, prng_rosc, _, _, _, _, _, _),
  1479. PINGROUP(103, WEST, _, blsp11_i2c, phase_flag, _, _, _, _, _, _),
  1480. PINGROUP(104, WEST, _, _, _, _, _, _, _, _, _),
  1481. PINGROUP(105, NORTH, uim2_data, _, _, _, _, _, _, _, _),
  1482. PINGROUP(106, NORTH, uim2_clk, _, _, _, _, _, _, _, _),
  1483. PINGROUP(107, NORTH, uim2_reset, _, _, _, _, _, _, _, _),
  1484. PINGROUP(108, NORTH, uim2_present, _, _, _, _, _, _, _, _),
  1485. PINGROUP(109, NORTH, uim1_data, _, _, _, _, _, _, _, _),
  1486. PINGROUP(110, NORTH, uim1_clk, _, _, _, _, _, _, _, _),
  1487. PINGROUP(111, NORTH, uim1_reset, _, _, _, _, _, _, _, _),
  1488. PINGROUP(112, NORTH, uim1_present, _, _, _, _, _, _, _, _),
  1489. PINGROUP(113, NORTH, uim_batt, _, _, _, _, _, _, _, _),
  1490. PINGROUP(114, WEST, _, _, phase_flag, _, _, _, _, _, _),
  1491. PINGROUP(115, WEST, _, nav_dr, phase_flag, _, _, _, _, _, _),
  1492. PINGROUP(116, WEST, phase_flag, _, _, _, _, _, _, _, _),
  1493. PINGROUP(117, EAST, phase_flag, qdss, atest_char, _, _, _, _, _, _),
  1494. PINGROUP(118, EAST, adsp_ext, phase_flag, qdss, atest_char, _, _, _, _, _),
  1495. PINGROUP(119, EAST, phase_flag, qdss, atest_char, _, _, _, _, _, _),
  1496. PINGROUP(120, EAST, phase_flag, qdss, atest_char, _, _, _, _, _, _),
  1497. PINGROUP(121, EAST, phase_flag, qdss, atest_char, _, _, _, _, _, _),
  1498. PINGROUP(122, EAST, phase_flag, qdss, _, _, _, _, _, _, _),
  1499. PINGROUP(123, EAST, phase_flag, qdss, _, _, _, _, _, _, _),
  1500. PINGROUP(124, EAST, phase_flag, qdss, _, _, _, _, _, _, _),
  1501. PINGROUP(125, EAST, phase_flag, _, _, _, _, _, _, _, _),
  1502. PINGROUP(126, EAST, phase_flag, _, _, _, _, _, _, _, _),
  1503. PINGROUP(127, WEST, _, _, _, _, _, _, _, _, _),
  1504. PINGROUP(128, WEST, modem_tsync, nav_pps, phase_flag, _, _, _, _, _, _),
  1505. PINGROUP(129, WEST, phase_flag, _, _, _, _, _, _, _, _),
  1506. PINGROUP(130, NORTH, qlink_request, phase_flag, _, _, _, _, _, _, _),
  1507. PINGROUP(131, NORTH, qlink_enable, phase_flag, _, _, _, _, _, _, _),
  1508. PINGROUP(132, WEST, _, phase_flag, _, _, _, _, _, _, _),
  1509. PINGROUP(133, WEST, phase_flag, _, _, _, _, _, _, _, _),
  1510. PINGROUP(134, WEST, phase_flag, _, _, _, _, _, _, _, _),
  1511. PINGROUP(135, WEST, _, pa_indicator, _, _, _, _, _, _, _),
  1512. PINGROUP(136, WEST, _, _, _, _, _, _, _, _, _),
  1513. PINGROUP(137, WEST, _, _, _, _, _, _, _, _, _),
  1514. PINGROUP(138, WEST, _, _, _, _, _, _, _, _, _),
  1515. PINGROUP(139, WEST, _, _, _, _, _, _, _, _, _),
  1516. PINGROUP(140, WEST, _, _, _, _, _, _, _, _, _),
  1517. PINGROUP(141, WEST, _, _, _, _, _, _, _, _, _),
  1518. PINGROUP(142, WEST, _, ssbi1, _, _, _, _, _, _, _),
  1519. PINGROUP(143, WEST, isense_dbg, _, _, _, _, _, _, _, _),
  1520. PINGROUP(144, WEST, mss_lte, _, _, _, _, _, _, _, _),
  1521. PINGROUP(145, WEST, mss_lte, _, _, _, _, _, _, _, _),
  1522. PINGROUP(146, WEST, _, _, _, _, _, _, _, _, _),
  1523. PINGROUP(147, WEST, _, _, _, _, _, _, _, _, _),
  1524. PINGROUP(148, WEST, _, _, _, _, _, _, _, _, _),
  1525. PINGROUP(149, WEST, _, _, _, _, _, _, _, _, _),
  1526. SDC_QDSD_PINGROUP(sdc2_clk, 0x999000, 14, 6),
  1527. SDC_QDSD_PINGROUP(sdc2_cmd, 0x999000, 11, 3),
  1528. SDC_QDSD_PINGROUP(sdc2_data, 0x999000, 9, 0),
  1529. UFS_RESET(ufs_reset, 0x19d000),
  1530. };
  1531. static const struct msm_pinctrl_soc_data msm8998_pinctrl = {
  1532. .pins = msm8998_pins,
  1533. .npins = ARRAY_SIZE(msm8998_pins),
  1534. .functions = msm8998_functions,
  1535. .nfunctions = ARRAY_SIZE(msm8998_functions),
  1536. .groups = msm8998_groups,
  1537. .ngroups = ARRAY_SIZE(msm8998_groups),
  1538. .ngpios = 150,
  1539. };
  1540. static int msm8998_pinctrl_probe(struct platform_device *pdev)
  1541. {
  1542. return msm_pinctrl_probe(pdev, &msm8998_pinctrl);
  1543. }
  1544. static const struct of_device_id msm8998_pinctrl_of_match[] = {
  1545. { .compatible = "qcom,msm8998-pinctrl", },
  1546. { },
  1547. };
  1548. static struct platform_driver msm8998_pinctrl_driver = {
  1549. .driver = {
  1550. .name = "msm8998-pinctrl",
  1551. .of_match_table = msm8998_pinctrl_of_match,
  1552. },
  1553. .probe = msm8998_pinctrl_probe,
  1554. .remove = msm_pinctrl_remove,
  1555. };
  1556. static int __init msm8998_pinctrl_init(void)
  1557. {
  1558. return platform_driver_register(&msm8998_pinctrl_driver);
  1559. }
  1560. arch_initcall(msm8998_pinctrl_init);
  1561. static void __exit msm8998_pinctrl_exit(void)
  1562. {
  1563. platform_driver_unregister(&msm8998_pinctrl_driver);
  1564. }
  1565. module_exit(msm8998_pinctrl_exit);
  1566. MODULE_DESCRIPTION("QTI msm8998 pinctrl driver");
  1567. MODULE_LICENSE("GPL v2");
  1568. MODULE_DEVICE_TABLE(of, msm8998_pinctrl_of_match);