pinctrl-lpi.c 27 KB

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