msm-pcm-voice-v2.h 653 B

12345678910111213141516171819202122232425262728293031323334
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Copyright (c) 2012-2015, The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef _MSM_PCM_VOICE_H
  5. #define _MSM_PCM_VOICE_H
  6. #include <dsp/apr_audio-v2.h>
  7. enum {
  8. VOICE_SESSION_INDEX,
  9. VOLTE_SESSION_INDEX,
  10. VOICE2_SESSION_INDEX,
  11. QCHAT_SESSION_INDEX,
  12. VOWLAN_SESSION_INDEX,
  13. VOICEMMODE1_INDEX,
  14. VOICEMMODE2_INDEX,
  15. VOICE_SESSION_INDEX_MAX,
  16. };
  17. struct msm_voice {
  18. struct snd_pcm_substream *playback_substream;
  19. struct snd_pcm_substream *capture_substream;
  20. int instance;
  21. struct mutex lock;
  22. uint32_t samp_rate;
  23. uint32_t channel_mode;
  24. int playback_start;
  25. int capture_start;
  26. };
  27. #endif /*_MSM_PCM_VOICE_H*/