pinctrl-lpi.c 21 KB

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