pinctrl-lpi.c 25 KB

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