pinctrl-lpi.c 16 KB

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