blob: 5fa36d6b3341fad853e0db95981b35c0d23e80bc [file] [log] [blame]
Manish Dewanganfa8a6b62012-07-09 16:23:27 +05301/*arch/arm/mach-msm/qdsp5audpp.h
2 *
3 * Copyright (C) 2008 Google, Inc.
Duy Truong790f06d2013-02-13 16:38:12 -08004 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Manish Dewanganfa8a6b62012-07-09 16:23:27 +05305 *
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
17#ifndef _MACH_QDSP5_AUDPP_H
18#define _MACH_QDSP5_AUDPP_H
19
20#include <mach/qdsp5/qdsp5audppcmdi.h>
21
22typedef void (*audpp_event_func)(void *private, unsigned id, uint16_t *msg);
23
24/* worst case delay of 1sec for response */
25#define MSM_AUD_DECODER_WAIT_MS 1000
26#define MSM_AUD_MODE_TUNNEL 0x00000100
27#define MSM_AUD_MODE_NONTUNNEL 0x00000200
28#define MSM_AUD_DECODER_MASK 0x0000FFFF
29#define MSM_AUD_OP_MASK 0xFFFF0000
30
31/*Playback mode*/
32#define NON_TUNNEL_MODE_PLAYBACK 1
33#define TUNNEL_MODE_PLAYBACK 0
34
35enum msm_aud_decoder_state {
36 MSM_AUD_DECODER_STATE_NONE = 0,
37 MSM_AUD_DECODER_STATE_FAILURE = 1,
38 MSM_AUD_DECODER_STATE_SUCCESS = 2,
39 MSM_AUD_DECODER_STATE_CLOSE = 3,
40};
41
42int audpp_adec_alloc(unsigned dec_attrb, const char **module_name,
43 unsigned *queueid);
44void audpp_adec_free(int decid);
45
46struct audpp_event_callback {
47 audpp_event_func fn;
48 void *private;
49};
50
51int audpp_register_event_callback(struct audpp_event_callback *eh);
52int audpp_unregister_event_callback(struct audpp_event_callback *eh);
53int is_audpp_enable(void);
54
55int audpp_enable(int id, audpp_event_func func, void *private);
56void audpp_disable(int id, void *private);
57
58int audpp_send_queue1(void *cmd, unsigned len);
59int audpp_send_queue2(void *cmd, unsigned len);
60int audpp_send_queue3(void *cmd, unsigned len);
61
62int audpp_set_volume_and_pan(unsigned id, unsigned volume, int pan);
63int audpp_pause(unsigned id, int pause);
64int audpp_flush(unsigned id);
65void audpp_avsync(int id, unsigned rate);
66unsigned audpp_avsync_sample_count(int id);
67unsigned audpp_avsync_byte_count(int id);
68int audpp_dsp_set_mbadrc(unsigned id, unsigned enable,
69 audpp_cmd_cfg_object_params_mbadrc *mbadrc);
70int audpp_dsp_set_eq(unsigned id, unsigned enable,
71 audpp_cmd_cfg_object_params_eqalizer *eq);
72int audpp_dsp_set_rx_iir(unsigned id, unsigned enable,
73 audpp_cmd_cfg_object_params_pcm *iir);
74
75int audpp_dsp_set_rx_srs_trumedia_g
76 (struct audpp_cmd_cfg_object_params_srstm_g *srstm);
77int audpp_dsp_set_rx_srs_trumedia_w
78 (struct audpp_cmd_cfg_object_params_srstm_w *srstm);
79int audpp_dsp_set_rx_srs_trumedia_c
80 (struct audpp_cmd_cfg_object_params_srstm_c *srstm);
81int audpp_dsp_set_rx_srs_trumedia_h
82 (struct audpp_cmd_cfg_object_params_srstm_h *srstm);
83int audpp_dsp_set_rx_srs_trumedia_p
84 (struct audpp_cmd_cfg_object_params_srstm_p *srstm);
85int audpp_dsp_set_rx_srs_trumedia_l
86 (struct audpp_cmd_cfg_object_params_srstm_l *srstm);
87
88int audpp_dsp_set_vol_pan(unsigned id,
89 audpp_cmd_cfg_object_params_volume *vol_pan);
90int audpp_dsp_set_qconcert_plus(unsigned id, unsigned enable,
91 audpp_cmd_cfg_object_params_qconcert *qconcert_plus);
92
93#endif