pinctrl-msm8916.c 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2015, 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. static const struct pinctrl_pin_desc msm8916_pins[] = {
  11. PINCTRL_PIN(0, "GPIO_0"),
  12. PINCTRL_PIN(1, "GPIO_1"),
  13. PINCTRL_PIN(2, "GPIO_2"),
  14. PINCTRL_PIN(3, "GPIO_3"),
  15. PINCTRL_PIN(4, "GPIO_4"),
  16. PINCTRL_PIN(5, "GPIO_5"),
  17. PINCTRL_PIN(6, "GPIO_6"),
  18. PINCTRL_PIN(7, "GPIO_7"),
  19. PINCTRL_PIN(8, "GPIO_8"),
  20. PINCTRL_PIN(9, "GPIO_9"),
  21. PINCTRL_PIN(10, "GPIO_10"),
  22. PINCTRL_PIN(11, "GPIO_11"),
  23. PINCTRL_PIN(12, "GPIO_12"),
  24. PINCTRL_PIN(13, "GPIO_13"),
  25. PINCTRL_PIN(14, "GPIO_14"),
  26. PINCTRL_PIN(15, "GPIO_15"),
  27. PINCTRL_PIN(16, "GPIO_16"),
  28. PINCTRL_PIN(17, "GPIO_17"),
  29. PINCTRL_PIN(18, "GPIO_18"),
  30. PINCTRL_PIN(19, "GPIO_19"),
  31. PINCTRL_PIN(20, "GPIO_20"),
  32. PINCTRL_PIN(21, "GPIO_21"),
  33. PINCTRL_PIN(22, "GPIO_22"),
  34. PINCTRL_PIN(23, "GPIO_23"),
  35. PINCTRL_PIN(24, "GPIO_24"),
  36. PINCTRL_PIN(25, "GPIO_25"),
  37. PINCTRL_PIN(26, "GPIO_26"),
  38. PINCTRL_PIN(27, "GPIO_27"),
  39. PINCTRL_PIN(28, "GPIO_28"),
  40. PINCTRL_PIN(29, "GPIO_29"),
  41. PINCTRL_PIN(30, "GPIO_30"),
  42. PINCTRL_PIN(31, "GPIO_31"),
  43. PINCTRL_PIN(32, "GPIO_32"),
  44. PINCTRL_PIN(33, "GPIO_33"),
  45. PINCTRL_PIN(34, "GPIO_34"),
  46. PINCTRL_PIN(35, "GPIO_35"),
  47. PINCTRL_PIN(36, "GPIO_36"),
  48. PINCTRL_PIN(37, "GPIO_37"),
  49. PINCTRL_PIN(38, "GPIO_38"),
  50. PINCTRL_PIN(39, "GPIO_39"),
  51. PINCTRL_PIN(40, "GPIO_40"),
  52. PINCTRL_PIN(41, "GPIO_41"),
  53. PINCTRL_PIN(42, "GPIO_42"),
  54. PINCTRL_PIN(43, "GPIO_43"),
  55. PINCTRL_PIN(44, "GPIO_44"),
  56. PINCTRL_PIN(45, "GPIO_45"),
  57. PINCTRL_PIN(46, "GPIO_46"),
  58. PINCTRL_PIN(47, "GPIO_47"),
  59. PINCTRL_PIN(48, "GPIO_48"),
  60. PINCTRL_PIN(49, "GPIO_49"),
  61. PINCTRL_PIN(50, "GPIO_50"),
  62. PINCTRL_PIN(51, "GPIO_51"),
  63. PINCTRL_PIN(52, "GPIO_52"),
  64. PINCTRL_PIN(53, "GPIO_53"),
  65. PINCTRL_PIN(54, "GPIO_54"),
  66. PINCTRL_PIN(55, "GPIO_55"),
  67. PINCTRL_PIN(56, "GPIO_56"),
  68. PINCTRL_PIN(57, "GPIO_57"),
  69. PINCTRL_PIN(58, "GPIO_58"),
  70. PINCTRL_PIN(59, "GPIO_59"),
  71. PINCTRL_PIN(60, "GPIO_60"),
  72. PINCTRL_PIN(61, "GPIO_61"),
  73. PINCTRL_PIN(62, "GPIO_62"),
  74. PINCTRL_PIN(63, "GPIO_63"),
  75. PINCTRL_PIN(64, "GPIO_64"),
  76. PINCTRL_PIN(65, "GPIO_65"),
  77. PINCTRL_PIN(66, "GPIO_66"),
  78. PINCTRL_PIN(67, "GPIO_67"),
  79. PINCTRL_PIN(68, "GPIO_68"),
  80. PINCTRL_PIN(69, "GPIO_69"),
  81. PINCTRL_PIN(70, "GPIO_70"),
  82. PINCTRL_PIN(71, "GPIO_71"),
  83. PINCTRL_PIN(72, "GPIO_72"),
  84. PINCTRL_PIN(73, "GPIO_73"),
  85. PINCTRL_PIN(74, "GPIO_74"),
  86. PINCTRL_PIN(75, "GPIO_75"),
  87. PINCTRL_PIN(76, "GPIO_76"),
  88. PINCTRL_PIN(77, "GPIO_77"),
  89. PINCTRL_PIN(78, "GPIO_78"),
  90. PINCTRL_PIN(79, "GPIO_79"),
  91. PINCTRL_PIN(80, "GPIO_80"),
  92. PINCTRL_PIN(81, "GPIO_81"),
  93. PINCTRL_PIN(82, "GPIO_82"),
  94. PINCTRL_PIN(83, "GPIO_83"),
  95. PINCTRL_PIN(84, "GPIO_84"),
  96. PINCTRL_PIN(85, "GPIO_85"),
  97. PINCTRL_PIN(86, "GPIO_86"),
  98. PINCTRL_PIN(87, "GPIO_87"),
  99. PINCTRL_PIN(88, "GPIO_88"),
  100. PINCTRL_PIN(89, "GPIO_89"),
  101. PINCTRL_PIN(90, "GPIO_90"),
  102. PINCTRL_PIN(91, "GPIO_91"),
  103. PINCTRL_PIN(92, "GPIO_92"),
  104. PINCTRL_PIN(93, "GPIO_93"),
  105. PINCTRL_PIN(94, "GPIO_94"),
  106. PINCTRL_PIN(95, "GPIO_95"),
  107. PINCTRL_PIN(96, "GPIO_96"),
  108. PINCTRL_PIN(97, "GPIO_97"),
  109. PINCTRL_PIN(98, "GPIO_98"),
  110. PINCTRL_PIN(99, "GPIO_99"),
  111. PINCTRL_PIN(100, "GPIO_100"),
  112. PINCTRL_PIN(101, "GPIO_101"),
  113. PINCTRL_PIN(102, "GPIO_102"),
  114. PINCTRL_PIN(103, "GPIO_103"),
  115. PINCTRL_PIN(104, "GPIO_104"),
  116. PINCTRL_PIN(105, "GPIO_105"),
  117. PINCTRL_PIN(106, "GPIO_106"),
  118. PINCTRL_PIN(107, "GPIO_107"),
  119. PINCTRL_PIN(108, "GPIO_108"),
  120. PINCTRL_PIN(109, "GPIO_109"),
  121. PINCTRL_PIN(110, "GPIO_110"),
  122. PINCTRL_PIN(111, "GPIO_111"),
  123. PINCTRL_PIN(112, "GPIO_112"),
  124. PINCTRL_PIN(113, "GPIO_113"),
  125. PINCTRL_PIN(114, "GPIO_114"),
  126. PINCTRL_PIN(115, "GPIO_115"),
  127. PINCTRL_PIN(116, "GPIO_116"),
  128. PINCTRL_PIN(117, "GPIO_117"),
  129. PINCTRL_PIN(118, "GPIO_118"),
  130. PINCTRL_PIN(119, "GPIO_119"),
  131. PINCTRL_PIN(120, "GPIO_120"),
  132. PINCTRL_PIN(121, "GPIO_121"),
  133. PINCTRL_PIN(122, "SDC1_CLK"),
  134. PINCTRL_PIN(123, "SDC1_CMD"),
  135. PINCTRL_PIN(124, "SDC1_DATA"),
  136. PINCTRL_PIN(125, "SDC2_CLK"),
  137. PINCTRL_PIN(126, "SDC2_CMD"),
  138. PINCTRL_PIN(127, "SDC2_DATA"),
  139. PINCTRL_PIN(128, "QDSD_CLK"),
  140. PINCTRL_PIN(129, "QDSD_CMD"),
  141. PINCTRL_PIN(130, "QDSD_DATA0"),
  142. PINCTRL_PIN(131, "QDSD_DATA1"),
  143. PINCTRL_PIN(132, "QDSD_DATA2"),
  144. PINCTRL_PIN(133, "QDSD_DATA3"),
  145. };
  146. #define DECLARE_MSM_GPIO_PINS(pin) \
  147. static const unsigned int gpio##pin##_pins[] = { pin }
  148. DECLARE_MSM_GPIO_PINS(0);
  149. DECLARE_MSM_GPIO_PINS(1);
  150. DECLARE_MSM_GPIO_PINS(2);
  151. DECLARE_MSM_GPIO_PINS(3);
  152. DECLARE_MSM_GPIO_PINS(4);
  153. DECLARE_MSM_GPIO_PINS(5);
  154. DECLARE_MSM_GPIO_PINS(6);
  155. DECLARE_MSM_GPIO_PINS(7);
  156. DECLARE_MSM_GPIO_PINS(8);
  157. DECLARE_MSM_GPIO_PINS(9);
  158. DECLARE_MSM_GPIO_PINS(10);
  159. DECLARE_MSM_GPIO_PINS(11);
  160. DECLARE_MSM_GPIO_PINS(12);
  161. DECLARE_MSM_GPIO_PINS(13);
  162. DECLARE_MSM_GPIO_PINS(14);
  163. DECLARE_MSM_GPIO_PINS(15);
  164. DECLARE_MSM_GPIO_PINS(16);
  165. DECLARE_MSM_GPIO_PINS(17);
  166. DECLARE_MSM_GPIO_PINS(18);
  167. DECLARE_MSM_GPIO_PINS(19);
  168. DECLARE_MSM_GPIO_PINS(20);
  169. DECLARE_MSM_GPIO_PINS(21);
  170. DECLARE_MSM_GPIO_PINS(22);
  171. DECLARE_MSM_GPIO_PINS(23);
  172. DECLARE_MSM_GPIO_PINS(24);
  173. DECLARE_MSM_GPIO_PINS(25);
  174. DECLARE_MSM_GPIO_PINS(26);
  175. DECLARE_MSM_GPIO_PINS(27);
  176. DECLARE_MSM_GPIO_PINS(28);
  177. DECLARE_MSM_GPIO_PINS(29);
  178. DECLARE_MSM_GPIO_PINS(30);
  179. DECLARE_MSM_GPIO_PINS(31);
  180. DECLARE_MSM_GPIO_PINS(32);
  181. DECLARE_MSM_GPIO_PINS(33);
  182. DECLARE_MSM_GPIO_PINS(34);
  183. DECLARE_MSM_GPIO_PINS(35);
  184. DECLARE_MSM_GPIO_PINS(36);
  185. DECLARE_MSM_GPIO_PINS(37);
  186. DECLARE_MSM_GPIO_PINS(38);
  187. DECLARE_MSM_GPIO_PINS(39);
  188. DECLARE_MSM_GPIO_PINS(40);
  189. DECLARE_MSM_GPIO_PINS(41);
  190. DECLARE_MSM_GPIO_PINS(42);
  191. DECLARE_MSM_GPIO_PINS(43);
  192. DECLARE_MSM_GPIO_PINS(44);
  193. DECLARE_MSM_GPIO_PINS(45);
  194. DECLARE_MSM_GPIO_PINS(46);
  195. DECLARE_MSM_GPIO_PINS(47);
  196. DECLARE_MSM_GPIO_PINS(48);
  197. DECLARE_MSM_GPIO_PINS(49);
  198. DECLARE_MSM_GPIO_PINS(50);
  199. DECLARE_MSM_GPIO_PINS(51);
  200. DECLARE_MSM_GPIO_PINS(52);
  201. DECLARE_MSM_GPIO_PINS(53);
  202. DECLARE_MSM_GPIO_PINS(54);
  203. DECLARE_MSM_GPIO_PINS(55);
  204. DECLARE_MSM_GPIO_PINS(56);
  205. DECLARE_MSM_GPIO_PINS(57);
  206. DECLARE_MSM_GPIO_PINS(58);
  207. DECLARE_MSM_GPIO_PINS(59);
  208. DECLARE_MSM_GPIO_PINS(60);
  209. DECLARE_MSM_GPIO_PINS(61);
  210. DECLARE_MSM_GPIO_PINS(62);
  211. DECLARE_MSM_GPIO_PINS(63);
  212. DECLARE_MSM_GPIO_PINS(64);
  213. DECLARE_MSM_GPIO_PINS(65);
  214. DECLARE_MSM_GPIO_PINS(66);
  215. DECLARE_MSM_GPIO_PINS(67);
  216. DECLARE_MSM_GPIO_PINS(68);
  217. DECLARE_MSM_GPIO_PINS(69);
  218. DECLARE_MSM_GPIO_PINS(70);
  219. DECLARE_MSM_GPIO_PINS(71);
  220. DECLARE_MSM_GPIO_PINS(72);
  221. DECLARE_MSM_GPIO_PINS(73);
  222. DECLARE_MSM_GPIO_PINS(74);
  223. DECLARE_MSM_GPIO_PINS(75);
  224. DECLARE_MSM_GPIO_PINS(76);
  225. DECLARE_MSM_GPIO_PINS(77);
  226. DECLARE_MSM_GPIO_PINS(78);
  227. DECLARE_MSM_GPIO_PINS(79);
  228. DECLARE_MSM_GPIO_PINS(80);
  229. DECLARE_MSM_GPIO_PINS(81);
  230. DECLARE_MSM_GPIO_PINS(82);
  231. DECLARE_MSM_GPIO_PINS(83);
  232. DECLARE_MSM_GPIO_PINS(84);
  233. DECLARE_MSM_GPIO_PINS(85);
  234. DECLARE_MSM_GPIO_PINS(86);
  235. DECLARE_MSM_GPIO_PINS(87);
  236. DECLARE_MSM_GPIO_PINS(88);
  237. DECLARE_MSM_GPIO_PINS(89);
  238. DECLARE_MSM_GPIO_PINS(90);
  239. DECLARE_MSM_GPIO_PINS(91);
  240. DECLARE_MSM_GPIO_PINS(92);
  241. DECLARE_MSM_GPIO_PINS(93);
  242. DECLARE_MSM_GPIO_PINS(94);
  243. DECLARE_MSM_GPIO_PINS(95);
  244. DECLARE_MSM_GPIO_PINS(96);
  245. DECLARE_MSM_GPIO_PINS(97);
  246. DECLARE_MSM_GPIO_PINS(98);
  247. DECLARE_MSM_GPIO_PINS(99);
  248. DECLARE_MSM_GPIO_PINS(100);
  249. DECLARE_MSM_GPIO_PINS(101);
  250. DECLARE_MSM_GPIO_PINS(102);
  251. DECLARE_MSM_GPIO_PINS(103);
  252. DECLARE_MSM_GPIO_PINS(104);
  253. DECLARE_MSM_GPIO_PINS(105);
  254. DECLARE_MSM_GPIO_PINS(106);
  255. DECLARE_MSM_GPIO_PINS(107);
  256. DECLARE_MSM_GPIO_PINS(108);
  257. DECLARE_MSM_GPIO_PINS(109);
  258. DECLARE_MSM_GPIO_PINS(110);
  259. DECLARE_MSM_GPIO_PINS(111);
  260. DECLARE_MSM_GPIO_PINS(112);
  261. DECLARE_MSM_GPIO_PINS(113);
  262. DECLARE_MSM_GPIO_PINS(114);
  263. DECLARE_MSM_GPIO_PINS(115);
  264. DECLARE_MSM_GPIO_PINS(116);
  265. DECLARE_MSM_GPIO_PINS(117);
  266. DECLARE_MSM_GPIO_PINS(118);
  267. DECLARE_MSM_GPIO_PINS(119);
  268. DECLARE_MSM_GPIO_PINS(120);
  269. DECLARE_MSM_GPIO_PINS(121);
  270. static const unsigned int sdc1_clk_pins[] = { 122 };
  271. static const unsigned int sdc1_cmd_pins[] = { 123 };
  272. static const unsigned int sdc1_data_pins[] = { 124 };
  273. static const unsigned int sdc2_clk_pins[] = { 125 };
  274. static const unsigned int sdc2_cmd_pins[] = { 126 };
  275. static const unsigned int sdc2_data_pins[] = { 127 };
  276. static const unsigned int qdsd_clk_pins[] = { 128 };
  277. static const unsigned int qdsd_cmd_pins[] = { 129 };
  278. static const unsigned int qdsd_data0_pins[] = { 130 };
  279. static const unsigned int qdsd_data1_pins[] = { 131 };
  280. static const unsigned int qdsd_data2_pins[] = { 132 };
  281. static const unsigned int qdsd_data3_pins[] = { 133 };
  282. #define FUNCTION(fname) \
  283. [MSM_MUX_##fname] = { \
  284. .name = #fname, \
  285. .groups = fname##_groups, \
  286. .ngroups = ARRAY_SIZE(fname##_groups), \
  287. }
  288. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
  289. { \
  290. .name = "gpio" #id, \
  291. .pins = gpio##id##_pins, \
  292. .npins = ARRAY_SIZE(gpio##id##_pins), \
  293. .funcs = (int[]){ \
  294. MSM_MUX_gpio, \
  295. MSM_MUX_##f1, \
  296. MSM_MUX_##f2, \
  297. MSM_MUX_##f3, \
  298. MSM_MUX_##f4, \
  299. MSM_MUX_##f5, \
  300. MSM_MUX_##f6, \
  301. MSM_MUX_##f7, \
  302. MSM_MUX_##f8, \
  303. MSM_MUX_##f9 \
  304. }, \
  305. .nfuncs = 10, \
  306. .ctl_reg = 0x1000 * id, \
  307. .io_reg = 0x4 + 0x1000 * id, \
  308. .intr_cfg_reg = 0x8 + 0x1000 * id, \
  309. .intr_status_reg = 0xc + 0x1000 * id, \
  310. .intr_target_reg = 0x8 + 0x1000 * id, \
  311. .mux_bit = 2, \
  312. .pull_bit = 0, \
  313. .drv_bit = 6, \
  314. .oe_bit = 9, \
  315. .in_bit = 0, \
  316. .out_bit = 1, \
  317. .intr_enable_bit = 0, \
  318. .intr_status_bit = 0, \
  319. .intr_target_bit = 5, \
  320. .intr_target_kpss_val = 4, \
  321. .intr_raw_status_bit = 4, \
  322. .intr_polarity_bit = 1, \
  323. .intr_detection_bit = 2, \
  324. .intr_detection_width = 2, \
  325. }
  326. #define SDC_PINGROUP(pg_name, ctl, pull, drv) \
  327. { \
  328. .name = #pg_name, \
  329. .pins = pg_name##_pins, \
  330. .npins = ARRAY_SIZE(pg_name##_pins), \
  331. .ctl_reg = ctl, \
  332. .io_reg = 0, \
  333. .intr_cfg_reg = 0, \
  334. .intr_status_reg = 0, \
  335. .intr_target_reg = 0, \
  336. .mux_bit = -1, \
  337. .pull_bit = pull, \
  338. .drv_bit = drv, \
  339. .oe_bit = -1, \
  340. .in_bit = -1, \
  341. .out_bit = -1, \
  342. .intr_enable_bit = -1, \
  343. .intr_status_bit = -1, \
  344. .intr_target_bit = -1, \
  345. .intr_target_kpss_val = -1, \
  346. .intr_raw_status_bit = -1, \
  347. .intr_polarity_bit = -1, \
  348. .intr_detection_bit = -1, \
  349. .intr_detection_width = -1, \
  350. }
  351. enum msm8916_functions {
  352. MSM_MUX_adsp_ext,
  353. MSM_MUX_alsp_int,
  354. MSM_MUX_atest_bbrx0,
  355. MSM_MUX_atest_bbrx1,
  356. MSM_MUX_atest_char,
  357. MSM_MUX_atest_char0,
  358. MSM_MUX_atest_char1,
  359. MSM_MUX_atest_char2,
  360. MSM_MUX_atest_char3,
  361. MSM_MUX_atest_combodac,
  362. MSM_MUX_atest_gpsadc0,
  363. MSM_MUX_atest_gpsadc1,
  364. MSM_MUX_atest_tsens,
  365. MSM_MUX_atest_wlan0,
  366. MSM_MUX_atest_wlan1,
  367. MSM_MUX_backlight_en,
  368. MSM_MUX_bimc_dte0,
  369. MSM_MUX_bimc_dte1,
  370. MSM_MUX_blsp_i2c1,
  371. MSM_MUX_blsp_i2c2,
  372. MSM_MUX_blsp_i2c3,
  373. MSM_MUX_blsp_i2c4,
  374. MSM_MUX_blsp_i2c5,
  375. MSM_MUX_blsp_i2c6,
  376. MSM_MUX_blsp_spi1,
  377. MSM_MUX_blsp_spi1_cs1,
  378. MSM_MUX_blsp_spi1_cs2,
  379. MSM_MUX_blsp_spi1_cs3,
  380. MSM_MUX_blsp_spi2,
  381. MSM_MUX_blsp_spi2_cs1,
  382. MSM_MUX_blsp_spi2_cs2,
  383. MSM_MUX_blsp_spi2_cs3,
  384. MSM_MUX_blsp_spi3,
  385. MSM_MUX_blsp_spi3_cs1,
  386. MSM_MUX_blsp_spi3_cs2,
  387. MSM_MUX_blsp_spi3_cs3,
  388. MSM_MUX_blsp_spi4,
  389. MSM_MUX_blsp_spi5,
  390. MSM_MUX_blsp_spi6,
  391. MSM_MUX_blsp_uart1,
  392. MSM_MUX_blsp_uart2,
  393. MSM_MUX_blsp_uim1,
  394. MSM_MUX_blsp_uim2,
  395. MSM_MUX_cam1_rst,
  396. MSM_MUX_cam1_standby,
  397. MSM_MUX_cam_mclk0,
  398. MSM_MUX_cam_mclk1,
  399. MSM_MUX_cci_async,
  400. MSM_MUX_cci_i2c,
  401. MSM_MUX_cci_timer0,
  402. MSM_MUX_cci_timer1,
  403. MSM_MUX_cci_timer2,
  404. MSM_MUX_cdc_pdm0,
  405. MSM_MUX_codec_mad,
  406. MSM_MUX_dbg_out,
  407. MSM_MUX_display_5v,
  408. MSM_MUX_dmic0_clk,
  409. MSM_MUX_dmic0_data,
  410. MSM_MUX_dsi_rst,
  411. MSM_MUX_ebi0_wrcdc,
  412. MSM_MUX_euro_us,
  413. MSM_MUX_ext_lpass,
  414. MSM_MUX_flash_strobe,
  415. MSM_MUX_gcc_gp1_clk_a,
  416. MSM_MUX_gcc_gp1_clk_b,
  417. MSM_MUX_gcc_gp2_clk_a,
  418. MSM_MUX_gcc_gp2_clk_b,
  419. MSM_MUX_gcc_gp3_clk_a,
  420. MSM_MUX_gcc_gp3_clk_b,
  421. MSM_MUX_gpio,
  422. MSM_MUX_gsm0_tx0,
  423. MSM_MUX_gsm0_tx1,
  424. MSM_MUX_gsm1_tx0,
  425. MSM_MUX_gsm1_tx1,
  426. MSM_MUX_gyro_accl,
  427. MSM_MUX_kpsns0,
  428. MSM_MUX_kpsns1,
  429. MSM_MUX_kpsns2,
  430. MSM_MUX_ldo_en,
  431. MSM_MUX_ldo_update,
  432. MSM_MUX_mag_int,
  433. MSM_MUX_mdp_vsync,
  434. MSM_MUX_modem_tsync,
  435. MSM_MUX_m_voc,
  436. MSM_MUX_nav_pps,
  437. MSM_MUX_nav_tsync,
  438. MSM_MUX_pa_indicator,
  439. MSM_MUX_pbs0,
  440. MSM_MUX_pbs1,
  441. MSM_MUX_pbs2,
  442. MSM_MUX_pri_mi2s,
  443. MSM_MUX_pri_mi2s_ws,
  444. MSM_MUX_prng_rosc,
  445. MSM_MUX_pwr_crypto_enabled_a,
  446. MSM_MUX_pwr_crypto_enabled_b,
  447. MSM_MUX_pwr_modem_enabled_a,
  448. MSM_MUX_pwr_modem_enabled_b,
  449. MSM_MUX_pwr_nav_enabled_a,
  450. MSM_MUX_pwr_nav_enabled_b,
  451. MSM_MUX_qdss_ctitrig_in_a0,
  452. MSM_MUX_qdss_ctitrig_in_a1,
  453. MSM_MUX_qdss_ctitrig_in_b0,
  454. MSM_MUX_qdss_ctitrig_in_b1,
  455. MSM_MUX_qdss_ctitrig_out_a0,
  456. MSM_MUX_qdss_ctitrig_out_a1,
  457. MSM_MUX_qdss_ctitrig_out_b0,
  458. MSM_MUX_qdss_ctitrig_out_b1,
  459. MSM_MUX_qdss_traceclk_a,
  460. MSM_MUX_qdss_traceclk_b,
  461. MSM_MUX_qdss_tracectl_a,
  462. MSM_MUX_qdss_tracectl_b,
  463. MSM_MUX_qdss_tracedata_a,
  464. MSM_MUX_qdss_tracedata_b,
  465. MSM_MUX_reset_n,
  466. MSM_MUX_sd_card,
  467. MSM_MUX_sd_write,
  468. MSM_MUX_sec_mi2s,
  469. MSM_MUX_smb_int,
  470. MSM_MUX_ssbi_wtr0,
  471. MSM_MUX_ssbi_wtr1,
  472. MSM_MUX_uim1,
  473. MSM_MUX_uim2,
  474. MSM_MUX_uim3,
  475. MSM_MUX_uim_batt,
  476. MSM_MUX_wcss_bt,
  477. MSM_MUX_wcss_fm,
  478. MSM_MUX_wcss_wlan,
  479. MSM_MUX_webcam1_rst,
  480. MSM_MUX_NA,
  481. };
  482. static const char * const gpio_groups[] = {
  483. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  484. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  485. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  486. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  487. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  488. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  489. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  490. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  491. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  492. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  493. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  494. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
  495. "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
  496. "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
  497. "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
  498. "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
  499. "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
  500. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121"
  501. };
  502. static const char * const adsp_ext_groups[] = { "gpio38" };
  503. static const char * const alsp_int_groups[] = { "gpio113" };
  504. static const char * const atest_bbrx0_groups[] = { "gpio17" };
  505. static const char * const atest_bbrx1_groups[] = { "gpio16" };
  506. static const char * const atest_char_groups[] = { "gpio62" };
  507. static const char * const atest_char0_groups[] = { "gpio60" };
  508. static const char * const atest_char1_groups[] = { "gpio59" };
  509. static const char * const atest_char2_groups[] = { "gpio58" };
  510. static const char * const atest_char3_groups[] = { "gpio57" };
  511. static const char * const atest_combodac_groups[] = {
  512. "gpio4", "gpio12", "gpio13", "gpio20", "gpio21", "gpio28", "gpio29",
  513. "gpio30", "gpio39", "gpio40", "gpio41", "gpio42", "gpio43", "gpio44",
  514. "gpio45", "gpio46", "gpio47", "gpio48", "gpio69", "gpio107"
  515. };
  516. static const char * const atest_gpsadc0_groups[] = { "gpio7" };
  517. static const char * const atest_gpsadc1_groups[] = { "gpio18" };
  518. static const char * const atest_tsens_groups[] = { "gpio112" };
  519. static const char * const atest_wlan0_groups[] = { "gpio22" };
  520. static const char * const atest_wlan1_groups[] = { "gpio23" };
  521. static const char * const backlight_en_groups[] = { "gpio98" };
  522. static const char * const bimc_dte0_groups[] = { "gpio63", "gpio65" };
  523. static const char * const bimc_dte1_groups[] = { "gpio64", "gpio66" };
  524. static const char * const blsp_i2c1_groups[] = { "gpio2", "gpio3" };
  525. static const char * const blsp_i2c2_groups[] = { "gpio6", "gpio7" };
  526. static const char * const blsp_i2c3_groups[] = { "gpio10", "gpio11" };
  527. static const char * const blsp_i2c4_groups[] = { "gpio14", "gpio15" };
  528. static const char * const blsp_i2c5_groups[] = { "gpio18", "gpio19" };
  529. static const char * const blsp_i2c6_groups[] = { "gpio22", "gpio23" };
  530. static const char * const blsp_spi1_groups[] = {
  531. "gpio0", "gpio1", "gpio2", "gpio3"
  532. };
  533. static const char * const blsp_spi1_cs1_groups[] = { "gpio110" };
  534. static const char * const blsp_spi1_cs2_groups[] = { "gpio16" };
  535. static const char * const blsp_spi1_cs3_groups[] = { "gpio4" };
  536. static const char * const blsp_spi2_groups[] = {
  537. "gpio4", "gpio5", "gpio6", "gpio7"
  538. };
  539. static const char * const blsp_spi2_cs1_groups[] = { "gpio121" };
  540. static const char * const blsp_spi2_cs2_groups[] = { "gpio17" };
  541. static const char * const blsp_spi2_cs3_groups[] = { "gpio5" };
  542. static const char * const blsp_spi3_groups[] = {
  543. "gpio8", "gpio9", "gpio10", "gpio11"
  544. };
  545. static const char * const blsp_spi3_cs1_groups[] = { "gpio120" };
  546. static const char * const blsp_spi3_cs2_groups[] = { "gpio37" };
  547. static const char * const blsp_spi3_cs3_groups[] = { "gpio69" };
  548. static const char * const blsp_spi4_groups[] = {
  549. "gpio12", "gpio13", "gpio14", "gpio15"
  550. };
  551. static const char * const blsp_spi5_groups[] = {
  552. "gpio16", "gpio17", "gpio18", "gpio19"
  553. };
  554. static const char * const blsp_spi6_groups[] = {
  555. "gpio20", "gpio21", "gpio22", "gpio23"
  556. };
  557. static const char * const blsp_uart1_groups[] = {
  558. "gpio0", "gpio1", "gpio2", "gpio3"
  559. };
  560. static const char * const blsp_uart2_groups[] = {
  561. "gpio4", "gpio5", "gpio6", "gpio7"
  562. };
  563. static const char * const blsp_uim1_groups[] = { "gpio0", "gpio1" };
  564. static const char * const blsp_uim2_groups[] = { "gpio4", "gpio5" };
  565. static const char * const cam1_rst_groups[] = { "gpio35" };
  566. static const char * const cam1_standby_groups[] = { "gpio34" };
  567. static const char * const cam_mclk0_groups[] = { "gpio26" };
  568. static const char * const cam_mclk1_groups[] = { "gpio27" };
  569. static const char * const cci_async_groups[] = { "gpio33" };
  570. static const char * const cci_i2c_groups[] = { "gpio29", "gpio30" };
  571. static const char * const cci_timer0_groups[] = { "gpio31" };
  572. static const char * const cci_timer1_groups[] = { "gpio32" };
  573. static const char * const cci_timer2_groups[] = { "gpio38" };
  574. static const char * const cdc_pdm0_groups[] = {
  575. "gpio63", "gpio64", "gpio65", "gpio66", "gpio67", "gpio68"
  576. };
  577. static const char * const codec_mad_groups[] = { "gpio16" };
  578. static const char * const dbg_out_groups[] = { "gpio47" };
  579. static const char * const display_5v_groups[] = { "gpio97" };
  580. static const char * const dmic0_clk_groups[] = { "gpio0" };
  581. static const char * const dmic0_data_groups[] = { "gpio1" };
  582. static const char * const dsi_rst_groups[] = { "gpio25" };
  583. static const char * const ebi0_wrcdc_groups[] = { "gpio67" };
  584. static const char * const euro_us_groups[] = { "gpio120" };
  585. static const char * const ext_lpass_groups[] = { "gpio45" };
  586. static const char * const flash_strobe_groups[] = { "gpio31", "gpio32" };
  587. static const char * const gcc_gp1_clk_a_groups[] = { "gpio49" };
  588. static const char * const gcc_gp1_clk_b_groups[] = { "gpio97" };
  589. static const char * const gcc_gp2_clk_a_groups[] = { "gpio50" };
  590. static const char * const gcc_gp2_clk_b_groups[] = { "gpio12" };
  591. static const char * const gcc_gp3_clk_a_groups[] = { "gpio51" };
  592. static const char * const gcc_gp3_clk_b_groups[] = { "gpio13" };
  593. static const char * const gsm0_tx0_groups[] = { "gpio99" };
  594. static const char * const gsm0_tx1_groups[] = { "gpio100" };
  595. static const char * const gsm1_tx0_groups[] = { "gpio101" };
  596. static const char * const gsm1_tx1_groups[] = { "gpio102" };
  597. static const char * const gyro_accl_groups[] = {"gpio115" };
  598. static const char * const kpsns0_groups[] = { "gpio107" };
  599. static const char * const kpsns1_groups[] = { "gpio108" };
  600. static const char * const kpsns2_groups[] = { "gpio109" };
  601. static const char * const ldo_en_groups[] = { "gpio121" };
  602. static const char * const ldo_update_groups[] = { "gpio120" };
  603. static const char * const mag_int_groups[] = { "gpio69" };
  604. static const char * const mdp_vsync_groups[] = { "gpio24", "gpio25" };
  605. static const char * const modem_tsync_groups[] = { "gpio95" };
  606. static const char * const m_voc_groups[] = { "gpio8", "gpio119" };
  607. static const char * const nav_pps_groups[] = { "gpio95" };
  608. static const char * const nav_tsync_groups[] = { "gpio95" };
  609. static const char * const pa_indicator_groups[] = { "gpio86" };
  610. static const char * const pbs0_groups[] = { "gpio107" };
  611. static const char * const pbs1_groups[] = { "gpio108" };
  612. static const char * const pbs2_groups[] = { "gpio109" };
  613. static const char * const pri_mi2s_groups[] = {
  614. "gpio113", "gpio114", "gpio115", "gpio116"
  615. };
  616. static const char * const pri_mi2s_ws_groups[] = { "gpio110" };
  617. static const char * const prng_rosc_groups[] = { "gpio43" };
  618. static const char * const pwr_crypto_enabled_a_groups[] = { "gpio35" };
  619. static const char * const pwr_crypto_enabled_b_groups[] = { "gpio115" };
  620. static const char * const pwr_modem_enabled_a_groups[] = { "gpio28" };
  621. static const char * const pwr_modem_enabled_b_groups[] = { "gpio113" };
  622. static const char * const pwr_nav_enabled_a_groups[] = { "gpio34" };
  623. static const char * const pwr_nav_enabled_b_groups[] = { "gpio114" };
  624. static const char * const qdss_ctitrig_in_a0_groups[] = { "gpio20" };
  625. static const char * const qdss_ctitrig_in_a1_groups[] = { "gpio49" };
  626. static const char * const qdss_ctitrig_in_b0_groups[] = { "gpio21" };
  627. static const char * const qdss_ctitrig_in_b1_groups[] = { "gpio50" };
  628. static const char * const qdss_ctitrig_out_a0_groups[] = { "gpio23" };
  629. static const char * const qdss_ctitrig_out_a1_groups[] = { "gpio52" };
  630. static const char * const qdss_ctitrig_out_b0_groups[] = { "gpio22" };
  631. static const char * const qdss_ctitrig_out_b1_groups[] = { "gpio51" };
  632. static const char * const qdss_traceclk_a_groups[] = { "gpio46" };
  633. static const char * const qdss_traceclk_b_groups[] = { "gpio5" };
  634. static const char * const qdss_tracectl_a_groups[] = { "gpio45" };
  635. static const char * const qdss_tracectl_b_groups[] = { "gpio4" };
  636. static const char * const qdss_tracedata_a_groups[] = {
  637. "gpio8", "gpio9", "gpio10", "gpio39", "gpio40", "gpio41", "gpio42",
  638. "gpio43", "gpio47", "gpio48", "gpio62", "gpio69", "gpio112", "gpio113",
  639. "gpio114", "gpio115"
  640. };
  641. static const char * const qdss_tracedata_b_groups[] = {
  642. "gpio26", "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32",
  643. "gpio33", "gpio34", "gpio35", "gpio36", "gpio37", "gpio110", "gpio111",
  644. "gpio120", "gpio121"
  645. };
  646. static const char * const reset_n_groups[] = { "gpio36" };
  647. static const char * const sd_card_groups[] = { "gpio38" };
  648. static const char * const sd_write_groups[] = { "gpio121" };
  649. static const char * const sec_mi2s_groups[] = {
  650. "gpio112", "gpio117", "gpio118", "gpio119"
  651. };
  652. static const char * const smb_int_groups[] = { "gpio62" };
  653. static const char * const ssbi_wtr0_groups[] = { "gpio103", "gpio104" };
  654. static const char * const ssbi_wtr1_groups[] = { "gpio105", "gpio106" };
  655. static const char * const uim1_groups[] = {
  656. "gpio57", "gpio58", "gpio59", "gpio60"
  657. };
  658. static const char * const uim2_groups[] = {
  659. "gpio53", "gpio54", "gpio55", "gpio56"
  660. };
  661. static const char * const uim3_groups[] = {
  662. "gpio49", "gpio50", "gpio51", "gpio52"
  663. };
  664. static const char * const uim_batt_groups[] = { "gpio61" };
  665. static const char * const wcss_bt_groups[] = { "gpio39", "gpio47", "gpio48" };
  666. static const char * const wcss_fm_groups[] = { "gpio45", "gpio46" };
  667. static const char * const wcss_wlan_groups[] = {
  668. "gpio40", "gpio41", "gpio42", "gpio43", "gpio44"
  669. };
  670. static const char * const webcam1_rst_groups[] = { "gpio28" };
  671. static const struct msm_function msm8916_functions[] = {
  672. FUNCTION(adsp_ext),
  673. FUNCTION(alsp_int),
  674. FUNCTION(atest_bbrx0),
  675. FUNCTION(atest_bbrx1),
  676. FUNCTION(atest_char),
  677. FUNCTION(atest_char0),
  678. FUNCTION(atest_char1),
  679. FUNCTION(atest_char2),
  680. FUNCTION(atest_char3),
  681. FUNCTION(atest_combodac),
  682. FUNCTION(atest_gpsadc0),
  683. FUNCTION(atest_gpsadc1),
  684. FUNCTION(atest_tsens),
  685. FUNCTION(atest_wlan0),
  686. FUNCTION(atest_wlan1),
  687. FUNCTION(backlight_en),
  688. FUNCTION(bimc_dte0),
  689. FUNCTION(bimc_dte1),
  690. FUNCTION(blsp_i2c1),
  691. FUNCTION(blsp_i2c2),
  692. FUNCTION(blsp_i2c3),
  693. FUNCTION(blsp_i2c4),
  694. FUNCTION(blsp_i2c5),
  695. FUNCTION(blsp_i2c6),
  696. FUNCTION(blsp_spi1),
  697. FUNCTION(blsp_spi1_cs1),
  698. FUNCTION(blsp_spi1_cs2),
  699. FUNCTION(blsp_spi1_cs3),
  700. FUNCTION(blsp_spi2),
  701. FUNCTION(blsp_spi2_cs1),
  702. FUNCTION(blsp_spi2_cs2),
  703. FUNCTION(blsp_spi2_cs3),
  704. FUNCTION(blsp_spi3),
  705. FUNCTION(blsp_spi3_cs1),
  706. FUNCTION(blsp_spi3_cs2),
  707. FUNCTION(blsp_spi3_cs3),
  708. FUNCTION(blsp_spi4),
  709. FUNCTION(blsp_spi5),
  710. FUNCTION(blsp_spi6),
  711. FUNCTION(blsp_uart1),
  712. FUNCTION(blsp_uart2),
  713. FUNCTION(blsp_uim1),
  714. FUNCTION(blsp_uim2),
  715. FUNCTION(cam1_rst),
  716. FUNCTION(cam1_standby),
  717. FUNCTION(cam_mclk0),
  718. FUNCTION(cam_mclk1),
  719. FUNCTION(cci_async),
  720. FUNCTION(cci_i2c),
  721. FUNCTION(cci_timer0),
  722. FUNCTION(cci_timer1),
  723. FUNCTION(cci_timer2),
  724. FUNCTION(cdc_pdm0),
  725. FUNCTION(codec_mad),
  726. FUNCTION(dbg_out),
  727. FUNCTION(display_5v),
  728. FUNCTION(dmic0_clk),
  729. FUNCTION(dmic0_data),
  730. FUNCTION(dsi_rst),
  731. FUNCTION(ebi0_wrcdc),
  732. FUNCTION(euro_us),
  733. FUNCTION(ext_lpass),
  734. FUNCTION(flash_strobe),
  735. FUNCTION(gcc_gp1_clk_a),
  736. FUNCTION(gcc_gp1_clk_b),
  737. FUNCTION(gcc_gp2_clk_a),
  738. FUNCTION(gcc_gp2_clk_b),
  739. FUNCTION(gcc_gp3_clk_a),
  740. FUNCTION(gcc_gp3_clk_b),
  741. FUNCTION(gpio),
  742. FUNCTION(gsm0_tx0),
  743. FUNCTION(gsm0_tx1),
  744. FUNCTION(gsm1_tx0),
  745. FUNCTION(gsm1_tx1),
  746. FUNCTION(gyro_accl),
  747. FUNCTION(kpsns0),
  748. FUNCTION(kpsns1),
  749. FUNCTION(kpsns2),
  750. FUNCTION(ldo_en),
  751. FUNCTION(ldo_update),
  752. FUNCTION(mag_int),
  753. FUNCTION(mdp_vsync),
  754. FUNCTION(modem_tsync),
  755. FUNCTION(m_voc),
  756. FUNCTION(nav_pps),
  757. FUNCTION(nav_tsync),
  758. FUNCTION(pa_indicator),
  759. FUNCTION(pbs0),
  760. FUNCTION(pbs1),
  761. FUNCTION(pbs2),
  762. FUNCTION(pri_mi2s),
  763. FUNCTION(pri_mi2s_ws),
  764. FUNCTION(prng_rosc),
  765. FUNCTION(pwr_crypto_enabled_a),
  766. FUNCTION(pwr_crypto_enabled_b),
  767. FUNCTION(pwr_modem_enabled_a),
  768. FUNCTION(pwr_modem_enabled_b),
  769. FUNCTION(pwr_nav_enabled_a),
  770. FUNCTION(pwr_nav_enabled_b),
  771. FUNCTION(qdss_ctitrig_in_a0),
  772. FUNCTION(qdss_ctitrig_in_a1),
  773. FUNCTION(qdss_ctitrig_in_b0),
  774. FUNCTION(qdss_ctitrig_in_b1),
  775. FUNCTION(qdss_ctitrig_out_a0),
  776. FUNCTION(qdss_ctitrig_out_a1),
  777. FUNCTION(qdss_ctitrig_out_b0),
  778. FUNCTION(qdss_ctitrig_out_b1),
  779. FUNCTION(qdss_traceclk_a),
  780. FUNCTION(qdss_traceclk_b),
  781. FUNCTION(qdss_tracectl_a),
  782. FUNCTION(qdss_tracectl_b),
  783. FUNCTION(qdss_tracedata_a),
  784. FUNCTION(qdss_tracedata_b),
  785. FUNCTION(reset_n),
  786. FUNCTION(sd_card),
  787. FUNCTION(sd_write),
  788. FUNCTION(sec_mi2s),
  789. FUNCTION(smb_int),
  790. FUNCTION(ssbi_wtr0),
  791. FUNCTION(ssbi_wtr1),
  792. FUNCTION(uim1),
  793. FUNCTION(uim2),
  794. FUNCTION(uim3),
  795. FUNCTION(uim_batt),
  796. FUNCTION(wcss_bt),
  797. FUNCTION(wcss_fm),
  798. FUNCTION(wcss_wlan),
  799. FUNCTION(webcam1_rst)
  800. };
  801. static const struct msm_pingroup msm8916_groups[] = {
  802. PINGROUP(0, blsp_spi1, blsp_uart1, blsp_uim1, dmic0_clk, NA, NA, NA, NA, NA),
  803. PINGROUP(1, blsp_spi1, blsp_uart1, blsp_uim1, dmic0_data, NA, NA, NA, NA, NA),
  804. PINGROUP(2, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA),
  805. PINGROUP(3, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA),
  806. PINGROUP(4, blsp_spi2, blsp_uart2, blsp_uim2, blsp_spi1_cs3, qdss_tracectl_b, NA, atest_combodac, NA, NA),
  807. PINGROUP(5, blsp_spi2, blsp_uart2, blsp_uim2, blsp_spi2_cs3, qdss_traceclk_b, NA, NA, NA, NA),
  808. PINGROUP(6, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA, NA, NA),
  809. PINGROUP(7, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA, NA, NA),
  810. PINGROUP(8, blsp_spi3, m_voc, qdss_tracedata_a, NA, NA, NA, NA, NA, NA),
  811. PINGROUP(9, blsp_spi3, qdss_tracedata_a, NA, NA, NA, NA, NA, NA, NA),
  812. PINGROUP(10, blsp_spi3, blsp_i2c3, qdss_tracedata_a, NA, NA, NA, NA, NA, NA),
  813. PINGROUP(11, blsp_spi3, blsp_i2c3, NA, NA, NA, NA, NA, NA, NA),
  814. PINGROUP(12, blsp_spi4, gcc_gp2_clk_b, NA, atest_combodac, NA, NA, NA, NA, NA),
  815. PINGROUP(13, blsp_spi4, gcc_gp3_clk_b, NA, atest_combodac, NA, NA, NA, NA, NA),
  816. PINGROUP(14, blsp_spi4, blsp_i2c4, NA, NA, NA, NA, NA, NA, NA),
  817. PINGROUP(15, blsp_spi4, blsp_i2c4, NA, NA, NA, NA, NA, NA, NA),
  818. PINGROUP(16, blsp_spi5, blsp_spi1_cs2, NA, atest_bbrx1, NA, NA, NA, NA, NA),
  819. PINGROUP(17, blsp_spi5, blsp_spi2_cs2, NA, atest_bbrx0, NA, NA, NA, NA, NA),
  820. PINGROUP(18, blsp_spi5, blsp_i2c5, NA, atest_gpsadc1, NA, NA, NA, NA, NA),
  821. PINGROUP(19, blsp_spi5, blsp_i2c5, NA, NA, NA, NA, NA, NA, NA),
  822. PINGROUP(20, blsp_spi6, NA, NA, NA, NA, NA, NA, qdss_ctitrig_in_a0, NA),
  823. PINGROUP(21, blsp_spi6, NA, NA, NA, NA, NA, NA, qdss_ctitrig_in_b0, NA),
  824. PINGROUP(22, blsp_spi6, blsp_i2c6, NA, NA, NA, NA, NA, NA, NA),
  825. PINGROUP(23, blsp_spi6, blsp_i2c6, NA, NA, NA, NA, NA, NA, NA),
  826. PINGROUP(24, mdp_vsync, NA, NA, NA, NA, NA, NA, NA, NA),
  827. PINGROUP(25, mdp_vsync, NA, NA, NA, NA, NA, NA, NA, NA),
  828. PINGROUP(26, cam_mclk0, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, NA),
  829. PINGROUP(27, cam_mclk1, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b),
  830. PINGROUP(28, pwr_modem_enabled_a, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, atest_combodac),
  831. PINGROUP(29, cci_i2c, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, atest_combodac),
  832. PINGROUP(30, cci_i2c, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b),
  833. PINGROUP(31, cci_timer0, flash_strobe, NA, NA, NA, NA, NA, NA, NA),
  834. PINGROUP(32, cci_timer1, flash_strobe, NA, NA, NA, NA, NA, NA, NA),
  835. PINGROUP(33, cci_async, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b),
  836. PINGROUP(34, pwr_nav_enabled_a, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b),
  837. PINGROUP(35, pwr_crypto_enabled_a, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b),
  838. PINGROUP(36, NA, NA, NA, NA, NA, NA, NA, qdss_tracedata_b, NA),
  839. PINGROUP(37, blsp_spi3_cs2, NA, NA, NA, NA, NA, qdss_tracedata_b, NA, NA),
  840. PINGROUP(38, cci_timer2, adsp_ext, NA, NA, NA, NA, NA, NA, NA),
  841. PINGROUP(39, wcss_bt, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  842. PINGROUP(40, wcss_wlan, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  843. PINGROUP(41, wcss_wlan, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  844. PINGROUP(42, wcss_wlan, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  845. PINGROUP(43, wcss_wlan, prng_rosc, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA),
  846. PINGROUP(44, wcss_wlan, NA, atest_combodac, NA, NA, NA, NA, NA, NA),
  847. PINGROUP(45, wcss_fm, ext_lpass, qdss_tracectl_a, NA, atest_combodac, NA, NA, NA, NA),
  848. PINGROUP(46, wcss_fm, qdss_traceclk_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  849. PINGROUP(47, wcss_bt, dbg_out, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA),
  850. PINGROUP(48, wcss_bt, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  851. PINGROUP(49, uim3, gcc_gp1_clk_a, qdss_ctitrig_in_a1, NA, NA, NA, NA, NA, NA),
  852. PINGROUP(50, uim3, gcc_gp2_clk_a, qdss_ctitrig_in_b1, NA, NA, NA, NA, NA, NA),
  853. PINGROUP(51, uim3, gcc_gp3_clk_a, qdss_ctitrig_out_b1, NA, NA, NA, NA, NA, NA),
  854. PINGROUP(52, uim3, NA, qdss_ctitrig_out_a1, NA, NA, NA, NA, NA, NA),
  855. PINGROUP(53, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
  856. PINGROUP(54, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
  857. PINGROUP(55, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
  858. PINGROUP(56, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
  859. PINGROUP(57, uim1, atest_char3, NA, NA, NA, NA, NA, NA, NA),
  860. PINGROUP(58, uim1, atest_char2, NA, NA, NA, NA, NA, NA, NA),
  861. PINGROUP(59, uim1, atest_char1, NA, NA, NA, NA, NA, NA, NA),
  862. PINGROUP(60, uim1, atest_char0, NA, NA, NA, NA, NA, NA, NA),
  863. PINGROUP(61, uim_batt, NA, NA, NA, NA, NA, NA, NA, NA),
  864. PINGROUP(62, atest_char, qdss_tracedata_a, NA, NA, NA, NA, NA, NA, NA),
  865. PINGROUP(63, cdc_pdm0, bimc_dte0, NA, NA, NA, NA, NA, NA, NA),
  866. PINGROUP(64, cdc_pdm0, bimc_dte1, NA, NA, NA, NA, NA, NA, NA),
  867. PINGROUP(65, cdc_pdm0, bimc_dte0, NA, NA, NA, NA, NA, NA, NA),
  868. PINGROUP(66, cdc_pdm0, bimc_dte1, NA, NA, NA, NA, NA, NA, NA),
  869. PINGROUP(67, cdc_pdm0, ebi0_wrcdc, NA, NA, NA, NA, NA, NA, NA),
  870. PINGROUP(68, cdc_pdm0, NA, NA, NA, NA, NA, NA, NA, NA),
  871. PINGROUP(69, blsp_spi3_cs3, qdss_tracedata_a, NA, atest_combodac, NA, NA, NA, NA, NA),
  872. PINGROUP(70, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  873. PINGROUP(71, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  874. PINGROUP(72, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  875. PINGROUP(73, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  876. PINGROUP(74, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  877. PINGROUP(75, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  878. PINGROUP(76, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  879. PINGROUP(77, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  880. PINGROUP(78, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  881. PINGROUP(79, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  882. PINGROUP(80, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  883. PINGROUP(81, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  884. PINGROUP(82, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  885. PINGROUP(83, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  886. PINGROUP(84, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  887. PINGROUP(85, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  888. PINGROUP(86, NA, pa_indicator, NA, NA, NA, NA, NA, NA, NA),
  889. PINGROUP(87, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  890. PINGROUP(88, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  891. PINGROUP(89, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  892. PINGROUP(90, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  893. PINGROUP(91, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  894. PINGROUP(92, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  895. PINGROUP(93, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  896. PINGROUP(94, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  897. PINGROUP(95, NA, modem_tsync, nav_tsync, nav_pps, NA, NA, NA, NA, NA),
  898. PINGROUP(96, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  899. PINGROUP(97, gcc_gp1_clk_b, NA, NA, NA, NA, NA, NA, NA, NA),
  900. PINGROUP(98, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  901. PINGROUP(99, gsm0_tx0, NA, NA, NA, NA, NA, NA, NA, NA),
  902. PINGROUP(100, gsm0_tx1, NA, NA, NA, NA, NA, NA, NA, NA),
  903. PINGROUP(101, gsm1_tx0, NA, NA, NA, NA, NA, NA, NA, NA),
  904. PINGROUP(102, gsm1_tx1, NA, NA, NA, NA, NA, NA, NA, NA),
  905. PINGROUP(103, ssbi_wtr0, NA, NA, NA, NA, NA, NA, NA, NA),
  906. PINGROUP(104, ssbi_wtr0, NA, NA, NA, NA, NA, NA, NA, NA),
  907. PINGROUP(105, ssbi_wtr1, NA, NA, NA, NA, NA, NA, NA, NA),
  908. PINGROUP(106, ssbi_wtr1, NA, NA, NA, NA, NA, NA, NA, NA),
  909. PINGROUP(107, pbs0, NA, atest_combodac, NA, NA, NA, NA, NA, NA),
  910. PINGROUP(108, pbs1, NA, NA, NA, NA, NA, NA, NA, NA),
  911. PINGROUP(109, pbs2, NA, NA, NA, NA, NA, NA, NA, NA),
  912. PINGROUP(110, blsp_spi1_cs1, pri_mi2s_ws, NA, qdss_tracedata_b, NA, NA, NA, NA, NA),
  913. PINGROUP(111, qdss_tracedata_b, NA, NA, NA, NA, NA, NA, NA, NA),
  914. PINGROUP(112, sec_mi2s, NA, NA, NA, qdss_tracedata_a, NA, atest_tsens, NA, NA),
  915. PINGROUP(113, pri_mi2s, NA, pwr_modem_enabled_b, NA, NA, NA, NA, NA, qdss_tracedata_a),
  916. PINGROUP(114, pri_mi2s, pwr_nav_enabled_b, NA, NA, NA, NA, NA, qdss_tracedata_a, NA),
  917. PINGROUP(115, pri_mi2s, pwr_crypto_enabled_b, NA, NA, NA, NA, NA, qdss_tracedata_a, NA),
  918. PINGROUP(116, pri_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  919. PINGROUP(117, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  920. PINGROUP(118, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
  921. PINGROUP(119, sec_mi2s, m_voc, NA, NA, NA, NA, NA, NA, NA),
  922. PINGROUP(120, blsp_spi3_cs1, ldo_update, NA, NA, NA, NA, NA, NA, NA),
  923. PINGROUP(121, sd_write, blsp_spi2_cs1, ldo_en, NA, NA, NA, NA, NA, NA),
  924. SDC_PINGROUP(sdc1_clk, 0x10a000, 13, 6),
  925. SDC_PINGROUP(sdc1_cmd, 0x10a000, 11, 3),
  926. SDC_PINGROUP(sdc1_data, 0x10a000, 9, 0),
  927. SDC_PINGROUP(sdc2_clk, 0x109000, 14, 6),
  928. SDC_PINGROUP(sdc2_cmd, 0x109000, 11, 3),
  929. SDC_PINGROUP(sdc2_data, 0x109000, 9, 0),
  930. SDC_PINGROUP(qdsd_clk, 0x19c000, 3, 0),
  931. SDC_PINGROUP(qdsd_cmd, 0x19c000, 8, 5),
  932. SDC_PINGROUP(qdsd_data0, 0x19c000, 13, 10),
  933. SDC_PINGROUP(qdsd_data1, 0x19c000, 18, 15),
  934. SDC_PINGROUP(qdsd_data2, 0x19c000, 23, 20),
  935. SDC_PINGROUP(qdsd_data3, 0x19c000, 28, 25),
  936. };
  937. #define NUM_GPIO_PINGROUPS 122
  938. static const struct msm_pinctrl_soc_data msm8916_pinctrl = {
  939. .pins = msm8916_pins,
  940. .npins = ARRAY_SIZE(msm8916_pins),
  941. .functions = msm8916_functions,
  942. .nfunctions = ARRAY_SIZE(msm8916_functions),
  943. .groups = msm8916_groups,
  944. .ngroups = ARRAY_SIZE(msm8916_groups),
  945. .ngpios = NUM_GPIO_PINGROUPS,
  946. };
  947. static int msm8916_pinctrl_probe(struct platform_device *pdev)
  948. {
  949. return msm_pinctrl_probe(pdev, &msm8916_pinctrl);
  950. }
  951. static const struct of_device_id msm8916_pinctrl_of_match[] = {
  952. { .compatible = "qcom,msm8916-pinctrl", },
  953. { },
  954. };
  955. static struct platform_driver msm8916_pinctrl_driver = {
  956. .driver = {
  957. .name = "msm8916-pinctrl",
  958. .of_match_table = msm8916_pinctrl_of_match,
  959. },
  960. .probe = msm8916_pinctrl_probe,
  961. .remove = msm_pinctrl_remove,
  962. };
  963. static int __init msm8916_pinctrl_init(void)
  964. {
  965. return platform_driver_register(&msm8916_pinctrl_driver);
  966. }
  967. arch_initcall(msm8916_pinctrl_init);
  968. static void __exit msm8916_pinctrl_exit(void)
  969. {
  970. platform_driver_unregister(&msm8916_pinctrl_driver);
  971. }
  972. module_exit(msm8916_pinctrl_exit);
  973. MODULE_DESCRIPTION("Qualcomm msm8916 pinctrl driver");
  974. MODULE_LICENSE("GPL v2");
  975. MODULE_DEVICE_TABLE(of, msm8916_pinctrl_of_match);