pinctrl-lpi.c 25 KB

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