pinctrl-sm6125.c 38 KB

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