q6asm-v2.h 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  1. /* Copyright (c) 2012-2018, The Linux Foundation. All rights reserved.
  2. *
  3. * This program is free software; you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License version 2 and
  5. * only version 2 as published by the Free Software Foundation.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. */
  12. #ifndef __Q6_ASM_V2_H__
  13. #define __Q6_ASM_V2_H__
  14. #include <ipc/apr.h>
  15. #include <dsp/rtac.h>
  16. #include <dsp/apr_audio-v2.h>
  17. #include <linux/list.h>
  18. #include <linux/msm_ion.h>
  19. #define IN 0x000
  20. #define OUT 0x001
  21. #define CH_MODE_MONO 0x001
  22. #define CH_MODE_STEREO 0x002
  23. #define FORMAT_LINEAR_PCM 0x0000
  24. #define FORMAT_DTMF 0x0001
  25. #define FORMAT_ADPCM 0x0002
  26. #define FORMAT_YADPCM 0x0003
  27. #define FORMAT_MP3 0x0004
  28. #define FORMAT_MPEG4_AAC 0x0005
  29. #define FORMAT_AMRNB 0x0006
  30. #define FORMAT_AMRWB 0x0007
  31. #define FORMAT_V13K 0x0008
  32. #define FORMAT_EVRC 0x0009
  33. #define FORMAT_EVRCB 0x000a
  34. #define FORMAT_EVRCWB 0x000b
  35. #define FORMAT_MIDI 0x000c
  36. #define FORMAT_SBC 0x000d
  37. #define FORMAT_WMA_V10PRO 0x000e
  38. #define FORMAT_WMA_V9 0x000f
  39. #define FORMAT_AMR_WB_PLUS 0x0010
  40. #define FORMAT_MPEG4_MULTI_AAC 0x0011
  41. #define FORMAT_MULTI_CHANNEL_LINEAR_PCM 0x0012
  42. #define FORMAT_AC3 0x0013
  43. #define FORMAT_EAC3 0x0014
  44. #define FORMAT_MP2 0x0015
  45. #define FORMAT_FLAC 0x0016
  46. #define FORMAT_ALAC 0x0017
  47. #define FORMAT_VORBIS 0x0018
  48. #define FORMAT_APE 0x0019
  49. #define FORMAT_G711_ALAW_FS 0x001a
  50. #define FORMAT_G711_MLAW_FS 0x001b
  51. #define FORMAT_DTS 0x001c
  52. #define FORMAT_DSD 0x001d
  53. #define FORMAT_APTX 0x001e
  54. #define FORMAT_GEN_COMPR 0x001f
  55. #define FORMAT_TRUEHD 0x0020
  56. #define FORMAT_IEC61937 0x0021
  57. #define FORMAT_BESPOKE 0x0022
  58. #define ENCDEC_SBCBITRATE 0x0001
  59. #define ENCDEC_IMMEDIATE_DECODE 0x0002
  60. #define ENCDEC_CFG_BLK 0x0003
  61. #define ENC_CFG_ID_NONE 0x0000
  62. #define CMD_PAUSE 0x0001
  63. #define CMD_FLUSH 0x0002
  64. #define CMD_EOS 0x0003
  65. #define CMD_CLOSE 0x0004
  66. #define CMD_OUT_FLUSH 0x0005
  67. #define CMD_SUSPEND 0x0006
  68. /* bit 0:1 represents priority of stream */
  69. #define STREAM_PRIORITY_NORMAL 0x0000
  70. #define STREAM_PRIORITY_LOW 0x0001
  71. #define STREAM_PRIORITY_HIGH 0x0002
  72. /* bit 4 represents META enable of encoded data buffer */
  73. #define BUFFER_META_ENABLE 0x0010
  74. /* bit 5 represents timestamp */
  75. /* bit 5 - 0 -- ASM_DATA_EVENT_READ_DONE will have relative time-stamp*/
  76. /* bit 5 - 1 -- ASM_DATA_EVENT_READ_DONE will have absolute time-stamp*/
  77. #define ABSOLUTE_TIMESTAMP_ENABLE 0x0020
  78. /* Enable Sample_Rate/Channel_Mode notification event from Decoder */
  79. #define SR_CM_NOTIFY_ENABLE 0x0004
  80. #define TUN_WRITE_IO_MODE 0x0008 /* tunnel read write mode */
  81. #define TUN_READ_IO_MODE 0x0004 /* tunnel read write mode */
  82. #define SYNC_IO_MODE 0x0001
  83. #define ASYNC_IO_MODE 0x0002
  84. #define COMPRESSED_IO 0x0040
  85. #define COMPRESSED_STREAM_IO 0x0080
  86. #define NT_MODE 0x0400
  87. #define NO_TIMESTAMP 0xFF00
  88. #define SET_TIMESTAMP 0x0000
  89. #define SOFT_PAUSE_ENABLE 1
  90. #define SOFT_PAUSE_DISABLE 0
  91. #define ASM_ACTIVE_STREAMS_ALLOWED 0x8
  92. /* Control session is used for mapping calibration memory */
  93. #define ASM_CONTROL_SESSION (ASM_ACTIVE_STREAMS_ALLOWED + 1)
  94. #define ASM_SHIFT_GAPLESS_MODE_FLAG 31
  95. #define ASM_SHIFT_LAST_BUFFER_FLAG 30
  96. #define ASM_LITTLE_ENDIAN 0
  97. #define ASM_BIG_ENDIAN 1
  98. /* PCM_MEDIA_FORMAT_Version */
  99. enum {
  100. PCM_MEDIA_FORMAT_V2 = 0,
  101. PCM_MEDIA_FORMAT_V3,
  102. PCM_MEDIA_FORMAT_V4,
  103. };
  104. /* PCM format modes in DSP */
  105. enum {
  106. DEFAULT_QF = 0,
  107. Q15 = 15,
  108. Q23 = 23,
  109. Q31 = 31,
  110. };
  111. /* payload structure bytes */
  112. #define READDONE_IDX_STATUS 0
  113. #define READDONE_IDX_BUFADD_LSW 1
  114. #define READDONE_IDX_BUFADD_MSW 2
  115. #define READDONE_IDX_MEMMAP_HDL 3
  116. #define READDONE_IDX_SIZE 4
  117. #define READDONE_IDX_OFFSET 5
  118. #define READDONE_IDX_LSW_TS 6
  119. #define READDONE_IDX_MSW_TS 7
  120. #define READDONE_IDX_FLAGS 8
  121. #define READDONE_IDX_NUMFRAMES 9
  122. #define READDONE_IDX_SEQ_ID 10
  123. #define SOFT_PAUSE_PERIOD 30 /* ramp up/down for 30ms */
  124. #define SOFT_PAUSE_STEP 0 /* Step value 0ms or 0us */
  125. enum {
  126. SOFT_PAUSE_CURVE_LINEAR = 0,
  127. SOFT_PAUSE_CURVE_EXP,
  128. SOFT_PAUSE_CURVE_LOG,
  129. };
  130. #define SOFT_VOLUME_PERIOD 30 /* ramp up/down for 30ms */
  131. #define SOFT_VOLUME_STEP 0 /* Step value 0ms or 0us */
  132. enum {
  133. SOFT_VOLUME_CURVE_LINEAR = 0,
  134. SOFT_VOLUME_CURVE_EXP,
  135. SOFT_VOLUME_CURVE_LOG,
  136. };
  137. #define SOFT_VOLUME_INSTANCE_1 1
  138. #define SOFT_VOLUME_INSTANCE_2 2
  139. typedef void (*app_cb)(uint32_t opcode, uint32_t token,
  140. uint32_t *payload, void *priv);
  141. struct audio_buffer {
  142. dma_addr_t phys;
  143. void *data;
  144. uint32_t used;
  145. uint32_t size;/* size of buffer */
  146. uint32_t actual_size; /* actual number of bytes read by DSP */
  147. struct dma_buf *dma_buf;
  148. };
  149. struct audio_aio_write_param {
  150. phys_addr_t paddr;
  151. uint32_t len;
  152. uint32_t uid;
  153. uint32_t lsw_ts;
  154. uint32_t msw_ts;
  155. uint32_t flags;
  156. uint32_t metadata_len;
  157. uint32_t last_buffer;
  158. };
  159. struct audio_aio_read_param {
  160. phys_addr_t paddr;
  161. uint32_t len;
  162. uint32_t uid;
  163. uint32_t flags;/*meta data flags*/
  164. };
  165. struct audio_port_data {
  166. struct audio_buffer *buf;
  167. uint32_t max_buf_cnt;
  168. uint32_t dsp_buf;
  169. uint32_t cpu_buf;
  170. struct list_head mem_map_handle;
  171. uint32_t tmp_hdl;
  172. /* read or write locks */
  173. struct mutex lock;
  174. spinlock_t dsp_lock;
  175. };
  176. struct shared_io_config {
  177. uint32_t format;
  178. uint16_t bits_per_sample;
  179. uint32_t rate;
  180. uint32_t channels;
  181. uint16_t sample_word_size;
  182. uint32_t bufsz;
  183. uint32_t bufcnt;
  184. };
  185. struct audio_client {
  186. int session;
  187. app_cb cb;
  188. atomic_t cmd_state;
  189. atomic_t cmd_state_pp;
  190. /* Relative or absolute TS */
  191. atomic_t time_flag;
  192. atomic_t nowait_cmd_cnt;
  193. atomic_t mem_state;
  194. void *priv;
  195. uint32_t io_mode;
  196. uint64_t time_stamp;
  197. struct apr_svc *apr;
  198. struct apr_svc *mmap_apr;
  199. struct apr_svc *apr2;
  200. struct mutex cmd_lock;
  201. /* idx:1 out port, 0: in port*/
  202. struct audio_port_data port[2];
  203. wait_queue_head_t cmd_wait;
  204. wait_queue_head_t time_wait;
  205. wait_queue_head_t mem_wait;
  206. int perf_mode;
  207. int stream_id;
  208. struct device *dev;
  209. int topology;
  210. int app_type;
  211. /* audio cache operations fptr*/
  212. int (*fptr_cache_ops)(struct audio_buffer *abuff, int cache_op);
  213. atomic_t unmap_cb_success;
  214. atomic_t reset;
  215. /* holds latest DSP pipeline delay */
  216. uint32_t path_delay;
  217. /* shared io */
  218. struct audio_buffer shared_pos_buf;
  219. struct shared_io_config config;
  220. };
  221. struct q6asm_cal_info {
  222. int topology_id;
  223. int app_type;
  224. };
  225. void q6asm_audio_client_free(struct audio_client *ac);
  226. struct audio_client *q6asm_audio_client_alloc(app_cb cb, void *priv);
  227. struct audio_client *q6asm_get_audio_client(int session_id);
  228. int q6asm_audio_client_buf_alloc(unsigned int dir/* 1:Out,0:In */,
  229. struct audio_client *ac,
  230. unsigned int bufsz,
  231. uint32_t bufcnt);
  232. int q6asm_audio_client_buf_alloc_contiguous(unsigned int dir
  233. /* 1:Out,0:In */,
  234. struct audio_client *ac,
  235. unsigned int bufsz,
  236. unsigned int bufcnt);
  237. int q6asm_audio_client_buf_free_contiguous(unsigned int dir,
  238. struct audio_client *ac);
  239. int q6asm_set_pp_params(struct audio_client *ac,
  240. struct mem_mapping_hdr *mem_hdr, u8 *param_data,
  241. u32 param_size);
  242. int q6asm_pack_and_set_pp_param_in_band(struct audio_client *ac,
  243. struct param_hdr_v3 param_hdr,
  244. u8 *param_data);
  245. int q6asm_set_soft_volume_module_instance_ids(int instance,
  246. struct param_hdr_v3 *param_hdr);
  247. int q6asm_open_read(struct audio_client *ac, uint32_t format
  248. /*, uint16_t bits_per_sample*/);
  249. int q6asm_open_read_v2(struct audio_client *ac, uint32_t format,
  250. uint16_t bits_per_sample);
  251. int q6asm_open_read_v3(struct audio_client *ac, uint32_t format,
  252. uint16_t bits_per_sample);
  253. int q6asm_open_read_v4(struct audio_client *ac, uint32_t format,
  254. uint16_t bits_per_sample, bool ts_mode,
  255. uint32_t enc_cfg_id);
  256. int q6asm_open_write(struct audio_client *ac, uint32_t format
  257. /*, uint16_t bits_per_sample*/);
  258. int q6asm_open_write_v2(struct audio_client *ac, uint32_t format,
  259. uint16_t bits_per_sample);
  260. int q6asm_open_shared_io(struct audio_client *ac,
  261. struct shared_io_config *c, int dir,
  262. bool use_default_chmap, u8 *channel_map);
  263. int q6asm_open_write_v3(struct audio_client *ac, uint32_t format,
  264. uint16_t bits_per_sample);
  265. int q6asm_open_write_v4(struct audio_client *ac, uint32_t format,
  266. uint16_t bits_per_sample);
  267. int q6asm_stream_open_write_v2(struct audio_client *ac, uint32_t format,
  268. uint16_t bits_per_sample, int32_t stream_id,
  269. bool is_gapless_mode);
  270. int q6asm_stream_open_write_v3(struct audio_client *ac, uint32_t format,
  271. uint16_t bits_per_sample, int32_t stream_id,
  272. bool is_gapless_mode);
  273. int q6asm_stream_open_write_v4(struct audio_client *ac, uint32_t format,
  274. uint16_t bits_per_sample, int32_t stream_id,
  275. bool is_gapless_mode);
  276. int q6asm_open_read_compressed(struct audio_client *ac, uint32_t format,
  277. uint32_t passthrough_flag);
  278. int q6asm_open_write_compressed(struct audio_client *ac, uint32_t format,
  279. uint32_t passthrough_flag);
  280. int q6asm_open_read_write(struct audio_client *ac,
  281. uint32_t rd_format,
  282. uint32_t wr_format);
  283. int q6asm_open_read_write_v2(struct audio_client *ac, uint32_t rd_format,
  284. uint32_t wr_format, bool is_meta_data_mode,
  285. uint32_t bits_per_sample, bool overwrite_topology,
  286. int topology);
  287. int q6asm_open_loopback_v2(struct audio_client *ac,
  288. uint16_t bits_per_sample);
  289. int q6asm_open_transcode_loopback(struct audio_client *ac,
  290. uint16_t bits_per_sample, uint32_t source_format,
  291. uint32_t sink_format);
  292. int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  293. uint32_t lsw_ts, uint32_t flags);
  294. int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
  295. uint32_t lsw_ts, uint32_t flags);
  296. int q6asm_async_write(struct audio_client *ac,
  297. struct audio_aio_write_param *param);
  298. int q6asm_async_read(struct audio_client *ac,
  299. struct audio_aio_read_param *param);
  300. int q6asm_read(struct audio_client *ac);
  301. int q6asm_read_v2(struct audio_client *ac, uint32_t len);
  302. int q6asm_read_nolock(struct audio_client *ac);
  303. int q6asm_memory_map(struct audio_client *ac, phys_addr_t buf_add,
  304. int dir, uint32_t bufsz, uint32_t bufcnt);
  305. int q6asm_memory_unmap(struct audio_client *ac, phys_addr_t buf_add,
  306. int dir);
  307. struct audio_buffer *q6asm_shared_io_buf(struct audio_client *ac, int dir);
  308. int q6asm_shared_io_free(struct audio_client *ac, int dir);
  309. int q6asm_get_shared_pos(struct audio_client *ac, uint32_t *si, uint32_t *msw,
  310. uint32_t *lsw);
  311. int q6asm_map_rtac_block(struct rtac_cal_block_data *cal_block);
  312. int q6asm_unmap_rtac_block(uint32_t *mem_map_handle);
  313. int q6asm_send_cal(struct audio_client *ac);
  314. int q6asm_run(struct audio_client *ac, uint32_t flags,
  315. uint32_t msw_ts, uint32_t lsw_ts);
  316. int q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
  317. uint32_t msw_ts, uint32_t lsw_ts);
  318. int q6asm_stream_run_nowait(struct audio_client *ac, uint32_t flags,
  319. uint32_t msw_ts, uint32_t lsw_ts, uint32_t stream_id);
  320. int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable);
  321. int q6asm_reg_rx_underflow(struct audio_client *ac, uint16_t enable);
  322. int q6asm_cmd(struct audio_client *ac, int cmd);
  323. int q6asm_stream_cmd(struct audio_client *ac, int cmd, uint32_t stream_id);
  324. int q6asm_cmd_nowait(struct audio_client *ac, int cmd);
  325. int q6asm_stream_cmd_nowait(struct audio_client *ac, int cmd,
  326. uint32_t stream_id);
  327. void *q6asm_is_cpu_buf_avail(int dir, struct audio_client *ac,
  328. uint32_t *size, uint32_t *idx);
  329. int q6asm_cpu_buf_release(int dir, struct audio_client *ac);
  330. void *q6asm_is_cpu_buf_avail_nolock(int dir, struct audio_client *ac,
  331. uint32_t *size, uint32_t *idx);
  332. int q6asm_is_dsp_buf_avail(int dir, struct audio_client *ac);
  333. /* File format specific configurations to be added below */
  334. int q6asm_enc_cfg_blk_aac(struct audio_client *ac,
  335. uint32_t frames_per_buf,
  336. uint32_t sample_rate, uint32_t channels,
  337. uint32_t bit_rate,
  338. uint32_t mode, uint32_t format);
  339. int q6asm_enc_cfg_blk_g711(struct audio_client *ac,
  340. uint32_t frames_per_buf,
  341. uint32_t sample_rate);
  342. int q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
  343. uint32_t rate, uint32_t channels);
  344. int q6asm_enc_cfg_blk_pcm_v2(struct audio_client *ac,
  345. uint32_t rate, uint32_t channels,
  346. uint16_t bits_per_sample,
  347. bool use_default_chmap, bool use_back_flavor,
  348. u8 *channel_map);
  349. int q6asm_enc_cfg_blk_pcm_v3(struct audio_client *ac,
  350. uint32_t rate, uint32_t channels,
  351. uint16_t bits_per_sample, bool use_default_chmap,
  352. bool use_back_flavor, u8 *channel_map,
  353. uint16_t sample_word_size);
  354. int q6asm_enc_cfg_blk_pcm_v4(struct audio_client *ac,
  355. uint32_t rate, uint32_t channels,
  356. uint16_t bits_per_sample, bool use_default_chmap,
  357. bool use_back_flavor, u8 *channel_map,
  358. uint16_t sample_word_size, uint16_t endianness,
  359. uint16_t mode);
  360. int q6asm_enc_cfg_blk_pcm_format_support(struct audio_client *ac,
  361. uint32_t rate, uint32_t channels,
  362. uint16_t bits_per_sample);
  363. int q6asm_enc_cfg_blk_pcm_format_support_v3(struct audio_client *ac,
  364. uint32_t rate, uint32_t channels,
  365. uint16_t bits_per_sample,
  366. uint16_t sample_word_size);
  367. int q6asm_enc_cfg_blk_pcm_format_support_v4(struct audio_client *ac,
  368. uint32_t rate, uint32_t channels,
  369. uint16_t bits_per_sample,
  370. uint16_t sample_word_size,
  371. uint16_t endianness,
  372. uint16_t mode);
  373. int q6asm_enc_cfg_blk_custom(struct audio_client *ac,
  374. uint32_t sample_rate, uint32_t channels,
  375. uint32_t format, void *cfg);
  376. int q6asm_set_encdec_chan_map(struct audio_client *ac,
  377. uint32_t num_channels);
  378. int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac,
  379. uint32_t rate, uint32_t channels);
  380. int q6asm_enable_sbrps(struct audio_client *ac,
  381. uint32_t sbr_ps);
  382. int q6asm_cfg_dual_mono_aac(struct audio_client *ac,
  383. uint16_t sce_left, uint16_t sce_right);
  384. int q6asm_cfg_aac_sel_mix_coef(struct audio_client *ac, uint32_t mix_coeff);
  385. int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf,
  386. uint16_t min_rate, uint16_t max_rate,
  387. uint16_t reduced_rate_level, uint16_t rate_modulation_cmd);
  388. int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf,
  389. uint16_t min_rate, uint16_t max_rate,
  390. uint16_t rate_modulation_cmd);
  391. int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf,
  392. uint16_t band_mode, uint16_t dtx_enable);
  393. int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf,
  394. uint16_t band_mode, uint16_t dtx_enable);
  395. int q6asm_media_format_block_pcm(struct audio_client *ac,
  396. uint32_t rate, uint32_t channels);
  397. int q6asm_media_format_block_pcm_format_support(struct audio_client *ac,
  398. uint32_t rate, uint32_t channels,
  399. uint16_t bits_per_sample);
  400. int q6asm_media_format_block_pcm_format_support_v2(struct audio_client *ac,
  401. uint32_t rate, uint32_t channels,
  402. uint16_t bits_per_sample, int stream_id,
  403. bool use_default_chmap, char *channel_map);
  404. int q6asm_media_format_block_pcm_format_support_v3(struct audio_client *ac,
  405. uint32_t rate,
  406. uint32_t channels,
  407. uint16_t bits_per_sample,
  408. int stream_id,
  409. bool use_default_chmap,
  410. char *channel_map,
  411. uint16_t sample_word_size);
  412. int q6asm_media_format_block_pcm_format_support_v4(struct audio_client *ac,
  413. uint32_t rate,
  414. uint32_t channels,
  415. uint16_t bits_per_sample,
  416. int stream_id,
  417. bool use_default_chmap,
  418. char *channel_map,
  419. uint16_t sample_word_size,
  420. uint16_t endianness,
  421. uint16_t mode);
  422. int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
  423. uint32_t rate, uint32_t channels,
  424. bool use_default_chmap, char *channel_map);
  425. int q6asm_media_format_block_multi_ch_pcm_v2(
  426. struct audio_client *ac,
  427. uint32_t rate, uint32_t channels,
  428. bool use_default_chmap, char *channel_map,
  429. uint16_t bits_per_sample);
  430. int q6asm_media_format_block_gen_compr(
  431. struct audio_client *ac,
  432. uint32_t rate, uint32_t channels,
  433. bool use_default_chmap, char *channel_map,
  434. uint16_t bits_per_sample);
  435. int q6asm_media_format_block_iec(
  436. struct audio_client *ac,
  437. uint32_t rate, uint32_t channels);
  438. int q6asm_media_format_block_multi_ch_pcm_v3(struct audio_client *ac,
  439. uint32_t rate, uint32_t channels,
  440. bool use_default_chmap,
  441. char *channel_map,
  442. uint16_t bits_per_sample,
  443. uint16_t sample_word_size);
  444. int q6asm_media_format_block_multi_ch_pcm_v4(struct audio_client *ac,
  445. uint32_t rate, uint32_t channels,
  446. bool use_default_chmap,
  447. char *channel_map,
  448. uint16_t bits_per_sample,
  449. uint16_t sample_word_size,
  450. uint16_t endianness,
  451. uint16_t mode);
  452. int q6asm_media_format_block_aac(struct audio_client *ac,
  453. struct asm_aac_cfg *cfg);
  454. int q6asm_stream_media_format_block_aac(struct audio_client *ac,
  455. struct asm_aac_cfg *cfg, int stream_id);
  456. int q6asm_media_format_block_multi_aac(struct audio_client *ac,
  457. struct asm_aac_cfg *cfg);
  458. int q6asm_media_format_block_wma(struct audio_client *ac,
  459. void *cfg, int stream_id);
  460. int q6asm_media_format_block_wmapro(struct audio_client *ac,
  461. void *cfg, int stream_id);
  462. int q6asm_media_format_block_amrwbplus(struct audio_client *ac,
  463. struct asm_amrwbplus_cfg *cfg);
  464. int q6asm_stream_media_format_block_flac(struct audio_client *ac,
  465. struct asm_flac_cfg *cfg, int stream_id);
  466. int q6asm_media_format_block_alac(struct audio_client *ac,
  467. struct asm_alac_cfg *cfg, int stream_id);
  468. int q6asm_media_format_block_g711(struct audio_client *ac,
  469. struct asm_g711_dec_cfg *cfg, int stream_id);
  470. int q6asm_stream_media_format_block_vorbis(struct audio_client *ac,
  471. struct asm_vorbis_cfg *cfg, int stream_id);
  472. int q6asm_media_format_block_ape(struct audio_client *ac,
  473. struct asm_ape_cfg *cfg, int stream_id);
  474. int q6asm_media_format_block_dsd(struct audio_client *ac,
  475. struct asm_dsd_cfg *cfg, int stream_id);
  476. int q6asm_stream_media_format_block_aptx_dec(struct audio_client *ac,
  477. uint32_t sr, int stream_id);
  478. int q6asm_ds1_set_endp_params(struct audio_client *ac,
  479. int param_id, int param_value);
  480. /* Send stream based end params */
  481. int q6asm_ds1_set_stream_endp_params(struct audio_client *ac, int param_id,
  482. int param_value, int stream_id);
  483. /* PP specific */
  484. int q6asm_equalizer(struct audio_client *ac, void *eq);
  485. /* Send Volume Command */
  486. int q6asm_set_volume(struct audio_client *ac, int volume);
  487. /* Send Volume Command */
  488. int q6asm_set_volume_v2(struct audio_client *ac, int volume, int instance);
  489. /* DTS Eagle Params */
  490. int q6asm_dts_eagle_set(struct audio_client *ac, int param_id, uint32_t size,
  491. void *data, struct param_outband *po, int m_id);
  492. int q6asm_dts_eagle_get(struct audio_client *ac, int param_id, uint32_t size,
  493. void *data, struct param_outband *po, int m_id);
  494. /* Send aptx decoder BT address */
  495. int q6asm_set_aptx_dec_bt_addr(struct audio_client *ac,
  496. struct aptx_dec_bt_addr_cfg *cfg);
  497. /* Set SoftPause Params */
  498. int q6asm_set_softpause(struct audio_client *ac,
  499. struct asm_softpause_params *param);
  500. /* Set Softvolume Params */
  501. int q6asm_set_softvolume(struct audio_client *ac,
  502. struct asm_softvolume_params *param);
  503. /* Set Softvolume Params */
  504. int q6asm_set_softvolume_v2(struct audio_client *ac,
  505. struct asm_softvolume_params *param, int instance);
  506. /* Send left-right channel gain */
  507. int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain);
  508. /* Send multi channel gain */
  509. int q6asm_set_multich_gain(struct audio_client *ac, uint32_t channels,
  510. uint32_t *gains, uint8_t *ch_map, bool use_default);
  511. /* Enable Mute/unmute flag */
  512. int q6asm_set_mute(struct audio_client *ac, int muteflag);
  513. int q6asm_get_session_time(struct audio_client *ac, uint64_t *tstamp);
  514. int q6asm_get_session_time_legacy(struct audio_client *ac, uint64_t *tstamp);
  515. int q6asm_send_stream_cmd(struct audio_client *ac,
  516. struct msm_adsp_event_data *data);
  517. int q6asm_send_ion_fd(struct audio_client *ac, int fd);
  518. int q6asm_send_rtic_event_ack(struct audio_client *ac,
  519. void *param, uint32_t params_length);
  520. /* Client can set the IO mode to either AIO/SIO mode */
  521. int q6asm_set_io_mode(struct audio_client *ac, uint32_t mode);
  522. /* Get Service ID for APR communication */
  523. int q6asm_get_apr_service_id(int session_id);
  524. /* Common format block without any payload */
  525. int q6asm_media_format_block(struct audio_client *ac, uint32_t format);
  526. /* Send the meta data to remove initial and trailing silence */
  527. int q6asm_send_meta_data(struct audio_client *ac, uint32_t initial_samples,
  528. uint32_t trailing_samples);
  529. /* Send the stream meta data to remove initial and trailing silence */
  530. int q6asm_stream_send_meta_data(struct audio_client *ac, uint32_t stream_id,
  531. uint32_t initial_samples, uint32_t trailing_samples);
  532. int q6asm_get_asm_topology(int session_id);
  533. int q6asm_get_asm_app_type(int session_id);
  534. int q6asm_send_mtmx_strtr_window(struct audio_client *ac,
  535. struct asm_session_mtmx_strtr_param_window_v2_t *window_param,
  536. uint32_t param_id);
  537. /* Configure DSP render mode */
  538. int q6asm_send_mtmx_strtr_render_mode(struct audio_client *ac,
  539. uint32_t render_mode);
  540. /* Configure DSP clock recovery mode */
  541. int q6asm_send_mtmx_strtr_clk_rec_mode(struct audio_client *ac,
  542. uint32_t clk_rec_mode);
  543. /* Enable adjust session clock in DSP */
  544. int q6asm_send_mtmx_strtr_enable_adjust_session_clock(struct audio_client *ac,
  545. bool enable);
  546. /* Retrieve the current DSP path delay */
  547. int q6asm_get_path_delay(struct audio_client *ac);
  548. /* Helper functions to retrieve data from token */
  549. uint8_t q6asm_get_buf_index_from_token(uint32_t token);
  550. uint8_t q6asm_get_stream_id_from_token(uint32_t token);
  551. /* Adjust session clock in DSP */
  552. int q6asm_adjust_session_clock(struct audio_client *ac,
  553. uint32_t adjust_time_lsw,
  554. uint32_t adjust_time_msw);
  555. #endif /* __Q6_ASM_H__ */