msm-pcm-voice-v2.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. // SPDX-License-Identifier: GPL-2.0
  2. /* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/init.h>
  5. #include <linux/err.h>
  6. #include <linux/module.h>
  7. #include <linux/time.h>
  8. #include <linux/wait.h>
  9. #include <linux/platform_device.h>
  10. #include <linux/slab.h>
  11. #include <linux/dma-mapping.h>
  12. #include <sound/core.h>
  13. #include <sound/soc.h>
  14. #include <sound/soc-dapm.h>
  15. #include <sound/pcm.h>
  16. #include <sound/initval.h>
  17. #include <sound/control.h>
  18. #include <asm/dma.h>
  19. #include <linux/of_device.h>
  20. #include <dsp/q6voice.h>
  21. #include "msm-pcm-voice-v2.h"
  22. static struct msm_voice voice_info[VOICE_SESSION_INDEX_MAX];
  23. static struct snd_pcm_hardware msm_pcm_hardware = {
  24. .info = (SNDRV_PCM_INFO_INTERLEAVED |
  25. SNDRV_PCM_INFO_PAUSE |
  26. SNDRV_PCM_INFO_RESUME),
  27. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  28. .rates = SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_16000,
  29. .rate_min = 8000,
  30. .rate_max = 16000,
  31. .channels_min = 1,
  32. .channels_max = 1,
  33. .buffer_bytes_max = 4096 * 2,
  34. .period_bytes_min = 2048,
  35. .period_bytes_max = 4096,
  36. .periods_min = 2,
  37. .periods_max = 4,
  38. .fifo_size = 0,
  39. };
  40. static bool is_volte(struct msm_voice *pvolte)
  41. {
  42. if (pvolte == &voice_info[VOLTE_SESSION_INDEX])
  43. return true;
  44. else
  45. return false;
  46. }
  47. static bool is_voice2(struct msm_voice *pvoice2)
  48. {
  49. if (pvoice2 == &voice_info[VOICE2_SESSION_INDEX])
  50. return true;
  51. else
  52. return false;
  53. }
  54. static bool is_qchat(struct msm_voice *pqchat)
  55. {
  56. if (pqchat == &voice_info[QCHAT_SESSION_INDEX])
  57. return true;
  58. else
  59. return false;
  60. }
  61. static bool is_vowlan(struct msm_voice *pvowlan)
  62. {
  63. if (pvowlan == &voice_info[VOWLAN_SESSION_INDEX])
  64. return true;
  65. else
  66. return false;
  67. }
  68. static bool is_voicemmode1(struct msm_voice *pvoicemmode1)
  69. {
  70. if (pvoicemmode1 == &voice_info[VOICEMMODE1_INDEX])
  71. return true;
  72. else
  73. return false;
  74. }
  75. static bool is_voicemmode2(struct msm_voice *pvoicemmode2)
  76. {
  77. if (pvoicemmode2 == &voice_info[VOICEMMODE2_INDEX])
  78. return true;
  79. else
  80. return false;
  81. }
  82. static uint32_t get_session_id(struct msm_voice *pvoc)
  83. {
  84. uint32_t session_id = 0;
  85. if (is_volte(pvoc))
  86. session_id = voc_get_session_id(VOLTE_SESSION_NAME);
  87. else if (is_voice2(pvoc))
  88. session_id = voc_get_session_id(VOICE2_SESSION_NAME);
  89. else if (is_qchat(pvoc))
  90. session_id = voc_get_session_id(QCHAT_SESSION_NAME);
  91. else if (is_vowlan(pvoc))
  92. session_id = voc_get_session_id(VOWLAN_SESSION_NAME);
  93. else if (is_voicemmode1(pvoc))
  94. session_id = voc_get_session_id(VOICEMMODE1_NAME);
  95. else if (is_voicemmode2(pvoc))
  96. session_id = voc_get_session_id(VOICEMMODE2_NAME);
  97. else
  98. session_id = voc_get_session_id(VOICE_SESSION_NAME);
  99. return session_id;
  100. }
  101. static int msm_pcm_playback_prepare(struct snd_pcm_substream *substream)
  102. {
  103. struct snd_pcm_runtime *runtime = substream->runtime;
  104. struct msm_voice *prtd = runtime->private_data;
  105. pr_debug("%s\n", __func__);
  106. if (!prtd->playback_start)
  107. prtd->playback_start = 1;
  108. return 0;
  109. }
  110. static int msm_pcm_capture_prepare(struct snd_pcm_substream *substream)
  111. {
  112. struct snd_pcm_runtime *runtime = substream->runtime;
  113. struct msm_voice *prtd = runtime->private_data;
  114. pr_debug("%s\n", __func__);
  115. if (!prtd->capture_start)
  116. prtd->capture_start = 1;
  117. return 0;
  118. }
  119. static int msm_pcm_open(struct snd_pcm_substream *substream)
  120. {
  121. struct snd_pcm_runtime *runtime = substream->runtime;
  122. struct msm_voice *voice;
  123. if (!strncmp("VoLTE", substream->pcm->id, 5)) {
  124. voice = &voice_info[VOLTE_SESSION_INDEX];
  125. pr_debug("%s: Open VoLTE Substream Id=%s\n",
  126. __func__, substream->pcm->id);
  127. } else if (!strncmp("Voice2", substream->pcm->id, 6)) {
  128. voice = &voice_info[VOICE2_SESSION_INDEX];
  129. pr_debug("%s: Open Voice2 Substream Id=%s\n",
  130. __func__, substream->pcm->id);
  131. } else if (!strncmp("QCHAT", substream->pcm->id, 5)) {
  132. voice = &voice_info[QCHAT_SESSION_INDEX];
  133. pr_debug("%s: Open QCHAT Substream Id=%s\n",
  134. __func__, substream->pcm->id);
  135. } else if (!strncmp("VoWLAN", substream->pcm->id, 6)) {
  136. voice = &voice_info[VOWLAN_SESSION_INDEX];
  137. pr_debug("%s: Open VoWLAN Substream Id=%s\n",
  138. __func__, substream->pcm->id);
  139. } else if (!strncmp("VoiceMMode1", substream->pcm->id, 11)) {
  140. voice = &voice_info[VOICEMMODE1_INDEX];
  141. pr_debug("%s: Open VoiceMMode1 Substream Id=%s\n",
  142. __func__, substream->pcm->id);
  143. } else if (!strncmp("VoiceMMode2", substream->pcm->id, 11)) {
  144. voice = &voice_info[VOICEMMODE2_INDEX];
  145. pr_debug("%s: Open VoiceMMode2 Substream Id=%s\n",
  146. __func__, substream->pcm->id);
  147. } else {
  148. voice = &voice_info[VOICE_SESSION_INDEX];
  149. pr_debug("%s: Open VOICE Substream Id=%s\n",
  150. __func__, substream->pcm->id);
  151. }
  152. mutex_lock(&voice->lock);
  153. runtime->hw = msm_pcm_hardware;
  154. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  155. voice->playback_substream = substream;
  156. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  157. voice->capture_substream = substream;
  158. voice->instance++;
  159. pr_debug("%s: Instance = %d, Stream ID = %s\n",
  160. __func__, voice->instance, substream->pcm->id);
  161. runtime->private_data = voice;
  162. mutex_unlock(&voice->lock);
  163. return 0;
  164. }
  165. static int msm_pcm_playback_close(struct snd_pcm_substream *substream)
  166. {
  167. struct snd_pcm_runtime *runtime = substream->runtime;
  168. struct msm_voice *prtd = runtime->private_data;
  169. pr_debug("%s\n", __func__);
  170. if (prtd->playback_start)
  171. prtd->playback_start = 0;
  172. prtd->playback_substream = NULL;
  173. return 0;
  174. }
  175. static int msm_pcm_capture_close(struct snd_pcm_substream *substream)
  176. {
  177. struct snd_pcm_runtime *runtime = substream->runtime;
  178. struct msm_voice *prtd = runtime->private_data;
  179. pr_debug("%s\n", __func__);
  180. if (prtd->capture_start)
  181. prtd->capture_start = 0;
  182. prtd->capture_substream = NULL;
  183. return 0;
  184. }
  185. static int msm_pcm_close(struct snd_pcm_substream *substream)
  186. {
  187. struct snd_pcm_runtime *runtime = substream->runtime;
  188. struct msm_voice *prtd = runtime->private_data;
  189. uint32_t session_id = 0;
  190. int ret = 0;
  191. mutex_lock(&prtd->lock);
  192. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  193. ret = msm_pcm_playback_close(substream);
  194. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  195. ret = msm_pcm_capture_close(substream);
  196. prtd->instance--;
  197. if (!prtd->playback_start && !prtd->capture_start) {
  198. pr_debug("end voice call\n");
  199. session_id = get_session_id(prtd);
  200. if (session_id)
  201. voc_end_voice_call(session_id);
  202. }
  203. mutex_unlock(&prtd->lock);
  204. return ret;
  205. }
  206. static int msm_pcm_prepare(struct snd_pcm_substream *substream)
  207. {
  208. int ret = 0;
  209. struct snd_pcm_runtime *runtime = substream->runtime;
  210. struct msm_voice *prtd = runtime->private_data;
  211. uint32_t session_id = 0;
  212. mutex_lock(&prtd->lock);
  213. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  214. ret = msm_pcm_playback_prepare(substream);
  215. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  216. ret = msm_pcm_capture_prepare(substream);
  217. if (prtd->playback_start && prtd->capture_start) {
  218. session_id = get_session_id(prtd);
  219. if (session_id)
  220. voc_start_voice_call(session_id);
  221. }
  222. mutex_unlock(&prtd->lock);
  223. return ret;
  224. }
  225. static int msm_pcm_hw_params(struct snd_pcm_substream *substream,
  226. struct snd_pcm_hw_params *params)
  227. {
  228. pr_debug("%s: Voice\n", __func__);
  229. snd_pcm_set_runtime_buffer(substream, &substream->dma_buffer);
  230. return 0;
  231. }
  232. static int msm_pcm_trigger(struct snd_pcm_substream *substream, int cmd)
  233. {
  234. int ret = 0;
  235. struct snd_pcm_runtime *runtime = substream->runtime;
  236. struct msm_voice *prtd = runtime->private_data;
  237. uint32_t session_id = 0;
  238. pr_debug("%s: cmd = %d\n", __func__, cmd);
  239. session_id = get_session_id(prtd);
  240. switch (cmd) {
  241. case SNDRV_PCM_TRIGGER_START:
  242. case SNDRV_PCM_TRIGGER_STOP:
  243. pr_debug("Start & Stop Voice call not handled in Trigger.\n");
  244. break;
  245. case SNDRV_PCM_TRIGGER_RESUME:
  246. case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
  247. pr_debug("%s: resume call session_id = %d\n", __func__,
  248. session_id);
  249. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK)
  250. ret = msm_pcm_playback_prepare(substream);
  251. else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE)
  252. ret = msm_pcm_capture_prepare(substream);
  253. if (prtd->playback_start && prtd->capture_start) {
  254. if (session_id)
  255. voc_resume_voice_call(session_id);
  256. }
  257. break;
  258. case SNDRV_PCM_TRIGGER_SUSPEND:
  259. case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
  260. pr_debug("%s: pause call session_id=%d\n",
  261. __func__, session_id);
  262. if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) {
  263. if (prtd->playback_start)
  264. prtd->playback_start = 0;
  265. } else if (substream->stream == SNDRV_PCM_STREAM_CAPTURE) {
  266. if (prtd->capture_start)
  267. prtd->capture_start = 0;
  268. }
  269. if (session_id)
  270. voc_standby_voice_call(session_id);
  271. break;
  272. default:
  273. ret = -EINVAL;
  274. break;
  275. }
  276. return ret;
  277. }
  278. static int msm_pcm_ioctl(struct snd_pcm_substream *substream,
  279. unsigned int cmd, void *arg)
  280. {
  281. struct snd_pcm_runtime *runtime = substream->runtime;
  282. struct msm_voice *prtd = runtime->private_data;
  283. uint32_t session_id = get_session_id(prtd);
  284. enum voice_lch_mode lch_mode;
  285. int ret = 0;
  286. switch (cmd) {
  287. case SNDRV_VOICE_IOCTL_LCH:
  288. if (copy_from_user(&lch_mode, (void *)arg,
  289. sizeof(enum voice_lch_mode))) {
  290. pr_err("%s: Copy from user failed, size %zd\n",
  291. __func__, sizeof(enum voice_lch_mode));
  292. ret = -EFAULT;
  293. break;
  294. }
  295. pr_debug("%s: %s lch_mode:%d\n",
  296. __func__, substream->pcm->id, lch_mode);
  297. switch (lch_mode) {
  298. case VOICE_LCH_START:
  299. case VOICE_LCH_STOP:
  300. ret = voc_set_lch(session_id, lch_mode);
  301. break;
  302. default:
  303. pr_err("%s: Invalid LCH MODE %d\n", __func__, lch_mode);
  304. ret = -EFAULT;
  305. }
  306. break;
  307. default:
  308. pr_debug("%s: Falling into default snd_lib_ioctl cmd 0x%x\n",
  309. __func__, cmd);
  310. ret = snd_pcm_lib_ioctl(substream, cmd, arg);
  311. break;
  312. }
  313. if (!ret)
  314. pr_debug("%s: ret %d\n", __func__, ret);
  315. else
  316. pr_err("%s: cmd 0x%x failed %d\n", __func__, cmd, ret);
  317. return ret;
  318. }
  319. static int msm_voice_sidetone_put(struct snd_kcontrol *kcontrol,
  320. struct snd_ctl_elem_value *ucontrol)
  321. {
  322. int ret;
  323. long value = ucontrol->value.integer.value[0];
  324. bool sidetone_enable = value;
  325. uint32_t session_id = ALL_SESSION_VSID;
  326. if (value < 0) {
  327. pr_err("%s: Invalid arguments sidetone enable %ld\n",
  328. __func__, value);
  329. ret = -EINVAL;
  330. return ret;
  331. }
  332. ret = voc_set_afe_sidetone(session_id, sidetone_enable);
  333. pr_debug("%s: AFE Sidetone enable=%d session_id=0x%x ret=%d\n",
  334. __func__, sidetone_enable, session_id, ret);
  335. return ret;
  336. }
  337. static int msm_voice_sidetone_get(struct snd_kcontrol *kcontrol,
  338. struct snd_ctl_elem_value *ucontrol)
  339. {
  340. ucontrol->value.integer.value[0] = voc_get_afe_sidetone();
  341. return 0;
  342. }
  343. static int msm_voice_gain_put(struct snd_kcontrol *kcontrol,
  344. struct snd_ctl_elem_value *ucontrol)
  345. {
  346. int ret = 0;
  347. int volume = ucontrol->value.integer.value[0];
  348. uint32_t session_id = ucontrol->value.integer.value[1];
  349. int ramp_duration = ucontrol->value.integer.value[2];
  350. if ((volume < 0) || (ramp_duration < 0)
  351. || (ramp_duration > MAX_RAMP_DURATION)) {
  352. pr_err(" %s Invalid arguments", __func__);
  353. ret = -EINVAL;
  354. goto done;
  355. }
  356. pr_debug("%s: volume: %d session_id: %#x ramp_duration: %d\n", __func__,
  357. volume, session_id, ramp_duration);
  358. voc_set_rx_vol_step(session_id, RX_PATH, volume, ramp_duration);
  359. done:
  360. return ret;
  361. }
  362. static int msm_voice_mute_put(struct snd_kcontrol *kcontrol,
  363. struct snd_ctl_elem_value *ucontrol)
  364. {
  365. int ret = 0;
  366. int mute = ucontrol->value.integer.value[0];
  367. uint32_t session_id = ucontrol->value.integer.value[1];
  368. int ramp_duration = ucontrol->value.integer.value[2];
  369. if ((mute < 0) || (mute > 1) || (ramp_duration < 0)
  370. || (ramp_duration > MAX_RAMP_DURATION)) {
  371. pr_err(" %s Invalid arguments", __func__);
  372. ret = -EINVAL;
  373. goto done;
  374. }
  375. pr_debug("%s: mute=%d session_id=%#x ramp_duration=%d\n", __func__,
  376. mute, session_id, ramp_duration);
  377. ret = voc_set_tx_mute(session_id, TX_PATH, mute, ramp_duration);
  378. done:
  379. return ret;
  380. }
  381. static int msm_voice_tx_device_mute_put(struct snd_kcontrol *kcontrol,
  382. struct snd_ctl_elem_value *ucontrol)
  383. {
  384. int ret = 0;
  385. int mute = ucontrol->value.integer.value[0];
  386. uint32_t session_id = ucontrol->value.integer.value[1];
  387. int ramp_duration = ucontrol->value.integer.value[2];
  388. if ((mute < 0) || (mute > 1) || (ramp_duration < 0) ||
  389. (ramp_duration > MAX_RAMP_DURATION)) {
  390. pr_err(" %s Invalid arguments", __func__);
  391. ret = -EINVAL;
  392. goto done;
  393. }
  394. pr_debug("%s: mute=%d session_id=%#x ramp_duration=%d\n", __func__,
  395. mute, session_id, ramp_duration);
  396. ret = voc_set_device_mute(session_id, VSS_IVOLUME_DIRECTION_TX,
  397. mute, ramp_duration);
  398. done:
  399. return ret;
  400. }
  401. static int msm_voice_rx_device_mute_put(struct snd_kcontrol *kcontrol,
  402. struct snd_ctl_elem_value *ucontrol)
  403. {
  404. int ret = 0;
  405. int mute = ucontrol->value.integer.value[0];
  406. uint32_t session_id = ucontrol->value.integer.value[1];
  407. int ramp_duration = ucontrol->value.integer.value[2];
  408. if ((mute < 0) || (mute > 1) || (ramp_duration < 0) ||
  409. (ramp_duration > MAX_RAMP_DURATION)) {
  410. pr_err(" %s Invalid arguments", __func__);
  411. ret = -EINVAL;
  412. goto done;
  413. }
  414. pr_debug("%s: mute=%d session_id=%#x ramp_duration=%d\n", __func__,
  415. mute, session_id, ramp_duration);
  416. voc_set_device_mute(session_id, VSS_IVOLUME_DIRECTION_RX,
  417. mute, ramp_duration);
  418. done:
  419. return ret;
  420. }
  421. static int msm_voice_mbd_get(struct snd_kcontrol *kcontrol,
  422. struct snd_ctl_elem_value *ucontrol)
  423. {
  424. ucontrol->value.integer.value[0] = voc_get_mbd_enable();
  425. return 0;
  426. }
  427. static int msm_voice_mbd_put(struct snd_kcontrol *kcontrol,
  428. struct snd_ctl_elem_value *ucontrol)
  429. {
  430. bool enable = ucontrol->value.integer.value[0];
  431. voc_set_mbd_enable(enable);
  432. return 0;
  433. }
  434. static const char * const tty_mode[] = {"OFF", "HCO", "VCO", "FULL"};
  435. static const struct soc_enum msm_tty_mode_enum[] = {
  436. SOC_ENUM_SINGLE_EXT(4, tty_mode),
  437. };
  438. static int msm_voice_tty_mode_get(struct snd_kcontrol *kcontrol,
  439. struct snd_ctl_elem_value *ucontrol)
  440. {
  441. ucontrol->value.integer.value[0] =
  442. voc_get_tty_mode(voc_get_session_id(VOICE_SESSION_NAME));
  443. return 0;
  444. }
  445. static int msm_voice_tty_mode_put(struct snd_kcontrol *kcontrol,
  446. struct snd_ctl_elem_value *ucontrol)
  447. {
  448. int tty_mode = ucontrol->value.integer.value[0];
  449. pr_debug("%s: tty_mode=%d\n", __func__, tty_mode);
  450. voc_set_tty_mode(voc_get_session_id(VOICE_SESSION_NAME), tty_mode);
  451. voc_set_tty_mode(voc_get_session_id(VOICE2_SESSION_NAME), tty_mode);
  452. voc_set_tty_mode(voc_get_session_id(VOLTE_SESSION_NAME), tty_mode);
  453. voc_set_tty_mode(voc_get_session_id(VOWLAN_SESSION_NAME), tty_mode);
  454. voc_set_tty_mode(voc_get_session_id(VOICEMMODE1_NAME), tty_mode);
  455. voc_set_tty_mode(voc_get_session_id(VOICEMMODE2_NAME), tty_mode);
  456. return 0;
  457. }
  458. static int msm_voice_slowtalk_put(struct snd_kcontrol *kcontrol,
  459. struct snd_ctl_elem_value *ucontrol)
  460. {
  461. int st_enable = ucontrol->value.integer.value[0];
  462. uint32_t session_id = ucontrol->value.integer.value[1];
  463. struct module_instance_info mod_inst_info;
  464. memset(&mod_inst_info, 0, sizeof(mod_inst_info));
  465. pr_debug("%s: st enable=%d session_id=%#x\n", __func__, st_enable,
  466. session_id);
  467. mod_inst_info.module_id = MODULE_ID_VOICE_MODULE_ST;
  468. mod_inst_info.instance_id = INSTANCE_ID_0;
  469. voc_set_pp_enable(session_id, mod_inst_info, st_enable);
  470. return 0;
  471. }
  472. static int msm_voice_hd_voice_put(struct snd_kcontrol *kcontrol,
  473. struct snd_ctl_elem_value *ucontrol)
  474. {
  475. int ret = 0;
  476. uint32_t hd_enable = ucontrol->value.integer.value[0];
  477. uint32_t session_id = ucontrol->value.integer.value[1];
  478. pr_debug("%s: HD Voice enable=%d session_id=%#x\n", __func__, hd_enable,
  479. session_id);
  480. ret = voc_set_hd_enable(session_id, hd_enable);
  481. return ret;
  482. }
  483. static int msm_voice_topology_disable_put(struct snd_kcontrol *kcontrol,
  484. struct snd_ctl_elem_value *ucontrol)
  485. {
  486. int ret = 0;
  487. int disable = ucontrol->value.integer.value[0];
  488. uint32_t session_id = ucontrol->value.integer.value[1];
  489. if ((disable < 0) || (disable > 1)) {
  490. pr_err(" %s Invalid arguments: %d\n", __func__, disable);
  491. ret = -EINVAL;
  492. goto done;
  493. }
  494. pr_debug("%s: disable = %d, session_id = %d\n", __func__, disable,
  495. session_id);
  496. ret = voc_disable_topology(session_id, disable);
  497. done:
  498. return ret;
  499. }
  500. static int msm_voice_cvd_version_info(struct snd_kcontrol *kcontrol,
  501. struct snd_ctl_elem_info *uinfo)
  502. {
  503. int ret = 0;
  504. pr_debug("%s:\n", __func__);
  505. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  506. uinfo->count = CVD_VERSION_STRING_MAX_SIZE;
  507. return ret;
  508. }
  509. static int msm_voice_cvd_version_get(struct snd_kcontrol *kcontrol,
  510. struct snd_ctl_elem_value *ucontrol)
  511. {
  512. char cvd_version[CVD_VERSION_STRING_MAX_SIZE] = CVD_VERSION_DEFAULT;
  513. int ret;
  514. pr_debug("%s:\n", __func__);
  515. ret = voc_get_cvd_version(cvd_version);
  516. if (ret)
  517. pr_err("%s: Error retrieving CVD version, error:%d\n",
  518. __func__, ret);
  519. memcpy(ucontrol->value.bytes.data, cvd_version, sizeof(cvd_version));
  520. return 0;
  521. }
  522. static struct snd_kcontrol_new msm_voice_controls[] = {
  523. SOC_SINGLE_MULTI_EXT("Voice Rx Device Mute", SND_SOC_NOPM, 0, VSID_MAX,
  524. 0, 3, NULL, msm_voice_rx_device_mute_put),
  525. SOC_SINGLE_MULTI_EXT("Voice Tx Device Mute", SND_SOC_NOPM, 0, VSID_MAX,
  526. 0, 3, NULL, msm_voice_tx_device_mute_put),
  527. SOC_SINGLE_MULTI_EXT("Voice Tx Mute", SND_SOC_NOPM, 0, VSID_MAX,
  528. 0, 3, NULL, msm_voice_mute_put),
  529. SOC_SINGLE_MULTI_EXT("Voice Rx Gain", SND_SOC_NOPM, 0, VSID_MAX, 0, 3,
  530. NULL, msm_voice_gain_put),
  531. SOC_ENUM_EXT("TTY Mode", msm_tty_mode_enum[0], msm_voice_tty_mode_get,
  532. msm_voice_tty_mode_put),
  533. SOC_SINGLE_MULTI_EXT("Slowtalk Enable", SND_SOC_NOPM, 0, VSID_MAX, 0, 2,
  534. NULL, msm_voice_slowtalk_put),
  535. SOC_SINGLE_MULTI_EXT("Voice Topology Disable", SND_SOC_NOPM, 0,
  536. VSID_MAX, 0, 2, NULL,
  537. msm_voice_topology_disable_put),
  538. SOC_SINGLE_MULTI_EXT("HD Voice Enable", SND_SOC_NOPM, 0, VSID_MAX, 0, 2,
  539. NULL, msm_voice_hd_voice_put),
  540. {
  541. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  542. .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
  543. .name = "CVD Version",
  544. .info = msm_voice_cvd_version_info,
  545. .get = msm_voice_cvd_version_get,
  546. },
  547. SOC_SINGLE_MULTI_EXT("Voice Sidetone Enable", SND_SOC_NOPM, 0, 1, 0, 1,
  548. msm_voice_sidetone_get, msm_voice_sidetone_put),
  549. SOC_SINGLE_BOOL_EXT("Voice Mic Break Enable", 0, msm_voice_mbd_get,
  550. msm_voice_mbd_put),
  551. };
  552. static const struct snd_pcm_ops msm_pcm_ops = {
  553. .open = msm_pcm_open,
  554. .hw_params = msm_pcm_hw_params,
  555. .close = msm_pcm_close,
  556. .prepare = msm_pcm_prepare,
  557. .trigger = msm_pcm_trigger,
  558. .ioctl = msm_pcm_ioctl,
  559. .compat_ioctl = msm_pcm_ioctl,
  560. };
  561. static int msm_asoc_pcm_new(struct snd_soc_pcm_runtime *rtd)
  562. {
  563. struct snd_card *card = rtd->card->snd_card;
  564. int ret = 0;
  565. if (!card->dev->coherent_dma_mask)
  566. card->dev->coherent_dma_mask = DMA_BIT_MASK(32);
  567. return ret;
  568. }
  569. static int msm_pcm_voice_probe(struct snd_soc_platform *platform)
  570. {
  571. snd_soc_add_platform_controls(platform, msm_voice_controls,
  572. ARRAY_SIZE(msm_voice_controls));
  573. return 0;
  574. }
  575. static struct snd_soc_platform_driver msm_soc_platform = {
  576. .ops = &msm_pcm_ops,
  577. .pcm_new = msm_asoc_pcm_new,
  578. .probe = msm_pcm_voice_probe,
  579. };
  580. static int msm_pcm_probe(struct platform_device *pdev)
  581. {
  582. int rc;
  583. bool destroy_cvd = false;
  584. const char *is_destroy_cvd = "qcom,destroy-cvd";
  585. if (!is_voc_initialized()) {
  586. pr_debug("%s: voice module not initialized yet, deferring probe()\n",
  587. __func__);
  588. rc = -EPROBE_DEFER;
  589. goto done;
  590. }
  591. rc = voc_alloc_cal_shared_memory();
  592. if (rc == -EPROBE_DEFER) {
  593. pr_debug("%s: memory allocation for calibration deferred %d\n",
  594. __func__, rc);
  595. goto done;
  596. } else if (rc < 0) {
  597. pr_err("%s: memory allocation for calibration failed %d\n",
  598. __func__, rc);
  599. }
  600. pr_debug("%s: dev name %s\n",
  601. __func__, dev_name(&pdev->dev));
  602. destroy_cvd = of_property_read_bool(pdev->dev.of_node,
  603. is_destroy_cvd);
  604. voc_set_destroy_cvd_flag(destroy_cvd);
  605. rc = snd_soc_register_platform(&pdev->dev,
  606. &msm_soc_platform);
  607. done:
  608. return rc;
  609. }
  610. static int msm_pcm_remove(struct platform_device *pdev)
  611. {
  612. snd_soc_unregister_platform(&pdev->dev);
  613. return 0;
  614. }
  615. static const struct of_device_id msm_voice_dt_match[] = {
  616. {.compatible = "qcom,msm-pcm-voice"},
  617. {}
  618. };
  619. MODULE_DEVICE_TABLE(of, msm_voice_dt_match);
  620. static struct platform_driver msm_pcm_driver = {
  621. .driver = {
  622. .name = "msm-pcm-voice",
  623. .owner = THIS_MODULE,
  624. .of_match_table = msm_voice_dt_match,
  625. },
  626. .probe = msm_pcm_probe,
  627. .remove = msm_pcm_remove,
  628. };
  629. int __init msm_pcm_voice_init(void)
  630. {
  631. int i = 0;
  632. memset(&voice_info, 0, sizeof(voice_info));
  633. for (i = 0; i < VOICE_SESSION_INDEX_MAX; i++)
  634. mutex_init(&voice_info[i].lock);
  635. return platform_driver_register(&msm_pcm_driver);
  636. }
  637. void msm_pcm_voice_exit(void)
  638. {
  639. platform_driver_unregister(&msm_pcm_driver);
  640. }
  641. MODULE_DESCRIPTION("Voice PCM module platform driver");
  642. MODULE_LICENSE("GPL v2");