swr-haptics.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/device.h>
  6. #include <linux/init.h>
  7. #include <linux/module.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/regmap.h>
  10. #include <linux/regulator/consumer.h>
  11. #include <linux/slab.h>
  12. #include <soc/soundwire.h>
  13. #include <sound/soc.h>
  14. #include <sound/soc-dapm.h>
  15. /* SWR register definition */
  16. #define SWR_HAP_ACCESS_BASE 0x3000
  17. #define FIFO_WR_READY_REG (SWR_HAP_ACCESS_BASE + 0x8)
  18. #define NUM_PAT_SMPL_REG (SWR_HAP_ACCESS_BASE + 0x9)
  19. #define SWR_WR_ACCESS_REG (SWR_HAP_ACCESS_BASE + 0xa)
  20. #define CAL_TLRA_STATUS_MSB_REG (SWR_HAP_ACCESS_BASE + 0xb)
  21. #define CAL_TLRA_STATUS_LSB_REG (SWR_HAP_ACCESS_BASE + 0xc)
  22. #define AUTO_RES_CAL_DONE_REG (SWR_HAP_ACCESS_BASE + 0xd)
  23. #define SWR_READ_DATA_REG (SWR_HAP_ACCESS_BASE + 0x80)
  24. #define SWR_PLAY_REG (SWR_HAP_ACCESS_BASE + 0x81)
  25. #define SWR_VMAX_REG (SWR_HAP_ACCESS_BASE + 0x82)
  26. #define SWR_PLAY_BIT BIT(7)
  27. #define SWR_BRAKE_EN_BIT BIT(3)
  28. #define SWR_PLAY_SRC_MASK GENMASK(2, 0)
  29. #define SWR_PLAY_SRC_VAL_SWR 4
  30. #define SWR_HAP_REG_MAX (SWR_HAP_ACCESS_BASE + 0xff)
  31. static struct reg_default swr_hap_reg_defaults[] = {
  32. {FIFO_WR_READY_REG, 1},
  33. {NUM_PAT_SMPL_REG, 8},
  34. {SWR_WR_ACCESS_REG, 1},
  35. {CAL_TLRA_STATUS_MSB_REG, 0},
  36. {CAL_TLRA_STATUS_LSB_REG, 0},
  37. {AUTO_RES_CAL_DONE_REG, 0},
  38. {SWR_READ_DATA_REG, 0},
  39. {SWR_PLAY_REG, 4},
  40. {SWR_VMAX_REG, 0},
  41. };
  42. enum {
  43. PORT_ID_DT_IDX,
  44. CH_MASK_DT_IDX,
  45. CH_RATE_DT_IDX,
  46. NUM_CH_DT_IDX,
  47. PORT_TYPE_DT_IDX,
  48. NUM_SWR_PORT_DT_PARAMS,
  49. };
  50. struct swr_port {
  51. u8 port_id;
  52. u8 ch_mask;
  53. u32 ch_rate;
  54. u8 num_ch;
  55. u8 port_type;
  56. };
  57. struct swr_haptics_dev {
  58. struct device *dev;
  59. struct swr_device *swr_slave;
  60. struct snd_soc_component *component;
  61. struct regmap *regmap;
  62. struct swr_port port;
  63. struct regulator *vdd;
  64. };
  65. static bool swr_hap_volatile_register(struct device *dev, unsigned int reg)
  66. {
  67. switch (reg) {
  68. case SWR_READ_DATA_REG:
  69. case SWR_PLAY_REG:
  70. case SWR_VMAX_REG:
  71. return 1;
  72. default:
  73. return 0;
  74. }
  75. }
  76. static bool swr_hap_readable_register(struct device *dev, unsigned int reg)
  77. {
  78. if (reg <= SWR_HAP_ACCESS_BASE)
  79. return 0;
  80. return 1;
  81. }
  82. static bool swr_hap_writeable_register(struct device *dev, unsigned int reg)
  83. {
  84. if (reg <= SWR_HAP_ACCESS_BASE)
  85. return 0;
  86. switch (reg) {
  87. case FIFO_WR_READY_REG:
  88. case NUM_PAT_SMPL_REG:
  89. case SWR_WR_ACCESS_REG:
  90. case CAL_TLRA_STATUS_MSB_REG:
  91. case CAL_TLRA_STATUS_LSB_REG:
  92. case AUTO_RES_CAL_DONE_REG:
  93. case SWR_READ_DATA_REG:
  94. return 0;
  95. }
  96. return 1;
  97. }
  98. struct regmap_config swr_hap_regmap_config = {
  99. .reg_bits = 16,
  100. .val_bits = 8,
  101. .cache_type = REGCACHE_RBTREE,
  102. .reg_defaults = swr_hap_reg_defaults,
  103. .num_reg_defaults = ARRAY_SIZE(swr_hap_reg_defaults),
  104. .max_register = SWR_HAP_REG_MAX,
  105. .volatile_reg = swr_hap_volatile_register,
  106. .readable_reg = swr_hap_readable_register,
  107. .writeable_reg = swr_hap_writeable_register,
  108. .reg_format_endian = REGMAP_ENDIAN_NATIVE,
  109. .val_format_endian = REGMAP_ENDIAN_NATIVE,
  110. .can_multi_write = true,
  111. };
  112. static const struct snd_kcontrol_new hap_swr_dac_port[] = {
  113. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  114. };
  115. static int hap_enable_swr_dac_port(struct snd_soc_dapm_widget *w,
  116. struct snd_kcontrol *kcontrol, int event)
  117. {
  118. struct snd_soc_component *swr_hap_comp =
  119. snd_soc_dapm_to_component(w->dapm);
  120. struct swr_haptics_dev *swr_hap =
  121. snd_soc_component_get_drvdata(swr_hap_comp);
  122. u8 port_id, ch_mask, num_ch, port_type, num_port;
  123. u32 ch_rate;
  124. unsigned int val;
  125. int rc;
  126. dev_dbg(swr_hap->dev, "%s: %s event %d\n", __func__, w->name, event);
  127. if (!swr_hap)
  128. return -ENODEV;
  129. num_port = 1;
  130. port_id = swr_hap->port.port_id;
  131. ch_mask = swr_hap->port.ch_mask;
  132. ch_rate = swr_hap->port.ch_rate;
  133. num_ch = swr_hap->port.num_ch;
  134. port_type = swr_hap->port.port_type;
  135. switch (event) {
  136. case SND_SOC_DAPM_PRE_PMU:
  137. swr_connect_port(swr_hap->swr_slave, &port_id, num_port,
  138. &ch_mask, &ch_rate, &num_ch, &port_type);
  139. /* trigger SWR play */
  140. val = SWR_PLAY_BIT | SWR_BRAKE_EN_BIT | SWR_PLAY_SRC_VAL_SWR;
  141. rc = regmap_write(swr_hap->regmap, SWR_PLAY_REG, val);
  142. if (rc) {
  143. dev_err(swr_hap->dev, "%s: Enable SWR_PLAY failed, rc=%d\n",
  144. __func__, rc);
  145. return rc;
  146. }
  147. swr_slvdev_datapath_control(swr_hap->swr_slave,
  148. swr_hap->swr_slave->dev_num, true);
  149. break;
  150. case SND_SOC_DAPM_POST_PMD:
  151. swr_slvdev_datapath_control(swr_hap->swr_slave,
  152. swr_hap->swr_slave->dev_num, false);
  153. /* stop SWR play */
  154. val = 0;
  155. rc = regmap_write(swr_hap->regmap, SWR_PLAY_REG, val);
  156. if (rc) {
  157. dev_err(swr_hap->dev, "%s: Enable SWR_PLAY failed, rc=%d\n",
  158. __func__, rc);
  159. return rc;
  160. }
  161. swr_disconnect_port(swr_hap->swr_slave, &port_id, num_port,
  162. &ch_mask, &port_type);
  163. break;
  164. default:
  165. break;
  166. }
  167. return 0;
  168. }
  169. static const struct snd_soc_dapm_widget haptics_comp_dapm_widgets[] = {
  170. SND_SOC_DAPM_INPUT("HAP_IN"),
  171. SND_SOC_DAPM_MIXER_E("SWR DAC_Port", SND_SOC_NOPM, 0, 0,
  172. hap_swr_dac_port, ARRAY_SIZE(hap_swr_dac_port),
  173. hap_enable_swr_dac_port,
  174. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  175. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  176. SND_SOC_DAPM_SPK("HAP_OUT", NULL),
  177. };
  178. static const struct snd_soc_dapm_route haptics_comp_dapm_route[] = {
  179. {"SWR DAC_Port", "Switch", "HAP_IN"},
  180. {"HAP_OUT", NULL, "SWR DAC_Port"},
  181. };
  182. static int haptics_comp_probe(struct snd_soc_component *component)
  183. {
  184. struct snd_soc_dapm_context *dapm;
  185. struct swr_haptics_dev *swr_hap =
  186. snd_soc_component_get_drvdata(component);
  187. if (!swr_hap)
  188. return -EINVAL;
  189. snd_soc_component_init_regmap(component, swr_hap->regmap);
  190. dapm = snd_soc_component_get_dapm(component);
  191. if (dapm && dapm->component) {
  192. snd_soc_dapm_ignore_suspend(dapm, "HAP_IN");
  193. snd_soc_dapm_ignore_suspend(dapm, "HAP_OUT");
  194. }
  195. return 0;
  196. }
  197. static void haptics_comp_remove(struct snd_soc_component *component)
  198. {
  199. }
  200. static const struct snd_soc_component_driver swr_haptics_component = {
  201. .name = "swr-haptics",
  202. .probe = haptics_comp_probe,
  203. .remove = haptics_comp_remove,
  204. .dapm_widgets = haptics_comp_dapm_widgets,
  205. .num_dapm_widgets = ARRAY_SIZE(haptics_comp_dapm_widgets),
  206. .dapm_routes = haptics_comp_dapm_route,
  207. .num_dapm_routes = ARRAY_SIZE(haptics_comp_dapm_route),
  208. };
  209. static int swr_haptics_parse_port_mapping(struct swr_device *sdev)
  210. {
  211. struct swr_haptics_dev *swr_hap = swr_get_dev_data(sdev);
  212. u32 port_cfg[NUM_SWR_PORT_DT_PARAMS];
  213. int rc;
  214. rc = of_property_read_u32_array(sdev->dev.of_node, "qcom,rx_swr_ch_map",
  215. port_cfg, NUM_SWR_PORT_DT_PARAMS);
  216. if (rc < 0) {
  217. dev_err(swr_hap->dev, "%s: Get qcom,rx_swr_ch_map failed, rc=%d\n",
  218. __func__, rc);
  219. return -EINVAL;
  220. }
  221. swr_hap->port.port_id = (u8) port_cfg[PORT_ID_DT_IDX];
  222. swr_hap->port.ch_mask = (u8) port_cfg[CH_MASK_DT_IDX];
  223. swr_hap->port.ch_rate = port_cfg[CH_RATE_DT_IDX];
  224. swr_hap->port.num_ch = (u8) port_cfg[NUM_CH_DT_IDX];
  225. swr_hap->port.port_type = (u8) port_cfg[PORT_TYPE_DT_IDX];
  226. dev_dbg(swr_hap->dev, "%s: port_id = %d, ch_mask = %d, ch_rate = %d, num_ch = %d, port_type = %d\n",
  227. __func__, swr_hap->port.port_id,
  228. swr_hap->port.ch_mask, swr_hap->port.ch_rate,
  229. swr_hap->port.num_ch, swr_hap->port.port_type);
  230. return 0;
  231. }
  232. static int swr_haptics_probe(struct swr_device *sdev)
  233. {
  234. struct swr_haptics_dev *swr_hap;
  235. int rc;
  236. u8 devnum;
  237. swr_hap = devm_kzalloc(&sdev->dev,
  238. sizeof(struct swr_haptics_dev), GFP_KERNEL);
  239. if (!swr_hap)
  240. return -ENOMEM;
  241. swr_hap->swr_slave = sdev;
  242. swr_hap->dev = &sdev->dev;
  243. swr_set_dev_data(sdev, swr_hap);
  244. rc = swr_haptics_parse_port_mapping(sdev);
  245. if (rc < 0) {
  246. dev_err(swr_hap->dev, "%s: failed to parse swr port mapping, rc=%d\n",
  247. __func__, rc);
  248. goto clean;
  249. }
  250. swr_hap->vdd = devm_regulator_get(swr_hap->dev, "swr-slave");
  251. if (IS_ERR(swr_hap->vdd)) {
  252. rc = PTR_ERR(swr_hap->vdd);
  253. if (rc != -EPROBE_DEFER)
  254. dev_err(swr_hap->dev, "%s: get swr-slave-supply failed, rc=%d\n",
  255. __func__, rc);
  256. goto clean;
  257. }
  258. rc = regulator_enable(swr_hap->vdd);
  259. if (rc < 0) {
  260. dev_err(swr_hap->dev, "%s: enable swr-slave-vdd failed, rc=%d\n",
  261. __func__, rc);
  262. goto clean;
  263. }
  264. rc = swr_get_logical_dev_num(sdev, sdev->addr, &devnum);
  265. if (rc) {
  266. dev_err(swr_hap->dev, "%s: failed to get devnum for swr-haptics, rc=%d\n",
  267. __func__, rc);
  268. goto dev_err;
  269. }
  270. sdev->dev_num = devnum;
  271. swr_hap->regmap = devm_regmap_init_swr(sdev, &swr_hap_regmap_config);
  272. if (IS_ERR(swr_hap->regmap)) {
  273. rc = PTR_ERR(swr_hap->regmap);
  274. dev_err(swr_hap->dev, "%s: init regmap failed, rc=%d\n",
  275. __func__, rc);
  276. goto dev_err;
  277. }
  278. rc = snd_soc_register_component(&sdev->dev,
  279. &swr_haptics_component, NULL, 0);
  280. if (rc) {
  281. dev_err(swr_hap->dev, "%s: register swr_haptics component failed, rc=%d\n",
  282. __func__, rc);
  283. goto dev_err;
  284. }
  285. return 0;
  286. dev_err:
  287. regulator_disable(swr_hap->vdd);
  288. swr_remove_device(sdev);
  289. clean:
  290. swr_set_dev_data(sdev, NULL);
  291. return rc;
  292. }
  293. static int swr_haptics_remove(struct swr_device *sdev)
  294. {
  295. struct swr_haptics_dev *swr_hap;
  296. int rc = 0;
  297. swr_hap = swr_get_dev_data(sdev);
  298. if (!swr_hap) {
  299. dev_err(swr_hap->dev, "%s: no data for swr_hap\n", __func__);
  300. goto clean;
  301. }
  302. rc = regulator_disable(swr_hap->vdd);
  303. if (rc < 0) {
  304. dev_err(swr_hap->dev, "%s: disable swr-slave failed, rc=%d\n",
  305. __func__, rc);
  306. goto clean;
  307. }
  308. clean:
  309. snd_soc_unregister_component(&sdev->dev);
  310. swr_set_dev_data(sdev, NULL);
  311. return rc;
  312. }
  313. static int swr_haptics_device_up(struct swr_device *sdev)
  314. {
  315. struct swr_haptics_dev *swr_hap;
  316. int rc;
  317. swr_hap = swr_get_dev_data(sdev);
  318. if (!swr_hap) {
  319. dev_err(swr_hap->dev, "%s: no data for swr_hap\n", __func__);
  320. return -ENODEV;
  321. }
  322. /* Take SWR slave out of reset */
  323. rc = regulator_enable(swr_hap->vdd);
  324. if (rc < 0) {
  325. dev_err(swr_hap->dev, "%s: enable swr-slave failed, rc=%d\n",
  326. __func__, rc);
  327. return rc;
  328. }
  329. return 0;
  330. }
  331. static int swr_haptics_device_down(struct swr_device *sdev)
  332. {
  333. struct swr_haptics_dev *swr_hap = swr_get_dev_data(sdev);
  334. int rc;
  335. unsigned int val;
  336. if (!swr_hap) {
  337. dev_err(swr_hap->dev, "%s: no data for swr_hap\n", __func__);
  338. return -ENODEV;
  339. }
  340. /* Stop SWR play in SSR */
  341. val = 0;
  342. rc = regmap_write(swr_hap->regmap, SWR_PLAY_REG, val);
  343. if (rc) {
  344. dev_err(swr_hap->dev, "%s: disable SWR_PLAY failed, rc=%d\n",
  345. __func__, rc);
  346. return rc;
  347. }
  348. /* Put SWR slave into reset */
  349. rc = regulator_disable(swr_hap->vdd);
  350. if (rc < 0) {
  351. dev_err(swr_hap->dev, "%s: disable swr-slave failed, rc=%d\n",
  352. __func__, rc);
  353. return rc;
  354. }
  355. return 0;
  356. }
  357. static int swr_haptics_suspend(struct device *dev)
  358. {
  359. struct swr_haptics_dev *swr_hap;
  360. int rc;
  361. swr_hap = swr_get_dev_data(to_swr_device(dev));
  362. /* Put SWR slave into reset */
  363. rc = regulator_disable(swr_hap->vdd);
  364. if (rc < 0) {
  365. dev_err(swr_hap->dev, "%s: disable swr-slave failed, rc=%d\n",
  366. __func__, rc);
  367. return rc;
  368. }
  369. return 0;
  370. }
  371. static int swr_haptics_resume(struct device *dev)
  372. {
  373. struct swr_haptics_dev *swr_hap;
  374. int rc;
  375. swr_hap = swr_get_dev_data(to_swr_device(dev));
  376. /* Take SWR slave out of reset */
  377. rc = regulator_enable(swr_hap->vdd);
  378. if (rc < 0) {
  379. dev_err(swr_hap->dev, "%s: enable swr-slave failed, rc=%d\n",
  380. __func__, rc);
  381. return rc;
  382. }
  383. return 0;
  384. }
  385. static const struct of_device_id swr_haptics_match_table[] = {
  386. { .compatible = "qcom,swr-haptics", },
  387. { .compatible = "qcom,pm8350b-swr-haptics", },
  388. { },
  389. };
  390. static const struct swr_device_id swr_haptics_id[] = {
  391. {"swr-haptics", 0},
  392. {"pm8350b-swr-haptics", 0},
  393. {},
  394. };
  395. static const struct dev_pm_ops swr_haptics_pm_ops = {
  396. .suspend = swr_haptics_suspend,
  397. .resume = swr_haptics_resume,
  398. };
  399. static struct swr_driver swr_haptics_driver = {
  400. .driver = {
  401. .name = "swr-haptics",
  402. .owner = THIS_MODULE,
  403. .pm = &swr_haptics_pm_ops,
  404. .of_match_table = swr_haptics_match_table,
  405. },
  406. .probe = swr_haptics_probe,
  407. .remove = swr_haptics_remove,
  408. .id_table = swr_haptics_id,
  409. .device_up = swr_haptics_device_up,
  410. .device_down = swr_haptics_device_down,
  411. };
  412. static int __init swr_haptics_init(void)
  413. {
  414. return swr_driver_register(&swr_haptics_driver);
  415. }
  416. static void __exit swr_haptics_exit(void)
  417. {
  418. swr_driver_unregister(&swr_haptics_driver);
  419. }
  420. module_init(swr_haptics_init);
  421. module_exit(swr_haptics_exit);
  422. MODULE_DESCRIPTION("SWR haptics driver");
  423. MODULE_LICENSE("GPL v2");