pinctrl-lpi.c 23 KB

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