msm_audio.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417
  1. /* include/linux/msm_audio.h
  2. *
  3. * Copyright (C) 2008 Google, Inc.
  4. * Copyright (c) 2012 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. See the
  13. * GNU General Public License for more details.
  14. *
  15. */
  16. #ifndef __LINUX_MSM_AUDIO_H
  17. #define __LINUX_MSM_AUDIO_H
  18. #include <linux/types.h>
  19. #include <linux/ioctl.h>
  20. /* PCM Audio */
  21. #define AUDIO_IOCTL_MAGIC 'a'
  22. #define AUDIO_START _IOW(AUDIO_IOCTL_MAGIC, 0, unsigned)
  23. #define AUDIO_STOP _IOW(AUDIO_IOCTL_MAGIC, 1, unsigned)
  24. #define AUDIO_FLUSH _IOW(AUDIO_IOCTL_MAGIC, 2, unsigned)
  25. #define AUDIO_GET_CONFIG _IOR(AUDIO_IOCTL_MAGIC, 3, unsigned)
  26. #define AUDIO_SET_CONFIG _IOW(AUDIO_IOCTL_MAGIC, 4, unsigned)
  27. #define AUDIO_GET_STATS _IOR(AUDIO_IOCTL_MAGIC, 5, unsigned)
  28. #define AUDIO_ENABLE_AUDPP _IOW(AUDIO_IOCTL_MAGIC, 6, unsigned)
  29. #define AUDIO_SET_ADRC _IOW(AUDIO_IOCTL_MAGIC, 7, unsigned)
  30. #define AUDIO_SET_EQ _IOW(AUDIO_IOCTL_MAGIC, 8, unsigned)
  31. #define AUDIO_SET_RX_IIR _IOW(AUDIO_IOCTL_MAGIC, 9, unsigned)
  32. #define AUDIO_SET_VOLUME _IOW(AUDIO_IOCTL_MAGIC, 10, unsigned)
  33. #define AUDIO_PAUSE _IOW(AUDIO_IOCTL_MAGIC, 11, unsigned)
  34. #define AUDIO_PLAY_DTMF _IOW(AUDIO_IOCTL_MAGIC, 12, unsigned)
  35. #define AUDIO_GET_EVENT _IOR(AUDIO_IOCTL_MAGIC, 13, unsigned)
  36. #define AUDIO_ABORT_GET_EVENT _IOW(AUDIO_IOCTL_MAGIC, 14, unsigned)
  37. #define AUDIO_REGISTER_PMEM _IOW(AUDIO_IOCTL_MAGIC, 15, unsigned)
  38. #define AUDIO_DEREGISTER_PMEM _IOW(AUDIO_IOCTL_MAGIC, 16, unsigned)
  39. #define AUDIO_ASYNC_WRITE _IOW(AUDIO_IOCTL_MAGIC, 17, unsigned)
  40. #define AUDIO_ASYNC_READ _IOW(AUDIO_IOCTL_MAGIC, 18, unsigned)
  41. #define AUDIO_SET_INCALL _IOW(AUDIO_IOCTL_MAGIC, 19, struct msm_voicerec_mode)
  42. #define AUDIO_GET_NUM_SND_DEVICE _IOR(AUDIO_IOCTL_MAGIC, 20, unsigned)
  43. #define AUDIO_GET_SND_DEVICES _IOWR(AUDIO_IOCTL_MAGIC, 21, \
  44. struct msm_snd_device_list)
  45. #define AUDIO_ENABLE_SND_DEVICE _IOW(AUDIO_IOCTL_MAGIC, 22, unsigned)
  46. #define AUDIO_DISABLE_SND_DEVICE _IOW(AUDIO_IOCTL_MAGIC, 23, unsigned)
  47. #define AUDIO_ROUTE_STREAM _IOW(AUDIO_IOCTL_MAGIC, 24, \
  48. struct msm_audio_route_config)
  49. #define AUDIO_GET_PCM_CONFIG _IOR(AUDIO_IOCTL_MAGIC, 30, unsigned)
  50. #define AUDIO_SET_PCM_CONFIG _IOW(AUDIO_IOCTL_MAGIC, 31, unsigned)
  51. #define AUDIO_SWITCH_DEVICE _IOW(AUDIO_IOCTL_MAGIC, 32, unsigned)
  52. #define AUDIO_SET_MUTE _IOW(AUDIO_IOCTL_MAGIC, 33, unsigned)
  53. #define AUDIO_UPDATE_ACDB _IOW(AUDIO_IOCTL_MAGIC, 34, unsigned)
  54. #define AUDIO_START_VOICE _IOW(AUDIO_IOCTL_MAGIC, 35, unsigned)
  55. #define AUDIO_STOP_VOICE _IOW(AUDIO_IOCTL_MAGIC, 36, unsigned)
  56. #define AUDIO_REINIT_ACDB _IOW(AUDIO_IOCTL_MAGIC, 39, unsigned)
  57. #define AUDIO_OUTPORT_FLUSH _IOW(AUDIO_IOCTL_MAGIC, 40, unsigned short)
  58. #define AUDIO_SET_ERR_THRESHOLD_VALUE _IOW(AUDIO_IOCTL_MAGIC, 41, \
  59. unsigned short)
  60. #define AUDIO_GET_BITSTREAM_ERROR_INFO _IOR(AUDIO_IOCTL_MAGIC, 42, \
  61. struct msm_audio_bitstream_error_info)
  62. #define AUDIO_SET_SRS_TRUMEDIA_PARAM _IOW(AUDIO_IOCTL_MAGIC, 43, unsigned)
  63. /* Qualcomm extensions */
  64. #define AUDIO_SET_STREAM_CONFIG _IOW(AUDIO_IOCTL_MAGIC, 80, \
  65. struct msm_audio_stream_config)
  66. #define AUDIO_GET_STREAM_CONFIG _IOR(AUDIO_IOCTL_MAGIC, 81, \
  67. struct msm_audio_stream_config)
  68. #define AUDIO_GET_SESSION_ID _IOR(AUDIO_IOCTL_MAGIC, 82, unsigned short)
  69. #define AUDIO_GET_STREAM_INFO _IOR(AUDIO_IOCTL_MAGIC, 83, \
  70. struct msm_audio_bitstream_info)
  71. #define AUDIO_SET_PAN _IOW(AUDIO_IOCTL_MAGIC, 84, unsigned)
  72. #define AUDIO_SET_QCONCERT_PLUS _IOW(AUDIO_IOCTL_MAGIC, 85, unsigned)
  73. #define AUDIO_SET_MBADRC _IOW(AUDIO_IOCTL_MAGIC, 86, unsigned)
  74. #define AUDIO_SET_VOLUME_PATH _IOW(AUDIO_IOCTL_MAGIC, 87, \
  75. struct msm_vol_info)
  76. #define AUDIO_SET_MAX_VOL_ALL _IOW(AUDIO_IOCTL_MAGIC, 88, unsigned)
  77. #define AUDIO_ENABLE_AUDPRE _IOW(AUDIO_IOCTL_MAGIC, 89, unsigned)
  78. #define AUDIO_SET_AGC _IOW(AUDIO_IOCTL_MAGIC, 90, unsigned)
  79. #define AUDIO_SET_NS _IOW(AUDIO_IOCTL_MAGIC, 91, unsigned)
  80. #define AUDIO_SET_TX_IIR _IOW(AUDIO_IOCTL_MAGIC, 92, unsigned)
  81. #define AUDIO_GET_BUF_CFG _IOW(AUDIO_IOCTL_MAGIC, 93, \
  82. struct msm_audio_buf_cfg)
  83. #define AUDIO_SET_BUF_CFG _IOW(AUDIO_IOCTL_MAGIC, 94, \
  84. struct msm_audio_buf_cfg)
  85. #define AUDIO_SET_ACDB_BLK _IOW(AUDIO_IOCTL_MAGIC, 95, \
  86. struct msm_acdb_cmd_device)
  87. #define AUDIO_GET_ACDB_BLK _IOW(AUDIO_IOCTL_MAGIC, 96, \
  88. struct msm_acdb_cmd_device)
  89. #define AUDIO_REGISTER_ION _IOW(AUDIO_IOCTL_MAGIC, 97, unsigned)
  90. #define AUDIO_DEREGISTER_ION _IOW(AUDIO_IOCTL_MAGIC, 98, unsigned)
  91. #define AUDIO_MAX_COMMON_IOCTL_NUM 100
  92. #define HANDSET_MIC 0x01
  93. #define HANDSET_SPKR 0x02
  94. #define HEADSET_MIC 0x03
  95. #define HEADSET_SPKR_MONO 0x04
  96. #define HEADSET_SPKR_STEREO 0x05
  97. #define SPKR_PHONE_MIC 0x06
  98. #define SPKR_PHONE_MONO 0x07
  99. #define SPKR_PHONE_STEREO 0x08
  100. #define BT_SCO_MIC 0x09
  101. #define BT_SCO_SPKR 0x0A
  102. #define BT_A2DP_SPKR 0x0B
  103. #define TTY_HEADSET_MIC 0x0C
  104. #define TTY_HEADSET_SPKR 0x0D
  105. /* Default devices are not supported in a */
  106. /* device switching context. Only supported */
  107. /* for stream devices. */
  108. /* DO NOT USE */
  109. #define DEFAULT_TX 0x0E
  110. #define DEFAULT_RX 0x0F
  111. #define BT_A2DP_TX 0x10
  112. #define HEADSET_MONO_PLUS_SPKR_MONO_RX 0x11
  113. #define HEADSET_MONO_PLUS_SPKR_STEREO_RX 0x12
  114. #define HEADSET_STEREO_PLUS_SPKR_MONO_RX 0x13
  115. #define HEADSET_STEREO_PLUS_SPKR_STEREO_RX 0x14
  116. #define I2S_RX 0x20
  117. #define I2S_TX 0x21
  118. #define ADRC_ENABLE 0x0001
  119. #define EQ_ENABLE 0x0002
  120. #define IIR_ENABLE 0x0004
  121. #define QCONCERT_PLUS_ENABLE 0x0008
  122. #define MBADRC_ENABLE 0x0010
  123. #define SRS_ENABLE 0x0020
  124. #define SRS_DISABLE 0x0040
  125. #define AGC_ENABLE 0x0001
  126. #define NS_ENABLE 0x0002
  127. #define TX_IIR_ENABLE 0x0004
  128. #define FLUENCE_ENABLE 0x0008
  129. #define VOC_REC_UPLINK 0x00
  130. #define VOC_REC_DOWNLINK 0x01
  131. #define VOC_REC_BOTH 0x02
  132. struct msm_audio_config {
  133. uint32_t buffer_size;
  134. uint32_t buffer_count;
  135. uint32_t channel_count;
  136. uint32_t sample_rate;
  137. uint32_t type;
  138. uint32_t meta_field;
  139. uint32_t bits;
  140. uint32_t unused[3];
  141. };
  142. struct msm_audio_stream_config {
  143. uint32_t buffer_size;
  144. uint32_t buffer_count;
  145. };
  146. struct msm_audio_buf_cfg{
  147. uint32_t meta_info_enable;
  148. uint32_t frames_per_buf;
  149. };
  150. struct msm_audio_stats {
  151. uint32_t byte_count;
  152. uint32_t sample_count;
  153. uint32_t unused[2];
  154. };
  155. struct msm_audio_ion_info {
  156. int fd;
  157. void *vaddr;
  158. };
  159. struct msm_audio_pmem_info {
  160. int fd;
  161. void *vaddr;
  162. };
  163. struct msm_audio_aio_buf {
  164. void *buf_addr;
  165. uint32_t buf_len;
  166. uint32_t data_len;
  167. void *private_data;
  168. unsigned short mfield_sz; /*only useful for data has meta field */
  169. };
  170. /* Audio routing */
  171. #define SND_IOCTL_MAGIC 's'
  172. #define SND_MUTE_UNMUTED 0
  173. #define SND_MUTE_MUTED 1
  174. struct msm_mute_info {
  175. uint32_t mute;
  176. uint32_t path;
  177. };
  178. struct msm_vol_info {
  179. uint32_t vol;
  180. uint32_t path;
  181. };
  182. struct msm_voicerec_mode {
  183. uint32_t rec_mode;
  184. };
  185. struct msm_snd_device_config {
  186. uint32_t device;
  187. uint32_t ear_mute;
  188. uint32_t mic_mute;
  189. };
  190. #define SND_SET_DEVICE _IOW(SND_IOCTL_MAGIC, 2, struct msm_device_config *)
  191. enum cad_device_path_type {
  192. CAD_DEVICE_PATH_RX, /*For Decoding session*/
  193. CAD_DEVICE_PATH_TX, /* For Encoding session*/
  194. CAD_DEVICE_PATH_RX_TX, /* For Voice call */
  195. CAD_DEVICE_PATH_LB, /* For loopback (FM Analog)*/
  196. CAD_DEVICE_PATH_MAX
  197. };
  198. struct cad_devices_type {
  199. uint32_t rx_device;
  200. uint32_t tx_device;
  201. enum cad_device_path_type pathtype;
  202. };
  203. struct msm_cad_device_config {
  204. struct cad_devices_type device;
  205. uint32_t ear_mute;
  206. uint32_t mic_mute;
  207. };
  208. #define CAD_SET_DEVICE _IOW(SND_IOCTL_MAGIC, 2, struct msm_cad_device_config *)
  209. #define SND_METHOD_VOICE 0
  210. #define SND_METHOD_MIDI 4
  211. struct msm_snd_volume_config {
  212. uint32_t device;
  213. uint32_t method;
  214. uint32_t volume;
  215. };
  216. #define SND_SET_VOLUME _IOW(SND_IOCTL_MAGIC, 3, struct msm_snd_volume_config *)
  217. struct msm_cad_volume_config {
  218. struct cad_devices_type device;
  219. uint32_t method;
  220. uint32_t volume;
  221. };
  222. #define CAD_SET_VOLUME _IOW(SND_IOCTL_MAGIC, 3, struct msm_cad_volume_config *)
  223. /* Returns the number of SND endpoints supported. */
  224. #define SND_GET_NUM_ENDPOINTS _IOR(SND_IOCTL_MAGIC, 4, unsigned *)
  225. struct msm_snd_endpoint {
  226. int id; /* input and output */
  227. char name[64]; /* output only */
  228. };
  229. /* Takes an index between 0 and one less than the number returned by
  230. * SND_GET_NUM_ENDPOINTS, and returns the SND index and name of a
  231. * SND endpoint. On input, the .id field contains the number of the
  232. * endpoint, and on exit it contains the SND index, while .name contains
  233. * the description of the endpoint.
  234. */
  235. #define SND_GET_ENDPOINT _IOWR(SND_IOCTL_MAGIC, 5, struct msm_snd_endpoint *)
  236. #define SND_AVC_CTL _IOW(SND_IOCTL_MAGIC, 6, unsigned *)
  237. #define SND_AGC_CTL _IOW(SND_IOCTL_MAGIC, 7, unsigned *)
  238. /*return the number of CAD endpoints supported. */
  239. #define CAD_GET_NUM_ENDPOINTS _IOR(SND_IOCTL_MAGIC, 4, unsigned *)
  240. struct msm_cad_endpoint {
  241. int id; /* input and output */
  242. char name[64]; /* output only */
  243. };
  244. /* Takes an index between 0 and one less than the number returned by
  245. * SND_GET_NUM_ENDPOINTS, and returns the CAD index and name of a
  246. * CAD endpoint. On input, the .id field contains the number of the
  247. * endpoint, and on exit it contains the SND index, while .name contains
  248. * the description of the endpoint.
  249. */
  250. #define CAD_GET_ENDPOINT _IOWR(SND_IOCTL_MAGIC, 5, struct msm_cad_endpoint *)
  251. struct msm_audio_pcm_config {
  252. uint32_t pcm_feedback; /* 0 - disable > 0 - enable */
  253. uint32_t buffer_count; /* Number of buffers to allocate */
  254. uint32_t buffer_size; /* Size of buffer for capturing of
  255. PCM samples */
  256. };
  257. #define AUDIO_EVENT_SUSPEND 0
  258. #define AUDIO_EVENT_RESUME 1
  259. #define AUDIO_EVENT_WRITE_DONE 2
  260. #define AUDIO_EVENT_READ_DONE 3
  261. #define AUDIO_EVENT_STREAM_INFO 4
  262. #define AUDIO_EVENT_BITSTREAM_ERROR_INFO 5
  263. #define AUDIO_CODEC_TYPE_MP3 0
  264. #define AUDIO_CODEC_TYPE_AAC 1
  265. struct msm_audio_bitstream_info {
  266. uint32_t codec_type;
  267. uint32_t chan_info;
  268. uint32_t sample_rate;
  269. uint32_t bit_stream_info;
  270. uint32_t bit_rate;
  271. uint32_t unused[3];
  272. };
  273. struct msm_audio_bitstream_error_info {
  274. uint32_t dec_id;
  275. uint32_t err_msg_indicator;
  276. uint32_t err_type;
  277. };
  278. union msm_audio_event_payload {
  279. struct msm_audio_aio_buf aio_buf;
  280. struct msm_audio_bitstream_info stream_info;
  281. struct msm_audio_bitstream_error_info error_info;
  282. int reserved;
  283. };
  284. struct msm_audio_event {
  285. int event_type;
  286. int timeout_ms;
  287. union msm_audio_event_payload event_payload;
  288. };
  289. #define MSM_SNDDEV_CAP_RX 0x1
  290. #define MSM_SNDDEV_CAP_TX 0x2
  291. #define MSM_SNDDEV_CAP_VOICE 0x4
  292. struct msm_snd_device_info {
  293. uint32_t dev_id;
  294. uint32_t dev_cap; /* bitmask describe capability of device */
  295. char dev_name[64];
  296. };
  297. struct msm_snd_device_list {
  298. uint32_t num_dev; /* Indicate number of device info to be retrieved */
  299. struct msm_snd_device_info *list;
  300. };
  301. struct msm_dtmf_config {
  302. uint16_t path;
  303. uint16_t dtmf_hi;
  304. uint16_t dtmf_low;
  305. uint16_t duration;
  306. uint16_t tx_gain;
  307. uint16_t rx_gain;
  308. uint16_t mixing;
  309. };
  310. #define AUDIO_ROUTE_STREAM_VOICE_RX 0
  311. #define AUDIO_ROUTE_STREAM_VOICE_TX 1
  312. #define AUDIO_ROUTE_STREAM_PLAYBACK 2
  313. #define AUDIO_ROUTE_STREAM_REC 3
  314. struct msm_audio_route_config {
  315. uint32_t stream_type;
  316. uint32_t stream_id;
  317. uint32_t dev_id;
  318. };
  319. #define AUDIO_MAX_EQ_BANDS 12
  320. struct msm_audio_eq_band {
  321. uint16_t band_idx; /* The band index, 0 .. 11 */
  322. uint32_t filter_type; /* Filter band type */
  323. uint32_t center_freq_hz; /* Filter band center frequency */
  324. uint32_t filter_gain; /* Filter band initial gain (dB) */
  325. /* Range is +12 dB to -12 dB with 1dB increments. */
  326. uint32_t q_factor;
  327. } __attribute__ ((packed));
  328. struct msm_audio_eq_stream_config {
  329. uint32_t enable; /* Number of consequtive bands specified */
  330. uint32_t num_bands;
  331. struct msm_audio_eq_band eq_bands[AUDIO_MAX_EQ_BANDS];
  332. } __attribute__ ((packed));
  333. struct msm_acdb_cmd_device {
  334. uint32_t command_id;
  335. uint32_t device_id;
  336. uint32_t network_id;
  337. uint32_t sample_rate_id; /* Actual sample rate value */
  338. uint32_t interface_id; /* See interface id's above */
  339. uint32_t algorithm_block_id; /* See enumerations above */
  340. uint32_t total_bytes; /* Length in bytes used by buffer */
  341. uint32_t *phys_buf; /* Physical Address of data */
  342. };
  343. #endif