msm-pcm-afe-v2.h 968 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2012,2015-2016 The Linux Foundation. All rights reserved.
  3. */
  4. #ifndef _MSM_PCM_AFE_H
  5. #define _MSM_PCM_AFE_H
  6. #include <dsp/apr_audio-v2.h>
  7. #include <dsp/q6afe-v2.h>
  8. struct pcm_afe_info {
  9. unsigned long dma_addr;
  10. struct snd_pcm_substream *substream;
  11. unsigned int pcm_irq_pos; /* IRQ position */
  12. struct mutex lock;
  13. spinlock_t dsp_lock;
  14. uint32_t samp_rate;
  15. uint32_t channel_mode;
  16. uint8_t start;
  17. uint32_t dsp_cnt;
  18. uint32_t buf_phys;
  19. int32_t mmap_flag;
  20. int prepared;
  21. struct hrtimer hrt;
  22. int poll_time;
  23. struct afe_audio_client *audio_client;
  24. wait_queue_head_t read_wait;
  25. atomic_t rec_bytes_avail;
  26. bool reset_event;
  27. };
  28. #define MSM_EXT(xname, fp_info, fp_get, fp_put, addr) \
  29. {.iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
  30. .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
  31. .name = xname, \
  32. .info = fp_info,\
  33. .get = fp_get, .put = fp_put, \
  34. .private_value = addr, \
  35. }
  36. #endif /*_MSM_PCM_AFE_H*/