pinctrl-lpi.c 16 KB

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