pinctrl-apq8064.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2014, Sony Mobile Communications AB.
  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 apq8064_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, "SDC1_CLK"),
  102. PINCTRL_PIN(91, "SDC1_CMD"),
  103. PINCTRL_PIN(92, "SDC1_DATA"),
  104. PINCTRL_PIN(93, "SDC3_CLK"),
  105. PINCTRL_PIN(94, "SDC3_CMD"),
  106. PINCTRL_PIN(95, "SDC3_DATA"),
  107. };
  108. #define DECLARE_APQ_GPIO_PINS(pin) static const unsigned int gpio##pin##_pins[] = { pin }
  109. DECLARE_APQ_GPIO_PINS(0);
  110. DECLARE_APQ_GPIO_PINS(1);
  111. DECLARE_APQ_GPIO_PINS(2);
  112. DECLARE_APQ_GPIO_PINS(3);
  113. DECLARE_APQ_GPIO_PINS(4);
  114. DECLARE_APQ_GPIO_PINS(5);
  115. DECLARE_APQ_GPIO_PINS(6);
  116. DECLARE_APQ_GPIO_PINS(7);
  117. DECLARE_APQ_GPIO_PINS(8);
  118. DECLARE_APQ_GPIO_PINS(9);
  119. DECLARE_APQ_GPIO_PINS(10);
  120. DECLARE_APQ_GPIO_PINS(11);
  121. DECLARE_APQ_GPIO_PINS(12);
  122. DECLARE_APQ_GPIO_PINS(13);
  123. DECLARE_APQ_GPIO_PINS(14);
  124. DECLARE_APQ_GPIO_PINS(15);
  125. DECLARE_APQ_GPIO_PINS(16);
  126. DECLARE_APQ_GPIO_PINS(17);
  127. DECLARE_APQ_GPIO_PINS(18);
  128. DECLARE_APQ_GPIO_PINS(19);
  129. DECLARE_APQ_GPIO_PINS(20);
  130. DECLARE_APQ_GPIO_PINS(21);
  131. DECLARE_APQ_GPIO_PINS(22);
  132. DECLARE_APQ_GPIO_PINS(23);
  133. DECLARE_APQ_GPIO_PINS(24);
  134. DECLARE_APQ_GPIO_PINS(25);
  135. DECLARE_APQ_GPIO_PINS(26);
  136. DECLARE_APQ_GPIO_PINS(27);
  137. DECLARE_APQ_GPIO_PINS(28);
  138. DECLARE_APQ_GPIO_PINS(29);
  139. DECLARE_APQ_GPIO_PINS(30);
  140. DECLARE_APQ_GPIO_PINS(31);
  141. DECLARE_APQ_GPIO_PINS(32);
  142. DECLARE_APQ_GPIO_PINS(33);
  143. DECLARE_APQ_GPIO_PINS(34);
  144. DECLARE_APQ_GPIO_PINS(35);
  145. DECLARE_APQ_GPIO_PINS(36);
  146. DECLARE_APQ_GPIO_PINS(37);
  147. DECLARE_APQ_GPIO_PINS(38);
  148. DECLARE_APQ_GPIO_PINS(39);
  149. DECLARE_APQ_GPIO_PINS(40);
  150. DECLARE_APQ_GPIO_PINS(41);
  151. DECLARE_APQ_GPIO_PINS(42);
  152. DECLARE_APQ_GPIO_PINS(43);
  153. DECLARE_APQ_GPIO_PINS(44);
  154. DECLARE_APQ_GPIO_PINS(45);
  155. DECLARE_APQ_GPIO_PINS(46);
  156. DECLARE_APQ_GPIO_PINS(47);
  157. DECLARE_APQ_GPIO_PINS(48);
  158. DECLARE_APQ_GPIO_PINS(49);
  159. DECLARE_APQ_GPIO_PINS(50);
  160. DECLARE_APQ_GPIO_PINS(51);
  161. DECLARE_APQ_GPIO_PINS(52);
  162. DECLARE_APQ_GPIO_PINS(53);
  163. DECLARE_APQ_GPIO_PINS(54);
  164. DECLARE_APQ_GPIO_PINS(55);
  165. DECLARE_APQ_GPIO_PINS(56);
  166. DECLARE_APQ_GPIO_PINS(57);
  167. DECLARE_APQ_GPIO_PINS(58);
  168. DECLARE_APQ_GPIO_PINS(59);
  169. DECLARE_APQ_GPIO_PINS(60);
  170. DECLARE_APQ_GPIO_PINS(61);
  171. DECLARE_APQ_GPIO_PINS(62);
  172. DECLARE_APQ_GPIO_PINS(63);
  173. DECLARE_APQ_GPIO_PINS(64);
  174. DECLARE_APQ_GPIO_PINS(65);
  175. DECLARE_APQ_GPIO_PINS(66);
  176. DECLARE_APQ_GPIO_PINS(67);
  177. DECLARE_APQ_GPIO_PINS(68);
  178. DECLARE_APQ_GPIO_PINS(69);
  179. DECLARE_APQ_GPIO_PINS(70);
  180. DECLARE_APQ_GPIO_PINS(71);
  181. DECLARE_APQ_GPIO_PINS(72);
  182. DECLARE_APQ_GPIO_PINS(73);
  183. DECLARE_APQ_GPIO_PINS(74);
  184. DECLARE_APQ_GPIO_PINS(75);
  185. DECLARE_APQ_GPIO_PINS(76);
  186. DECLARE_APQ_GPIO_PINS(77);
  187. DECLARE_APQ_GPIO_PINS(78);
  188. DECLARE_APQ_GPIO_PINS(79);
  189. DECLARE_APQ_GPIO_PINS(80);
  190. DECLARE_APQ_GPIO_PINS(81);
  191. DECLARE_APQ_GPIO_PINS(82);
  192. DECLARE_APQ_GPIO_PINS(83);
  193. DECLARE_APQ_GPIO_PINS(84);
  194. DECLARE_APQ_GPIO_PINS(85);
  195. DECLARE_APQ_GPIO_PINS(86);
  196. DECLARE_APQ_GPIO_PINS(87);
  197. DECLARE_APQ_GPIO_PINS(88);
  198. DECLARE_APQ_GPIO_PINS(89);
  199. static const unsigned int sdc1_clk_pins[] = { 90 };
  200. static const unsigned int sdc1_cmd_pins[] = { 91 };
  201. static const unsigned int sdc1_data_pins[] = { 92 };
  202. static const unsigned int sdc3_clk_pins[] = { 93 };
  203. static const unsigned int sdc3_cmd_pins[] = { 94 };
  204. static const unsigned int sdc3_data_pins[] = { 95 };
  205. #define FUNCTION(fname) \
  206. [APQ_MUX_##fname] = { \
  207. .name = #fname, \
  208. .groups = fname##_groups, \
  209. .ngroups = ARRAY_SIZE(fname##_groups), \
  210. }
  211. #define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9, f10) \
  212. { \
  213. .name = "gpio" #id, \
  214. .pins = gpio##id##_pins, \
  215. .npins = ARRAY_SIZE(gpio##id##_pins), \
  216. .funcs = (int[]){ \
  217. APQ_MUX_gpio, \
  218. APQ_MUX_##f1, \
  219. APQ_MUX_##f2, \
  220. APQ_MUX_##f3, \
  221. APQ_MUX_##f4, \
  222. APQ_MUX_##f5, \
  223. APQ_MUX_##f6, \
  224. APQ_MUX_##f7, \
  225. APQ_MUX_##f8, \
  226. APQ_MUX_##f9, \
  227. APQ_MUX_##f10, \
  228. }, \
  229. .nfuncs = 11, \
  230. .ctl_reg = 0x1000 + 0x10 * id, \
  231. .io_reg = 0x1004 + 0x10 * id, \
  232. .intr_cfg_reg = 0x1008 + 0x10 * id, \
  233. .intr_status_reg = 0x100c + 0x10 * id, \
  234. .intr_target_reg = 0x400 + 0x4 * id, \
  235. .mux_bit = 2, \
  236. .pull_bit = 0, \
  237. .drv_bit = 6, \
  238. .oe_bit = 9, \
  239. .in_bit = 0, \
  240. .out_bit = 1, \
  241. .intr_enable_bit = 0, \
  242. .intr_status_bit = 0, \
  243. .intr_ack_high = 1, \
  244. .intr_target_bit = 0, \
  245. .intr_target_kpss_val = 4, \
  246. .intr_raw_status_bit = 3, \
  247. .intr_polarity_bit = 1, \
  248. .intr_detection_bit = 2, \
  249. .intr_detection_width = 1, \
  250. }
  251. #define SDC_PINGROUP(pg_name, ctl, pull, drv) \
  252. { \
  253. .name = #pg_name, \
  254. .pins = pg_name##_pins, \
  255. .npins = ARRAY_SIZE(pg_name##_pins), \
  256. .ctl_reg = ctl, \
  257. .io_reg = 0, \
  258. .intr_cfg_reg = 0, \
  259. .intr_status_reg = 0, \
  260. .intr_target_reg = 0, \
  261. .mux_bit = -1, \
  262. .pull_bit = pull, \
  263. .drv_bit = drv, \
  264. .oe_bit = -1, \
  265. .in_bit = -1, \
  266. .out_bit = -1, \
  267. .intr_enable_bit = -1, \
  268. .intr_status_bit = -1, \
  269. .intr_target_bit = -1, \
  270. .intr_target_kpss_val = -1, \
  271. .intr_raw_status_bit = -1, \
  272. .intr_polarity_bit = -1, \
  273. .intr_detection_bit = -1, \
  274. .intr_detection_width = -1, \
  275. }
  276. enum apq8064_functions {
  277. APQ_MUX_cam_mclk,
  278. APQ_MUX_codec_mic_i2s,
  279. APQ_MUX_codec_spkr_i2s,
  280. APQ_MUX_gp_clk_0a,
  281. APQ_MUX_gp_clk_0b,
  282. APQ_MUX_gp_clk_1a,
  283. APQ_MUX_gp_clk_1b,
  284. APQ_MUX_gp_clk_2a,
  285. APQ_MUX_gp_clk_2b,
  286. APQ_MUX_gpio,
  287. APQ_MUX_gsbi1,
  288. APQ_MUX_gsbi2,
  289. APQ_MUX_gsbi3,
  290. APQ_MUX_gsbi4,
  291. APQ_MUX_gsbi4_cam_i2c,
  292. APQ_MUX_gsbi5,
  293. APQ_MUX_gsbi5_spi_cs1,
  294. APQ_MUX_gsbi5_spi_cs2,
  295. APQ_MUX_gsbi5_spi_cs3,
  296. APQ_MUX_gsbi6,
  297. APQ_MUX_gsbi6_spi_cs1,
  298. APQ_MUX_gsbi6_spi_cs2,
  299. APQ_MUX_gsbi6_spi_cs3,
  300. APQ_MUX_gsbi7,
  301. APQ_MUX_gsbi7_spi_cs1,
  302. APQ_MUX_gsbi7_spi_cs2,
  303. APQ_MUX_gsbi7_spi_cs3,
  304. APQ_MUX_gsbi_cam_i2c,
  305. APQ_MUX_hdmi,
  306. APQ_MUX_mi2s,
  307. APQ_MUX_riva_bt,
  308. APQ_MUX_riva_fm,
  309. APQ_MUX_riva_wlan,
  310. APQ_MUX_sdc2,
  311. APQ_MUX_sdc4,
  312. APQ_MUX_slimbus,
  313. APQ_MUX_spkr_i2s,
  314. APQ_MUX_tsif1,
  315. APQ_MUX_tsif2,
  316. APQ_MUX_usb2_hsic,
  317. APQ_MUX_ps_hold,
  318. APQ_MUX_NA,
  319. };
  320. static const char * const cam_mclk_groups[] = {
  321. "gpio4" "gpio5"
  322. };
  323. static const char * const codec_mic_i2s_groups[] = {
  324. "gpio34", "gpio35", "gpio36", "gpio37", "gpio38"
  325. };
  326. static const char * const codec_spkr_i2s_groups[] = {
  327. "gpio39", "gpio40", "gpio41", "gpio42"
  328. };
  329. static const char * const gpio_groups[] = {
  330. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  331. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  332. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  333. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  334. "gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
  335. "gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
  336. "gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
  337. "gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
  338. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
  339. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
  340. "gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
  341. "gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
  342. "gpio85", "gpio86", "gpio87", "gpio88", "gpio89"
  343. };
  344. static const char * const gp_clk_0a_groups[] = {
  345. "gpio3"
  346. };
  347. static const char * const gp_clk_0b_groups[] = {
  348. "gpio34"
  349. };
  350. static const char * const gp_clk_1a_groups[] = {
  351. "gpio4"
  352. };
  353. static const char * const gp_clk_1b_groups[] = {
  354. "gpio50"
  355. };
  356. static const char * const gp_clk_2a_groups[] = {
  357. "gpio32"
  358. };
  359. static const char * const gp_clk_2b_groups[] = {
  360. "gpio25"
  361. };
  362. static const char * const ps_hold_groups[] = {
  363. "gpio78"
  364. };
  365. static const char * const gsbi1_groups[] = {
  366. "gpio18", "gpio19", "gpio20", "gpio21"
  367. };
  368. static const char * const gsbi2_groups[] = {
  369. "gpio22", "gpio23", "gpio24", "gpio25"
  370. };
  371. static const char * const gsbi3_groups[] = {
  372. "gpio6", "gpio7", "gpio8", "gpio9"
  373. };
  374. static const char * const gsbi4_groups[] = {
  375. "gpio10", "gpio11", "gpio12", "gpio13"
  376. };
  377. static const char * const gsbi4_cam_i2c_groups[] = {
  378. "gpio10", "gpio11", "gpio12", "gpio13"
  379. };
  380. static const char * const gsbi5_groups[] = {
  381. "gpio51", "gpio52", "gpio53", "gpio54"
  382. };
  383. static const char * const gsbi5_spi_cs1_groups[] = {
  384. "gpio47"
  385. };
  386. static const char * const gsbi5_spi_cs2_groups[] = {
  387. "gpio31"
  388. };
  389. static const char * const gsbi5_spi_cs3_groups[] = {
  390. "gpio32"
  391. };
  392. static const char * const gsbi6_groups[] = {
  393. "gpio14", "gpio15", "gpio16", "gpio17"
  394. };
  395. static const char * const gsbi6_spi_cs1_groups[] = {
  396. "gpio47"
  397. };
  398. static const char * const gsbi6_spi_cs2_groups[] = {
  399. "gpio31"
  400. };
  401. static const char * const gsbi6_spi_cs3_groups[] = {
  402. "gpio32"
  403. };
  404. static const char * const gsbi7_groups[] = {
  405. "gpio82", "gpio83", "gpio84", "gpio85"
  406. };
  407. static const char * const gsbi7_spi_cs1_groups[] = {
  408. "gpio47"
  409. };
  410. static const char * const gsbi7_spi_cs2_groups[] = {
  411. "gpio31"
  412. };
  413. static const char * const gsbi7_spi_cs3_groups[] = {
  414. "gpio32"
  415. };
  416. static const char * const gsbi_cam_i2c_groups[] = {
  417. "gpio10", "gpio11", "gpio12", "gpio13"
  418. };
  419. static const char * const hdmi_groups[] = {
  420. "gpio69", "gpio70", "gpio71", "gpio72"
  421. };
  422. static const char * const mi2s_groups[] = {
  423. "gpio27", "gpio28", "gpio29", "gpio30", "gpio31", "gpio32", "gpio33"
  424. };
  425. static const char * const riva_bt_groups[] = {
  426. "gpio16", "gpio17"
  427. };
  428. static const char * const riva_fm_groups[] = {
  429. "gpio14", "gpio15"
  430. };
  431. static const char * const riva_wlan_groups[] = {
  432. "gpio64", "gpio65", "gpio66", "gpio67", "gpio68"
  433. };
  434. static const char * const sdc2_groups[] = {
  435. "gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62"
  436. };
  437. static const char * const sdc4_groups[] = {
  438. "gpio63", "gpio64", "gpio65", "gpio66", "gpio67", "gpio68"
  439. };
  440. static const char * const slimbus_groups[] = {
  441. "gpio40", "gpio41"
  442. };
  443. static const char * const spkr_i2s_groups[] = {
  444. "gpio47", "gpio48", "gpio49", "gpio50"
  445. };
  446. static const char * const tsif1_groups[] = {
  447. "gpio55", "gpio56", "gpio57"
  448. };
  449. static const char * const tsif2_groups[] = {
  450. "gpio58", "gpio59", "gpio60"
  451. };
  452. static const char * const usb2_hsic_groups[] = {
  453. "gpio88", "gpio89"
  454. };
  455. static const struct msm_function apq8064_functions[] = {
  456. FUNCTION(cam_mclk),
  457. FUNCTION(codec_mic_i2s),
  458. FUNCTION(codec_spkr_i2s),
  459. FUNCTION(gp_clk_0a),
  460. FUNCTION(gp_clk_0b),
  461. FUNCTION(gp_clk_1a),
  462. FUNCTION(gp_clk_1b),
  463. FUNCTION(gp_clk_2a),
  464. FUNCTION(gp_clk_2b),
  465. FUNCTION(gpio),
  466. FUNCTION(gsbi1),
  467. FUNCTION(gsbi2),
  468. FUNCTION(gsbi3),
  469. FUNCTION(gsbi4),
  470. FUNCTION(gsbi4_cam_i2c),
  471. FUNCTION(gsbi5),
  472. FUNCTION(gsbi5_spi_cs1),
  473. FUNCTION(gsbi5_spi_cs2),
  474. FUNCTION(gsbi5_spi_cs3),
  475. FUNCTION(gsbi6),
  476. FUNCTION(gsbi6_spi_cs1),
  477. FUNCTION(gsbi6_spi_cs2),
  478. FUNCTION(gsbi6_spi_cs3),
  479. FUNCTION(gsbi7),
  480. FUNCTION(gsbi7_spi_cs1),
  481. FUNCTION(gsbi7_spi_cs2),
  482. FUNCTION(gsbi7_spi_cs3),
  483. FUNCTION(gsbi_cam_i2c),
  484. FUNCTION(hdmi),
  485. FUNCTION(mi2s),
  486. FUNCTION(riva_bt),
  487. FUNCTION(riva_fm),
  488. FUNCTION(riva_wlan),
  489. FUNCTION(sdc2),
  490. FUNCTION(sdc4),
  491. FUNCTION(slimbus),
  492. FUNCTION(spkr_i2s),
  493. FUNCTION(tsif1),
  494. FUNCTION(tsif2),
  495. FUNCTION(usb2_hsic),
  496. FUNCTION(ps_hold),
  497. };
  498. static const struct msm_pingroup apq8064_groups[] = {
  499. PINGROUP(0, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  500. PINGROUP(1, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  501. PINGROUP(2, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  502. PINGROUP(3, NA, gp_clk_0a, NA, NA, NA, NA, NA, NA, NA, NA),
  503. PINGROUP(4, NA, NA, cam_mclk, gp_clk_1a, NA, NA, NA, NA, NA, NA),
  504. PINGROUP(5, NA, cam_mclk, NA, NA, NA, NA, NA, NA, NA, NA),
  505. PINGROUP(6, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  506. PINGROUP(7, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  507. PINGROUP(8, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  508. PINGROUP(9, gsbi3, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  509. PINGROUP(10, gsbi4, NA, NA, NA, NA, NA, NA, NA, gsbi4_cam_i2c, NA),
  510. PINGROUP(11, gsbi4, NA, NA, NA, NA, NA, NA, NA, NA, gsbi4_cam_i2c),
  511. PINGROUP(12, gsbi4, NA, NA, NA, NA, gsbi4_cam_i2c, NA, NA, NA, NA),
  512. PINGROUP(13, gsbi4, NA, NA, NA, NA, gsbi4_cam_i2c, NA, NA, NA, NA),
  513. PINGROUP(14, riva_fm, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
  514. PINGROUP(15, riva_fm, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
  515. PINGROUP(16, riva_bt, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
  516. PINGROUP(17, riva_bt, gsbi6, NA, NA, NA, NA, NA, NA, NA, NA),
  517. PINGROUP(18, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  518. PINGROUP(19, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  519. PINGROUP(20, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  520. PINGROUP(21, gsbi1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  521. PINGROUP(22, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  522. PINGROUP(23, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  523. PINGROUP(24, gsbi2, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  524. PINGROUP(25, gsbi2, gp_clk_2b, NA, NA, NA, NA, NA, NA, NA, NA),
  525. PINGROUP(26, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  526. PINGROUP(27, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  527. PINGROUP(28, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  528. PINGROUP(29, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  529. PINGROUP(30, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  530. PINGROUP(31, mi2s, NA, gsbi5_spi_cs2, gsbi6_spi_cs2, gsbi7_spi_cs2, NA, NA, NA, NA, NA),
  531. PINGROUP(32, mi2s, gp_clk_2a, NA, NA, NA, gsbi5_spi_cs3, gsbi6_spi_cs3, gsbi7_spi_cs3, NA, NA),
  532. PINGROUP(33, mi2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  533. PINGROUP(34, codec_mic_i2s, gp_clk_0b, NA, NA, NA, NA, NA, NA, NA, NA),
  534. PINGROUP(35, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  535. PINGROUP(36, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  536. PINGROUP(37, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  537. PINGROUP(38, codec_mic_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  538. PINGROUP(39, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  539. PINGROUP(40, slimbus, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA),
  540. PINGROUP(41, slimbus, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA),
  541. PINGROUP(42, codec_spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  542. PINGROUP(43, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  543. PINGROUP(44, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  544. PINGROUP(45, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  545. PINGROUP(46, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  546. PINGROUP(47, spkr_i2s, gsbi5_spi_cs1, gsbi6_spi_cs1, gsbi7_spi_cs1, NA, NA, NA, NA, NA, NA),
  547. PINGROUP(48, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  548. PINGROUP(49, spkr_i2s, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  549. PINGROUP(50, spkr_i2s, gp_clk_1b, NA, NA, NA, NA, NA, NA, NA, NA),
  550. PINGROUP(51, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
  551. PINGROUP(52, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
  552. PINGROUP(53, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
  553. PINGROUP(54, NA, gsbi5, NA, NA, NA, NA, NA, NA, NA, NA),
  554. PINGROUP(55, tsif1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  555. PINGROUP(56, tsif1, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  556. PINGROUP(57, tsif1, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
  557. PINGROUP(58, tsif2, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
  558. PINGROUP(59, tsif2, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
  559. PINGROUP(60, tsif2, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
  560. PINGROUP(61, NA, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
  561. PINGROUP(62, NA, sdc2, NA, NA, NA, NA, NA, NA, NA, NA),
  562. PINGROUP(63, NA, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
  563. PINGROUP(64, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
  564. PINGROUP(65, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
  565. PINGROUP(66, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
  566. PINGROUP(67, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
  567. PINGROUP(68, riva_wlan, sdc4, NA, NA, NA, NA, NA, NA, NA, NA),
  568. PINGROUP(69, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  569. PINGROUP(70, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  570. PINGROUP(71, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  571. PINGROUP(72, hdmi, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  572. PINGROUP(73, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  573. PINGROUP(74, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  574. PINGROUP(75, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  575. PINGROUP(76, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  576. PINGROUP(77, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  577. PINGROUP(78, ps_hold, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  578. PINGROUP(79, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  579. PINGROUP(80, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  580. PINGROUP(81, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  581. PINGROUP(82, NA, gsbi7, NA, NA, NA, NA, NA, NA, NA, NA),
  582. PINGROUP(83, gsbi7, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  583. PINGROUP(84, NA, gsbi7, NA, NA, NA, NA, NA, NA, NA, NA),
  584. PINGROUP(85, NA, NA, gsbi7, NA, NA, NA, NA, NA, NA, NA),
  585. PINGROUP(86, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  586. PINGROUP(87, NA, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  587. PINGROUP(88, usb2_hsic, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  588. PINGROUP(89, usb2_hsic, NA, NA, NA, NA, NA, NA, NA, NA, NA),
  589. SDC_PINGROUP(sdc1_clk, 0x20a0, 13, 6),
  590. SDC_PINGROUP(sdc1_cmd, 0x20a0, 11, 3),
  591. SDC_PINGROUP(sdc1_data, 0x20a0, 9, 0),
  592. SDC_PINGROUP(sdc3_clk, 0x20a4, 14, 6),
  593. SDC_PINGROUP(sdc3_cmd, 0x20a4, 11, 3),
  594. SDC_PINGROUP(sdc3_data, 0x20a4, 9, 0),
  595. };
  596. #define NUM_GPIO_PINGROUPS 90
  597. static const struct msm_pinctrl_soc_data apq8064_pinctrl = {
  598. .pins = apq8064_pins,
  599. .npins = ARRAY_SIZE(apq8064_pins),
  600. .functions = apq8064_functions,
  601. .nfunctions = ARRAY_SIZE(apq8064_functions),
  602. .groups = apq8064_groups,
  603. .ngroups = ARRAY_SIZE(apq8064_groups),
  604. .ngpios = NUM_GPIO_PINGROUPS,
  605. };
  606. static int apq8064_pinctrl_probe(struct platform_device *pdev)
  607. {
  608. return msm_pinctrl_probe(pdev, &apq8064_pinctrl);
  609. }
  610. static const struct of_device_id apq8064_pinctrl_of_match[] = {
  611. { .compatible = "qcom,apq8064-pinctrl", },
  612. { },
  613. };
  614. static struct platform_driver apq8064_pinctrl_driver = {
  615. .driver = {
  616. .name = "apq8064-pinctrl",
  617. .of_match_table = apq8064_pinctrl_of_match,
  618. },
  619. .probe = apq8064_pinctrl_probe,
  620. .remove = msm_pinctrl_remove,
  621. };
  622. static int __init apq8064_pinctrl_init(void)
  623. {
  624. return platform_driver_register(&apq8064_pinctrl_driver);
  625. }
  626. arch_initcall(apq8064_pinctrl_init);
  627. static void __exit apq8064_pinctrl_exit(void)
  628. {
  629. platform_driver_unregister(&apq8064_pinctrl_driver);
  630. }
  631. module_exit(apq8064_pinctrl_exit);
  632. MODULE_AUTHOR("Bjorn Andersson <[email protected]>");
  633. MODULE_DESCRIPTION("Qualcomm APQ8064 pinctrl driver");
  634. MODULE_LICENSE("GPL v2");
  635. MODULE_DEVICE_TABLE(of, apq8064_pinctrl_of_match);