123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368 |
- /* Copyright (c) 2011-2013, The Linux Foundation. All rights reserved.
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 and
- * only version 2 as published by the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- */
- #ifndef __QDSP6VOICE_H__
- #define __QDSP6VOICE_H__
- #include <mach/qdsp6v2/apr.h>
- #include <linux/msm_ion.h>
- #define MAX_VOC_PKT_SIZE 642
- #define SESSION_NAME_LEN 21
- #define VOC_REC_UPLINK 0x00
- #define VOC_REC_DOWNLINK 0x01
- #define VOC_REC_BOTH 0x02
- /* Needed for VOIP & VOLTE support */
- /* Due to Q6 memory map issue */
- enum {
- VOIP_CAL,
- VOLTE_CAL,
- NUM_VOICE_CAL_BUFFERS
- };
- enum {
- CVP_CAL,
- CVS_CAL,
- NUM_VOICE_CAL_TYPES
- };
- struct voice_header {
- uint32_t id;
- uint32_t data_len;
- };
- struct voice_init {
- struct voice_header hdr;
- void *cb_handle;
- };
- /* Device information payload structure */
- struct device_data {
- uint32_t volume; /* in index */
- uint32_t mute;
- uint32_t sample;
- uint32_t enabled;
- uint32_t dev_id;
- uint32_t port_id;
- };
- struct voice_dev_route_state {
- u16 rx_route_flag;
- u16 tx_route_flag;
- };
- struct voice_rec_route_state {
- u16 ul_flag;
- u16 dl_flag;
- };
- enum {
- VOC_INIT = 0,
- VOC_RUN,
- VOC_CHANGE,
- VOC_RELEASE,
- VOC_STANDBY,
- };
- /* Common */
- #define VSS_ICOMMON_CMD_SET_UI_PROPERTY 0x00011103
- /* Set a UI property */
- #define VSS_ICOMMON_CMD_MAP_MEMORY 0x00011025
- #define VSS_ICOMMON_CMD_UNMAP_MEMORY 0x00011026
- /* General shared memory; byte-accessible, 4 kB-aligned. */
- #define VSS_ICOMMON_MAP_MEMORY_SHMEM8_4K_POOL 3
- struct vss_icommon_cmd_map_memory_t {
- uint32_t phys_addr;
- /* Physical address of a memory region; must be at least
- * 4 kB aligned.
- */
- uint32_t mem_size;
- /* Number of bytes in the region; should be a multiple of 32. */
- uint16_t mem_pool_id;
- /* Type of memory being provided. The memory ID implicitly defines
- * the characteristics of the memory. The characteristics might include
- * alignment type, permissions, etc.
- * Memory pool ID. Possible values:
- * 3 -- VSS_ICOMMON_MEM_TYPE_SHMEM8_4K_POOL.
- */
- } __packed;
- struct vss_icommon_cmd_unmap_memory_t {
- uint32_t phys_addr;
- /* Physical address of a memory region; must be at least
- * 4 kB aligned.
- */
- } __packed;
- struct vss_map_memory_cmd {
- struct apr_hdr hdr;
- struct vss_icommon_cmd_map_memory_t vss_map_mem;
- } __packed;
- struct vss_unmap_memory_cmd {
- struct apr_hdr hdr;
- struct vss_icommon_cmd_unmap_memory_t vss_unmap_mem;
- } __packed;
- /* TO MVM commands */
- #define VSS_IMVM_CMD_CREATE_PASSIVE_CONTROL_SESSION 0x000110FF
- /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_IMVM_CMD_SET_POLICY_DUAL_CONTROL 0x00011327
- /*
- * VSS_IMVM_CMD_SET_POLICY_DUAL_CONTROL
- * Description: This command is required to let MVM know
- * who is in control of session.
- * Payload: Defined by vss_imvm_cmd_set_policy_dual_control_t.
- * Result: Wait for APRV2_IBASIC_RSP_RESULT response.
- */
- #define VSS_IMVM_CMD_CREATE_FULL_CONTROL_SESSION 0x000110FE
- /* Create a new full control MVM session. */
- #define APRV2_IBASIC_CMD_DESTROY_SESSION 0x0001003C
- /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_IMVM_CMD_ATTACH_STREAM 0x0001123C
- /* Attach a stream to the MVM. */
- #define VSS_IMVM_CMD_DETACH_STREAM 0x0001123D
- /* Detach a stream from the MVM. */
- #define VSS_IMVM_CMD_ATTACH_VOCPROC 0x0001123E
- /* Attach a vocproc to the MVM. The MVM will symmetrically connect this vocproc
- * to all the streams currently attached to it.
- */
- #define VSS_IMVM_CMD_DETACH_VOCPROC 0x0001123F
- /* Detach a vocproc from the MVM. The MVM will symmetrically disconnect this
- * vocproc from all the streams to which it is currently attached.
- */
- #define VSS_IMVM_CMD_START_VOICE 0x00011190
- /*
- * Start Voice call command.
- * Wait for APRV2_IBASIC_RSP_RESULT response.
- * No pay load.
- */
- #define VSS_IMVM_CMD_STANDBY_VOICE 0x00011191
- /* No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_IMVM_CMD_STOP_VOICE 0x00011192
- /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_ISTREAM_CMD_ATTACH_VOCPROC 0x000110F8
- /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_ISTREAM_CMD_DETACH_VOCPROC 0x000110F9
- /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_ISTREAM_CMD_SET_TTY_MODE 0x00011196
- /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_ICOMMON_CMD_SET_NETWORK 0x0001119C
- /* Set the network type. */
- #define VSS_ICOMMON_CMD_SET_VOICE_TIMING 0x000111E0
- /* Set the voice timing parameters. */
- #define VSS_IWIDEVOICE_CMD_SET_WIDEVOICE 0x00011243
- /* Enable/disable WideVoice */
- enum msm_audio_voc_rate {
- VOC_0_RATE, /* Blank frame */
- VOC_8_RATE, /* 1/8 rate */
- VOC_4_RATE, /* 1/4 rate */
- VOC_2_RATE, /* 1/2 rate */
- VOC_1_RATE /* Full rate */
- };
- struct vss_istream_cmd_set_tty_mode_t {
- uint32_t mode;
- /**<
- * TTY mode.
- *
- * 0 : TTY disabled
- * 1 : HCO
- * 2 : VCO
- * 3 : FULL
- */
- } __packed;
- struct vss_istream_cmd_attach_vocproc_t {
- uint16_t handle;
- /**< Handle of vocproc being attached. */
- } __packed;
- struct vss_istream_cmd_detach_vocproc_t {
- uint16_t handle;
- /**< Handle of vocproc being detached. */
- } __packed;
- struct vss_imvm_cmd_attach_stream_t {
- uint16_t handle;
- /* The stream handle to attach. */
- } __packed;
- struct vss_imvm_cmd_detach_stream_t {
- uint16_t handle;
- /* The stream handle to detach. */
- } __packed;
- struct vss_icommon_cmd_set_network_t {
- uint32_t network_id;
- /* Network ID. (Refer to VSS_NETWORK_ID_XXX). */
- } __packed;
- struct vss_icommon_cmd_set_voice_timing_t {
- uint16_t mode;
- /*
- * The vocoder frame synchronization mode.
- *
- * 0 : No frame sync.
- * 1 : Hard VFR (20ms Vocoder Frame Reference interrupt).
- */
- uint16_t enc_offset;
- /*
- * The offset in microseconds from the VFR to deliver a Tx vocoder
- * packet. The offset should be less than 20000us.
- */
- uint16_t dec_req_offset;
- /*
- * The offset in microseconds from the VFR to request for an Rx vocoder
- * packet. The offset should be less than 20000us.
- */
- uint16_t dec_offset;
- /*
- * The offset in microseconds from the VFR to indicate the deadline to
- * receive an Rx vocoder packet. The offset should be less than 20000us.
- * Rx vocoder packets received after this deadline are not guaranteed to
- * be processed.
- */
- } __packed;
- struct vss_imvm_cmd_create_control_session_t {
- char name[SESSION_NAME_LEN];
- /*
- * A variable-sized stream name.
- *
- * The stream name size is the payload size minus the size of the other
- * fields.
- */
- } __packed;
- struct vss_imvm_cmd_set_policy_dual_control_t {
- bool enable_flag;
- /* Set to TRUE to enable modem state machine control */
- } __packed;
- struct vss_iwidevoice_cmd_set_widevoice_t {
- uint32_t enable;
- /* WideVoice enable/disable; possible values:
- * - 0 -- WideVoice disabled
- * - 1 -- WideVoice enabled
- */
- } __packed;
- struct mvm_attach_vocproc_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_attach_vocproc_t mvm_attach_cvp_handle;
- } __packed;
- struct mvm_detach_vocproc_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_detach_vocproc_t mvm_detach_cvp_handle;
- } __packed;
- struct mvm_create_ctl_session_cmd {
- struct apr_hdr hdr;
- struct vss_imvm_cmd_create_control_session_t mvm_session;
- } __packed;
- struct mvm_modem_dual_control_session_cmd {
- struct apr_hdr hdr;
- struct vss_imvm_cmd_set_policy_dual_control_t voice_ctl;
- } __packed;
- struct mvm_set_tty_mode_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_set_tty_mode_t tty_mode;
- } __packed;
- struct mvm_attach_stream_cmd {
- struct apr_hdr hdr;
- struct vss_imvm_cmd_attach_stream_t attach_stream;
- } __packed;
- struct mvm_detach_stream_cmd {
- struct apr_hdr hdr;
- struct vss_imvm_cmd_detach_stream_t detach_stream;
- } __packed;
- struct mvm_set_network_cmd {
- struct apr_hdr hdr;
- struct vss_icommon_cmd_set_network_t network;
- } __packed;
- struct mvm_set_voice_timing_cmd {
- struct apr_hdr hdr;
- struct vss_icommon_cmd_set_voice_timing_t timing;
- } __packed;
- struct mvm_set_widevoice_enable_cmd {
- struct apr_hdr hdr;
- struct vss_iwidevoice_cmd_set_widevoice_t vss_set_wv;
- } __packed;
- /* TO CVS commands */
- #define VSS_ISTREAM_CMD_CREATE_PASSIVE_CONTROL_SESSION 0x00011140
- /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_ISTREAM_CMD_CREATE_FULL_CONTROL_SESSION 0x000110F7
- /* Create a new full control stream session. */
- #define APRV2_IBASIC_CMD_DESTROY_SESSION 0x0001003C
- #define VSS_ISTREAM_CMD_SET_MUTE 0x00011022
- #define VSS_ISTREAM_CMD_REGISTER_CALIBRATION_DATA 0x00011279
- #define VSS_ISTREAM_CMD_DEREGISTER_CALIBRATION_DATA 0x0001127A
- #define VSS_ISTREAM_CMD_SET_MEDIA_TYPE 0x00011186
- /* Set media type on the stream. */
- #define VSS_ISTREAM_EVT_SEND_ENC_BUFFER 0x00011015
- /* Event sent by the stream to its client to provide an encoded packet. */
- #define VSS_ISTREAM_EVT_REQUEST_DEC_BUFFER 0x00011017
- /* Event sent by the stream to its client requesting for a decoder packet.
- * The client should respond with a VSS_ISTREAM_EVT_SEND_DEC_BUFFER event.
- */
- #define VSS_ISTREAM_EVT_SEND_DEC_BUFFER 0x00011016
- /* Event sent by the client to the stream in response to a
- * VSS_ISTREAM_EVT_REQUEST_DEC_BUFFER event, providing a decoder packet.
- */
- #define VSS_ISTREAM_CMD_VOC_AMR_SET_ENC_RATE 0x0001113E
- /* Set AMR encoder rate. */
- #define VSS_ISTREAM_CMD_VOC_AMRWB_SET_ENC_RATE 0x0001113F
- /* Set AMR-WB encoder rate. */
- #define VSS_ISTREAM_CMD_CDMA_SET_ENC_MINMAX_RATE 0x00011019
- /* Set encoder minimum and maximum rate. */
- #define VSS_ISTREAM_CMD_SET_ENC_DTX_MODE 0x0001101D
- /* Set encoder DTX mode. */
- #define MODULE_ID_VOICE_MODULE_FENS 0x00010EEB
- #define MODULE_ID_VOICE_MODULE_ST 0x00010EE3
- #define VOICE_PARAM_MOD_ENABLE 0x00010E00
- #define MOD_ENABLE_PARAM_LEN 4
- #define VSS_ISTREAM_CMD_START_PLAYBACK 0x00011238
- /* Start in-call music delivery on the Tx voice path. */
- #define VSS_ISTREAM_CMD_STOP_PLAYBACK 0x00011239
- /* Stop the in-call music delivery on the Tx voice path. */
- #define VSS_ISTREAM_CMD_START_RECORD 0x00011236
- /* Start in-call conversation recording. */
- #define VSS_ISTREAM_CMD_STOP_RECORD 0x00011237
- /* Stop in-call conversation recording. */
- #define VSS_TAP_POINT_NONE 0x00010F78
- /* Indicates no tapping for specified path. */
- #define VSS_TAP_POINT_STREAM_END 0x00010F79
- /* Indicates that specified path should be tapped at the end of the stream. */
- struct vss_istream_cmd_start_record_t {
- uint32_t rx_tap_point;
- /* Tap point to use on the Rx path. Supported values are:
- * VSS_TAP_POINT_NONE : Do not record Rx path.
- * VSS_TAP_POINT_STREAM_END : Rx tap point is at the end of the stream.
- */
- uint32_t tx_tap_point;
- /* Tap point to use on the Tx path. Supported values are:
- * VSS_TAP_POINT_NONE : Do not record tx path.
- * VSS_TAP_POINT_STREAM_END : Tx tap point is at the end of the stream.
- */
- } __packed;
- struct vss_istream_cmd_create_passive_control_session_t {
- char name[SESSION_NAME_LEN];
- /**<
- * A variable-sized stream name.
- *
- * The stream name size is the payload size minus the size of the other
- * fields.
- */
- } __packed;
- struct vss_istream_cmd_set_mute_t {
- uint16_t direction;
- /**<
- * 0 : TX only
- * 1 : RX only
- * 2 : TX and Rx
- */
- uint16_t mute_flag;
- /**<
- * Mute, un-mute.
- *
- * 0 : Silence disable
- * 1 : Silence enable
- * 2 : CNG enable. Applicable to TX only. If set on RX behavior
- * will be the same as 1
- */
- } __packed;
- struct vss_istream_cmd_create_full_control_session_t {
- uint16_t direction;
- /*
- * Stream direction.
- *
- * 0 : TX only
- * 1 : RX only
- * 2 : TX and RX
- * 3 : TX and RX loopback
- */
- uint32_t enc_media_type;
- /* Tx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
- uint32_t dec_media_type;
- /* Rx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
- uint32_t network_id;
- /* Network ID. (Refer to VSS_NETWORK_ID_XXX). */
- char name[SESSION_NAME_LEN];
- /*
- * A variable-sized stream name.
- *
- * The stream name size is the payload size minus the size of the other
- * fields.
- */
- } __packed;
- struct vss_istream_cmd_set_media_type_t {
- uint32_t rx_media_id;
- /* Set the Rx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
- uint32_t tx_media_id;
- /* Set the Tx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
- } __packed;
- struct vss_istream_evt_send_enc_buffer_t {
- uint32_t media_id;
- /* Media ID of the packet. */
- uint8_t packet_data[MAX_VOC_PKT_SIZE];
- /* Packet data buffer. */
- } __packed;
- struct vss_istream_evt_send_dec_buffer_t {
- uint32_t media_id;
- /* Media ID of the packet. */
- uint8_t packet_data[MAX_VOC_PKT_SIZE];
- /* Packet data. */
- } __packed;
- struct vss_istream_cmd_voc_amr_set_enc_rate_t {
- uint32_t mode;
- /* Set the AMR encoder rate.
- *
- * 0x00000000 : 4.75 kbps
- * 0x00000001 : 5.15 kbps
- * 0x00000002 : 5.90 kbps
- * 0x00000003 : 6.70 kbps
- * 0x00000004 : 7.40 kbps
- * 0x00000005 : 7.95 kbps
- * 0x00000006 : 10.2 kbps
- * 0x00000007 : 12.2 kbps
- */
- } __packed;
- struct vss_istream_cmd_voc_amrwb_set_enc_rate_t {
- uint32_t mode;
- /* Set the AMR-WB encoder rate.
- *
- * 0x00000000 : 6.60 kbps
- * 0x00000001 : 8.85 kbps
- * 0x00000002 : 12.65 kbps
- * 0x00000003 : 14.25 kbps
- * 0x00000004 : 15.85 kbps
- * 0x00000005 : 18.25 kbps
- * 0x00000006 : 19.85 kbps
- * 0x00000007 : 23.05 kbps
- * 0x00000008 : 23.85 kbps
- */
- } __packed;
- struct vss_istream_cmd_cdma_set_enc_minmax_rate_t {
- uint16_t min_rate;
- /* Set the lower bound encoder rate.
- *
- * 0x0000 : Blank frame
- * 0x0001 : Eighth rate
- * 0x0002 : Quarter rate
- * 0x0003 : Half rate
- * 0x0004 : Full rate
- */
- uint16_t max_rate;
- /* Set the upper bound encoder rate.
- *
- * 0x0000 : Blank frame
- * 0x0001 : Eighth rate
- * 0x0002 : Quarter rate
- * 0x0003 : Half rate
- * 0x0004 : Full rate
- */
- } __packed;
- struct vss_istream_cmd_set_enc_dtx_mode_t {
- uint32_t enable;
- /* Toggle DTX on or off.
- *
- * 0 : Disables DTX
- * 1 : Enables DTX
- */
- } __packed;
- struct vss_istream_cmd_register_calibration_data_t {
- uint32_t phys_addr;
- /* Phsical address to be registered with stream. The calibration data
- * is stored at this address.
- */
- uint32_t mem_size;
- /* Size of the calibration data in bytes. */
- };
- struct vss_icommon_cmd_set_ui_property_enable_t {
- uint32_t module_id;
- /* Unique ID of the module. */
- uint32_t param_id;
- /* Unique ID of the parameter. */
- uint16_t param_size;
- /* Size of the parameter in bytes: MOD_ENABLE_PARAM_LEN */
- uint16_t reserved;
- /* Reserved; set to 0. */
- uint16_t enable;
- uint16_t reserved_field;
- /* Reserved, set to 0. */
- };
- /*
- * Event sent by the stream to the client that enables Rx DTMF
- * detection whenever DTMF is detected in the Rx path.
- *
- * The DTMF detection feature can only be used to detect DTMF
- * frequencies as listed in the vss_istream_evt_rx_dtmf_detected_t
- * structure.
- */
- #define VSS_ISTREAM_EVT_RX_DTMF_DETECTED 0x0001101A
- struct vss_istream_cmd_set_rx_dtmf_detection {
- /*
- * Enables/disables Rx DTMF detection
- *
- * Possible values are
- * 0 - disable
- * 1 - enable
- *
- */
- uint32_t enable;
- };
- #define VSS_ISTREAM_CMD_SET_RX_DTMF_DETECTION 0x00011027
- struct vss_istream_evt_rx_dtmf_detected {
- uint16_t low_freq;
- /*
- * Detected low frequency. Possible values:
- * 697 Hz
- * 770 Hz
- * 852 Hz
- * 941 Hz
- */
- uint16_t high_freq;
- /*
- * Detected high frequency. Possible values:
- * 1209 Hz
- * 1336 Hz
- * 1477 Hz
- * 1633 Hz
- */
- };
- struct cvs_set_rx_dtmf_detection_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_set_rx_dtmf_detection cvs_dtmf_det;
- } __packed;
- /* VOCODER PCM APIS */
- #define VSS_IVPCM_CMD_STOP 0x0001100B
- #define VSS_IVPCM_CMD_START 0x00011009
- /* Default tap point location on the TX path. */
- #define VSS_IVPCM_TAP_POINT_TX_DEFAULT 0x00011289
- /* Default tap point location on the RX path. */
- #define VSS_IVPCM_TAP_POINT_RX_DEFAULT 0x0001128A
- /*
- * Vocoder PCM sampling rate IDs.
- * Sampling rate matches the operating sampling rate
- * of the post-proc chain on the VDSP at the location
- * of the tap point.
- */
- #define VSS_IVPCM_SAMPLING_RATE_AUTO 0
- #define VSS_IVPCM_SAMPLING_RATE_8K 8000
- #define VSS_IVPCM_SAMPLING_RATE_16K 16000
- /* Output tap point */
- #define VSS_IVPCM_TAP_POINT_DIR_OUT 0
- /* Input tap point */
- #define VSS_IVPCM_TAP_POINT_DIR_IN 1
- /* Output-input tap point */
- #define VSS_IVPCM_TAP_POINT_DIR_OUT_IN 2
- /* RX & TX*/
- #define MAX_TAP_POINTS_SUPPORTED 2
- struct vss_ivpcm_tap_point {
- uint32_t tap_point;
- /*
- * Tap point location GUID. Supported values:
- * VSS_IVPCM_TAP_POINT_TX_DEFAULT
- * VSS_IVPCM_TAP_POINT_RX_DEFAULT
- */
- uint16_t direction;
- /*
- * Data flow direction of the tap point. Supported values:
- * VSS_IVPCM_TAP_POINT_DIR_OUT -- output
- * VSS_IVPCM_TAP_POINT_DIR_IN -- input
- * VSS_IVPCM_TAP_POINT_DIR_OUT_IN -- Output-input
- */
- uint16_t sampling_rate;
- /*
- * Sampling rate of the tap point. If the tap point is output-input,
- * then output sampling rate and the input sampling rate are the same.
- * Supported values:
- * VSS_IVPCM_SAMPLING_RATE_AUTO
- * VSS_IVPCM_SAMPLING_RATE_8K
- * VSS_IVPCM_SAMPLING_RATE_16K
- */
- uint16_t duration;
- /*
- * Duration of buffer in milliseconds.
- * Unsupported, set to 0.
- */
- } __packed;
- struct vss_ivpcm_start_cmd {
- uint32_t num_tap_points;
- struct vss_ivpcm_tap_point tap_points[MAX_TAP_POINTS_SUPPORTED];
- } __packed;
- #define VSS_IVPCM_EVT_NOTIFY 0x0001128B
- /* Notify event masks. */
- /* output buffer filled. */
- #define VSS_IVPCM_NOTIFY_MASK_OUTPUT_BUFFER 1
- /* input buffer consumed. */
- #define VSS_IVPCM_NOTIFY_MASK_INPUT_BUFFER 2
- /* event is a timetick. */
- #define VSS_IVPCM_NOTIFY_MASK_TIMETICK 4
- /* error in output buffer operation. */
- #define VSS_IVPCM_NOTIFY_MASK_OUTPUT_ERROR 8
- /* error in input buffer operation. */
- #define VSS_IVPCM_NOTIFY_MASK_INPUT_ERROR 16
- /*
- *Payload structure for the #VSS_IVPCM_EVT_NOTIFY command.
- */
- struct vss_ivpcm_evt_notify {
- uint32_t tap_point;
- /*
- * GUID indicating tap point location for which this notification is
- * being issued.
- */
- uint32_t notify_mask;
- /*
- * Bitmask indicating the notification mode.
- * Bitmask description:
- * bit 0 -- output buffer filled, VSS_IVPCM_NOTIFY_MASK_OUTPUT_BUFFER
- * bit 1 -- input buffer consumed, VSS_IVPCM_NOTIFY_MASK_INPUT_BUFFER
- * bit 2 -- notify event is a timetick, VSS_IVPCM_NOTIFY_MASK_TIMETICK
- * bit 3 -- error in output buffer, VSS_IVPCM_NOTIFY_MASK_OUTPUT_ERROR
- * This bit will be set if there is an error in output buffer
- * operation.This bit will be set along with "output buffer
- * filled" bit to return the output buffer with error
- * indication
- * bit 4 -- error in input buffer operation, use
- * VSS_IVPCM_NOTIFY_MASK_INPUT_ERROR. This bit will be set if
- * there is an error in input buffer operation. This bit will
- * be set along with "input buffer consumed" bit to return the
- * input buffer with error indication.
- */
- uint32_t out_buff_addr;
- /*
- * If bit 0 of the notify_mask is set, this field indicates the
- * physical address of the output buffer. Otherwise ignore.
- */
- uint32_t in_buff_addr;
- /*
- * If bit 1 of the notify_mask is set, this field indicates the
- * physicaladdress of the input buffer. Otherwise ignore.
- */
- uint16_t filled_out_size;
- /*
- * If bit 0 of the notify_mask is set, this field indicates
- * the filled size
- * of the output buffer located at the out_buff_addr. Otherwise ignore.
- */
- uint16_t request_buff_size;
- /* Request size of the input buffer. */
- uint16_t sampling_rate;
- /*
- * Sampling rate of the input/output buffer. Supported values:
- * VSS_IVPCM_SAMPLING_RATE_8K
- * VSS_IVPCM_SAMPLING_RATE_16K
- */
- uint16_t num_out_channels;
- /* Number of output channels contained in the filled output buffer.*/
- } __packed;
- #define VSS_IVPCM_EVT_PUSH_BUFFER 0x0001100A
- /* Push buffer event masks. */
- /* output buffer filled. */
- #define VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER 1
- /* input buffer consumed. */
- #define VSS_IVPCM_PUSH_BUFFER_MASK_INPUT_BUFFER 2
- struct vss_ivpcm_evt_push_buffer {
- uint32_t tap_point;
- /* tap point for which the buffer(s) is(are) provided. */
- uint32_t push_buf_mask;
- /*
- * Bitmask inticating whether an output buffer is being provided or an
- * input buffer or both. Bitmask description:
- * bit 0 -- output buffer, use VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER
- * bit 1 -- input buffer, use VSS_IVPCM_PUSH_BUFFER_MASK_INPUT_BUFFER.
- */
- uint32_t out_buf_addr;
- /*
- * If bit 0 of the push_buf_mask is set, this field indicates the
- * physical address of the output buffer. Otherwise it is ingored.
- */
- uint32_t in_buf_addr;
- /*
- * If bit 1 of the push_buf_mask is set, this field indicates the
- * physical address of the input buffer. Otherwise it is ignored.
- */
- uint16_t out_buf_size;
- /*
- * If bit 0 of the push_buf_mask is set, this field indicates the size
- * of the buffer at out_buf_addr. Otherwise it is ignored.
- * The client should allocate the output buffer to accommodate the
- * maximum expected sampling rate.
- */
- uint16_t in_buf_size;
- /*
- * If bit 1 of the push_buf_mask is set, this field indicates the size
- * of the input buffer at in_buff_addr. Otherwise it is ignored.
- */
- uint16_t sampling_rate;
- /*
- * If bit 1 of the push_buf_mask is set, this field indicates the
- * sampling rate of the input buffer. Otherwise it is ignored.
- * Supported values:
- * VSS_IVPCM_SAMPLING_RATE_8K
- * VSS_IVPCM_SAMPLING_RATE_16K
- */
- uint16_t num_in_channels;
- /*
- * If bit 1 of the push_buf_mask is set, this field indicates the
- * number of channels contained in the input buffer. Otherwise it
- * is ignored.
- * Supported values:1
- */
- } __packed;
- struct cvp_push_buf_cmd {
- struct apr_hdr hdr;
- struct vss_ivpcm_evt_push_buffer vpcm_evt_push_buffer;
- } __packed;
- struct cvp_start_cmd {
- struct apr_hdr hdr;
- struct vss_ivpcm_start_cmd vpcm_start_cmd;
- } __packed;
- struct cvp_stop_cmd {
- struct apr_hdr hdr;
- } __packed;
- struct cvs_create_passive_ctl_session_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_create_passive_control_session_t cvs_session;
- } __packed;
- struct cvs_create_full_ctl_session_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_create_full_control_session_t cvs_session;
- } __packed;
- struct cvs_destroy_session_cmd {
- struct apr_hdr hdr;
- } __packed;
- struct cvs_set_mute_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_set_mute_t cvs_set_mute;
- } __packed;
- struct cvs_set_media_type_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_set_media_type_t media_type;
- } __packed;
- struct cvs_send_dec_buf_cmd {
- struct apr_hdr hdr;
- struct vss_istream_evt_send_dec_buffer_t dec_buf;
- } __packed;
- struct cvs_set_amr_enc_rate_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_voc_amr_set_enc_rate_t amr_rate;
- } __packed;
- struct cvs_set_amrwb_enc_rate_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_voc_amrwb_set_enc_rate_t amrwb_rate;
- } __packed;
- struct cvs_set_cdma_enc_minmax_rate_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_cdma_set_enc_minmax_rate_t cdma_rate;
- } __packed;
- struct cvs_set_enc_dtx_mode_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_set_enc_dtx_mode_t dtx_mode;
- } __packed;
- struct cvs_register_cal_data_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_register_calibration_data_t cvs_cal_data;
- } __packed;
- struct cvs_deregister_cal_data_cmd {
- struct apr_hdr hdr;
- } __packed;
- struct cvs_set_pp_enable_cmd {
- struct apr_hdr hdr;
- struct vss_icommon_cmd_set_ui_property_enable_t vss_set_pp;
- } __packed;
- struct cvs_start_record_cmd {
- struct apr_hdr hdr;
- struct vss_istream_cmd_start_record_t rec_mode;
- } __packed;
- /* TO CVP commands */
- #define VSS_IVOCPROC_CMD_CREATE_FULL_CONTROL_SESSION 0x000100C3
- /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define APRV2_IBASIC_CMD_DESTROY_SESSION 0x0001003C
- #define VSS_IVOCPROC_CMD_SET_DEVICE 0x000100C4
- #define VSS_IVOCPROC_CMD_SET_DEVICE_V2 0x000112C6
- #define VSS_IVOCPROC_CMD_SET_VP3_DATA 0x000110EB
- #define VSS_IVOCPROC_CMD_SET_RX_VOLUME_INDEX 0x000110EE
- #define VSS_IVOCPROC_CMD_ENABLE 0x000100C6
- /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_IVOCPROC_CMD_DISABLE 0x000110E1
- /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
- #define VSS_IVOCPROC_CMD_REGISTER_CALIBRATION_DATA 0x00011275
- #define VSS_IVOCPROC_CMD_DEREGISTER_CALIBRATION_DATA 0x00011276
- #define VSS_IVOCPROC_CMD_REGISTER_VOLUME_CAL_TABLE 0x00011277
- #define VSS_IVOCPROC_CMD_DEREGISTER_VOLUME_CAL_TABLE 0x00011278
- #define VSS_IVOCPROC_TOPOLOGY_ID_NONE 0x00010F70
- #define VSS_IVOCPROC_TOPOLOGY_ID_TX_SM_ECNS 0x00010F71
- #define VSS_IVOCPROC_TOPOLOGY_ID_TX_DM_FLUENCE 0x00010F72
- #define VSS_IVOCPROC_TOPOLOGY_ID_RX_DEFAULT 0x00010F77
- /* Newtwork IDs */
- #define VSS_NETWORK_ID_DEFAULT 0x00010037
- #define VSS_NETWORK_ID_VOIP_NB 0x00011240
- #define VSS_NETWORK_ID_VOIP_WB 0x00011241
- #define VSS_NETWORK_ID_VOIP_WV 0x00011242
- /* Media types */
- #define VSS_MEDIA_ID_EVRC_MODEM 0x00010FC2
- /* 80-VF690-47 CDMA enhanced variable rate vocoder modem format. */
- #define VSS_MEDIA_ID_AMR_NB_MODEM 0x00010FC6
- /* 80-VF690-47 UMTS AMR-NB vocoder modem format. */
- #define VSS_MEDIA_ID_AMR_WB_MODEM 0x00010FC7
- /* 80-VF690-47 UMTS AMR-WB vocoder modem format. */
- #define VSS_MEDIA_ID_PCM_NB 0x00010FCB
- #define VSS_MEDIA_ID_PCM_WB 0x00010FCC
- /* Linear PCM (16-bit, little-endian). */
- #define VSS_MEDIA_ID_G711_ALAW 0x00010FCD
- /* G.711 a-law (contains two 10ms vocoder frames). */
- #define VSS_MEDIA_ID_G711_MULAW 0x00010FCE
- /* G.711 mu-law (contains two 10ms vocoder frames). */
- #define VSS_MEDIA_ID_G729 0x00010FD0
- /* G.729AB (contains two 10ms vocoder frames. */
- #define VSS_MEDIA_ID_4GV_NB_MODEM 0x00010FC3
- /*CDMA EVRC-B vocoder modem format */
- #define VSS_MEDIA_ID_4GV_WB_MODEM 0x00010FC4
- /*CDMA EVRC-WB vocoder modem format */
- #define VSS_IVOCPROC_CMD_SET_MUTE 0x000110EF
- #define VOICE_CMD_SET_PARAM 0x00011006
- #define VOICE_CMD_GET_PARAM 0x00011007
- #define VOICE_EVT_GET_PARAM_ACK 0x00011008
- /* Default AFE port ID. Applicable to Tx and Rx. */
- #define VSS_IVOCPROC_PORT_ID_NONE 0xFFFF
- struct vss_ivocproc_cmd_create_full_control_session_t {
- uint16_t direction;
- /*
- * stream direction.
- * 0 : TX only
- * 1 : RX only
- * 2 : TX and RX
- */
- uint32_t tx_port_id;
- /*
- * TX device port ID which vocproc will connect to. If not supplying a
- * port ID set to VSS_IVOCPROC_PORT_ID_NONE.
- */
- uint32_t tx_topology_id;
- /*
- * Tx leg topology ID. If not supplying a topology ID set to
- * VSS_IVOCPROC_TOPOLOGY_ID_NONE.
- */
- uint32_t rx_port_id;
- /*
- * RX device port ID which vocproc will connect to. If not supplying a
- * port ID set to VSS_IVOCPROC_PORT_ID_NONE.
- */
- uint32_t rx_topology_id;
- /*
- * Rx leg topology ID. If not supplying a topology ID set to
- * VSS_IVOCPROC_TOPOLOGY_ID_NONE.
- */
- int32_t network_id;
- /*
- * Network ID. (Refer to VSS_NETWORK_ID_XXX). If not supplying a network
- * ID set to VSS_NETWORK_ID_DEFAULT.
- */
- } __packed;
- struct vss_ivocproc_cmd_set_volume_index_t {
- uint16_t vol_index;
- /**<
- * Volume index utilized by the vocproc to index into the volume table
- * provided in VSS_IVOCPROC_CMD_CACHE_VOLUME_CALIBRATION_TABLE and set
- * volume on the VDSP.
- */
- } __packed;
- struct vss_ivocproc_cmd_set_device_t {
- uint32_t tx_port_id;
- /**<
- * TX device port ID which vocproc will connect to.
- * VSS_IVOCPROC_PORT_ID_NONE means vocproc will not connect to any port.
- */
- uint32_t tx_topology_id;
- /**<
- * TX leg topology ID.
- * VSS_IVOCPROC_TOPOLOGY_ID_NONE means vocproc does not contain any
- * pre/post-processing blocks and is pass-through.
- */
- int32_t rx_port_id;
- /**<
- * RX device port ID which vocproc will connect to.
- * VSS_IVOCPROC_PORT_ID_NONE means vocproc will not connect to any port.
- */
- uint32_t rx_topology_id;
- /**<
- * RX leg topology ID.
- * VSS_IVOCPROC_TOPOLOGY_ID_NONE means vocproc does not contain any
- * pre/post-processing blocks and is pass-through.
- */
- } __packed;
- /* Internal EC */
- #define VSS_IVOCPROC_VOCPROC_MODE_EC_INT_MIXING 0x00010F7C
- /* External EC */
- #define VSS_IVOCPROC_VOCPROC_MODE_EC_EXT_MIXING 0x00010F7D
- struct vss_ivocproc_cmd_set_device_v2_t {
- uint16_t tx_port_id;
- /* Tx device port ID to which the vocproc connects. */
- uint32_t tx_topology_id;
- /* Tx path topology ID. */
- uint16_t rx_port_id;
- /* Rx device port ID to which the vocproc connects. */
- uint32_t rx_topology_id;
- /* Rx path topology ID. */
- uint32_t vocproc_mode;
- /* Vocproc mode. The supported values:
- * VSS_IVOCPROC_VOCPROC_MODE_EC_INT_MIXING - 0x00010F7C
- * VSS_IVOCPROC_VOCPROC_MODE_EC_EXT_MIXING - 0x00010F7D
- */
- uint16_t ec_ref_port_id;
- /* Port ID to which the vocproc connects for receiving
- * echo cancellation reference signal.
- */
- } __packed;
- struct vss_ivocproc_cmd_register_calibration_data_t {
- uint32_t phys_addr;
- /* Phsical address to be registered with vocproc. Calibration data
- * is stored at this address.
- */
- uint32_t mem_size;
- /* Size of the calibration data in bytes. */
- } __packed;
- struct vss_ivocproc_cmd_register_volume_cal_table_t {
- uint32_t phys_addr;
- /* Phsical address to be registered with the vocproc. The volume
- * calibration table is stored at this location.
- */
- uint32_t mem_size;
- /* Size of the volume calibration table in bytes. */
- } __packed;
- struct vss_ivocproc_cmd_set_mute_t {
- uint16_t direction;
- /*
- * 0 : TX only.
- * 1 : RX only.
- * 2 : TX and Rx.
- */
- uint16_t mute_flag;
- /*
- * Mute, un-mute.
- *
- * 0 : Disable.
- * 1 : Enable.
- */
- } __packed;
- struct cvp_create_full_ctl_session_cmd {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_create_full_control_session_t cvp_session;
- } __packed;
- struct cvp_command {
- struct apr_hdr hdr;
- } __packed;
- struct cvp_set_device_cmd {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_set_device_t cvp_set_device;
- } __packed;
- struct cvp_set_device_cmd_v2 {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_set_device_v2_t cvp_set_device_v2;
- } __packed;
- struct cvp_set_vp3_data_cmd {
- struct apr_hdr hdr;
- } __packed;
- struct cvp_set_rx_volume_index_cmd {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_set_volume_index_t cvp_set_vol_idx;
- } __packed;
- struct cvp_register_cal_data_cmd {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_register_calibration_data_t cvp_cal_data;
- } __packed;
- struct cvp_deregister_cal_data_cmd {
- struct apr_hdr hdr;
- } __packed;
- struct cvp_register_vol_cal_table_cmd {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_register_volume_cal_table_t cvp_vol_cal_tbl;
- } __packed;
- struct cvp_deregister_vol_cal_table_cmd {
- struct apr_hdr hdr;
- } __packed;
- struct cvp_set_mute_cmd {
- struct apr_hdr hdr;
- struct vss_ivocproc_cmd_set_mute_t cvp_set_mute;
- } __packed;
- /* CB for up-link packets. */
- typedef void (*ul_cb_fn)(uint8_t *voc_pkt,
- uint32_t pkt_len,
- void *private_data);
- /* CB for down-link packets. */
- typedef void (*dl_cb_fn)(uint8_t *voc_pkt,
- uint32_t *pkt_len,
- void *private_data);
- /* CB for DTMF RX Detection */
- typedef void (*dtmf_rx_det_cb_fn)(uint8_t *pkt,
- char *session,
- void *private_data);
- typedef void (*hostpcm_cb_fn)(uint8_t *data,
- char *session,
- void *private_data);
- struct mvs_driver_info {
- uint32_t media_type;
- uint32_t rate;
- uint32_t network_type;
- uint32_t dtx_mode;
- ul_cb_fn ul_cb;
- dl_cb_fn dl_cb;
- void *private_data;
- };
- struct dtmf_driver_info {
- dtmf_rx_det_cb_fn dtmf_rx_ul_cb;
- void *private_data;
- };
- struct hostpcm_driver_info {
- hostpcm_cb_fn hostpcm_evt_cb;
- void *private_data;
- };
- struct incall_rec_info {
- uint32_t rec_enable;
- uint32_t rec_mode;
- uint32_t recording;
- };
- struct incall_music_info {
- uint32_t play_enable;
- uint32_t playing;
- int count;
- int force;
- };
- struct voice_data {
- int voc_state;/*INIT, CHANGE, RELEASE, RUN */
- wait_queue_head_t mvm_wait;
- wait_queue_head_t cvs_wait;
- wait_queue_head_t cvp_wait;
- /* cache the values related to Rx and Tx */
- struct device_data dev_rx;
- struct device_data dev_tx;
- u32 mvm_state;
- u32 cvs_state;
- u32 cvp_state;
- /* Handle to MVM in the Q6 */
- u16 mvm_handle;
- /* Handle to CVS in the Q6 */
- u16 cvs_handle;
- /* Handle to CVP in the Q6 */
- u16 cvp_handle;
- struct mutex lock;
- uint16_t sidetone_gain;
- uint8_t tty_mode;
- /* widevoice enable value */
- uint8_t wv_enable;
- /* slowtalk enable value */
- uint32_t st_enable;
- /* FENC enable value */
- uint32_t fens_enable;
- uint32_t dtmf_rx_detect_en;
- bool disable_topology;
- struct voice_dev_route_state voc_route_state;
- u16 session_id;
- struct incall_rec_info rec_info;
- struct incall_music_info music_info;
- struct voice_rec_route_state rec_route_state;
- };
- struct cal_mem {
- /* Physical Address */
- uint32_t paddr;
- /* Kernel Virtual Address */
- uint32_t kvaddr;
- };
- struct cal_data {
- struct cal_mem cal_data[NUM_VOICE_CAL_TYPES];
- };
- #define MAX_VOC_SESSIONS 4
- #define SESSION_ID_BASE 0xFFF0
- struct common_data {
- /* these default values are for all devices */
- uint32_t default_mute_val;
- uint32_t default_vol_val;
- uint32_t default_sample_val;
- bool ec_ref_ext;
- uint16_t ec_port_id;
- /* APR to MVM in the Q6 */
- void *apr_q6_mvm;
- /* APR to CVS in the Q6 */
- void *apr_q6_cvs;
- /* APR to CVP in the Q6 */
- void *apr_q6_cvp;
- struct ion_client *ion_client;
- struct ion_handle *ion_handle;
- struct cal_data voice_cal[NUM_VOICE_CAL_BUFFERS];
- struct mutex common_lock;
- struct mvs_driver_info mvs_info;
- struct dtmf_driver_info dtmf_info;
- struct hostpcm_driver_info hostpcm_info;
- struct voice_data voice[MAX_VOC_SESSIONS];
- };
- void voc_register_mvs_cb(ul_cb_fn ul_cb,
- dl_cb_fn dl_cb,
- void *private_data);
- void voc_register_dtmf_rx_detection_cb(dtmf_rx_det_cb_fn dtmf_rx_ul_cb,
- void *private_data);
- void voc_register_hpcm_evt_cb(dtmf_rx_det_cb_fn dtmf_rx_ul_cb,
- void *private_data);
- void voc_config_vocoder(uint32_t media_type,
- uint32_t rate,
- uint32_t network_type,
- uint32_t dtx_mode);
- enum {
- DEV_RX = 0,
- DEV_TX,
- };
- enum {
- RX_PATH = 0,
- TX_PATH,
- };
- /* called by alsa driver */
- int voc_set_pp_enable(uint16_t session_id, uint32_t module_id, uint32_t enable);
- int voc_get_pp_enable(uint16_t session_id, uint32_t module_id);
- int voc_set_widevoice_enable(uint16_t session_id, uint32_t wv_enable);
- uint32_t voc_get_widevoice_enable(uint16_t session_id);
- uint8_t voc_get_tty_mode(uint16_t session_id);
- int voc_set_tty_mode(uint16_t session_id, uint8_t tty_mode);
- int voc_start_voice_call(uint16_t session_id);
- int voc_standby_voice_call(uint16_t session_id);
- int voc_resume_voice_call(uint16_t session_id);
- int voc_end_voice_call(uint16_t session_id);
- int voc_set_rxtx_port(uint16_t session_id,
- uint32_t dev_port_id,
- uint32_t dev_type);
- int voc_set_rx_vol_index(uint16_t session_id, uint32_t dir, uint32_t voc_idx);
- int voc_set_tx_mute(uint16_t session_id, uint32_t dir, uint32_t mute);
- int voc_set_rx_device_mute(uint16_t session_id, uint32_t mute);
- int voc_get_rx_device_mute(uint16_t session_id);
- int voc_disable_topology(uint16_t session_id, uint32_t disable);
- int voc_disable_cvp(uint16_t session_id);
- int voc_enable_cvp(uint16_t session_id);
- int voc_set_route_flag(uint16_t session_id, uint8_t path_dir, uint8_t set);
- uint8_t voc_get_route_flag(uint16_t session_id, uint8_t path_dir);
- int voc_enable_dtmf_rx_detection(uint16_t session_id, uint32_t enable);
- void voc_disable_dtmf_det_on_active_sessions(void);
- int voc_send_cvp_map_vocpcm_memory(u16 session_id, uint32_t paddr,
- uint32_t bufsize);
- int voc_send_cvp_unmap_vocpcm_memory(u16 session_id, uint32_t paddr);
- int voc_send_cvp_start_vocpcm(u16 session_id,
- struct vss_ivpcm_tap_point *vpcm_tp, uint32_t no_of_tp);
- int voc_send_cvp_stop_vocpcm(u16 session_id);
- int voc_send_cvp_vocpcm_push_buf_evt(u16 session_id,
- struct vss_ivpcm_evt_push_buffer *push_buff_evt);
- #define MAX_SESSION_NAME_LEN 32
- #define VOICE_SESSION_NAME "Voice session"
- #define VOIP_SESSION_NAME "VoIP session"
- #define VOLTE_SESSION_NAME "VoLTE session"
- #define VOICE2_SESSION_NAME "Voice2 session"
- #define VOC_PATH_PASSIVE 0
- #define VOC_PATH_FULL 1
- #define VOC_PATH_VOLTE_PASSIVE 2
- #define VOC_PATH_VOICE2_PASSIVE 3
- uint16_t voc_get_session_id(char *name);
- int voc_start_playback(uint32_t set);
- int voc_start_record(uint32_t port_id, uint32_t set);
- int voc_set_ext_ec_ref(uint16_t port_id, bool state);
- #endif
|