pinctrl-lpi.c 26 KB

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