audio_utils_aio.h 6.6 KB

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