msm-pcm-q6-v2.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright (C) 2008 Google, Inc.
  3. * Copyright (C) 2008 HTC Corporation
  4. * Copyright (c) 2012-2017 The Linux Foundation. All rights reserved.
  5. *
  6. * This software is licensed under the terms of the GNU General Public
  7. * License version 2, as published by the Free Software Foundation, and
  8. * may be copied, distributed, and modified under those terms.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13. *
  14. * See the GNU General Public License for more details.
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, you can find it at http://www.fsf.org.
  17. */
  18. #ifndef _MSM_PCM_H
  19. #define _MSM_PCM_H
  20. #include <dsp/apr_audio-v2.h>
  21. #include <dsp/q6asm-v2.h>
  22. /* Support unconventional sample rates 12000, 24000 as well */
  23. #define USE_RATE \
  24. (SNDRV_PCM_RATE_8000_48000 | SNDRV_PCM_RATE_KNOT)
  25. extern int copy_count;
  26. struct buffer {
  27. void *data;
  28. unsigned int size;
  29. unsigned int used;
  30. unsigned int addr;
  31. };
  32. struct buffer_rec {
  33. void *data;
  34. unsigned int size;
  35. unsigned int read;
  36. unsigned int addr;
  37. };
  38. struct audio_locks {
  39. spinlock_t event_lock;
  40. wait_queue_head_t read_wait;
  41. wait_queue_head_t write_wait;
  42. wait_queue_head_t eos_wait;
  43. wait_queue_head_t enable_wait;
  44. wait_queue_head_t flush_wait;
  45. };
  46. struct msm_audio_in_frame_info {
  47. uint32_t size;
  48. uint32_t offset;
  49. };
  50. #define PLAYBACK_MIN_NUM_PERIODS 2
  51. #define PLAYBACK_MAX_NUM_PERIODS 8
  52. #define PLAYBACK_MAX_PERIOD_SIZE 122880
  53. #define PLAYBACK_MIN_PERIOD_SIZE 128
  54. #define CAPTURE_MIN_NUM_PERIODS 2
  55. #define CAPTURE_MAX_NUM_PERIODS 8
  56. #define CAPTURE_MAX_PERIOD_SIZE 122880
  57. #define CAPTURE_MIN_PERIOD_SIZE 320
  58. struct msm_audio {
  59. struct snd_pcm_substream *substream;
  60. unsigned int pcm_size;
  61. unsigned int pcm_count;
  62. unsigned int pcm_irq_pos; /* IRQ position */
  63. uint16_t source; /* Encoding source bit mask */
  64. struct audio_client *audio_client;
  65. uint16_t session_id;
  66. uint32_t samp_rate;
  67. uint32_t channel_mode;
  68. uint32_t dsp_cnt;
  69. int abort; /* set when error, like sample rate mismatch */
  70. bool reset_event;
  71. int enabled;
  72. int close_ack;
  73. int cmd_ack;
  74. /*
  75. * cmd_ack doesn't tell if paticular command has been sent so can't
  76. * determine if it needs to wait for completion.
  77. * Use cmd_pending instead when checking whether a command is been
  78. * sent or not.
  79. */
  80. unsigned long cmd_pending;
  81. atomic_t start;
  82. atomic_t stop;
  83. atomic_t out_count;
  84. atomic_t in_count;
  85. atomic_t out_needed;
  86. atomic_t eos;
  87. int out_head;
  88. int periods;
  89. int mmap_flag;
  90. atomic_t pending_buffer;
  91. bool set_channel_map;
  92. char channel_map[8];
  93. int cmd_interrupt;
  94. bool meta_data_mode;
  95. uint32_t volume;
  96. bool compress_enable;
  97. /* array of frame info */
  98. struct msm_audio_in_frame_info in_frame_info[CAPTURE_MAX_NUM_PERIODS];
  99. };
  100. struct output_meta_data_st {
  101. uint32_t meta_data_length;
  102. uint32_t frame_size;
  103. uint32_t timestamp_lsw;
  104. uint32_t timestamp_msw;
  105. uint32_t reserved[12];
  106. };
  107. struct msm_plat_data {
  108. int perf_mode;
  109. struct snd_pcm *pcm;
  110. };
  111. #endif /*_MSM_PCM_H*/