pinctrl-lpi.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2016-2019, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/gpio.h>
  6. #include <linux/io.h>
  7. #include <linux/module.h>
  8. #include <linux/of.h>
  9. #include <linux/pinctrl/pinconf-generic.h>
  10. #include <linux/pinctrl/pinconf.h>
  11. #include <linux/pinctrl/pinmux.h>
  12. #include <linux/platform_device.h>
  13. #include <linux/slab.h>
  14. #include <linux/types.h>
  15. #include <linux/clk.h>
  16. #include <linux/bitops.h>
  17. #include <soc/snd_event.h>
  18. #include <linux/pm_runtime.h>
  19. #include <dsp/audio_notifier.h>
  20. #include "core.h"
  21. #include "pinctrl-utils.h"
  22. #define LPI_AUTO_SUSPEND_DELAY 100 /* delay in msec */
  23. #define LPI_AUTO_SUSPEND_DELAY_ERROR 1 /* delay in msec */
  24. #define LPI_ADDRESS_SIZE 0x20000
  25. #define LPI_SLEW_ADDRESS_SIZE 0x1000
  26. #define LPI_GPIO_REG_VAL_CTL 0x00
  27. #define LPI_GPIO_REG_DIR_CTL 0x04
  28. #define LPI_SLEW_REG_VAL_CTL 0x00
  29. #define LPI_SLEW_RATE_MAX 0x03
  30. #define LPI_SLEW_BITS_SIZE 0x02
  31. #define LPI_SLEW_OFFSET_INVALID 0xFFFFFFFF
  32. #define LPI_GPIO_REG_PULL_SHIFT 0x0
  33. #define LPI_GPIO_REG_PULL_MASK 0x3
  34. #define LPI_GPIO_REG_FUNCTION_SHIFT 0x2
  35. #define LPI_GPIO_REG_FUNCTION_MASK 0x3C
  36. #define LPI_GPIO_REG_OUT_STRENGTH_SHIFT 0x6
  37. #define LPI_GPIO_REG_OUT_STRENGTH_MASK 0x1C0
  38. #define LPI_GPIO_REG_OE_SHIFT 0x9
  39. #define LPI_GPIO_REG_OE_MASK 0x200
  40. #define LPI_GPIO_REG_DIR_SHIFT 0x1
  41. #define LPI_GPIO_REG_DIR_MASK 0x2
  42. #define LPI_GPIO_BIAS_DISABLE 0x0
  43. #define LPI_GPIO_PULL_DOWN 0x1
  44. #define LPI_GPIO_KEEPER 0x2
  45. #define LPI_GPIO_PULL_UP 0x3
  46. #define LPI_GPIO_FUNC_GPIO "gpio"
  47. #define LPI_GPIO_FUNC_FUNC1 "func1"
  48. #define LPI_GPIO_FUNC_FUNC2 "func2"
  49. #define LPI_GPIO_FUNC_FUNC3 "func3"
  50. #define LPI_GPIO_FUNC_FUNC4 "func4"
  51. #define LPI_GPIO_FUNC_FUNC5 "func5"
  52. static bool lpi_dev_up;
  53. static struct device *lpi_dev;
  54. /* The index of each function in lpi_gpio_functions[] array */
  55. enum lpi_gpio_func_index {
  56. LPI_GPIO_FUNC_INDEX_GPIO = 0x00,
  57. LPI_GPIO_FUNC_INDEX_FUNC1 = 0x01,
  58. LPI_GPIO_FUNC_INDEX_FUNC2 = 0x02,
  59. LPI_GPIO_FUNC_INDEX_FUNC3 = 0x03,
  60. LPI_GPIO_FUNC_INDEX_FUNC4 = 0x04,
  61. LPI_GPIO_FUNC_INDEX_FUNC5 = 0x05,
  62. };
  63. /**
  64. * struct lpi_gpio_pad - keep current GPIO settings
  65. * @offset: stores one of gpio_offset or slew_offset at a given time.
  66. * @gpio_offset: Nth GPIO in supported GPIOs.
  67. * @slew_offset: Nth GPIO's position in slew register in supported GPIOs.
  68. * @output_enabled: Set to true if GPIO output logic is enabled.
  69. * @value: value of a pin
  70. * @base: stores one of gpio_base or slew_base at a given time.
  71. * @gpio_base: Address base of LPI GPIO PAD.
  72. * @slew_base: Address base of LPI SLEW PAD.
  73. * @lpi_slew_reg: Address for lpi slew reg.
  74. * @pullup: Constant current which flow through GPIO output buffer.
  75. * @strength: No, Low, Medium, High
  76. * @function: See lpi_gpio_functions[]
  77. */
  78. struct lpi_gpio_pad {
  79. u32 offset;
  80. u32 gpio_offset;
  81. u32 slew_offset;
  82. bool output_enabled;
  83. bool value;
  84. char __iomem *base;
  85. char __iomem *gpio_base;
  86. char __iomem *slew_base;
  87. char __iomem *lpi_slew_reg;
  88. unsigned int pullup;
  89. unsigned int strength;
  90. unsigned int function;
  91. };
  92. struct lpi_gpio_state {
  93. struct device *dev;
  94. struct pinctrl_dev *ctrl;
  95. struct gpio_chip chip;
  96. char __iomem *base;
  97. struct clk *lpass_core_hw_vote;
  98. struct clk *lpass_audio_hw_vote;
  99. struct mutex slew_access_lock;
  100. bool core_hw_vote_status;
  101. struct mutex core_hw_vote_lock;
  102. };
  103. static const char *const lpi_gpio_groups[] = {
  104. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  105. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  106. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  107. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  108. "gpio29", "gpio30", "gpio31",
  109. };
  110. #define LPI_TLMM_MAX_PINS 100
  111. static u32 lpi_offset[LPI_TLMM_MAX_PINS];
  112. static u32 lpi_slew_offset[LPI_TLMM_MAX_PINS];
  113. static u32 lpi_slew_base[LPI_TLMM_MAX_PINS];
  114. static const char *const lpi_gpio_functions[] = {
  115. [LPI_GPIO_FUNC_INDEX_GPIO] = LPI_GPIO_FUNC_GPIO,
  116. [LPI_GPIO_FUNC_INDEX_FUNC1] = LPI_GPIO_FUNC_FUNC1,
  117. [LPI_GPIO_FUNC_INDEX_FUNC2] = LPI_GPIO_FUNC_FUNC2,
  118. [LPI_GPIO_FUNC_INDEX_FUNC3] = LPI_GPIO_FUNC_FUNC3,
  119. [LPI_GPIO_FUNC_INDEX_FUNC4] = LPI_GPIO_FUNC_FUNC4,
  120. [LPI_GPIO_FUNC_INDEX_FUNC5] = LPI_GPIO_FUNC_FUNC5,
  121. };
  122. int lpi_pinctrl_runtime_suspend(struct device *dev);
  123. static int lpi_gpio_read(struct lpi_gpio_pad *pad, unsigned int addr)
  124. {
  125. int ret = 0;
  126. struct lpi_gpio_state *state = dev_get_drvdata(lpi_dev);
  127. if (!lpi_dev_up) {
  128. pr_err_ratelimited("%s: ADSP is down due to SSR, return\n",
  129. __func__);
  130. return 0;
  131. }
  132. pm_runtime_get_sync(lpi_dev);
  133. mutex_lock(&state->core_hw_vote_lock);
  134. if (!state->core_hw_vote_status) {
  135. pr_err_ratelimited("%s: core hw vote clk is not enabled\n",
  136. __func__);
  137. ret = -EINVAL;
  138. goto err;
  139. }
  140. ret = ioread32(pad->base + pad->offset + addr);
  141. if (ret < 0)
  142. pr_err("%s: read 0x%x failed\n", __func__, addr);
  143. err:
  144. mutex_unlock(&state->core_hw_vote_lock);
  145. pm_runtime_mark_last_busy(lpi_dev);
  146. pm_runtime_put_autosuspend(lpi_dev);
  147. return ret;
  148. }
  149. static int lpi_gpio_write(struct lpi_gpio_pad *pad, unsigned int addr,
  150. unsigned int val)
  151. {
  152. struct lpi_gpio_state *state = dev_get_drvdata(lpi_dev);
  153. int ret = 0;
  154. if (!lpi_dev_up) {
  155. pr_err_ratelimited("%s: ADSP is down due to SSR, return\n",
  156. __func__);
  157. return 0;
  158. }
  159. pm_runtime_get_sync(lpi_dev);
  160. mutex_lock(&state->core_hw_vote_lock);
  161. if (!state->core_hw_vote_status) {
  162. pr_err_ratelimited("%s: core hw vote clk is not enabled\n",
  163. __func__);
  164. ret = -EINVAL;
  165. goto err;
  166. }
  167. iowrite32(val, pad->base + pad->offset + addr);
  168. err:
  169. mutex_unlock(&state->core_hw_vote_lock);
  170. pm_runtime_mark_last_busy(lpi_dev);
  171. pm_runtime_put_autosuspend(lpi_dev);
  172. return ret;
  173. }
  174. static int lpi_gpio_get_groups_count(struct pinctrl_dev *pctldev)
  175. {
  176. /* Every PIN is a group */
  177. return pctldev->desc->npins;
  178. }
  179. static const char *lpi_gpio_get_group_name(struct pinctrl_dev *pctldev,
  180. unsigned int pin)
  181. {
  182. return pctldev->desc->pins[pin].name;
  183. }
  184. static int lpi_gpio_get_group_pins(struct pinctrl_dev *pctldev,
  185. unsigned int pin,
  186. const unsigned int **pins,
  187. unsigned int *num_pins)
  188. {
  189. *pins = &pctldev->desc->pins[pin].number;
  190. *num_pins = 1;
  191. return 0;
  192. }
  193. static const struct pinctrl_ops lpi_gpio_pinctrl_ops = {
  194. .get_groups_count = lpi_gpio_get_groups_count,
  195. .get_group_name = lpi_gpio_get_group_name,
  196. .get_group_pins = lpi_gpio_get_group_pins,
  197. .dt_node_to_map = pinconf_generic_dt_node_to_map_group,
  198. .dt_free_map = pinctrl_utils_free_map,
  199. };
  200. static int lpi_gpio_get_functions_count(struct pinctrl_dev *pctldev)
  201. {
  202. return ARRAY_SIZE(lpi_gpio_functions);
  203. }
  204. static const char *lpi_gpio_get_function_name(struct pinctrl_dev *pctldev,
  205. unsigned int function)
  206. {
  207. return lpi_gpio_functions[function];
  208. }
  209. static int lpi_gpio_get_function_groups(struct pinctrl_dev *pctldev,
  210. unsigned int function,
  211. const char *const **groups,
  212. unsigned *const num_qgroups)
  213. {
  214. *groups = lpi_gpio_groups;
  215. *num_qgroups = pctldev->desc->npins;
  216. return 0;
  217. }
  218. static int lpi_gpio_set_mux(struct pinctrl_dev *pctldev, unsigned int function,
  219. unsigned int pin)
  220. {
  221. struct lpi_gpio_pad *pad;
  222. unsigned int val;
  223. pad = pctldev->desc->pins[pin].drv_data;
  224. pad->function = function;
  225. val = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  226. val &= ~(LPI_GPIO_REG_FUNCTION_MASK);
  227. val |= pad->function << LPI_GPIO_REG_FUNCTION_SHIFT;
  228. lpi_gpio_write(pad, LPI_GPIO_REG_VAL_CTL, val);
  229. return 0;
  230. }
  231. static const struct pinmux_ops lpi_gpio_pinmux_ops = {
  232. .get_functions_count = lpi_gpio_get_functions_count,
  233. .get_function_name = lpi_gpio_get_function_name,
  234. .get_function_groups = lpi_gpio_get_function_groups,
  235. .set_mux = lpi_gpio_set_mux,
  236. };
  237. static int lpi_config_get(struct pinctrl_dev *pctldev,
  238. unsigned int pin, unsigned long *config)
  239. {
  240. unsigned int param = pinconf_to_config_param(*config);
  241. struct lpi_gpio_pad *pad;
  242. unsigned int arg;
  243. pad = pctldev->desc->pins[pin].drv_data;
  244. switch (param) {
  245. case PIN_CONFIG_BIAS_DISABLE:
  246. arg = pad->pullup = LPI_GPIO_BIAS_DISABLE;
  247. break;
  248. case PIN_CONFIG_BIAS_PULL_DOWN:
  249. arg = pad->pullup == LPI_GPIO_PULL_DOWN;
  250. break;
  251. case PIN_CONFIG_BIAS_BUS_HOLD:
  252. arg = pad->pullup = LPI_GPIO_KEEPER;
  253. break;
  254. case PIN_CONFIG_BIAS_PULL_UP:
  255. arg = pad->pullup == LPI_GPIO_PULL_UP;
  256. break;
  257. case PIN_CONFIG_INPUT_ENABLE:
  258. case PIN_CONFIG_OUTPUT:
  259. arg = pad->output_enabled;
  260. break;
  261. default:
  262. return -EINVAL;
  263. }
  264. *config = pinconf_to_config_packed(param, arg);
  265. return 0;
  266. }
  267. static unsigned int lpi_drive_to_regval(u32 arg)
  268. {
  269. return (arg/2 - 1);
  270. }
  271. static int lpi_config_set(struct pinctrl_dev *pctldev, unsigned int pin,
  272. unsigned long *configs, unsigned int nconfs)
  273. {
  274. struct lpi_gpio_pad *pad;
  275. unsigned int param, arg;
  276. int i, ret = 0;
  277. volatile unsigned long val;
  278. struct lpi_gpio_state *state = dev_get_drvdata(pctldev->dev);
  279. pad = pctldev->desc->pins[pin].drv_data;
  280. for (i = 0; i < nconfs; i++) {
  281. param = pinconf_to_config_param(configs[i]);
  282. arg = pinconf_to_config_argument(configs[i]);
  283. dev_dbg(pctldev->dev, "%s: param: %d arg: %d pin: %d\n",
  284. __func__, param, arg, pin);
  285. switch (param) {
  286. case PIN_CONFIG_BIAS_DISABLE:
  287. pad->pullup = LPI_GPIO_BIAS_DISABLE;
  288. break;
  289. case PIN_CONFIG_BIAS_PULL_DOWN:
  290. pad->pullup = LPI_GPIO_PULL_DOWN;
  291. break;
  292. case PIN_CONFIG_BIAS_BUS_HOLD:
  293. pad->pullup = LPI_GPIO_KEEPER;
  294. break;
  295. case PIN_CONFIG_BIAS_PULL_UP:
  296. pad->pullup = LPI_GPIO_PULL_UP;
  297. break;
  298. case PIN_CONFIG_INPUT_ENABLE:
  299. pad->output_enabled = false;
  300. break;
  301. case PIN_CONFIG_OUTPUT:
  302. pad->output_enabled = true;
  303. pad->value = arg;
  304. break;
  305. case PIN_CONFIG_DRIVE_STRENGTH:
  306. pad->strength = arg;
  307. break;
  308. case PIN_CONFIG_SLEW_RATE:
  309. if (pad->slew_base == NULL ||
  310. pad->slew_offset == LPI_SLEW_OFFSET_INVALID) {
  311. dev_dbg(pctldev->dev, "%s: invalid slew settings for pin: %d\n",
  312. __func__, pin);
  313. goto set_gpio;
  314. }
  315. if (arg > LPI_SLEW_RATE_MAX) {
  316. dev_err(pctldev->dev, "%s: invalid slew rate %u for pin: %d\n",
  317. __func__, arg, pin);
  318. goto set_gpio;
  319. }
  320. pad->base = pad->slew_base;
  321. pad->offset = 0;
  322. mutex_lock(&state->slew_access_lock);
  323. if (pad->lpi_slew_reg != NULL) {
  324. pad->base = pad->lpi_slew_reg;
  325. lpi_gpio_write(pad, LPI_SLEW_REG_VAL_CTL, arg);
  326. pad->base = pad->slew_base;
  327. goto slew_exit;
  328. }
  329. val = lpi_gpio_read(pad, LPI_SLEW_REG_VAL_CTL);
  330. pad->offset = pad->slew_offset;
  331. for (i = 0; i < LPI_SLEW_BITS_SIZE; i++) {
  332. if (arg & 0x01)
  333. set_bit(pad->offset, &val);
  334. else
  335. clear_bit(pad->offset, &val);
  336. pad->offset++;
  337. arg = arg >> 1;
  338. }
  339. pad->offset = 0;
  340. lpi_gpio_write(pad, LPI_SLEW_REG_VAL_CTL, val);
  341. slew_exit:
  342. mutex_unlock(&state->slew_access_lock);
  343. break;
  344. default:
  345. ret = -EINVAL;
  346. goto done;
  347. }
  348. }
  349. set_gpio:
  350. pad->base = pad->gpio_base;
  351. pad->offset = pad->gpio_offset;
  352. val = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  353. val &= ~(LPI_GPIO_REG_PULL_MASK | LPI_GPIO_REG_OUT_STRENGTH_MASK |
  354. LPI_GPIO_REG_OE_MASK);
  355. val |= pad->pullup << LPI_GPIO_REG_PULL_SHIFT;
  356. val |= lpi_drive_to_regval(pad->strength) <<
  357. LPI_GPIO_REG_OUT_STRENGTH_SHIFT;
  358. if (pad->output_enabled)
  359. val |= pad->value << LPI_GPIO_REG_OE_SHIFT;
  360. lpi_gpio_write(pad, LPI_GPIO_REG_VAL_CTL, val);
  361. lpi_gpio_write(pad, LPI_GPIO_REG_DIR_CTL,
  362. pad->output_enabled << LPI_GPIO_REG_DIR_SHIFT);
  363. done:
  364. return ret;
  365. }
  366. static const struct pinconf_ops lpi_gpio_pinconf_ops = {
  367. .is_generic = true,
  368. .pin_config_group_get = lpi_config_get,
  369. .pin_config_group_set = lpi_config_set,
  370. };
  371. static int lpi_gpio_direction_input(struct gpio_chip *chip, unsigned int pin)
  372. {
  373. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  374. unsigned long config;
  375. config = pinconf_to_config_packed(PIN_CONFIG_INPUT_ENABLE, 1);
  376. return lpi_config_set(state->ctrl, pin, &config, 1);
  377. }
  378. static int lpi_gpio_direction_output(struct gpio_chip *chip,
  379. unsigned int pin, int val)
  380. {
  381. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  382. unsigned long config;
  383. config = pinconf_to_config_packed(PIN_CONFIG_OUTPUT, val);
  384. return lpi_config_set(state->ctrl, pin, &config, 1);
  385. }
  386. static int lpi_gpio_get(struct gpio_chip *chip, unsigned int pin)
  387. {
  388. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  389. struct lpi_gpio_pad *pad;
  390. int value;
  391. pad = state->ctrl->desc->pins[pin].drv_data;
  392. value = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  393. return value;
  394. }
  395. static void lpi_gpio_set(struct gpio_chip *chip, unsigned int pin, int value)
  396. {
  397. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  398. unsigned long config;
  399. config = pinconf_to_config_packed(PIN_CONFIG_OUTPUT, value);
  400. lpi_config_set(state->ctrl, pin, &config, 1);
  401. }
  402. static int lpi_notifier_service_cb(struct notifier_block *this,
  403. unsigned long opcode, void *ptr)
  404. {
  405. static bool initial_boot = true;
  406. pr_debug("%s: Service opcode 0x%lx\n", __func__, opcode);
  407. switch (opcode) {
  408. case AUDIO_NOTIFIER_SERVICE_DOWN:
  409. if (initial_boot) {
  410. initial_boot = false;
  411. break;
  412. }
  413. snd_event_notify(lpi_dev, SND_EVENT_DOWN);
  414. lpi_dev_up = false;
  415. break;
  416. case AUDIO_NOTIFIER_SERVICE_UP:
  417. if (initial_boot)
  418. initial_boot = false;
  419. lpi_dev_up = true;
  420. snd_event_notify(lpi_dev, SND_EVENT_UP);
  421. break;
  422. default:
  423. break;
  424. }
  425. return NOTIFY_OK;
  426. }
  427. int lpi_pinctrl_suspend(struct device *dev)
  428. {
  429. int ret = 0;
  430. trace_printk("%s: system suspend\n", __func__);
  431. dev_dbg(dev, "%s: system suspend\n", __func__);
  432. if ((!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev))) {
  433. ret = lpi_pinctrl_runtime_suspend(dev);
  434. if (!ret) {
  435. /*
  436. * Synchronize runtime-pm and system-pm states:
  437. * At this point, we are already suspended. If
  438. * runtime-pm still thinks its active, then
  439. * make sure its status is in sync with HW
  440. * status. The three below calls let the
  441. * runtime-pm know that we are suspended
  442. * already without re-invoking the suspend
  443. * callback
  444. */
  445. pm_runtime_disable(dev);
  446. pm_runtime_set_suspended(dev);
  447. pm_runtime_enable(dev);
  448. }
  449. }
  450. return ret;
  451. }
  452. int lpi_pinctrl_resume(struct device *dev)
  453. {
  454. return 0;
  455. }
  456. static struct notifier_block service_nb = {
  457. .notifier_call = lpi_notifier_service_cb,
  458. .priority = -INT_MAX,
  459. };
  460. static void lpi_pinctrl_ssr_disable(struct device *dev, void *data)
  461. {
  462. trace_printk("%s: enter\n", __func__);
  463. lpi_dev_up = false;
  464. lpi_pinctrl_suspend(dev);
  465. }
  466. static const struct snd_event_ops lpi_pinctrl_ssr_ops = {
  467. .disable = lpi_pinctrl_ssr_disable,
  468. };
  469. #ifdef CONFIG_DEBUG_FS
  470. #include <linux/seq_file.h>
  471. static unsigned int lpi_regval_to_drive(u32 val)
  472. {
  473. return (val + 1) * 2;
  474. }
  475. static void lpi_gpio_dbg_show_one(struct seq_file *s,
  476. struct pinctrl_dev *pctldev,
  477. struct gpio_chip *chip,
  478. unsigned int offset,
  479. unsigned int gpio)
  480. {
  481. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  482. struct pinctrl_pin_desc pindesc;
  483. struct lpi_gpio_pad *pad;
  484. unsigned int func;
  485. int is_out;
  486. int drive;
  487. int pull;
  488. u32 ctl_reg;
  489. static const char * const pulls[] = {
  490. "no pull",
  491. "pull down",
  492. "keeper",
  493. "pull up"
  494. };
  495. pctldev = pctldev ? : state->ctrl;
  496. pindesc = pctldev->desc->pins[offset];
  497. pad = pctldev->desc->pins[offset].drv_data;
  498. ctl_reg = lpi_gpio_read(pad, LPI_GPIO_REG_DIR_CTL);
  499. is_out = (ctl_reg & LPI_GPIO_REG_DIR_MASK) >> LPI_GPIO_REG_DIR_SHIFT;
  500. ctl_reg = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  501. func = (ctl_reg & LPI_GPIO_REG_FUNCTION_MASK) >>
  502. LPI_GPIO_REG_FUNCTION_SHIFT;
  503. drive = (ctl_reg & LPI_GPIO_REG_OUT_STRENGTH_MASK) >>
  504. LPI_GPIO_REG_OUT_STRENGTH_SHIFT;
  505. pull = (ctl_reg & LPI_GPIO_REG_PULL_MASK) >> LPI_GPIO_REG_PULL_SHIFT;
  506. seq_printf(s, " %-8s: %-3s %d",
  507. pindesc.name, is_out ? "out" : "in", func);
  508. seq_printf(s, " %dmA", lpi_regval_to_drive(drive));
  509. seq_printf(s, " %s", pulls[pull]);
  510. }
  511. static void lpi_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
  512. {
  513. unsigned int gpio = chip->base;
  514. unsigned int i;
  515. for (i = 0; i < chip->ngpio; i++, gpio++) {
  516. lpi_gpio_dbg_show_one(s, NULL, chip, i, gpio);
  517. seq_puts(s, "\n");
  518. }
  519. }
  520. #else
  521. #define lpi_gpio_dbg_show NULL
  522. #endif
  523. static const struct gpio_chip lpi_gpio_template = {
  524. .direction_input = lpi_gpio_direction_input,
  525. .direction_output = lpi_gpio_direction_output,
  526. .get = lpi_gpio_get,
  527. .set = lpi_gpio_set,
  528. .request = gpiochip_generic_request,
  529. .free = gpiochip_generic_free,
  530. .dbg_show = lpi_gpio_dbg_show,
  531. };
  532. static int lpi_pinctrl_probe(struct platform_device *pdev)
  533. {
  534. struct device *dev = &pdev->dev;
  535. struct pinctrl_pin_desc *pindesc;
  536. struct pinctrl_desc *pctrldesc;
  537. struct lpi_gpio_pad *pad, *pads;
  538. struct lpi_gpio_state *state;
  539. int ret, npins, i;
  540. char __iomem *lpi_base;
  541. char __iomem *slew_base;
  542. u32 reg, slew_reg;
  543. struct clk *lpass_core_hw_vote = NULL;
  544. struct clk *lpass_audio_hw_vote = NULL;
  545. ret = of_property_read_u32(dev->of_node, "reg", &reg);
  546. if (ret < 0) {
  547. dev_err(dev, "missing base address\n");
  548. return ret;
  549. }
  550. ret = of_property_read_u32(dev->of_node, "qcom,gpios-count", &npins);
  551. if (ret < 0)
  552. return ret;
  553. WARN_ON(npins > ARRAY_SIZE(lpi_gpio_groups));
  554. ret = of_property_read_u32_array(dev->of_node, "qcom,lpi-offset-tbl",
  555. lpi_offset, npins);
  556. if (ret < 0) {
  557. dev_err(dev, "error in reading lpi offset table: %d\n", ret);
  558. return ret;
  559. }
  560. ret = of_property_read_u32_array(dev->of_node,
  561. "qcom,lpi-slew-offset-tbl",
  562. lpi_slew_offset, npins);
  563. if (ret < 0) {
  564. for (i = 0; i < npins; i++)
  565. lpi_slew_offset[i] = LPI_SLEW_OFFSET_INVALID;
  566. dev_dbg(dev, "%s: error in reading lpi slew offset table: %d\n",
  567. __func__, ret);
  568. }
  569. ret = of_property_read_u32_array(dev->of_node,
  570. "qcom,lpi-slew-base-tbl",
  571. lpi_slew_base, npins);
  572. if (ret < 0) {
  573. for (i = 0; i < npins; i++)
  574. lpi_slew_base[i] = LPI_SLEW_OFFSET_INVALID;
  575. dev_dbg(dev, "%s: error in reading lpi slew table: %d\n",
  576. __func__, ret);
  577. }
  578. state = devm_kzalloc(dev, sizeof(*state), GFP_KERNEL);
  579. if (!state)
  580. return -ENOMEM;
  581. platform_set_drvdata(pdev, state);
  582. state->dev = &pdev->dev;
  583. slew_reg = 0;
  584. ret = of_property_read_u32(dev->of_node, "qcom,slew-reg", &slew_reg);
  585. if (!ret) {
  586. slew_base = devm_ioremap(dev, slew_reg, LPI_SLEW_ADDRESS_SIZE);
  587. if (slew_base == NULL) {
  588. dev_err(dev,
  589. "%s devm_ioremap failed for slew rate reg\n",
  590. __func__);
  591. ret = -ENOMEM;
  592. goto err_io;
  593. }
  594. } else {
  595. slew_base = NULL;
  596. dev_dbg(dev, "error in reading lpi slew register: %d\n",
  597. __func__, ret);
  598. }
  599. pindesc = devm_kcalloc(dev, npins, sizeof(*pindesc), GFP_KERNEL);
  600. if (!pindesc)
  601. return -ENOMEM;
  602. pads = devm_kcalloc(dev, npins, sizeof(*pads), GFP_KERNEL);
  603. if (!pads)
  604. return -ENOMEM;
  605. pctrldesc = devm_kzalloc(dev, sizeof(*pctrldesc), GFP_KERNEL);
  606. if (!pctrldesc)
  607. return -ENOMEM;
  608. pctrldesc->pctlops = &lpi_gpio_pinctrl_ops;
  609. pctrldesc->pmxops = &lpi_gpio_pinmux_ops;
  610. pctrldesc->confops = &lpi_gpio_pinconf_ops;
  611. pctrldesc->owner = THIS_MODULE;
  612. pctrldesc->name = dev_name(dev);
  613. pctrldesc->pins = pindesc;
  614. pctrldesc->npins = npins;
  615. lpi_base = devm_ioremap(dev, reg, LPI_ADDRESS_SIZE);
  616. if (lpi_base == NULL) {
  617. dev_err(dev, "%s devm_ioremap failed\n", __func__);
  618. return -ENOMEM;
  619. }
  620. state->base = lpi_base;
  621. for (i = 0; i < npins; i++, pindesc++) {
  622. pad = &pads[i];
  623. pindesc->drv_data = pad;
  624. pindesc->number = i;
  625. pindesc->name = lpi_gpio_groups[i];
  626. pad->gpio_base = lpi_base;
  627. pad->slew_base = slew_base;
  628. pad->base = pad->gpio_base;
  629. pad->gpio_offset = lpi_offset[i];
  630. pad->slew_offset = lpi_slew_offset[i];
  631. pad->offset = pad->gpio_offset;
  632. pad->lpi_slew_reg = NULL;
  633. if ((lpi_slew_base[i] != LPI_SLEW_OFFSET_INVALID) &&
  634. lpi_slew_base[i])
  635. pad->lpi_slew_reg = devm_ioremap(dev,
  636. lpi_slew_base[i], 0x4);
  637. }
  638. state->chip = lpi_gpio_template;
  639. state->chip.parent = dev;
  640. state->chip.base = -1;
  641. state->chip.ngpio = npins;
  642. state->chip.label = dev_name(dev);
  643. state->chip.of_gpio_n_cells = 2;
  644. state->chip.can_sleep = false;
  645. mutex_init(&state->slew_access_lock);
  646. mutex_init(&state->core_hw_vote_lock);
  647. state->ctrl = devm_pinctrl_register(dev, pctrldesc, state);
  648. if (IS_ERR(state->ctrl))
  649. return PTR_ERR(state->ctrl);
  650. ret = gpiochip_add_data(&state->chip, state);
  651. if (ret) {
  652. dev_err(state->dev, "can't add gpio chip\n");
  653. goto err_chip;
  654. }
  655. ret = gpiochip_add_pin_range(&state->chip, dev_name(dev), 0, 0, npins);
  656. if (ret) {
  657. dev_err(dev, "failed to add pin range\n");
  658. goto err_range;
  659. }
  660. lpi_dev = &pdev->dev;
  661. lpi_dev_up = true;
  662. ret = audio_notifier_register("lpi_tlmm", AUDIO_NOTIFIER_ADSP_DOMAIN,
  663. &service_nb);
  664. if (ret < 0) {
  665. pr_err("%s: Audio notifier register failed ret = %d\n",
  666. __func__, ret);
  667. goto err_range;
  668. }
  669. ret = snd_event_client_register(dev, &lpi_pinctrl_ssr_ops, NULL);
  670. if (!ret) {
  671. snd_event_notify(dev, SND_EVENT_UP);
  672. } else {
  673. dev_err(dev, "%s: snd_event registration failed, ret [%d]\n",
  674. __func__, ret);
  675. goto err_snd_evt;
  676. }
  677. /* Register LPASS core hw vote */
  678. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  679. if (IS_ERR(lpass_core_hw_vote)) {
  680. ret = PTR_ERR(lpass_core_hw_vote);
  681. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  682. __func__, "lpass_core_hw_vote", ret);
  683. lpass_core_hw_vote = NULL;
  684. ret = 0;
  685. }
  686. state->lpass_core_hw_vote = lpass_core_hw_vote;
  687. /* Register LPASS audio hw vote */
  688. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  689. if (IS_ERR(lpass_audio_hw_vote)) {
  690. ret = PTR_ERR(lpass_audio_hw_vote);
  691. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  692. __func__, "lpass_audio_hw_vote", ret);
  693. lpass_audio_hw_vote = NULL;
  694. ret = 0;
  695. }
  696. state->lpass_audio_hw_vote = lpass_audio_hw_vote;
  697. state->core_hw_vote_status = false;
  698. pm_runtime_set_autosuspend_delay(&pdev->dev, LPI_AUTO_SUSPEND_DELAY);
  699. pm_runtime_use_autosuspend(&pdev->dev);
  700. pm_runtime_set_suspended(&pdev->dev);
  701. pm_runtime_enable(&pdev->dev);
  702. return 0;
  703. err_snd_evt:
  704. audio_notifier_deregister("lpi_tlmm");
  705. err_range:
  706. gpiochip_remove(&state->chip);
  707. err_chip:
  708. mutex_destroy(&state->core_hw_vote_lock);
  709. mutex_destroy(&state->slew_access_lock);
  710. err_io:
  711. return ret;
  712. }
  713. static int lpi_pinctrl_remove(struct platform_device *pdev)
  714. {
  715. struct lpi_gpio_state *state = platform_get_drvdata(pdev);
  716. pm_runtime_disable(&pdev->dev);
  717. pm_runtime_set_suspended(&pdev->dev);
  718. snd_event_client_deregister(&pdev->dev);
  719. audio_notifier_deregister("lpi_tlmm");
  720. gpiochip_remove(&state->chip);
  721. mutex_destroy(&state->core_hw_vote_lock);
  722. mutex_destroy(&state->slew_access_lock);
  723. return 0;
  724. }
  725. static const struct of_device_id lpi_pinctrl_of_match[] = {
  726. { .compatible = "qcom,lpi-pinctrl" }, /* Generic */
  727. { },
  728. };
  729. MODULE_DEVICE_TABLE(of, lpi_pinctrl_of_match);
  730. int lpi_pinctrl_runtime_resume(struct device *dev)
  731. {
  732. struct lpi_gpio_state *state = dev_get_drvdata(dev);
  733. int ret = 0;
  734. struct clk *hw_vote = state->lpass_core_hw_vote;
  735. trace_printk("%s: enter\n", __func__);
  736. if (state->lpass_core_hw_vote == NULL) {
  737. dev_dbg(dev, "%s: Invalid core hw node\n", __func__);
  738. if (state->lpass_audio_hw_vote == NULL) {
  739. dev_dbg(dev, "%s: Invalid audio hw node\n", __func__);
  740. return 0;
  741. }
  742. hw_vote = state->lpass_audio_hw_vote;
  743. }
  744. mutex_lock(&state->core_hw_vote_lock);
  745. ret = clk_prepare_enable(hw_vote);
  746. if (ret < 0) {
  747. pm_runtime_set_autosuspend_delay(dev,
  748. LPI_AUTO_SUSPEND_DELAY_ERROR);
  749. dev_err(dev, "%s:lpass core hw island enable failed\n",
  750. __func__);
  751. goto exit;
  752. } else {
  753. state->core_hw_vote_status = true;
  754. }
  755. pm_runtime_set_autosuspend_delay(dev, LPI_AUTO_SUSPEND_DELAY);
  756. exit:
  757. mutex_unlock(&state->core_hw_vote_lock);
  758. trace_printk("%s: exit\n", __func__);
  759. return 0;
  760. }
  761. int lpi_pinctrl_runtime_suspend(struct device *dev)
  762. {
  763. struct lpi_gpio_state *state = dev_get_drvdata(dev);
  764. struct clk *hw_vote = state->lpass_core_hw_vote;
  765. trace_printk("%s: enter\n", __func__);
  766. if (state->lpass_core_hw_vote == NULL) {
  767. dev_dbg(dev, "%s: Invalid core hw node\n", __func__);
  768. if (state->lpass_audio_hw_vote == NULL) {
  769. dev_dbg(dev, "%s: Invalid audio hw node\n", __func__);
  770. return 0;
  771. }
  772. hw_vote = state->lpass_audio_hw_vote;
  773. }
  774. mutex_lock(&state->core_hw_vote_lock);
  775. if (state->core_hw_vote_status) {
  776. clk_disable_unprepare(hw_vote);
  777. state->core_hw_vote_status = false;
  778. }
  779. mutex_unlock(&state->core_hw_vote_lock);
  780. trace_printk("%s: exit\n", __func__);
  781. return 0;
  782. }
  783. static const struct dev_pm_ops lpi_pinctrl_dev_pm_ops = {
  784. SET_SYSTEM_SLEEP_PM_OPS(
  785. lpi_pinctrl_suspend,
  786. lpi_pinctrl_resume
  787. )
  788. SET_RUNTIME_PM_OPS(
  789. lpi_pinctrl_runtime_suspend,
  790. lpi_pinctrl_runtime_resume,
  791. NULL
  792. )
  793. };
  794. static struct platform_driver lpi_pinctrl_driver = {
  795. .driver = {
  796. .name = "qcom-lpi-pinctrl",
  797. .pm = &lpi_pinctrl_dev_pm_ops,
  798. .of_match_table = lpi_pinctrl_of_match,
  799. .suppress_bind_attrs = true,
  800. },
  801. .probe = lpi_pinctrl_probe,
  802. .remove = lpi_pinctrl_remove,
  803. };
  804. module_platform_driver(lpi_pinctrl_driver);
  805. MODULE_DESCRIPTION("QTI LPI GPIO pin control driver");
  806. MODULE_LICENSE("GPL v2");