pinctrl-qcm2290.c 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/of.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/pinctrl/pinctrl.h>
  9. #include "pinctrl-msm.h"
  10. #define FUNCTION(fname) \
  11. [msm_mux_##fname] = { \
  12. .name = #fname, \
  13. .groups = fname##_groups, \
  14. .ngroups = ARRAY_SIZE(fname##_groups), \
  15. }
  16. #define REG_SIZE 0x1000
  17. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
  18. { \
  19. .name = "gpio" #id, \
  20. .pins = gpio##id##_pins, \
  21. .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \
  22. .funcs = (int[]){ \
  23. msm_mux_gpio, /* gpio mode */ \
  24. msm_mux_##f1, \
  25. msm_mux_##f2, \
  26. msm_mux_##f3, \
  27. msm_mux_##f4, \
  28. msm_mux_##f5, \
  29. msm_mux_##f6, \
  30. msm_mux_##f7, \
  31. msm_mux_##f8, \
  32. msm_mux_##f9 \
  33. }, \
  34. .nfuncs = 10, \
  35. .ctl_reg = REG_SIZE * id, \
  36. .io_reg = 0x4 + REG_SIZE * id, \
  37. .intr_cfg_reg = 0x8 + REG_SIZE * id, \
  38. .intr_status_reg = 0xc + REG_SIZE * id, \
  39. .intr_target_reg = 0x8 + REG_SIZE * id, \
  40. .mux_bit = 2, \
  41. .pull_bit = 0, \
  42. .drv_bit = 6, \
  43. .oe_bit = 9, \
  44. .in_bit = 0, \
  45. .out_bit = 1, \
  46. .intr_enable_bit = 0, \
  47. .intr_status_bit = 0, \
  48. .intr_target_bit = 5, \
  49. .intr_target_kpss_val = 3, \
  50. .intr_raw_status_bit = 4, \
  51. .intr_polarity_bit = 1, \
  52. .intr_detection_bit = 2, \
  53. .intr_detection_width = 2, \
  54. }
  55. #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
  56. { \
  57. .name = #pg_name, \
  58. .pins = pg_name##_pins, \
  59. .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
  60. .ctl_reg = ctl, \
  61. .io_reg = 0, \
  62. .intr_cfg_reg = 0, \
  63. .intr_status_reg = 0, \
  64. .intr_target_reg = 0, \
  65. .mux_bit = -1, \
  66. .pull_bit = pull, \
  67. .drv_bit = drv, \
  68. .oe_bit = -1, \
  69. .in_bit = -1, \
  70. .out_bit = -1, \
  71. .intr_enable_bit = -1, \
  72. .intr_status_bit = -1, \
  73. .intr_target_bit = -1, \
  74. .intr_raw_status_bit = -1, \
  75. .intr_polarity_bit = -1, \
  76. .intr_detection_bit = -1, \
  77. .intr_detection_width = -1, \
  78. }
  79. #define UFS_RESET(pg_name, offset) \
  80. { \
  81. .name = #pg_name, \
  82. .pins = pg_name##_pins, \
  83. .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
  84. .ctl_reg = offset, \
  85. .io_reg = offset + 0x4, \
  86. .intr_cfg_reg = 0, \
  87. .intr_status_reg = 0, \
  88. .intr_target_reg = 0, \
  89. .mux_bit = -1, \
  90. .pull_bit = 3, \
  91. .drv_bit = 0, \
  92. .oe_bit = -1, \
  93. .in_bit = -1, \
  94. .out_bit = 0, \
  95. .intr_enable_bit = -1, \
  96. .intr_status_bit = -1, \
  97. .intr_target_bit = -1, \
  98. .intr_raw_status_bit = -1, \
  99. .intr_polarity_bit = -1, \
  100. .intr_detection_bit = -1, \
  101. .intr_detection_width = -1, \
  102. }
  103. static const struct pinctrl_pin_desc qcm2290_pins[] = {
  104. PINCTRL_PIN(0, "GPIO_0"),
  105. PINCTRL_PIN(1, "GPIO_1"),
  106. PINCTRL_PIN(2, "GPIO_2"),
  107. PINCTRL_PIN(3, "GPIO_3"),
  108. PINCTRL_PIN(4, "GPIO_4"),
  109. PINCTRL_PIN(5, "GPIO_5"),
  110. PINCTRL_PIN(6, "GPIO_6"),
  111. PINCTRL_PIN(7, "GPIO_7"),
  112. PINCTRL_PIN(8, "GPIO_8"),
  113. PINCTRL_PIN(9, "GPIO_9"),
  114. PINCTRL_PIN(10, "GPIO_10"),
  115. PINCTRL_PIN(11, "GPIO_11"),
  116. PINCTRL_PIN(12, "GPIO_12"),
  117. PINCTRL_PIN(13, "GPIO_13"),
  118. PINCTRL_PIN(14, "GPIO_14"),
  119. PINCTRL_PIN(15, "GPIO_15"),
  120. PINCTRL_PIN(16, "GPIO_16"),
  121. PINCTRL_PIN(17, "GPIO_17"),
  122. PINCTRL_PIN(18, "GPIO_18"),
  123. PINCTRL_PIN(19, "GPIO_19"),
  124. PINCTRL_PIN(20, "GPIO_20"),
  125. PINCTRL_PIN(21, "GPIO_21"),
  126. PINCTRL_PIN(22, "GPIO_22"),
  127. PINCTRL_PIN(23, "GPIO_23"),
  128. PINCTRL_PIN(24, "GPIO_24"),
  129. PINCTRL_PIN(25, "GPIO_25"),
  130. PINCTRL_PIN(26, "GPIO_26"),
  131. PINCTRL_PIN(27, "GPIO_27"),
  132. PINCTRL_PIN(28, "GPIO_28"),
  133. PINCTRL_PIN(29, "GPIO_29"),
  134. PINCTRL_PIN(30, "GPIO_30"),
  135. PINCTRL_PIN(31, "GPIO_31"),
  136. PINCTRL_PIN(32, "GPIO_32"),
  137. PINCTRL_PIN(33, "GPIO_33"),
  138. PINCTRL_PIN(34, "GPIO_34"),
  139. PINCTRL_PIN(35, "GPIO_35"),
  140. PINCTRL_PIN(36, "GPIO_36"),
  141. PINCTRL_PIN(37, "GPIO_37"),
  142. PINCTRL_PIN(38, "GPIO_38"),
  143. PINCTRL_PIN(39, "GPIO_39"),
  144. PINCTRL_PIN(40, "GPIO_40"),
  145. PINCTRL_PIN(41, "GPIO_41"),
  146. PINCTRL_PIN(42, "GPIO_42"),
  147. PINCTRL_PIN(43, "GPIO_43"),
  148. PINCTRL_PIN(44, "GPIO_44"),
  149. PINCTRL_PIN(45, "GPIO_45"),
  150. PINCTRL_PIN(46, "GPIO_46"),
  151. PINCTRL_PIN(47, "GPIO_47"),
  152. PINCTRL_PIN(48, "GPIO_48"),
  153. PINCTRL_PIN(49, "GPIO_49"),
  154. PINCTRL_PIN(50, "GPIO_50"),
  155. PINCTRL_PIN(51, "GPIO_51"),
  156. PINCTRL_PIN(52, "GPIO_52"),
  157. PINCTRL_PIN(53, "GPIO_53"),
  158. PINCTRL_PIN(54, "GPIO_54"),
  159. PINCTRL_PIN(55, "GPIO_55"),
  160. PINCTRL_PIN(56, "GPIO_56"),
  161. PINCTRL_PIN(57, "GPIO_57"),
  162. PINCTRL_PIN(58, "GPIO_58"),
  163. PINCTRL_PIN(59, "GPIO_59"),
  164. PINCTRL_PIN(60, "GPIO_60"),
  165. PINCTRL_PIN(61, "GPIO_61"),
  166. PINCTRL_PIN(62, "GPIO_62"),
  167. PINCTRL_PIN(63, "GPIO_63"),
  168. PINCTRL_PIN(64, "GPIO_64"),
  169. PINCTRL_PIN(69, "GPIO_69"),
  170. PINCTRL_PIN(70, "GPIO_70"),
  171. PINCTRL_PIN(71, "GPIO_71"),
  172. PINCTRL_PIN(72, "GPIO_72"),
  173. PINCTRL_PIN(73, "GPIO_73"),
  174. PINCTRL_PIN(74, "GPIO_74"),
  175. PINCTRL_PIN(75, "GPIO_75"),
  176. PINCTRL_PIN(76, "GPIO_76"),
  177. PINCTRL_PIN(77, "GPIO_77"),
  178. PINCTRL_PIN(78, "GPIO_78"),
  179. PINCTRL_PIN(79, "GPIO_79"),
  180. PINCTRL_PIN(80, "GPIO_80"),
  181. PINCTRL_PIN(81, "GPIO_81"),
  182. PINCTRL_PIN(82, "GPIO_82"),
  183. PINCTRL_PIN(86, "GPIO_86"),
  184. PINCTRL_PIN(87, "GPIO_87"),
  185. PINCTRL_PIN(88, "GPIO_88"),
  186. PINCTRL_PIN(89, "GPIO_89"),
  187. PINCTRL_PIN(90, "GPIO_90"),
  188. PINCTRL_PIN(91, "GPIO_91"),
  189. PINCTRL_PIN(94, "GPIO_94"),
  190. PINCTRL_PIN(95, "GPIO_95"),
  191. PINCTRL_PIN(96, "GPIO_96"),
  192. PINCTRL_PIN(97, "GPIO_97"),
  193. PINCTRL_PIN(98, "GPIO_98"),
  194. PINCTRL_PIN(99, "GPIO_99"),
  195. PINCTRL_PIN(100, "GPIO_100"),
  196. PINCTRL_PIN(101, "GPIO_101"),
  197. PINCTRL_PIN(102, "GPIO_102"),
  198. PINCTRL_PIN(103, "GPIO_103"),
  199. PINCTRL_PIN(104, "GPIO_104"),
  200. PINCTRL_PIN(105, "GPIO_105"),
  201. PINCTRL_PIN(106, "GPIO_106"),
  202. PINCTRL_PIN(107, "GPIO_107"),
  203. PINCTRL_PIN(108, "GPIO_108"),
  204. PINCTRL_PIN(109, "GPIO_109"),
  205. PINCTRL_PIN(110, "GPIO_110"),
  206. PINCTRL_PIN(111, "GPIO_111"),
  207. PINCTRL_PIN(112, "GPIO_112"),
  208. PINCTRL_PIN(113, "GPIO_113"),
  209. PINCTRL_PIN(114, "GPIO_114"),
  210. PINCTRL_PIN(115, "GPIO_115"),
  211. PINCTRL_PIN(116, "GPIO_116"),
  212. PINCTRL_PIN(117, "GPIO_117"),
  213. PINCTRL_PIN(118, "GPIO_118"),
  214. PINCTRL_PIN(119, "GPIO_119"),
  215. PINCTRL_PIN(120, "GPIO_120"),
  216. PINCTRL_PIN(121, "GPIO_121"),
  217. PINCTRL_PIN(122, "GPIO_122"),
  218. PINCTRL_PIN(123, "GPIO_123"),
  219. PINCTRL_PIN(124, "GPIO_124"),
  220. PINCTRL_PIN(125, "GPIO_125"),
  221. PINCTRL_PIN(126, "GPIO_126"),
  222. PINCTRL_PIN(127, "SDC1_RCLK"),
  223. PINCTRL_PIN(128, "SDC1_CLK"),
  224. PINCTRL_PIN(129, "SDC1_CMD"),
  225. PINCTRL_PIN(130, "SDC1_DATA"),
  226. PINCTRL_PIN(131, "SDC2_CLK"),
  227. PINCTRL_PIN(132, "SDC2_CMD"),
  228. PINCTRL_PIN(133, "SDC2_DATA"),
  229. };
  230. #define DECLARE_MSM_GPIO_PINS(pin) \
  231. static const unsigned int gpio##pin##_pins[] = { pin }
  232. DECLARE_MSM_GPIO_PINS(0);
  233. DECLARE_MSM_GPIO_PINS(1);
  234. DECLARE_MSM_GPIO_PINS(2);
  235. DECLARE_MSM_GPIO_PINS(3);
  236. DECLARE_MSM_GPIO_PINS(4);
  237. DECLARE_MSM_GPIO_PINS(5);
  238. DECLARE_MSM_GPIO_PINS(6);
  239. DECLARE_MSM_GPIO_PINS(7);
  240. DECLARE_MSM_GPIO_PINS(8);
  241. DECLARE_MSM_GPIO_PINS(9);
  242. DECLARE_MSM_GPIO_PINS(10);
  243. DECLARE_MSM_GPIO_PINS(11);
  244. DECLARE_MSM_GPIO_PINS(12);
  245. DECLARE_MSM_GPIO_PINS(13);
  246. DECLARE_MSM_GPIO_PINS(14);
  247. DECLARE_MSM_GPIO_PINS(15);
  248. DECLARE_MSM_GPIO_PINS(16);
  249. DECLARE_MSM_GPIO_PINS(17);
  250. DECLARE_MSM_GPIO_PINS(18);
  251. DECLARE_MSM_GPIO_PINS(19);
  252. DECLARE_MSM_GPIO_PINS(20);
  253. DECLARE_MSM_GPIO_PINS(21);
  254. DECLARE_MSM_GPIO_PINS(22);
  255. DECLARE_MSM_GPIO_PINS(23);
  256. DECLARE_MSM_GPIO_PINS(24);
  257. DECLARE_MSM_GPIO_PINS(25);
  258. DECLARE_MSM_GPIO_PINS(26);
  259. DECLARE_MSM_GPIO_PINS(27);
  260. DECLARE_MSM_GPIO_PINS(28);
  261. DECLARE_MSM_GPIO_PINS(29);
  262. DECLARE_MSM_GPIO_PINS(30);
  263. DECLARE_MSM_GPIO_PINS(31);
  264. DECLARE_MSM_GPIO_PINS(32);
  265. DECLARE_MSM_GPIO_PINS(33);
  266. DECLARE_MSM_GPIO_PINS(34);
  267. DECLARE_MSM_GPIO_PINS(35);
  268. DECLARE_MSM_GPIO_PINS(36);
  269. DECLARE_MSM_GPIO_PINS(37);
  270. DECLARE_MSM_GPIO_PINS(38);
  271. DECLARE_MSM_GPIO_PINS(39);
  272. DECLARE_MSM_GPIO_PINS(40);
  273. DECLARE_MSM_GPIO_PINS(41);
  274. DECLARE_MSM_GPIO_PINS(42);
  275. DECLARE_MSM_GPIO_PINS(43);
  276. DECLARE_MSM_GPIO_PINS(44);
  277. DECLARE_MSM_GPIO_PINS(45);
  278. DECLARE_MSM_GPIO_PINS(46);
  279. DECLARE_MSM_GPIO_PINS(47);
  280. DECLARE_MSM_GPIO_PINS(48);
  281. DECLARE_MSM_GPIO_PINS(49);
  282. DECLARE_MSM_GPIO_PINS(50);
  283. DECLARE_MSM_GPIO_PINS(51);
  284. DECLARE_MSM_GPIO_PINS(52);
  285. DECLARE_MSM_GPIO_PINS(53);
  286. DECLARE_MSM_GPIO_PINS(54);
  287. DECLARE_MSM_GPIO_PINS(55);
  288. DECLARE_MSM_GPIO_PINS(56);
  289. DECLARE_MSM_GPIO_PINS(57);
  290. DECLARE_MSM_GPIO_PINS(58);
  291. DECLARE_MSM_GPIO_PINS(59);
  292. DECLARE_MSM_GPIO_PINS(60);
  293. DECLARE_MSM_GPIO_PINS(61);
  294. DECLARE_MSM_GPIO_PINS(62);
  295. DECLARE_MSM_GPIO_PINS(63);
  296. DECLARE_MSM_GPIO_PINS(64);
  297. DECLARE_MSM_GPIO_PINS(65);
  298. DECLARE_MSM_GPIO_PINS(66);
  299. DECLARE_MSM_GPIO_PINS(67);
  300. DECLARE_MSM_GPIO_PINS(68);
  301. DECLARE_MSM_GPIO_PINS(69);
  302. DECLARE_MSM_GPIO_PINS(70);
  303. DECLARE_MSM_GPIO_PINS(71);
  304. DECLARE_MSM_GPIO_PINS(72);
  305. DECLARE_MSM_GPIO_PINS(73);
  306. DECLARE_MSM_GPIO_PINS(74);
  307. DECLARE_MSM_GPIO_PINS(75);
  308. DECLARE_MSM_GPIO_PINS(76);
  309. DECLARE_MSM_GPIO_PINS(77);
  310. DECLARE_MSM_GPIO_PINS(78);
  311. DECLARE_MSM_GPIO_PINS(79);
  312. DECLARE_MSM_GPIO_PINS(80);
  313. DECLARE_MSM_GPIO_PINS(81);
  314. DECLARE_MSM_GPIO_PINS(82);
  315. DECLARE_MSM_GPIO_PINS(83);
  316. DECLARE_MSM_GPIO_PINS(84);
  317. DECLARE_MSM_GPIO_PINS(85);
  318. DECLARE_MSM_GPIO_PINS(86);
  319. DECLARE_MSM_GPIO_PINS(87);
  320. DECLARE_MSM_GPIO_PINS(88);
  321. DECLARE_MSM_GPIO_PINS(89);
  322. DECLARE_MSM_GPIO_PINS(90);
  323. DECLARE_MSM_GPIO_PINS(91);
  324. DECLARE_MSM_GPIO_PINS(92);
  325. DECLARE_MSM_GPIO_PINS(93);
  326. DECLARE_MSM_GPIO_PINS(94);
  327. DECLARE_MSM_GPIO_PINS(95);
  328. DECLARE_MSM_GPIO_PINS(96);
  329. DECLARE_MSM_GPIO_PINS(97);
  330. DECLARE_MSM_GPIO_PINS(98);
  331. DECLARE_MSM_GPIO_PINS(99);
  332. DECLARE_MSM_GPIO_PINS(100);
  333. DECLARE_MSM_GPIO_PINS(101);
  334. DECLARE_MSM_GPIO_PINS(102);
  335. DECLARE_MSM_GPIO_PINS(103);
  336. DECLARE_MSM_GPIO_PINS(104);
  337. DECLARE_MSM_GPIO_PINS(105);
  338. DECLARE_MSM_GPIO_PINS(106);
  339. DECLARE_MSM_GPIO_PINS(107);
  340. DECLARE_MSM_GPIO_PINS(108);
  341. DECLARE_MSM_GPIO_PINS(109);
  342. DECLARE_MSM_GPIO_PINS(110);
  343. DECLARE_MSM_GPIO_PINS(111);
  344. DECLARE_MSM_GPIO_PINS(112);
  345. DECLARE_MSM_GPIO_PINS(113);
  346. DECLARE_MSM_GPIO_PINS(114);
  347. DECLARE_MSM_GPIO_PINS(115);
  348. DECLARE_MSM_GPIO_PINS(116);
  349. DECLARE_MSM_GPIO_PINS(117);
  350. DECLARE_MSM_GPIO_PINS(118);
  351. DECLARE_MSM_GPIO_PINS(119);
  352. DECLARE_MSM_GPIO_PINS(120);
  353. DECLARE_MSM_GPIO_PINS(121);
  354. DECLARE_MSM_GPIO_PINS(122);
  355. DECLARE_MSM_GPIO_PINS(123);
  356. DECLARE_MSM_GPIO_PINS(124);
  357. DECLARE_MSM_GPIO_PINS(125);
  358. DECLARE_MSM_GPIO_PINS(126);
  359. static const unsigned int sdc1_rclk_pins[] = { 127 };
  360. static const unsigned int sdc1_clk_pins[] = { 128 };
  361. static const unsigned int sdc1_cmd_pins[] = { 129 };
  362. static const unsigned int sdc1_data_pins[] = { 130 };
  363. static const unsigned int sdc2_clk_pins[] = { 131 };
  364. static const unsigned int sdc2_cmd_pins[] = { 132 };
  365. static const unsigned int sdc2_data_pins[] = { 133 };
  366. enum qcm2290_functions {
  367. msm_mux_adsp_ext,
  368. msm_mux_agera_pll,
  369. msm_mux_atest,
  370. msm_mux_cam_mclk,
  371. msm_mux_cci_async,
  372. msm_mux_cci_i2c,
  373. msm_mux_cci_timer0,
  374. msm_mux_cci_timer1,
  375. msm_mux_cci_timer2,
  376. msm_mux_cci_timer3,
  377. msm_mux_char_exec,
  378. msm_mux_cri_trng,
  379. msm_mux_cri_trng0,
  380. msm_mux_cri_trng1,
  381. msm_mux_dac_calib,
  382. msm_mux_dbg_out,
  383. msm_mux_ddr_bist,
  384. msm_mux_ddr_pxi0,
  385. msm_mux_ddr_pxi1,
  386. msm_mux_ddr_pxi2,
  387. msm_mux_ddr_pxi3,
  388. msm_mux_gcc_gp1,
  389. msm_mux_gcc_gp2,
  390. msm_mux_gcc_gp3,
  391. msm_mux_gpio,
  392. msm_mux_gp_pdm0,
  393. msm_mux_gp_pdm1,
  394. msm_mux_gp_pdm2,
  395. msm_mux_gsm0_tx,
  396. msm_mux_gsm1_tx,
  397. msm_mux_jitter_bist,
  398. msm_mux_mdp_vsync,
  399. msm_mux_mdp_vsync_out_0,
  400. msm_mux_mdp_vsync_out_1,
  401. msm_mux_mpm_pwr,
  402. msm_mux_mss_lte,
  403. msm_mux_m_voc,
  404. msm_mux_nav_gpio,
  405. msm_mux_pa_indicator,
  406. msm_mux_pbs0,
  407. msm_mux_pbs1,
  408. msm_mux_pbs2,
  409. msm_mux_pbs3,
  410. msm_mux_pbs4,
  411. msm_mux_pbs5,
  412. msm_mux_pbs6,
  413. msm_mux_pbs7,
  414. msm_mux_pbs8,
  415. msm_mux_pbs9,
  416. msm_mux_pbs10,
  417. msm_mux_pbs11,
  418. msm_mux_pbs12,
  419. msm_mux_pbs13,
  420. msm_mux_pbs14,
  421. msm_mux_pbs15,
  422. msm_mux_pbs_out,
  423. msm_mux_phase_flag,
  424. msm_mux_pll_bist,
  425. msm_mux_pll_bypassnl,
  426. msm_mux_pll_reset,
  427. msm_mux_prng_rosc,
  428. msm_mux_pwm_0,
  429. msm_mux_pwm_1,
  430. msm_mux_pwm_2,
  431. msm_mux_pwm_3,
  432. msm_mux_pwm_4,
  433. msm_mux_pwm_5,
  434. msm_mux_pwm_6,
  435. msm_mux_pwm_7,
  436. msm_mux_pwm_8,
  437. msm_mux_pwm_9,
  438. msm_mux_qdss_cti,
  439. msm_mux_qdss_gpio,
  440. msm_mux_qup0,
  441. msm_mux_qup1,
  442. msm_mux_qup2,
  443. msm_mux_qup3,
  444. msm_mux_qup4,
  445. msm_mux_qup5,
  446. msm_mux_sdc1_tb,
  447. msm_mux_sdc2_tb,
  448. msm_mux_sd_write,
  449. msm_mux_ssbi_wtr1,
  450. msm_mux_tgu_ch0,
  451. msm_mux_tgu_ch1,
  452. msm_mux_tgu_ch2,
  453. msm_mux_tgu_ch3,
  454. msm_mux_tsense_pwm,
  455. msm_mux_uim1_clk,
  456. msm_mux_uim1_data,
  457. msm_mux_uim1_present,
  458. msm_mux_uim1_reset,
  459. msm_mux_uim2_clk,
  460. msm_mux_uim2_data,
  461. msm_mux_uim2_present,
  462. msm_mux_uim2_reset,
  463. msm_mux_usb_phy,
  464. msm_mux_vfr_1,
  465. msm_mux_vsense_trigger,
  466. msm_mux_wlan1_adc0,
  467. msm_mux_wlan1_adc1,
  468. msm_mux__,
  469. };
  470. static const char * const qup0_groups[] = {
  471. "gpio0", "gpio1", "gpio2", "gpio3", "gpio82", "gpio86",
  472. };
  473. static const char * const gpio_groups[] = {
  474. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  475. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  476. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  477. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  478. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  479. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  480. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  481. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  482. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  483. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  484. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  485. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
  486. "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
  487. "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
  488. "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
  489. "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
  490. "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
  491. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
  492. "gpio123", "gpio124", "gpio125", "gpio126",
  493. };
  494. static const char * const ddr_bist_groups[] = {
  495. "gpio0", "gpio1", "gpio2", "gpio3",
  496. };
  497. static const char * const phase_flag_groups[] = {
  498. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6",
  499. "gpio14", "gpio15", "gpio16", "gpio17", "gpio22", "gpio23", "gpio24",
  500. "gpio25", "gpio26", "gpio29", "gpio30", "gpio31", "gpio32", "gpio33",
  501. "gpio35", "gpio36", "gpio43", "gpio44", "gpio45", "gpio63", "gpio64",
  502. "gpio102", "gpio103", "gpio104", "gpio105",
  503. };
  504. static const char * const qdss_gpio_groups[] = {
  505. "gpio0", "gpio1", "gpio2", "gpio3", "gpio8", "gpio9", "gpio10",
  506. "gpio11", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19",
  507. "gpio20", "gpio21", "gpio22", "gpio23", "gpio24", "gpio25", "gpio26",
  508. "gpio47", "gpio48", "gpio69", "gpio70", "gpio87", "gpio90", "gpio91",
  509. "gpio94", "gpio95", "gpio104", "gpio105", "gpio106", "gpio107",
  510. "gpio109", "gpio110",
  511. };
  512. static const char * const atest_groups[] = {
  513. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6",
  514. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio29", "gpio30",
  515. "gpio31", "gpio32", "gpio33", "gpio86", "gpio89", "gpio100", "gpio101",
  516. };
  517. static const char * const mpm_pwr_groups[] = {
  518. "gpio1",
  519. };
  520. static const char * const m_voc_groups[] = {
  521. "gpio0",
  522. };
  523. static const char * const dac_calib_groups[] = {
  524. "gpio2",
  525. "gpio3",
  526. "gpio4",
  527. "gpio5",
  528. "gpio6",
  529. "gpio14",
  530. "gpio15",
  531. "gpio16",
  532. "gpio17",
  533. "gpio22",
  534. "gpio23",
  535. "gpio24",
  536. "gpio25",
  537. "gpio26",
  538. "gpio29",
  539. "gpio30",
  540. "gpio31",
  541. "gpio32",
  542. "gpio33",
  543. "gpio80",
  544. "gpio81",
  545. "gpio82",
  546. "gpio102",
  547. "gpio103",
  548. "gpio104",
  549. "gpio105",
  550. };
  551. static const char * const qup1_groups[] = {
  552. "gpio4", "gpio5", "gpio69", "gpio70",
  553. };
  554. static const char * const cri_trng0_groups[] = {
  555. "gpio4",
  556. };
  557. static const char * const cri_trng1_groups[] = {
  558. "gpio5",
  559. };
  560. static const char * const qup2_groups[] = {
  561. "gpio6", "gpio7", "gpio71", "gpio80",
  562. };
  563. static const char * const qup3_groups[] = {
  564. "gpio8", "gpio9", "gpio10", "gpio11",
  565. };
  566. static const char * const pbs_out_groups[] = {
  567. "gpio8", "gpio9", "gpio52",
  568. };
  569. static const char * const pll_bist_groups[] = {
  570. "gpio8", "gpio9",
  571. };
  572. static const char * const tsense_pwm_groups[] = {
  573. "gpio8",
  574. };
  575. static const char * const agera_pll_groups[] = {
  576. "gpio10", "gpio11",
  577. };
  578. static const char * const pbs0_groups[] = {
  579. "gpio10",
  580. };
  581. static const char * const pbs1_groups[] = {
  582. "gpio11",
  583. };
  584. static const char * const qup4_groups[] = {
  585. "gpio12", "gpio13", "gpio96", "gpio97",
  586. };
  587. static const char * const tgu_ch0_groups[] = {
  588. "gpio12",
  589. };
  590. static const char * const tgu_ch1_groups[] = {
  591. "gpio13",
  592. };
  593. static const char * const qup5_groups[] = {
  594. "gpio14", "gpio15", "gpio16", "gpio17",
  595. };
  596. static const char * const tgu_ch2_groups[] = {
  597. "gpio14",
  598. };
  599. static const char * const tgu_ch3_groups[] = {
  600. "gpio15",
  601. };
  602. static const char * const sdc2_tb_groups[] = {
  603. "gpio18",
  604. };
  605. static const char * const cri_trng_groups[] = {
  606. "gpio18",
  607. };
  608. static const char * const pbs2_groups[] = {
  609. "gpio18",
  610. };
  611. static const char * const pwm_0_groups[] = {
  612. "gpio18",
  613. };
  614. static const char * const sdc1_tb_groups[] = {
  615. "gpio19",
  616. };
  617. static const char * const pbs3_groups[] = {
  618. "gpio19",
  619. };
  620. static const char * const cam_mclk_groups[] = {
  621. "gpio20", "gpio21", "gpio27", "gpio28",
  622. };
  623. static const char * const pbs4_groups[] = {
  624. "gpio20",
  625. };
  626. static const char * const adsp_ext_groups[] = {
  627. "gpio21",
  628. };
  629. static const char * const pbs5_groups[] = {
  630. "gpio21",
  631. };
  632. static const char * const cci_i2c_groups[] = {
  633. "gpio22", "gpio23", "gpio29", "gpio30",
  634. };
  635. static const char * const prng_rosc_groups[] = {
  636. "gpio22", "gpio23",
  637. };
  638. static const char * const pbs6_groups[] = {
  639. "gpio22",
  640. };
  641. static const char * const pbs7_groups[] = {
  642. "gpio23",
  643. };
  644. static const char * const cci_timer1_groups[] = {
  645. "gpio24",
  646. };
  647. static const char * const gcc_gp1_groups[] = {
  648. "gpio24", "gpio86",
  649. };
  650. static const char * const pbs8_groups[] = {
  651. "gpio24",
  652. };
  653. static const char * const cci_async_groups[] = {
  654. "gpio25",
  655. };
  656. static const char * const cci_timer0_groups[] = {
  657. "gpio25",
  658. };
  659. static const char * const pbs9_groups[] = {
  660. "gpio25",
  661. };
  662. static const char * const pbs10_groups[] = {
  663. "gpio26",
  664. };
  665. static const char * const vsense_trigger_groups[] = {
  666. "gpio26",
  667. };
  668. static const char * const qdss_cti_groups[] = {
  669. "gpio27", "gpio28", "gpio72", "gpio73", "gpio96", "gpio97",
  670. };
  671. static const char * const cci_timer2_groups[] = {
  672. "gpio28",
  673. };
  674. static const char * const pwm_1_groups[] = {
  675. "gpio28",
  676. };
  677. static const char * const gp_pdm0_groups[] = {
  678. "gpio31", "gpio95",
  679. };
  680. static const char * const cci_timer3_groups[] = {
  681. "gpio32",
  682. };
  683. static const char * const gp_pdm1_groups[] = {
  684. "gpio32", "gpio96",
  685. };
  686. static const char * const gp_pdm2_groups[] = {
  687. "gpio33", "gpio97",
  688. };
  689. static const char * const char_exec_groups[] = {
  690. "gpio37", "gpio38",
  691. };
  692. static const char * const nav_gpio_groups[] = {
  693. "gpio42", "gpio47", "gpio52", "gpio95", "gpio96", "gpio97", "gpio106",
  694. "gpio107", "gpio108",
  695. };
  696. static const char * const pbs14_groups[] = {
  697. "gpio47",
  698. };
  699. static const char * const vfr_1_groups[] = {
  700. "gpio48",
  701. };
  702. static const char * const pbs15_groups[] = {
  703. "gpio48",
  704. };
  705. static const char * const pa_indicator_groups[] = {
  706. "gpio49",
  707. };
  708. static const char * const pwm_2_groups[] = {
  709. "gpio51",
  710. };
  711. static const char * const gsm1_tx_groups[] = {
  712. "gpio53",
  713. };
  714. static const char * const ssbi_wtr1_groups[] = {
  715. "gpio59", "gpio60",
  716. };
  717. static const char * const pll_bypassnl_groups[] = {
  718. "gpio62",
  719. };
  720. static const char * const pll_reset_groups[] = {
  721. "gpio63",
  722. };
  723. static const char * const ddr_pxi0_groups[] = {
  724. "gpio63", "gpio64",
  725. };
  726. static const char * const gsm0_tx_groups[] = {
  727. "gpio64",
  728. };
  729. static const char * const gcc_gp2_groups[] = {
  730. "gpio69", "gpio107",
  731. };
  732. static const char * const ddr_pxi1_groups[] = {
  733. "gpio69", "gpio70",
  734. };
  735. static const char * const gcc_gp3_groups[] = {
  736. "gpio70", "gpio106",
  737. };
  738. static const char * const dbg_out_groups[] = {
  739. "gpio71",
  740. };
  741. static const char * const uim2_data_groups[] = {
  742. "gpio72",
  743. };
  744. static const char * const pwm_3_groups[] = {
  745. "gpio72",
  746. };
  747. static const char * const uim2_clk_groups[] = {
  748. "gpio73",
  749. };
  750. static const char * const uim2_reset_groups[] = {
  751. "gpio74",
  752. };
  753. static const char * const pwm_4_groups[] = {
  754. "gpio74",
  755. };
  756. static const char * const uim2_present_groups[] = {
  757. "gpio75",
  758. };
  759. static const char * const pwm_5_groups[] = {
  760. "gpio75",
  761. };
  762. static const char * const uim1_data_groups[] = {
  763. "gpio76",
  764. };
  765. static const char * const uim1_clk_groups[] = {
  766. "gpio77",
  767. };
  768. static const char * const uim1_reset_groups[] = {
  769. "gpio78",
  770. };
  771. static const char * const uim1_present_groups[] = {
  772. "gpio79",
  773. };
  774. static const char * const mdp_vsync_groups[] = {
  775. "gpio81", "gpio96", "gpio97",
  776. };
  777. static const char * const mdp_vsync_out_0_groups[] = {
  778. "gpio81",
  779. };
  780. static const char * const mdp_vsync_out_1_groups[] = {
  781. "gpio81",
  782. };
  783. static const char * const pwm_6_groups[] = {
  784. "gpio82",
  785. };
  786. static const char * const pbs11_groups[] = {
  787. "gpio87",
  788. };
  789. static const char * const usb_phy_groups[] = {
  790. "gpio89",
  791. };
  792. static const char * const pwm_7_groups[] = {
  793. "gpio89",
  794. };
  795. static const char * const mss_lte_groups[] = {
  796. "gpio90", "gpio91",
  797. };
  798. static const char * const pbs12_groups[] = {
  799. "gpio90",
  800. };
  801. static const char * const pbs13_groups[] = {
  802. "gpio91",
  803. };
  804. static const char * const wlan1_adc0_groups[] = {
  805. "gpio94",
  806. };
  807. static const char * const wlan1_adc1_groups[] = {
  808. "gpio95",
  809. };
  810. static const char * const sd_write_groups[] = {
  811. "gpio96",
  812. };
  813. static const char * const jitter_bist_groups[] = {
  814. "gpio96", "gpio97",
  815. };
  816. static const char * const ddr_pxi2_groups[] = {
  817. "gpio102", "gpio103",
  818. };
  819. static const char * const ddr_pxi3_groups[] = {
  820. "gpio104", "gpio105",
  821. };
  822. static const char * const pwm_8_groups[] = {
  823. "gpio104",
  824. };
  825. static const char * const pwm_9_groups[] = {
  826. "gpio115",
  827. };
  828. static const struct msm_function qcm2290_functions[] = {
  829. FUNCTION(adsp_ext),
  830. FUNCTION(agera_pll),
  831. FUNCTION(atest),
  832. FUNCTION(cam_mclk),
  833. FUNCTION(cci_async),
  834. FUNCTION(cci_i2c),
  835. FUNCTION(cci_timer0),
  836. FUNCTION(cci_timer1),
  837. FUNCTION(cci_timer2),
  838. FUNCTION(cci_timer3),
  839. FUNCTION(char_exec),
  840. FUNCTION(cri_trng),
  841. FUNCTION(cri_trng0),
  842. FUNCTION(cri_trng1),
  843. FUNCTION(dac_calib),
  844. FUNCTION(dbg_out),
  845. FUNCTION(ddr_bist),
  846. FUNCTION(ddr_pxi0),
  847. FUNCTION(ddr_pxi1),
  848. FUNCTION(ddr_pxi2),
  849. FUNCTION(ddr_pxi3),
  850. FUNCTION(gcc_gp1),
  851. FUNCTION(gcc_gp2),
  852. FUNCTION(gcc_gp3),
  853. FUNCTION(gpio),
  854. FUNCTION(gp_pdm0),
  855. FUNCTION(gp_pdm1),
  856. FUNCTION(gp_pdm2),
  857. FUNCTION(gsm0_tx),
  858. FUNCTION(gsm1_tx),
  859. FUNCTION(jitter_bist),
  860. FUNCTION(mdp_vsync),
  861. FUNCTION(mdp_vsync_out_0),
  862. FUNCTION(mdp_vsync_out_1),
  863. FUNCTION(mpm_pwr),
  864. FUNCTION(mss_lte),
  865. FUNCTION(m_voc),
  866. FUNCTION(nav_gpio),
  867. FUNCTION(pa_indicator),
  868. FUNCTION(pbs0),
  869. FUNCTION(pbs1),
  870. FUNCTION(pbs2),
  871. FUNCTION(pbs3),
  872. FUNCTION(pbs4),
  873. FUNCTION(pbs5),
  874. FUNCTION(pbs6),
  875. FUNCTION(pbs7),
  876. FUNCTION(pbs8),
  877. FUNCTION(pbs9),
  878. FUNCTION(pbs10),
  879. FUNCTION(pbs11),
  880. FUNCTION(pbs12),
  881. FUNCTION(pbs13),
  882. FUNCTION(pbs14),
  883. FUNCTION(pbs15),
  884. FUNCTION(pbs_out),
  885. FUNCTION(phase_flag),
  886. FUNCTION(pll_bist),
  887. FUNCTION(pll_bypassnl),
  888. FUNCTION(pll_reset),
  889. FUNCTION(prng_rosc),
  890. FUNCTION(pwm_0),
  891. FUNCTION(pwm_1),
  892. FUNCTION(pwm_2),
  893. FUNCTION(pwm_3),
  894. FUNCTION(pwm_4),
  895. FUNCTION(pwm_5),
  896. FUNCTION(pwm_6),
  897. FUNCTION(pwm_7),
  898. FUNCTION(pwm_8),
  899. FUNCTION(pwm_9),
  900. FUNCTION(qdss_cti),
  901. FUNCTION(qdss_gpio),
  902. FUNCTION(qup0),
  903. FUNCTION(qup1),
  904. FUNCTION(qup2),
  905. FUNCTION(qup3),
  906. FUNCTION(qup4),
  907. FUNCTION(qup5),
  908. FUNCTION(sdc1_tb),
  909. FUNCTION(sdc2_tb),
  910. FUNCTION(sd_write),
  911. FUNCTION(ssbi_wtr1),
  912. FUNCTION(tgu_ch0),
  913. FUNCTION(tgu_ch1),
  914. FUNCTION(tgu_ch2),
  915. FUNCTION(tgu_ch3),
  916. FUNCTION(tsense_pwm),
  917. FUNCTION(uim1_clk),
  918. FUNCTION(uim1_data),
  919. FUNCTION(uim1_present),
  920. FUNCTION(uim1_reset),
  921. FUNCTION(uim2_clk),
  922. FUNCTION(uim2_data),
  923. FUNCTION(uim2_present),
  924. FUNCTION(uim2_reset),
  925. FUNCTION(usb_phy),
  926. FUNCTION(vfr_1),
  927. FUNCTION(vsense_trigger),
  928. FUNCTION(wlan1_adc0),
  929. FUNCTION(wlan1_adc1),
  930. };
  931. /* Every pin is maintained as a single group, and missing or non-existing pin
  932. * would be maintained as dummy group to synchronize pin group index with
  933. * pin descriptor registered with pinctrl core.
  934. * Clients would not be able to request these dummy pin groups.
  935. */
  936. static const struct msm_pingroup qcm2290_groups[] = {
  937. [0] = PINGROUP(0, qup0, m_voc, ddr_bist, _, phase_flag, qdss_gpio, atest, _, _),
  938. [1] = PINGROUP(1, qup0, mpm_pwr, ddr_bist, _, phase_flag, qdss_gpio, atest, _, _),
  939. [2] = PINGROUP(2, qup0, ddr_bist, _, phase_flag, qdss_gpio, dac_calib, atest, _, _),
  940. [3] = PINGROUP(3, qup0, ddr_bist, _, phase_flag, qdss_gpio, dac_calib, atest, _, _),
  941. [4] = PINGROUP(4, qup1, cri_trng0, _, phase_flag, dac_calib, atest, _, _, _),
  942. [5] = PINGROUP(5, qup1, cri_trng1, _, phase_flag, dac_calib, atest, _, _, _),
  943. [6] = PINGROUP(6, qup2, _, phase_flag, dac_calib, atest, _, _, _, _),
  944. [7] = PINGROUP(7, qup2, _, _, _, _, _, _, _, _),
  945. [8] = PINGROUP(8, qup3, pbs_out, pll_bist, _, qdss_gpio, _, tsense_pwm, _, _),
  946. [9] = PINGROUP(9, qup3, pbs_out, pll_bist, _, qdss_gpio, _, _, _, _),
  947. [10] = PINGROUP(10, qup3, agera_pll, _, pbs0, qdss_gpio, _, _, _, _),
  948. [11] = PINGROUP(11, qup3, agera_pll, _, pbs1, qdss_gpio, _, _, _, _),
  949. [12] = PINGROUP(12, qup4, tgu_ch0, _, _, _, _, _, _, _),
  950. [13] = PINGROUP(13, qup4, tgu_ch1, _, _, _, _, _, _, _),
  951. [14] = PINGROUP(14, qup5, tgu_ch2, _, phase_flag, qdss_gpio, dac_calib, _, _, _),
  952. [15] = PINGROUP(15, qup5, tgu_ch3, _, phase_flag, qdss_gpio, dac_calib, _, _, _),
  953. [16] = PINGROUP(16, qup5, _, phase_flag, qdss_gpio, dac_calib, _, _, _, _),
  954. [17] = PINGROUP(17, qup5, _, phase_flag, qdss_gpio, dac_calib, _, _, _, _),
  955. [18] = PINGROUP(18, sdc2_tb, cri_trng, pbs2, qdss_gpio, _, pwm_0, _, _, _),
  956. [19] = PINGROUP(19, sdc1_tb, pbs3, qdss_gpio, _, _, _, _, _, _),
  957. [20] = PINGROUP(20, cam_mclk, pbs4, qdss_gpio, _, _, _, _, _, _),
  958. [21] = PINGROUP(21, cam_mclk, adsp_ext, pbs5, qdss_gpio, _, _, _, _, _),
  959. [22] = PINGROUP(22, cci_i2c, prng_rosc, _, pbs6, phase_flag, qdss_gpio, dac_calib, atest, _),
  960. [23] = PINGROUP(23, cci_i2c, prng_rosc, _, pbs7, phase_flag, qdss_gpio, dac_calib, atest, _),
  961. [24] = PINGROUP(24, cci_timer1, gcc_gp1, _, pbs8, phase_flag, qdss_gpio, dac_calib, atest, _),
  962. [25] = PINGROUP(25, cci_async, cci_timer0, _, pbs9, phase_flag, qdss_gpio, dac_calib, atest, _),
  963. [26] = PINGROUP(26, _, pbs10, phase_flag, qdss_gpio, dac_calib, atest, vsense_trigger, _, _),
  964. [27] = PINGROUP(27, cam_mclk, qdss_cti, _, _, _, _, _, _, _),
  965. [28] = PINGROUP(28, cam_mclk, cci_timer2, qdss_cti, _, pwm_1, _, _, _, _),
  966. [29] = PINGROUP(29, cci_i2c, _, phase_flag, dac_calib, atest, _, _, _, _),
  967. [30] = PINGROUP(30, cci_i2c, _, phase_flag, dac_calib, atest, _, _, _, _),
  968. [31] = PINGROUP(31, gp_pdm0, _, phase_flag, dac_calib, atest, _, _, _, _),
  969. [32] = PINGROUP(32, cci_timer3, gp_pdm1, _, phase_flag, dac_calib, atest, _, _, _),
  970. [33] = PINGROUP(33, gp_pdm2, _, phase_flag, dac_calib, atest, _, _, _, _),
  971. [34] = PINGROUP(34, _, _, _, _, _, _, _, _, _),
  972. [35] = PINGROUP(35, _, phase_flag, _, _, _, _, _, _, _),
  973. [36] = PINGROUP(36, _, phase_flag, _, _, _, _, _, _, _),
  974. [37] = PINGROUP(37, _, _, char_exec, _, _, _, _, _, _),
  975. [38] = PINGROUP(38, _, _, _, char_exec, _, _, _, _, _),
  976. [39] = PINGROUP(39, _, _, _, _, _, _, _, _, _),
  977. [40] = PINGROUP(40, _, _, _, _, _, _, _, _, _),
  978. [41] = PINGROUP(41, _, _, _, _, _, _, _, _, _),
  979. [42] = PINGROUP(42, _, nav_gpio, _, _, _, _, _, _, _),
  980. [43] = PINGROUP(43, _, _, phase_flag, _, _, _, _, _, _),
  981. [44] = PINGROUP(44, _, _, phase_flag, _, _, _, _, _, _),
  982. [45] = PINGROUP(45, _, _, phase_flag, _, _, _, _, _, _),
  983. [46] = PINGROUP(46, _, _, _, _, _, _, _, _, _),
  984. [47] = PINGROUP(47, _, nav_gpio, pbs14, qdss_gpio, _, _, _, _, _),
  985. [48] = PINGROUP(48, _, vfr_1, _, pbs15, qdss_gpio, _, _, _, _),
  986. [49] = PINGROUP(49, _, pa_indicator, _, _, _, _, _, _, _),
  987. [50] = PINGROUP(50, _, _, _, _, _, _, _, _, _),
  988. [51] = PINGROUP(51, _, _, _, pwm_2, _, _, _, _, _),
  989. [52] = PINGROUP(52, _, nav_gpio, pbs_out, _, _, _, _, _, _),
  990. [53] = PINGROUP(53, _, gsm1_tx, _, _, _, _, _, _, _),
  991. [54] = PINGROUP(54, _, _, _, _, _, _, _, _, _),
  992. [55] = PINGROUP(55, _, _, _, _, _, _, _, _, _),
  993. [56] = PINGROUP(56, _, _, _, _, _, _, _, _, _),
  994. [57] = PINGROUP(57, _, _, _, _, _, _, _, _, _),
  995. [58] = PINGROUP(58, _, _, _, _, _, _, _, _, _),
  996. [59] = PINGROUP(59, _, ssbi_wtr1, _, _, _, _, _, _, _),
  997. [60] = PINGROUP(60, _, ssbi_wtr1, _, _, _, _, _, _, _),
  998. [61] = PINGROUP(61, _, _, _, _, _, _, _, _, _),
  999. [62] = PINGROUP(62, _, pll_bypassnl, _, _, _, _, _, _, _),
  1000. [63] = PINGROUP(63, pll_reset, _, phase_flag, ddr_pxi0, _, _, _, _, _),
  1001. [64] = PINGROUP(64, gsm0_tx, _, phase_flag, ddr_pxi0, _, _, _, _, _),
  1002. [65] = PINGROUP(65, _, _, _, _, _, _, _, _, _),
  1003. [66] = PINGROUP(66, _, _, _, _, _, _, _, _, _),
  1004. [67] = PINGROUP(67, _, _, _, _, _, _, _, _, _),
  1005. [68] = PINGROUP(68, _, _, _, _, _, _, _, _, _),
  1006. [69] = PINGROUP(69, qup1, gcc_gp2, qdss_gpio, ddr_pxi1, _, _, _, _, _),
  1007. [70] = PINGROUP(70, qup1, gcc_gp3, qdss_gpio, ddr_pxi1, _, _, _, _, _),
  1008. [71] = PINGROUP(71, qup2, dbg_out, _, _, _, _, _, _, _),
  1009. [72] = PINGROUP(72, uim2_data, qdss_cti, _, pwm_3, _, _, _, _, _),
  1010. [73] = PINGROUP(73, uim2_clk, _, qdss_cti, _, _, _, _, _, _),
  1011. [74] = PINGROUP(74, uim2_reset, _, _, pwm_4, _, _, _, _, _),
  1012. [75] = PINGROUP(75, uim2_present, _, _, pwm_5, _, _, _, _, _),
  1013. [76] = PINGROUP(76, uim1_data, _, _, _, _, _, _, _, _),
  1014. [77] = PINGROUP(77, uim1_clk, _, _, _, _, _, _, _, _),
  1015. [78] = PINGROUP(78, uim1_reset, _, _, _, _, _, _, _, _),
  1016. [79] = PINGROUP(79, uim1_present, _, _, _, _, _, _, _, _),
  1017. [80] = PINGROUP(80, qup2, dac_calib, _, _, _, _, _, _, _),
  1018. [81] = PINGROUP(81, mdp_vsync_out_0, mdp_vsync_out_1, mdp_vsync, dac_calib, _, _, _, _, _),
  1019. [82] = PINGROUP(82, qup0, dac_calib, _, pwm_6, _, _, _, _, _),
  1020. [83] = PINGROUP(83, _, _, _, _, _, _, _, _, _),
  1021. [84] = PINGROUP(84, _, _, _, _, _, _, _, _, _),
  1022. [85] = PINGROUP(85, _, _, _, _, _, _, _, _, _),
  1023. [86] = PINGROUP(86, qup0, gcc_gp1, atest, _, _, _, _, _, _),
  1024. [87] = PINGROUP(87, pbs11, qdss_gpio, _, _, _, _, _, _, _),
  1025. [88] = PINGROUP(88, _, _, _, _, _, _, _, _, _),
  1026. [89] = PINGROUP(89, usb_phy, atest, _, pwm_7, _, _, _, _, _),
  1027. [90] = PINGROUP(90, mss_lte, pbs12, qdss_gpio, _, _, _, _, _, _),
  1028. [91] = PINGROUP(91, mss_lte, pbs13, qdss_gpio, _, _, _, _, _, _),
  1029. [92] = PINGROUP(92, _, _, _, _, _, _, _, _, _),
  1030. [93] = PINGROUP(93, _, _, _, _, _, _, _, _, _),
  1031. [94] = PINGROUP(94, _, qdss_gpio, wlan1_adc0, _, _, _, _, _, _),
  1032. [95] = PINGROUP(95, nav_gpio, gp_pdm0, qdss_gpio, wlan1_adc1, _, _, _, _, _),
  1033. [96] = PINGROUP(96, qup4, nav_gpio, mdp_vsync, gp_pdm1, sd_write, jitter_bist, qdss_cti, qdss_cti, _),
  1034. [97] = PINGROUP(97, qup4, nav_gpio, mdp_vsync, gp_pdm2, jitter_bist, qdss_cti, qdss_cti, _, _),
  1035. [98] = PINGROUP(98, _, _, _, _, _, _, _, _, _),
  1036. [99] = PINGROUP(99, _, _, _, _, _, _, _, _, _),
  1037. [100] = PINGROUP(100, atest, _, _, _, _, _, _, _, _),
  1038. [101] = PINGROUP(101, atest, _, _, _, _, _, _, _, _),
  1039. [102] = PINGROUP(102, _, phase_flag, dac_calib, ddr_pxi2, _, _, _, _, _),
  1040. [103] = PINGROUP(103, _, phase_flag, dac_calib, ddr_pxi2, _, _, _, _, _),
  1041. [104] = PINGROUP(104, _, phase_flag, qdss_gpio, dac_calib, ddr_pxi3, _, pwm_8, _, _),
  1042. [105] = PINGROUP(105, _, phase_flag, qdss_gpio, dac_calib, ddr_pxi3, _, _, _, _),
  1043. [106] = PINGROUP(106, nav_gpio, gcc_gp3, qdss_gpio, _, _, _, _, _, _),
  1044. [107] = PINGROUP(107, nav_gpio, gcc_gp2, qdss_gpio, _, _, _, _, _, _),
  1045. [108] = PINGROUP(108, nav_gpio, _, _, _, _, _, _, _, _),
  1046. [109] = PINGROUP(109, _, qdss_gpio, _, _, _, _, _, _, _),
  1047. [110] = PINGROUP(110, _, qdss_gpio, _, _, _, _, _, _, _),
  1048. [111] = PINGROUP(111, _, _, _, _, _, _, _, _, _),
  1049. [112] = PINGROUP(112, _, _, _, _, _, _, _, _, _),
  1050. [113] = PINGROUP(113, _, _, _, _, _, _, _, _, _),
  1051. [114] = PINGROUP(114, _, _, _, _, _, _, _, _, _),
  1052. [115] = PINGROUP(115, _, pwm_9, _, _, _, _, _, _, _),
  1053. [116] = PINGROUP(116, _, _, _, _, _, _, _, _, _),
  1054. [117] = PINGROUP(117, _, _, _, _, _, _, _, _, _),
  1055. [118] = PINGROUP(118, _, _, _, _, _, _, _, _, _),
  1056. [119] = PINGROUP(119, _, _, _, _, _, _, _, _, _),
  1057. [120] = PINGROUP(120, _, _, _, _, _, _, _, _, _),
  1058. [121] = PINGROUP(121, _, _, _, _, _, _, _, _, _),
  1059. [122] = PINGROUP(122, _, _, _, _, _, _, _, _, _),
  1060. [123] = PINGROUP(123, _, _, _, _, _, _, _, _, _),
  1061. [124] = PINGROUP(124, _, _, _, _, _, _, _, _, _),
  1062. [125] = PINGROUP(125, _, _, _, _, _, _, _, _, _),
  1063. [126] = PINGROUP(126, _, _, _, _, _, _, _, _, _),
  1064. [127] = SDC_QDSD_PINGROUP(sdc1_rclk, 0x84004, 0, 0),
  1065. [128] = SDC_QDSD_PINGROUP(sdc1_clk, 0x84000, 13, 6),
  1066. [129] = SDC_QDSD_PINGROUP(sdc1_cmd, 0x84000, 11, 3),
  1067. [130] = SDC_QDSD_PINGROUP(sdc1_data, 0x84000, 9, 0),
  1068. [131] = SDC_QDSD_PINGROUP(sdc2_clk, 0x86000, 14, 6),
  1069. [132] = SDC_QDSD_PINGROUP(sdc2_cmd, 0x86000, 11, 3),
  1070. [133] = SDC_QDSD_PINGROUP(sdc2_data, 0x86000, 9, 0),
  1071. };
  1072. static const struct msm_gpio_wakeirq_map qcm2290_mpm_map[] = {
  1073. { 0, 84 }, { 3, 75 }, { 4, 16 }, { 6, 59 }, { 8, 63 }, { 11, 17 },
  1074. { 13, 18 }, { 14, 51 }, { 17, 20 }, { 18, 52 }, { 19, 53 }, { 24, 6 },
  1075. { 25, 71 }, { 27, 73 }, { 28, 41 }, { 31, 27 }, { 32, 54 }, { 33, 55 },
  1076. { 34, 56 }, { 35, 57 }, { 36, 58 }, { 39, 28 }, { 46, 29 }, { 62, 60 },
  1077. { 63, 61 }, { 64, 62 }, { 69, 33 }, { 70, 34 }, { 72, 72 }, { 75, 35 },
  1078. { 79, 36 }, { 80, 21 }, { 81, 38 }, { 86, 19 }, { 87, 42 }, { 88, 43 },
  1079. { 89, 45 }, { 91, 74 }, { 94, 47 }, { 95, 48 }, { 96, 49 }, { 97, 50 },
  1080. };
  1081. static const struct msm_pinctrl_soc_data qcm2290_pinctrl = {
  1082. .pins = qcm2290_pins,
  1083. .npins = ARRAY_SIZE(qcm2290_pins),
  1084. .functions = qcm2290_functions,
  1085. .nfunctions = ARRAY_SIZE(qcm2290_functions),
  1086. .groups = qcm2290_groups,
  1087. .ngroups = ARRAY_SIZE(qcm2290_groups),
  1088. .ngpios = 127,
  1089. .wakeirq_map = qcm2290_mpm_map,
  1090. .nwakeirq_map = ARRAY_SIZE(qcm2290_mpm_map),
  1091. };
  1092. static int qcm2290_pinctrl_probe(struct platform_device *pdev)
  1093. {
  1094. return msm_pinctrl_probe(pdev, &qcm2290_pinctrl);
  1095. }
  1096. static const struct of_device_id qcm2290_pinctrl_of_match[] = {
  1097. { .compatible = "qcom,qcm2290-tlmm", },
  1098. { },
  1099. };
  1100. static struct platform_driver qcm2290_pinctrl_driver = {
  1101. .driver = {
  1102. .name = "qcm2290-pinctrl",
  1103. .of_match_table = qcm2290_pinctrl_of_match,
  1104. },
  1105. .probe = qcm2290_pinctrl_probe,
  1106. .remove = msm_pinctrl_remove,
  1107. };
  1108. static int __init qcm2290_pinctrl_init(void)
  1109. {
  1110. return platform_driver_register(&qcm2290_pinctrl_driver);
  1111. }
  1112. arch_initcall(qcm2290_pinctrl_init);
  1113. static void __exit qcm2290_pinctrl_exit(void)
  1114. {
  1115. platform_driver_unregister(&qcm2290_pinctrl_driver);
  1116. }
  1117. module_exit(qcm2290_pinctrl_exit);
  1118. MODULE_DESCRIPTION("QTI QCM2290 pinctrl driver");
  1119. MODULE_LICENSE("GPL v2");
  1120. MODULE_DEVICE_TABLE(of, qcm2290_pinctrl_of_match);