Manish Dewangan | fa8a6b6 | 2012-07-09 16:23:27 +0530 | [diff] [blame] | 1 | /*arch/arm/mach-msm/qdsp5audpp.h |
| 2 | * |
| 3 | * Copyright (C) 2008 Google, Inc. |
Duy Truong | 790f06d | 2013-02-13 16:38:12 -0800 | [diff] [blame] | 4 | * Copyright (c) 2012, The Linux Foundation. All rights reserved. |
Manish Dewangan | fa8a6b6 | 2012-07-09 16:23:27 +0530 | [diff] [blame] | 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 | |
| 17 | #ifndef _MACH_QDSP5_AUDPP_H |
| 18 | #define _MACH_QDSP5_AUDPP_H |
| 19 | |
| 20 | #include <mach/qdsp5/qdsp5audppcmdi.h> |
| 21 | |
| 22 | typedef 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 | |
| 35 | enum 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 | |
| 42 | int audpp_adec_alloc(unsigned dec_attrb, const char **module_name, |
| 43 | unsigned *queueid); |
| 44 | void audpp_adec_free(int decid); |
| 45 | |
| 46 | struct audpp_event_callback { |
| 47 | audpp_event_func fn; |
| 48 | void *private; |
| 49 | }; |
| 50 | |
| 51 | int audpp_register_event_callback(struct audpp_event_callback *eh); |
| 52 | int audpp_unregister_event_callback(struct audpp_event_callback *eh); |
| 53 | int is_audpp_enable(void); |
| 54 | |
| 55 | int audpp_enable(int id, audpp_event_func func, void *private); |
| 56 | void audpp_disable(int id, void *private); |
| 57 | |
| 58 | int audpp_send_queue1(void *cmd, unsigned len); |
| 59 | int audpp_send_queue2(void *cmd, unsigned len); |
| 60 | int audpp_send_queue3(void *cmd, unsigned len); |
| 61 | |
| 62 | int audpp_set_volume_and_pan(unsigned id, unsigned volume, int pan); |
| 63 | int audpp_pause(unsigned id, int pause); |
| 64 | int audpp_flush(unsigned id); |
| 65 | void audpp_avsync(int id, unsigned rate); |
| 66 | unsigned audpp_avsync_sample_count(int id); |
| 67 | unsigned audpp_avsync_byte_count(int id); |
| 68 | int audpp_dsp_set_mbadrc(unsigned id, unsigned enable, |
| 69 | audpp_cmd_cfg_object_params_mbadrc *mbadrc); |
| 70 | int audpp_dsp_set_eq(unsigned id, unsigned enable, |
| 71 | audpp_cmd_cfg_object_params_eqalizer *eq); |
| 72 | int audpp_dsp_set_rx_iir(unsigned id, unsigned enable, |
| 73 | audpp_cmd_cfg_object_params_pcm *iir); |
| 74 | |
| 75 | int audpp_dsp_set_rx_srs_trumedia_g |
| 76 | (struct audpp_cmd_cfg_object_params_srstm_g *srstm); |
| 77 | int audpp_dsp_set_rx_srs_trumedia_w |
| 78 | (struct audpp_cmd_cfg_object_params_srstm_w *srstm); |
| 79 | int audpp_dsp_set_rx_srs_trumedia_c |
| 80 | (struct audpp_cmd_cfg_object_params_srstm_c *srstm); |
| 81 | int audpp_dsp_set_rx_srs_trumedia_h |
| 82 | (struct audpp_cmd_cfg_object_params_srstm_h *srstm); |
| 83 | int audpp_dsp_set_rx_srs_trumedia_p |
| 84 | (struct audpp_cmd_cfg_object_params_srstm_p *srstm); |
| 85 | int audpp_dsp_set_rx_srs_trumedia_l |
| 86 | (struct audpp_cmd_cfg_object_params_srstm_l *srstm); |
| 87 | |
| 88 | int audpp_dsp_set_vol_pan(unsigned id, |
| 89 | audpp_cmd_cfg_object_params_volume *vol_pan); |
| 90 | int audpp_dsp_set_qconcert_plus(unsigned id, unsigned enable, |
| 91 | audpp_cmd_cfg_object_params_qconcert *qconcert_plus); |
| 92 | |
| 93 | #endif |