pinctrl-sdm845.c 41 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/acpi.h>
  6. #include <linux/module.h>
  7. #include <linux/of.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 NORTH 0x00500000
  18. #define SOUTH 0x00900000
  19. #define EAST 0x00100000
  20. #define REG_SIZE 0x1000
  21. #define PINGROUP(id, base, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10) \
  22. { \
  23. .name = "gpio" #id, \
  24. .pins = gpio##id##_pins, \
  25. .npins = ARRAY_SIZE(gpio##id##_pins), \
  26. .funcs = (int[]){ \
  27. msm_mux_gpio, /* gpio mode */ \
  28. msm_mux_##f1, \
  29. msm_mux_##f2, \
  30. msm_mux_##f3, \
  31. msm_mux_##f4, \
  32. msm_mux_##f5, \
  33. msm_mux_##f6, \
  34. msm_mux_##f7, \
  35. msm_mux_##f8, \
  36. msm_mux_##f9, \
  37. msm_mux_##f10 \
  38. }, \
  39. .nfuncs = 11, \
  40. .ctl_reg = base + REG_SIZE * id, \
  41. .io_reg = base + 0x4 + REG_SIZE * id, \
  42. .intr_cfg_reg = base + 0x8 + REG_SIZE * id, \
  43. .intr_status_reg = base + 0xc + REG_SIZE * id, \
  44. .intr_target_reg = base + 0x8 + REG_SIZE * id, \
  45. .mux_bit = 2, \
  46. .pull_bit = 0, \
  47. .drv_bit = 6, \
  48. .oe_bit = 9, \
  49. .in_bit = 0, \
  50. .out_bit = 1, \
  51. .intr_enable_bit = 0, \
  52. .intr_status_bit = 0, \
  53. .intr_target_bit = 5, \
  54. .intr_target_kpss_val = 3, \
  55. .intr_raw_status_bit = 4, \
  56. .intr_polarity_bit = 1, \
  57. .intr_detection_bit = 2, \
  58. .intr_detection_width = 2, \
  59. }
  60. #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
  61. { \
  62. .name = #pg_name, \
  63. .pins = pg_name##_pins, \
  64. .npins = ARRAY_SIZE(pg_name##_pins), \
  65. .ctl_reg = ctl, \
  66. .io_reg = 0, \
  67. .intr_cfg_reg = 0, \
  68. .intr_status_reg = 0, \
  69. .intr_target_reg = 0, \
  70. .mux_bit = -1, \
  71. .pull_bit = pull, \
  72. .drv_bit = drv, \
  73. .oe_bit = -1, \
  74. .in_bit = -1, \
  75. .out_bit = -1, \
  76. .intr_enable_bit = -1, \
  77. .intr_status_bit = -1, \
  78. .intr_target_bit = -1, \
  79. .intr_raw_status_bit = -1, \
  80. .intr_polarity_bit = -1, \
  81. .intr_detection_bit = -1, \
  82. .intr_detection_width = -1, \
  83. }
  84. #define UFS_RESET(pg_name, offset) \
  85. { \
  86. .name = #pg_name, \
  87. .pins = pg_name##_pins, \
  88. .npins = ARRAY_SIZE(pg_name##_pins), \
  89. .ctl_reg = offset, \
  90. .io_reg = offset + 0x4, \
  91. .intr_cfg_reg = 0, \
  92. .intr_status_reg = 0, \
  93. .intr_target_reg = 0, \
  94. .mux_bit = -1, \
  95. .pull_bit = 3, \
  96. .drv_bit = 0, \
  97. .oe_bit = -1, \
  98. .in_bit = -1, \
  99. .out_bit = 0, \
  100. .intr_enable_bit = -1, \
  101. .intr_status_bit = -1, \
  102. .intr_target_bit = -1, \
  103. .intr_raw_status_bit = -1, \
  104. .intr_polarity_bit = -1, \
  105. .intr_detection_bit = -1, \
  106. .intr_detection_width = -1, \
  107. }
  108. static const struct pinctrl_pin_desc sdm845_pins[] = {
  109. PINCTRL_PIN(0, "GPIO_0"),
  110. PINCTRL_PIN(1, "GPIO_1"),
  111. PINCTRL_PIN(2, "GPIO_2"),
  112. PINCTRL_PIN(3, "GPIO_3"),
  113. PINCTRL_PIN(4, "GPIO_4"),
  114. PINCTRL_PIN(5, "GPIO_5"),
  115. PINCTRL_PIN(6, "GPIO_6"),
  116. PINCTRL_PIN(7, "GPIO_7"),
  117. PINCTRL_PIN(8, "GPIO_8"),
  118. PINCTRL_PIN(9, "GPIO_9"),
  119. PINCTRL_PIN(10, "GPIO_10"),
  120. PINCTRL_PIN(11, "GPIO_11"),
  121. PINCTRL_PIN(12, "GPIO_12"),
  122. PINCTRL_PIN(13, "GPIO_13"),
  123. PINCTRL_PIN(14, "GPIO_14"),
  124. PINCTRL_PIN(15, "GPIO_15"),
  125. PINCTRL_PIN(16, "GPIO_16"),
  126. PINCTRL_PIN(17, "GPIO_17"),
  127. PINCTRL_PIN(18, "GPIO_18"),
  128. PINCTRL_PIN(19, "GPIO_19"),
  129. PINCTRL_PIN(20, "GPIO_20"),
  130. PINCTRL_PIN(21, "GPIO_21"),
  131. PINCTRL_PIN(22, "GPIO_22"),
  132. PINCTRL_PIN(23, "GPIO_23"),
  133. PINCTRL_PIN(24, "GPIO_24"),
  134. PINCTRL_PIN(25, "GPIO_25"),
  135. PINCTRL_PIN(26, "GPIO_26"),
  136. PINCTRL_PIN(27, "GPIO_27"),
  137. PINCTRL_PIN(28, "GPIO_28"),
  138. PINCTRL_PIN(29, "GPIO_29"),
  139. PINCTRL_PIN(30, "GPIO_30"),
  140. PINCTRL_PIN(31, "GPIO_31"),
  141. PINCTRL_PIN(32, "GPIO_32"),
  142. PINCTRL_PIN(33, "GPIO_33"),
  143. PINCTRL_PIN(34, "GPIO_34"),
  144. PINCTRL_PIN(35, "GPIO_35"),
  145. PINCTRL_PIN(36, "GPIO_36"),
  146. PINCTRL_PIN(37, "GPIO_37"),
  147. PINCTRL_PIN(38, "GPIO_38"),
  148. PINCTRL_PIN(39, "GPIO_39"),
  149. PINCTRL_PIN(40, "GPIO_40"),
  150. PINCTRL_PIN(41, "GPIO_41"),
  151. PINCTRL_PIN(42, "GPIO_42"),
  152. PINCTRL_PIN(43, "GPIO_43"),
  153. PINCTRL_PIN(44, "GPIO_44"),
  154. PINCTRL_PIN(45, "GPIO_45"),
  155. PINCTRL_PIN(46, "GPIO_46"),
  156. PINCTRL_PIN(47, "GPIO_47"),
  157. PINCTRL_PIN(48, "GPIO_48"),
  158. PINCTRL_PIN(49, "GPIO_49"),
  159. PINCTRL_PIN(50, "GPIO_50"),
  160. PINCTRL_PIN(51, "GPIO_51"),
  161. PINCTRL_PIN(52, "GPIO_52"),
  162. PINCTRL_PIN(53, "GPIO_53"),
  163. PINCTRL_PIN(54, "GPIO_54"),
  164. PINCTRL_PIN(55, "GPIO_55"),
  165. PINCTRL_PIN(56, "GPIO_56"),
  166. PINCTRL_PIN(57, "GPIO_57"),
  167. PINCTRL_PIN(58, "GPIO_58"),
  168. PINCTRL_PIN(59, "GPIO_59"),
  169. PINCTRL_PIN(60, "GPIO_60"),
  170. PINCTRL_PIN(61, "GPIO_61"),
  171. PINCTRL_PIN(62, "GPIO_62"),
  172. PINCTRL_PIN(63, "GPIO_63"),
  173. PINCTRL_PIN(64, "GPIO_64"),
  174. PINCTRL_PIN(65, "GPIO_65"),
  175. PINCTRL_PIN(66, "GPIO_66"),
  176. PINCTRL_PIN(67, "GPIO_67"),
  177. PINCTRL_PIN(68, "GPIO_68"),
  178. PINCTRL_PIN(69, "GPIO_69"),
  179. PINCTRL_PIN(70, "GPIO_70"),
  180. PINCTRL_PIN(71, "GPIO_71"),
  181. PINCTRL_PIN(72, "GPIO_72"),
  182. PINCTRL_PIN(73, "GPIO_73"),
  183. PINCTRL_PIN(74, "GPIO_74"),
  184. PINCTRL_PIN(75, "GPIO_75"),
  185. PINCTRL_PIN(76, "GPIO_76"),
  186. PINCTRL_PIN(77, "GPIO_77"),
  187. PINCTRL_PIN(78, "GPIO_78"),
  188. PINCTRL_PIN(79, "GPIO_79"),
  189. PINCTRL_PIN(80, "GPIO_80"),
  190. PINCTRL_PIN(81, "GPIO_81"),
  191. PINCTRL_PIN(82, "GPIO_82"),
  192. PINCTRL_PIN(83, "GPIO_83"),
  193. PINCTRL_PIN(84, "GPIO_84"),
  194. PINCTRL_PIN(85, "GPIO_85"),
  195. PINCTRL_PIN(86, "GPIO_86"),
  196. PINCTRL_PIN(87, "GPIO_87"),
  197. PINCTRL_PIN(88, "GPIO_88"),
  198. PINCTRL_PIN(89, "GPIO_89"),
  199. PINCTRL_PIN(90, "GPIO_90"),
  200. PINCTRL_PIN(91, "GPIO_91"),
  201. PINCTRL_PIN(92, "GPIO_92"),
  202. PINCTRL_PIN(93, "GPIO_93"),
  203. PINCTRL_PIN(94, "GPIO_94"),
  204. PINCTRL_PIN(95, "GPIO_95"),
  205. PINCTRL_PIN(96, "GPIO_96"),
  206. PINCTRL_PIN(97, "GPIO_97"),
  207. PINCTRL_PIN(98, "GPIO_98"),
  208. PINCTRL_PIN(99, "GPIO_99"),
  209. PINCTRL_PIN(100, "GPIO_100"),
  210. PINCTRL_PIN(101, "GPIO_101"),
  211. PINCTRL_PIN(102, "GPIO_102"),
  212. PINCTRL_PIN(103, "GPIO_103"),
  213. PINCTRL_PIN(104, "GPIO_104"),
  214. PINCTRL_PIN(105, "GPIO_105"),
  215. PINCTRL_PIN(106, "GPIO_106"),
  216. PINCTRL_PIN(107, "GPIO_107"),
  217. PINCTRL_PIN(108, "GPIO_108"),
  218. PINCTRL_PIN(109, "GPIO_109"),
  219. PINCTRL_PIN(110, "GPIO_110"),
  220. PINCTRL_PIN(111, "GPIO_111"),
  221. PINCTRL_PIN(112, "GPIO_112"),
  222. PINCTRL_PIN(113, "GPIO_113"),
  223. PINCTRL_PIN(114, "GPIO_114"),
  224. PINCTRL_PIN(115, "GPIO_115"),
  225. PINCTRL_PIN(116, "GPIO_116"),
  226. PINCTRL_PIN(117, "GPIO_117"),
  227. PINCTRL_PIN(118, "GPIO_118"),
  228. PINCTRL_PIN(119, "GPIO_119"),
  229. PINCTRL_PIN(120, "GPIO_120"),
  230. PINCTRL_PIN(121, "GPIO_121"),
  231. PINCTRL_PIN(122, "GPIO_122"),
  232. PINCTRL_PIN(123, "GPIO_123"),
  233. PINCTRL_PIN(124, "GPIO_124"),
  234. PINCTRL_PIN(125, "GPIO_125"),
  235. PINCTRL_PIN(126, "GPIO_126"),
  236. PINCTRL_PIN(127, "GPIO_127"),
  237. PINCTRL_PIN(128, "GPIO_128"),
  238. PINCTRL_PIN(129, "GPIO_129"),
  239. PINCTRL_PIN(130, "GPIO_130"),
  240. PINCTRL_PIN(131, "GPIO_131"),
  241. PINCTRL_PIN(132, "GPIO_132"),
  242. PINCTRL_PIN(133, "GPIO_133"),
  243. PINCTRL_PIN(134, "GPIO_134"),
  244. PINCTRL_PIN(135, "GPIO_135"),
  245. PINCTRL_PIN(136, "GPIO_136"),
  246. PINCTRL_PIN(137, "GPIO_137"),
  247. PINCTRL_PIN(138, "GPIO_138"),
  248. PINCTRL_PIN(139, "GPIO_139"),
  249. PINCTRL_PIN(140, "GPIO_140"),
  250. PINCTRL_PIN(141, "GPIO_141"),
  251. PINCTRL_PIN(142, "GPIO_142"),
  252. PINCTRL_PIN(143, "GPIO_143"),
  253. PINCTRL_PIN(144, "GPIO_144"),
  254. PINCTRL_PIN(145, "GPIO_145"),
  255. PINCTRL_PIN(146, "GPIO_146"),
  256. PINCTRL_PIN(147, "GPIO_147"),
  257. PINCTRL_PIN(148, "GPIO_148"),
  258. PINCTRL_PIN(149, "GPIO_149"),
  259. PINCTRL_PIN(150, "UFS_RESET"),
  260. PINCTRL_PIN(151, "SDC2_CLK"),
  261. PINCTRL_PIN(152, "SDC2_CMD"),
  262. PINCTRL_PIN(153, "SDC2_DATA"),
  263. };
  264. #define DECLARE_MSM_GPIO_PINS(pin) \
  265. static const unsigned int gpio##pin##_pins[] = { pin }
  266. DECLARE_MSM_GPIO_PINS(0);
  267. DECLARE_MSM_GPIO_PINS(1);
  268. DECLARE_MSM_GPIO_PINS(2);
  269. DECLARE_MSM_GPIO_PINS(3);
  270. DECLARE_MSM_GPIO_PINS(4);
  271. DECLARE_MSM_GPIO_PINS(5);
  272. DECLARE_MSM_GPIO_PINS(6);
  273. DECLARE_MSM_GPIO_PINS(7);
  274. DECLARE_MSM_GPIO_PINS(8);
  275. DECLARE_MSM_GPIO_PINS(9);
  276. DECLARE_MSM_GPIO_PINS(10);
  277. DECLARE_MSM_GPIO_PINS(11);
  278. DECLARE_MSM_GPIO_PINS(12);
  279. DECLARE_MSM_GPIO_PINS(13);
  280. DECLARE_MSM_GPIO_PINS(14);
  281. DECLARE_MSM_GPIO_PINS(15);
  282. DECLARE_MSM_GPIO_PINS(16);
  283. DECLARE_MSM_GPIO_PINS(17);
  284. DECLARE_MSM_GPIO_PINS(18);
  285. DECLARE_MSM_GPIO_PINS(19);
  286. DECLARE_MSM_GPIO_PINS(20);
  287. DECLARE_MSM_GPIO_PINS(21);
  288. DECLARE_MSM_GPIO_PINS(22);
  289. DECLARE_MSM_GPIO_PINS(23);
  290. DECLARE_MSM_GPIO_PINS(24);
  291. DECLARE_MSM_GPIO_PINS(25);
  292. DECLARE_MSM_GPIO_PINS(26);
  293. DECLARE_MSM_GPIO_PINS(27);
  294. DECLARE_MSM_GPIO_PINS(28);
  295. DECLARE_MSM_GPIO_PINS(29);
  296. DECLARE_MSM_GPIO_PINS(30);
  297. DECLARE_MSM_GPIO_PINS(31);
  298. DECLARE_MSM_GPIO_PINS(32);
  299. DECLARE_MSM_GPIO_PINS(33);
  300. DECLARE_MSM_GPIO_PINS(34);
  301. DECLARE_MSM_GPIO_PINS(35);
  302. DECLARE_MSM_GPIO_PINS(36);
  303. DECLARE_MSM_GPIO_PINS(37);
  304. DECLARE_MSM_GPIO_PINS(38);
  305. DECLARE_MSM_GPIO_PINS(39);
  306. DECLARE_MSM_GPIO_PINS(40);
  307. DECLARE_MSM_GPIO_PINS(41);
  308. DECLARE_MSM_GPIO_PINS(42);
  309. DECLARE_MSM_GPIO_PINS(43);
  310. DECLARE_MSM_GPIO_PINS(44);
  311. DECLARE_MSM_GPIO_PINS(45);
  312. DECLARE_MSM_GPIO_PINS(46);
  313. DECLARE_MSM_GPIO_PINS(47);
  314. DECLARE_MSM_GPIO_PINS(48);
  315. DECLARE_MSM_GPIO_PINS(49);
  316. DECLARE_MSM_GPIO_PINS(50);
  317. DECLARE_MSM_GPIO_PINS(51);
  318. DECLARE_MSM_GPIO_PINS(52);
  319. DECLARE_MSM_GPIO_PINS(53);
  320. DECLARE_MSM_GPIO_PINS(54);
  321. DECLARE_MSM_GPIO_PINS(55);
  322. DECLARE_MSM_GPIO_PINS(56);
  323. DECLARE_MSM_GPIO_PINS(57);
  324. DECLARE_MSM_GPIO_PINS(58);
  325. DECLARE_MSM_GPIO_PINS(59);
  326. DECLARE_MSM_GPIO_PINS(60);
  327. DECLARE_MSM_GPIO_PINS(61);
  328. DECLARE_MSM_GPIO_PINS(62);
  329. DECLARE_MSM_GPIO_PINS(63);
  330. DECLARE_MSM_GPIO_PINS(64);
  331. DECLARE_MSM_GPIO_PINS(65);
  332. DECLARE_MSM_GPIO_PINS(66);
  333. DECLARE_MSM_GPIO_PINS(67);
  334. DECLARE_MSM_GPIO_PINS(68);
  335. DECLARE_MSM_GPIO_PINS(69);
  336. DECLARE_MSM_GPIO_PINS(70);
  337. DECLARE_MSM_GPIO_PINS(71);
  338. DECLARE_MSM_GPIO_PINS(72);
  339. DECLARE_MSM_GPIO_PINS(73);
  340. DECLARE_MSM_GPIO_PINS(74);
  341. DECLARE_MSM_GPIO_PINS(75);
  342. DECLARE_MSM_GPIO_PINS(76);
  343. DECLARE_MSM_GPIO_PINS(77);
  344. DECLARE_MSM_GPIO_PINS(78);
  345. DECLARE_MSM_GPIO_PINS(79);
  346. DECLARE_MSM_GPIO_PINS(80);
  347. DECLARE_MSM_GPIO_PINS(81);
  348. DECLARE_MSM_GPIO_PINS(82);
  349. DECLARE_MSM_GPIO_PINS(83);
  350. DECLARE_MSM_GPIO_PINS(84);
  351. DECLARE_MSM_GPIO_PINS(85);
  352. DECLARE_MSM_GPIO_PINS(86);
  353. DECLARE_MSM_GPIO_PINS(87);
  354. DECLARE_MSM_GPIO_PINS(88);
  355. DECLARE_MSM_GPIO_PINS(89);
  356. DECLARE_MSM_GPIO_PINS(90);
  357. DECLARE_MSM_GPIO_PINS(91);
  358. DECLARE_MSM_GPIO_PINS(92);
  359. DECLARE_MSM_GPIO_PINS(93);
  360. DECLARE_MSM_GPIO_PINS(94);
  361. DECLARE_MSM_GPIO_PINS(95);
  362. DECLARE_MSM_GPIO_PINS(96);
  363. DECLARE_MSM_GPIO_PINS(97);
  364. DECLARE_MSM_GPIO_PINS(98);
  365. DECLARE_MSM_GPIO_PINS(99);
  366. DECLARE_MSM_GPIO_PINS(100);
  367. DECLARE_MSM_GPIO_PINS(101);
  368. DECLARE_MSM_GPIO_PINS(102);
  369. DECLARE_MSM_GPIO_PINS(103);
  370. DECLARE_MSM_GPIO_PINS(104);
  371. DECLARE_MSM_GPIO_PINS(105);
  372. DECLARE_MSM_GPIO_PINS(106);
  373. DECLARE_MSM_GPIO_PINS(107);
  374. DECLARE_MSM_GPIO_PINS(108);
  375. DECLARE_MSM_GPIO_PINS(109);
  376. DECLARE_MSM_GPIO_PINS(110);
  377. DECLARE_MSM_GPIO_PINS(111);
  378. DECLARE_MSM_GPIO_PINS(112);
  379. DECLARE_MSM_GPIO_PINS(113);
  380. DECLARE_MSM_GPIO_PINS(114);
  381. DECLARE_MSM_GPIO_PINS(115);
  382. DECLARE_MSM_GPIO_PINS(116);
  383. DECLARE_MSM_GPIO_PINS(117);
  384. DECLARE_MSM_GPIO_PINS(118);
  385. DECLARE_MSM_GPIO_PINS(119);
  386. DECLARE_MSM_GPIO_PINS(120);
  387. DECLARE_MSM_GPIO_PINS(121);
  388. DECLARE_MSM_GPIO_PINS(122);
  389. DECLARE_MSM_GPIO_PINS(123);
  390. DECLARE_MSM_GPIO_PINS(124);
  391. DECLARE_MSM_GPIO_PINS(125);
  392. DECLARE_MSM_GPIO_PINS(126);
  393. DECLARE_MSM_GPIO_PINS(127);
  394. DECLARE_MSM_GPIO_PINS(128);
  395. DECLARE_MSM_GPIO_PINS(129);
  396. DECLARE_MSM_GPIO_PINS(130);
  397. DECLARE_MSM_GPIO_PINS(131);
  398. DECLARE_MSM_GPIO_PINS(132);
  399. DECLARE_MSM_GPIO_PINS(133);
  400. DECLARE_MSM_GPIO_PINS(134);
  401. DECLARE_MSM_GPIO_PINS(135);
  402. DECLARE_MSM_GPIO_PINS(136);
  403. DECLARE_MSM_GPIO_PINS(137);
  404. DECLARE_MSM_GPIO_PINS(138);
  405. DECLARE_MSM_GPIO_PINS(139);
  406. DECLARE_MSM_GPIO_PINS(140);
  407. DECLARE_MSM_GPIO_PINS(141);
  408. DECLARE_MSM_GPIO_PINS(142);
  409. DECLARE_MSM_GPIO_PINS(143);
  410. DECLARE_MSM_GPIO_PINS(144);
  411. DECLARE_MSM_GPIO_PINS(145);
  412. DECLARE_MSM_GPIO_PINS(146);
  413. DECLARE_MSM_GPIO_PINS(147);
  414. DECLARE_MSM_GPIO_PINS(148);
  415. DECLARE_MSM_GPIO_PINS(149);
  416. static const unsigned int ufs_reset_pins[] = { 150 };
  417. static const unsigned int sdc2_clk_pins[] = { 151 };
  418. static const unsigned int sdc2_cmd_pins[] = { 152 };
  419. static const unsigned int sdc2_data_pins[] = { 153 };
  420. enum sdm845_functions {
  421. msm_mux_gpio,
  422. msm_mux_adsp_ext,
  423. msm_mux_agera_pll,
  424. msm_mux_atest_char,
  425. msm_mux_atest_tsens,
  426. msm_mux_atest_tsens2,
  427. msm_mux_atest_usb1,
  428. msm_mux_atest_usb10,
  429. msm_mux_atest_usb11,
  430. msm_mux_atest_usb12,
  431. msm_mux_atest_usb13,
  432. msm_mux_atest_usb2,
  433. msm_mux_atest_usb20,
  434. msm_mux_atest_usb21,
  435. msm_mux_atest_usb22,
  436. msm_mux_atest_usb23,
  437. msm_mux_audio_ref,
  438. msm_mux_btfm_slimbus,
  439. msm_mux_cam_mclk,
  440. msm_mux_cci_async,
  441. msm_mux_cci_i2c,
  442. msm_mux_cci_timer0,
  443. msm_mux_cci_timer1,
  444. msm_mux_cci_timer2,
  445. msm_mux_cci_timer3,
  446. msm_mux_cci_timer4,
  447. msm_mux_cri_trng,
  448. msm_mux_cri_trng0,
  449. msm_mux_cri_trng1,
  450. msm_mux_dbg_out,
  451. msm_mux_ddr_bist,
  452. msm_mux_ddr_pxi0,
  453. msm_mux_ddr_pxi1,
  454. msm_mux_ddr_pxi2,
  455. msm_mux_ddr_pxi3,
  456. msm_mux_edp_hot,
  457. msm_mux_edp_lcd,
  458. msm_mux_gcc_gp1,
  459. msm_mux_gcc_gp2,
  460. msm_mux_gcc_gp3,
  461. msm_mux_jitter_bist,
  462. msm_mux_ldo_en,
  463. msm_mux_ldo_update,
  464. msm_mux_lpass_slimbus,
  465. msm_mux_m_voc,
  466. msm_mux_mdp_vsync,
  467. msm_mux_mdp_vsync0,
  468. msm_mux_mdp_vsync1,
  469. msm_mux_mdp_vsync2,
  470. msm_mux_mdp_vsync3,
  471. msm_mux_mss_lte,
  472. msm_mux_nav_pps,
  473. msm_mux_pa_indicator,
  474. msm_mux_pci_e0,
  475. msm_mux_pci_e1,
  476. msm_mux_phase_flag,
  477. msm_mux_pll_bist,
  478. msm_mux_pll_bypassnl,
  479. msm_mux_pll_reset,
  480. msm_mux_pri_mi2s,
  481. msm_mux_pri_mi2s_ws,
  482. msm_mux_prng_rosc,
  483. msm_mux_qdss_cti,
  484. msm_mux_qdss,
  485. msm_mux_qlink_enable,
  486. msm_mux_qlink_request,
  487. msm_mux_qspi_clk,
  488. msm_mux_qspi_cs,
  489. msm_mux_qspi_data,
  490. msm_mux_qua_mi2s,
  491. msm_mux_qup0,
  492. msm_mux_qup1,
  493. msm_mux_qup10,
  494. msm_mux_qup11,
  495. msm_mux_qup12,
  496. msm_mux_qup13,
  497. msm_mux_qup14,
  498. msm_mux_qup15,
  499. msm_mux_qup2,
  500. msm_mux_qup3,
  501. msm_mux_qup4,
  502. msm_mux_qup5,
  503. msm_mux_qup6,
  504. msm_mux_qup7,
  505. msm_mux_qup8,
  506. msm_mux_qup9,
  507. msm_mux_qup_l4,
  508. msm_mux_qup_l5,
  509. msm_mux_qup_l6,
  510. msm_mux_sd_write,
  511. msm_mux_sdc4_clk,
  512. msm_mux_sdc4_cmd,
  513. msm_mux_sdc4_data,
  514. msm_mux_sec_mi2s,
  515. msm_mux_sp_cmu,
  516. msm_mux_spkr_i2s,
  517. msm_mux_ter_mi2s,
  518. msm_mux_tgu_ch0,
  519. msm_mux_tgu_ch1,
  520. msm_mux_tgu_ch2,
  521. msm_mux_tgu_ch3,
  522. msm_mux_tsense_pwm1,
  523. msm_mux_tsense_pwm2,
  524. msm_mux_tsif1_clk,
  525. msm_mux_tsif1_data,
  526. msm_mux_tsif1_en,
  527. msm_mux_tsif1_error,
  528. msm_mux_tsif1_sync,
  529. msm_mux_tsif2_clk,
  530. msm_mux_tsif2_data,
  531. msm_mux_tsif2_en,
  532. msm_mux_tsif2_error,
  533. msm_mux_tsif2_sync,
  534. msm_mux_uim1_clk,
  535. msm_mux_uim1_data,
  536. msm_mux_uim1_present,
  537. msm_mux_uim1_reset,
  538. msm_mux_uim2_clk,
  539. msm_mux_uim2_data,
  540. msm_mux_uim2_present,
  541. msm_mux_uim2_reset,
  542. msm_mux_uim_batt,
  543. msm_mux_usb_phy,
  544. msm_mux_vfr_1,
  545. msm_mux_vsense_trigger,
  546. msm_mux_wlan1_adc0,
  547. msm_mux_wlan1_adc1,
  548. msm_mux_wlan2_adc0,
  549. msm_mux_wlan2_adc1,
  550. msm_mux__,
  551. };
  552. static const char * const ddr_pxi3_groups[] = {
  553. "gpio12", "gpio13",
  554. };
  555. static const char * const cam_mclk_groups[] = {
  556. "gpio13", "gpio14", "gpio15", "gpio16",
  557. };
  558. static const char * const pll_bypassnl_groups[] = {
  559. "gpio13",
  560. };
  561. static const char * const qdss_groups[] = {
  562. "gpio13", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19",
  563. "gpio20", "gpio21", "gpio22", "gpio23", "gpio24", "gpio25", "gpio26",
  564. "gpio27", "gpio28", "gpio29", "gpio30", "gpio41", "gpio42", "gpio43",
  565. "gpio44", "gpio75", "gpio76", "gpio77", "gpio79", "gpio80", "gpio93",
  566. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
  567. "gpio123", "gpio124",
  568. };
  569. static const char * const pll_reset_groups[] = {
  570. "gpio14",
  571. };
  572. static const char * const cci_i2c_groups[] = {
  573. "gpio17", "gpio18", "gpio19", "gpio20",
  574. };
  575. static const char * const qup1_groups[] = {
  576. "gpio17", "gpio18", "gpio19", "gpio20",
  577. };
  578. static const char * const cci_timer0_groups[] = {
  579. "gpio21",
  580. };
  581. static const char * const gcc_gp2_groups[] = {
  582. "gpio21", "gpio58",
  583. };
  584. static const char * const cci_timer1_groups[] = {
  585. "gpio22",
  586. };
  587. static const char * const gcc_gp3_groups[] = {
  588. "gpio22", "gpio59",
  589. };
  590. static const char * const cci_timer2_groups[] = {
  591. "gpio23",
  592. };
  593. static const char * const cci_timer3_groups[] = {
  594. "gpio24",
  595. };
  596. static const char * const cci_async_groups[] = {
  597. "gpio24", "gpio25", "gpio26",
  598. };
  599. static const char * const cci_timer4_groups[] = {
  600. "gpio25",
  601. };
  602. static const char * const qup2_groups[] = {
  603. "gpio27", "gpio28", "gpio29", "gpio30",
  604. };
  605. static const char * const phase_flag_groups[] = {
  606. "gpio29", "gpio30", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  607. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  608. "gpio64", "gpio74", "gpio75", "gpio76", "gpio77", "gpio89", "gpio90",
  609. "gpio96", "gpio99", "gpio100", "gpio103", "gpio137", "gpio138",
  610. "gpio139", "gpio140", "gpio141", "gpio142", "gpio143",
  611. };
  612. static const char * const qup11_groups[] = {
  613. "gpio31", "gpio32", "gpio33", "gpio34",
  614. };
  615. static const char * const qup14_groups[] = {
  616. "gpio31", "gpio32", "gpio33", "gpio34",
  617. };
  618. static const char * const pci_e0_groups[] = {
  619. "gpio35", "gpio36",
  620. };
  621. static const char * const jitter_bist_groups[] = {
  622. "gpio35",
  623. };
  624. static const char * const pll_bist_groups[] = {
  625. "gpio36",
  626. };
  627. static const char * const atest_tsens_groups[] = {
  628. "gpio36",
  629. };
  630. static const char * const agera_pll_groups[] = {
  631. "gpio37",
  632. };
  633. static const char * const usb_phy_groups[] = {
  634. "gpio38",
  635. };
  636. static const char * const lpass_slimbus_groups[] = {
  637. "gpio39", "gpio70", "gpio71", "gpio72",
  638. };
  639. static const char * const sd_write_groups[] = {
  640. "gpio40",
  641. };
  642. static const char * const tsif1_error_groups[] = {
  643. "gpio40",
  644. };
  645. static const char * const qup3_groups[] = {
  646. "gpio41", "gpio42", "gpio43", "gpio44",
  647. };
  648. static const char * const qup6_groups[] = {
  649. "gpio45", "gpio46", "gpio47", "gpio48",
  650. };
  651. static const char * const qup12_groups[] = {
  652. "gpio49", "gpio50", "gpio51", "gpio52",
  653. };
  654. static const char * const qup10_groups[] = {
  655. "gpio53", "gpio54", "gpio55", "gpio56",
  656. };
  657. static const char * const qua_mi2s_groups[] = {
  658. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  659. };
  660. static const char * const gcc_gp1_groups[] = {
  661. "gpio57", "gpio78",
  662. };
  663. static const char * const cri_trng0_groups[] = {
  664. "gpio60",
  665. };
  666. static const char * const cri_trng1_groups[] = {
  667. "gpio61",
  668. };
  669. static const char * const cri_trng_groups[] = {
  670. "gpio62",
  671. };
  672. static const char * const pri_mi2s_groups[] = {
  673. "gpio64", "gpio65", "gpio67", "gpio68",
  674. };
  675. static const char * const sp_cmu_groups[] = {
  676. "gpio64",
  677. };
  678. static const char * const qup8_groups[] = {
  679. "gpio65", "gpio66", "gpio67", "gpio68",
  680. };
  681. static const char * const pri_mi2s_ws_groups[] = {
  682. "gpio66",
  683. };
  684. static const char * const spkr_i2s_groups[] = {
  685. "gpio69", "gpio70", "gpio71", "gpio72",
  686. };
  687. static const char * const audio_ref_groups[] = {
  688. "gpio69",
  689. };
  690. static const char * const tsense_pwm1_groups[] = {
  691. "gpio71",
  692. };
  693. static const char * const tsense_pwm2_groups[] = {
  694. "gpio71",
  695. };
  696. static const char * const btfm_slimbus_groups[] = {
  697. "gpio73", "gpio74",
  698. };
  699. static const char * const atest_usb2_groups[] = {
  700. "gpio73",
  701. };
  702. static const char * const ter_mi2s_groups[] = {
  703. "gpio74", "gpio75", "gpio76", "gpio77", "gpio78",
  704. };
  705. static const char * const atest_usb23_groups[] = {
  706. "gpio74",
  707. };
  708. static const char * const atest_usb22_groups[] = {
  709. "gpio75",
  710. };
  711. static const char * const atest_usb21_groups[] = {
  712. "gpio76",
  713. };
  714. static const char * const atest_usb20_groups[] = {
  715. "gpio77",
  716. };
  717. static const char * const sec_mi2s_groups[] = {
  718. "gpio79", "gpio80", "gpio81", "gpio82", "gpio83",
  719. };
  720. static const char * const qup15_groups[] = {
  721. "gpio81", "gpio82", "gpio83", "gpio84",
  722. };
  723. static const char * const qup5_groups[] = {
  724. "gpio85", "gpio86", "gpio87", "gpio88",
  725. };
  726. static const char * const tsif1_clk_groups[] = {
  727. "gpio89",
  728. };
  729. static const char * const qup4_groups[] = {
  730. "gpio89", "gpio90", "gpio91", "gpio92",
  731. };
  732. static const char * const qspi_cs_groups[] = {
  733. "gpio89", "gpio90",
  734. };
  735. static const char * const tgu_ch3_groups[] = {
  736. "gpio89",
  737. };
  738. static const char * const tsif1_en_groups[] = {
  739. "gpio90",
  740. };
  741. static const char * const mdp_vsync0_groups[] = {
  742. "gpio90",
  743. };
  744. static const char * const mdp_vsync1_groups[] = {
  745. "gpio90",
  746. };
  747. static const char * const mdp_vsync2_groups[] = {
  748. "gpio90",
  749. };
  750. static const char * const mdp_vsync3_groups[] = {
  751. "gpio90",
  752. };
  753. static const char * const tgu_ch0_groups[] = {
  754. "gpio90",
  755. };
  756. static const char * const tsif1_data_groups[] = {
  757. "gpio91",
  758. };
  759. static const char * const sdc4_cmd_groups[] = {
  760. "gpio91",
  761. };
  762. static const char * const qspi_data_groups[] = {
  763. "gpio91", "gpio92", "gpio93", "gpio94",
  764. };
  765. static const char * const tgu_ch1_groups[] = {
  766. "gpio91",
  767. };
  768. static const char * const tsif2_error_groups[] = {
  769. "gpio92",
  770. };
  771. static const char * const sdc4_data_groups[] = {
  772. "gpio92",
  773. "gpio94",
  774. "gpio95",
  775. "gpio96",
  776. };
  777. static const char * const vfr_1_groups[] = {
  778. "gpio92",
  779. };
  780. static const char * const tgu_ch2_groups[] = {
  781. "gpio92",
  782. };
  783. static const char * const tsif2_clk_groups[] = {
  784. "gpio93",
  785. };
  786. static const char * const sdc4_clk_groups[] = {
  787. "gpio93",
  788. };
  789. static const char * const qup7_groups[] = {
  790. "gpio93", "gpio94", "gpio95", "gpio96",
  791. };
  792. static const char * const tsif2_en_groups[] = {
  793. "gpio94",
  794. };
  795. static const char * const tsif2_data_groups[] = {
  796. "gpio95",
  797. };
  798. static const char * const qspi_clk_groups[] = {
  799. "gpio95",
  800. };
  801. static const char * const tsif2_sync_groups[] = {
  802. "gpio96",
  803. };
  804. static const char * const ldo_en_groups[] = {
  805. "gpio97",
  806. };
  807. static const char * const ldo_update_groups[] = {
  808. "gpio98",
  809. };
  810. static const char * const pci_e1_groups[] = {
  811. "gpio102", "gpio103",
  812. };
  813. static const char * const prng_rosc_groups[] = {
  814. "gpio102",
  815. };
  816. static const char * const uim2_data_groups[] = {
  817. "gpio105",
  818. };
  819. static const char * const qup13_groups[] = {
  820. "gpio105", "gpio106", "gpio107", "gpio108",
  821. };
  822. static const char * const uim2_clk_groups[] = {
  823. "gpio106",
  824. };
  825. static const char * const uim2_reset_groups[] = {
  826. "gpio107",
  827. };
  828. static const char * const uim2_present_groups[] = {
  829. "gpio108",
  830. };
  831. static const char * const uim1_data_groups[] = {
  832. "gpio109",
  833. };
  834. static const char * const uim1_clk_groups[] = {
  835. "gpio110",
  836. };
  837. static const char * const uim1_reset_groups[] = {
  838. "gpio111",
  839. };
  840. static const char * const uim1_present_groups[] = {
  841. "gpio112",
  842. };
  843. static const char * const uim_batt_groups[] = {
  844. "gpio113",
  845. };
  846. static const char * const edp_hot_groups[] = {
  847. "gpio113",
  848. };
  849. static const char * const nav_pps_groups[] = {
  850. "gpio114", "gpio114", "gpio115", "gpio115", "gpio128", "gpio128",
  851. "gpio129", "gpio129", "gpio143", "gpio143",
  852. };
  853. static const char * const atest_char_groups[] = {
  854. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121",
  855. };
  856. static const char * const adsp_ext_groups[] = {
  857. "gpio118",
  858. };
  859. static const char * const qlink_request_groups[] = {
  860. "gpio130",
  861. };
  862. static const char * const qlink_enable_groups[] = {
  863. "gpio131",
  864. };
  865. static const char * const pa_indicator_groups[] = {
  866. "gpio135",
  867. };
  868. static const char * const mss_lte_groups[] = {
  869. "gpio144", "gpio145",
  870. };
  871. static const char * const qup0_groups[] = {
  872. "gpio0", "gpio1", "gpio2", "gpio3",
  873. };
  874. static const char * const gpio_groups[] = {
  875. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  876. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  877. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  878. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  879. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  880. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  881. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  882. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  883. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  884. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  885. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  886. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
  887. "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
  888. "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
  889. "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
  890. "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
  891. "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
  892. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
  893. "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128",
  894. "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134",
  895. "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140",
  896. "gpio141", "gpio142", "gpio143", "gpio144", "gpio145", "gpio146",
  897. "gpio147", "gpio148", "gpio149",
  898. };
  899. static const char * const qup9_groups[] = {
  900. "gpio4", "gpio5", "gpio6", "gpio7",
  901. };
  902. static const char * const qdss_cti_groups[] = {
  903. "gpio4", "gpio5", "gpio51", "gpio52", "gpio62", "gpio63", "gpio90",
  904. "gpio91",
  905. };
  906. static const char * const ddr_pxi0_groups[] = {
  907. "gpio6", "gpio7",
  908. };
  909. static const char * const ddr_bist_groups[] = {
  910. "gpio7", "gpio8", "gpio9", "gpio10",
  911. };
  912. static const char * const atest_tsens2_groups[] = {
  913. "gpio7",
  914. };
  915. static const char * const vsense_trigger_groups[] = {
  916. "gpio7",
  917. };
  918. static const char * const atest_usb1_groups[] = {
  919. "gpio7",
  920. };
  921. static const char * const qup_l4_groups[] = {
  922. "gpio8", "gpio35", "gpio105", "gpio123",
  923. };
  924. static const char * const wlan1_adc1_groups[] = {
  925. "gpio8",
  926. };
  927. static const char * const atest_usb13_groups[] = {
  928. "gpio8",
  929. };
  930. static const char * const ddr_pxi1_groups[] = {
  931. "gpio8", "gpio9",
  932. };
  933. static const char * const qup_l5_groups[] = {
  934. "gpio9", "gpio36", "gpio106", "gpio124",
  935. };
  936. static const char * const wlan1_adc0_groups[] = {
  937. "gpio9",
  938. };
  939. static const char * const atest_usb12_groups[] = {
  940. "gpio9",
  941. };
  942. static const char * const mdp_vsync_groups[] = {
  943. "gpio10", "gpio11", "gpio12", "gpio97", "gpio98",
  944. };
  945. static const char * const qup_l6_groups[] = {
  946. "gpio10", "gpio37", "gpio107", "gpio125",
  947. };
  948. static const char * const wlan2_adc1_groups[] = {
  949. "gpio10",
  950. };
  951. static const char * const atest_usb11_groups[] = {
  952. "gpio10",
  953. };
  954. static const char * const ddr_pxi2_groups[] = {
  955. "gpio10", "gpio11",
  956. };
  957. static const char * const edp_lcd_groups[] = {
  958. "gpio11",
  959. };
  960. static const char * const dbg_out_groups[] = {
  961. "gpio11",
  962. };
  963. static const char * const wlan2_adc0_groups[] = {
  964. "gpio11",
  965. };
  966. static const char * const atest_usb10_groups[] = {
  967. "gpio11",
  968. };
  969. static const char * const m_voc_groups[] = {
  970. "gpio12",
  971. };
  972. static const char * const tsif1_sync_groups[] = {
  973. "gpio12",
  974. };
  975. static const struct msm_function sdm845_functions[] = {
  976. FUNCTION(gpio),
  977. FUNCTION(adsp_ext),
  978. FUNCTION(agera_pll),
  979. FUNCTION(atest_char),
  980. FUNCTION(atest_tsens),
  981. FUNCTION(atest_tsens2),
  982. FUNCTION(atest_usb1),
  983. FUNCTION(atest_usb10),
  984. FUNCTION(atest_usb11),
  985. FUNCTION(atest_usb12),
  986. FUNCTION(atest_usb13),
  987. FUNCTION(atest_usb2),
  988. FUNCTION(atest_usb20),
  989. FUNCTION(atest_usb21),
  990. FUNCTION(atest_usb22),
  991. FUNCTION(atest_usb23),
  992. FUNCTION(audio_ref),
  993. FUNCTION(btfm_slimbus),
  994. FUNCTION(cam_mclk),
  995. FUNCTION(cci_async),
  996. FUNCTION(cci_i2c),
  997. FUNCTION(cci_timer0),
  998. FUNCTION(cci_timer1),
  999. FUNCTION(cci_timer2),
  1000. FUNCTION(cci_timer3),
  1001. FUNCTION(cci_timer4),
  1002. FUNCTION(cri_trng),
  1003. FUNCTION(cri_trng0),
  1004. FUNCTION(cri_trng1),
  1005. FUNCTION(dbg_out),
  1006. FUNCTION(ddr_bist),
  1007. FUNCTION(ddr_pxi0),
  1008. FUNCTION(ddr_pxi1),
  1009. FUNCTION(ddr_pxi2),
  1010. FUNCTION(ddr_pxi3),
  1011. FUNCTION(edp_hot),
  1012. FUNCTION(edp_lcd),
  1013. FUNCTION(gcc_gp1),
  1014. FUNCTION(gcc_gp2),
  1015. FUNCTION(gcc_gp3),
  1016. FUNCTION(jitter_bist),
  1017. FUNCTION(ldo_en),
  1018. FUNCTION(ldo_update),
  1019. FUNCTION(lpass_slimbus),
  1020. FUNCTION(m_voc),
  1021. FUNCTION(mdp_vsync),
  1022. FUNCTION(mdp_vsync0),
  1023. FUNCTION(mdp_vsync1),
  1024. FUNCTION(mdp_vsync2),
  1025. FUNCTION(mdp_vsync3),
  1026. FUNCTION(mss_lte),
  1027. FUNCTION(nav_pps),
  1028. FUNCTION(pa_indicator),
  1029. FUNCTION(pci_e0),
  1030. FUNCTION(pci_e1),
  1031. FUNCTION(phase_flag),
  1032. FUNCTION(pll_bist),
  1033. FUNCTION(pll_bypassnl),
  1034. FUNCTION(pll_reset),
  1035. FUNCTION(pri_mi2s),
  1036. FUNCTION(pri_mi2s_ws),
  1037. FUNCTION(prng_rosc),
  1038. FUNCTION(qdss_cti),
  1039. FUNCTION(qdss),
  1040. FUNCTION(qlink_enable),
  1041. FUNCTION(qlink_request),
  1042. FUNCTION(qspi_clk),
  1043. FUNCTION(qspi_cs),
  1044. FUNCTION(qspi_data),
  1045. FUNCTION(qua_mi2s),
  1046. FUNCTION(qup0),
  1047. FUNCTION(qup1),
  1048. FUNCTION(qup10),
  1049. FUNCTION(qup11),
  1050. FUNCTION(qup12),
  1051. FUNCTION(qup13),
  1052. FUNCTION(qup14),
  1053. FUNCTION(qup15),
  1054. FUNCTION(qup2),
  1055. FUNCTION(qup3),
  1056. FUNCTION(qup4),
  1057. FUNCTION(qup5),
  1058. FUNCTION(qup6),
  1059. FUNCTION(qup7),
  1060. FUNCTION(qup8),
  1061. FUNCTION(qup9),
  1062. FUNCTION(qup_l4),
  1063. FUNCTION(qup_l5),
  1064. FUNCTION(qup_l6),
  1065. FUNCTION(sd_write),
  1066. FUNCTION(sdc4_clk),
  1067. FUNCTION(sdc4_cmd),
  1068. FUNCTION(sdc4_data),
  1069. FUNCTION(sec_mi2s),
  1070. FUNCTION(sp_cmu),
  1071. FUNCTION(spkr_i2s),
  1072. FUNCTION(ter_mi2s),
  1073. FUNCTION(tgu_ch0),
  1074. FUNCTION(tgu_ch1),
  1075. FUNCTION(tgu_ch2),
  1076. FUNCTION(tgu_ch3),
  1077. FUNCTION(tsense_pwm1),
  1078. FUNCTION(tsense_pwm2),
  1079. FUNCTION(tsif1_clk),
  1080. FUNCTION(tsif1_data),
  1081. FUNCTION(tsif1_en),
  1082. FUNCTION(tsif1_error),
  1083. FUNCTION(tsif1_sync),
  1084. FUNCTION(tsif2_clk),
  1085. FUNCTION(tsif2_data),
  1086. FUNCTION(tsif2_en),
  1087. FUNCTION(tsif2_error),
  1088. FUNCTION(tsif2_sync),
  1089. FUNCTION(uim1_clk),
  1090. FUNCTION(uim1_data),
  1091. FUNCTION(uim1_present),
  1092. FUNCTION(uim1_reset),
  1093. FUNCTION(uim2_clk),
  1094. FUNCTION(uim2_data),
  1095. FUNCTION(uim2_present),
  1096. FUNCTION(uim2_reset),
  1097. FUNCTION(uim_batt),
  1098. FUNCTION(usb_phy),
  1099. FUNCTION(vfr_1),
  1100. FUNCTION(vsense_trigger),
  1101. FUNCTION(wlan1_adc0),
  1102. FUNCTION(wlan1_adc1),
  1103. FUNCTION(wlan2_adc0),
  1104. FUNCTION(wlan2_adc1),
  1105. };
  1106. /* Every pin is maintained as a single group, and missing or non-existing pin
  1107. * would be maintained as dummy group to synchronize pin group index with
  1108. * pin descriptor registered with pinctrl core.
  1109. * Clients would not be able to request these dummy pin groups.
  1110. */
  1111. static const struct msm_pingroup sdm845_groups[] = {
  1112. PINGROUP(0, EAST, qup0, _, _, _, _, _, _, _, _, _),
  1113. PINGROUP(1, EAST, qup0, _, _, _, _, _, _, _, _, _),
  1114. PINGROUP(2, EAST, qup0, _, _, _, _, _, _, _, _, _),
  1115. PINGROUP(3, EAST, qup0, _, _, _, _, _, _, _, _, _),
  1116. PINGROUP(4, NORTH, qup9, qdss_cti, _, _, _, _, _, _, _, _),
  1117. PINGROUP(5, NORTH, qup9, qdss_cti, _, _, _, _, _, _, _, _),
  1118. PINGROUP(6, NORTH, qup9, _, ddr_pxi0, _, _, _, _, _, _, _),
  1119. PINGROUP(7, NORTH, qup9, ddr_bist, _, atest_tsens2, vsense_trigger, atest_usb1, ddr_pxi0, _, _, _),
  1120. PINGROUP(8, EAST, qup_l4, _, ddr_bist, _, _, wlan1_adc1, atest_usb13, ddr_pxi1, _, _),
  1121. PINGROUP(9, EAST, qup_l5, ddr_bist, _, wlan1_adc0, atest_usb12, ddr_pxi1, _, _, _, _),
  1122. PINGROUP(10, EAST, mdp_vsync, qup_l6, ddr_bist, wlan2_adc1, atest_usb11, ddr_pxi2, _, _, _, _),
  1123. PINGROUP(11, EAST, mdp_vsync, edp_lcd, dbg_out, wlan2_adc0, atest_usb10, ddr_pxi2, _, _, _, _),
  1124. PINGROUP(12, SOUTH, mdp_vsync, m_voc, tsif1_sync, ddr_pxi3, _, _, _, _, _, _),
  1125. PINGROUP(13, SOUTH, cam_mclk, pll_bypassnl, qdss, ddr_pxi3, _, _, _, _, _, _),
  1126. PINGROUP(14, SOUTH, cam_mclk, pll_reset, qdss, _, _, _, _, _, _, _),
  1127. PINGROUP(15, SOUTH, cam_mclk, qdss, _, _, _, _, _, _, _, _),
  1128. PINGROUP(16, SOUTH, cam_mclk, qdss, _, _, _, _, _, _, _, _),
  1129. PINGROUP(17, SOUTH, cci_i2c, qup1, qdss, _, _, _, _, _, _, _),
  1130. PINGROUP(18, SOUTH, cci_i2c, qup1, _, qdss, _, _, _, _, _, _),
  1131. PINGROUP(19, SOUTH, cci_i2c, qup1, _, qdss, _, _, _, _, _, _),
  1132. PINGROUP(20, SOUTH, cci_i2c, qup1, _, qdss, _, _, _, _, _, _),
  1133. PINGROUP(21, SOUTH, cci_timer0, gcc_gp2, qdss, _, _, _, _, _, _, _),
  1134. PINGROUP(22, SOUTH, cci_timer1, gcc_gp3, qdss, _, _, _, _, _, _, _),
  1135. PINGROUP(23, SOUTH, cci_timer2, qdss, _, _, _, _, _, _, _, _),
  1136. PINGROUP(24, SOUTH, cci_timer3, cci_async, qdss, _, _, _, _, _, _, _),
  1137. PINGROUP(25, SOUTH, cci_timer4, cci_async, qdss, _, _, _, _, _, _, _),
  1138. PINGROUP(26, SOUTH, cci_async, qdss, _, _, _, _, _, _, _, _),
  1139. PINGROUP(27, EAST, qup2, qdss, _, _, _, _, _, _, _, _),
  1140. PINGROUP(28, EAST, qup2, qdss, _, _, _, _, _, _, _, _),
  1141. PINGROUP(29, EAST, qup2, _, phase_flag, qdss, _, _, _, _, _, _),
  1142. PINGROUP(30, EAST, qup2, phase_flag, qdss, _, _, _, _, _, _, _),
  1143. PINGROUP(31, NORTH, qup11, qup14, _, _, _, _, _, _, _, _),
  1144. PINGROUP(32, NORTH, qup11, qup14, _, _, _, _, _, _, _, _),
  1145. PINGROUP(33, NORTH, qup11, qup14, _, _, _, _, _, _, _, _),
  1146. PINGROUP(34, NORTH, qup11, qup14, _, _, _, _, _, _, _, _),
  1147. PINGROUP(35, SOUTH, pci_e0, qup_l4, jitter_bist, _, _, _, _, _, _, _),
  1148. PINGROUP(36, SOUTH, pci_e0, qup_l5, pll_bist, _, atest_tsens, _, _, _, _, _),
  1149. PINGROUP(37, SOUTH, qup_l6, agera_pll, _, _, _, _, _, _, _, _),
  1150. PINGROUP(38, NORTH, usb_phy, _, _, _, _, _, _, _, _, _),
  1151. PINGROUP(39, EAST, lpass_slimbus, _, _, _, _, _, _, _, _, _),
  1152. PINGROUP(40, SOUTH, sd_write, tsif1_error, _, _, _, _, _, _, _, _),
  1153. PINGROUP(41, EAST, qup3, _, qdss, _, _, _, _, _, _, _),
  1154. PINGROUP(42, EAST, qup3, _, qdss, _, _, _, _, _, _, _),
  1155. PINGROUP(43, EAST, qup3, _, qdss, _, _, _, _, _, _, _),
  1156. PINGROUP(44, EAST, qup3, _, qdss, _, _, _, _, _, _, _),
  1157. PINGROUP(45, EAST, qup6, _, _, _, _, _, _, _, _, _),
  1158. PINGROUP(46, EAST, qup6, _, _, _, _, _, _, _, _, _),
  1159. PINGROUP(47, EAST, qup6, _, _, _, _, _, _, _, _, _),
  1160. PINGROUP(48, EAST, qup6, _, _, _, _, _, _, _, _, _),
  1161. PINGROUP(49, NORTH, qup12, _, _, _, _, _, _, _, _, _),
  1162. PINGROUP(50, NORTH, qup12, _, _, _, _, _, _, _, _, _),
  1163. PINGROUP(51, NORTH, qup12, qdss_cti, _, _, _, _, _, _, _, _),
  1164. PINGROUP(52, NORTH, qup12, phase_flag, qdss_cti, _, _, _, _, _, _, _),
  1165. PINGROUP(53, NORTH, qup10, phase_flag, _, _, _, _, _, _, _, _),
  1166. PINGROUP(54, NORTH, qup10, _, phase_flag, _, _, _, _, _, _, _),
  1167. PINGROUP(55, NORTH, qup10, phase_flag, _, _, _, _, _, _, _, _),
  1168. PINGROUP(56, NORTH, qup10, phase_flag, _, _, _, _, _, _, _, _),
  1169. PINGROUP(57, NORTH, qua_mi2s, gcc_gp1, phase_flag, _, _, _, _, _, _, _),
  1170. PINGROUP(58, NORTH, qua_mi2s, gcc_gp2, phase_flag, _, _, _, _, _, _, _),
  1171. PINGROUP(59, NORTH, qua_mi2s, gcc_gp3, phase_flag, _, _, _, _, _, _, _),
  1172. PINGROUP(60, NORTH, qua_mi2s, cri_trng0, phase_flag, _, _, _, _, _, _, _),
  1173. PINGROUP(61, NORTH, qua_mi2s, cri_trng1, phase_flag, _, _, _, _, _, _, _),
  1174. PINGROUP(62, NORTH, qua_mi2s, cri_trng, phase_flag, qdss_cti, _, _, _, _, _, _),
  1175. PINGROUP(63, NORTH, qua_mi2s, _, phase_flag, qdss_cti, _, _, _, _, _, _),
  1176. PINGROUP(64, NORTH, pri_mi2s, sp_cmu, phase_flag, _, _, _, _, _, _, _),
  1177. PINGROUP(65, NORTH, pri_mi2s, qup8, _, _, _, _, _, _, _, _),
  1178. PINGROUP(66, NORTH, pri_mi2s_ws, qup8, _, _, _, _, _, _, _, _),
  1179. PINGROUP(67, NORTH, pri_mi2s, qup8, _, _, _, _, _, _, _, _),
  1180. PINGROUP(68, NORTH, pri_mi2s, qup8, _, _, _, _, _, _, _, _),
  1181. PINGROUP(69, EAST, spkr_i2s, audio_ref, _, _, _, _, _, _, _, _),
  1182. PINGROUP(70, EAST, lpass_slimbus, spkr_i2s, _, _, _, _, _, _, _, _),
  1183. PINGROUP(71, EAST, lpass_slimbus, spkr_i2s, tsense_pwm1, tsense_pwm2, _, _, _, _, _, _),
  1184. PINGROUP(72, EAST, lpass_slimbus, spkr_i2s, _, _, _, _, _, _, _, _),
  1185. PINGROUP(73, EAST, btfm_slimbus, atest_usb2, _, _, _, _, _, _, _, _),
  1186. PINGROUP(74, EAST, btfm_slimbus, ter_mi2s, phase_flag, atest_usb23, _, _, _, _, _, _),
  1187. PINGROUP(75, EAST, ter_mi2s, phase_flag, qdss, atest_usb22, _, _, _, _, _, _),
  1188. PINGROUP(76, EAST, ter_mi2s, phase_flag, qdss, atest_usb21, _, _, _, _, _, _),
  1189. PINGROUP(77, EAST, ter_mi2s, phase_flag, qdss, atest_usb20, _, _, _, _, _, _),
  1190. PINGROUP(78, EAST, ter_mi2s, gcc_gp1, _, _, _, _, _, _, _, _),
  1191. PINGROUP(79, NORTH, sec_mi2s, _, _, qdss, _, _, _, _, _, _),
  1192. PINGROUP(80, NORTH, sec_mi2s, _, qdss, _, _, _, _, _, _, _),
  1193. PINGROUP(81, NORTH, sec_mi2s, qup15, _, _, _, _, _, _, _, _),
  1194. PINGROUP(82, NORTH, sec_mi2s, qup15, _, _, _, _, _, _, _, _),
  1195. PINGROUP(83, NORTH, sec_mi2s, qup15, _, _, _, _, _, _, _, _),
  1196. PINGROUP(84, NORTH, qup15, _, _, _, _, _, _, _, _, _),
  1197. PINGROUP(85, EAST, qup5, _, _, _, _, _, _, _, _, _),
  1198. PINGROUP(86, EAST, qup5, _, _, _, _, _, _, _, _, _),
  1199. PINGROUP(87, EAST, qup5, _, _, _, _, _, _, _, _, _),
  1200. PINGROUP(88, EAST, qup5, _, _, _, _, _, _, _, _, _),
  1201. PINGROUP(89, SOUTH, tsif1_clk, qup4, qspi_cs, tgu_ch3, phase_flag, _, _, _, _, _),
  1202. PINGROUP(90, SOUTH, tsif1_en, mdp_vsync0, qup4, qspi_cs, mdp_vsync1,
  1203. mdp_vsync2, mdp_vsync3, tgu_ch0, phase_flag, qdss_cti),
  1204. PINGROUP(91, SOUTH, tsif1_data, sdc4_cmd, qup4, qspi_data, tgu_ch1, _, qdss_cti, _, _, _),
  1205. PINGROUP(92, SOUTH, tsif2_error, sdc4_data, qup4, qspi_data, vfr_1, tgu_ch2, _, _, _, _),
  1206. PINGROUP(93, SOUTH, tsif2_clk, sdc4_clk, qup7, qspi_data, _, qdss, _, _, _, _),
  1207. PINGROUP(94, SOUTH, tsif2_en, sdc4_data, qup7, qspi_data, _, _, _, _, _, _),
  1208. PINGROUP(95, SOUTH, tsif2_data, sdc4_data, qup7, qspi_clk, _, _, _, _, _, _),
  1209. PINGROUP(96, SOUTH, tsif2_sync, sdc4_data, qup7, phase_flag, _, _, _, _, _, _),
  1210. PINGROUP(97, NORTH, _, _, mdp_vsync, ldo_en, _, _, _, _, _, _),
  1211. PINGROUP(98, NORTH, _, mdp_vsync, ldo_update, _, _, _, _, _, _, _),
  1212. PINGROUP(99, NORTH, phase_flag, _, _, _, _, _, _, _, _, _),
  1213. PINGROUP(100, NORTH, phase_flag, _, _, _, _, _, _, _, _, _),
  1214. PINGROUP(101, NORTH, _, _, _, _, _, _, _, _, _, _),
  1215. PINGROUP(102, NORTH, pci_e1, prng_rosc, _, _, _, _, _, _, _, _),
  1216. PINGROUP(103, NORTH, pci_e1, phase_flag, _, _, _, _, _, _, _, _),
  1217. PINGROUP(104, NORTH, _, _, _, _, _, _, _, _, _, _),
  1218. PINGROUP(105, NORTH, uim2_data, qup13, qup_l4, _, _, _, _, _, _, _),
  1219. PINGROUP(106, NORTH, uim2_clk, qup13, qup_l5, _, _, _, _, _, _, _),
  1220. PINGROUP(107, NORTH, uim2_reset, qup13, qup_l6, _, _, _, _, _, _, _),
  1221. PINGROUP(108, NORTH, uim2_present, qup13, _, _, _, _, _, _, _, _),
  1222. PINGROUP(109, NORTH, uim1_data, _, _, _, _, _, _, _, _, _),
  1223. PINGROUP(110, NORTH, uim1_clk, _, _, _, _, _, _, _, _, _),
  1224. PINGROUP(111, NORTH, uim1_reset, _, _, _, _, _, _, _, _, _),
  1225. PINGROUP(112, NORTH, uim1_present, _, _, _, _, _, _, _, _, _),
  1226. PINGROUP(113, NORTH, uim_batt, edp_hot, _, _, _, _, _, _, _, _),
  1227. PINGROUP(114, NORTH, _, nav_pps, nav_pps, _, _, _, _, _, _, _),
  1228. PINGROUP(115, NORTH, _, nav_pps, nav_pps, _, _, _, _, _, _, _),
  1229. PINGROUP(116, NORTH, _, _, _, _, _, _, _, _, _, _),
  1230. PINGROUP(117, NORTH, _, qdss, atest_char, _, _, _, _, _, _, _),
  1231. PINGROUP(118, NORTH, adsp_ext, _, qdss, atest_char, _, _, _, _, _, _),
  1232. PINGROUP(119, NORTH, _, qdss, atest_char, _, _, _, _, _, _, _),
  1233. PINGROUP(120, NORTH, _, qdss, atest_char, _, _, _, _, _, _, _),
  1234. PINGROUP(121, NORTH, _, qdss, atest_char, _, _, _, _, _, _, _),
  1235. PINGROUP(122, EAST, _, qdss, _, _, _, _, _, _, _, _),
  1236. PINGROUP(123, EAST, qup_l4, _, qdss, _, _, _, _, _, _, _),
  1237. PINGROUP(124, EAST, qup_l5, _, qdss, _, _, _, _, _, _, _),
  1238. PINGROUP(125, EAST, qup_l6, _, _, _, _, _, _, _, _, _),
  1239. PINGROUP(126, EAST, _, _, _, _, _, _, _, _, _, _),
  1240. PINGROUP(127, NORTH, _, _, _, _, _, _, _, _, _, _),
  1241. PINGROUP(128, NORTH, nav_pps, nav_pps, _, _, _, _, _, _, _, _),
  1242. PINGROUP(129, NORTH, nav_pps, nav_pps, _, _, _, _, _, _, _, _),
  1243. PINGROUP(130, NORTH, qlink_request, _, _, _, _, _, _, _, _, _),
  1244. PINGROUP(131, NORTH, qlink_enable, _, _, _, _, _, _, _, _, _),
  1245. PINGROUP(132, NORTH, _, _, _, _, _, _, _, _, _, _),
  1246. PINGROUP(133, NORTH, _, _, _, _, _, _, _, _, _, _),
  1247. PINGROUP(134, NORTH, _, _, _, _, _, _, _, _, _, _),
  1248. PINGROUP(135, NORTH, _, pa_indicator, _, _, _, _, _, _, _, _),
  1249. PINGROUP(136, NORTH, _, _, _, _, _, _, _, _, _, _),
  1250. PINGROUP(137, NORTH, _, _, phase_flag, _, _, _, _, _, _, _),
  1251. PINGROUP(138, NORTH, _, _, phase_flag, _, _, _, _, _, _, _),
  1252. PINGROUP(139, NORTH, _, phase_flag, _, _, _, _, _, _, _, _),
  1253. PINGROUP(140, NORTH, _, _, phase_flag, _, _, _, _, _, _, _),
  1254. PINGROUP(141, NORTH, _, phase_flag, _, _, _, _, _, _, _, _),
  1255. PINGROUP(142, NORTH, _, phase_flag, _, _, _, _, _, _, _, _),
  1256. PINGROUP(143, NORTH, _, nav_pps, nav_pps, _, phase_flag, _, _, _, _, _),
  1257. PINGROUP(144, NORTH, mss_lte, _, _, _, _, _, _, _, _, _),
  1258. PINGROUP(145, NORTH, mss_lte, _, _, _, _, _, _, _, _, _),
  1259. PINGROUP(146, NORTH, _, _, _, _, _, _, _, _, _, _),
  1260. PINGROUP(147, NORTH, _, _, _, _, _, _, _, _, _, _),
  1261. PINGROUP(148, NORTH, _, _, _, _, _, _, _, _, _, _),
  1262. PINGROUP(149, NORTH, _, _, _, _, _, _, _, _, _, _),
  1263. UFS_RESET(ufs_reset, 0x99f000),
  1264. SDC_QDSD_PINGROUP(sdc2_clk, 0x99a000, 14, 6),
  1265. SDC_QDSD_PINGROUP(sdc2_cmd, 0x99a000, 11, 3),
  1266. SDC_QDSD_PINGROUP(sdc2_data, 0x99a000, 9, 0),
  1267. };
  1268. static const int sdm845_acpi_reserved_gpios[] = {
  1269. 0, 1, 2, 3, 81, 82, 83, 84, -1
  1270. };
  1271. static const struct msm_gpio_wakeirq_map sdm845_pdc_map[] = {
  1272. { 1, 30 }, { 3, 31 }, { 5, 32 }, { 10, 33 }, { 11, 34 },
  1273. { 20, 35 }, { 22, 36 }, { 24, 37 }, { 26, 38 }, { 30, 39 },
  1274. { 31, 117 }, { 32, 41 }, { 34, 42 }, { 36, 43 }, { 37, 44 },
  1275. { 38, 45 }, { 39, 46 }, { 40, 47 }, { 41, 115 }, { 43, 49 },
  1276. { 44, 50 }, { 46, 51 }, { 48, 52 }, { 49, 118 }, { 52, 54 },
  1277. { 53, 55 }, { 54, 56 }, { 56, 57 }, { 57, 58 }, { 58, 59 },
  1278. { 59, 60 }, { 60, 61 }, { 61, 62 }, { 62, 63 }, { 63, 64 },
  1279. { 64, 65 }, { 66, 66 }, { 68, 67 }, { 71, 68 }, { 73, 69 },
  1280. { 77, 70 }, { 78, 71 }, { 79, 72 }, { 80, 73 }, { 84, 74 },
  1281. { 85, 75 }, { 86, 76 }, { 88, 77 }, { 89, 116 }, { 91, 79 },
  1282. { 92, 80 }, { 95, 81 }, { 96, 82 }, { 97, 83 }, { 101, 84 },
  1283. { 103, 85 }, { 104, 86 }, { 115, 90 }, { 116, 91 }, { 117, 92 },
  1284. { 118, 93 }, { 119, 94 }, { 120, 95 }, { 121, 96 }, { 122, 97 },
  1285. { 123, 98 }, { 124, 99 }, { 125, 100 }, { 127, 102 }, { 128, 103 },
  1286. { 129, 104 }, { 130, 105 }, { 132, 106 }, { 133, 107 }, { 145, 108 },
  1287. };
  1288. static const struct msm_pinctrl_soc_data sdm845_pinctrl = {
  1289. .pins = sdm845_pins,
  1290. .npins = ARRAY_SIZE(sdm845_pins),
  1291. .functions = sdm845_functions,
  1292. .nfunctions = ARRAY_SIZE(sdm845_functions),
  1293. .groups = sdm845_groups,
  1294. .ngroups = ARRAY_SIZE(sdm845_groups),
  1295. .ngpios = 151,
  1296. .wakeirq_map = sdm845_pdc_map,
  1297. .nwakeirq_map = ARRAY_SIZE(sdm845_pdc_map),
  1298. .wakeirq_dual_edge_errata = true,
  1299. };
  1300. static const struct msm_pinctrl_soc_data sdm845_acpi_pinctrl = {
  1301. .pins = sdm845_pins,
  1302. .npins = ARRAY_SIZE(sdm845_pins),
  1303. .groups = sdm845_groups,
  1304. .ngroups = ARRAY_SIZE(sdm845_groups),
  1305. .reserved_gpios = sdm845_acpi_reserved_gpios,
  1306. .ngpios = 150,
  1307. };
  1308. static int sdm845_pinctrl_probe(struct platform_device *pdev)
  1309. {
  1310. int ret;
  1311. if (pdev->dev.of_node) {
  1312. ret = msm_pinctrl_probe(pdev, &sdm845_pinctrl);
  1313. } else if (has_acpi_companion(&pdev->dev)) {
  1314. ret = msm_pinctrl_probe(pdev, &sdm845_acpi_pinctrl);
  1315. } else {
  1316. dev_err(&pdev->dev, "DT and ACPI disabled\n");
  1317. return -EINVAL;
  1318. }
  1319. return ret;
  1320. }
  1321. #ifdef CONFIG_ACPI
  1322. static const struct acpi_device_id sdm845_pinctrl_acpi_match[] = {
  1323. { "QCOM0217"},
  1324. { },
  1325. };
  1326. MODULE_DEVICE_TABLE(acpi, sdm845_pinctrl_acpi_match);
  1327. #endif
  1328. static const struct of_device_id sdm845_pinctrl_of_match[] = {
  1329. { .compatible = "qcom,sdm845-pinctrl", },
  1330. { },
  1331. };
  1332. static struct platform_driver sdm845_pinctrl_driver = {
  1333. .driver = {
  1334. .name = "sdm845-pinctrl",
  1335. .pm = &msm_pinctrl_dev_pm_ops,
  1336. .of_match_table = sdm845_pinctrl_of_match,
  1337. .acpi_match_table = ACPI_PTR(sdm845_pinctrl_acpi_match),
  1338. },
  1339. .probe = sdm845_pinctrl_probe,
  1340. .remove = msm_pinctrl_remove,
  1341. };
  1342. static int __init sdm845_pinctrl_init(void)
  1343. {
  1344. return platform_driver_register(&sdm845_pinctrl_driver);
  1345. }
  1346. arch_initcall(sdm845_pinctrl_init);
  1347. static void __exit sdm845_pinctrl_exit(void)
  1348. {
  1349. platform_driver_unregister(&sdm845_pinctrl_driver);
  1350. }
  1351. module_exit(sdm845_pinctrl_exit);
  1352. MODULE_DESCRIPTION("QTI sdm845 pinctrl driver");
  1353. MODULE_LICENSE("GPL v2");
  1354. MODULE_DEVICE_TABLE(of, sdm845_pinctrl_of_match);