msm-pcm-voice-v2.c 21 KB

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