audio_utils_aio.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /* Copyright (C) 2008 Google, Inc.
  2. * Copyright (C) 2008 HTC Corporation
  3. * Copyright (c) 2009-2018, The Linux Foundation. All rights reserved.
  4. *
  5. * This software is licensed under the terms of the GNU General Public
  6. * License version 2, as published by the Free Software Foundation, and
  7. * may be copied, distributed, and modified under those terms.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. */
  15. #include <linux/fs.h>
  16. #include <linux/module.h>
  17. #include <linux/miscdevice.h>
  18. #include <linux/mutex.h>
  19. #include <linux/sched.h>
  20. #include <linux/uaccess.h>
  21. #include <linux/wait.h>
  22. #include <linux/msm_audio.h>
  23. #include <linux/debugfs.h>
  24. #include <linux/list.h>
  25. #include <linux/slab.h>
  26. #include <linux/msm_ion.h>
  27. #include <asm/ioctls.h>
  28. #include <linux/atomic.h>
  29. #include "q6audio_common.h"
  30. #define TUNNEL_MODE 0x0000
  31. #define NON_TUNNEL_MODE 0x0001
  32. #define ADRV_STATUS_AIO_INTF 0x00000001 /* AIO interface */
  33. #define ADRV_STATUS_FSYNC 0x00000008
  34. #define ADRV_STATUS_PAUSE 0x00000010
  35. #define AUDIO_DEC_EOS_SET 0x00000001
  36. #define AUDIO_DEC_EOF_SET 0x00000010
  37. #define AUDIO_EVENT_NUM 10
  38. #define __CONTAINS(r, v, l) ({ \
  39. typeof(r) __r = r; \
  40. typeof(v) __v = v; \
  41. typeof(v) __e = __v + l; \
  42. int res = ((__v >= __r->vaddr) && \
  43. (__e <= __r->vaddr + __r->len)); \
  44. res; \
  45. })
  46. #define CONTAINS(r1, r2) ({ \
  47. typeof(r2) __r2 = r2; \
  48. __CONTAINS(r1, __r2->vaddr, __r2->len); \
  49. })
  50. #define IN_RANGE(r, v) ({ \
  51. typeof(r) __r = r; \
  52. typeof(v) __vv = v; \
  53. int res = ((__vv >= __r->vaddr) && \
  54. (__vv < (__r->vaddr + __r->len))); \
  55. res; \
  56. })
  57. #define OVERLAPS(r1, r2) ({ \
  58. typeof(r1) __r1 = r1; \
  59. typeof(r2) __r2 = r2; \
  60. typeof(__r2->vaddr) __v = __r2->vaddr; \
  61. typeof(__v) __e = __v + __r2->len - 1; \
  62. int res = (IN_RANGE(__r1, __v) || IN_RANGE(__r1, __e)); \
  63. res; \
  64. })
  65. struct timestamp {
  66. u32 lowpart;
  67. u32 highpart;
  68. } __packed;
  69. struct meta_out_dsp {
  70. u32 offset_to_frame;
  71. u32 frame_size;
  72. u32 encoded_pcm_samples;
  73. u32 msw_ts;
  74. u32 lsw_ts;
  75. u32 nflags;
  76. } __packed;
  77. struct dec_meta_in {
  78. unsigned char reserved[18];
  79. unsigned short offset;
  80. struct timestamp ntimestamp;
  81. unsigned int nflags;
  82. } __packed;
  83. struct dec_meta_out {
  84. unsigned int reserved[7];
  85. unsigned int num_of_frames;
  86. struct meta_out_dsp meta_out_dsp[];
  87. } __packed;
  88. /* General meta field to store meta info locally */
  89. union meta_data {
  90. struct dec_meta_out meta_out;
  91. struct dec_meta_in meta_in;
  92. } __packed;
  93. /* per device wakeup source manager */
  94. struct ws_mgr {
  95. struct mutex ws_lock;
  96. uint32_t ref_cnt;
  97. };
  98. #define PCM_BUF_COUNT (2)
  99. /* Buffer with meta */
  100. #define PCM_BUFSZ_MIN ((4*1024) + sizeof(struct dec_meta_out))
  101. /* FRAME_NUM must be a power of two */
  102. #define FRAME_NUM (2)
  103. #define FRAME_SIZE ((4*1536) + sizeof(struct dec_meta_in))
  104. struct audio_aio_ion_region {
  105. struct list_head list;
  106. struct dma_buf *dma_buf;
  107. int fd;
  108. void *vaddr;
  109. phys_addr_t paddr;
  110. void *kvaddr;
  111. unsigned long len;
  112. unsigned int ref_cnt;
  113. };
  114. struct audio_aio_event {
  115. struct list_head list;
  116. int event_type;
  117. union msm_audio_event_payload payload;
  118. };
  119. struct audio_aio_buffer_node {
  120. struct list_head list;
  121. struct msm_audio_aio_buf buf;
  122. unsigned long paddr;
  123. uint32_t token;
  124. void *kvaddr;
  125. union meta_data meta_info;
  126. };
  127. struct q6audio_aio;
  128. struct audio_aio_drv_operations {
  129. void (*out_flush)(struct q6audio_aio *);
  130. void (*in_flush)(struct q6audio_aio *);
  131. };
  132. struct q6audio_aio {
  133. atomic_t in_bytes;
  134. atomic_t in_samples;
  135. struct msm_audio_stream_config str_cfg;
  136. struct msm_audio_buf_cfg buf_cfg;
  137. struct msm_audio_config pcm_cfg;
  138. void *codec_cfg;
  139. struct audio_client *ac;
  140. struct mutex lock;
  141. struct mutex read_lock;
  142. struct mutex write_lock;
  143. struct mutex get_event_lock;
  144. wait_queue_head_t cmd_wait;
  145. wait_queue_head_t write_wait;
  146. wait_queue_head_t event_wait;
  147. spinlock_t dsp_lock;
  148. spinlock_t event_queue_lock;
  149. struct miscdevice *miscdevice;
  150. uint32_t wakelock_voted;
  151. struct ws_mgr *audio_ws_mgr;
  152. #ifdef CONFIG_DEBUG_FS
  153. struct dentry *dentry;
  154. #endif
  155. struct list_head out_queue; /* queue to retain output buffers */
  156. struct list_head in_queue; /* queue to retain input buffers */
  157. struct list_head free_event_queue;
  158. struct list_head event_queue;
  159. struct list_head ion_region_queue; /* protected by lock */
  160. struct audio_aio_drv_operations drv_ops;
  161. union msm_audio_event_payload eos_write_payload;
  162. uint32_t device_events;
  163. uint16_t volume;
  164. uint32_t drv_status;
  165. int event_abort;
  166. int eos_rsp;
  167. int eos_flag;
  168. int opened;
  169. int enabled;
  170. int stopped;
  171. int feedback;
  172. int rflush; /* Read flush */
  173. int wflush; /* Write flush */
  174. bool reset_event;
  175. long (*codec_ioctl)(struct file *, unsigned int, unsigned long);
  176. long (*codec_compat_ioctl)(struct file *, unsigned int, unsigned long);
  177. };
  178. void audio_aio_async_write_ack(struct q6audio_aio *audio, uint32_t token,
  179. uint32_t *payload);
  180. void audio_aio_async_read_ack(struct q6audio_aio *audio, uint32_t token,
  181. uint32_t *payload);
  182. int insert_eos_buf(struct q6audio_aio *audio,
  183. struct audio_aio_buffer_node *buf_node);
  184. void extract_meta_out_info(struct q6audio_aio *audio,
  185. struct audio_aio_buffer_node *buf_node, int dir);
  186. int audio_aio_open(struct q6audio_aio *audio, struct file *file);
  187. int audio_aio_enable(struct q6audio_aio *audio);
  188. void audio_aio_post_event(struct q6audio_aio *audio, int type,
  189. union msm_audio_event_payload payload);
  190. int audio_aio_release(struct inode *inode, struct file *file);
  191. int audio_aio_fsync(struct file *file, loff_t start, loff_t end, int datasync);
  192. void audio_aio_async_out_flush(struct q6audio_aio *audio);
  193. void audio_aio_async_in_flush(struct q6audio_aio *audio);
  194. void audio_aio_ioport_reset(struct q6audio_aio *audio);
  195. int enable_volume_ramp(struct q6audio_aio *audio);
  196. #ifdef CONFIG_DEBUG_FS
  197. int audio_aio_debug_open(struct inode *inode, struct file *file);
  198. ssize_t audio_aio_debug_read(struct file *file, char __user *buf,
  199. size_t count, loff_t *ppos);
  200. #endif