123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- #ifndef _MSM_PCM_H
- #define _MSM_PCM_H
- #include <dsp/apr_audio-v2.h>
- #include <dsp/q6asm-v2.h>
- #define USE_RATE \
- (SNDRV_PCM_RATE_8000_48000 | SNDRV_PCM_RATE_KNOT)
- extern int copy_count;
- struct buffer {
- void *data;
- unsigned int size;
- unsigned int used;
- unsigned int addr;
- };
- struct buffer_rec {
- void *data;
- unsigned int size;
- unsigned int read;
- unsigned int addr;
- };
- struct audio_locks {
- spinlock_t event_lock;
- wait_queue_head_t read_wait;
- wait_queue_head_t write_wait;
- wait_queue_head_t eos_wait;
- wait_queue_head_t enable_wait;
- wait_queue_head_t flush_wait;
- };
- struct msm_audio_in_frame_info {
- uint32_t size;
- uint32_t offset;
- };
- #define PLAYBACK_MIN_NUM_PERIODS 2
- #define PLAYBACK_MAX_NUM_PERIODS 8
- #define PLAYBACK_MAX_PERIOD_SIZE 122880
- #define PLAYBACK_MIN_PERIOD_SIZE 128
- #define CAPTURE_MIN_NUM_PERIODS 2
- #define CAPTURE_MAX_NUM_PERIODS 8
- #define CAPTURE_MAX_PERIOD_SIZE 122880
- #define CAPTURE_MIN_PERIOD_SIZE 320
- struct msm_audio {
- struct snd_pcm_substream *substream;
- unsigned int pcm_size;
- unsigned int pcm_count;
- unsigned int pcm_irq_pos;
- uint16_t source;
- struct audio_client *audio_client;
- uint16_t session_id;
- uint32_t samp_rate;
- uint32_t channel_mode;
- uint32_t dsp_cnt;
- int abort;
- bool reset_event;
- int enabled;
- int close_ack;
- int cmd_ack;
-
- unsigned long cmd_pending;
- atomic_t start;
- atomic_t stop;
- atomic_t out_count;
- atomic_t in_count;
- atomic_t out_needed;
- atomic_t eos;
- int out_head;
- int periods;
- int mmap_flag;
- atomic_t pending_buffer;
- bool set_channel_map;
- char channel_map[8];
- int cmd_interrupt;
- bool meta_data_mode;
- uint32_t volume;
- bool compress_enable;
-
- struct msm_audio_in_frame_info in_frame_info[CAPTURE_MAX_NUM_PERIODS];
- };
- struct output_meta_data_st {
- uint32_t meta_data_length;
- uint32_t frame_size;
- uint32_t timestamp_lsw;
- uint32_t timestamp_msw;
- uint32_t reserved[12];
- };
- struct msm_plat_data {
- int perf_mode;
- struct snd_pcm *pcm;
- };
- #endif
|