blob: dcdd8169de2ce0ea9c1f4f7a0c183c593967b56e [file] [log] [blame]
Kiran Kandi5e809b02012-01-31 00:24:33 -08001/* Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
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 Huntsman3f2bc4d2011-08-16 17:27:22 -070016#include <sound/apr_audio.h>
Swaminathan Sathappanbdc55082012-02-16 22:47:40 -080017#ifdef CONFIG_MSM_MULTIMEDIA_USE_ION
Mitchel Humpherys71a6ac92012-09-06 10:22:31 -070018#include <linux/msm_ion.h>
Swaminathan Sathappanbdc55082012-02-16 22:47:40 -080019#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070020
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 Ramachandramurthy4f71d502011-10-23 19:45:22 -070043#define FORMAT_MPEG4_MULTI_AAC 0x0011
Kiran Kandi5e809b02012-01-31 00:24:33 -080044#define FORMAT_MULTI_CHANNEL_LINEAR_PCM 0x0012
Santosh Mardi23321202012-03-22 04:33:25 +053045#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 Uyyala66f781a2012-06-13 23:23:25 +053051#define FORMAT_DTS_LBR 0x0019
Subhash Chandra Bose Naripeddyf7648052012-09-24 18:51:43 -070052#define FORMAT_PASS_THROUGH 0x0020
Aviral Gupta03bd4242012-10-09 22:09:32 +053053#define FORMAT_MP2 0x0021
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070054
55#define ENCDEC_SBCBITRATE 0x0001
56#define ENCDEC_IMMEDIATE_DECODE 0x0002
57#define ENCDEC_CFG_BLK 0x0003
Aviral Gupta4ad0f502012-10-16 12:40:07 +053058#define DTS_ENC_SAMPLE_RATE48k 48000
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070059
60#define CMD_PAUSE 0x0001
61#define CMD_FLUSH 0x0002
62#define CMD_EOS 0x0003
63#define CMD_CLOSE 0x0004
64#define CMD_OUT_FLUSH 0x0005
65
66/* bit 0:1 represents priority of stream */
67#define STREAM_PRIORITY_NORMAL 0x0000
68#define STREAM_PRIORITY_LOW 0x0001
69#define STREAM_PRIORITY_HIGH 0x0002
70
71/* bit 4 represents META enable of encoded data buffer */
72#define BUFFER_META_ENABLE 0x0010
73
74/* Enable Sample_Rate/Channel_Mode notification event from Decoder */
75#define SR_CM_NOTIFY_ENABLE 0x0004
76
Patrick Lai3182be52012-11-17 00:29:07 -080077#define TUN_WRITE_IO_MODE 0x0008 /* tunnel read write mode */
78#define TUN_READ_IO_MODE 0x0004 /* tunnel read write mode */
79#define ASYNC_IO_MODE 0x0002
80#define SYNC_IO_MODE 0x0001
81#define NO_TIMESTAMP 0xFF00
82#define SET_TIMESTAMP 0x0000
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070083
84#define SOFT_PAUSE_ENABLE 1
85#define SOFT_PAUSE_DISABLE 0
86
87#define SESSION_MAX 0x08
88
Sriranjan Srikantam5285a212011-09-06 19:09:19 -070089#define SOFT_PAUSE_PERIOD 30 /* ramp up/down for 30ms */
Deepa Madiregama623b5932012-05-22 14:44:33 +053090#define SOFT_PAUSE_STEP_LINEAR 0 /* Step value 0ms or 0us */
91#define SOFT_PAUSE_STEP 2000 /* Step value 2000ms or 2000us */
Sriranjan Srikantam5285a212011-09-06 19:09:19 -070092enum {
93 SOFT_PAUSE_CURVE_LINEAR = 0,
94 SOFT_PAUSE_CURVE_EXP,
95 SOFT_PAUSE_CURVE_LOG,
96};
97
98#define SOFT_VOLUME_PERIOD 30 /* ramp up/down for 30ms */
Deepa Madiregama623b5932012-05-22 14:44:33 +053099#define SOFT_VOLUME_STEP_LINEAR 0 /* Step value 0ms or 0us */
100#define SOFT_VOLUME_STEP 2000 /* Step value 2000ms or 2000us */
Sriranjan Srikantam5285a212011-09-06 19:09:19 -0700101enum {
102 SOFT_VOLUME_CURVE_LINEAR = 0,
103 SOFT_VOLUME_CURVE_EXP,
104 SOFT_VOLUME_CURVE_LOG,
105};
106
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700107typedef void (*app_cb)(uint32_t opcode, uint32_t token,
108 uint32_t *payload, void *priv);
109
110struct audio_buffer {
111 dma_addr_t phys;
112 void *data;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700113 uint32_t used;
114 uint32_t size;/* size of buffer */
115 uint32_t actual_size; /* actual number of bytes read by DSP */
Swaminathan Sathappanbdc55082012-02-16 22:47:40 -0800116#ifdef CONFIG_MSM_MULTIMEDIA_USE_ION
117 struct ion_handle *handle;
118 struct ion_client *client;
119#else
Laura Abbottea3e7b62012-04-30 15:59:21 -0700120 void *mem_buffer;
Swaminathan Sathappanbdc55082012-02-16 22:47:40 -0800121#endif
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700122};
123
124struct audio_aio_write_param {
125 unsigned long paddr;
126 uint32_t uid;
127 uint32_t len;
128 uint32_t msw_ts;
129 uint32_t lsw_ts;
130 uint32_t flags;
131};
132
133struct audio_aio_read_param {
134 unsigned long paddr;
135 uint32_t len;
136 uint32_t uid;
137};
138
139struct audio_port_data {
140 struct audio_buffer *buf;
141 uint32_t max_buf_cnt;
142 uint32_t dsp_buf;
143 uint32_t cpu_buf;
144 /* read or write locks */
145 struct mutex lock;
146 spinlock_t dsp_lock;
147};
148
149struct audio_client {
150 int session;
151 /* idx:1 out port, 0: in port*/
152 struct audio_port_data port[2];
153
154 struct apr_svc *apr;
155 struct mutex cmd_lock;
156
157 atomic_t cmd_state;
158 atomic_t time_flag;
Jay Wang0668d1062012-07-11 18:53:21 -0700159 atomic_t nowait_cmd_cnt;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700160 wait_queue_head_t cmd_wait;
161 wait_queue_head_t time_wait;
162
163 app_cb cb;
164 void *priv;
165 uint32_t io_mode;
166 uint64_t time_stamp;
Srikanth Uyyalaa50b51d2012-07-02 16:02:24 +0530167 atomic_t cmd_response;
Jayasena Sangaraboina99bf09c2012-07-17 12:03:08 -0700168 bool perf_mode;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700169};
170
171void q6asm_audio_client_free(struct audio_client *ac);
172
173struct audio_client *q6asm_audio_client_alloc(app_cb cb, void *priv);
174
Ben Romberger61754dc2011-10-31 18:25:41 -0700175struct audio_client *q6asm_get_audio_client(int session_id);
176
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700177int q6asm_audio_client_buf_alloc(unsigned int dir/* 1:Out,0:In */,
178 struct audio_client *ac,
179 unsigned int bufsz,
180 unsigned int bufcnt);
181int q6asm_audio_client_buf_alloc_contiguous(unsigned int dir
182 /* 1:Out,0:In */,
183 struct audio_client *ac,
184 unsigned int bufsz,
185 unsigned int bufcnt);
186
187int q6asm_audio_client_buf_free_contiguous(unsigned int dir,
188 struct audio_client *ac);
189
190int q6asm_open_read(struct audio_client *ac, uint32_t format);
Jayasena Sangaraboina99bf09c2012-07-17 12:03:08 -0700191int q6asm_open_read_v2_1(struct audio_client *ac, uint32_t format);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700192
Subhash Chandra Bose Naripeddy694b7d92012-06-20 20:46:13 -0700193int q6asm_open_read_compressed(struct audio_client *ac,
194 uint32_t frames_per_buffer, uint32_t meta_data_mode);
Subhash Chandra Bose Naripeddy8f846892012-06-12 11:29:18 -0700195
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700196int q6asm_open_write(struct audio_client *ac, uint32_t format);
197
Santosh Mardi23321202012-03-22 04:33:25 +0530198int q6asm_open_write_compressed(struct audio_client *ac, uint32_t format);
199
Aviral Gupta4ad0f502012-10-16 12:40:07 +0530200int q6asm_open_transcode_loopback(struct audio_client *ac, uint32_t channels);
201
202int q6asm_enc_cfg_blk_dts(struct audio_client *ac,
203 uint32_t sample_rate, uint32_t channels);
204
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700205int q6asm_open_read_write(struct audio_client *ac,
206 uint32_t rd_format,
207 uint32_t wr_format);
208
209int q6asm_write(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
210 uint32_t lsw_ts, uint32_t flags);
211int q6asm_write_nolock(struct audio_client *ac, uint32_t len, uint32_t msw_ts,
212 uint32_t lsw_ts, uint32_t flags);
213
214int q6asm_async_write(struct audio_client *ac,
215 struct audio_aio_write_param *param);
216
217int q6asm_async_read(struct audio_client *ac,
218 struct audio_aio_read_param *param);
219
Subhash Chandra Bose Naripeddy694b7d92012-06-20 20:46:13 -0700220int q6asm_async_read_compressed(struct audio_client *ac,
221 struct audio_aio_read_param *param);
222
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700223int q6asm_read(struct audio_client *ac);
224int q6asm_read_nolock(struct audio_client *ac);
225
226int q6asm_memory_map(struct audio_client *ac, uint32_t buf_add,
227 int dir, uint32_t bufsz, uint32_t bufcnt);
228
229int q6asm_memory_unmap(struct audio_client *ac, uint32_t buf_add,
230 int dir);
231
232int q6asm_run(struct audio_client *ac, uint32_t flags,
233 uint32_t msw_ts, uint32_t lsw_ts);
234
235int q6asm_run_nowait(struct audio_client *ac, uint32_t flags,
236 uint32_t msw_ts, uint32_t lsw_ts);
237
238int q6asm_reg_tx_overflow(struct audio_client *ac, uint16_t enable);
239
240int q6asm_cmd(struct audio_client *ac, int cmd);
241
242int q6asm_cmd_nowait(struct audio_client *ac, int cmd);
243
244void *q6asm_is_cpu_buf_avail(int dir, struct audio_client *ac,
245 uint32_t *size, uint32_t *idx);
246
Jay Wang9cf59a02011-08-10 16:58:40 -0700247void *q6asm_is_cpu_buf_avail_nolock(int dir, struct audio_client *ac,
248 uint32_t *size, uint32_t *idx);
249
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700250int q6asm_is_dsp_buf_avail(int dir, struct audio_client *ac);
251
252/* File format specific configurations to be added below */
253
254int q6asm_enc_cfg_blk_aac(struct audio_client *ac,
255 uint32_t frames_per_buf,
256 uint32_t sample_rate, uint32_t channels,
257 uint32_t bit_rate,
258 uint32_t mode, uint32_t format);
259
260int q6asm_enc_cfg_blk_pcm(struct audio_client *ac,
261 uint32_t rate, uint32_t channels);
262
Harmandeep Singheaf59b42012-06-05 21:46:02 -0700263int q6asm_enc_cfg_blk_pcm_native(struct audio_client *ac,
264 uint32_t rate, uint32_t channels);
265
Mingming Yin647e9ea2012-03-17 19:56:10 -0700266int q6asm_enc_cfg_blk_multi_ch_pcm(struct audio_client *ac,
267 uint32_t rate, uint32_t channels);
268
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700269int q6asm_enable_sbrps(struct audio_client *ac,
270 uint32_t sbr_ps);
271
Swaminathan Sathappan70765cd2011-07-19 18:42:47 -0700272int q6asm_cfg_dual_mono_aac(struct audio_client *ac,
273 uint16_t sce_left, uint16_t sce_right);
274
Swaminathan Sathappan6f530882012-05-01 16:42:22 -0700275int q6asm_set_encdec_chan_map(struct audio_client *ac,
276 uint32_t num_channels);
277
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700278int q6asm_enc_cfg_blk_qcelp(struct audio_client *ac, uint32_t frames_per_buf,
279 uint16_t min_rate, uint16_t max_rate,
280 uint16_t reduced_rate_level, uint16_t rate_modulation_cmd);
281
282int q6asm_enc_cfg_blk_evrc(struct audio_client *ac, uint32_t frames_per_buf,
283 uint16_t min_rate, uint16_t max_rate,
284 uint16_t rate_modulation_cmd);
285
286int q6asm_enc_cfg_blk_amrnb(struct audio_client *ac, uint32_t frames_per_buf,
287 uint16_t band_mode, uint16_t dtx_enable);
288
Alex Wong2caeecc2011-10-28 10:52:15 +0530289int q6asm_enc_cfg_blk_amrwb(struct audio_client *ac, uint32_t frames_per_buf,
290 uint16_t band_mode, uint16_t dtx_enable);
291
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700292int q6asm_media_format_block_pcm(struct audio_client *ac,
293 uint32_t rate, uint32_t channels);
294
Kiran Kandi5e809b02012-01-31 00:24:33 -0800295int q6asm_media_format_block_multi_ch_pcm(struct audio_client *ac,
Subhash Chandra Bose Naripeddyc4f0c162012-09-05 20:48:57 -0700296 uint32_t rate, uint32_t channels,
297 char *channel_map);
Kiran Kandi5e809b02012-01-31 00:24:33 -0800298
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700299int q6asm_media_format_block_aac(struct audio_client *ac,
300 struct asm_aac_cfg *cfg);
301
Ajit Kharebf475832012-08-07 13:19:44 -0700302int q6asm_media_format_block_amrwbplus(struct audio_client *ac,
303 struct asm_amrwbplus_cfg *cfg);
304
Bharath Ramachandramurthy4f71d502011-10-23 19:45:22 -0700305int q6asm_media_format_block_multi_aac(struct audio_client *ac,
306 struct asm_aac_cfg *cfg);
307
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700308int q6asm_media_format_block_wma(struct audio_client *ac,
309 void *cfg);
310
311int q6asm_media_format_block_wmapro(struct audio_client *ac,
312 void *cfg);
313
314/* PP specific */
315int q6asm_equalizer(struct audio_client *ac, void *eq);
316
317/* Send Volume Command */
318int q6asm_set_volume(struct audio_client *ac, int volume);
319
320/* Set SoftPause Params */
321int q6asm_set_softpause(struct audio_client *ac,
322 struct asm_softpause_params *param);
323
Swaminathan Sathappanb0021cd2011-08-31 15:20:12 -0700324/* Set Softvolume Params */
325int q6asm_set_softvolume(struct audio_client *ac,
326 struct asm_softvolume_params *param);
327
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700328/* Send left-right channel gain */
329int q6asm_set_lrgain(struct audio_client *ac, int left_gain, int right_gain);
330
331/* Enable Mute/unmute flag */
332int q6asm_set_mute(struct audio_client *ac, int muteflag);
333
334uint64_t q6asm_get_session_time(struct audio_client *ac);
335
336/* Client can set the IO mode to either AIO/SIO mode */
337int q6asm_set_io_mode(struct audio_client *ac, uint32_t mode);
338
Ben Romberger45b351c2011-07-20 22:37:27 -0700339#ifdef CONFIG_RTAC
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700340/* Get Service ID for APR communication */
341int q6asm_get_apr_service_id(int session_id);
342#endif
343
Alex Wong2caeecc2011-10-28 10:52:15 +0530344/* Common format block without any payload
345*/
346int q6asm_media_format_block(struct audio_client *ac, uint32_t format);
347
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700348#endif /* __Q6_ASM_H__ */