| Kiran Kandi | 5e809b0 | 2012-01-31 00:24:33 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved. | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 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_H__ | 
|  | 13 | #define __Q6_ASM_H__ | 
|  | 14 |  | 
|  | 15 | #include <mach/qdsp6v2/apr.h> | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 16 | #include <sound/apr_audio.h> | 
| Swaminathan Sathappan | bdc5508 | 2012-02-16 22:47:40 -0800 | [diff] [blame] | 17 | #ifdef CONFIG_MSM_MULTIMEDIA_USE_ION | 
| Mitchel Humpherys | 71a6ac9 | 2012-09-06 10:22:31 -0700 | [diff] [blame] | 18 | #include <linux/msm_ion.h> | 
| Swaminathan Sathappan | bdc5508 | 2012-02-16 22:47:40 -0800 | [diff] [blame] | 19 | #endif | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 20 |  | 
|  | 21 | #define IN                      0x000 | 
|  | 22 | #define OUT                     0x001 | 
|  | 23 | #define CH_MODE_MONO            0x001 | 
|  | 24 | #define CH_MODE_STEREO          0x002 | 
|  | 25 |  | 
|  | 26 | #define FORMAT_LINEAR_PCM   0x0000 | 
|  | 27 | #define FORMAT_DTMF         0x0001 | 
|  | 28 | #define FORMAT_ADPCM	    0x0002 | 
|  | 29 | #define FORMAT_YADPCM       0x0003 | 
|  | 30 | #define FORMAT_MP3          0x0004 | 
|  | 31 | #define FORMAT_MPEG4_AAC    0x0005 | 
|  | 32 | #define FORMAT_AMRNB	    0x0006 | 
|  | 33 | #define FORMAT_AMRWB	    0x0007 | 
|  | 34 | #define FORMAT_V13K	    0x0008 | 
|  | 35 | #define FORMAT_EVRC	    0x0009 | 
|  | 36 | #define FORMAT_EVRCB	    0x000a | 
|  | 37 | #define FORMAT_EVRCWB	    0x000b | 
|  | 38 | #define FORMAT_MIDI	    0x000c | 
|  | 39 | #define FORMAT_SBC	    0x000d | 
|  | 40 | #define FORMAT_WMA_V10PRO   0x000e | 
|  | 41 | #define FORMAT_WMA_V9	    0x000f | 
|  | 42 | #define FORMAT_AMR_WB_PLUS  0x0010 | 
| Bharath Ramachandramurthy | 4f71d50 | 2011-10-23 19:45:22 -0700 | [diff] [blame] | 43 | #define FORMAT_MPEG4_MULTI_AAC 0x0011 | 
| Kiran Kandi | 5e809b0 | 2012-01-31 00:24:33 -0800 | [diff] [blame] | 44 | #define FORMAT_MULTI_CHANNEL_LINEAR_PCM 0x0012 | 
| Santosh Mardi | 2332120 | 2012-03-22 04:33:25 +0530 | [diff] [blame] | 45 | #define FORMAT_AC3	0x0013 | 
|  | 46 | #define FORMAT_DTS	0x0014 | 
|  | 47 | #define FORMAT_EAC3	0x0015 | 
|  | 48 | #define FORMAT_ATRAC	0x0016 | 
|  | 49 | #define FORMAT_MAT	0x0017 | 
|  | 50 | #define FORMAT_AAC	0x0018 | 
| Srikanth Uyyala | 66f781a | 2012-06-13 23:23:25 +0530 | [diff] [blame] | 51 | #define FORMAT_DTS_LBR 0x0019 | 
| Subhash Chandra Bose Naripeddy | f764805 | 2012-09-24 18:51:43 -0700 | [diff] [blame] | 52 | #define FORMAT_PASS_THROUGH 0x0020 | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 53 |  | 
|  | 54 | #define ENCDEC_SBCBITRATE   0x0001 | 
|  | 55 | #define ENCDEC_IMMEDIATE_DECODE 0x0002 | 
|  | 56 | #define ENCDEC_CFG_BLK          0x0003 | 
|  | 57 |  | 
|  | 58 | #define CMD_PAUSE          0x0001 | 
|  | 59 | #define CMD_FLUSH          0x0002 | 
|  | 60 | #define CMD_EOS            0x0003 | 
|  | 61 | #define CMD_CLOSE          0x0004 | 
|  | 62 | #define CMD_OUT_FLUSH      0x0005 | 
|  | 63 |  | 
|  | 64 | /* bit 0:1 represents priority of stream */ | 
|  | 65 | #define STREAM_PRIORITY_NORMAL	0x0000 | 
|  | 66 | #define STREAM_PRIORITY_LOW	0x0001 | 
|  | 67 | #define STREAM_PRIORITY_HIGH	0x0002 | 
|  | 68 |  | 
|  | 69 | /* bit 4 represents META enable of encoded data buffer */ | 
|  | 70 | #define BUFFER_META_ENABLE	0x0010 | 
|  | 71 |  | 
|  | 72 | /* Enable Sample_Rate/Channel_Mode notification event from Decoder */ | 
|  | 73 | #define SR_CM_NOTIFY_ENABLE	0x0004 | 
|  | 74 |  | 
|  | 75 | #define ASYNC_IO_MODE	0x0002 | 
|  | 76 | #define SYNC_IO_MODE	0x0001 | 
|  | 77 | #define NO_TIMESTAMP    0xFF00 | 
|  | 78 | #define SET_TIMESTAMP   0x0000 | 
|  | 79 |  | 
|  | 80 | #define SOFT_PAUSE_ENABLE	1 | 
|  | 81 | #define SOFT_PAUSE_DISABLE	0 | 
|  | 82 |  | 
|  | 83 | #define SESSION_MAX	0x08 | 
|  | 84 |  | 
| Sriranjan Srikantam | 5285a21 | 2011-09-06 19:09:19 -0700 | [diff] [blame] | 85 | #define SOFT_PAUSE_PERIOD       30   /* ramp up/down for 30ms    */ | 
| Deepa Madiregama | 623b593 | 2012-05-22 14:44:33 +0530 | [diff] [blame] | 86 | #define SOFT_PAUSE_STEP_LINEAR  0    /* Step value 0ms or 0us */ | 
|  | 87 | #define SOFT_PAUSE_STEP         2000 /* Step value 2000ms or 2000us */ | 
| Sriranjan Srikantam | 5285a21 | 2011-09-06 19:09:19 -0700 | [diff] [blame] | 88 | enum { | 
|  | 89 | SOFT_PAUSE_CURVE_LINEAR = 0, | 
|  | 90 | SOFT_PAUSE_CURVE_EXP, | 
|  | 91 | SOFT_PAUSE_CURVE_LOG, | 
|  | 92 | }; | 
|  | 93 |  | 
|  | 94 | #define SOFT_VOLUME_PERIOD       30   /* ramp up/down for 30ms    */ | 
| Deepa Madiregama | 623b593 | 2012-05-22 14:44:33 +0530 | [diff] [blame] | 95 | #define SOFT_VOLUME_STEP_LINEAR  0    /* Step value 0ms or 0us */ | 
|  | 96 | #define SOFT_VOLUME_STEP         2000 /* Step value 2000ms or 2000us */ | 
| Sriranjan Srikantam | 5285a21 | 2011-09-06 19:09:19 -0700 | [diff] [blame] | 97 | enum { | 
|  | 98 | SOFT_VOLUME_CURVE_LINEAR = 0, | 
|  | 99 | SOFT_VOLUME_CURVE_EXP, | 
|  | 100 | SOFT_VOLUME_CURVE_LOG, | 
|  | 101 | }; | 
|  | 102 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 103 | typedef void (*app_cb)(uint32_t opcode, uint32_t token, | 
|  | 104 | uint32_t *payload, void *priv); | 
|  | 105 |  | 
|  | 106 | struct audio_buffer { | 
|  | 107 | dma_addr_t phys; | 
|  | 108 | void       *data; | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 109 | uint32_t   used; | 
|  | 110 | uint32_t   size;/* size of buffer */ | 
|  | 111 | uint32_t   actual_size; /* actual number of bytes read by DSP */ | 
| Swaminathan Sathappan | bdc5508 | 2012-02-16 22:47:40 -0800 | [diff] [blame] | 112 | #ifdef CONFIG_MSM_MULTIMEDIA_USE_ION | 
|  | 113 | struct ion_handle *handle; | 
|  | 114 | struct ion_client *client; | 
|  | 115 | #else | 
| Laura Abbott | ea3e7b6 | 2012-04-30 15:59:21 -0700 | [diff] [blame] | 116 | void *mem_buffer; | 
| Swaminathan Sathappan | bdc5508 | 2012-02-16 22:47:40 -0800 | [diff] [blame] | 117 | #endif | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 118 | }; | 
|  | 119 |  | 
|  | 120 | struct audio_aio_write_param { | 
|  | 121 | unsigned long paddr; | 
|  | 122 | uint32_t uid; | 
|  | 123 | uint32_t len; | 
|  | 124 | uint32_t msw_ts; | 
|  | 125 | uint32_t lsw_ts; | 
|  | 126 | uint32_t flags; | 
|  | 127 | }; | 
|  | 128 |  | 
|  | 129 | struct audio_aio_read_param { | 
|  | 130 | unsigned long paddr; | 
|  | 131 | uint32_t len; | 
|  | 132 | uint32_t uid; | 
|  | 133 | }; | 
|  | 134 |  | 
|  | 135 | struct audio_port_data { | 
|  | 136 | struct audio_buffer *buf; | 
|  | 137 | uint32_t	    max_buf_cnt; | 
|  | 138 | uint32_t	    dsp_buf; | 
|  | 139 | uint32_t	    cpu_buf; | 
|  | 140 | /* read or write locks */ | 
|  | 141 | struct mutex	    lock; | 
|  | 142 | spinlock_t	    dsp_lock; | 
|  | 143 | }; | 
|  | 144 |  | 
|  | 145 | struct audio_client { | 
|  | 146 | int                    session; | 
|  | 147 | /* idx:1 out port, 0: in port*/ | 
|  | 148 | struct audio_port_data port[2]; | 
|  | 149 |  | 
|  | 150 | struct apr_svc         *apr; | 
|  | 151 | struct mutex	       cmd_lock; | 
|  | 152 |  | 
|  | 153 | atomic_t		cmd_state; | 
|  | 154 | atomic_t		time_flag; | 
| Jay Wang | 0668d106 | 2012-07-11 18:53:21 -0700 | [diff] [blame] | 155 | atomic_t		nowait_cmd_cnt; | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 156 | wait_queue_head_t	cmd_wait; | 
|  | 157 | wait_queue_head_t	time_wait; | 
|  | 158 |  | 
|  | 159 | app_cb			cb; | 
|  | 160 | void			*priv; | 
|  | 161 | uint32_t         io_mode; | 
|  | 162 | uint64_t         time_stamp; | 
| Srikanth Uyyala | a50b51d | 2012-07-02 16:02:24 +0530 | [diff] [blame] | 163 | atomic_t         cmd_response; | 
| Jayasena Sangaraboina | 99bf09c | 2012-07-17 12:03:08 -0700 | [diff] [blame] | 164 | bool             perf_mode; | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 165 | }; | 
|  | 166 |  | 
|  | 167 | void q6asm_audio_client_free(struct audio_client *ac); | 
|  | 168 |  | 
|  | 169 | struct audio_client *q6asm_audio_client_alloc(app_cb cb, void *priv); | 
|  | 170 |  | 
| Ben Romberger | 61754dc | 2011-10-31 18:25:41 -0700 | [diff] [blame] | 171 | struct audio_client *q6asm_get_audio_client(int session_id); | 
|  | 172 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 173 | int q6asm_audio_client_buf_alloc(unsigned int dir/* 1:Out,0:In */, | 
|  | 174 | struct audio_client *ac, | 
|  | 175 | unsigned int bufsz, | 
|  | 176 | unsigned int bufcnt); | 
|  | 177 | int q6asm_audio_client_buf_alloc_contiguous(unsigned int dir | 
|  | 178 | /* 1:Out,0:In */, | 
|  | 179 | struct audio_client *ac, | 
|  | 180 | unsigned int bufsz, | 
|  | 181 | unsigned int bufcnt); | 
|  | 182 |  | 
|  | 183 | int q6asm_audio_client_buf_free_contiguous(unsigned int dir, | 
|  | 184 | struct audio_client *ac); | 
|  | 185 |  | 
|  | 186 | int q6asm_open_read(struct audio_client *ac, uint32_t format); | 
| Jayasena Sangaraboina | 99bf09c | 2012-07-17 12:03:08 -0700 | [diff] [blame] | 187 | int q6asm_open_read_v2_1(struct audio_client *ac, uint32_t format); | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 188 |  | 
| Subhash Chandra Bose Naripeddy | 694b7d9 | 2012-06-20 20:46:13 -0700 | [diff] [blame] | 189 | int q6asm_open_read_compressed(struct audio_client *ac, | 
|  | 190 | uint32_t frames_per_buffer, uint32_t meta_data_mode); | 
| Subhash Chandra Bose Naripeddy | 8f84689 | 2012-06-12 11:29:18 -0700 | [diff] [blame] | 191 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 192 | int q6asm_open_write(struct audio_client *ac, uint32_t format); | 
|  | 193 |  | 
| Santosh Mardi | 2332120 | 2012-03-22 04:33:25 +0530 | [diff] [blame] | 194 | int q6asm_open_write_compressed(struct audio_client *ac, uint32_t format); | 
|  | 195 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 196 | int q6asm_open_read_write(struct audio_client *ac, | 
|  | 197 | uint32_t rd_format, | 
|  | 198 | uint32_t wr_format); | 
|  | 199 |  | 
|  | 200 | int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts, | 
|  | 201 | uint32_t lsw_ts, uint32_t flags); | 
|  | 202 | int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts, | 
|  | 203 | uint32_t lsw_ts, uint32_t flags); | 
|  | 204 |  | 
|  | 205 | int q6asm_async_write(struct audio_client *ac, | 
|  | 206 | struct audio_aio_write_param *param); | 
|  | 207 |  | 
|  | 208 | int q6asm_async_read(struct audio_client *ac, | 
|  | 209 | struct audio_aio_read_param *param); | 
|  | 210 |  | 
| Subhash Chandra Bose Naripeddy | 694b7d9 | 2012-06-20 20:46:13 -0700 | [diff] [blame] | 211 | int q6asm_async_read_compressed(struct audio_client *ac, | 
|  | 212 | struct audio_aio_read_param *param); | 
|  | 213 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 214 | int q6asm_read(struct audio_client *ac); | 
|  | 215 | int q6asm_read_nolock(struct audio_client *ac); | 
|  | 216 |  | 
|  | 217 | int q6asm_memory_map(struct audio_client *ac, uint32_t buf_add, | 
|  | 218 | int dir, uint32_t bufsz, uint32_t bufcnt); | 
|  | 219 |  | 
|  | 220 | int q6asm_memory_unmap(struct audio_client *ac, uint32_t buf_add, | 
|  | 221 | int dir); | 
|  | 222 |  | 
|  | 223 | int q6asm_run(struct audio_client *ac, uint32_t flags, | 
|  | 224 | uint32_t msw_ts, uint32_t lsw_ts); | 
|  | 225 |  | 
|  | 226 | int q6asm_run_nowait(struct audio_client *ac, uint32_t flags, | 
|  | 227 | uint32_t msw_ts, uint32_t lsw_ts); | 
|  | 228 |  | 
|  | 229 | int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable); | 
|  | 230 |  | 
|  | 231 | int q6asm_cmd(struct audio_client *ac, int cmd); | 
|  | 232 |  | 
|  | 233 | int q6asm_cmd_nowait(struct audio_client *ac, int cmd); | 
|  | 234 |  | 
|  | 235 | void *q6asm_is_cpu_buf_avail(int dir, struct audio_client *ac, | 
|  | 236 | uint32_t *size, uint32_t *idx); | 
|  | 237 |  | 
| Jay Wang | 9cf59a0 | 2011-08-10 16:58:40 -0700 | [diff] [blame] | 238 | void *q6asm_is_cpu_buf_avail_nolock(int dir, struct audio_client *ac, | 
|  | 239 | uint32_t *size, uint32_t *idx); | 
|  | 240 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 241 | int q6asm_is_dsp_buf_avail(int dir, struct audio_client *ac); | 
|  | 242 |  | 
|  | 243 | /* File format specific configurations to be added below */ | 
|  | 244 |  | 
|  | 245 | int q6asm_enc_cfg_blk_aac(struct audio_client *ac, | 
|  | 246 | uint32_t frames_per_buf, | 
|  | 247 | uint32_t sample_rate, uint32_t channels, | 
|  | 248 | uint32_t bit_rate, | 
|  | 249 | uint32_t mode, uint32_t format); | 
|  | 250 |  | 
|  | 251 | int q6asm_enc_cfg_blk_pcm(struct audio_client *ac, | 
|  | 252 | uint32_t rate, uint32_t channels); | 
|  | 253 |  | 
| Harmandeep Singh | eaf59b4 | 2012-06-05 21:46:02 -0700 | [diff] [blame] | 254 | int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac, | 
|  | 255 | uint32_t rate, uint32_t channels); | 
|  | 256 |  | 
| Mingming Yin | 647e9ea | 2012-03-17 19:56:10 -0700 | [diff] [blame] | 257 | int q6asm_enc_cfg_blk_multi_ch_pcm(struct audio_client *ac, | 
|  | 258 | uint32_t rate, uint32_t channels); | 
|  | 259 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 260 | int q6asm_enable_sbrps(struct audio_client *ac, | 
|  | 261 | uint32_t sbr_ps); | 
|  | 262 |  | 
| Swaminathan Sathappan | 70765cd | 2011-07-19 18:42:47 -0700 | [diff] [blame] | 263 | int q6asm_cfg_dual_mono_aac(struct audio_client *ac, | 
|  | 264 | uint16_t sce_left, uint16_t sce_right); | 
|  | 265 |  | 
| Swaminathan Sathappan | 6f53088 | 2012-05-01 16:42:22 -0700 | [diff] [blame] | 266 | int q6asm_set_encdec_chan_map(struct audio_client *ac, | 
|  | 267 | uint32_t num_channels); | 
|  | 268 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 269 | int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf, | 
|  | 270 | uint16_t min_rate, uint16_t max_rate, | 
|  | 271 | uint16_t reduced_rate_level, uint16_t rate_modulation_cmd); | 
|  | 272 |  | 
|  | 273 | int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf, | 
|  | 274 | uint16_t min_rate, uint16_t max_rate, | 
|  | 275 | uint16_t rate_modulation_cmd); | 
|  | 276 |  | 
|  | 277 | int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf, | 
|  | 278 | uint16_t band_mode, uint16_t dtx_enable); | 
|  | 279 |  | 
| Alex Wong | 2caeecc | 2011-10-28 10:52:15 +0530 | [diff] [blame] | 280 | int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf, | 
|  | 281 | uint16_t band_mode, uint16_t dtx_enable); | 
|  | 282 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 283 | int q6asm_media_format_block_pcm(struct audio_client *ac, | 
|  | 284 | uint32_t rate, uint32_t channels); | 
|  | 285 |  | 
| Kiran Kandi | 5e809b0 | 2012-01-31 00:24:33 -0800 | [diff] [blame] | 286 | int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac, | 
|  | 287 | uint32_t rate, uint32_t channels); | 
|  | 288 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 289 | int q6asm_media_format_block_aac(struct audio_client *ac, | 
|  | 290 | struct asm_aac_cfg *cfg); | 
|  | 291 |  | 
| Ajit Khare | bf47583 | 2012-08-07 13:19:44 -0700 | [diff] [blame] | 292 | int q6asm_media_format_block_amrwbplus(struct audio_client *ac, | 
|  | 293 | struct asm_amrwbplus_cfg *cfg); | 
|  | 294 |  | 
| Bharath Ramachandramurthy | 4f71d50 | 2011-10-23 19:45:22 -0700 | [diff] [blame] | 295 | int q6asm_media_format_block_multi_aac(struct audio_client *ac, | 
|  | 296 | struct asm_aac_cfg *cfg); | 
|  | 297 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 298 | int q6asm_media_format_block_wma(struct audio_client *ac, | 
|  | 299 | void *cfg); | 
|  | 300 |  | 
|  | 301 | int q6asm_media_format_block_wmapro(struct audio_client *ac, | 
|  | 302 | void *cfg); | 
|  | 303 |  | 
|  | 304 | /* PP specific */ | 
|  | 305 | int q6asm_equalizer(struct audio_client *ac, void *eq); | 
|  | 306 |  | 
|  | 307 | /* Send Volume Command */ | 
|  | 308 | int q6asm_set_volume(struct audio_client *ac, int volume); | 
|  | 309 |  | 
|  | 310 | /* Set SoftPause Params */ | 
|  | 311 | int q6asm_set_softpause(struct audio_client *ac, | 
|  | 312 | struct asm_softpause_params *param); | 
|  | 313 |  | 
| Swaminathan Sathappan | b0021cd | 2011-08-31 15:20:12 -0700 | [diff] [blame] | 314 | /* Set Softvolume Params */ | 
|  | 315 | int q6asm_set_softvolume(struct audio_client *ac, | 
|  | 316 | struct asm_softvolume_params *param); | 
|  | 317 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 318 | /* Send left-right channel gain */ | 
|  | 319 | int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain); | 
|  | 320 |  | 
|  | 321 | /* Enable Mute/unmute flag */ | 
|  | 322 | int q6asm_set_mute(struct audio_client *ac, int muteflag); | 
|  | 323 |  | 
|  | 324 | uint64_t q6asm_get_session_time(struct audio_client *ac); | 
|  | 325 |  | 
|  | 326 | /* Client can set the IO mode to either AIO/SIO mode */ | 
|  | 327 | int q6asm_set_io_mode(struct audio_client *ac, uint32_t mode); | 
|  | 328 |  | 
| Ben Romberger | 45b351c | 2011-07-20 22:37:27 -0700 | [diff] [blame] | 329 | #ifdef CONFIG_RTAC | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 330 | /* Get Service ID for APR communication */ | 
|  | 331 | int q6asm_get_apr_service_id(int session_id); | 
|  | 332 | #endif | 
|  | 333 |  | 
| Alex Wong | 2caeecc | 2011-10-28 10:52:15 +0530 | [diff] [blame] | 334 | /* Common format block without any payload | 
|  | 335 | */ | 
|  | 336 | int q6asm_media_format_block(struct audio_client *ac, uint32_t format); | 
|  | 337 |  | 
| Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 338 | #endif /* __Q6_ASM_H__ */ |