msm-pcm-q6-v2.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2008 Google, Inc.
  4. * Copyright (C) 2008 HTC Corporation
  5. * Copyright (c) 2012-2017, 2019 The Linux Foundation. All rights reserved.
  6. */
  7. #ifndef _MSM_PCM_H
  8. #define _MSM_PCM_H
  9. #include <dsp/apr_audio-v2.h>
  10. #include <dsp/q6asm-v2.h>
  11. #include "msm-pcm-routing-v2.h"
  12. /* Support unconventional sample rates 12000, 24000 as well */
  13. #define USE_RATE \
  14. (SNDRV_PCM_RATE_8000_48000 | SNDRV_PCM_RATE_KNOT)
  15. extern int copy_count;
  16. struct buffer {
  17. void *data;
  18. unsigned int size;
  19. unsigned int used;
  20. unsigned int addr;
  21. };
  22. struct buffer_rec {
  23. void *data;
  24. unsigned int size;
  25. unsigned int read;
  26. unsigned int addr;
  27. };
  28. struct audio_locks {
  29. spinlock_t event_lock;
  30. wait_queue_head_t read_wait;
  31. wait_queue_head_t write_wait;
  32. wait_queue_head_t eos_wait;
  33. wait_queue_head_t enable_wait;
  34. wait_queue_head_t flush_wait;
  35. };
  36. struct msm_audio_in_frame_info {
  37. uint32_t size;
  38. uint32_t offset;
  39. };
  40. #define PLAYBACK_MIN_NUM_PERIODS 2
  41. #define PLAYBACK_MAX_NUM_PERIODS 8
  42. #define PLAYBACK_MAX_PERIOD_SIZE 122880
  43. #define PLAYBACK_MIN_PERIOD_SIZE 128
  44. #define CAPTURE_MIN_NUM_PERIODS 2
  45. #define CAPTURE_MAX_NUM_PERIODS 8
  46. #define CAPTURE_MAX_PERIOD_SIZE 122880
  47. #define CAPTURE_MIN_PERIOD_SIZE 320
  48. struct msm_audio {
  49. struct snd_pcm_substream *substream;
  50. unsigned int pcm_size;
  51. unsigned int pcm_count;
  52. unsigned int pcm_irq_pos; /* IRQ position */
  53. uint16_t source; /* Encoding source bit mask */
  54. struct audio_client *audio_client;
  55. uint16_t session_id;
  56. uint32_t samp_rate;
  57. uint32_t channel_mode;
  58. uint32_t dsp_cnt;
  59. int abort; /* set when error, like sample rate mismatch */
  60. bool reset_event;
  61. int enabled;
  62. int close_ack;
  63. int cmd_ack;
  64. /*
  65. * cmd_ack doesn't tell if paticular command has been sent so can't
  66. * determine if it needs to wait for completion.
  67. * Use cmd_pending instead when checking whether a command is been
  68. * sent or not.
  69. */
  70. unsigned long cmd_pending;
  71. atomic_t start;
  72. atomic_t stop;
  73. atomic_t out_count;
  74. atomic_t in_count;
  75. atomic_t out_needed;
  76. atomic_t eos;
  77. int out_head;
  78. int periods;
  79. int mmap_flag;
  80. atomic_t pending_buffer;
  81. bool set_channel_map;
  82. char channel_map[PCM_FORMAT_MAX_NUM_CHANNEL_V8];
  83. int cmd_interrupt;
  84. bool meta_data_mode;
  85. uint32_t volume;
  86. bool compress_enable;
  87. /* array of frame info */
  88. struct msm_audio_in_frame_info in_frame_info[CAPTURE_MAX_NUM_PERIODS];
  89. };
  90. struct output_meta_data_st {
  91. uint32_t meta_data_length;
  92. uint32_t frame_size;
  93. uint32_t timestamp_lsw;
  94. uint32_t timestamp_msw;
  95. uint32_t reserved[12];
  96. };
  97. struct msm_plat_data {
  98. int perf_mode;
  99. struct snd_pcm *pcm;
  100. struct msm_pcm_ch_map *ch_map[MSM_FRONTEND_DAI_MAX];
  101. struct snd_pcm *pcm_device[MSM_FRONTEND_DAI_MM_SIZE];
  102. struct msm_pcm_channel_mixer *chmixer_pspd[MSM_FRONTEND_DAI_MM_SIZE][2];
  103. struct mutex lock;
  104. };
  105. struct msm_pcm_ch_map {
  106. bool set_ch_map;
  107. char channel_map[PCM_FORMAT_MAX_NUM_CHANNEL];
  108. };
  109. #endif /*_MSM_PCM_H*/