pinctrl-apq8064.c 20 KB

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