pinctrl-ipq8074.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077
  1. /*
  2. * Copyright (c) 2017, The Linux Foundation. All rights reserved.
  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. #define FUNCTION(fname) \
  19. [msm_mux_##fname] = { \
  20. .name = #fname, \
  21. .groups = fname##_groups, \
  22. .ngroups = ARRAY_SIZE(fname##_groups), \
  23. }
  24. #define REG_SIZE 0x1000
  25. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
  26. { \
  27. .name = "gpio" #id, \
  28. .pins = gpio##id##_pins, \
  29. .npins = (unsigned int)ARRAY_SIZE(gpio##id##_pins), \
  30. .funcs = (int[]){ \
  31. msm_mux_gpio, /* gpio mode */ \
  32. msm_mux_##f1, \
  33. msm_mux_##f2, \
  34. msm_mux_##f3, \
  35. msm_mux_##f4, \
  36. msm_mux_##f5, \
  37. msm_mux_##f6, \
  38. msm_mux_##f7, \
  39. msm_mux_##f8, \
  40. msm_mux_##f9 \
  41. }, \
  42. .nfuncs = 10, \
  43. .ctl_reg = REG_SIZE * id, \
  44. .io_reg = 0x4 + REG_SIZE * id, \
  45. .intr_cfg_reg = 0x8 + REG_SIZE * id, \
  46. .intr_status_reg = 0xc + REG_SIZE * id, \
  47. .intr_target_reg = 0x8 + REG_SIZE * id, \
  48. .mux_bit = 2, \
  49. .pull_bit = 0, \
  50. .drv_bit = 6, \
  51. .oe_bit = 9, \
  52. .in_bit = 0, \
  53. .out_bit = 1, \
  54. .intr_enable_bit = 0, \
  55. .intr_status_bit = 0, \
  56. .intr_target_bit = 5, \
  57. .intr_raw_status_bit = 4, \
  58. .intr_polarity_bit = 1, \
  59. .intr_detection_bit = 2, \
  60. .intr_detection_width = 2, \
  61. }
  62. static const struct pinctrl_pin_desc ipq8074_pins[] = {
  63. PINCTRL_PIN(0, "GPIO_0"),
  64. PINCTRL_PIN(1, "GPIO_1"),
  65. PINCTRL_PIN(2, "GPIO_2"),
  66. PINCTRL_PIN(3, "GPIO_3"),
  67. PINCTRL_PIN(4, "GPIO_4"),
  68. PINCTRL_PIN(5, "GPIO_5"),
  69. PINCTRL_PIN(6, "GPIO_6"),
  70. PINCTRL_PIN(7, "GPIO_7"),
  71. PINCTRL_PIN(8, "GPIO_8"),
  72. PINCTRL_PIN(9, "GPIO_9"),
  73. PINCTRL_PIN(10, "GPIO_10"),
  74. PINCTRL_PIN(11, "GPIO_11"),
  75. PINCTRL_PIN(12, "GPIO_12"),
  76. PINCTRL_PIN(13, "GPIO_13"),
  77. PINCTRL_PIN(14, "GPIO_14"),
  78. PINCTRL_PIN(15, "GPIO_15"),
  79. PINCTRL_PIN(16, "GPIO_16"),
  80. PINCTRL_PIN(17, "GPIO_17"),
  81. PINCTRL_PIN(18, "GPIO_18"),
  82. PINCTRL_PIN(19, "GPIO_19"),
  83. PINCTRL_PIN(20, "GPIO_20"),
  84. PINCTRL_PIN(21, "GPIO_21"),
  85. PINCTRL_PIN(22, "GPIO_22"),
  86. PINCTRL_PIN(23, "GPIO_23"),
  87. PINCTRL_PIN(24, "GPIO_24"),
  88. PINCTRL_PIN(25, "GPIO_25"),
  89. PINCTRL_PIN(26, "GPIO_26"),
  90. PINCTRL_PIN(27, "GPIO_27"),
  91. PINCTRL_PIN(28, "GPIO_28"),
  92. PINCTRL_PIN(29, "GPIO_29"),
  93. PINCTRL_PIN(30, "GPIO_30"),
  94. PINCTRL_PIN(31, "GPIO_31"),
  95. PINCTRL_PIN(32, "GPIO_32"),
  96. PINCTRL_PIN(33, "GPIO_33"),
  97. PINCTRL_PIN(34, "GPIO_34"),
  98. PINCTRL_PIN(35, "GPIO_35"),
  99. PINCTRL_PIN(36, "GPIO_36"),
  100. PINCTRL_PIN(37, "GPIO_37"),
  101. PINCTRL_PIN(38, "GPIO_38"),
  102. PINCTRL_PIN(39, "GPIO_39"),
  103. PINCTRL_PIN(40, "GPIO_40"),
  104. PINCTRL_PIN(41, "GPIO_41"),
  105. PINCTRL_PIN(42, "GPIO_42"),
  106. PINCTRL_PIN(43, "GPIO_43"),
  107. PINCTRL_PIN(44, "GPIO_44"),
  108. PINCTRL_PIN(45, "GPIO_45"),
  109. PINCTRL_PIN(46, "GPIO_46"),
  110. PINCTRL_PIN(47, "GPIO_47"),
  111. PINCTRL_PIN(48, "GPIO_48"),
  112. PINCTRL_PIN(49, "GPIO_49"),
  113. PINCTRL_PIN(50, "GPIO_50"),
  114. PINCTRL_PIN(51, "GPIO_51"),
  115. PINCTRL_PIN(52, "GPIO_52"),
  116. PINCTRL_PIN(53, "GPIO_53"),
  117. PINCTRL_PIN(54, "GPIO_54"),
  118. PINCTRL_PIN(55, "GPIO_55"),
  119. PINCTRL_PIN(56, "GPIO_56"),
  120. PINCTRL_PIN(57, "GPIO_57"),
  121. PINCTRL_PIN(58, "GPIO_58"),
  122. PINCTRL_PIN(59, "GPIO_59"),
  123. PINCTRL_PIN(60, "GPIO_60"),
  124. PINCTRL_PIN(61, "GPIO_61"),
  125. PINCTRL_PIN(62, "GPIO_62"),
  126. PINCTRL_PIN(63, "GPIO_63"),
  127. PINCTRL_PIN(64, "GPIO_64"),
  128. PINCTRL_PIN(65, "GPIO_65"),
  129. PINCTRL_PIN(66, "GPIO_66"),
  130. PINCTRL_PIN(67, "GPIO_67"),
  131. PINCTRL_PIN(68, "GPIO_68"),
  132. PINCTRL_PIN(69, "GPIO_69"),
  133. };
  134. #define DECLARE_MSM_GPIO_PINS(pin) \
  135. static const unsigned int gpio##pin##_pins[] = { pin }
  136. DECLARE_MSM_GPIO_PINS(0);
  137. DECLARE_MSM_GPIO_PINS(1);
  138. DECLARE_MSM_GPIO_PINS(2);
  139. DECLARE_MSM_GPIO_PINS(3);
  140. DECLARE_MSM_GPIO_PINS(4);
  141. DECLARE_MSM_GPIO_PINS(5);
  142. DECLARE_MSM_GPIO_PINS(6);
  143. DECLARE_MSM_GPIO_PINS(7);
  144. DECLARE_MSM_GPIO_PINS(8);
  145. DECLARE_MSM_GPIO_PINS(9);
  146. DECLARE_MSM_GPIO_PINS(10);
  147. DECLARE_MSM_GPIO_PINS(11);
  148. DECLARE_MSM_GPIO_PINS(12);
  149. DECLARE_MSM_GPIO_PINS(13);
  150. DECLARE_MSM_GPIO_PINS(14);
  151. DECLARE_MSM_GPIO_PINS(15);
  152. DECLARE_MSM_GPIO_PINS(16);
  153. DECLARE_MSM_GPIO_PINS(17);
  154. DECLARE_MSM_GPIO_PINS(18);
  155. DECLARE_MSM_GPIO_PINS(19);
  156. DECLARE_MSM_GPIO_PINS(20);
  157. DECLARE_MSM_GPIO_PINS(21);
  158. DECLARE_MSM_GPIO_PINS(22);
  159. DECLARE_MSM_GPIO_PINS(23);
  160. DECLARE_MSM_GPIO_PINS(24);
  161. DECLARE_MSM_GPIO_PINS(25);
  162. DECLARE_MSM_GPIO_PINS(26);
  163. DECLARE_MSM_GPIO_PINS(27);
  164. DECLARE_MSM_GPIO_PINS(28);
  165. DECLARE_MSM_GPIO_PINS(29);
  166. DECLARE_MSM_GPIO_PINS(30);
  167. DECLARE_MSM_GPIO_PINS(31);
  168. DECLARE_MSM_GPIO_PINS(32);
  169. DECLARE_MSM_GPIO_PINS(33);
  170. DECLARE_MSM_GPIO_PINS(34);
  171. DECLARE_MSM_GPIO_PINS(35);
  172. DECLARE_MSM_GPIO_PINS(36);
  173. DECLARE_MSM_GPIO_PINS(37);
  174. DECLARE_MSM_GPIO_PINS(38);
  175. DECLARE_MSM_GPIO_PINS(39);
  176. DECLARE_MSM_GPIO_PINS(40);
  177. DECLARE_MSM_GPIO_PINS(41);
  178. DECLARE_MSM_GPIO_PINS(42);
  179. DECLARE_MSM_GPIO_PINS(43);
  180. DECLARE_MSM_GPIO_PINS(44);
  181. DECLARE_MSM_GPIO_PINS(45);
  182. DECLARE_MSM_GPIO_PINS(46);
  183. DECLARE_MSM_GPIO_PINS(47);
  184. DECLARE_MSM_GPIO_PINS(48);
  185. DECLARE_MSM_GPIO_PINS(49);
  186. DECLARE_MSM_GPIO_PINS(50);
  187. DECLARE_MSM_GPIO_PINS(51);
  188. DECLARE_MSM_GPIO_PINS(52);
  189. DECLARE_MSM_GPIO_PINS(53);
  190. DECLARE_MSM_GPIO_PINS(54);
  191. DECLARE_MSM_GPIO_PINS(55);
  192. DECLARE_MSM_GPIO_PINS(56);
  193. DECLARE_MSM_GPIO_PINS(57);
  194. DECLARE_MSM_GPIO_PINS(58);
  195. DECLARE_MSM_GPIO_PINS(59);
  196. DECLARE_MSM_GPIO_PINS(60);
  197. DECLARE_MSM_GPIO_PINS(61);
  198. DECLARE_MSM_GPIO_PINS(62);
  199. DECLARE_MSM_GPIO_PINS(63);
  200. DECLARE_MSM_GPIO_PINS(64);
  201. DECLARE_MSM_GPIO_PINS(65);
  202. DECLARE_MSM_GPIO_PINS(66);
  203. DECLARE_MSM_GPIO_PINS(67);
  204. DECLARE_MSM_GPIO_PINS(68);
  205. DECLARE_MSM_GPIO_PINS(69);
  206. enum ipq8074_functions {
  207. msm_mux_atest_char,
  208. msm_mux_atest_char0,
  209. msm_mux_atest_char1,
  210. msm_mux_atest_char2,
  211. msm_mux_atest_char3,
  212. msm_mux_audio_rxbclk,
  213. msm_mux_audio_rxd,
  214. msm_mux_audio_rxfsync,
  215. msm_mux_audio_rxmclk,
  216. msm_mux_audio_txbclk,
  217. msm_mux_audio_txd,
  218. msm_mux_audio_txfsync,
  219. msm_mux_audio_txmclk,
  220. msm_mux_blsp0_i2c,
  221. msm_mux_blsp0_spi,
  222. msm_mux_blsp0_uart,
  223. msm_mux_blsp1_i2c,
  224. msm_mux_blsp1_spi,
  225. msm_mux_blsp1_uart,
  226. msm_mux_blsp2_i2c,
  227. msm_mux_blsp2_spi,
  228. msm_mux_blsp2_uart,
  229. msm_mux_blsp3_i2c,
  230. msm_mux_blsp3_spi,
  231. msm_mux_blsp3_spi0,
  232. msm_mux_blsp3_spi1,
  233. msm_mux_blsp3_spi2,
  234. msm_mux_blsp3_spi3,
  235. msm_mux_blsp3_uart,
  236. msm_mux_blsp4_i2c0,
  237. msm_mux_blsp4_i2c1,
  238. msm_mux_blsp4_spi0,
  239. msm_mux_blsp4_spi1,
  240. msm_mux_blsp4_uart0,
  241. msm_mux_blsp4_uart1,
  242. msm_mux_blsp5_i2c,
  243. msm_mux_blsp5_spi,
  244. msm_mux_blsp5_uart,
  245. msm_mux_burn0,
  246. msm_mux_burn1,
  247. msm_mux_cri_trng,
  248. msm_mux_cri_trng0,
  249. msm_mux_cri_trng1,
  250. msm_mux_cxc0,
  251. msm_mux_cxc1,
  252. msm_mux_dbg_out,
  253. msm_mux_gcc_plltest,
  254. msm_mux_gcc_tlmm,
  255. msm_mux_gpio,
  256. msm_mux_ldo_en,
  257. msm_mux_ldo_update,
  258. msm_mux_led0,
  259. msm_mux_led1,
  260. msm_mux_led2,
  261. msm_mux_mac0_sa0,
  262. msm_mux_mac0_sa1,
  263. msm_mux_mac1_sa0,
  264. msm_mux_mac1_sa1,
  265. msm_mux_mac1_sa2,
  266. msm_mux_mac1_sa3,
  267. msm_mux_mac2_sa0,
  268. msm_mux_mac2_sa1,
  269. msm_mux_mdc,
  270. msm_mux_mdio,
  271. msm_mux_pcie0_clk,
  272. msm_mux_pcie0_rst,
  273. msm_mux_pcie0_wake,
  274. msm_mux_pcie1_clk,
  275. msm_mux_pcie1_rst,
  276. msm_mux_pcie1_wake,
  277. msm_mux_pcm_drx,
  278. msm_mux_pcm_dtx,
  279. msm_mux_pcm_fsync,
  280. msm_mux_pcm_pclk,
  281. msm_mux_pcm_zsi0,
  282. msm_mux_pcm_zsi1,
  283. msm_mux_prng_rosc,
  284. msm_mux_pta1_0,
  285. msm_mux_pta1_1,
  286. msm_mux_pta1_2,
  287. msm_mux_pta2_0,
  288. msm_mux_pta2_1,
  289. msm_mux_pta2_2,
  290. msm_mux_pwm0,
  291. msm_mux_pwm1,
  292. msm_mux_pwm2,
  293. msm_mux_pwm3,
  294. msm_mux_qdss_cti_trig_in_a0,
  295. msm_mux_qdss_cti_trig_in_a1,
  296. msm_mux_qdss_cti_trig_in_b0,
  297. msm_mux_qdss_cti_trig_in_b1,
  298. msm_mux_qdss_cti_trig_out_a0,
  299. msm_mux_qdss_cti_trig_out_a1,
  300. msm_mux_qdss_cti_trig_out_b0,
  301. msm_mux_qdss_cti_trig_out_b1,
  302. msm_mux_qdss_traceclk_a,
  303. msm_mux_qdss_traceclk_b,
  304. msm_mux_qdss_tracectl_a,
  305. msm_mux_qdss_tracectl_b,
  306. msm_mux_qdss_tracedata_a,
  307. msm_mux_qdss_tracedata_b,
  308. msm_mux_qpic,
  309. msm_mux_rx0,
  310. msm_mux_rx1,
  311. msm_mux_rx2,
  312. msm_mux_sd_card,
  313. msm_mux_sd_write,
  314. msm_mux_tsens_max,
  315. msm_mux_wci2a,
  316. msm_mux_wci2b,
  317. msm_mux_wci2c,
  318. msm_mux_wci2d,
  319. msm_mux_NA,
  320. };
  321. static const char * const qpic_groups[] = {
  322. "gpio0", /* LCD_TE */
  323. "gpio1", /* BUSY_N */
  324. "gpio2", /* LCD_RS_N */
  325. "gpio3", /* WE_N */
  326. "gpio4", /* OE_N */
  327. "gpio5", /* DATA[0] */
  328. "gpio6", /* DATA[1] */
  329. "gpio7", /* DATA[2] */
  330. "gpio8", /* DATA[3] */
  331. "gpio9", /* CS_CSR_LCD */
  332. "gpio10", /* CLE */
  333. "gpio11", /* NAND_CS_N */
  334. "gpio12", /* DATA[4] */
  335. "gpio13", /* DATA[5] */
  336. "gpio14", /* DATA[6] */
  337. "gpio15", /* DATA[7] */
  338. "gpio16", /* DATA[8] */
  339. "gpio17", /* ALE */
  340. };
  341. static const char * const blsp5_i2c_groups[] = {
  342. "gpio0", "gpio2",
  343. };
  344. static const char * const blsp5_spi_groups[] = {
  345. "gpio0", "gpio2", "gpio9", "gpio16",
  346. };
  347. static const char * const wci2a_groups[] = {
  348. "gpio0", "gpio2",
  349. };
  350. static const char * const blsp3_spi3_groups[] = {
  351. "gpio0", "gpio2", "gpio9",
  352. };
  353. static const char * const burn0_groups[] = {
  354. "gpio0",
  355. };
  356. static const char * const pcm_zsi0_groups[] = {
  357. "gpio1",
  358. };
  359. static const char * const blsp5_uart_groups[] = {
  360. "gpio0", "gpio2", "gpio9", "gpio16",
  361. };
  362. static const char * const mac1_sa2_groups[] = {
  363. "gpio1", "gpio11",
  364. };
  365. static const char * const blsp3_spi0_groups[] = {
  366. "gpio1", "gpio3", "gpio4",
  367. };
  368. static const char * const burn1_groups[] = {
  369. "gpio1",
  370. };
  371. static const char * const mac0_sa1_groups[] = {
  372. "gpio3", "gpio4",
  373. };
  374. static const char * const qdss_cti_trig_out_b0_groups[] = {
  375. "gpio3",
  376. };
  377. static const char * const qdss_cti_trig_in_b0_groups[] = {
  378. "gpio4",
  379. };
  380. static const char * const blsp4_uart0_groups[] = {
  381. "gpio5", "gpio6", "gpio7", "gpio8",
  382. };
  383. static const char * const blsp4_i2c0_groups[] = {
  384. "gpio5", "gpio6",
  385. };
  386. static const char * const blsp4_spi0_groups[] = {
  387. "gpio5", "gpio6", "gpio7", "gpio8",
  388. };
  389. static const char * const mac2_sa1_groups[] = {
  390. "gpio5", "gpio6",
  391. };
  392. static const char * const qdss_cti_trig_out_b1_groups[] = {
  393. "gpio5",
  394. };
  395. static const char * const qdss_cti_trig_in_b1_groups[] = {
  396. "gpio6",
  397. };
  398. static const char * const cxc0_groups[] = {
  399. "gpio9", "gpio16",
  400. };
  401. static const char * const mac1_sa3_groups[] = {
  402. "gpio9", "gpio16",
  403. };
  404. static const char * const qdss_cti_trig_in_a1_groups[] = {
  405. "gpio9",
  406. };
  407. static const char * const qdss_cti_trig_out_a1_groups[] = {
  408. "gpio10",
  409. };
  410. static const char * const wci2c_groups[] = {
  411. "gpio11", "gpio17",
  412. };
  413. static const char * const qdss_cti_trig_in_a0_groups[] = {
  414. "gpio11",
  415. };
  416. static const char * const qdss_cti_trig_out_a0_groups[] = {
  417. "gpio12",
  418. };
  419. static const char * const qdss_traceclk_b_groups[] = {
  420. "gpio14",
  421. };
  422. static const char * const qdss_tracectl_b_groups[] = {
  423. "gpio15",
  424. };
  425. static const char * const pcm_zsi1_groups[] = {
  426. "gpio16",
  427. };
  428. static const char * const qdss_tracedata_b_groups[] = {
  429. "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21", "gpio22",
  430. "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28", "gpio29",
  431. "gpio30", "gpio31",
  432. };
  433. static const char * const led0_groups[] = {
  434. "gpio18",
  435. };
  436. static const char * const pwm0_groups[] = {
  437. "gpio18", "gpio21", "gpio25", "gpio29", "gpio63",
  438. };
  439. static const char * const led1_groups[] = {
  440. "gpio19",
  441. };
  442. static const char * const pwm1_groups[] = {
  443. "gpio19", "gpio22", "gpio26", "gpio30", "gpio64",
  444. };
  445. static const char * const led2_groups[] = {
  446. "gpio20",
  447. };
  448. static const char * const pwm2_groups[] = {
  449. "gpio20", "gpio23", "gpio27", "gpio31", "gpio66",
  450. };
  451. static const char * const blsp4_uart1_groups[] = {
  452. "gpio21", "gpio22", "gpio23", "gpio24",
  453. };
  454. static const char * const blsp4_i2c1_groups[] = {
  455. "gpio21", "gpio22",
  456. };
  457. static const char * const blsp4_spi1_groups[] = {
  458. "gpio21", "gpio22", "gpio23", "gpio24",
  459. };
  460. static const char * const wci2d_groups[] = {
  461. "gpio21", "gpio22",
  462. };
  463. static const char * const mac1_sa1_groups[] = {
  464. "gpio21", "gpio22",
  465. };
  466. static const char * const blsp3_spi2_groups[] = {
  467. "gpio21", "gpio22", "gpio23",
  468. };
  469. static const char * const pwm3_groups[] = {
  470. "gpio24", "gpio28", "gpio32", "gpio67",
  471. };
  472. static const char * const audio_txmclk_groups[] = {
  473. "gpio25",
  474. };
  475. static const char * const audio_txbclk_groups[] = {
  476. "gpio26",
  477. };
  478. static const char * const audio_txfsync_groups[] = {
  479. "gpio27",
  480. };
  481. static const char * const audio_txd_groups[] = {
  482. "gpio28",
  483. };
  484. static const char * const audio_rxmclk_groups[] = {
  485. "gpio29",
  486. };
  487. static const char * const atest_char0_groups[] = {
  488. "gpio29",
  489. };
  490. static const char * const audio_rxbclk_groups[] = {
  491. "gpio30",
  492. };
  493. static const char * const atest_char1_groups[] = {
  494. "gpio30",
  495. };
  496. static const char * const audio_rxfsync_groups[] = {
  497. "gpio31",
  498. };
  499. static const char * const atest_char2_groups[] = {
  500. "gpio31",
  501. };
  502. static const char * const audio_rxd_groups[] = {
  503. "gpio32",
  504. };
  505. static const char * const atest_char3_groups[] = {
  506. "gpio32",
  507. };
  508. static const char * const pcm_drx_groups[] = {
  509. "gpio33",
  510. };
  511. static const char * const mac1_sa0_groups[] = {
  512. "gpio33", "gpio34",
  513. };
  514. static const char * const mac0_sa0_groups[] = {
  515. "gpio33", "gpio34",
  516. };
  517. static const char * const pcm_dtx_groups[] = {
  518. "gpio34",
  519. };
  520. static const char * const pcm_fsync_groups[] = {
  521. "gpio35",
  522. };
  523. static const char * const mac2_sa0_groups[] = {
  524. "gpio35", "gpio36",
  525. };
  526. static const char * const qdss_traceclk_a_groups[] = {
  527. "gpio35",
  528. };
  529. static const char * const pcm_pclk_groups[] = {
  530. "gpio36",
  531. };
  532. static const char * const qdss_tracectl_a_groups[] = {
  533. "gpio36",
  534. };
  535. static const char * const atest_char_groups[] = {
  536. "gpio37",
  537. };
  538. static const char * const qdss_tracedata_a_groups[] = {
  539. "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42", "gpio43",
  540. "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49", "gpio50",
  541. "gpio51", "gpio52",
  542. };
  543. static const char * const blsp0_uart_groups[] = {
  544. "gpio38", "gpio39", "gpio40", "gpio41",
  545. };
  546. static const char * const blsp0_i2c_groups[] = {
  547. "gpio38", "gpio39",
  548. };
  549. static const char * const blsp0_spi_groups[] = {
  550. "gpio38", "gpio39", "gpio40", "gpio41",
  551. };
  552. static const char * const blsp1_uart_groups[] = {
  553. "gpio42", "gpio43", "gpio44", "gpio45",
  554. };
  555. static const char * const blsp1_i2c_groups[] = {
  556. "gpio42", "gpio43",
  557. };
  558. static const char * const blsp1_spi_groups[] = {
  559. "gpio42", "gpio43", "gpio44", "gpio45",
  560. };
  561. static const char * const blsp2_uart_groups[] = {
  562. "gpio46", "gpio47", "gpio48", "gpio49",
  563. };
  564. static const char * const blsp2_i2c_groups[] = {
  565. "gpio46", "gpio47",
  566. };
  567. static const char * const blsp2_spi_groups[] = {
  568. "gpio46", "gpio47", "gpio48", "gpio49",
  569. };
  570. static const char * const blsp3_uart_groups[] = {
  571. "gpio50", "gpio51", "gpio52", "gpio53",
  572. };
  573. static const char * const blsp3_i2c_groups[] = {
  574. "gpio50", "gpio51",
  575. };
  576. static const char * const blsp3_spi_groups[] = {
  577. "gpio50", "gpio51", "gpio52", "gpio53",
  578. };
  579. static const char * const pta2_0_groups[] = {
  580. "gpio54",
  581. };
  582. static const char * const wci2b_groups[] = {
  583. "gpio54", "gpio56",
  584. };
  585. static const char * const cxc1_groups[] = {
  586. "gpio54", "gpio56",
  587. };
  588. static const char * const blsp3_spi1_groups[] = {
  589. "gpio54", "gpio55", "gpio56",
  590. };
  591. static const char * const pta2_1_groups[] = {
  592. "gpio55",
  593. };
  594. static const char * const pta2_2_groups[] = {
  595. "gpio56",
  596. };
  597. static const char * const pcie0_clk_groups[] = {
  598. "gpio57",
  599. };
  600. static const char * const dbg_out_groups[] = {
  601. "gpio57",
  602. };
  603. static const char * const cri_trng0_groups[] = {
  604. "gpio57",
  605. };
  606. static const char * const pcie0_rst_groups[] = {
  607. "gpio58",
  608. };
  609. static const char * const cri_trng1_groups[] = {
  610. "gpio58",
  611. };
  612. static const char * const pcie0_wake_groups[] = {
  613. "gpio59",
  614. };
  615. static const char * const cri_trng_groups[] = {
  616. "gpio59",
  617. };
  618. static const char * const pcie1_clk_groups[] = {
  619. "gpio60",
  620. };
  621. static const char * const rx2_groups[] = {
  622. "gpio60",
  623. };
  624. static const char * const ldo_update_groups[] = {
  625. "gpio60",
  626. };
  627. static const char * const pcie1_rst_groups[] = {
  628. "gpio61",
  629. };
  630. static const char * const ldo_en_groups[] = {
  631. "gpio61",
  632. };
  633. static const char * const pcie1_wake_groups[] = {
  634. "gpio62",
  635. };
  636. static const char * const gcc_plltest_groups[] = {
  637. "gpio62", "gpio63",
  638. };
  639. static const char * const sd_card_groups[] = {
  640. "gpio63",
  641. };
  642. static const char * const pta1_1_groups[] = {
  643. "gpio64",
  644. };
  645. static const char * const rx1_groups[] = {
  646. "gpio64",
  647. };
  648. static const char * const pta1_2_groups[] = {
  649. "gpio65",
  650. };
  651. static const char * const gcc_tlmm_groups[] = {
  652. "gpio65",
  653. };
  654. static const char * const pta1_0_groups[] = {
  655. "gpio66",
  656. };
  657. static const char * const prng_rosc_groups[] = {
  658. "gpio66",
  659. };
  660. static const char * const sd_write_groups[] = {
  661. "gpio67",
  662. };
  663. static const char * const rx0_groups[] = {
  664. "gpio67",
  665. };
  666. static const char * const tsens_max_groups[] = {
  667. "gpio67",
  668. };
  669. static const char * const mdc_groups[] = {
  670. "gpio68",
  671. };
  672. static const char * const mdio_groups[] = {
  673. "gpio69",
  674. };
  675. static const char * const gpio_groups[] = {
  676. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  677. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  678. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  679. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  680. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  681. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  682. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  683. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  684. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  685. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69",
  686. };
  687. static const struct msm_function ipq8074_functions[] = {
  688. FUNCTION(atest_char),
  689. FUNCTION(atest_char0),
  690. FUNCTION(atest_char1),
  691. FUNCTION(atest_char2),
  692. FUNCTION(atest_char3),
  693. FUNCTION(audio_rxbclk),
  694. FUNCTION(audio_rxd),
  695. FUNCTION(audio_rxfsync),
  696. FUNCTION(audio_rxmclk),
  697. FUNCTION(audio_txbclk),
  698. FUNCTION(audio_txd),
  699. FUNCTION(audio_txfsync),
  700. FUNCTION(audio_txmclk),
  701. FUNCTION(blsp0_i2c),
  702. FUNCTION(blsp0_spi),
  703. FUNCTION(blsp0_uart),
  704. FUNCTION(blsp1_i2c),
  705. FUNCTION(blsp1_spi),
  706. FUNCTION(blsp1_uart),
  707. FUNCTION(blsp2_i2c),
  708. FUNCTION(blsp2_spi),
  709. FUNCTION(blsp2_uart),
  710. FUNCTION(blsp3_i2c),
  711. FUNCTION(blsp3_spi),
  712. FUNCTION(blsp3_spi0),
  713. FUNCTION(blsp3_spi1),
  714. FUNCTION(blsp3_spi2),
  715. FUNCTION(blsp3_spi3),
  716. FUNCTION(blsp3_uart),
  717. FUNCTION(blsp4_i2c0),
  718. FUNCTION(blsp4_i2c1),
  719. FUNCTION(blsp4_spi0),
  720. FUNCTION(blsp4_spi1),
  721. FUNCTION(blsp4_uart0),
  722. FUNCTION(blsp4_uart1),
  723. FUNCTION(blsp5_i2c),
  724. FUNCTION(blsp5_spi),
  725. FUNCTION(blsp5_uart),
  726. FUNCTION(burn0),
  727. FUNCTION(burn1),
  728. FUNCTION(cri_trng),
  729. FUNCTION(cri_trng0),
  730. FUNCTION(cri_trng1),
  731. FUNCTION(cxc0),
  732. FUNCTION(cxc1),
  733. FUNCTION(dbg_out),
  734. FUNCTION(gcc_plltest),
  735. FUNCTION(gcc_tlmm),
  736. FUNCTION(gpio),
  737. FUNCTION(ldo_en),
  738. FUNCTION(ldo_update),
  739. FUNCTION(led0),
  740. FUNCTION(led1),
  741. FUNCTION(led2),
  742. FUNCTION(mac0_sa0),
  743. FUNCTION(mac0_sa1),
  744. FUNCTION(mac1_sa0),
  745. FUNCTION(mac1_sa1),
  746. FUNCTION(mac1_sa2),
  747. FUNCTION(mac1_sa3),
  748. FUNCTION(mac2_sa0),
  749. FUNCTION(mac2_sa1),
  750. FUNCTION(mdc),
  751. FUNCTION(mdio),
  752. FUNCTION(pcie0_clk),
  753. FUNCTION(pcie0_rst),
  754. FUNCTION(pcie0_wake),
  755. FUNCTION(pcie1_clk),
  756. FUNCTION(pcie1_rst),
  757. FUNCTION(pcie1_wake),
  758. FUNCTION(pcm_drx),
  759. FUNCTION(pcm_dtx),
  760. FUNCTION(pcm_fsync),
  761. FUNCTION(pcm_pclk),
  762. FUNCTION(pcm_zsi0),
  763. FUNCTION(pcm_zsi1),
  764. FUNCTION(prng_rosc),
  765. FUNCTION(pta1_0),
  766. FUNCTION(pta1_1),
  767. FUNCTION(pta1_2),
  768. FUNCTION(pta2_0),
  769. FUNCTION(pta2_1),
  770. FUNCTION(pta2_2),
  771. FUNCTION(pwm0),
  772. FUNCTION(pwm1),
  773. FUNCTION(pwm2),
  774. FUNCTION(pwm3),
  775. FUNCTION(qdss_cti_trig_in_a0),
  776. FUNCTION(qdss_cti_trig_in_a1),
  777. FUNCTION(qdss_cti_trig_in_b0),
  778. FUNCTION(qdss_cti_trig_in_b1),
  779. FUNCTION(qdss_cti_trig_out_a0),
  780. FUNCTION(qdss_cti_trig_out_a1),
  781. FUNCTION(qdss_cti_trig_out_b0),
  782. FUNCTION(qdss_cti_trig_out_b1),
  783. FUNCTION(qdss_traceclk_a),
  784. FUNCTION(qdss_traceclk_b),
  785. FUNCTION(qdss_tracectl_a),
  786. FUNCTION(qdss_tracectl_b),
  787. FUNCTION(qdss_tracedata_a),
  788. FUNCTION(qdss_tracedata_b),
  789. FUNCTION(qpic),
  790. FUNCTION(rx0),
  791. FUNCTION(rx1),
  792. FUNCTION(rx2),
  793. FUNCTION(sd_card),
  794. FUNCTION(sd_write),
  795. FUNCTION(tsens_max),
  796. FUNCTION(wci2a),
  797. FUNCTION(wci2b),
  798. FUNCTION(wci2c),
  799. FUNCTION(wci2d),
  800. };
  801. static const struct msm_pingroup ipq8074_groups[] = {
  802. PINGROUP(0, qpic, blsp5_uart, blsp5_i2c, blsp5_spi, wci2a,
  803. blsp3_spi3, NA, burn0, NA),
  804. PINGROUP(1, qpic, pcm_zsi0, mac1_sa2, blsp3_spi0, NA, burn1, NA, NA,
  805. NA),
  806. PINGROUP(2, qpic, blsp5_uart, blsp5_i2c, blsp5_spi, wci2a,
  807. blsp3_spi3, NA, NA, NA),
  808. PINGROUP(3, qpic, mac0_sa1, blsp3_spi0, qdss_cti_trig_out_b0, NA, NA,
  809. NA, NA, NA),
  810. PINGROUP(4, qpic, mac0_sa1, blsp3_spi0, qdss_cti_trig_in_b0, NA, NA,
  811. NA, NA, NA),
  812. PINGROUP(5, qpic, blsp4_uart0, blsp4_i2c0, blsp4_spi0, mac2_sa1,
  813. qdss_cti_trig_out_b1, NA, NA, NA),
  814. PINGROUP(6, qpic, blsp4_uart0, blsp4_i2c0, blsp4_spi0, mac2_sa1,
  815. qdss_cti_trig_in_b1, NA, NA, NA),
  816. PINGROUP(7, qpic, blsp4_uart0, blsp4_spi0, NA, NA, NA, NA, NA, NA),
  817. PINGROUP(8, qpic, blsp4_uart0, blsp4_spi0, NA, NA, NA, NA, NA, NA),
  818. PINGROUP(9, qpic, blsp5_uart, blsp5_spi, cxc0, mac1_sa3, blsp3_spi3,
  819. qdss_cti_trig_in_a1, NA, NA),
  820. PINGROUP(10, qpic, qdss_cti_trig_out_a1, NA, NA, NA, NA, NA, NA,
  821. NA),
  822. PINGROUP(11, qpic, wci2c, mac1_sa2, qdss_cti_trig_in_a0, NA, NA, NA,
  823. NA, NA),
  824. PINGROUP(12, qpic, qdss_cti_trig_out_a0, NA, NA, NA, NA, NA, NA,
  825. NA),
  826. PINGROUP(13, qpic, NA, NA, NA, NA, NA, NA, NA, NA),
  827. PINGROUP(14, qpic, qdss_traceclk_b, NA, NA, NA, NA, NA, NA, NA),
  828. PINGROUP(15, qpic, qdss_tracectl_b, NA, NA, NA, NA, NA, NA, NA),
  829. PINGROUP(16, qpic, blsp5_uart, pcm_zsi1, blsp5_spi, cxc0, mac1_sa3,
  830. qdss_tracedata_b, NA, NA),
  831. PINGROUP(17, qpic, wci2c, qdss_tracedata_b, NA, NA, NA, NA, NA, NA),
  832. PINGROUP(18, led0, pwm0, qdss_tracedata_b, NA, NA, NA, NA, NA, NA),
  833. PINGROUP(19, led1, pwm1, NA, qdss_tracedata_b, NA, NA, NA, NA, NA),
  834. PINGROUP(20, led2, pwm2, NA, qdss_tracedata_b, NA, NA, NA, NA, NA),
  835. PINGROUP(21, pwm0, blsp4_uart1, blsp4_i2c1, blsp4_spi1, wci2d, mac1_sa1,
  836. blsp3_spi2, NA, qdss_tracedata_b),
  837. PINGROUP(22, pwm1, blsp4_uart1, blsp4_i2c1, blsp4_spi1, wci2d, mac1_sa1,
  838. blsp3_spi2, NA, qdss_tracedata_b),
  839. PINGROUP(23, pwm2, blsp4_uart1, blsp4_spi1, blsp3_spi2, NA,
  840. qdss_tracedata_b, NA, NA, NA),
  841. PINGROUP(24, pwm3, blsp4_uart1, blsp4_spi1, NA, qdss_tracedata_b, NA,
  842. NA, NA, NA),
  843. PINGROUP(25, audio_txmclk, pwm0, NA, qdss_tracedata_b, NA, NA, NA, NA,
  844. NA),
  845. PINGROUP(26, audio_txbclk, pwm1, NA, qdss_tracedata_b, NA, NA, NA, NA,
  846. NA),
  847. PINGROUP(27, audio_txfsync, pwm2, NA, qdss_tracedata_b, NA, NA, NA,
  848. NA, NA),
  849. PINGROUP(28, audio_txd, pwm3, NA, qdss_tracedata_b, NA, NA, NA, NA,
  850. NA),
  851. PINGROUP(29, audio_rxmclk, pwm0, atest_char0, NA, qdss_tracedata_b,
  852. NA, NA, NA, NA),
  853. PINGROUP(30, audio_rxbclk, pwm1, atest_char1, NA, qdss_tracedata_b,
  854. NA, NA, NA, NA),
  855. PINGROUP(31, audio_rxfsync, pwm2, atest_char2, NA, qdss_tracedata_b,
  856. NA, NA, NA, NA),
  857. PINGROUP(32, audio_rxd, pwm3, atest_char3, NA, NA, NA, NA, NA, NA),
  858. PINGROUP(33, pcm_drx, mac1_sa0, mac0_sa0, NA, NA, NA, NA, NA, NA),
  859. PINGROUP(34, pcm_dtx, mac1_sa0, mac0_sa0, NA, NA, NA, NA, NA, NA),
  860. PINGROUP(35, pcm_fsync, mac2_sa0, qdss_traceclk_a, NA, NA, NA, NA, NA, NA),
  861. PINGROUP(36, pcm_pclk, mac2_sa0, NA, qdss_tracectl_a, NA, NA, NA, NA, NA),
  862. PINGROUP(37, atest_char, NA, qdss_tracedata_a, NA, NA, NA, NA, NA, NA),
  863. PINGROUP(38, blsp0_uart, blsp0_i2c, blsp0_spi, NA, qdss_tracedata_a,
  864. NA, NA, NA, NA),
  865. PINGROUP(39, blsp0_uart, blsp0_i2c, blsp0_spi, NA, qdss_tracedata_a,
  866. NA, NA, NA, NA),
  867. PINGROUP(40, blsp0_uart, blsp0_spi, NA, qdss_tracedata_a, NA, NA, NA,
  868. NA, NA),
  869. PINGROUP(41, blsp0_uart, blsp0_spi, NA, qdss_tracedata_a, NA, NA, NA,
  870. NA, NA),
  871. PINGROUP(42, blsp1_uart, blsp1_i2c, blsp1_spi, NA, qdss_tracedata_a,
  872. NA, NA, NA, NA),
  873. PINGROUP(43, blsp1_uart, blsp1_i2c, blsp1_spi, NA, qdss_tracedata_a,
  874. NA, NA, NA, NA),
  875. PINGROUP(44, blsp1_uart, blsp1_spi, NA, qdss_tracedata_a, NA, NA, NA,
  876. NA, NA),
  877. PINGROUP(45, blsp1_uart, blsp1_spi, qdss_tracedata_a, NA, NA, NA, NA,
  878. NA, NA),
  879. PINGROUP(46, blsp2_uart, blsp2_i2c, blsp2_spi, qdss_tracedata_a, NA,
  880. NA, NA, NA, NA),
  881. PINGROUP(47, blsp2_uart, blsp2_i2c, blsp2_spi, NA, qdss_tracedata_a,
  882. NA, NA, NA, NA),
  883. PINGROUP(48, blsp2_uart, blsp2_spi, NA, qdss_tracedata_a, NA, NA, NA,
  884. NA, NA),
  885. PINGROUP(49, blsp2_uart, blsp2_spi, NA, qdss_tracedata_a, NA, NA, NA,
  886. NA, NA),
  887. PINGROUP(50, blsp3_uart, blsp3_i2c, blsp3_spi, NA, qdss_tracedata_a,
  888. NA, NA, NA, NA),
  889. PINGROUP(51, blsp3_uart, blsp3_i2c, blsp3_spi, NA, qdss_tracedata_a,
  890. NA, NA, NA, NA),
  891. PINGROUP(52, blsp3_uart, blsp3_spi, NA, qdss_tracedata_a, NA, NA, NA,
  892. NA, NA),
  893. PINGROUP(53, blsp3_uart, blsp3_spi, NA, NA, NA, NA, NA, NA, NA),
  894. PINGROUP(54, pta2_0, wci2b, cxc1, blsp3_spi1, NA, NA, NA, NA, NA),
  895. PINGROUP(55, pta2_1, blsp3_spi1, NA, NA, NA, NA, NA, NA, NA),
  896. PINGROUP(56, pta2_2, wci2b, cxc1, blsp3_spi1, NA, NA, NA, NA, NA),
  897. PINGROUP(57, pcie0_clk, NA, dbg_out, cri_trng0, NA, NA, NA, NA, NA),
  898. PINGROUP(58, pcie0_rst, NA, cri_trng1, NA, NA, NA, NA, NA, NA),
  899. PINGROUP(59, pcie0_wake, NA, cri_trng, NA, NA, NA, NA, NA, NA),
  900. PINGROUP(60, pcie1_clk, rx2, ldo_update, NA, NA, NA, NA, NA, NA),
  901. PINGROUP(61, pcie1_rst, ldo_en, NA, NA, NA, NA, NA, NA, NA),
  902. PINGROUP(62, pcie1_wake, gcc_plltest, NA, NA, NA, NA, NA, NA, NA),
  903. PINGROUP(63, sd_card, pwm0, NA, gcc_plltest, NA, NA, NA, NA, NA),
  904. PINGROUP(64, pta1_1, pwm1, NA, rx1, NA, NA, NA, NA, NA),
  905. PINGROUP(65, pta1_2, NA, gcc_tlmm, NA, NA, NA, NA, NA, NA),
  906. PINGROUP(66, pta1_0, pwm2, prng_rosc, NA, NA, NA, NA, NA, NA),
  907. PINGROUP(67, sd_write, pwm3, rx0, tsens_max, NA, NA, NA, NA, NA),
  908. PINGROUP(68, mdc, NA, NA, NA, NA, NA, NA, NA, NA),
  909. PINGROUP(69, mdio, NA, NA, NA, NA, NA, NA, NA, NA),
  910. };
  911. static const struct msm_pinctrl_soc_data ipq8074_pinctrl = {
  912. .pins = ipq8074_pins,
  913. .npins = ARRAY_SIZE(ipq8074_pins),
  914. .functions = ipq8074_functions,
  915. .nfunctions = ARRAY_SIZE(ipq8074_functions),
  916. .groups = ipq8074_groups,
  917. .ngroups = ARRAY_SIZE(ipq8074_groups),
  918. .ngpios = 70,
  919. };
  920. static int ipq8074_pinctrl_probe(struct platform_device *pdev)
  921. {
  922. return msm_pinctrl_probe(pdev, &ipq8074_pinctrl);
  923. }
  924. static const struct of_device_id ipq8074_pinctrl_of_match[] = {
  925. { .compatible = "qcom,ipq8074-pinctrl", },
  926. { },
  927. };
  928. static struct platform_driver ipq8074_pinctrl_driver = {
  929. .driver = {
  930. .name = "ipq8074-pinctrl",
  931. .of_match_table = ipq8074_pinctrl_of_match,
  932. },
  933. .probe = ipq8074_pinctrl_probe,
  934. .remove = msm_pinctrl_remove,
  935. };
  936. static int __init ipq8074_pinctrl_init(void)
  937. {
  938. return platform_driver_register(&ipq8074_pinctrl_driver);
  939. }
  940. arch_initcall(ipq8074_pinctrl_init);
  941. static void __exit ipq8074_pinctrl_exit(void)
  942. {
  943. platform_driver_unregister(&ipq8074_pinctrl_driver);
  944. }
  945. module_exit(ipq8074_pinctrl_exit);
  946. MODULE_DESCRIPTION("Qualcomm ipq8074 pinctrl driver");
  947. MODULE_LICENSE("GPL v2");
  948. MODULE_DEVICE_TABLE(of, ipq8074_pinctrl_of_match);