pinctrl-lpi.c 23 KB

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