swr-dmic.c 23 KB

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