pinctrl-lpi.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. /*
  2. * Copyright (c) 2016-2018, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/gpio.h>
  14. #include <linux/io.h>
  15. #include <linux/module.h>
  16. #include <linux/of.h>
  17. #include <linux/pinctrl/pinconf-generic.h>
  18. #include <linux/pinctrl/pinconf.h>
  19. #include <linux/pinctrl/pinmux.h>
  20. #include <linux/platform_device.h>
  21. #include <linux/slab.h>
  22. #include <linux/types.h>
  23. #include <linux/clk.h>
  24. #include <soc/snd_event.h>
  25. #include <linux/pm_runtime.h>
  26. #include <dsp/audio_notifier.h>
  27. #include "core.h"
  28. #include "pinctrl-utils.h"
  29. #define LPI_AUTO_SUSPEND_DELAY 1500 /* delay in msec */
  30. #define LPI_ADDRESS_SIZE 0x20000
  31. #define LPI_GPIO_REG_VAL_CTL 0x00
  32. #define LPI_GPIO_REG_DIR_CTL 0x04
  33. #define LPI_GPIO_REG_PULL_SHIFT 0x0
  34. #define LPI_GPIO_REG_PULL_MASK 0x3
  35. #define LPI_GPIO_REG_FUNCTION_SHIFT 0x2
  36. #define LPI_GPIO_REG_FUNCTION_MASK 0x3C
  37. #define LPI_GPIO_REG_OUT_STRENGTH_SHIFT 0x6
  38. #define LPI_GPIO_REG_OUT_STRENGTH_MASK 0x1C0
  39. #define LPI_GPIO_REG_OE_SHIFT 0x9
  40. #define LPI_GPIO_REG_OE_MASK 0x200
  41. #define LPI_GPIO_REG_DIR_SHIFT 0x1
  42. #define LPI_GPIO_REG_DIR_MASK 0x2
  43. #define LPI_GPIO_BIAS_DISABLE 0x0
  44. #define LPI_GPIO_PULL_DOWN 0x1
  45. #define LPI_GPIO_KEEPER 0x2
  46. #define LPI_GPIO_PULL_UP 0x3
  47. #define LPI_GPIO_FUNC_GPIO "gpio"
  48. #define LPI_GPIO_FUNC_FUNC1 "func1"
  49. #define LPI_GPIO_FUNC_FUNC2 "func2"
  50. #define LPI_GPIO_FUNC_FUNC3 "func3"
  51. #define LPI_GPIO_FUNC_FUNC4 "func4"
  52. #define LPI_GPIO_FUNC_FUNC5 "func5"
  53. static bool lpi_dev_up;
  54. static struct device *lpi_dev;
  55. /* The index of each function in lpi_gpio_functions[] array */
  56. enum lpi_gpio_func_index {
  57. LPI_GPIO_FUNC_INDEX_GPIO = 0x00,
  58. LPI_GPIO_FUNC_INDEX_FUNC1 = 0x01,
  59. LPI_GPIO_FUNC_INDEX_FUNC2 = 0x02,
  60. LPI_GPIO_FUNC_INDEX_FUNC3 = 0x03,
  61. LPI_GPIO_FUNC_INDEX_FUNC4 = 0x04,
  62. LPI_GPIO_FUNC_INDEX_FUNC5 = 0x05,
  63. };
  64. /**
  65. * struct lpi_gpio_pad - keep current GPIO settings
  66. * @offset: Nth GPIO in supported GPIOs.
  67. * @output_enabled: Set to true if GPIO output logic is enabled.
  68. * @value: value of a pin
  69. * @base: Address base of LPI GPIO PAD.
  70. * @pullup: Constant current which flow through GPIO output buffer.
  71. * @strength: No, Low, Medium, High
  72. * @function: See lpi_gpio_functions[]
  73. */
  74. struct lpi_gpio_pad {
  75. u32 offset;
  76. bool output_enabled;
  77. bool value;
  78. char __iomem *base;
  79. unsigned int pullup;
  80. unsigned int strength;
  81. unsigned int function;
  82. };
  83. struct lpi_gpio_state {
  84. struct device *dev;
  85. struct pinctrl_dev *ctrl;
  86. struct gpio_chip chip;
  87. char __iomem *base;
  88. struct clk *lpass_npa_rsc_island;
  89. };
  90. static const char *const lpi_gpio_groups[] = {
  91. "gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
  92. "gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
  93. "gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
  94. "gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
  95. "gpio29", "gpio30", "gpio31",
  96. };
  97. #define LPI_TLMM_MAX_PINS 100
  98. static u32 lpi_offset[LPI_TLMM_MAX_PINS];
  99. static const char *const lpi_gpio_functions[] = {
  100. [LPI_GPIO_FUNC_INDEX_GPIO] = LPI_GPIO_FUNC_GPIO,
  101. [LPI_GPIO_FUNC_INDEX_FUNC1] = LPI_GPIO_FUNC_FUNC1,
  102. [LPI_GPIO_FUNC_INDEX_FUNC2] = LPI_GPIO_FUNC_FUNC2,
  103. [LPI_GPIO_FUNC_INDEX_FUNC3] = LPI_GPIO_FUNC_FUNC3,
  104. [LPI_GPIO_FUNC_INDEX_FUNC4] = LPI_GPIO_FUNC_FUNC4,
  105. [LPI_GPIO_FUNC_INDEX_FUNC5] = LPI_GPIO_FUNC_FUNC5,
  106. };
  107. static int lpi_gpio_read(struct lpi_gpio_pad *pad, unsigned int addr)
  108. {
  109. int ret;
  110. if (!lpi_dev_up) {
  111. pr_err_ratelimited("%s: ADSP is down due to SSR, return\n",
  112. __func__);
  113. return 0;
  114. }
  115. pm_runtime_get_sync(lpi_dev);
  116. ret = ioread32(pad->base + pad->offset + addr);
  117. if (ret < 0)
  118. pr_err("%s: read 0x%x failed\n", __func__, addr);
  119. pm_runtime_mark_last_busy(lpi_dev);
  120. pm_runtime_put_autosuspend(lpi_dev);
  121. return ret;
  122. }
  123. static int lpi_gpio_write(struct lpi_gpio_pad *pad, unsigned int addr,
  124. unsigned int val)
  125. {
  126. if (!lpi_dev_up) {
  127. pr_err_ratelimited("%s: ADSP is down due to SSR, return\n",
  128. __func__);
  129. return 0;
  130. }
  131. pm_runtime_get_sync(lpi_dev);
  132. iowrite32(val, pad->base + pad->offset + addr);
  133. pm_runtime_mark_last_busy(lpi_dev);
  134. pm_runtime_put_autosuspend(lpi_dev);
  135. return 0;
  136. }
  137. static int lpi_gpio_get_groups_count(struct pinctrl_dev *pctldev)
  138. {
  139. /* Every PIN is a group */
  140. return pctldev->desc->npins;
  141. }
  142. static const char *lpi_gpio_get_group_name(struct pinctrl_dev *pctldev,
  143. unsigned int pin)
  144. {
  145. return pctldev->desc->pins[pin].name;
  146. }
  147. static int lpi_gpio_get_group_pins(struct pinctrl_dev *pctldev,
  148. unsigned int pin,
  149. const unsigned int **pins,
  150. unsigned int *num_pins)
  151. {
  152. *pins = &pctldev->desc->pins[pin].number;
  153. *num_pins = 1;
  154. return 0;
  155. }
  156. static const struct pinctrl_ops lpi_gpio_pinctrl_ops = {
  157. .get_groups_count = lpi_gpio_get_groups_count,
  158. .get_group_name = lpi_gpio_get_group_name,
  159. .get_group_pins = lpi_gpio_get_group_pins,
  160. .dt_node_to_map = pinconf_generic_dt_node_to_map_group,
  161. .dt_free_map = pinctrl_utils_free_map,
  162. };
  163. static int lpi_gpio_get_functions_count(struct pinctrl_dev *pctldev)
  164. {
  165. return ARRAY_SIZE(lpi_gpio_functions);
  166. }
  167. static const char *lpi_gpio_get_function_name(struct pinctrl_dev *pctldev,
  168. unsigned int function)
  169. {
  170. return lpi_gpio_functions[function];
  171. }
  172. static int lpi_gpio_get_function_groups(struct pinctrl_dev *pctldev,
  173. unsigned int function,
  174. const char *const **groups,
  175. unsigned *const num_qgroups)
  176. {
  177. *groups = lpi_gpio_groups;
  178. *num_qgroups = pctldev->desc->npins;
  179. return 0;
  180. }
  181. static int lpi_gpio_set_mux(struct pinctrl_dev *pctldev, unsigned int function,
  182. unsigned int pin)
  183. {
  184. struct lpi_gpio_pad *pad;
  185. unsigned int val;
  186. pad = pctldev->desc->pins[pin].drv_data;
  187. pad->function = function;
  188. val = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  189. val &= ~(LPI_GPIO_REG_FUNCTION_MASK);
  190. val |= pad->function << LPI_GPIO_REG_FUNCTION_SHIFT;
  191. lpi_gpio_write(pad, LPI_GPIO_REG_VAL_CTL, val);
  192. return 0;
  193. }
  194. static const struct pinmux_ops lpi_gpio_pinmux_ops = {
  195. .get_functions_count = lpi_gpio_get_functions_count,
  196. .get_function_name = lpi_gpio_get_function_name,
  197. .get_function_groups = lpi_gpio_get_function_groups,
  198. .set_mux = lpi_gpio_set_mux,
  199. };
  200. static int lpi_config_get(struct pinctrl_dev *pctldev,
  201. unsigned int pin, unsigned long *config)
  202. {
  203. unsigned int param = pinconf_to_config_param(*config);
  204. struct lpi_gpio_pad *pad;
  205. unsigned int arg;
  206. pad = pctldev->desc->pins[pin].drv_data;
  207. switch (param) {
  208. case PIN_CONFIG_BIAS_DISABLE:
  209. arg = pad->pullup = LPI_GPIO_BIAS_DISABLE;
  210. break;
  211. case PIN_CONFIG_BIAS_PULL_DOWN:
  212. arg = pad->pullup == LPI_GPIO_PULL_DOWN;
  213. break;
  214. case PIN_CONFIG_BIAS_BUS_HOLD:
  215. arg = pad->pullup = LPI_GPIO_KEEPER;
  216. break;
  217. case PIN_CONFIG_BIAS_PULL_UP:
  218. arg = pad->pullup == LPI_GPIO_PULL_UP;
  219. break;
  220. case PIN_CONFIG_INPUT_ENABLE:
  221. case PIN_CONFIG_OUTPUT:
  222. arg = pad->output_enabled;
  223. break;
  224. default:
  225. return -EINVAL;
  226. }
  227. *config = pinconf_to_config_packed(param, arg);
  228. return 0;
  229. }
  230. static unsigned int lpi_drive_to_regval(u32 arg)
  231. {
  232. return (arg/2 - 1);
  233. }
  234. static int lpi_config_set(struct pinctrl_dev *pctldev, unsigned int pin,
  235. unsigned long *configs, unsigned int nconfs)
  236. {
  237. struct lpi_gpio_pad *pad;
  238. unsigned int param, arg;
  239. int i, ret = 0, val;
  240. pad = pctldev->desc->pins[pin].drv_data;
  241. for (i = 0; i < nconfs; i++) {
  242. param = pinconf_to_config_param(configs[i]);
  243. arg = pinconf_to_config_argument(configs[i]);
  244. dev_dbg(pctldev->dev, "%s: param: %d arg: %d pin: %d\n",
  245. __func__, param, arg, pin);
  246. switch (param) {
  247. case PIN_CONFIG_BIAS_DISABLE:
  248. pad->pullup = LPI_GPIO_BIAS_DISABLE;
  249. break;
  250. case PIN_CONFIG_BIAS_PULL_DOWN:
  251. pad->pullup = LPI_GPIO_PULL_DOWN;
  252. break;
  253. case PIN_CONFIG_BIAS_BUS_HOLD:
  254. pad->pullup = LPI_GPIO_KEEPER;
  255. break;
  256. case PIN_CONFIG_BIAS_PULL_UP:
  257. pad->pullup = LPI_GPIO_PULL_UP;
  258. break;
  259. case PIN_CONFIG_INPUT_ENABLE:
  260. pad->output_enabled = false;
  261. break;
  262. case PIN_CONFIG_OUTPUT:
  263. pad->output_enabled = true;
  264. pad->value = arg;
  265. break;
  266. case PIN_CONFIG_DRIVE_STRENGTH:
  267. pad->strength = arg;
  268. break;
  269. default:
  270. ret = -EINVAL;
  271. goto done;
  272. }
  273. }
  274. val = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  275. val &= ~(LPI_GPIO_REG_PULL_MASK | LPI_GPIO_REG_OUT_STRENGTH_MASK |
  276. LPI_GPIO_REG_OE_MASK);
  277. val |= pad->pullup << LPI_GPIO_REG_PULL_SHIFT;
  278. val |= lpi_drive_to_regval(pad->strength) <<
  279. LPI_GPIO_REG_OUT_STRENGTH_SHIFT;
  280. if (pad->output_enabled)
  281. val |= pad->value << LPI_GPIO_REG_OE_SHIFT;
  282. lpi_gpio_write(pad, LPI_GPIO_REG_VAL_CTL, val);
  283. lpi_gpio_write(pad, LPI_GPIO_REG_DIR_CTL,
  284. pad->output_enabled << LPI_GPIO_REG_DIR_SHIFT);
  285. done:
  286. return ret;
  287. }
  288. static const struct pinconf_ops lpi_gpio_pinconf_ops = {
  289. .is_generic = true,
  290. .pin_config_group_get = lpi_config_get,
  291. .pin_config_group_set = lpi_config_set,
  292. };
  293. static int lpi_gpio_direction_input(struct gpio_chip *chip, unsigned int pin)
  294. {
  295. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  296. unsigned long config;
  297. config = pinconf_to_config_packed(PIN_CONFIG_INPUT_ENABLE, 1);
  298. return lpi_config_set(state->ctrl, pin, &config, 1);
  299. }
  300. static int lpi_gpio_direction_output(struct gpio_chip *chip,
  301. unsigned int pin, int val)
  302. {
  303. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  304. unsigned long config;
  305. config = pinconf_to_config_packed(PIN_CONFIG_OUTPUT, val);
  306. return lpi_config_set(state->ctrl, pin, &config, 1);
  307. }
  308. static int lpi_gpio_get(struct gpio_chip *chip, unsigned int pin)
  309. {
  310. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  311. struct lpi_gpio_pad *pad;
  312. int value;
  313. pad = state->ctrl->desc->pins[pin].drv_data;
  314. value = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  315. return value;
  316. }
  317. static void lpi_gpio_set(struct gpio_chip *chip, unsigned int pin, int value)
  318. {
  319. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  320. unsigned long config;
  321. config = pinconf_to_config_packed(PIN_CONFIG_OUTPUT, value);
  322. lpi_config_set(state->ctrl, pin, &config, 1);
  323. }
  324. static int lpi_notifier_service_cb(struct notifier_block *this,
  325. unsigned long opcode, void *ptr)
  326. {
  327. static bool initial_boot = true;
  328. pr_debug("%s: Service opcode 0x%lx\n", __func__, opcode);
  329. switch (opcode) {
  330. case AUDIO_NOTIFIER_SERVICE_DOWN:
  331. if (initial_boot) {
  332. initial_boot = false;
  333. break;
  334. }
  335. snd_event_notify(lpi_dev, SND_EVENT_DOWN);
  336. lpi_dev_up = false;
  337. break;
  338. case AUDIO_NOTIFIER_SERVICE_UP:
  339. if (initial_boot)
  340. initial_boot = false;
  341. lpi_dev_up = true;
  342. snd_event_notify(lpi_dev, SND_EVENT_UP);
  343. break;
  344. default:
  345. break;
  346. }
  347. return NOTIFY_OK;
  348. }
  349. static struct notifier_block service_nb = {
  350. .notifier_call = lpi_notifier_service_cb,
  351. .priority = -INT_MAX,
  352. };
  353. static void lpi_pinctrl_ssr_disable(struct device *dev, void *data)
  354. {
  355. lpi_dev_up = false;
  356. }
  357. static const struct snd_event_ops lpi_pinctrl_ssr_ops = {
  358. .disable = lpi_pinctrl_ssr_disable,
  359. };
  360. #ifdef CONFIG_DEBUG_FS
  361. #include <linux/seq_file.h>
  362. static unsigned int lpi_regval_to_drive(u32 val)
  363. {
  364. return (val + 1) * 2;
  365. }
  366. static void lpi_gpio_dbg_show_one(struct seq_file *s,
  367. struct pinctrl_dev *pctldev,
  368. struct gpio_chip *chip,
  369. unsigned int offset,
  370. unsigned int gpio)
  371. {
  372. struct lpi_gpio_state *state = gpiochip_get_data(chip);
  373. struct pinctrl_pin_desc pindesc;
  374. struct lpi_gpio_pad *pad;
  375. unsigned int func;
  376. int is_out;
  377. int drive;
  378. int pull;
  379. u32 ctl_reg;
  380. static const char * const pulls[] = {
  381. "no pull",
  382. "pull down",
  383. "keeper",
  384. "pull up"
  385. };
  386. pctldev = pctldev ? : state->ctrl;
  387. pindesc = pctldev->desc->pins[offset];
  388. pad = pctldev->desc->pins[offset].drv_data;
  389. ctl_reg = lpi_gpio_read(pad, LPI_GPIO_REG_DIR_CTL);
  390. is_out = (ctl_reg & LPI_GPIO_REG_DIR_MASK) >> LPI_GPIO_REG_DIR_SHIFT;
  391. ctl_reg = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
  392. func = (ctl_reg & LPI_GPIO_REG_FUNCTION_MASK) >>
  393. LPI_GPIO_REG_FUNCTION_SHIFT;
  394. drive = (ctl_reg & LPI_GPIO_REG_OUT_STRENGTH_MASK) >>
  395. LPI_GPIO_REG_OUT_STRENGTH_SHIFT;
  396. pull = (ctl_reg & LPI_GPIO_REG_PULL_MASK) >> LPI_GPIO_REG_PULL_SHIFT;
  397. seq_printf(s, " %-8s: %-3s %d",
  398. pindesc.name, is_out ? "out" : "in", func);
  399. seq_printf(s, " %dmA", lpi_regval_to_drive(drive));
  400. seq_printf(s, " %s", pulls[pull]);
  401. }
  402. static void lpi_gpio_dbg_show(struct seq_file *s, struct gpio_chip *chip)
  403. {
  404. unsigned int gpio = chip->base;
  405. unsigned int i;
  406. for (i = 0; i < chip->ngpio; i++, gpio++) {
  407. lpi_gpio_dbg_show_one(s, NULL, chip, i, gpio);
  408. seq_puts(s, "\n");
  409. }
  410. }
  411. #else
  412. #define lpi_gpio_dbg_show NULL
  413. #endif
  414. static const struct gpio_chip lpi_gpio_template = {
  415. .direction_input = lpi_gpio_direction_input,
  416. .direction_output = lpi_gpio_direction_output,
  417. .get = lpi_gpio_get,
  418. .set = lpi_gpio_set,
  419. .request = gpiochip_generic_request,
  420. .free = gpiochip_generic_free,
  421. .dbg_show = lpi_gpio_dbg_show,
  422. };
  423. static int lpi_pinctrl_probe(struct platform_device *pdev)
  424. {
  425. struct device *dev = &pdev->dev;
  426. struct pinctrl_pin_desc *pindesc;
  427. struct pinctrl_desc *pctrldesc;
  428. struct lpi_gpio_pad *pad, *pads;
  429. struct lpi_gpio_state *state;
  430. int ret, npins, i;
  431. char __iomem *lpi_base;
  432. u32 reg;
  433. struct clk *lpass_npa_rsc_island = NULL;
  434. ret = of_property_read_u32(dev->of_node, "reg", &reg);
  435. if (ret < 0) {
  436. dev_err(dev, "missing base address\n");
  437. return ret;
  438. }
  439. ret = of_property_read_u32(dev->of_node, "qcom,num-gpios", &npins);
  440. if (ret < 0)
  441. return ret;
  442. WARN_ON(npins > ARRAY_SIZE(lpi_gpio_groups));
  443. ret = of_property_read_u32_array(dev->of_node, "qcom,lpi-offset-tbl",
  444. lpi_offset, npins);
  445. if (ret < 0) {
  446. dev_err(dev, "error in reading lpi offset table: %d\n", ret);
  447. return ret;
  448. }
  449. state = devm_kzalloc(dev, sizeof(*state), GFP_KERNEL);
  450. if (!state)
  451. return -ENOMEM;
  452. platform_set_drvdata(pdev, state);
  453. state->dev = &pdev->dev;
  454. pindesc = devm_kcalloc(dev, npins, sizeof(*pindesc), GFP_KERNEL);
  455. if (!pindesc)
  456. return -ENOMEM;
  457. pads = devm_kcalloc(dev, npins, sizeof(*pads), GFP_KERNEL);
  458. if (!pads)
  459. return -ENOMEM;
  460. pctrldesc = devm_kzalloc(dev, sizeof(*pctrldesc), GFP_KERNEL);
  461. if (!pctrldesc)
  462. return -ENOMEM;
  463. pctrldesc->pctlops = &lpi_gpio_pinctrl_ops;
  464. pctrldesc->pmxops = &lpi_gpio_pinmux_ops;
  465. pctrldesc->confops = &lpi_gpio_pinconf_ops;
  466. pctrldesc->owner = THIS_MODULE;
  467. pctrldesc->name = dev_name(dev);
  468. pctrldesc->pins = pindesc;
  469. pctrldesc->npins = npins;
  470. lpi_base = devm_ioremap(dev, reg, LPI_ADDRESS_SIZE);
  471. if (lpi_base == NULL) {
  472. dev_err(dev, "%s devm_ioremap failed\n", __func__);
  473. return -ENOMEM;
  474. }
  475. state->base = lpi_base;
  476. for (i = 0; i < npins; i++, pindesc++) {
  477. pad = &pads[i];
  478. pindesc->drv_data = pad;
  479. pindesc->number = i;
  480. pindesc->name = lpi_gpio_groups[i];
  481. pad->base = lpi_base;
  482. pad->offset = lpi_offset[i];
  483. }
  484. state->chip = lpi_gpio_template;
  485. state->chip.parent = dev;
  486. state->chip.base = -1;
  487. state->chip.ngpio = npins;
  488. state->chip.label = dev_name(dev);
  489. state->chip.of_gpio_n_cells = 2;
  490. state->chip.can_sleep = false;
  491. state->ctrl = devm_pinctrl_register(dev, pctrldesc, state);
  492. if (IS_ERR(state->ctrl))
  493. return PTR_ERR(state->ctrl);
  494. ret = gpiochip_add_data(&state->chip, state);
  495. if (ret) {
  496. dev_err(state->dev, "can't add gpio chip\n");
  497. goto err_chip;
  498. }
  499. ret = gpiochip_add_pin_range(&state->chip, dev_name(dev), 0, 0, npins);
  500. if (ret) {
  501. dev_err(dev, "failed to add pin range\n");
  502. goto err_range;
  503. }
  504. lpi_dev = &pdev->dev;
  505. lpi_dev_up = true;
  506. ret = audio_notifier_register("lpi_tlmm", AUDIO_NOTIFIER_ADSP_DOMAIN,
  507. &service_nb);
  508. if (ret < 0) {
  509. pr_err("%s: Audio notifier register failed ret = %d\n",
  510. __func__, ret);
  511. goto err_range;
  512. }
  513. ret = snd_event_client_register(dev, &lpi_pinctrl_ssr_ops, NULL);
  514. if (!ret) {
  515. snd_event_notify(dev, SND_EVENT_UP);
  516. } else {
  517. dev_err(dev, "%s: snd_event registration failed, ret [%d]\n",
  518. __func__, ret);
  519. goto err_snd_evt;
  520. }
  521. /* Register LPASS NPA resource */
  522. lpass_npa_rsc_island = devm_clk_get(&pdev->dev, "island_lpass_npa_rsc");
  523. if (IS_ERR(lpass_npa_rsc_island)) {
  524. ret = PTR_ERR(lpass_npa_rsc_island);
  525. dev_dbg(&pdev->dev, "%s: clk get %s failed %d\n",
  526. __func__, "island_lpass_npa_rsc", ret);
  527. lpass_npa_rsc_island = NULL;
  528. ret = 0;
  529. }
  530. state->lpass_npa_rsc_island = lpass_npa_rsc_island;
  531. pm_runtime_set_autosuspend_delay(&pdev->dev, LPI_AUTO_SUSPEND_DELAY);
  532. pm_runtime_use_autosuspend(&pdev->dev);
  533. pm_runtime_set_suspended(&pdev->dev);
  534. pm_runtime_enable(&pdev->dev);
  535. return 0;
  536. err_snd_evt:
  537. audio_notifier_deregister("lpi_tlmm");
  538. err_range:
  539. gpiochip_remove(&state->chip);
  540. err_chip:
  541. return ret;
  542. }
  543. static int lpi_pinctrl_remove(struct platform_device *pdev)
  544. {
  545. struct lpi_gpio_state *state = platform_get_drvdata(pdev);
  546. pm_runtime_disable(&pdev->dev);
  547. pm_runtime_set_suspended(&pdev->dev);
  548. snd_event_client_deregister(&pdev->dev);
  549. audio_notifier_deregister("lpi_tlmm");
  550. gpiochip_remove(&state->chip);
  551. return 0;
  552. }
  553. static const struct of_device_id lpi_pinctrl_of_match[] = {
  554. { .compatible = "qcom,lpi-pinctrl" }, /* Generic */
  555. { },
  556. };
  557. MODULE_DEVICE_TABLE(of, lpi_pinctrl_of_match);
  558. int lpi_pinctrl_runtime_resume(struct device *dev)
  559. {
  560. struct lpi_gpio_state *state = dev_get_drvdata(dev);
  561. int ret = 0;
  562. if (state->lpass_npa_rsc_island == NULL) {
  563. dev_dbg(dev, "%s: Invalid lpass npa rsc node\n", __func__);
  564. return 0;
  565. }
  566. ret = clk_prepare_enable(state->lpass_npa_rsc_island);
  567. if (ret < 0) {
  568. dev_err(dev, "%s:lpass npa rsc island enable failed\n",
  569. __func__);
  570. }
  571. pm_runtime_set_autosuspend_delay(dev, LPI_AUTO_SUSPEND_DELAY);
  572. return 0;
  573. }
  574. int lpi_pinctrl_runtime_suspend(struct device *dev)
  575. {
  576. struct lpi_gpio_state *state = dev_get_drvdata(dev);
  577. if (state->lpass_npa_rsc_island == NULL) {
  578. dev_dbg(dev, "%s: Invalid lpass npa rsc node\n", __func__);
  579. return 0;
  580. }
  581. clk_disable_unprepare(state->lpass_npa_rsc_island);
  582. return 0;
  583. }
  584. static const struct dev_pm_ops lpi_pinctrl_dev_pm_ops = {
  585. SET_RUNTIME_PM_OPS(
  586. lpi_pinctrl_runtime_suspend,
  587. lpi_pinctrl_runtime_resume,
  588. NULL
  589. )
  590. };
  591. static struct platform_driver lpi_pinctrl_driver = {
  592. .driver = {
  593. .name = "qcom-lpi-pinctrl",
  594. .pm = &lpi_pinctrl_dev_pm_ops,
  595. .of_match_table = lpi_pinctrl_of_match,
  596. },
  597. .probe = lpi_pinctrl_probe,
  598. .remove = lpi_pinctrl_remove,
  599. };
  600. module_platform_driver(lpi_pinctrl_driver);
  601. MODULE_DESCRIPTION("QTI LPI GPIO pin control driver");
  602. MODULE_LICENSE("GPL v2");