pinctrl-msm8x74.c 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068
  1. /*
  2. * Copyright (c) 2013, Sony Mobile Communications AB.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/module.h>
  14. #include <linux/of.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/pinctrl/pinctrl.h>
  17. #include "pinctrl-msm.h"
  18. static const struct pinctrl_pin_desc msm8x74_pins[] = {
  19. PINCTRL_PIN(0, "GPIO_0"),
  20. PINCTRL_PIN(1, "GPIO_1"),
  21. PINCTRL_PIN(2, "GPIO_2"),
  22. PINCTRL_PIN(3, "GPIO_3"),
  23. PINCTRL_PIN(4, "GPIO_4"),
  24. PINCTRL_PIN(5, "GPIO_5"),
  25. PINCTRL_PIN(6, "GPIO_6"),
  26. PINCTRL_PIN(7, "GPIO_7"),
  27. PINCTRL_PIN(8, "GPIO_8"),
  28. PINCTRL_PIN(9, "GPIO_9"),
  29. PINCTRL_PIN(10, "GPIO_10"),
  30. PINCTRL_PIN(11, "GPIO_11"),
  31. PINCTRL_PIN(12, "GPIO_12"),
  32. PINCTRL_PIN(13, "GPIO_13"),
  33. PINCTRL_PIN(14, "GPIO_14"),
  34. PINCTRL_PIN(15, "GPIO_15"),
  35. PINCTRL_PIN(16, "GPIO_16"),
  36. PINCTRL_PIN(17, "GPIO_17"),
  37. PINCTRL_PIN(18, "GPIO_18"),
  38. PINCTRL_PIN(19, "GPIO_19"),
  39. PINCTRL_PIN(20, "GPIO_20"),
  40. PINCTRL_PIN(21, "GPIO_21"),
  41. PINCTRL_PIN(22, "GPIO_22"),
  42. PINCTRL_PIN(23, "GPIO_23"),
  43. PINCTRL_PIN(24, "GPIO_24"),
  44. PINCTRL_PIN(25, "GPIO_25"),
  45. PINCTRL_PIN(26, "GPIO_26"),
  46. PINCTRL_PIN(27, "GPIO_27"),
  47. PINCTRL_PIN(28, "GPIO_28"),
  48. PINCTRL_PIN(29, "GPIO_29"),
  49. PINCTRL_PIN(30, "GPIO_30"),
  50. PINCTRL_PIN(31, "GPIO_31"),
  51. PINCTRL_PIN(32, "GPIO_32"),
  52. PINCTRL_PIN(33, "GPIO_33"),
  53. PINCTRL_PIN(34, "GPIO_34"),
  54. PINCTRL_PIN(35, "GPIO_35"),
  55. PINCTRL_PIN(36, "GPIO_36"),
  56. PINCTRL_PIN(37, "GPIO_37"),
  57. PINCTRL_PIN(38, "GPIO_38"),
  58. PINCTRL_PIN(39, "GPIO_39"),
  59. PINCTRL_PIN(40, "GPIO_40"),
  60. PINCTRL_PIN(41, "GPIO_41"),
  61. PINCTRL_PIN(42, "GPIO_42"),
  62. PINCTRL_PIN(43, "GPIO_43"),
  63. PINCTRL_PIN(44, "GPIO_44"),
  64. PINCTRL_PIN(45, "GPIO_45"),
  65. PINCTRL_PIN(46, "GPIO_46"),
  66. PINCTRL_PIN(47, "GPIO_47"),
  67. PINCTRL_PIN(48, "GPIO_48"),
  68. PINCTRL_PIN(49, "GPIO_49"),
  69. PINCTRL_PIN(50, "GPIO_50"),
  70. PINCTRL_PIN(51, "GPIO_51"),
  71. PINCTRL_PIN(52, "GPIO_52"),
  72. PINCTRL_PIN(53, "GPIO_53"),
  73. PINCTRL_PIN(54, "GPIO_54"),
  74. PINCTRL_PIN(55, "GPIO_55"),
  75. PINCTRL_PIN(56, "GPIO_56"),
  76. PINCTRL_PIN(57, "GPIO_57"),
  77. PINCTRL_PIN(58, "GPIO_58"),
  78. PINCTRL_PIN(59, "GPIO_59"),
  79. PINCTRL_PIN(60, "GPIO_60"),
  80. PINCTRL_PIN(61, "GPIO_61"),
  81. PINCTRL_PIN(62, "GPIO_62"),
  82. PINCTRL_PIN(63, "GPIO_63"),
  83. PINCTRL_PIN(64, "GPIO_64"),
  84. PINCTRL_PIN(65, "GPIO_65"),
  85. PINCTRL_PIN(66, "GPIO_66"),
  86. PINCTRL_PIN(67, "GPIO_67"),
  87. PINCTRL_PIN(68, "GPIO_68"),
  88. PINCTRL_PIN(69, "GPIO_69"),
  89. PINCTRL_PIN(70, "GPIO_70"),
  90. PINCTRL_PIN(71, "GPIO_71"),
  91. PINCTRL_PIN(72, "GPIO_72"),
  92. PINCTRL_PIN(73, "GPIO_73"),
  93. PINCTRL_PIN(74, "GPIO_74"),
  94. PINCTRL_PIN(75, "GPIO_75"),
  95. PINCTRL_PIN(76, "GPIO_76"),
  96. PINCTRL_PIN(77, "GPIO_77"),
  97. PINCTRL_PIN(78, "GPIO_78"),
  98. PINCTRL_PIN(79, "GPIO_79"),
  99. PINCTRL_PIN(80, "GPIO_80"),
  100. PINCTRL_PIN(81, "GPIO_81"),
  101. PINCTRL_PIN(82, "GPIO_82"),
  102. PINCTRL_PIN(83, "GPIO_83"),
  103. PINCTRL_PIN(84, "GPIO_84"),
  104. PINCTRL_PIN(85, "GPIO_85"),
  105. PINCTRL_PIN(86, "GPIO_86"),
  106. PINCTRL_PIN(87, "GPIO_87"),
  107. PINCTRL_PIN(88, "GPIO_88"),
  108. PINCTRL_PIN(89, "GPIO_89"),
  109. PINCTRL_PIN(90, "GPIO_90"),
  110. PINCTRL_PIN(91, "GPIO_91"),
  111. PINCTRL_PIN(92, "GPIO_92"),
  112. PINCTRL_PIN(93, "GPIO_93"),
  113. PINCTRL_PIN(94, "GPIO_94"),
  114. PINCTRL_PIN(95, "GPIO_95"),
  115. PINCTRL_PIN(96, "GPIO_96"),
  116. PINCTRL_PIN(97, "GPIO_97"),
  117. PINCTRL_PIN(98, "GPIO_98"),
  118. PINCTRL_PIN(99, "GPIO_99"),
  119. PINCTRL_PIN(100, "GPIO_100"),
  120. PINCTRL_PIN(101, "GPIO_101"),
  121. PINCTRL_PIN(102, "GPIO_102"),
  122. PINCTRL_PIN(103, "GPIO_103"),
  123. PINCTRL_PIN(104, "GPIO_104"),
  124. PINCTRL_PIN(105, "GPIO_105"),
  125. PINCTRL_PIN(106, "GPIO_106"),
  126. PINCTRL_PIN(107, "GPIO_107"),
  127. PINCTRL_PIN(108, "GPIO_108"),
  128. PINCTRL_PIN(109, "GPIO_109"),
  129. PINCTRL_PIN(110, "GPIO_110"),
  130. PINCTRL_PIN(111, "GPIO_111"),
  131. PINCTRL_PIN(112, "GPIO_112"),
  132. PINCTRL_PIN(113, "GPIO_113"),
  133. PINCTRL_PIN(114, "GPIO_114"),
  134. PINCTRL_PIN(115, "GPIO_115"),
  135. PINCTRL_PIN(116, "GPIO_116"),
  136. PINCTRL_PIN(117, "GPIO_117"),
  137. PINCTRL_PIN(118, "GPIO_118"),
  138. PINCTRL_PIN(119, "GPIO_119"),
  139. PINCTRL_PIN(120, "GPIO_120"),
  140. PINCTRL_PIN(121, "GPIO_121"),
  141. PINCTRL_PIN(122, "GPIO_122"),
  142. PINCTRL_PIN(123, "GPIO_123"),
  143. PINCTRL_PIN(124, "GPIO_124"),
  144. PINCTRL_PIN(125, "GPIO_125"),
  145. PINCTRL_PIN(126, "GPIO_126"),
  146. PINCTRL_PIN(127, "GPIO_127"),
  147. PINCTRL_PIN(128, "GPIO_128"),
  148. PINCTRL_PIN(129, "GPIO_129"),
  149. PINCTRL_PIN(130, "GPIO_130"),
  150. PINCTRL_PIN(131, "GPIO_131"),
  151. PINCTRL_PIN(132, "GPIO_132"),
  152. PINCTRL_PIN(133, "GPIO_133"),
  153. PINCTRL_PIN(134, "GPIO_134"),
  154. PINCTRL_PIN(135, "GPIO_135"),
  155. PINCTRL_PIN(136, "GPIO_136"),
  156. PINCTRL_PIN(137, "GPIO_137"),
  157. PINCTRL_PIN(138, "GPIO_138"),
  158. PINCTRL_PIN(139, "GPIO_139"),
  159. PINCTRL_PIN(140, "GPIO_140"),
  160. PINCTRL_PIN(141, "GPIO_141"),
  161. PINCTRL_PIN(142, "GPIO_142"),
  162. PINCTRL_PIN(143, "GPIO_143"),
  163. PINCTRL_PIN(144, "GPIO_144"),
  164. PINCTRL_PIN(145, "GPIO_145"),
  165. PINCTRL_PIN(146, "SDC1_CLK"),
  166. PINCTRL_PIN(147, "SDC1_CMD"),
  167. PINCTRL_PIN(148, "SDC1_DATA"),
  168. PINCTRL_PIN(149, "SDC2_CLK"),
  169. PINCTRL_PIN(150, "SDC2_CMD"),
  170. PINCTRL_PIN(151, "SDC2_DATA"),
  171. };
  172. #define DECLARE_MSM_GPIO_PINS(pin) static const unsigned int gpio##pin##_pins[] = { pin }
  173. DECLARE_MSM_GPIO_PINS(0);
  174. DECLARE_MSM_GPIO_PINS(1);
  175. DECLARE_MSM_GPIO_PINS(2);
  176. DECLARE_MSM_GPIO_PINS(3);
  177. DECLARE_MSM_GPIO_PINS(4);
  178. DECLARE_MSM_GPIO_PINS(5);
  179. DECLARE_MSM_GPIO_PINS(6);
  180. DECLARE_MSM_GPIO_PINS(7);
  181. DECLARE_MSM_GPIO_PINS(8);
  182. DECLARE_MSM_GPIO_PINS(9);
  183. DECLARE_MSM_GPIO_PINS(10);
  184. DECLARE_MSM_GPIO_PINS(11);
  185. DECLARE_MSM_GPIO_PINS(12);
  186. DECLARE_MSM_GPIO_PINS(13);
  187. DECLARE_MSM_GPIO_PINS(14);
  188. DECLARE_MSM_GPIO_PINS(15);
  189. DECLARE_MSM_GPIO_PINS(16);
  190. DECLARE_MSM_GPIO_PINS(17);
  191. DECLARE_MSM_GPIO_PINS(18);
  192. DECLARE_MSM_GPIO_PINS(19);
  193. DECLARE_MSM_GPIO_PINS(20);
  194. DECLARE_MSM_GPIO_PINS(21);
  195. DECLARE_MSM_GPIO_PINS(22);
  196. DECLARE_MSM_GPIO_PINS(23);
  197. DECLARE_MSM_GPIO_PINS(24);
  198. DECLARE_MSM_GPIO_PINS(25);
  199. DECLARE_MSM_GPIO_PINS(26);
  200. DECLARE_MSM_GPIO_PINS(27);
  201. DECLARE_MSM_GPIO_PINS(28);
  202. DECLARE_MSM_GPIO_PINS(29);
  203. DECLARE_MSM_GPIO_PINS(30);
  204. DECLARE_MSM_GPIO_PINS(31);
  205. DECLARE_MSM_GPIO_PINS(32);
  206. DECLARE_MSM_GPIO_PINS(33);
  207. DECLARE_MSM_GPIO_PINS(34);
  208. DECLARE_MSM_GPIO_PINS(35);
  209. DECLARE_MSM_GPIO_PINS(36);
  210. DECLARE_MSM_GPIO_PINS(37);
  211. DECLARE_MSM_GPIO_PINS(38);
  212. DECLARE_MSM_GPIO_PINS(39);
  213. DECLARE_MSM_GPIO_PINS(40);
  214. DECLARE_MSM_GPIO_PINS(41);
  215. DECLARE_MSM_GPIO_PINS(42);
  216. DECLARE_MSM_GPIO_PINS(43);
  217. DECLARE_MSM_GPIO_PINS(44);
  218. DECLARE_MSM_GPIO_PINS(45);
  219. DECLARE_MSM_GPIO_PINS(46);
  220. DECLARE_MSM_GPIO_PINS(47);
  221. DECLARE_MSM_GPIO_PINS(48);
  222. DECLARE_MSM_GPIO_PINS(49);
  223. DECLARE_MSM_GPIO_PINS(50);
  224. DECLARE_MSM_GPIO_PINS(51);
  225. DECLARE_MSM_GPIO_PINS(52);
  226. DECLARE_MSM_GPIO_PINS(53);
  227. DECLARE_MSM_GPIO_PINS(54);
  228. DECLARE_MSM_GPIO_PINS(55);
  229. DECLARE_MSM_GPIO_PINS(56);
  230. DECLARE_MSM_GPIO_PINS(57);
  231. DECLARE_MSM_GPIO_PINS(58);
  232. DECLARE_MSM_GPIO_PINS(59);
  233. DECLARE_MSM_GPIO_PINS(60);
  234. DECLARE_MSM_GPIO_PINS(61);
  235. DECLARE_MSM_GPIO_PINS(62);
  236. DECLARE_MSM_GPIO_PINS(63);
  237. DECLARE_MSM_GPIO_PINS(64);
  238. DECLARE_MSM_GPIO_PINS(65);
  239. DECLARE_MSM_GPIO_PINS(66);
  240. DECLARE_MSM_GPIO_PINS(67);
  241. DECLARE_MSM_GPIO_PINS(68);
  242. DECLARE_MSM_GPIO_PINS(69);
  243. DECLARE_MSM_GPIO_PINS(70);
  244. DECLARE_MSM_GPIO_PINS(71);
  245. DECLARE_MSM_GPIO_PINS(72);
  246. DECLARE_MSM_GPIO_PINS(73);
  247. DECLARE_MSM_GPIO_PINS(74);
  248. DECLARE_MSM_GPIO_PINS(75);
  249. DECLARE_MSM_GPIO_PINS(76);
  250. DECLARE_MSM_GPIO_PINS(77);
  251. DECLARE_MSM_GPIO_PINS(78);
  252. DECLARE_MSM_GPIO_PINS(79);
  253. DECLARE_MSM_GPIO_PINS(80);
  254. DECLARE_MSM_GPIO_PINS(81);
  255. DECLARE_MSM_GPIO_PINS(82);
  256. DECLARE_MSM_GPIO_PINS(83);
  257. DECLARE_MSM_GPIO_PINS(84);
  258. DECLARE_MSM_GPIO_PINS(85);
  259. DECLARE_MSM_GPIO_PINS(86);
  260. DECLARE_MSM_GPIO_PINS(87);
  261. DECLARE_MSM_GPIO_PINS(88);
  262. DECLARE_MSM_GPIO_PINS(89);
  263. DECLARE_MSM_GPIO_PINS(90);
  264. DECLARE_MSM_GPIO_PINS(91);
  265. DECLARE_MSM_GPIO_PINS(92);
  266. DECLARE_MSM_GPIO_PINS(93);
  267. DECLARE_MSM_GPIO_PINS(94);
  268. DECLARE_MSM_GPIO_PINS(95);
  269. DECLARE_MSM_GPIO_PINS(96);
  270. DECLARE_MSM_GPIO_PINS(97);
  271. DECLARE_MSM_GPIO_PINS(98);
  272. DECLARE_MSM_GPIO_PINS(99);
  273. DECLARE_MSM_GPIO_PINS(100);
  274. DECLARE_MSM_GPIO_PINS(101);
  275. DECLARE_MSM_GPIO_PINS(102);
  276. DECLARE_MSM_GPIO_PINS(103);
  277. DECLARE_MSM_GPIO_PINS(104);
  278. DECLARE_MSM_GPIO_PINS(105);
  279. DECLARE_MSM_GPIO_PINS(106);
  280. DECLARE_MSM_GPIO_PINS(107);
  281. DECLARE_MSM_GPIO_PINS(108);
  282. DECLARE_MSM_GPIO_PINS(109);
  283. DECLARE_MSM_GPIO_PINS(110);
  284. DECLARE_MSM_GPIO_PINS(111);
  285. DECLARE_MSM_GPIO_PINS(112);
  286. DECLARE_MSM_GPIO_PINS(113);
  287. DECLARE_MSM_GPIO_PINS(114);
  288. DECLARE_MSM_GPIO_PINS(115);
  289. DECLARE_MSM_GPIO_PINS(116);
  290. DECLARE_MSM_GPIO_PINS(117);
  291. DECLARE_MSM_GPIO_PINS(118);
  292. DECLARE_MSM_GPIO_PINS(119);
  293. DECLARE_MSM_GPIO_PINS(120);
  294. DECLARE_MSM_GPIO_PINS(121);
  295. DECLARE_MSM_GPIO_PINS(122);
  296. DECLARE_MSM_GPIO_PINS(123);
  297. DECLARE_MSM_GPIO_PINS(124);
  298. DECLARE_MSM_GPIO_PINS(125);
  299. DECLARE_MSM_GPIO_PINS(126);
  300. DECLARE_MSM_GPIO_PINS(127);
  301. DECLARE_MSM_GPIO_PINS(128);
  302. DECLARE_MSM_GPIO_PINS(129);
  303. DECLARE_MSM_GPIO_PINS(130);
  304. DECLARE_MSM_GPIO_PINS(131);
  305. DECLARE_MSM_GPIO_PINS(132);
  306. DECLARE_MSM_GPIO_PINS(133);
  307. DECLARE_MSM_GPIO_PINS(134);
  308. DECLARE_MSM_GPIO_PINS(135);
  309. DECLARE_MSM_GPIO_PINS(136);
  310. DECLARE_MSM_GPIO_PINS(137);
  311. DECLARE_MSM_GPIO_PINS(138);
  312. DECLARE_MSM_GPIO_PINS(139);
  313. DECLARE_MSM_GPIO_PINS(140);
  314. DECLARE_MSM_GPIO_PINS(141);
  315. DECLARE_MSM_GPIO_PINS(142);
  316. DECLARE_MSM_GPIO_PINS(143);
  317. DECLARE_MSM_GPIO_PINS(144);
  318. DECLARE_MSM_GPIO_PINS(145);
  319. static const unsigned int sdc1_clk_pins[] = { 146 };
  320. static const unsigned int sdc1_cmd_pins[] = { 147 };
  321. static const unsigned int sdc1_data_pins[] = { 148 };
  322. static const unsigned int sdc2_clk_pins[] = { 149 };
  323. static const unsigned int sdc2_cmd_pins[] = { 150 };
  324. static const unsigned int sdc2_data_pins[] = { 151 };
  325. #define FUNCTION(fname) \
  326. [MSM_MUX_##fname] = { \
  327. .name = #fname, \
  328. .groups = fname##_groups, \
  329. .ngroups = ARRAY_SIZE(fname##_groups), \
  330. }
  331. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7) \
  332. { \
  333. .name = "gpio" #id, \
  334. .pins = gpio##id##_pins, \
  335. .npins = ARRAY_SIZE(gpio##id##_pins), \
  336. .funcs = (int[]){ \
  337. MSM_MUX_gpio, \
  338. MSM_MUX_##f1, \
  339. MSM_MUX_##f2, \
  340. MSM_MUX_##f3, \
  341. MSM_MUX_##f4, \
  342. MSM_MUX_##f5, \
  343. MSM_MUX_##f6, \
  344. MSM_MUX_##f7 \
  345. }, \
  346. .nfuncs = 8, \
  347. .ctl_reg = 0x1000 + 0x10 * id, \
  348. .io_reg = 0x1004 + 0x10 * id, \
  349. .intr_cfg_reg = 0x1008 + 0x10 * id, \
  350. .intr_status_reg = 0x100c + 0x10 * id, \
  351. .intr_target_reg = 0x1008 + 0x10 * id, \
  352. .mux_bit = 2, \
  353. .pull_bit = 0, \
  354. .drv_bit = 6, \
  355. .oe_bit = 9, \
  356. .in_bit = 0, \
  357. .out_bit = 1, \
  358. .intr_enable_bit = 0, \
  359. .intr_status_bit = 0, \
  360. .intr_target_bit = 5, \
  361. .intr_target_kpss_val = 4, \
  362. .intr_raw_status_bit = 4, \
  363. .intr_polarity_bit = 1, \
  364. .intr_detection_bit = 2, \
  365. .intr_detection_width = 2, \
  366. }
  367. #define SDC_PINGROUP(pg_name, ctl, pull, drv) \
  368. { \
  369. .name = #pg_name, \
  370. .pins = pg_name##_pins, \
  371. .npins = ARRAY_SIZE(pg_name##_pins), \
  372. .ctl_reg = ctl, \
  373. .io_reg = 0, \
  374. .intr_cfg_reg = 0, \
  375. .intr_status_reg = 0, \
  376. .intr_target_reg = 0, \
  377. .mux_bit = -1, \
  378. .pull_bit = pull, \
  379. .drv_bit = drv, \
  380. .oe_bit = -1, \
  381. .in_bit = -1, \
  382. .out_bit = -1, \
  383. .intr_enable_bit = -1, \
  384. .intr_status_bit = -1, \
  385. .intr_target_bit = -1, \
  386. .intr_target_kpss_val = -1, \
  387. .intr_raw_status_bit = -1, \
  388. .intr_polarity_bit = -1, \
  389. .intr_detection_bit = -1, \
  390. .intr_detection_width = -1, \
  391. }
  392. /*
  393. * TODO: Add the rest of the possible functions and fill out
  394. * the pingroup table below.
  395. */
  396. enum msm8x74_functions {
  397. MSM_MUX_gpio,
  398. MSM_MUX_cci_i2c0,
  399. MSM_MUX_cci_i2c1,
  400. MSM_MUX_blsp_i2c1,
  401. MSM_MUX_blsp_i2c2,
  402. MSM_MUX_blsp_i2c3,
  403. MSM_MUX_blsp_i2c4,
  404. MSM_MUX_blsp_i2c5,
  405. MSM_MUX_blsp_i2c6,
  406. MSM_MUX_blsp_i2c7,
  407. MSM_MUX_blsp_i2c8,
  408. MSM_MUX_blsp_i2c9,
  409. MSM_MUX_blsp_i2c10,
  410. MSM_MUX_blsp_i2c11,
  411. MSM_MUX_blsp_i2c12,
  412. MSM_MUX_blsp_spi1,
  413. MSM_MUX_blsp_spi1_cs1,
  414. MSM_MUX_blsp_spi1_cs2,
  415. MSM_MUX_blsp_spi1_cs3,
  416. MSM_MUX_blsp_spi2,
  417. MSM_MUX_blsp_spi2_cs1,
  418. MSM_MUX_blsp_spi2_cs2,
  419. MSM_MUX_blsp_spi2_cs3,
  420. MSM_MUX_blsp_spi3,
  421. MSM_MUX_blsp_spi4,
  422. MSM_MUX_blsp_spi5,
  423. MSM_MUX_blsp_spi6,
  424. MSM_MUX_blsp_spi7,
  425. MSM_MUX_blsp_spi8,
  426. MSM_MUX_blsp_spi9,
  427. MSM_MUX_blsp_spi10,
  428. MSM_MUX_blsp_spi10_cs1,
  429. MSM_MUX_blsp_spi10_cs2,
  430. MSM_MUX_blsp_spi10_cs3,
  431. MSM_MUX_blsp_spi11,
  432. MSM_MUX_blsp_spi12,
  433. MSM_MUX_blsp_uart1,
  434. MSM_MUX_blsp_uart2,
  435. MSM_MUX_blsp_uart3,
  436. MSM_MUX_blsp_uart4,
  437. MSM_MUX_blsp_uart5,
  438. MSM_MUX_blsp_uart6,
  439. MSM_MUX_blsp_uart7,
  440. MSM_MUX_blsp_uart8,
  441. MSM_MUX_blsp_uart9,
  442. MSM_MUX_blsp_uart10,
  443. MSM_MUX_blsp_uart11,
  444. MSM_MUX_blsp_uart12,
  445. MSM_MUX_blsp_uim1,
  446. MSM_MUX_blsp_uim2,
  447. MSM_MUX_blsp_uim3,
  448. MSM_MUX_blsp_uim4,
  449. MSM_MUX_blsp_uim5,
  450. MSM_MUX_blsp_uim6,
  451. MSM_MUX_blsp_uim7,
  452. MSM_MUX_blsp_uim8,
  453. MSM_MUX_blsp_uim9,
  454. MSM_MUX_blsp_uim10,
  455. MSM_MUX_blsp_uim11,
  456. MSM_MUX_blsp_uim12,
  457. MSM_MUX_uim1,
  458. MSM_MUX_uim2,
  459. MSM_MUX_uim_batt_alarm,
  460. MSM_MUX_sdc3,
  461. MSM_MUX_sdc4,
  462. MSM_MUX_gcc_gp_clk1,
  463. MSM_MUX_gcc_gp_clk2,
  464. MSM_MUX_gcc_gp_clk3,
  465. MSM_MUX_qua_mi2s,
  466. MSM_MUX_pri_mi2s,
  467. MSM_MUX_spkr_mi2s,
  468. MSM_MUX_ter_mi2s,
  469. MSM_MUX_sec_mi2s,
  470. MSM_MUX_hdmi_cec,
  471. MSM_MUX_hdmi_ddc,
  472. MSM_MUX_hdmi_hpd,
  473. MSM_MUX_edp_hpd,
  474. MSM_MUX_mdp_vsync,
  475. MSM_MUX_cam_mclk0,
  476. MSM_MUX_cam_mclk1,
  477. MSM_MUX_cam_mclk2,
  478. MSM_MUX_cam_mclk3,
  479. MSM_MUX_cci_timer0,
  480. MSM_MUX_cci_timer1,
  481. MSM_MUX_cci_timer2,
  482. MSM_MUX_cci_timer3,
  483. MSM_MUX_cci_timer4,
  484. MSM_MUX_cci_async_in0,
  485. MSM_MUX_cci_async_in1,
  486. MSM_MUX_cci_async_in2,
  487. MSM_MUX_gp_pdm0,
  488. MSM_MUX_gp_pdm1,
  489. MSM_MUX_gp_pdm2,
  490. MSM_MUX_gp0_clk,
  491. MSM_MUX_gp1_clk,
  492. MSM_MUX_gp_mn,
  493. MSM_MUX_tsif1,
  494. MSM_MUX_tsif2,
  495. MSM_MUX_hsic,
  496. MSM_MUX_grfc,
  497. MSM_MUX_audio_ref_clk,
  498. MSM_MUX_bt,
  499. MSM_MUX_fm,
  500. MSM_MUX_wlan,
  501. MSM_MUX_slimbus,
  502. MSM_MUX_NA,
  503. };
  504. static const char * const gpio_groups[] = {
  505. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  506. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  507. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  508. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  509. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  510. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  511. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  512. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  513. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  514. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  515. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  516. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
  517. "gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
  518. "gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
  519. "gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
  520. "gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
  521. "gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
  522. "gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
  523. "gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128",
  524. "gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134",
  525. "gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140",
  526. "gpio141", "gpio142", "gpio143", "gpio144", "gpio145"
  527. };
  528. static const char * const blsp_uart1_groups[] = {
  529. "gpio0", "gpio1", "gpio2", "gpio3"
  530. };
  531. static const char * const blsp_uim1_groups[] = { "gpio0", "gpio1" };
  532. static const char * const blsp_i2c1_groups[] = { "gpio2", "gpio3" };
  533. static const char * const blsp_spi1_groups[] = {
  534. "gpio0", "gpio1", "gpio2", "gpio3"
  535. };
  536. static const char * const blsp_spi1_cs1_groups[] = { "gpio8" };
  537. static const char * const blsp_spi1_cs2_groups[] = { "gpio9", "gpio11" };
  538. static const char * const blsp_spi1_cs3_groups[] = { "gpio10" };
  539. static const char * const blsp_uart2_groups[] = {
  540. "gpio4", "gpio5", "gpio6", "gpio7"
  541. };
  542. static const char * const blsp_uim2_groups[] = { "gpio4", "gpio5" };
  543. static const char * const blsp_i2c2_groups[] = { "gpio6", "gpio7" };
  544. static const char * const blsp_spi2_groups[] = {
  545. "gpio4", "gpio5", "gpio6", "gpio7"
  546. };
  547. static const char * const blsp_spi2_cs1_groups[] = { "gpio53", "gpio62" };
  548. static const char * const blsp_spi2_cs2_groups[] = { "gpio54", "gpio63" };
  549. static const char * const blsp_spi2_cs3_groups[] = { "gpio66" };
  550. static const char * const blsp_uart3_groups[] = {
  551. "gpio8", "gpio9", "gpio10", "gpio11"
  552. };
  553. static const char * const blsp_uim3_groups[] = { "gpio8", "gpio9" };
  554. static const char * const blsp_i2c3_groups[] = { "gpio10", "gpio11" };
  555. static const char * const blsp_spi3_groups[] = {
  556. "gpio8", "gpio9", "gpio10", "gpio11"
  557. };
  558. static const char * const cci_i2c0_groups[] = { "gpio19", "gpio20" };
  559. static const char * const cci_i2c1_groups[] = { "gpio21", "gpio22" };
  560. static const char * const blsp_uart4_groups[] = {
  561. "gpio19", "gpio20", "gpio21", "gpio22"
  562. };
  563. static const char * const blsp_uim4_groups[] = { "gpio19", "gpio20" };
  564. static const char * const blsp_i2c4_groups[] = { "gpio21", "gpio22" };
  565. static const char * const blsp_spi4_groups[] = {
  566. "gpio19", "gpio20", "gpio21", "gpio22"
  567. };
  568. static const char * const blsp_uart5_groups[] = {
  569. "gpio23", "gpio24", "gpio25", "gpio26"
  570. };
  571. static const char * const blsp_uim5_groups[] = { "gpio23", "gpio24" };
  572. static const char * const blsp_i2c5_groups[] = { "gpio25", "gpio26" };
  573. static const char * const blsp_spi5_groups[] = {
  574. "gpio23", "gpio24", "gpio25", "gpio26"
  575. };
  576. static const char * const blsp_uart6_groups[] = {
  577. "gpio27", "gpio28", "gpio29", "gpio30"
  578. };
  579. static const char * const blsp_uim6_groups[] = { "gpio27", "gpio28" };
  580. static const char * const blsp_i2c6_groups[] = { "gpio29", "gpio30" };
  581. static const char * const blsp_spi6_groups[] = {
  582. "gpio27", "gpio28", "gpio29", "gpio30"
  583. };
  584. static const char * const blsp_uart7_groups[] = {
  585. "gpio41", "gpio42", "gpio43", "gpio44"
  586. };
  587. static const char * const blsp_uim7_groups[] = { "gpio41", "gpio42" };
  588. static const char * const blsp_i2c7_groups[] = { "gpio43", "gpio44" };
  589. static const char * const blsp_spi7_groups[] = {
  590. "gpio41", "gpio42", "gpio43", "gpio44"
  591. };
  592. static const char * const blsp_uart8_groups[] = {
  593. "gpio45", "gpio46", "gpio47", "gpio48"
  594. };
  595. static const char * const blsp_uim8_groups[] = { "gpio45", "gpio46" };
  596. static const char * const blsp_i2c8_groups[] = { "gpio47", "gpio48" };
  597. static const char * const blsp_spi8_groups[] = {
  598. "gpio45", "gpio46", "gpio47", "gpio48"
  599. };
  600. static const char * const blsp_uart9_groups[] = {
  601. "gpio49", "gpio50", "gpio51", "gpio52"
  602. };
  603. static const char * const blsp_uim9_groups[] = { "gpio49", "gpio50" };
  604. static const char * const blsp_i2c9_groups[] = { "gpio51", "gpio52" };
  605. static const char * const blsp_spi9_groups[] = {
  606. "gpio49", "gpio50", "gpio51", "gpio52"
  607. };
  608. static const char * const blsp_uart10_groups[] = {
  609. "gpio53", "gpio54", "gpio55", "gpio56"
  610. };
  611. static const char * const blsp_uim10_groups[] = { "gpio53", "gpio54" };
  612. static const char * const blsp_i2c10_groups[] = { "gpio55", "gpio56" };
  613. static const char * const blsp_spi10_groups[] = {
  614. "gpio53", "gpio54", "gpio55", "gpio56"
  615. };
  616. static const char * const blsp_spi10_cs1_groups[] = { "gpio47", "gpio67" };
  617. static const char * const blsp_spi10_cs2_groups[] = { "gpio48", "gpio68" };
  618. static const char * const blsp_spi10_cs3_groups[] = { "gpio90" };
  619. static const char * const blsp_uart11_groups[] = {
  620. "gpio81", "gpio82", "gpio83", "gpio84"
  621. };
  622. static const char * const blsp_uim11_groups[] = { "gpio81", "gpio82" };
  623. static const char * const blsp_i2c11_groups[] = { "gpio83", "gpio84" };
  624. static const char * const blsp_spi11_groups[] = {
  625. "gpio81", "gpio82", "gpio83", "gpio84"
  626. };
  627. static const char * const blsp_uart12_groups[] = {
  628. "gpio85", "gpio86", "gpio87", "gpio88"
  629. };
  630. static const char * const blsp_uim12_groups[] = { "gpio85", "gpio86" };
  631. static const char * const blsp_i2c12_groups[] = { "gpio87", "gpio88" };
  632. static const char * const blsp_spi12_groups[] = {
  633. "gpio85", "gpio86", "gpio87", "gpio88"
  634. };
  635. static const char * const uim1_groups[] = {
  636. "gpio97", "gpio98", "gpio99", "gpio100"
  637. };
  638. static const char * const uim2_groups[] = {
  639. "gpio49", "gpio50", "gpio51", "gpio52"
  640. };
  641. static const char * const uim_batt_alarm_groups[] = { "gpio101" };
  642. static const char * const sdc3_groups[] = {
  643. "gpio35", "gpio36", "gpio37", "gpio38", "gpio39", "gpio40"
  644. };
  645. static const char * const sdc4_groups[] = {
  646. "gpio91", "gpio92", "gpio93", "gpio94", "gpio95", "gpio96"
  647. };
  648. static const char * const gp0_clk_groups[] = { "gpio26" };
  649. static const char * const gp1_clk_groups[] = { "gpio27", "gpio57", "gpio78" };
  650. static const char * const gp_mn_groups[] = { "gpio29" };
  651. static const char * const gcc_gp_clk1_groups[] = { "gpio57", "gpio78" };
  652. static const char * const gcc_gp_clk2_groups[] = { "gpio58", "gpio81" };
  653. static const char * const gcc_gp_clk3_groups[] = { "gpio59", "gpio82" };
  654. static const char * const qua_mi2s_groups[] = {
  655. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  656. };
  657. static const char * const pri_mi2s_groups[] = {
  658. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68"
  659. };
  660. static const char * const spkr_mi2s_groups[] = {
  661. "gpio69", "gpio70", "gpio71", "gpio72"
  662. };
  663. static const char * const ter_mi2s_groups[] = {
  664. "gpio73", "gpio74", "gpio75", "gpio76", "gpio77"
  665. };
  666. static const char * const sec_mi2s_groups[] = {
  667. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82"
  668. };
  669. static const char * const hdmi_cec_groups[] = { "gpio31" };
  670. static const char * const hdmi_ddc_groups[] = { "gpio32", "gpio33" };
  671. static const char * const hdmi_hpd_groups[] = { "gpio34" };
  672. static const char * const edp_hpd_groups[] = { "gpio102" };
  673. static const char * const mdp_vsync_groups[] = { "gpio12", "gpio13", "gpio14" };
  674. static const char * const cam_mclk0_groups[] = { "gpio15" };
  675. static const char * const cam_mclk1_groups[] = { "gpio16" };
  676. static const char * const cam_mclk2_groups[] = { "gpio17" };
  677. static const char * const cam_mclk3_groups[] = { "gpio18" };
  678. static const char * const cci_timer0_groups[] = { "gpio23" };
  679. static const char * const cci_timer1_groups[] = { "gpio24" };
  680. static const char * const cci_timer2_groups[] = { "gpio25" };
  681. static const char * const cci_timer3_groups[] = { "gpio26" };
  682. static const char * const cci_timer4_groups[] = { "gpio27" };
  683. static const char * const cci_async_in0_groups[] = { "gpio28" };
  684. static const char * const cci_async_in1_groups[] = { "gpio26" };
  685. static const char * const cci_async_in2_groups[] = { "gpio27" };
  686. static const char * const gp_pdm0_groups[] = { "gpio54", "gpio68" };
  687. static const char * const gp_pdm1_groups[] = { "gpio74", "gpio86" };
  688. static const char * const gp_pdm2_groups[] = { "gpio63", "gpio79" };
  689. static const char * const tsif1_groups[] = {
  690. "gpio89", "gpio90", "gpio91", "gpio92"
  691. };
  692. static const char * const tsif2_groups[] = {
  693. "gpio93", "gpio94", "gpio95", "gpio96"
  694. };
  695. static const char * const hsic_groups[] = { "gpio144", "gpio145" };
  696. static const char * const grfc_groups[] = {
  697. "gpio104", "gpio105", "gpio106", "gpio107", "gpio108", "gpio109",
  698. "gpio110", "gpio111", "gpio112", "gpio113", "gpio114", "gpio115",
  699. "gpio116", "gpio117", "gpio118", "gpio119", "gpio120", "gpio121",
  700. "gpio122", "gpio123", "gpio124", "gpio125", "gpio126", "gpio127",
  701. "gpio128", "gpio136", "gpio137", "gpio141", "gpio143"
  702. };
  703. static const char * const audio_ref_clk_groups[] = { "gpio69" };
  704. static const char * const bt_groups[] = { "gpio35", "gpio43", "gpio44" };
  705. static const char * const fm_groups[] = { "gpio41", "gpio42" };
  706. static const char * const wlan_groups[] = {
  707. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40"
  708. };
  709. static const char * const slimbus_groups[] = { "gpio70", "gpio71" };
  710. static const struct msm_function msm8x74_functions[] = {
  711. FUNCTION(gpio),
  712. FUNCTION(cci_i2c0),
  713. FUNCTION(cci_i2c1),
  714. FUNCTION(uim1),
  715. FUNCTION(uim2),
  716. FUNCTION(uim_batt_alarm),
  717. FUNCTION(blsp_uim1),
  718. FUNCTION(blsp_uim2),
  719. FUNCTION(blsp_uim3),
  720. FUNCTION(blsp_uim4),
  721. FUNCTION(blsp_uim5),
  722. FUNCTION(blsp_uim6),
  723. FUNCTION(blsp_uim7),
  724. FUNCTION(blsp_uim8),
  725. FUNCTION(blsp_uim9),
  726. FUNCTION(blsp_uim10),
  727. FUNCTION(blsp_uim11),
  728. FUNCTION(blsp_uim12),
  729. FUNCTION(blsp_i2c1),
  730. FUNCTION(blsp_i2c2),
  731. FUNCTION(blsp_i2c3),
  732. FUNCTION(blsp_i2c4),
  733. FUNCTION(blsp_i2c5),
  734. FUNCTION(blsp_i2c6),
  735. FUNCTION(blsp_i2c7),
  736. FUNCTION(blsp_i2c8),
  737. FUNCTION(blsp_i2c9),
  738. FUNCTION(blsp_i2c10),
  739. FUNCTION(blsp_i2c11),
  740. FUNCTION(blsp_i2c12),
  741. FUNCTION(blsp_spi1),
  742. FUNCTION(blsp_spi1_cs1),
  743. FUNCTION(blsp_spi1_cs2),
  744. FUNCTION(blsp_spi1_cs3),
  745. FUNCTION(blsp_spi2),
  746. FUNCTION(blsp_spi2_cs1),
  747. FUNCTION(blsp_spi2_cs2),
  748. FUNCTION(blsp_spi2_cs3),
  749. FUNCTION(blsp_spi3),
  750. FUNCTION(blsp_spi4),
  751. FUNCTION(blsp_spi5),
  752. FUNCTION(blsp_spi6),
  753. FUNCTION(blsp_spi7),
  754. FUNCTION(blsp_spi8),
  755. FUNCTION(blsp_spi9),
  756. FUNCTION(blsp_spi10),
  757. FUNCTION(blsp_spi10_cs1),
  758. FUNCTION(blsp_spi10_cs2),
  759. FUNCTION(blsp_spi10_cs3),
  760. FUNCTION(blsp_spi11),
  761. FUNCTION(blsp_spi12),
  762. FUNCTION(blsp_uart1),
  763. FUNCTION(blsp_uart2),
  764. FUNCTION(blsp_uart3),
  765. FUNCTION(blsp_uart4),
  766. FUNCTION(blsp_uart5),
  767. FUNCTION(blsp_uart6),
  768. FUNCTION(blsp_uart7),
  769. FUNCTION(blsp_uart8),
  770. FUNCTION(blsp_uart9),
  771. FUNCTION(blsp_uart10),
  772. FUNCTION(blsp_uart11),
  773. FUNCTION(blsp_uart12),
  774. FUNCTION(sdc3),
  775. FUNCTION(sdc4),
  776. FUNCTION(gcc_gp_clk1),
  777. FUNCTION(gcc_gp_clk2),
  778. FUNCTION(gcc_gp_clk3),
  779. FUNCTION(qua_mi2s),
  780. FUNCTION(pri_mi2s),
  781. FUNCTION(spkr_mi2s),
  782. FUNCTION(ter_mi2s),
  783. FUNCTION(sec_mi2s),
  784. FUNCTION(mdp_vsync),
  785. FUNCTION(cam_mclk0),
  786. FUNCTION(cam_mclk1),
  787. FUNCTION(cam_mclk2),
  788. FUNCTION(cam_mclk3),
  789. FUNCTION(cci_timer0),
  790. FUNCTION(cci_timer1),
  791. FUNCTION(cci_timer2),
  792. FUNCTION(cci_timer3),
  793. FUNCTION(cci_timer4),
  794. FUNCTION(cci_async_in0),
  795. FUNCTION(cci_async_in1),
  796. FUNCTION(cci_async_in2),
  797. FUNCTION(hdmi_cec),
  798. FUNCTION(hdmi_ddc),
  799. FUNCTION(hdmi_hpd),
  800. FUNCTION(edp_hpd),
  801. FUNCTION(gp_pdm0),
  802. FUNCTION(gp_pdm1),
  803. FUNCTION(gp_pdm2),
  804. FUNCTION(gp0_clk),
  805. FUNCTION(gp1_clk),
  806. FUNCTION(gp_mn),
  807. FUNCTION(tsif1),
  808. FUNCTION(tsif2),
  809. FUNCTION(hsic),
  810. FUNCTION(grfc),
  811. FUNCTION(audio_ref_clk),
  812. FUNCTION(bt),
  813. FUNCTION(fm),
  814. FUNCTION(wlan),
  815. FUNCTION(slimbus),
  816. };
  817. static const struct msm_pingroup msm8x74_groups[] = {
  818. PINGROUP(0, blsp_spi1, blsp_uart1, blsp_uim1, NA, NA, NA, NA),
  819. PINGROUP(1, blsp_spi1, blsp_uart1, blsp_uim1, NA, NA, NA, NA),
  820. PINGROUP(2, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA),
  821. PINGROUP(3, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA),
  822. PINGROUP(4, blsp_spi2, blsp_uart2, blsp_uim2, NA, NA, NA, NA),
  823. PINGROUP(5, blsp_spi2, blsp_uart2, blsp_uim2, NA, NA, NA, NA),
  824. PINGROUP(6, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA),
  825. PINGROUP(7, blsp_spi2, blsp_uart2, blsp_i2c2, NA, NA, NA, NA),
  826. PINGROUP(8, blsp_spi3, blsp_uart3, blsp_uim3, blsp_spi1_cs1, NA, NA, NA),
  827. PINGROUP(9, blsp_spi3, blsp_uart3, blsp_uim3, blsp_spi1_cs2, NA, NA, NA),
  828. PINGROUP(10, blsp_spi3, blsp_uart3, blsp_i2c3, blsp_spi1_cs3, NA, NA, NA),
  829. PINGROUP(11, blsp_spi3, blsp_uart3, blsp_i2c3, blsp_spi1_cs2, NA, NA, NA),
  830. PINGROUP(12, mdp_vsync, NA, NA, NA, NA, NA, NA),
  831. PINGROUP(13, mdp_vsync, NA, NA, NA, NA, NA, NA),
  832. PINGROUP(14, mdp_vsync, NA, NA, NA, NA, NA, NA),
  833. PINGROUP(15, cam_mclk0, NA, NA, NA, NA, NA, NA),
  834. PINGROUP(16, cam_mclk1, NA, NA, NA, NA, NA, NA),
  835. PINGROUP(17, cam_mclk2, NA, NA, NA, NA, NA, NA),
  836. PINGROUP(18, cam_mclk3, NA, NA, NA, NA, NA, NA),
  837. PINGROUP(19, cci_i2c0, blsp_spi4, blsp_uart4, blsp_uim4, NA, NA, NA),
  838. PINGROUP(20, cci_i2c0, blsp_spi4, blsp_uart4, blsp_uim4, NA, NA, NA),
  839. PINGROUP(21, cci_i2c1, blsp_spi4, blsp_uart4, blsp_i2c4, NA, NA, NA),
  840. PINGROUP(22, cci_i2c1, blsp_spi4, blsp_uart4, blsp_i2c4, NA, NA, NA),
  841. PINGROUP(23, cci_timer0, blsp_spi5, blsp_uart5, blsp_uim5, NA, NA, NA),
  842. PINGROUP(24, cci_timer1, blsp_spi5, blsp_uart5, blsp_uim5, NA, NA, NA),
  843. PINGROUP(25, cci_timer2, blsp_spi5, blsp_uart5, blsp_i2c5, NA, NA, NA),
  844. PINGROUP(26, cci_timer3, cci_async_in1, blsp_spi5, blsp_uart5, blsp_i2c5, gp0_clk, NA),
  845. PINGROUP(27, cci_timer4, cci_async_in2, blsp_spi6, blsp_uart6, blsp_i2c6, gp1_clk, NA),
  846. PINGROUP(28, cci_async_in0, blsp_spi6, blsp_uart6, blsp_uim6, NA, NA, NA),
  847. PINGROUP(29, blsp_spi6, blsp_uart6, blsp_i2c6, gp_mn, NA, NA, NA),
  848. PINGROUP(30, blsp_spi6, blsp_uart6, blsp_i2c6, NA, NA, NA, NA),
  849. PINGROUP(31, hdmi_cec, NA, NA, NA, NA, NA, NA),
  850. PINGROUP(32, hdmi_ddc, NA, NA, NA, NA, NA, NA),
  851. PINGROUP(33, hdmi_ddc, NA, NA, NA, NA, NA, NA),
  852. PINGROUP(34, hdmi_hpd, NA, NA, NA, NA, NA, NA),
  853. PINGROUP(35, bt, sdc3, NA, NA, NA, NA, NA),
  854. PINGROUP(36, wlan, sdc3, NA, NA, NA, NA, NA),
  855. PINGROUP(37, wlan, sdc3, NA, NA, NA, NA, NA),
  856. PINGROUP(38, wlan, sdc3, NA, NA, NA, NA, NA),
  857. PINGROUP(39, wlan, sdc3, NA, NA, NA, NA, NA),
  858. PINGROUP(40, wlan, sdc3, NA, NA, NA, NA, NA),
  859. PINGROUP(41, fm, blsp_spi7, blsp_uart7, blsp_uim7, NA, NA, NA),
  860. PINGROUP(42, fm, blsp_spi7, blsp_uart7, blsp_uim7, NA, NA, NA),
  861. PINGROUP(43, bt, blsp_spi7, blsp_uart7, blsp_i2c7, NA, NA, NA),
  862. PINGROUP(44, bt, blsp_spi7, blsp_uart7, blsp_i2c7, NA, NA, NA),
  863. PINGROUP(45, blsp_spi8, blsp_uart8, blsp_uim8, NA, NA, NA, NA),
  864. PINGROUP(46, blsp_spi8, blsp_uart8, blsp_uim8, NA, NA, NA, NA),
  865. PINGROUP(47, blsp_spi8, blsp_uart8, blsp_i2c8, blsp_spi10_cs1, NA, NA, NA),
  866. PINGROUP(48, blsp_spi8, blsp_uart8, blsp_i2c8, blsp_spi10_cs2, NA, NA, NA),
  867. PINGROUP(49, uim2, blsp_spi9, blsp_uart9, blsp_uim9, NA, NA, NA),
  868. PINGROUP(50, uim2, blsp_spi9, blsp_uart9, blsp_uim9, NA, NA, NA),
  869. PINGROUP(51, uim2, blsp_spi9, blsp_uart9, blsp_i2c9, NA, NA, NA),
  870. PINGROUP(52, uim2, blsp_spi9, blsp_uart9, blsp_i2c9, NA, NA, NA),
  871. PINGROUP(53, blsp_spi10, blsp_uart10, blsp_uim10, blsp_spi2_cs1, NA, NA, NA),
  872. PINGROUP(54, blsp_spi10, blsp_uart10, blsp_uim10, blsp_spi2_cs2, gp_pdm0, NA, NA),
  873. PINGROUP(55, blsp_spi10, blsp_uart10, blsp_i2c10, NA, NA, NA, NA),
  874. PINGROUP(56, blsp_spi10, blsp_uart10, blsp_i2c10, NA, NA, NA, NA),
  875. PINGROUP(57, qua_mi2s, gcc_gp_clk1, NA, NA, NA, NA, NA),
  876. PINGROUP(58, qua_mi2s, gcc_gp_clk2, NA, NA, NA, NA, NA),
  877. PINGROUP(59, qua_mi2s, gcc_gp_clk3, NA, NA, NA, NA, NA),
  878. PINGROUP(60, qua_mi2s, NA, NA, NA, NA, NA, NA),
  879. PINGROUP(61, qua_mi2s, NA, NA, NA, NA, NA, NA),
  880. PINGROUP(62, qua_mi2s, blsp_spi2_cs1, NA, NA, NA, NA, NA),
  881. PINGROUP(63, qua_mi2s, blsp_spi2_cs2, gp_pdm2, NA, NA, NA, NA),
  882. PINGROUP(64, pri_mi2s, NA, NA, NA, NA, NA, NA),
  883. PINGROUP(65, pri_mi2s, NA, NA, NA, NA, NA, NA),
  884. PINGROUP(66, pri_mi2s, blsp_spi2_cs3, NA, NA, NA, NA, NA),
  885. PINGROUP(67, pri_mi2s, blsp_spi10_cs1, NA, NA, NA, NA, NA),
  886. PINGROUP(68, pri_mi2s, blsp_spi10_cs2, gp_pdm0, NA, NA, NA, NA),
  887. PINGROUP(69, spkr_mi2s, audio_ref_clk, NA, NA, NA, NA, NA),
  888. PINGROUP(70, slimbus, spkr_mi2s, NA, NA, NA, NA, NA),
  889. PINGROUP(71, slimbus, spkr_mi2s, NA, NA, NA, NA, NA),
  890. PINGROUP(72, spkr_mi2s, NA, NA, NA, NA, NA, NA),
  891. PINGROUP(73, ter_mi2s, NA, NA, NA, NA, NA, NA),
  892. PINGROUP(74, ter_mi2s, gp_pdm1, NA, NA, NA, NA, NA),
  893. PINGROUP(75, ter_mi2s, NA, NA, NA, NA, NA, NA),
  894. PINGROUP(76, ter_mi2s, NA, NA, NA, NA, NA, NA),
  895. PINGROUP(77, ter_mi2s, NA, NA, NA, NA, NA, NA),
  896. PINGROUP(78, sec_mi2s, gcc_gp_clk1, NA, NA, NA, NA, NA),
  897. PINGROUP(79, sec_mi2s, gp_pdm2, NA, NA, NA, NA, NA),
  898. PINGROUP(80, sec_mi2s, NA, NA, NA, NA, NA, NA),
  899. PINGROUP(81, sec_mi2s, blsp_spi11, blsp_uart11, blsp_uim11, gcc_gp_clk2, NA, NA),
  900. PINGROUP(82, sec_mi2s, blsp_spi11, blsp_uart11, blsp_uim11, gcc_gp_clk3, NA, NA),
  901. PINGROUP(83, blsp_spi11, blsp_uart11, blsp_i2c11, NA, NA, NA, NA),
  902. PINGROUP(84, blsp_spi11, blsp_uart11, blsp_i2c11, NA, NA, NA, NA),
  903. PINGROUP(85, blsp_spi12, blsp_uart12, blsp_uim12, NA, NA, NA, NA),
  904. PINGROUP(86, blsp_spi12, blsp_uart12, blsp_uim12, gp_pdm1, NA, NA, NA),
  905. PINGROUP(87, blsp_spi12, blsp_uart12, blsp_i2c12, NA, NA, NA, NA),
  906. PINGROUP(88, blsp_spi12, blsp_uart12, blsp_i2c12, NA, NA, NA, NA),
  907. PINGROUP(89, tsif1, NA, NA, NA, NA, NA, NA),
  908. PINGROUP(90, tsif1, blsp_spi10_cs3, NA, NA, NA, NA, NA),
  909. PINGROUP(91, tsif1, sdc4, NA, NA, NA, NA, NA),
  910. PINGROUP(92, tsif1, sdc4, NA, NA, NA, NA, NA),
  911. PINGROUP(93, tsif2, sdc4, NA, NA, NA, NA, NA),
  912. PINGROUP(94, tsif2, sdc4, NA, NA, NA, NA, NA),
  913. PINGROUP(95, tsif2, sdc4, NA, NA, NA, NA, NA),
  914. PINGROUP(96, tsif2, sdc4, NA, NA, NA, NA, NA),
  915. PINGROUP(97, uim1, NA, NA, NA, NA, NA, NA),
  916. PINGROUP(98, uim1, NA, NA, NA, NA, NA, NA),
  917. PINGROUP(99, uim1, NA, NA, NA, NA, NA, NA),
  918. PINGROUP(100, uim1, NA, NA, NA, NA, NA, NA),
  919. PINGROUP(101, uim_batt_alarm, NA, NA, NA, NA, NA, NA),
  920. PINGROUP(102, edp_hpd, NA, NA, NA, NA, NA, NA),
  921. PINGROUP(103, NA, NA, NA, NA, NA, NA, NA),
  922. PINGROUP(104, grfc, NA, NA, NA, NA, NA, NA),
  923. PINGROUP(105, grfc, NA, NA, NA, NA, NA, NA),
  924. PINGROUP(106, grfc, NA, NA, NA, NA, NA, NA),
  925. PINGROUP(107, grfc, NA, NA, NA, NA, NA, NA),
  926. PINGROUP(108, grfc, NA, NA, NA, NA, NA, NA),
  927. PINGROUP(109, grfc, NA, NA, NA, NA, NA, NA),
  928. PINGROUP(110, grfc, NA, NA, NA, NA, NA, NA),
  929. PINGROUP(111, grfc, NA, NA, NA, NA, NA, NA),
  930. PINGROUP(112, grfc, NA, NA, NA, NA, NA, NA),
  931. PINGROUP(113, grfc, NA, NA, NA, NA, NA, NA),
  932. PINGROUP(114, grfc, NA, NA, NA, NA, NA, NA),
  933. PINGROUP(115, grfc, NA, NA, NA, NA, NA, NA),
  934. PINGROUP(116, grfc, NA, NA, NA, NA, NA, NA),
  935. PINGROUP(117, grfc, NA, NA, NA, NA, NA, NA),
  936. PINGROUP(118, grfc, NA, NA, NA, NA, NA, NA),
  937. PINGROUP(119, grfc, NA, NA, NA, NA, NA, NA),
  938. PINGROUP(120, grfc, NA, NA, NA, NA, NA, NA),
  939. PINGROUP(121, grfc, NA, NA, NA, NA, NA, NA),
  940. PINGROUP(122, grfc, NA, NA, NA, NA, NA, NA),
  941. PINGROUP(123, grfc, NA, NA, NA, NA, NA, NA),
  942. PINGROUP(124, grfc, NA, NA, NA, NA, NA, NA),
  943. PINGROUP(125, grfc, NA, NA, NA, NA, NA, NA),
  944. PINGROUP(126, grfc, NA, NA, NA, NA, NA, NA),
  945. PINGROUP(127, grfc, NA, NA, NA, NA, NA, NA),
  946. PINGROUP(128, NA, grfc, NA, NA, NA, NA, NA),
  947. PINGROUP(129, NA, NA, NA, NA, NA, NA, NA),
  948. PINGROUP(130, NA, NA, NA, NA, NA, NA, NA),
  949. PINGROUP(131, NA, NA, NA, NA, NA, NA, NA),
  950. PINGROUP(132, NA, NA, NA, NA, NA, NA, NA),
  951. PINGROUP(133, NA, NA, NA, NA, NA, NA, NA),
  952. PINGROUP(134, NA, NA, NA, NA, NA, NA, NA),
  953. PINGROUP(135, NA, NA, NA, NA, NA, NA, NA),
  954. PINGROUP(136, NA, grfc, NA, NA, NA, NA, NA),
  955. PINGROUP(137, NA, grfc, NA, NA, NA, NA, NA),
  956. PINGROUP(138, NA, NA, NA, NA, NA, NA, NA),
  957. PINGROUP(139, NA, NA, NA, NA, NA, NA, NA),
  958. PINGROUP(140, NA, NA, NA, NA, NA, NA, NA),
  959. PINGROUP(141, NA, grfc, NA, NA, NA, NA, NA),
  960. PINGROUP(142, NA, NA, NA, NA, NA, NA, NA),
  961. PINGROUP(143, NA, grfc, NA, NA, NA, NA, NA),
  962. PINGROUP(144, hsic, NA, NA, NA, NA, NA, NA),
  963. PINGROUP(145, hsic, NA, NA, NA, NA, NA, NA),
  964. SDC_PINGROUP(sdc1_clk, 0x2044, 13, 6),
  965. SDC_PINGROUP(sdc1_cmd, 0x2044, 11, 3),
  966. SDC_PINGROUP(sdc1_data, 0x2044, 9, 0),
  967. SDC_PINGROUP(sdc2_clk, 0x2048, 14, 6),
  968. SDC_PINGROUP(sdc2_cmd, 0x2048, 11, 3),
  969. SDC_PINGROUP(sdc2_data, 0x2048, 9, 0),
  970. };
  971. #define NUM_GPIO_PINGROUPS 146
  972. static const struct msm_pinctrl_soc_data msm8x74_pinctrl = {
  973. .pins = msm8x74_pins,
  974. .npins = ARRAY_SIZE(msm8x74_pins),
  975. .functions = msm8x74_functions,
  976. .nfunctions = ARRAY_SIZE(msm8x74_functions),
  977. .groups = msm8x74_groups,
  978. .ngroups = ARRAY_SIZE(msm8x74_groups),
  979. .ngpios = NUM_GPIO_PINGROUPS,
  980. };
  981. static int msm8x74_pinctrl_probe(struct platform_device *pdev)
  982. {
  983. return msm_pinctrl_probe(pdev, &msm8x74_pinctrl);
  984. }
  985. static const struct of_device_id msm8x74_pinctrl_of_match[] = {
  986. { .compatible = "qcom,msm8974-pinctrl", },
  987. { },
  988. };
  989. static struct platform_driver msm8x74_pinctrl_driver = {
  990. .driver = {
  991. .name = "msm8x74-pinctrl",
  992. .of_match_table = msm8x74_pinctrl_of_match,
  993. },
  994. .probe = msm8x74_pinctrl_probe,
  995. .remove = msm_pinctrl_remove,
  996. };
  997. static int __init msm8x74_pinctrl_init(void)
  998. {
  999. return platform_driver_register(&msm8x74_pinctrl_driver);
  1000. }
  1001. arch_initcall(msm8x74_pinctrl_init);
  1002. static void __exit msm8x74_pinctrl_exit(void)
  1003. {
  1004. platform_driver_unregister(&msm8x74_pinctrl_driver);
  1005. }
  1006. module_exit(msm8x74_pinctrl_exit);
  1007. MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@sonymobile.com>");
  1008. MODULE_DESCRIPTION("Qualcomm MSM8x74 pinctrl driver");
  1009. MODULE_LICENSE("GPL v2");
  1010. MODULE_DEVICE_TABLE(of, msm8x74_pinctrl_of_match);