pinctrl-lpi.c 22 KB

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