pinctrl-lpi.c 24 KB

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