pinctrl-lpi.c 24 KB

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