audio_utils.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /* Copyright (c) 2010-2015, 2017 The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/msm_audio.h>
  5. #include <linux/compat.h>
  6. #include "q6audio_common.h"
  7. #define FRAME_NUM (8)
  8. #define PCM_BUF_COUNT (2)
  9. #define AUD_EOS_SET 0x01
  10. #define TUNNEL_MODE 0x0000
  11. #define NON_TUNNEL_MODE 0x0001
  12. #define NO_BUF_ALLOC 0x00
  13. #define BUF_ALLOC_IN 0x01
  14. #define BUF_ALLOC_OUT 0x02
  15. #define BUF_ALLOC_INOUT 0x03
  16. #define ALIGN_BUF_SIZE(size) ((size + 4095) & (~4095))
  17. struct timestamp {
  18. u32 lowpart;
  19. u32 highpart;
  20. } __packed;
  21. struct meta_in {
  22. unsigned short offset;
  23. struct timestamp ntimestamp;
  24. unsigned int nflags;
  25. } __packed;
  26. struct meta_out_dsp {
  27. u32 offset_to_frame;
  28. u32 frame_size;
  29. u32 encoded_pcm_samples;
  30. u32 msw_ts;
  31. u32 lsw_ts;
  32. u32 nflags;
  33. } __packed;
  34. struct meta_out {
  35. unsigned char num_of_frames;
  36. struct meta_out_dsp meta_out_dsp[];
  37. } __packed;
  38. struct q6audio_in {
  39. spinlock_t dsp_lock;
  40. atomic_t in_bytes;
  41. atomic_t in_samples;
  42. struct mutex lock;
  43. struct mutex read_lock;
  44. struct mutex write_lock;
  45. wait_queue_head_t read_wait;
  46. wait_queue_head_t write_wait;
  47. struct audio_client *ac;
  48. struct msm_audio_stream_config str_cfg;
  49. void *enc_cfg;
  50. struct msm_audio_buf_cfg buf_cfg;
  51. struct msm_audio_config pcm_cfg;
  52. void *codec_cfg;
  53. /* number of buffers available to read/write */
  54. atomic_t in_count;
  55. atomic_t out_count;
  56. /* first idx: num of frames per buf, second idx: offset to frame */
  57. uint32_t out_frame_info[FRAME_NUM][2];
  58. int eos_rsp;
  59. int opened;
  60. int enabled;
  61. int stopped;
  62. int event_abort;
  63. int feedback; /* Flag indicates whether used
  64. * in Non Tunnel mode
  65. */
  66. int rflush;
  67. int wflush;
  68. int buf_alloc;
  69. uint16_t min_frame_size;
  70. uint16_t max_frames_per_buf;
  71. bool reset_event;
  72. long (*enc_ioctl)(struct file *, unsigned int, unsigned long);
  73. long (*enc_compat_ioctl)(struct file *, unsigned int, unsigned long);
  74. };
  75. int audio_in_enable(struct q6audio_in *audio);
  76. int audio_in_disable(struct q6audio_in *audio);
  77. int audio_in_buf_alloc(struct q6audio_in *audio);
  78. long audio_in_ioctl(struct file *file,
  79. unsigned int cmd, unsigned long arg);
  80. #ifdef CONFIG_COMPAT
  81. long audio_in_compat_ioctl(struct file *file,
  82. unsigned int cmd, unsigned long arg);
  83. #else
  84. #define audio_in_compat_ioctl NULL
  85. #endif
  86. ssize_t audio_in_read(struct file *file, char __user *buf,
  87. size_t count, loff_t *pos);
  88. ssize_t audio_in_write(struct file *file, const char __user *buf,
  89. size_t count, loff_t *pos);
  90. int audio_in_release(struct inode *inode, struct file *file);
  91. int audio_in_set_config(struct file *file, struct msm_audio_config *cfg);
  92. int aac_in_init(void);
  93. int amrnb_in_init(void);
  94. int amrwb_in_init(void);
  95. int audio_aac_init(void);
  96. int audio_alac_init(void);
  97. int audio_amrnb_init(void);
  98. int audio_amrwb_init(void);
  99. int audio_amrwbplus_init(void);
  100. int audio_ape_init(void);
  101. int audio_evrc_init(void);
  102. int audio_g711alaw_init(void);
  103. int audio_g711mlaw_init(void);
  104. int audio_effects_init(void);
  105. int audio_mp3_init(void);
  106. int audio_multiaac_init(void);
  107. int audio_qcelp_init(void);
  108. int audio_wma_init(void);
  109. int audio_wmapro_init(void);
  110. int evrc_in_init(void);
  111. int g711alaw_in_init(void);
  112. int g711mlaw_in_init(void);
  113. int qcelp_in_init(void);
  114. void aac_in_exit(void);
  115. void amrnb_in_exit(void);
  116. void amrwb_in_exit(void);
  117. void audio_aac_exit(void);
  118. void audio_alac_exit(void);
  119. void audio_amrnb_exit(void);
  120. void audio_amrwb_exit(void);
  121. void audio_amrwbplus_exit(void);
  122. void audio_ape_exit(void);
  123. void audio_evrc_exit(void);
  124. void audio_g711alaw_exit(void);
  125. void audio_g711mlaw_exit(void);
  126. void audio_effects_exit(void);
  127. void audio_mp3_exit(void);
  128. void audio_multiaac_exit(void);
  129. void audio_qcelp_exit(void);
  130. void audio_wma_exit(void);
  131. void audio_wmapro_exit(void);
  132. void evrc_in_exit(void);
  133. void g711alaw_in_exit(void);
  134. void g711mlaw_in_exit(void);
  135. void qcelp_in_exit(void);