swr-dmic.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2019-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #include <linux/module.h>
  6. #include <linux/init.h>
  7. #include <linux/slab.h>
  8. #include <linux/platform_device.h>
  9. #include <linux/device.h>
  10. #include <linux/printk.h>
  11. #include <linux/bitops.h>
  12. #include <linux/regulator/consumer.h>
  13. #include <linux/pm_runtime.h>
  14. #include <linux/delay.h>
  15. #include <linux/kernel.h>
  16. #include <linux/gpio.h>
  17. #include <linux/of_gpio.h>
  18. #include <linux/of_platform.h>
  19. #include <linux/debugfs.h>
  20. #include <soc/soundwire.h>
  21. #include <sound/pcm.h>
  22. #include <sound/pcm_params.h>
  23. #include <sound/soc.h>
  24. #include <sound/soc-dapm.h>
  25. #include <sound/tlv.h>
  26. #include <asoc/msm-cdc-pinctrl.h>
  27. #include <asoc/msm-cdc-supply.h>
  28. #include <dt-bindings/sound/audio-codec-port-types.h>
  29. #include "wcd938x/wcd938x.h"
  30. #include "swr-dmic.h"
  31. static int swr_master_channel_map[] = {
  32. ZERO,
  33. SWRM_TX1_CH1,
  34. SWRM_TX1_CH2,
  35. SWRM_TX1_CH3,
  36. SWRM_TX1_CH4,
  37. SWRM_TX2_CH1,
  38. SWRM_TX2_CH2,
  39. SWRM_TX2_CH3,
  40. SWRM_TX2_CH4,
  41. SWRM_TX3_CH1,
  42. SWRM_TX3_CH2,
  43. SWRM_TX3_CH3,
  44. SWRM_TX3_CH4,
  45. SWRM_PCM_IN,
  46. };
  47. /*
  48. * Private data Structure for swr-dmic. All parameters related to
  49. * external mic codec needs to be defined here.
  50. */
  51. struct swr_dmic_priv {
  52. struct device *dev;
  53. struct swr_device *swr_slave;
  54. struct snd_soc_component *component;
  55. struct snd_soc_component_driver *driver;
  56. struct snd_soc_component *supply_component;
  57. u32 micb_num;
  58. struct device_node *wcd_handle;
  59. bool is_wcd_supply;
  60. int is_en_supply;
  61. int port_type;
  62. u8 tx_master_port_map[SWR_DMIC_MAX_PORTS];
  63. };
  64. const char *codec_name_list[] = {
  65. "swr-dmic-01",
  66. "swr-dmic-02",
  67. "swr-dmic-03",
  68. "swr-dmic-04",
  69. };
  70. const char *dai_name_list[] = {
  71. "swr_dmic_tx0",
  72. "swr_dmic_tx1",
  73. "swr_dmic_tx2",
  74. "swr_dmic_tx3",
  75. };
  76. const char *aif_name_list[] = {
  77. "SWR_DMIC_AIF0 Playback",
  78. "SWR_DMIC_AIF1 Playback",
  79. "SWR_DMIC_AIF2 Playback",
  80. "SWR_DMIC_AIF3 Playback",
  81. };
  82. static int swr_dmic_reset(struct swr_device *pdev);
  83. static int swr_dmic_up(struct swr_device *pdev);
  84. static int swr_dmic_down(struct swr_device *pdev);
  85. static inline int swr_dmic_tx_get_slave_port_type_idx(const char *wname,
  86. unsigned int *port_idx)
  87. {
  88. u8 port_type;
  89. if (strnstr(wname, "HIFI", strlen(wname)))
  90. port_type = SWR_DMIC_HIFI_PORT;
  91. else if (strnstr(wname, "LP", strlen(wname)))
  92. port_type = SWR_DMIC_LP_PORT;
  93. else
  94. return -EINVAL;
  95. *port_idx = port_type;
  96. return 0;
  97. }
  98. static inline int swr_dmic_get_master_port_val(int port)
  99. {
  100. int i;
  101. for (i = 0; i < ARRAY_SIZE(swr_master_channel_map); i++)
  102. if (port == swr_master_channel_map[i])
  103. return i;
  104. return 0;
  105. }
  106. static int swr_dmic_tx_master_port_get(struct snd_kcontrol *kcontrol,
  107. struct snd_ctl_elem_value *ucontrol)
  108. {
  109. struct snd_soc_component *component =
  110. snd_soc_kcontrol_component(kcontrol);
  111. struct swr_dmic_priv *swr_dmic = snd_soc_component_get_drvdata(component);
  112. int ret = 0;
  113. int slave_port_idx;
  114. ret = swr_dmic_tx_get_slave_port_type_idx(kcontrol->id.name,
  115. &slave_port_idx);
  116. if (ret) {
  117. dev_dbg(component->dev, "%s: invalid port string\n", __func__);
  118. return ret;
  119. }
  120. swr_dmic->port_type = slave_port_idx;
  121. ucontrol->value.integer.value[0] =
  122. swr_dmic_get_master_port_val(
  123. swr_dmic->tx_master_port_map[slave_port_idx]);
  124. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  125. __func__, ucontrol->value.integer.value[0]);
  126. return 0;
  127. }
  128. static int swr_dmic_tx_master_port_put(struct snd_kcontrol *kcontrol,
  129. struct snd_ctl_elem_value *ucontrol)
  130. {
  131. struct snd_soc_component *component =
  132. snd_soc_kcontrol_component(kcontrol);
  133. struct swr_dmic_priv *swr_dmic = snd_soc_component_get_drvdata(component);
  134. int ret = 0;
  135. int slave_port_idx;
  136. ret = swr_dmic_tx_get_slave_port_type_idx(kcontrol->id.name,
  137. &slave_port_idx);
  138. if (ret) {
  139. dev_dbg(component->dev, "%s: invalid port string\n", __func__);
  140. return ret;
  141. }
  142. swr_dmic->port_type = slave_port_idx;
  143. swr_dmic->tx_master_port_map[slave_port_idx] =
  144. swr_master_channel_map[ucontrol->value.enumerated.item[0]];
  145. dev_dbg(component->dev, "%s: slv port id: %d, master_port_type: %d\n",
  146. __func__, slave_port_idx,
  147. swr_dmic->tx_master_port_map[slave_port_idx]);
  148. return 0;
  149. }
  150. static int swr_dmic_port_enable(struct snd_soc_dapm_widget *w,
  151. struct snd_kcontrol *kcontrol, int event)
  152. {
  153. int ret = 0;
  154. struct snd_soc_component *component =
  155. snd_soc_dapm_to_component(w->dapm);
  156. struct swr_dmic_priv *swr_dmic =
  157. snd_soc_component_get_drvdata(component);
  158. u8 ch_mask = 0x01; // only DpnChannelEN1 register is available
  159. u8 num_port = 1;
  160. u8 port_id = swr_dmic->port_type;
  161. u8 port_type = swr_dmic->tx_master_port_map[port_id];
  162. switch (event) {
  163. case SND_SOC_DAPM_POST_PMU:
  164. ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
  165. swr_dmic->swr_slave->dev_num, true);
  166. break;
  167. case SND_SOC_DAPM_PRE_PMD:
  168. ret = swr_disconnect_port(swr_dmic->swr_slave,
  169. &port_id, num_port, &ch_mask, &port_type);
  170. break;
  171. };
  172. return ret;
  173. }
  174. static int dmic_swr_ctrl(struct snd_soc_dapm_widget *w,
  175. struct snd_kcontrol *kcontrol, int event)
  176. {
  177. int ret = 0;
  178. struct snd_soc_component *component =
  179. snd_soc_dapm_to_component(w->dapm);
  180. struct swr_dmic_priv *swr_dmic =
  181. snd_soc_component_get_drvdata(component);
  182. u8 num_ch = 1;
  183. u8 ch_mask = 0x01; // only DpnChannelEN1 register is available
  184. u32 ch_rate = SWR_CLK_RATE_4P8MHZ;
  185. u8 num_port = 1;
  186. u8 port_type = 0;
  187. u8 port_id = swr_dmic->port_type;
  188. /*
  189. * Port 1 is high quality / 2.4 or 3.072 Mbps
  190. * Port 2 is listen low power / 0.6 or 0.768 Mbps
  191. */
  192. if(swr_dmic->port_type == SWR_DMIC_HIFI_PORT)
  193. ch_rate = SWR_CLK_RATE_2P4MHZ;
  194. else
  195. ch_rate = SWR_CLK_RATE_0P6MHZ;
  196. port_type = swr_dmic->tx_master_port_map[port_id];
  197. dev_dbg(component->dev, "%s port_type: %d event: %d\n", __func__,
  198. port_type, event);
  199. switch (event) {
  200. case SND_SOC_DAPM_PRE_PMU:
  201. ret = swr_connect_port(swr_dmic->swr_slave, &port_id,
  202. num_port, &ch_mask, &ch_rate,
  203. &num_ch, &port_type);
  204. break;
  205. case SND_SOC_DAPM_POST_PMD:
  206. ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
  207. swr_dmic->swr_slave->dev_num, false);
  208. break;
  209. };
  210. return ret;
  211. }
  212. static int swr_dmic_enable_supply(struct snd_soc_dapm_widget *w,
  213. struct snd_kcontrol *kcontrol,
  214. int event)
  215. {
  216. struct snd_soc_component *component =
  217. snd_soc_dapm_to_component(w->dapm);
  218. struct swr_dmic_priv *swr_dmic =
  219. snd_soc_component_get_drvdata(component);
  220. int ret = 0;
  221. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  222. w->name, event);
  223. switch (event) {
  224. case SND_SOC_DAPM_PRE_PMU:
  225. ret = swr_dmic_up(swr_dmic->swr_slave);
  226. break;
  227. case SND_SOC_DAPM_POST_PMU:
  228. ret = swr_dmic_reset(swr_dmic->swr_slave);
  229. break;
  230. case SND_SOC_DAPM_POST_PMD:
  231. ret = swr_dmic_down(swr_dmic->swr_slave);
  232. break;
  233. }
  234. if (ret)
  235. dev_dbg(component->dev, "%s wname: %s event: %d ret : %d\n",
  236. __func__, w->name, event, ret);
  237. return ret;
  238. }
  239. static const char * const tx_master_port_text[] = {
  240. "ZERO", "SWRM_TX1_CH1", "SWRM_TX1_CH2", "SWRM_TX1_CH3", "SWRM_TX1_CH4",
  241. "SWRM_TX2_CH1", "SWRM_TX2_CH2", "SWRM_TX2_CH3", "SWRM_TX2_CH4",
  242. "SWRM_TX3_CH1", "SWRM_TX3_CH2", "SWRM_TX3_CH3", "SWRM_TX3_CH4",
  243. "SWRM_PCM_IN",
  244. };
  245. static const struct soc_enum tx_master_port_enum =
  246. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(tx_master_port_text),
  247. tx_master_port_text);
  248. static const struct snd_kcontrol_new swr_dmic_snd_controls[] = {
  249. SOC_ENUM_EXT("HIFI PortMap", tx_master_port_enum,
  250. swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
  251. SOC_ENUM_EXT("LP PortMap", tx_master_port_enum,
  252. swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
  253. };
  254. static const struct snd_kcontrol_new dmic_switch[] = {
  255. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  256. };
  257. static const struct snd_soc_dapm_widget swr_dmic_dapm_widgets[] = {
  258. SND_SOC_DAPM_MIXER_E("SWR_DMIC_MIXER", SND_SOC_NOPM, 0, 0,
  259. dmic_switch, ARRAY_SIZE(dmic_switch), dmic_swr_ctrl,
  260. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  261. SND_SOC_DAPM_INPUT("SWR_DMIC"),
  262. SND_SOC_DAPM_SUPPLY_S("SMIC_SUPPLY", 1, SND_SOC_NOPM, 0, 0,
  263. swr_dmic_enable_supply,
  264. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  265. SND_SOC_DAPM_POST_PMD),
  266. SND_SOC_DAPM_OUT_DRV_E("SMIC_PORT_EN", SND_SOC_NOPM, 0, 0, NULL, 0,
  267. swr_dmic_port_enable,
  268. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
  269. SND_SOC_DAPM_OUTPUT("SWR_DMIC_OUTPUT"),
  270. };
  271. static const struct snd_soc_dapm_route swr_dmic_audio_map[] = {
  272. {"SWR_DMIC", NULL, "SMIC_SUPPLY"},
  273. {"SWR_DMIC_MIXER", "Switch", "SWR_DMIC"},
  274. {"SMIC_PORT_EN", NULL, "SWR_DMIC_MIXER"},
  275. {"SWR_DMIC_OUTPUT", NULL, "SMIC_PORT_EN"},
  276. };
  277. static int swr_dmic_codec_probe(struct snd_soc_component *component)
  278. {
  279. struct swr_dmic_priv *swr_dmic =
  280. snd_soc_component_get_drvdata(component);
  281. if (!swr_dmic)
  282. return -EINVAL;
  283. swr_dmic->component = component;
  284. return 0;
  285. }
  286. static void swr_dmic_codec_remove(struct snd_soc_component *component)
  287. {
  288. struct swr_dmic_priv *swr_dmic =
  289. snd_soc_component_get_drvdata(component);
  290. swr_dmic->component = NULL;
  291. return;
  292. }
  293. static const struct snd_soc_component_driver soc_codec_dev_swr_dmic = {
  294. .name = NULL,
  295. .probe = swr_dmic_codec_probe,
  296. .remove = swr_dmic_codec_remove,
  297. .controls = swr_dmic_snd_controls,
  298. .num_controls = ARRAY_SIZE(swr_dmic_snd_controls),
  299. .dapm_widgets = swr_dmic_dapm_widgets,
  300. .num_dapm_widgets = ARRAY_SIZE(swr_dmic_dapm_widgets),
  301. .dapm_routes = swr_dmic_audio_map,
  302. .num_dapm_routes = ARRAY_SIZE(swr_dmic_audio_map),
  303. };
  304. static int enable_wcd_codec_supply(struct swr_dmic_priv *swr_dmic, bool enable)
  305. {
  306. int rc = 0;
  307. int micb_num = swr_dmic->micb_num;
  308. struct snd_soc_component *component = swr_dmic->supply_component;
  309. if (!component) {
  310. pr_err("%s: component is NULL\n", __func__);
  311. return -EINVAL;
  312. }
  313. if (enable)
  314. rc = wcd938x_codec_force_enable_micbias_v2(component,
  315. SND_SOC_DAPM_PRE_PMU, micb_num);
  316. else
  317. rc = wcd938x_codec_force_enable_micbias_v2(component,
  318. SND_SOC_DAPM_POST_PMD, micb_num);
  319. return rc;
  320. }
  321. static int swr_dmic_parse_supply(struct device_node *np,
  322. struct swr_dmic_priv *swr_dmic)
  323. {
  324. struct platform_device *pdev = NULL;
  325. if (!np || !swr_dmic)
  326. return -EINVAL;
  327. pdev = of_find_device_by_node(np);
  328. if (!pdev)
  329. return -EINVAL;
  330. swr_dmic->supply_component = snd_soc_lookup_component(&pdev->dev, NULL);
  331. return 0;
  332. }
  333. static int swr_dmic_probe(struct swr_device *pdev)
  334. {
  335. int ret = 0;
  336. int i = 0;
  337. u8 swr_devnum = 0;
  338. int dev_index = -1;
  339. char* prefix_name = NULL;
  340. struct swr_dmic_priv *swr_dmic = NULL;
  341. const char *swr_dmic_name_prefix_of = NULL;
  342. const char *swr_dmic_codec_name_of = NULL;
  343. struct snd_soc_component *component = NULL;
  344. swr_dmic = devm_kzalloc(&pdev->dev, sizeof(struct swr_dmic_priv),
  345. GFP_KERNEL);
  346. if (!swr_dmic)
  347. return -ENOMEM;
  348. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-dmic-supply",
  349. &swr_dmic->micb_num);
  350. if (ret) {
  351. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  352. __func__, "qcom,swr-dmic-supply",
  353. pdev->dev.of_node->full_name);
  354. goto err;
  355. }
  356. swr_dmic->wcd_handle = of_parse_phandle(pdev->dev.of_node,
  357. "qcom,wcd-handle", 0);
  358. if (!swr_dmic->wcd_handle) {
  359. dev_dbg(&pdev->dev, "%s: no wcd handle listed\n",
  360. __func__);
  361. swr_dmic->is_wcd_supply = false;
  362. } else {
  363. swr_dmic_parse_supply(swr_dmic->wcd_handle, swr_dmic);
  364. swr_dmic->is_wcd_supply = true;
  365. }
  366. if (swr_dmic->is_wcd_supply) {
  367. ret = enable_wcd_codec_supply(swr_dmic, true);
  368. if (ret) {
  369. ret = -EPROBE_DEFER;
  370. goto err;
  371. }
  372. ++swr_dmic->is_en_supply;
  373. }
  374. swr_set_dev_data(pdev, swr_dmic);
  375. swr_dmic->swr_slave = pdev;
  376. ret = of_property_read_string(pdev->dev.of_node, "qcom,swr-dmic-prefix",
  377. &swr_dmic_name_prefix_of);
  378. if (ret) {
  379. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  380. __func__, "qcom,swr-dmic-prefix",
  381. pdev->dev.of_node->full_name);
  382. goto dev_err;
  383. }
  384. ret = of_property_read_string(pdev->dev.of_node, "qcom,codec-name",
  385. &swr_dmic_codec_name_of);
  386. if (ret) {
  387. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  388. __func__, "qcom,codec-name",
  389. pdev->dev.of_node->full_name);
  390. goto dev_err;
  391. }
  392. /*
  393. * Add 5msec delay to provide sufficient time for
  394. * soundwire auto enumeration of slave devices as
  395. * as per HW requirement.
  396. */
  397. usleep_range(5000, 5010);
  398. ret = swr_get_logical_dev_num(pdev, pdev->addr, &swr_devnum);
  399. if (ret) {
  400. dev_dbg(&pdev->dev,
  401. "%s get devnum %d for dev addr %lx failed\n",
  402. __func__, swr_devnum, pdev->addr);
  403. ret = -EPROBE_DEFER;
  404. goto err;
  405. }
  406. pdev->dev_num = swr_devnum;
  407. swr_dmic->driver = devm_kzalloc(&pdev->dev,
  408. sizeof(struct snd_soc_component_driver), GFP_KERNEL);
  409. if (!swr_dmic->driver) {
  410. ret = -ENOMEM;
  411. goto dev_err;
  412. }
  413. memcpy(swr_dmic->driver, &soc_codec_dev_swr_dmic,
  414. sizeof(struct snd_soc_component_driver));
  415. for (i = 0; i < ARRAY_SIZE(codec_name_list); i++) {
  416. if (!strcmp(swr_dmic_codec_name_of, codec_name_list[i])) {
  417. dev_index = i;
  418. break;
  419. }
  420. }
  421. if (dev_index < 0) {
  422. ret = -EINVAL;
  423. goto dev_err;
  424. }
  425. swr_dmic->driver->name = dai_name_list[dev_index];
  426. ret = snd_soc_register_component(&pdev->dev, swr_dmic->driver,
  427. NULL, 0);
  428. if (ret) {
  429. dev_err(&pdev->dev, "%s: Codec registration failed\n",
  430. __func__);
  431. goto dev_err;
  432. }
  433. component = snd_soc_lookup_component(&pdev->dev,
  434. swr_dmic->driver->name);
  435. swr_dmic->component = component;
  436. prefix_name = devm_kzalloc(&pdev->dev,
  437. strlen(swr_dmic_name_prefix_of),
  438. GFP_KERNEL);
  439. if (!prefix_name) {
  440. ret = -ENOMEM;
  441. goto dev_err;
  442. }
  443. strlcpy(prefix_name, swr_dmic_name_prefix_of,
  444. strlen(swr_dmic_name_prefix_of));
  445. component->name_prefix = prefix_name;
  446. if (swr_dmic->is_en_supply == 1) {
  447. enable_wcd_codec_supply(swr_dmic, false);
  448. --swr_dmic->is_en_supply;
  449. }
  450. return 0;
  451. dev_err:
  452. if (swr_dmic->is_en_supply == 1) {
  453. enable_wcd_codec_supply(swr_dmic, false);
  454. --swr_dmic->is_en_supply;
  455. }
  456. swr_dmic->is_wcd_supply = false;
  457. swr_dmic->wcd_handle = NULL;
  458. swr_remove_device(pdev);
  459. err:
  460. return ret;
  461. }
  462. static int swr_dmic_remove(struct swr_device *pdev)
  463. {
  464. struct swr_dmic_priv *swr_dmic;
  465. swr_dmic = swr_get_dev_data(pdev);
  466. if (!swr_dmic) {
  467. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  468. return -EINVAL;
  469. }
  470. snd_soc_unregister_component(&pdev->dev);
  471. swr_set_dev_data(pdev, NULL);
  472. return 0;
  473. }
  474. static int swr_dmic_up(struct swr_device *pdev)
  475. {
  476. int ret = 0;
  477. struct swr_dmic_priv *swr_dmic;
  478. swr_dmic = swr_get_dev_data(pdev);
  479. if (!swr_dmic) {
  480. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  481. return -EINVAL;
  482. }
  483. ++swr_dmic->is_en_supply;
  484. if (swr_dmic->is_en_supply == 1)
  485. ret = enable_wcd_codec_supply(swr_dmic, true);
  486. return ret;
  487. }
  488. static int swr_dmic_down(struct swr_device *pdev)
  489. {
  490. struct swr_dmic_priv *swr_dmic;
  491. int ret = 0;
  492. swr_dmic = swr_get_dev_data(pdev);
  493. if (!swr_dmic) {
  494. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  495. return -EINVAL;
  496. }
  497. --swr_dmic->is_en_supply;
  498. if (swr_dmic->is_en_supply < 0) {
  499. dev_warn(&pdev->dev, "%s: mismatch in supply count %d\n",
  500. __func__, swr_dmic->is_en_supply);
  501. swr_dmic->is_en_supply = 0;
  502. goto done;
  503. }
  504. if (!swr_dmic->is_en_supply)
  505. enable_wcd_codec_supply(swr_dmic, false);
  506. done:
  507. return ret;
  508. }
  509. static int swr_dmic_reset(struct swr_device *pdev)
  510. {
  511. struct swr_dmic_priv *swr_dmic;
  512. u8 retry = 5;
  513. u8 devnum = 0;
  514. swr_dmic = swr_get_dev_data(pdev);
  515. if (!swr_dmic) {
  516. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  517. return -EINVAL;
  518. }
  519. while (swr_get_logical_dev_num(pdev, pdev->addr, &devnum) && retry--) {
  520. /* Retry after 1 msec delay */
  521. usleep_range(1000, 1100);
  522. }
  523. pdev->dev_num = devnum;
  524. dev_dbg(&pdev->dev, "%s: devnum: %d\n", __func__, devnum);
  525. return 0;
  526. }
  527. #ifdef CONFIG_PM_SLEEP
  528. static int swr_dmic_suspend(struct device *dev)
  529. {
  530. dev_dbg(dev, "%s: system suspend\n", __func__);
  531. return 0;
  532. }
  533. static int swr_dmic_resume(struct device *dev)
  534. {
  535. struct swr_dmic_priv *swr_dmic = swr_get_dev_data(to_swr_device(dev));
  536. if (!swr_dmic) {
  537. dev_err(dev, "%s: swr_dmic private data is NULL\n", __func__);
  538. return -EINVAL;
  539. }
  540. dev_dbg(dev, "%s: system resume\n", __func__);
  541. return 0;
  542. }
  543. #endif /* CONFIG_PM_SLEEP */
  544. static const struct dev_pm_ops swr_dmic_pm_ops = {
  545. SET_SYSTEM_SLEEP_PM_OPS(swr_dmic_suspend, swr_dmic_resume)
  546. };
  547. static const struct swr_device_id swr_dmic_id[] = {
  548. {"swr-dmic", 0},
  549. {}
  550. };
  551. static const struct of_device_id swr_dmic_dt_match[] = {
  552. {
  553. .compatible = "qcom,swr-dmic",
  554. },
  555. {}
  556. };
  557. static struct swr_driver swr_dmic_driver = {
  558. .driver = {
  559. .name = "swr-dmic",
  560. .owner = THIS_MODULE,
  561. .pm = &swr_dmic_pm_ops,
  562. .of_match_table = swr_dmic_dt_match,
  563. },
  564. .probe = swr_dmic_probe,
  565. .remove = swr_dmic_remove,
  566. .id_table = swr_dmic_id,
  567. .device_up = swr_dmic_up,
  568. .device_down = swr_dmic_down,
  569. .reset_device = swr_dmic_reset,
  570. };
  571. static int __init swr_dmic_init(void)
  572. {
  573. return swr_driver_register(&swr_dmic_driver);
  574. }
  575. static void __exit swr_dmic_exit(void)
  576. {
  577. swr_driver_unregister(&swr_dmic_driver);
  578. }
  579. module_init(swr_dmic_init);
  580. module_exit(swr_dmic_exit);
  581. MODULE_DESCRIPTION("SWR DMIC driver");
  582. MODULE_LICENSE("GPL v2");