swr-dmic.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  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 dmic_swr_ctrl(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 num_ch = 1;
  159. u8 ch_mask = 0x01; // only DpnChannelEN1 register is available
  160. u32 ch_rate = SWR_CLK_RATE_4P8MHZ;
  161. u8 num_port = 1;
  162. u8 port_type = 0;
  163. u8 port_id = swr_dmic->port_type;
  164. /*
  165. * Port 1 is high quality / 2.4 or 3.072 Mbps
  166. * Port 2 is listen low power / 0.6 or 0.768 Mbps
  167. */
  168. if(swr_dmic->port_type)
  169. ch_rate = SWR_CLK_RATE_2P4MHZ;
  170. else
  171. ch_rate = SWR_CLK_RATE_4P8MHZ;
  172. port_type = swr_dmic->tx_master_port_map[port_id];
  173. switch (event) {
  174. case SND_SOC_DAPM_PRE_PMU:
  175. ret = swr_connect_port(swr_dmic->swr_slave, &port_id,
  176. num_port, &ch_mask, &ch_rate,
  177. &num_ch, &port_type);
  178. break;
  179. case SND_SOC_DAPM_POST_PMU:
  180. ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
  181. swr_dmic->swr_slave->dev_num, true);
  182. break;
  183. case SND_SOC_DAPM_PRE_PMD:
  184. ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
  185. swr_dmic->swr_slave->dev_num, false);
  186. break;
  187. case SND_SOC_DAPM_POST_PMD:
  188. ret = swr_disconnect_port(swr_dmic->swr_slave,
  189. &port_id, num_port, &ch_mask, &port_type);
  190. break;
  191. };
  192. return ret;
  193. }
  194. static int swr_dmic_enable_supply(struct snd_soc_dapm_widget *w,
  195. struct snd_kcontrol *kcontrol,
  196. int event)
  197. {
  198. struct snd_soc_component *component =
  199. snd_soc_dapm_to_component(w->dapm);
  200. struct swr_dmic_priv *swr_dmic =
  201. snd_soc_component_get_drvdata(component);
  202. int ret = 0;
  203. dev_dbg(component->dev, "%s wname: %s event: %d\n", __func__,
  204. w->name, event);
  205. switch (event) {
  206. case SND_SOC_DAPM_PRE_PMU:
  207. ret = swr_dmic_up(swr_dmic->swr_slave);
  208. break;
  209. case SND_SOC_DAPM_POST_PMU:
  210. ret = swr_dmic_reset(swr_dmic->swr_slave);
  211. break;
  212. case SND_SOC_DAPM_POST_PMD:
  213. ret = swr_dmic_down(swr_dmic->swr_slave);
  214. break;
  215. }
  216. if (ret)
  217. dev_dbg(component->dev, "%s wname: %s event: %d ret : %d\n",
  218. __func__, w->name, event, ret);
  219. return ret;
  220. }
  221. static const char * const tx_master_port_text[] = {
  222. "ZERO", "SWRM_TX1_CH1", "SWRM_TX1_CH2", "SWRM_TX1_CH3", "SWRM_TX1_CH4",
  223. "SWRM_TX2_CH1", "SWRM_TX2_CH2", "SWRM_TX2_CH3", "SWRM_TX2_CH4",
  224. "SWRM_TX3_CH1", "SWRM_TX3_CH2", "SWRM_TX3_CH3", "SWRM_TX3_CH4",
  225. "SWRM_PCM_IN",
  226. };
  227. static const struct soc_enum tx_master_port_enum =
  228. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(tx_master_port_text),
  229. tx_master_port_text);
  230. static const struct snd_kcontrol_new swr_dmic_snd_controls[] = {
  231. SOC_ENUM_EXT("HIFI PortMap", tx_master_port_enum,
  232. swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
  233. SOC_ENUM_EXT("LP PortMap", tx_master_port_enum,
  234. swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
  235. };
  236. static const struct snd_kcontrol_new dmic_switch[] = {
  237. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  238. };
  239. static const struct snd_soc_dapm_widget swr_dmic_dapm_widgets[] = {
  240. SND_SOC_DAPM_MIXER_E("SWR_DMIC_MIXER", SND_SOC_NOPM, 0, 0,
  241. dmic_switch, ARRAY_SIZE(dmic_switch), dmic_swr_ctrl,
  242. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  243. SND_SOC_DAPM_PRE_PMD | SND_SOC_DAPM_POST_PMD),
  244. SND_SOC_DAPM_INPUT("SWR_DMIC"),
  245. SND_SOC_DAPM_SUPPLY_S("SMIC_SUPPLY", 1, SND_SOC_NOPM, 0, 0,
  246. swr_dmic_enable_supply,
  247. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMU |
  248. SND_SOC_DAPM_POST_PMD),
  249. SND_SOC_DAPM_OUTPUT("SWR_DMIC_OUTPUT"),
  250. };
  251. static const struct snd_soc_dapm_route swr_dmic_audio_map[] = {
  252. {"SWR_DMIC", NULL, "SMIC_SUPPLY"},
  253. {"SWR_DMIC_MIXER", "Switch", "SWR_DMIC"},
  254. {"SWR_DMIC_OUTPUT", NULL, "SWR_DMIC_MIXER"},
  255. };
  256. static int swr_dmic_codec_probe(struct snd_soc_component *component)
  257. {
  258. struct swr_dmic_priv *swr_dmic =
  259. snd_soc_component_get_drvdata(component);
  260. if (!swr_dmic)
  261. return -EINVAL;
  262. swr_dmic->component = component;
  263. return 0;
  264. }
  265. static void swr_dmic_codec_remove(struct snd_soc_component *component)
  266. {
  267. struct swr_dmic_priv *swr_dmic =
  268. snd_soc_component_get_drvdata(component);
  269. swr_dmic->component = NULL;
  270. return;
  271. }
  272. static const struct snd_soc_component_driver soc_codec_dev_swr_dmic = {
  273. .name = NULL,
  274. .probe = swr_dmic_codec_probe,
  275. .remove = swr_dmic_codec_remove,
  276. .controls = swr_dmic_snd_controls,
  277. .num_controls = ARRAY_SIZE(swr_dmic_snd_controls),
  278. .dapm_widgets = swr_dmic_dapm_widgets,
  279. .num_dapm_widgets = ARRAY_SIZE(swr_dmic_dapm_widgets),
  280. .dapm_routes = swr_dmic_audio_map,
  281. .num_dapm_routes = ARRAY_SIZE(swr_dmic_audio_map),
  282. };
  283. static int enable_wcd_codec_supply(struct swr_dmic_priv *swr_dmic, bool enable)
  284. {
  285. int rc = 0;
  286. int micb_num = swr_dmic->micb_num;
  287. struct snd_soc_component *component = swr_dmic->supply_component;
  288. if (!component) {
  289. pr_err("%s: component is NULL\n", __func__);
  290. return -EINVAL;
  291. }
  292. if (enable)
  293. rc = wcd938x_codec_force_enable_micbias_v2(component,
  294. SND_SOC_DAPM_PRE_PMU, micb_num);
  295. else
  296. rc = wcd938x_codec_force_enable_micbias_v2(component,
  297. SND_SOC_DAPM_POST_PMD, micb_num);
  298. return rc;
  299. }
  300. static int swr_dmic_parse_supply(struct device_node *np,
  301. struct swr_dmic_priv *swr_dmic)
  302. {
  303. struct platform_device *pdev = NULL;
  304. if (!np || !swr_dmic)
  305. return -EINVAL;
  306. pdev = of_find_device_by_node(np);
  307. if (!pdev)
  308. return -EINVAL;
  309. swr_dmic->supply_component = snd_soc_lookup_component(&pdev->dev, NULL);
  310. return 0;
  311. }
  312. static int swr_dmic_probe(struct swr_device *pdev)
  313. {
  314. int ret = 0;
  315. int i = 0;
  316. u8 swr_devnum = 0;
  317. int dev_index = -1;
  318. char* prefix_name = NULL;
  319. struct swr_dmic_priv *swr_dmic = NULL;
  320. const char *swr_dmic_name_prefix_of = NULL;
  321. const char *swr_dmic_codec_name_of = NULL;
  322. struct snd_soc_component *component = NULL;
  323. swr_dmic = devm_kzalloc(&pdev->dev, sizeof(struct swr_dmic_priv),
  324. GFP_KERNEL);
  325. if (!swr_dmic)
  326. return -ENOMEM;
  327. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-dmic-supply",
  328. &swr_dmic->micb_num);
  329. if (ret) {
  330. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  331. __func__, "qcom,swr-dmic-supply",
  332. pdev->dev.of_node->full_name);
  333. goto err;
  334. }
  335. swr_dmic->wcd_handle = of_parse_phandle(pdev->dev.of_node,
  336. "qcom,wcd-handle", 0);
  337. if (!swr_dmic->wcd_handle) {
  338. dev_dbg(&pdev->dev, "%s: no wcd handle listed\n",
  339. __func__);
  340. swr_dmic->is_wcd_supply = false;
  341. } else {
  342. swr_dmic_parse_supply(swr_dmic->wcd_handle, swr_dmic);
  343. swr_dmic->is_wcd_supply = true;
  344. }
  345. if (swr_dmic->is_wcd_supply) {
  346. ret = enable_wcd_codec_supply(swr_dmic, true);
  347. if (ret) {
  348. ret = -EPROBE_DEFER;
  349. goto err;
  350. }
  351. ++swr_dmic->is_en_supply;
  352. }
  353. swr_set_dev_data(pdev, swr_dmic);
  354. swr_dmic->swr_slave = pdev;
  355. ret = of_property_read_string(pdev->dev.of_node, "qcom,swr-dmic-prefix",
  356. &swr_dmic_name_prefix_of);
  357. if (ret) {
  358. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  359. __func__, "qcom,swr-dmic-prefix",
  360. pdev->dev.of_node->full_name);
  361. goto dev_err;
  362. }
  363. ret = of_property_read_string(pdev->dev.of_node, "qcom,codec-name",
  364. &swr_dmic_codec_name_of);
  365. if (ret) {
  366. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  367. __func__, "qcom,codec-name",
  368. pdev->dev.of_node->full_name);
  369. goto dev_err;
  370. }
  371. /*
  372. * Add 5msec delay to provide sufficient time for
  373. * soundwire auto enumeration of slave devices as
  374. * as per HW requirement.
  375. */
  376. usleep_range(5000, 5010);
  377. ret = swr_get_logical_dev_num(pdev, pdev->addr, &swr_devnum);
  378. if (ret) {
  379. dev_dbg(&pdev->dev,
  380. "%s get devnum %d for dev addr %lx failed\n",
  381. __func__, swr_devnum, pdev->addr);
  382. ret = -EPROBE_DEFER;
  383. goto err;
  384. }
  385. pdev->dev_num = swr_devnum;
  386. swr_dmic->driver = devm_kzalloc(&pdev->dev,
  387. sizeof(struct snd_soc_component_driver), GFP_KERNEL);
  388. if (!swr_dmic->driver) {
  389. ret = -ENOMEM;
  390. goto dev_err;
  391. }
  392. memcpy(swr_dmic->driver, &soc_codec_dev_swr_dmic,
  393. sizeof(struct snd_soc_component_driver));
  394. for (i = 0; i < ARRAY_SIZE(codec_name_list); i++) {
  395. if (!strcmp(swr_dmic_codec_name_of, codec_name_list[i])) {
  396. dev_index = i;
  397. break;
  398. }
  399. }
  400. if (dev_index < 0) {
  401. ret = -EINVAL;
  402. goto dev_err;
  403. }
  404. swr_dmic->driver->name = dai_name_list[dev_index];
  405. ret = snd_soc_register_component(&pdev->dev, swr_dmic->driver,
  406. NULL, 0);
  407. if (ret) {
  408. dev_err(&pdev->dev, "%s: Codec registration failed\n",
  409. __func__);
  410. goto dev_err;
  411. }
  412. component = snd_soc_lookup_component(&pdev->dev,
  413. swr_dmic->driver->name);
  414. swr_dmic->component = component;
  415. prefix_name = devm_kzalloc(&pdev->dev,
  416. strlen(swr_dmic_name_prefix_of),
  417. GFP_KERNEL);
  418. if (!prefix_name) {
  419. ret = -ENOMEM;
  420. goto dev_err;
  421. }
  422. strlcpy(prefix_name, swr_dmic_name_prefix_of,
  423. strlen(swr_dmic_name_prefix_of));
  424. component->name_prefix = prefix_name;
  425. if (swr_dmic->is_en_supply == 1) {
  426. enable_wcd_codec_supply(swr_dmic, false);
  427. --swr_dmic->is_en_supply;
  428. }
  429. return 0;
  430. dev_err:
  431. if (swr_dmic->is_en_supply == 1) {
  432. enable_wcd_codec_supply(swr_dmic, false);
  433. --swr_dmic->is_en_supply;
  434. }
  435. swr_dmic->is_wcd_supply = false;
  436. swr_dmic->wcd_handle = NULL;
  437. swr_remove_device(pdev);
  438. err:
  439. return ret;
  440. }
  441. static int swr_dmic_remove(struct swr_device *pdev)
  442. {
  443. struct swr_dmic_priv *swr_dmic;
  444. swr_dmic = swr_get_dev_data(pdev);
  445. if (!swr_dmic) {
  446. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  447. return -EINVAL;
  448. }
  449. snd_soc_unregister_component(&pdev->dev);
  450. swr_set_dev_data(pdev, NULL);
  451. return 0;
  452. }
  453. static int swr_dmic_up(struct swr_device *pdev)
  454. {
  455. int ret = 0;
  456. struct swr_dmic_priv *swr_dmic;
  457. swr_dmic = swr_get_dev_data(pdev);
  458. if (!swr_dmic) {
  459. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  460. return -EINVAL;
  461. }
  462. ++swr_dmic->is_en_supply;
  463. if (swr_dmic->is_en_supply == 1)
  464. ret = enable_wcd_codec_supply(swr_dmic, true);
  465. return ret;
  466. }
  467. static int swr_dmic_down(struct swr_device *pdev)
  468. {
  469. struct swr_dmic_priv *swr_dmic;
  470. int ret = 0;
  471. swr_dmic = swr_get_dev_data(pdev);
  472. if (!swr_dmic) {
  473. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  474. return -EINVAL;
  475. }
  476. --swr_dmic->is_en_supply;
  477. if (swr_dmic->is_en_supply < 0) {
  478. dev_warn(&pdev->dev, "%s: mismatch in supply count %d\n",
  479. __func__, swr_dmic->is_en_supply);
  480. swr_dmic->is_en_supply = 0;
  481. goto done;
  482. }
  483. if (!swr_dmic->is_en_supply)
  484. enable_wcd_codec_supply(swr_dmic, false);
  485. done:
  486. return ret;
  487. }
  488. static int swr_dmic_reset(struct swr_device *pdev)
  489. {
  490. struct swr_dmic_priv *swr_dmic;
  491. u8 retry = 5;
  492. u8 devnum = 0;
  493. swr_dmic = swr_get_dev_data(pdev);
  494. if (!swr_dmic) {
  495. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  496. return -EINVAL;
  497. }
  498. while (swr_get_logical_dev_num(pdev, pdev->addr, &devnum) && retry--) {
  499. /* Retry after 1 msec delay */
  500. usleep_range(1000, 1100);
  501. }
  502. pdev->dev_num = devnum;
  503. return 0;
  504. }
  505. #ifdef CONFIG_PM_SLEEP
  506. static int swr_dmic_suspend(struct device *dev)
  507. {
  508. dev_dbg(dev, "%s: system suspend\n", __func__);
  509. return 0;
  510. }
  511. static int swr_dmic_resume(struct device *dev)
  512. {
  513. struct swr_dmic_priv *swr_dmic = swr_get_dev_data(to_swr_device(dev));
  514. if (!swr_dmic) {
  515. dev_err(dev, "%s: swr_dmic private data is NULL\n", __func__);
  516. return -EINVAL;
  517. }
  518. dev_dbg(dev, "%s: system resume\n", __func__);
  519. return 0;
  520. }
  521. #endif /* CONFIG_PM_SLEEP */
  522. static const struct dev_pm_ops swr_dmic_pm_ops = {
  523. SET_SYSTEM_SLEEP_PM_OPS(swr_dmic_suspend, swr_dmic_resume)
  524. };
  525. static const struct swr_device_id swr_dmic_id[] = {
  526. {"swr-dmic", 0},
  527. {}
  528. };
  529. static const struct of_device_id swr_dmic_dt_match[] = {
  530. {
  531. .compatible = "qcom,swr-dmic",
  532. },
  533. {}
  534. };
  535. static struct swr_driver swr_dmic_driver = {
  536. .driver = {
  537. .name = "swr-dmic",
  538. .owner = THIS_MODULE,
  539. .pm = &swr_dmic_pm_ops,
  540. .of_match_table = swr_dmic_dt_match,
  541. },
  542. .probe = swr_dmic_probe,
  543. .remove = swr_dmic_remove,
  544. .id_table = swr_dmic_id,
  545. .device_up = swr_dmic_up,
  546. .device_down = swr_dmic_down,
  547. .reset_device = swr_dmic_reset,
  548. };
  549. static int __init swr_dmic_init(void)
  550. {
  551. return swr_driver_register(&swr_dmic_driver);
  552. }
  553. static void __exit swr_dmic_exit(void)
  554. {
  555. swr_driver_unregister(&swr_dmic_driver);
  556. }
  557. module_init(swr_dmic_init);
  558. module_exit(swr_dmic_exit);
  559. MODULE_DESCRIPTION("SWR DMIC driver");
  560. MODULE_LICENSE("GPL v2");