msm-pcm-voice-v2.c 22 KB

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