swr-dmic.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765
  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. #define NUM_ATTEMPTS 5
  32. #define SWRS_SCP_CONTROL 0x44
  33. static int swr_master_channel_map[] = {
  34. ZERO,
  35. SWRM_TX1_CH1,
  36. SWRM_TX1_CH2,
  37. SWRM_TX1_CH3,
  38. SWRM_TX1_CH4,
  39. SWRM_TX2_CH1,
  40. SWRM_TX2_CH2,
  41. SWRM_TX2_CH3,
  42. SWRM_TX2_CH4,
  43. SWRM_TX3_CH1,
  44. SWRM_TX3_CH2,
  45. SWRM_TX3_CH3,
  46. SWRM_TX3_CH4,
  47. SWRM_PCM_IN,
  48. };
  49. /*
  50. * Private data Structure for swr-dmic. All parameters related to
  51. * external mic codec needs to be defined here.
  52. */
  53. struct swr_dmic_priv {
  54. struct device *dev;
  55. struct swr_device *swr_slave;
  56. struct snd_soc_component *component;
  57. struct snd_soc_component_driver *driver;
  58. struct snd_soc_dai_driver *dai_driver;
  59. struct snd_soc_component *supply_component;
  60. u32 micb_num;
  61. struct device_node *wcd_handle;
  62. bool is_wcd_supply;
  63. int is_en_supply;
  64. int port_type;
  65. u8 tx_master_port_map[SWR_DMIC_MAX_PORTS];
  66. struct notifier_block nblock;
  67. };
  68. const char *codec_name_list[] = {
  69. "swr-dmic.01",
  70. "swr-dmic.02",
  71. "swr-dmic.03",
  72. "swr-dmic.04",
  73. };
  74. const char *dai_name_list[] = {
  75. "swr_dmic_tx0",
  76. "swr_dmic_tx1",
  77. "swr_dmic_tx2",
  78. "swr_dmic_tx3",
  79. };
  80. const char *aif_name_list[] = {
  81. "SWR_DMIC_AIF0 Capture",
  82. "SWR_DMIC_AIF1 Capture",
  83. "SWR_DMIC_AIF2 Capture",
  84. "SWR_DMIC_AIF3 Capture",
  85. };
  86. static int swr_dmic_reset(struct swr_device *pdev);
  87. static int swr_dmic_up(struct swr_device *pdev);
  88. static int swr_dmic_down(struct swr_device *pdev);
  89. static int swr_dmic_event_notify(struct notifier_block *block,
  90. unsigned long val,
  91. void *data);
  92. static inline int swr_dmic_tx_get_slave_port_type_idx(const char *wname,
  93. unsigned int *port_idx)
  94. {
  95. u8 port_type;
  96. if (strnstr(wname, "HIFI", strlen(wname)))
  97. port_type = SWR_DMIC_HIFI_PORT;
  98. else if (strnstr(wname, "LP", strlen(wname)))
  99. port_type = SWR_DMIC_LP_PORT;
  100. else
  101. return -EINVAL;
  102. *port_idx = port_type;
  103. return 0;
  104. }
  105. static inline int swr_dmic_get_master_port_val(int port)
  106. {
  107. int i;
  108. for (i = 0; i < ARRAY_SIZE(swr_master_channel_map); i++)
  109. if (port == swr_master_channel_map[i])
  110. return i;
  111. return 0;
  112. }
  113. static int swr_dmic_tx_master_port_get(struct snd_kcontrol *kcontrol,
  114. struct snd_ctl_elem_value *ucontrol)
  115. {
  116. struct snd_soc_component *component =
  117. snd_soc_kcontrol_component(kcontrol);
  118. struct swr_dmic_priv *swr_dmic = snd_soc_component_get_drvdata(component);
  119. int ret = 0;
  120. int slave_port_idx;
  121. ret = swr_dmic_tx_get_slave_port_type_idx(kcontrol->id.name,
  122. &slave_port_idx);
  123. if (ret) {
  124. dev_dbg(component->dev, "%s: invalid port string\n", __func__);
  125. return ret;
  126. }
  127. swr_dmic->port_type = slave_port_idx;
  128. ucontrol->value.integer.value[0] =
  129. swr_dmic_get_master_port_val(
  130. swr_dmic->tx_master_port_map[slave_port_idx]);
  131. dev_dbg(component->dev, "%s: ucontrol->value.integer.value[0] = %ld\n",
  132. __func__, ucontrol->value.integer.value[0]);
  133. return 0;
  134. }
  135. static int swr_dmic_tx_master_port_put(struct snd_kcontrol *kcontrol,
  136. struct snd_ctl_elem_value *ucontrol)
  137. {
  138. struct snd_soc_component *component =
  139. snd_soc_kcontrol_component(kcontrol);
  140. struct swr_dmic_priv *swr_dmic = snd_soc_component_get_drvdata(component);
  141. int ret = 0;
  142. int slave_port_idx;
  143. ret = swr_dmic_tx_get_slave_port_type_idx(kcontrol->id.name,
  144. &slave_port_idx);
  145. if (ret) {
  146. dev_dbg(component->dev, "%s: invalid port string\n", __func__);
  147. return ret;
  148. }
  149. swr_dmic->port_type = slave_port_idx;
  150. swr_dmic->tx_master_port_map[slave_port_idx] =
  151. swr_master_channel_map[ucontrol->value.enumerated.item[0]];
  152. dev_dbg(component->dev, "%s: slv port id: %d, master_port_type: %d\n",
  153. __func__, slave_port_idx,
  154. swr_dmic->tx_master_port_map[slave_port_idx]);
  155. return 0;
  156. }
  157. static int swr_dmic_port_enable(struct snd_soc_dapm_widget *w,
  158. struct snd_kcontrol *kcontrol, int event)
  159. {
  160. int ret = 0;
  161. struct snd_soc_component *component =
  162. snd_soc_dapm_to_component(w->dapm);
  163. struct swr_dmic_priv *swr_dmic =
  164. snd_soc_component_get_drvdata(component);
  165. u8 ch_mask = 0x01; // only DpnChannelEN1 register is available
  166. u8 num_port = 1;
  167. u8 port_id = swr_dmic->port_type;
  168. u8 port_type = swr_dmic->tx_master_port_map[port_id];
  169. switch (event) {
  170. case SND_SOC_DAPM_POST_PMU:
  171. ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
  172. swr_dmic->swr_slave->dev_num, true);
  173. break;
  174. case SND_SOC_DAPM_PRE_PMD:
  175. ret = swr_disconnect_port(swr_dmic->swr_slave,
  176. &port_id, num_port, &ch_mask, &port_type);
  177. break;
  178. };
  179. return ret;
  180. }
  181. static int dmic_swr_ctrl(struct snd_soc_dapm_widget *w,
  182. struct snd_kcontrol *kcontrol, int event)
  183. {
  184. int ret = 0;
  185. struct snd_soc_component *component =
  186. snd_soc_dapm_to_component(w->dapm);
  187. struct swr_dmic_priv *swr_dmic =
  188. snd_soc_component_get_drvdata(component);
  189. u8 num_ch = 1;
  190. u8 ch_mask = 0x01; // only DpnChannelEN1 register is available
  191. u32 ch_rate = SWR_CLK_RATE_4P8MHZ;
  192. u8 num_port = 1;
  193. u8 port_type = 0;
  194. u8 port_id = swr_dmic->port_type;
  195. /*
  196. * Port 1 is high quality / 2.4 or 3.072 Mbps
  197. * Port 2 is listen low power / 0.6 or 0.768 Mbps
  198. */
  199. if(swr_dmic->port_type == SWR_DMIC_HIFI_PORT)
  200. ch_rate = SWR_CLK_RATE_2P4MHZ;
  201. else
  202. ch_rate = SWR_CLK_RATE_0P6MHZ;
  203. port_type = swr_dmic->tx_master_port_map[port_id];
  204. dev_dbg(component->dev, "%s port_type: %d event: %d\n", __func__,
  205. port_type, event);
  206. switch (event) {
  207. case SND_SOC_DAPM_PRE_PMU:
  208. ret = swr_connect_port(swr_dmic->swr_slave, &port_id,
  209. num_port, &ch_mask, &ch_rate,
  210. &num_ch, &port_type);
  211. break;
  212. case SND_SOC_DAPM_POST_PMD:
  213. ret = swr_slvdev_datapath_control(swr_dmic->swr_slave,
  214. swr_dmic->swr_slave->dev_num, false);
  215. break;
  216. };
  217. return ret;
  218. }
  219. static const char * const tx_master_port_text[] = {
  220. "ZERO", "SWRM_TX1_CH1", "SWRM_TX1_CH2", "SWRM_TX1_CH3", "SWRM_TX1_CH4",
  221. "SWRM_TX2_CH1", "SWRM_TX2_CH2", "SWRM_TX2_CH3", "SWRM_TX2_CH4",
  222. "SWRM_TX3_CH1", "SWRM_TX3_CH2", "SWRM_TX3_CH3", "SWRM_TX3_CH4",
  223. "SWRM_PCM_IN",
  224. };
  225. static const struct soc_enum tx_master_port_enum =
  226. SOC_ENUM_SINGLE_EXT(ARRAY_SIZE(tx_master_port_text),
  227. tx_master_port_text);
  228. static const struct snd_kcontrol_new swr_dmic_snd_controls[] = {
  229. SOC_ENUM_EXT("HIFI PortMap", tx_master_port_enum,
  230. swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
  231. SOC_ENUM_EXT("LP PortMap", tx_master_port_enum,
  232. swr_dmic_tx_master_port_get, swr_dmic_tx_master_port_put),
  233. };
  234. static const struct snd_kcontrol_new dmic_switch[] = {
  235. SOC_DAPM_SINGLE("Switch", SND_SOC_NOPM, 0, 1, 0)
  236. };
  237. static const struct snd_soc_dapm_widget swr_dmic_dapm_widgets[] = {
  238. SND_SOC_DAPM_MIXER_E("SWR_DMIC_MIXER", SND_SOC_NOPM, 0, 0,
  239. dmic_switch, ARRAY_SIZE(dmic_switch), dmic_swr_ctrl,
  240. SND_SOC_DAPM_PRE_PMU | SND_SOC_DAPM_POST_PMD),
  241. SND_SOC_DAPM_INPUT("SWR_DMIC"),
  242. SND_SOC_DAPM_OUT_DRV_E("SMIC_PORT_EN", SND_SOC_NOPM, 0, 0, NULL, 0,
  243. swr_dmic_port_enable,
  244. SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD),
  245. SND_SOC_DAPM_OUTPUT("SWR_DMIC_OUTPUT"),
  246. };
  247. static const struct snd_soc_dapm_route swr_dmic_audio_map[] = {
  248. {"SWR_DMIC_MIXER", "Switch", "SWR_DMIC"},
  249. {"SMIC_PORT_EN", NULL, "SWR_DMIC_MIXER"},
  250. {"SWR_DMIC_OUTPUT", NULL, "SMIC_PORT_EN"},
  251. };
  252. static int swr_dmic_codec_probe(struct snd_soc_component *component)
  253. {
  254. struct swr_dmic_priv *swr_dmic =
  255. snd_soc_component_get_drvdata(component);
  256. struct snd_soc_dapm_context *dapm =
  257. snd_soc_component_get_dapm(component);
  258. char w_name[100];
  259. if (!swr_dmic)
  260. return -EINVAL;
  261. swr_dmic->component = component;
  262. snd_soc_dapm_ignore_suspend(dapm,
  263. swr_dmic->dai_driver->capture.stream_name);
  264. memset(w_name, 0, 100);
  265. strlcpy(w_name, component->name_prefix, 100);
  266. strlcat(w_name, " SWR_DMIC", 100);
  267. snd_soc_dapm_ignore_suspend(dapm, w_name);
  268. memset(w_name, 0, 100);
  269. strlcpy(w_name, component->name_prefix, 100);
  270. strlcat(w_name, " SMIC_SUPPLY", 100);
  271. snd_soc_dapm_ignore_suspend(dapm, w_name);
  272. memset(w_name, 0, 100);
  273. strlcpy(w_name, component->name_prefix, 100);
  274. strlcat(w_name, " SMIC_PORT_EN", 100);
  275. snd_soc_dapm_ignore_suspend(dapm, w_name);
  276. memset(w_name, 0, 100);
  277. strlcpy(w_name, component->name_prefix, 100);
  278. strlcat(w_name, " SWR_DMIC_OUTPUT", 100);
  279. snd_soc_dapm_ignore_suspend(dapm, w_name);
  280. snd_soc_dapm_sync(dapm);
  281. swr_dmic->nblock.notifier_call = swr_dmic_event_notify;
  282. wcd938x_swr_dmic_register_notifier(swr_dmic->supply_component,
  283. &swr_dmic->nblock, true);
  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. dev_dbg(component->dev, "%s: supply %d micbias: %d enable: %d\n",
  314. __func__, swr_dmic->is_en_supply, micb_num, enable);
  315. if (enable)
  316. rc = wcd938x_codec_force_enable_micbias_v2(component,
  317. SND_SOC_DAPM_PRE_PMU, micb_num);
  318. else
  319. rc = wcd938x_codec_force_enable_micbias_v2(component,
  320. SND_SOC_DAPM_POST_PMD, micb_num);
  321. return rc;
  322. }
  323. static int swr_dmic_parse_supply(struct device_node *np,
  324. struct swr_dmic_priv *swr_dmic)
  325. {
  326. struct platform_device *pdev = NULL;
  327. if (!np || !swr_dmic)
  328. return -EINVAL;
  329. pdev = of_find_device_by_node(np);
  330. if (!pdev)
  331. return -EINVAL;
  332. swr_dmic->supply_component = snd_soc_lookup_component(&pdev->dev, NULL);
  333. return 0;
  334. }
  335. static struct snd_soc_dai_driver swr_dmic_dai[] = {
  336. {
  337. .name = "",
  338. .id = 0,
  339. .capture = {
  340. .stream_name = "",
  341. .rates = (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000 |
  342. SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_48000 |
  343. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_192000),
  344. .formats = (SNDRV_PCM_FMTBIT_S16_LE |
  345. SNDRV_PCM_FMTBIT_S24_LE |
  346. SNDRV_PCM_FMTBIT_S32_LE),
  347. .rate_max = 192000,
  348. .rate_min = 8000,
  349. .channels_min = 1,
  350. .channels_max = 2,
  351. },
  352. },
  353. };
  354. static int swr_dmic_event_notify(struct notifier_block *block,
  355. unsigned long val,
  356. void *data)
  357. {
  358. u16 event = (val & 0xffff);
  359. int ret = 0;
  360. struct swr_dmic_priv *swr_dmic = container_of(block,
  361. struct swr_dmic_priv,
  362. nblock);
  363. switch (event) {
  364. case WCD938X_EVT_SSR_DOWN:
  365. ret = swr_dmic_down(swr_dmic->swr_slave);
  366. break;
  367. case WCD938X_EVT_SSR_UP:
  368. ret = swr_dmic_up(swr_dmic->swr_slave);
  369. if (!ret)
  370. ret = swr_dmic_reset(swr_dmic->swr_slave);
  371. break;
  372. }
  373. return ret;
  374. }
  375. static int swr_dmic_probe(struct swr_device *pdev)
  376. {
  377. int ret = 0;
  378. int i = 0;
  379. u8 swr_devnum = 0;
  380. int dev_index = -1;
  381. char* prefix_name = NULL;
  382. struct swr_dmic_priv *swr_dmic = NULL;
  383. const char *swr_dmic_name_prefix_of = NULL;
  384. const char *swr_dmic_codec_name_of = NULL;
  385. struct snd_soc_component *component = NULL;
  386. int num_retry = NUM_ATTEMPTS;
  387. swr_dmic = devm_kzalloc(&pdev->dev, sizeof(struct swr_dmic_priv),
  388. GFP_KERNEL);
  389. if (!swr_dmic)
  390. return -ENOMEM;
  391. ret = of_property_read_u32(pdev->dev.of_node, "qcom,swr-dmic-supply",
  392. &swr_dmic->micb_num);
  393. if (ret) {
  394. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  395. __func__, "qcom,swr-dmic-supply",
  396. pdev->dev.of_node->full_name);
  397. goto err;
  398. }
  399. swr_dmic->wcd_handle = of_parse_phandle(pdev->dev.of_node,
  400. "qcom,wcd-handle", 0);
  401. if (!swr_dmic->wcd_handle) {
  402. dev_dbg(&pdev->dev, "%s: no wcd handle listed\n",
  403. __func__);
  404. swr_dmic->is_wcd_supply = false;
  405. } else {
  406. swr_dmic_parse_supply(swr_dmic->wcd_handle, swr_dmic);
  407. swr_dmic->is_wcd_supply = true;
  408. }
  409. if (swr_dmic->is_wcd_supply) {
  410. ret = enable_wcd_codec_supply(swr_dmic, true);
  411. if (ret) {
  412. ret = -EPROBE_DEFER;
  413. swr_dmic->is_wcd_supply = false;
  414. swr_dmic->wcd_handle = NULL;
  415. goto err;
  416. }
  417. ++swr_dmic->is_en_supply;
  418. }
  419. swr_set_dev_data(pdev, swr_dmic);
  420. swr_dmic->swr_slave = pdev;
  421. ret = of_property_read_string(pdev->dev.of_node, "qcom,swr-dmic-prefix",
  422. &swr_dmic_name_prefix_of);
  423. if (ret) {
  424. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  425. __func__, "qcom,swr-dmic-prefix",
  426. pdev->dev.of_node->full_name);
  427. goto dev_err;
  428. }
  429. ret = of_property_read_string(pdev->dev.of_node, "qcom,codec-name",
  430. &swr_dmic_codec_name_of);
  431. if (ret) {
  432. dev_dbg(&pdev->dev, "%s: Looking up %s property in node %s failed\n",
  433. __func__, "qcom,codec-name",
  434. pdev->dev.of_node->full_name);
  435. goto dev_err;
  436. }
  437. /*
  438. * Add 5msec delay to provide sufficient time for
  439. * soundwire auto enumeration of slave devices as
  440. * as per HW requirement.
  441. */
  442. usleep_range(5000, 5010);
  443. do {
  444. /* Add delay for soundwire enumeration */
  445. usleep_range(100, 110);
  446. ret = swr_get_logical_dev_num(pdev, pdev->addr, &swr_devnum);
  447. } while (ret && --num_retry);
  448. if (ret) {
  449. dev_info(&pdev->dev,
  450. "%s get devnum %d for dev addr %llx failed\n",
  451. __func__, swr_devnum, pdev->addr);
  452. ret = -EPROBE_DEFER;
  453. if (swr_dmic->is_en_supply == 1) {
  454. enable_wcd_codec_supply(swr_dmic, false);
  455. --swr_dmic->is_en_supply;
  456. }
  457. swr_dmic->is_wcd_supply = false;
  458. swr_dmic->wcd_handle = NULL;
  459. goto err;
  460. }
  461. pdev->dev_num = swr_devnum;
  462. swr_dmic->driver = devm_kzalloc(&pdev->dev,
  463. sizeof(struct snd_soc_component_driver), GFP_KERNEL);
  464. if (!swr_dmic->driver) {
  465. ret = -ENOMEM;
  466. goto dev_err;
  467. }
  468. memcpy(swr_dmic->driver, &soc_codec_dev_swr_dmic,
  469. sizeof(struct snd_soc_component_driver));
  470. for (i = 0; i < ARRAY_SIZE(codec_name_list); i++) {
  471. if (!strcmp(swr_dmic_codec_name_of, codec_name_list[i])) {
  472. dev_index = i;
  473. break;
  474. }
  475. }
  476. if (dev_index < 0) {
  477. ret = -EINVAL;
  478. goto dev_err;
  479. }
  480. swr_dmic->driver->name = codec_name_list[dev_index];
  481. swr_dmic->dai_driver = devm_kzalloc(&pdev->dev,
  482. sizeof(struct snd_soc_dai_driver), GFP_KERNEL);
  483. if (!swr_dmic->dai_driver) {
  484. ret = -ENOMEM;
  485. goto dev_err;
  486. }
  487. memcpy(swr_dmic->dai_driver, swr_dmic_dai,
  488. sizeof(struct snd_soc_dai_driver));
  489. swr_dmic->dai_driver->id = dev_index;
  490. swr_dmic->dai_driver->name = dai_name_list[dev_index];
  491. swr_dmic->dai_driver->capture.stream_name = aif_name_list[dev_index];
  492. /* Number of DAI's used is 1 */
  493. ret = snd_soc_register_component(&pdev->dev, swr_dmic->driver,
  494. swr_dmic->dai_driver, 1);
  495. if (ret) {
  496. dev_err(&pdev->dev, "%s: Codec registration failed\n",
  497. __func__);
  498. goto dev_err;
  499. }
  500. component = snd_soc_lookup_component(&pdev->dev,
  501. swr_dmic->driver->name);
  502. if (!component) {
  503. dev_err(&pdev->dev, "%s: could not find swr_dmic component\n",
  504. __func__);
  505. goto dev_err;
  506. }
  507. swr_dmic->component = component;
  508. prefix_name = devm_kzalloc(&pdev->dev,
  509. strlen(swr_dmic_name_prefix_of) + 1,
  510. GFP_KERNEL);
  511. if (!prefix_name) {
  512. ret = -ENOMEM;
  513. goto dev_err;
  514. }
  515. strlcpy(prefix_name, swr_dmic_name_prefix_of,
  516. strlen(swr_dmic_name_prefix_of) + 1);
  517. component->name_prefix = prefix_name;
  518. return 0;
  519. dev_err:
  520. if (swr_dmic->is_en_supply == 1) {
  521. enable_wcd_codec_supply(swr_dmic, false);
  522. --swr_dmic->is_en_supply;
  523. }
  524. swr_dmic->is_wcd_supply = false;
  525. swr_dmic->wcd_handle = NULL;
  526. swr_remove_device(pdev);
  527. err:
  528. return ret;
  529. }
  530. static int swr_dmic_remove(struct swr_device *pdev)
  531. {
  532. struct swr_dmic_priv *swr_dmic;
  533. swr_dmic = swr_get_dev_data(pdev);
  534. if (!swr_dmic) {
  535. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  536. return -EINVAL;
  537. }
  538. if (swr_dmic->is_en_supply == 1) {
  539. enable_wcd_codec_supply(swr_dmic, false);
  540. --swr_dmic->is_en_supply;
  541. }
  542. snd_soc_unregister_component(&pdev->dev);
  543. swr_set_dev_data(pdev, NULL);
  544. return 0;
  545. }
  546. static int swr_dmic_up(struct swr_device *pdev)
  547. {
  548. int ret = 0;
  549. struct swr_dmic_priv *swr_dmic;
  550. swr_dmic = swr_get_dev_data(pdev);
  551. if (!swr_dmic) {
  552. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  553. return -EINVAL;
  554. }
  555. ++swr_dmic->is_en_supply;
  556. if (swr_dmic->is_en_supply == 1)
  557. ret = enable_wcd_codec_supply(swr_dmic, true);
  558. return ret;
  559. }
  560. static int swr_dmic_down(struct swr_device *pdev)
  561. {
  562. struct swr_dmic_priv *swr_dmic;
  563. int ret = 0;
  564. swr_dmic = swr_get_dev_data(pdev);
  565. if (!swr_dmic) {
  566. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  567. return -EINVAL;
  568. }
  569. dev_dbg(&pdev->dev, "%s: is_en_supply: %d\n",
  570. __func__, swr_dmic->is_en_supply);
  571. --swr_dmic->is_en_supply;
  572. if (swr_dmic->is_en_supply < 0) {
  573. dev_warn(&pdev->dev, "%s: mismatch in supply count %d\n",
  574. __func__, swr_dmic->is_en_supply);
  575. swr_dmic->is_en_supply = 0;
  576. goto done;
  577. }
  578. if (!swr_dmic->is_en_supply)
  579. enable_wcd_codec_supply(swr_dmic, false);
  580. done:
  581. return ret;
  582. }
  583. static int swr_dmic_reset(struct swr_device *pdev)
  584. {
  585. struct swr_dmic_priv *swr_dmic;
  586. u8 retry = NUM_ATTEMPTS;
  587. u8 devnum = 0;
  588. swr_dmic = swr_get_dev_data(pdev);
  589. if (!swr_dmic) {
  590. dev_err(&pdev->dev, "%s: swr_dmic is NULL\n", __func__);
  591. return -EINVAL;
  592. }
  593. while (swr_get_logical_dev_num(pdev, pdev->addr, &devnum) && retry--) {
  594. /* Retry after 1 msec delay */
  595. usleep_range(1000, 1100);
  596. }
  597. pdev->dev_num = devnum;
  598. dev_dbg(&pdev->dev, "%s: devnum: %d\n", __func__, devnum);
  599. return 0;
  600. }
  601. #ifdef CONFIG_PM_SLEEP
  602. static int swr_dmic_suspend(struct device *dev)
  603. {
  604. dev_dbg(dev, "%s: system suspend\n", __func__);
  605. return 0;
  606. }
  607. static int swr_dmic_resume(struct device *dev)
  608. {
  609. struct swr_dmic_priv *swr_dmic = swr_get_dev_data(to_swr_device(dev));
  610. if (!swr_dmic) {
  611. dev_err(dev, "%s: swr_dmic private data is NULL\n", __func__);
  612. return -EINVAL;
  613. }
  614. dev_dbg(dev, "%s: system resume\n", __func__);
  615. return 0;
  616. }
  617. #endif /* CONFIG_PM_SLEEP */
  618. static const struct dev_pm_ops swr_dmic_pm_ops = {
  619. SET_SYSTEM_SLEEP_PM_OPS(swr_dmic_suspend, swr_dmic_resume)
  620. };
  621. static const struct swr_device_id swr_dmic_id[] = {
  622. {"swr-dmic", 0},
  623. {}
  624. };
  625. static const struct of_device_id swr_dmic_dt_match[] = {
  626. {
  627. .compatible = "qcom,swr-dmic",
  628. },
  629. {}
  630. };
  631. static struct swr_driver swr_dmic_driver = {
  632. .driver = {
  633. .name = "swr-dmic",
  634. .owner = THIS_MODULE,
  635. .pm = &swr_dmic_pm_ops,
  636. .of_match_table = swr_dmic_dt_match,
  637. },
  638. .probe = swr_dmic_probe,
  639. .remove = swr_dmic_remove,
  640. .id_table = swr_dmic_id,
  641. };
  642. static int __init swr_dmic_init(void)
  643. {
  644. return swr_driver_register(&swr_dmic_driver);
  645. }
  646. static void __exit swr_dmic_exit(void)
  647. {
  648. swr_driver_unregister(&swr_dmic_driver);
  649. }
  650. module_init(swr_dmic_init);
  651. module_exit(swr_dmic_exit);
  652. MODULE_DESCRIPTION("SWR DMIC driver");
  653. MODULE_LICENSE("GPL v2");