pinctrl-lpi.c 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976
  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. static bool initial_boot = false;
  58. /* The index of each function in lpi_gpio_functions[] array */
  59. enum lpi_gpio_func_index {
  60. LPI_GPIO_FUNC_INDEX_GPIO = 0x00,
  61. LPI_GPIO_FUNC_INDEX_FUNC1 = 0x01,
  62. LPI_GPIO_FUNC_INDEX_FUNC2 = 0x02,
  63. LPI_GPIO_FUNC_INDEX_FUNC3 = 0x03,
  64. LPI_GPIO_FUNC_INDEX_FUNC4 = 0x04,
  65. LPI_GPIO_FUNC_INDEX_FUNC5 = 0x05,
  66. };
  67. /**
  68. * struct lpi_gpio_pad - keep current GPIO settings
  69. * @offset: stores one of gpio_offset or slew_offset at a given time.
  70. * @gpio_offset: Nth GPIO in supported GPIOs.
  71. * @slew_offset: Nth GPIO's position in slew register in supported GPIOs.
  72. * @output_enabled: Set to true if GPIO output logic is enabled.
  73. * @value: value of a pin
  74. * @base: stores one of gpio_base or slew_base at a given time.
  75. * @gpio_base: Address base of LPI GPIO PAD.
  76. * @slew_base: Address base of LPI SLEW PAD.
  77. * @lpi_slew_reg: Address for lpi slew reg.
  78. * @pullup: Constant current which flow through GPIO output buffer.
  79. * @strength: No, Low, Medium, High
  80. * @function: See lpi_gpio_functions[]
  81. */
  82. struct lpi_gpio_pad {
  83. u32 offset;
  84. u32 gpio_offset;
  85. u32 slew_offset;
  86. bool output_enabled;
  87. bool value;
  88. char __iomem *base;
  89. char __iomem *gpio_base;
  90. char __iomem *slew_base;
  91. char __iomem *lpi_slew_reg;
  92. unsigned int pullup;
  93. unsigned int strength;
  94. unsigned int function;
  95. };
  96. struct lpi_gpio_state {
  97. struct device *dev;
  98. struct pinctrl_dev *ctrl;
  99. struct gpio_chip chip;
  100. char __iomem *base;
  101. struct clk *lpass_core_hw_vote;
  102. struct clk *lpass_audio_hw_vote;
  103. struct mutex slew_access_lock;
  104. bool core_hw_vote_status;
  105. struct mutex core_hw_vote_lock;
  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 int lpi_notifier_service_cb(struct notifier_block *this,
  410. unsigned long opcode, void *ptr)
  411. {
  412. pr_debug("%s: Service opcode 0x%lx\n", __func__, opcode);
  413. switch (opcode) {
  414. case AUDIO_NOTIFIER_SERVICE_DOWN:
  415. if (initial_boot) {
  416. initial_boot = false;
  417. break;
  418. }
  419. lpi_dev_up = false;
  420. break;
  421. case AUDIO_NOTIFIER_SERVICE_UP:
  422. if (initial_boot) {
  423. initial_boot = false;
  424. lpi_dev_up = true;
  425. snd_event_notify(lpi_dev, SND_EVENT_UP);
  426. }
  427. break;
  428. default:
  429. break;
  430. }
  431. return NOTIFY_OK;
  432. }
  433. int lpi_pinctrl_suspend(struct device *dev)
  434. {
  435. int ret = 0;
  436. trace_printk("%s: system suspend\n", __func__);
  437. dev_dbg(dev, "%s: system suspend\n", __func__);
  438. if ((!pm_runtime_enabled(dev) || !pm_runtime_suspended(dev))) {
  439. ret = lpi_pinctrl_runtime_suspend(dev);
  440. if (!ret) {
  441. /*
  442. * Synchronize runtime-pm and system-pm states:
  443. * At this point, we are already suspended. If
  444. * runtime-pm still thinks its active, then
  445. * make sure its status is in sync with HW
  446. * status. The three below calls let the
  447. * runtime-pm know that we are suspended
  448. * already without re-invoking the suspend
  449. * callback
  450. */
  451. pm_runtime_disable(dev);
  452. pm_runtime_set_suspended(dev);
  453. pm_runtime_enable(dev);
  454. }
  455. }
  456. return ret;
  457. }
  458. int lpi_pinctrl_resume(struct device *dev)
  459. {
  460. return 0;
  461. }
  462. static struct notifier_block service_nb = {
  463. .notifier_call = lpi_notifier_service_cb,
  464. .priority = -INT_MAX,
  465. };
  466. static void lpi_pinctrl_ssr_disable(struct device *dev, void *data)
  467. {
  468. trace_printk("%s: enter\n", __func__);
  469. lpi_dev_up = false;
  470. lpi_pinctrl_suspend(dev);
  471. }
  472. static int lpi_pinctrl_ssr_enable(struct device *dev, void *data)
  473. {
  474. struct lpi_gpio_state *state = dev_get_drvdata(lpi_dev);
  475. dev_dbg(dev, "%s: enter\n", __func__);
  476. if (!initial_boot) {
  477. trace_printk("%s: enter\n", __func__);
  478. if (!lpi_dev_up) {
  479. msleep(100);
  480. if (state->lpass_core_hw_vote)
  481. digital_cdc_rsc_mgr_hw_vote_reset(
  482. state->lpass_core_hw_vote);
  483. if (state->lpass_audio_hw_vote)
  484. digital_cdc_rsc_mgr_hw_vote_reset(
  485. state->lpass_audio_hw_vote);
  486. }
  487. lpi_dev_up = true;
  488. }
  489. dev_dbg(dev, "%s: leave\n", __func__);
  490. return 0;
  491. }
  492. static const struct snd_event_ops lpi_pinctrl_ssr_ops = {
  493. .disable = lpi_pinctrl_ssr_disable,
  494. .enable = lpi_pinctrl_ssr_enable,
  495. };
  496. #ifdef CONFIG_DEBUG_FS
  497. #include <linux/seq_file.h>
  498. static unsigned int lpi_regval_to_drive(u32 val)
  499. {
  500. return (val + 1) * 2;
  501. }
  502. static void lpi_gpio_dbg_show_one(struct seq_file *s,
  503. struct pinctrl_dev *pctldev,
  504. struct gpio_chip *chip,
  505. unsigned int offset,
  506. unsigned int gpio)
  507. {
  508. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  509. struct pinctrl_pin_desc pindesc;
  510. struct lpi_gpio_pad *pad;
  511. unsigned int func;
  512. int is_out;
  513. int drive;
  514. int pull;
  515. u32 ctl_reg;
  516. static const char * const pulls[] = {
  517. "no pull",
  518. "pull down",
  519. "keeper",
  520. "pull up"
  521. };
  522. pctldev = pctldev ? : state->ctrl;
  523. pindesc = pctldev->desc->pins[offset];
  524. pad = pctldev->desc->pins[offset].drv_data;
  525. ctl_reg = lpi_gpio_read(pad, LPI_GPIO_REG_DIR_CTL);
  526. is_out = (ctl_reg & LPI_GPIO_REG_DIR_MASK) >> LPI_GPIO_REG_DIR_SHIFT;
  527. ctl_reg = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  528. func = (ctl_reg & LPI_GPIO_REG_FUNCTION_MASK) >>
  529. LPI_GPIO_REG_FUNCTION_SHIFT;
  530. drive = (ctl_reg & LPI_GPIO_REG_OUT_STRENGTH_MASK) >>
  531. LPI_GPIO_REG_OUT_STRENGTH_SHIFT;
  532. pull = (ctl_reg & LPI_GPIO_REG_PULL_MASK) >> LPI_GPIO_REG_PULL_SHIFT;
  533. seq_printf(s, " %-8s: %-3s %d",
  534. pindesc.name, is_out ? "out" : "in", func);
  535. seq_printf(s, " %dmA", lpi_regval_to_drive(drive));
  536. seq_printf(s, " %s", pulls[pull]);
  537. }
  538. static void lpi_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
  539. {
  540. unsigned int gpio = chip->base;
  541. unsigned int i;
  542. for (i = 0; i < chip->ngpio; i++, gpio++) {
  543. lpi_gpio_dbg_show_one(s, NULL, chip, i, gpio);
  544. seq_puts(s, "\n");
  545. }
  546. }
  547. #else
  548. #define lpi_gpio_dbg_show NULL
  549. #endif
  550. static const struct gpio_chip lpi_gpio_template = {
  551. .direction_input = lpi_gpio_direction_input,
  552. .direction_output = lpi_gpio_direction_output,
  553. .get = lpi_gpio_get,
  554. .set = lpi_gpio_set,
  555. .request = gpiochip_generic_request,
  556. .free = gpiochip_generic_free,
  557. .dbg_show = lpi_gpio_dbg_show,
  558. };
  559. static int lpi_pinctrl_probe(struct platform_device *pdev)
  560. {
  561. struct device *dev = &pdev->dev;
  562. struct pinctrl_pin_desc *pindesc;
  563. struct pinctrl_desc *pctrldesc;
  564. struct lpi_gpio_pad *pad, *pads;
  565. struct lpi_gpio_state *state;
  566. int ret, npins, i;
  567. char __iomem *lpi_base;
  568. char __iomem *slew_base;
  569. u32 reg, slew_reg;
  570. struct clk *lpass_core_hw_vote = NULL;
  571. struct clk *lpass_audio_hw_vote = NULL;
  572. ret = of_property_read_u32(dev->of_node, "reg", &reg);
  573. if (ret < 0) {
  574. dev_err(dev, "missing base address\n");
  575. return ret;
  576. }
  577. ret = of_property_read_u32(dev->of_node, "qcom,gpios-count", &npins);
  578. if (ret < 0)
  579. return ret;
  580. WARN_ON(npins > ARRAY_SIZE(lpi_gpio_groups));
  581. ret = of_property_read_u32_array(dev->of_node, "qcom,lpi-offset-tbl",
  582. lpi_offset, npins);
  583. if (ret < 0) {
  584. dev_err(dev, "error in reading lpi offset table: %d\n", ret);
  585. return ret;
  586. }
  587. ret = of_property_read_u32_array(dev->of_node,
  588. "qcom,lpi-slew-offset-tbl",
  589. lpi_slew_offset, npins);
  590. if (ret < 0) {
  591. for (i = 0; i < npins; i++)
  592. lpi_slew_offset[i] = LPI_SLEW_OFFSET_INVALID;
  593. dev_dbg(dev, "%s: error in reading lpi slew offset table: %d\n",
  594. __func__, ret);
  595. }
  596. ret = of_property_read_u32_array(dev->of_node,
  597. "qcom,lpi-slew-base-tbl",
  598. lpi_slew_base, npins);
  599. if (ret < 0) {
  600. for (i = 0; i < npins; i++)
  601. lpi_slew_base[i] = LPI_SLEW_OFFSET_INVALID;
  602. dev_dbg(dev, "%s: error in reading lpi slew table: %d\n",
  603. __func__, ret);
  604. }
  605. state = devm_kzalloc(dev, sizeof(*state), GFP_KERNEL);
  606. if (!state)
  607. return -ENOMEM;
  608. platform_set_drvdata(pdev, state);
  609. state->dev = &pdev->dev;
  610. slew_reg = 0;
  611. ret = of_property_read_u32(dev->of_node, "qcom,slew-reg", &slew_reg);
  612. if (!ret) {
  613. slew_base = devm_ioremap(dev, slew_reg, LPI_SLEW_ADDRESS_SIZE);
  614. if (slew_base == NULL) {
  615. dev_err(dev,
  616. "%s devm_ioremap failed for slew rate reg\n",
  617. __func__);
  618. ret = -ENOMEM;
  619. goto err_io;
  620. }
  621. } else {
  622. slew_base = NULL;
  623. dev_dbg(dev, "error in reading lpi slew register: %d\n",
  624. __func__, ret);
  625. }
  626. pindesc = devm_kcalloc(dev, npins, sizeof(*pindesc), GFP_KERNEL);
  627. if (!pindesc)
  628. return -ENOMEM;
  629. pads = devm_kcalloc(dev, npins, sizeof(*pads), GFP_KERNEL);
  630. if (!pads)
  631. return -ENOMEM;
  632. pctrldesc = devm_kzalloc(dev, sizeof(*pctrldesc), GFP_KERNEL);
  633. if (!pctrldesc)
  634. return -ENOMEM;
  635. pctrldesc->pctlops = &lpi_gpio_pinctrl_ops;
  636. pctrldesc->pmxops = &lpi_gpio_pinmux_ops;
  637. pctrldesc->confops = &lpi_gpio_pinconf_ops;
  638. pctrldesc->owner = THIS_MODULE;
  639. pctrldesc->name = dev_name(dev);
  640. pctrldesc->pins = pindesc;
  641. pctrldesc->npins = npins;
  642. lpi_base = devm_ioremap(dev, reg, LPI_ADDRESS_SIZE);
  643. if (lpi_base == NULL) {
  644. dev_err(dev, "%s devm_ioremap failed\n", __func__);
  645. return -ENOMEM;
  646. }
  647. state->base = lpi_base;
  648. for (i = 0; i < npins; i++, pindesc++) {
  649. pad = &pads[i];
  650. pindesc->drv_data = pad;
  651. pindesc->number = i;
  652. pindesc->name = lpi_gpio_groups[i];
  653. pad->gpio_base = lpi_base;
  654. pad->slew_base = slew_base;
  655. pad->base = pad->gpio_base;
  656. pad->gpio_offset = lpi_offset[i];
  657. pad->slew_offset = lpi_slew_offset[i];
  658. pad->offset = pad->gpio_offset;
  659. pad->lpi_slew_reg = NULL;
  660. if ((lpi_slew_base[i] != LPI_SLEW_OFFSET_INVALID) &&
  661. lpi_slew_base[i])
  662. pad->lpi_slew_reg = devm_ioremap(dev,
  663. lpi_slew_base[i], 0x4);
  664. }
  665. state->chip = lpi_gpio_template;
  666. state->chip.parent = dev;
  667. state->chip.base = -1;
  668. state->chip.ngpio = npins;
  669. state->chip.label = dev_name(dev);
  670. state->chip.of_gpio_n_cells = 2;
  671. state->chip.can_sleep = false;
  672. mutex_init(&state->slew_access_lock);
  673. mutex_init(&state->core_hw_vote_lock);
  674. state->ctrl = devm_pinctrl_register(dev, pctrldesc, state);
  675. if (IS_ERR(state->ctrl))
  676. return PTR_ERR(state->ctrl);
  677. ret = gpiochip_add_data(&state->chip, state);
  678. if (ret) {
  679. dev_err(state->dev, "can't add gpio chip\n");
  680. goto err_chip;
  681. }
  682. ret = gpiochip_add_pin_range(&state->chip, dev_name(dev), 0, 0, npins);
  683. if (ret) {
  684. dev_err(dev, "failed to add pin range\n");
  685. goto err_range;
  686. }
  687. lpi_dev = &pdev->dev;
  688. lpi_dev_up = true;
  689. initial_boot = true;
  690. ret = snd_event_client_register(dev, &lpi_pinctrl_ssr_ops, NULL);
  691. if (!ret) {
  692. snd_event_notify(dev, SND_EVENT_UP);
  693. } else {
  694. dev_err(dev, "%s: snd_event registration failed, ret [%d]\n",
  695. __func__, ret);
  696. goto err_range;
  697. }
  698. ret = audio_notifier_register("lpi_tlmm", AUDIO_NOTIFIER_ADSP_DOMAIN,
  699. &service_nb);
  700. if (ret < 0) {
  701. pr_err("%s: Audio notifier register failed ret = %d\n",
  702. __func__, ret);
  703. goto err_range;
  704. }
  705. /* Register LPASS core hw vote */
  706. lpass_core_hw_vote = devm_clk_get(&pdev->dev, "lpass_core_hw_vote");
  707. if (IS_ERR(lpass_core_hw_vote)) {
  708. ret = PTR_ERR(lpass_core_hw_vote);
  709. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  710. __func__, "lpass_core_hw_vote", ret);
  711. lpass_core_hw_vote = NULL;
  712. ret = 0;
  713. }
  714. state->lpass_core_hw_vote = lpass_core_hw_vote;
  715. /* Register LPASS audio hw vote */
  716. lpass_audio_hw_vote = devm_clk_get(&pdev->dev, "lpass_audio_hw_vote");
  717. if (IS_ERR(lpass_audio_hw_vote)) {
  718. ret = PTR_ERR(lpass_audio_hw_vote);
  719. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  720. __func__, "lpass_audio_hw_vote", ret);
  721. lpass_audio_hw_vote = NULL;
  722. ret = 0;
  723. }
  724. state->lpass_audio_hw_vote = lpass_audio_hw_vote;
  725. state->core_hw_vote_status = false;
  726. pm_runtime_set_autosuspend_delay(&pdev->dev, LPI_AUTO_SUSPEND_DELAY);
  727. pm_runtime_use_autosuspend(&pdev->dev);
  728. pm_runtime_set_suspended(&pdev->dev);
  729. pm_runtime_enable(&pdev->dev);
  730. return 0;
  731. //err_snd_evt:
  732. // audio_notifier_deregister("lpi_tlmm");
  733. err_range:
  734. gpiochip_remove(&state->chip);
  735. err_chip:
  736. mutex_destroy(&state->core_hw_vote_lock);
  737. mutex_destroy(&state->slew_access_lock);
  738. err_io:
  739. return ret;
  740. }
  741. static int lpi_pinctrl_remove(struct platform_device *pdev)
  742. {
  743. struct lpi_gpio_state *state = platform_get_drvdata(pdev);
  744. pm_runtime_disable(&pdev->dev);
  745. pm_runtime_set_suspended(&pdev->dev);
  746. snd_event_client_deregister(&pdev->dev);
  747. audio_notifier_deregister("lpi_tlmm");
  748. gpiochip_remove(&state->chip);
  749. mutex_destroy(&state->core_hw_vote_lock);
  750. mutex_destroy(&state->slew_access_lock);
  751. return 0;
  752. }
  753. static const struct of_device_id lpi_pinctrl_of_match[] = {
  754. { .compatible = "qcom,lpi-pinctrl" }, /* Generic */
  755. { },
  756. };
  757. MODULE_DEVICE_TABLE(of, lpi_pinctrl_of_match);
  758. int lpi_pinctrl_runtime_resume(struct device *dev)
  759. {
  760. struct lpi_gpio_state *state = dev_get_drvdata(dev);
  761. int ret = 0;
  762. struct clk *hw_vote = state->lpass_core_hw_vote;
  763. trace_printk("%s: enter\n", __func__);
  764. if (state->lpass_core_hw_vote == NULL) {
  765. dev_dbg(dev, "%s: Invalid core hw node\n", __func__);
  766. if (state->lpass_audio_hw_vote == NULL) {
  767. dev_dbg(dev, "%s: Invalid audio hw node\n", __func__);
  768. return 0;
  769. }
  770. hw_vote = state->lpass_audio_hw_vote;
  771. }
  772. mutex_lock(&state->core_hw_vote_lock);
  773. ret = digital_cdc_rsc_mgr_hw_vote_enable(hw_vote);
  774. if (ret < 0) {
  775. pm_runtime_set_autosuspend_delay(dev,
  776. LPI_AUTO_SUSPEND_DELAY_ERROR);
  777. dev_err(dev, "%s:lpass core hw island enable failed\n",
  778. __func__);
  779. goto exit;
  780. } else {
  781. state->core_hw_vote_status = true;
  782. }
  783. pm_runtime_set_autosuspend_delay(dev, LPI_AUTO_SUSPEND_DELAY);
  784. exit:
  785. mutex_unlock(&state->core_hw_vote_lock);
  786. trace_printk("%s: exit\n", __func__);
  787. return 0;
  788. }
  789. int lpi_pinctrl_runtime_suspend(struct device *dev)
  790. {
  791. struct lpi_gpio_state *state = dev_get_drvdata(dev);
  792. struct clk *hw_vote = state->lpass_core_hw_vote;
  793. trace_printk("%s: enter\n", __func__);
  794. if (state->lpass_core_hw_vote == NULL) {
  795. dev_dbg(dev, "%s: Invalid core hw node\n", __func__);
  796. if (state->lpass_audio_hw_vote == NULL) {
  797. dev_dbg(dev, "%s: Invalid audio hw node\n", __func__);
  798. return 0;
  799. }
  800. hw_vote = state->lpass_audio_hw_vote;
  801. }
  802. mutex_lock(&state->core_hw_vote_lock);
  803. if (state->core_hw_vote_status) {
  804. digital_cdc_rsc_mgr_hw_vote_disable(hw_vote);
  805. state->core_hw_vote_status = false;
  806. }
  807. mutex_unlock(&state->core_hw_vote_lock);
  808. trace_printk("%s: exit\n", __func__);
  809. return 0;
  810. }
  811. static const struct dev_pm_ops lpi_pinctrl_dev_pm_ops = {
  812. SET_SYSTEM_SLEEP_PM_OPS(
  813. lpi_pinctrl_suspend,
  814. lpi_pinctrl_resume
  815. )
  816. SET_RUNTIME_PM_OPS(
  817. lpi_pinctrl_runtime_suspend,
  818. lpi_pinctrl_runtime_resume,
  819. NULL
  820. )
  821. };
  822. static struct platform_driver lpi_pinctrl_driver = {
  823. .driver = {
  824. .name = "qcom-lpi-pinctrl",
  825. .pm = &lpi_pinctrl_dev_pm_ops,
  826. .of_match_table = lpi_pinctrl_of_match,
  827. .suppress_bind_attrs = true,
  828. },
  829. .probe = lpi_pinctrl_probe,
  830. .remove = lpi_pinctrl_remove,
  831. };
  832. module_platform_driver(lpi_pinctrl_driver);
  833. MODULE_DESCRIPTION("QTI LPI GPIO pin control driver");
  834. MODULE_LICENSE("GPL v2");