q6voice.h 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073
  1. /* Copyright (c) 2012-2017, The Linux Foundation. All rights reserved.
  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 __QDSP6VOICE_H__
  13. #define __QDSP6VOICE_H__
  14. #include <linux/msm_ion.h>
  15. #include <sound/voice_params.h>
  16. #include <dsp/rtac.h>
  17. #include <ipc/apr.h>
  18. #define MAX_VOC_PKT_SIZE 642
  19. #define SESSION_NAME_LEN 20
  20. #define NUM_OF_MEMORY_BLOCKS 1
  21. #define NUM_OF_BUFFERS 2
  22. #define VSS_NUM_CHANNELS_MAX 8
  23. #define VSS_CHANNEL_MAPPING_SIZE (sizeof(uint8_t) * VSS_NUM_CHANNELS_MAX)
  24. /*
  25. * BUFFER BLOCK SIZE based on
  26. * the supported page size
  27. */
  28. #define BUFFER_BLOCK_SIZE 4096
  29. #define MAX_COL_INFO_SIZE 324
  30. #define VOC_REC_UPLINK 0x00
  31. #define VOC_REC_DOWNLINK 0x01
  32. #define VOC_REC_BOTH 0x02
  33. #define VSS_IVERSION_CMD_GET 0x00011378
  34. #define VSS_IVERSION_RSP_GET 0x00011379
  35. #define CVD_VERSION_STRING_MAX_SIZE 31
  36. #define CVD_VERSION_DEFAULT ""
  37. #define CVD_VERSION_0_0 "0.0"
  38. #define CVD_VERSION_2_1 "2.1"
  39. #define CVD_VERSION_2_2 "2.2"
  40. #define CVD_VERSION_2_3 "2.3"
  41. #define CVD_INT_VERSION_DEFAULT 0
  42. #define CVD_INT_VERSION_0_0 1
  43. #define CVD_INT_VERSION_2_1 2
  44. #define CVD_INT_VERSION_2_2 3
  45. #define CVD_INT_VERSION_2_3 4
  46. #define CVD_INT_VERSION_LAST CVD_INT_VERSION_2_3
  47. #define CVD_INT_VERSION_MAX (CVD_INT_VERSION_LAST + 1)
  48. struct cvd_version_table {
  49. char cvd_ver[CVD_VERSION_STRING_MAX_SIZE];
  50. int cvd_ver_int;
  51. };
  52. int voc_get_cvd_version(char *cvd_version);
  53. /* Payload structure for the VSS_IVERSION_RSP_GET command response */
  54. struct vss_iversion_rsp_get_t {
  55. char version[CVD_VERSION_STRING_MAX_SIZE];
  56. /* NULL-terminated version string */
  57. };
  58. enum {
  59. CVP_VOC_RX_TOPOLOGY_CAL = 0,
  60. CVP_VOC_TX_TOPOLOGY_CAL,
  61. CVP_VOCPROC_CAL,
  62. CVP_VOCVOL_CAL,
  63. CVP_VOCDEV_CFG_CAL,
  64. CVP_VOCPROC_COL_CAL,
  65. CVP_VOCVOL_COL_CAL,
  66. CVS_VOCSTRM_CAL,
  67. CVS_VOCSTRM_COL_CAL,
  68. VOICE_RTAC_INFO_CAL,
  69. VOICE_RTAC_APR_CAL,
  70. MAX_VOICE_CAL_TYPES
  71. };
  72. struct voice_header {
  73. uint32_t id;
  74. uint32_t data_len;
  75. };
  76. struct voice_init {
  77. struct voice_header hdr;
  78. void *cb_handle;
  79. };
  80. /* Stream information payload structure */
  81. struct stream_data {
  82. uint32_t stream_mute;
  83. uint32_t stream_mute_ramp_duration_ms;
  84. };
  85. /* Device information payload structure */
  86. struct device_data {
  87. uint32_t dev_mute;
  88. uint32_t sample_rate;
  89. uint16_t bits_per_sample;
  90. uint8_t channel_mapping[VSS_NUM_CHANNELS_MAX];
  91. uint32_t enabled;
  92. uint32_t dev_id;
  93. uint32_t port_id;
  94. uint32_t volume_step_value;
  95. uint32_t volume_ramp_duration_ms;
  96. uint32_t dev_mute_ramp_duration_ms;
  97. uint32_t no_of_channels;
  98. };
  99. /*
  100. * Format information structure to match
  101. * vss_param_endpoint_media_format_info_t
  102. */
  103. struct media_format_info {
  104. uint32_t port_id;
  105. uint16_t num_channels;
  106. uint16_t bits_per_sample;
  107. uint32_t sample_rate;
  108. uint8_t channel_mapping[VSS_NUM_CHANNELS_MAX];
  109. };
  110. enum {
  111. VOC_GENERIC_SET_PARAM_TOKEN = 0,
  112. VOC_RTAC_SET_PARAM_TOKEN,
  113. VOC_SET_MEDIA_FORMAT_PARAM_TOKEN,
  114. VOC_SET_PARAM_TOKEN_MAX
  115. };
  116. struct voice_dev_route_state {
  117. u16 rx_route_flag;
  118. u16 tx_route_flag;
  119. };
  120. struct voice_rec_route_state {
  121. u16 ul_flag;
  122. u16 dl_flag;
  123. };
  124. enum {
  125. VOC_INIT = 0,
  126. VOC_RUN,
  127. VOC_CHANGE,
  128. VOC_RELEASE,
  129. VOC_ERROR,
  130. VOC_STANDBY,
  131. };
  132. struct mem_buffer {
  133. dma_addr_t phys;
  134. void *data;
  135. uint32_t size; /* size of buffer */
  136. };
  137. struct share_mem_buf {
  138. struct ion_handle *handle;
  139. struct ion_client *client;
  140. struct mem_buffer buf[NUM_OF_BUFFERS];
  141. };
  142. struct mem_map_table {
  143. dma_addr_t phys;
  144. void *data;
  145. size_t size; /* size of buffer */
  146. struct ion_handle *handle;
  147. struct ion_client *client;
  148. };
  149. /* Common */
  150. #define VSS_ICOMMON_CMD_SET_UI_PROPERTY 0x00011103
  151. /* Set a UI property */
  152. #define VSS_ICOMMON_CMD_MAP_MEMORY 0x00011025
  153. #define VSS_ICOMMON_CMD_UNMAP_MEMORY 0x00011026
  154. /* General shared memory; byte-accessible, 4 kB-aligned. */
  155. #define VSS_ICOMMON_MAP_MEMORY_SHMEM8_4K_POOL 3
  156. struct vss_icommon_cmd_map_memory_t {
  157. uint32_t phys_addr;
  158. /* Physical address of a memory region; must be at least
  159. * 4 kB aligned.
  160. */
  161. uint32_t mem_size;
  162. /* Number of bytes in the region; should be a multiple of 32. */
  163. uint16_t mem_pool_id;
  164. /* Type of memory being provided. The memory ID implicitly defines
  165. * the characteristics of the memory. The characteristics might include
  166. * alignment type, permissions, etc.
  167. * Memory pool ID. Possible values:
  168. * 3 -- VSS_ICOMMON_MEM_TYPE_SHMEM8_4K_POOL.
  169. */
  170. } __packed;
  171. struct vss_icommon_cmd_unmap_memory_t {
  172. uint32_t phys_addr;
  173. /* Physical address of a memory region; must be at least
  174. * 4 kB aligned.
  175. */
  176. } __packed;
  177. struct vss_map_memory_cmd {
  178. struct apr_hdr hdr;
  179. struct vss_icommon_cmd_map_memory_t vss_map_mem;
  180. } __packed;
  181. struct vss_unmap_memory_cmd {
  182. struct apr_hdr hdr;
  183. struct vss_icommon_cmd_unmap_memory_t vss_unmap_mem;
  184. } __packed;
  185. struct vss_param_endpoint_media_format_info_t {
  186. /* AFE port ID to which this media format corresponds to. */
  187. uint32_t port_id;
  188. /*
  189. * Number of channels of data.
  190. * Supported values: 1 to 8
  191. */
  192. uint16_t num_channels;
  193. /*
  194. * Bits per sample of data.
  195. * Supported values: 16 and 24
  196. */
  197. uint16_t bits_per_sample;
  198. /*
  199. * Sampling rate in Hz.
  200. * Supported values: 8000, 11025, 16000, 22050, 24000, 32000,
  201. * 44100, 48000, 88200, 96000, 176400, and 192000
  202. */
  203. uint32_t sample_rate;
  204. /*
  205. * The channel[i] mapping describes channel i. Each element i
  206. * of the array describes channel i inside the data buffer. An
  207. * unused or unknown channel is set to 0.
  208. */
  209. uint8_t channel_mapping[VSS_NUM_CHANNELS_MAX];
  210. } __packed;
  211. struct vss_param_vocproc_dev_channel_info_t {
  212. uint32_t num_channels;
  213. uint32_t bits_per_sample;
  214. uint8_t channel_mapping[VSS_NUM_CHANNELS_MAX];
  215. } __packed;
  216. struct vss_param_channel_mixer_info_t {
  217. uint32_t index;
  218. uint16_t num_output_channels;
  219. uint16_t num_input_channels;
  220. uint16_t out_channel_map[2];
  221. uint16_t in_channel_map[1];
  222. uint16_t channel_weight_coeff[2][1];
  223. uint16_t reserved;
  224. } __packed;
  225. struct vss_param_mfc_config_info_t {
  226. uint32_t sample_rate;
  227. uint16_t bits_per_sample;
  228. uint16_t num_channels;
  229. uint16_t channel_type[VSS_NUM_CHANNELS_MAX];
  230. } __packed;
  231. struct vss_icommon_param_data_t {
  232. /* Valid ID of the module. */
  233. uint32_t module_id;
  234. /* Valid ID of the parameter. */
  235. uint32_t param_id;
  236. /*
  237. * Data size of the structure relating to the param_id/module_id
  238. * combination in uint8_t bytes.
  239. */
  240. uint16_t param_size;
  241. /* This field must be set to zero. */
  242. uint16_t reserved;
  243. /*
  244. * Parameter data payload when inband. Should have size param_size.
  245. * Bit size of payload must be a multiple of 4.
  246. */
  247. union {
  248. struct vss_param_endpoint_media_format_info_t media_format_info;
  249. };
  250. } __packed;
  251. struct vss_icommon_param_data_channel_info_v2_t {
  252. /* Valid ID of the module. */
  253. uint32_t module_id;
  254. /* Valid ID of the parameter. */
  255. uint32_t param_id;
  256. /*
  257. * Data size of the structure relating to the param_id/module_id
  258. * combination in uint8_t bytes.
  259. */
  260. uint16_t param_size;
  261. /* This field must be set to zero. */
  262. uint16_t reserved;
  263. struct vss_param_vocproc_dev_channel_info_t channel_info;
  264. } __packed;
  265. struct vss_icommon_cmd_set_param_channel_info_v2_t {
  266. /*
  267. * Pointer to the unique identifier for an address (physical/virtual).
  268. *
  269. * If the parameter data payload is within the message payload
  270. * (in-band), set this field to 0. The parameter data begins at the
  271. * specified data payload address.
  272. *
  273. * If the parameter data is out-of-band, this field is the handle to
  274. * the physical address in the shared memory that holds the parameter
  275. * data.
  276. */
  277. uint32_t mem_handle;
  278. /*
  279. * Location of the parameter data payload.
  280. *
  281. * The payload is an array of vss_icommon_param_data_t. If the
  282. * mem_handle is 0, this field is ignored.
  283. */
  284. uint64_t mem_address;
  285. /* Size of the parameter data payload in bytes. */
  286. uint32_t mem_size;
  287. struct vss_icommon_param_data_channel_info_v2_t param_data;
  288. } __packed;
  289. struct vss_icommon_param_data_ch_mixer_v2_t {
  290. /* Valid ID of the module. */
  291. uint32_t module_id;
  292. /* Valid ID of the parameter. */
  293. uint32_t param_id;
  294. /*
  295. * Data size of the structure relating to the param_id/module_id
  296. * combination in uint8_t bytes.
  297. */
  298. uint16_t param_size;
  299. /* This field must be set to zero. */
  300. uint16_t reserved;
  301. struct vss_param_channel_mixer_info_t ch_mixer_info;
  302. } __packed;
  303. struct vss_icommon_cmd_set_param_ch_mixer_v2_t {
  304. /*
  305. * Pointer to the unique identifier for an address (physical/virtual).
  306. *
  307. * If the parameter data payload is within the message payload
  308. * (in-band), set this field to 0. The parameter data begins at the
  309. * specified data payload address.
  310. *
  311. * If the parameter data is out-of-band, this field is the handle to
  312. * the physical address in the shared memory that holds the parameter
  313. * data.
  314. */
  315. uint32_t mem_handle;
  316. /*
  317. * Location of the parameter data payload.
  318. *
  319. * The payload is an array of vss_icommon_param_data_t. If the
  320. * mem_handle is 0, this field is ignored.
  321. */
  322. uint64_t mem_address;
  323. /* Size of the parameter data payload in bytes. */
  324. uint32_t mem_size;
  325. struct vss_icommon_param_data_ch_mixer_v2_t param_data;
  326. } __packed;
  327. struct vss_icommon_param_data_mfc_config_v2_t {
  328. /* Valid ID of the module. */
  329. uint32_t module_id;
  330. /* Valid ID of the parameter. */
  331. uint32_t param_id;
  332. /*
  333. * Data size of the structure relating to the param_id/module_id
  334. * combination in uint8_t bytes.
  335. */
  336. uint16_t param_size;
  337. /* This field must be set to zero. */
  338. uint16_t reserved;
  339. struct vss_param_mfc_config_info_t mfc_config_info;
  340. } __packed;
  341. struct vss_icommon_cmd_set_param_mfc_config_v2_t {
  342. /*
  343. * Pointer to the unique identifier for an address (physical/virtual).
  344. *
  345. * If the parameter data payload is within the message payload
  346. * (in-band), set this field to 0. The parameter data begins at the
  347. * specified data payload address.
  348. *
  349. * If the parameter data is out-of-band, this field is the handle to
  350. * the physical address in the shared memory that holds the parameter
  351. * data.
  352. */
  353. uint32_t mem_handle;
  354. /*
  355. * Location of the parameter data payload.
  356. *
  357. * The payload is an array of vss_icommon_param_data_t. If the
  358. * mem_handle is 0, this field is ignored.
  359. */
  360. uint64_t mem_address;
  361. /* Size of the parameter data payload in bytes. */
  362. uint32_t mem_size;
  363. struct vss_icommon_param_data_mfc_config_v2_t param_data;
  364. } __packed;
  365. /* Payload structure for the VSS_ICOMMON_CMD_SET_PARAM_V2 command. */
  366. struct vss_icommon_cmd_set_param_v2_t {
  367. /*
  368. * Pointer to the unique identifier for an address (physical/virtual).
  369. *
  370. * If the parameter data payload is within the message payload
  371. * (in-band), set this field to 0. The parameter data begins at the
  372. * specified data payload address.
  373. *
  374. * If the parameter data is out-of-band, this field is the handle to
  375. * the physical address in the shared memory that holds the parameter
  376. * data.
  377. */
  378. uint32_t mem_handle;
  379. /*
  380. * Location of the parameter data payload.
  381. *
  382. * The payload is an array of vss_icommon_param_data_t. If the
  383. * mem_handle is 0, this field is ignored.
  384. */
  385. uint64_t mem_address;
  386. /* Size of the parameter data payload in bytes. */
  387. uint32_t mem_size;
  388. /* Parameter data payload when the data is inband. */
  389. struct vss_icommon_param_data_t param_data;
  390. } __packed;
  391. /* TO MVM commands */
  392. #define VSS_IMVM_CMD_CREATE_PASSIVE_CONTROL_SESSION 0x000110FF
  393. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  394. #define VSS_IMVM_CMD_SET_POLICY_DUAL_CONTROL 0x00011327
  395. /*
  396. * VSS_IMVM_CMD_SET_POLICY_DUAL_CONTROL
  397. * Description: This command is required to let MVM know
  398. * who is in control of session.
  399. * Payload: Defined by vss_imvm_cmd_set_policy_dual_control_t.
  400. * Result: Wait for APRV2_IBASIC_RSP_RESULT response.
  401. */
  402. #define VSS_IMVM_CMD_CREATE_FULL_CONTROL_SESSION 0x000110FE
  403. /* Create a new full control MVM session. */
  404. #define APRV2_IBASIC_CMD_DESTROY_SESSION 0x0001003C
  405. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  406. #define VSS_IMVM_CMD_ATTACH_STREAM 0x0001123C
  407. /* Attach a stream to the MVM. */
  408. #define VSS_IMVM_CMD_DETACH_STREAM 0x0001123D
  409. /* Detach a stream from the MVM. */
  410. #define VSS_IMVM_CMD_ATTACH_VOCPROC 0x0001123E
  411. /* Attach a vocproc to the MVM. The MVM will symmetrically connect this vocproc
  412. * to all the streams currently attached to it.
  413. */
  414. #define VSS_IMVM_CMD_DETACH_VOCPROC 0x0001123F
  415. /* Detach a vocproc from the MVM. The MVM will symmetrically disconnect this
  416. * vocproc from all the streams to which it is currently attached.
  417. */
  418. #define VSS_IMVM_CMD_START_VOICE 0x00011190
  419. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  420. #define VSS_IMVM_CMD_STANDBY_VOICE 0x00011191
  421. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  422. #define VSS_IMVM_CMD_STOP_VOICE 0x00011192
  423. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  424. #define VSS_IMVM_CMD_PAUSE_VOICE 0x0001137D
  425. /* No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  426. #define VSS_ISTREAM_CMD_ATTACH_VOCPROC 0x000110F8
  427. /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
  428. #define VSS_ISTREAM_CMD_DETACH_VOCPROC 0x000110F9
  429. /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
  430. #define VSS_ISTREAM_CMD_SET_TTY_MODE 0x00011196
  431. /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
  432. #define VSS_ICOMMON_CMD_SET_NETWORK 0x0001119C
  433. /* Set the network type. */
  434. #define VSS_ICOMMON_CMD_SET_VOICE_TIMING 0x000111E0
  435. /* Set the voice timing parameters. */
  436. #define VSS_IMEMORY_CMD_MAP_PHYSICAL 0x00011334
  437. #define VSS_IMEMORY_RSP_MAP 0x00011336
  438. #define VSS_IMEMORY_CMD_UNMAP 0x00011337
  439. #define VSS_IMVM_CMD_SET_CAL_NETWORK 0x0001137A
  440. #define VSS_IMVM_CMD_SET_CAL_MEDIA_TYPE 0x0001137B
  441. #define VSS_IHDVOICE_CMD_ENABLE 0x000130A2
  442. #define VSS_IHDVOICE_CMD_DISABLE 0x000130A3
  443. enum msm_audio_voc_rate {
  444. VOC_0_RATE, /* Blank frame */
  445. VOC_8_RATE, /* 1/8 rate */
  446. VOC_4_RATE, /* 1/4 rate */
  447. VOC_2_RATE, /* 1/2 rate */
  448. VOC_1_RATE, /* Full rate */
  449. VOC_8_RATE_NC /* Noncritical 1/8 rate */
  450. };
  451. struct vss_istream_cmd_set_tty_mode_t {
  452. uint32_t mode;
  453. /**<
  454. * TTY mode.
  455. *
  456. * 0 : TTY disabled
  457. * 1 : HCO
  458. * 2 : VCO
  459. * 3 : FULL
  460. */
  461. } __packed;
  462. struct vss_istream_cmd_attach_vocproc_t {
  463. uint16_t handle;
  464. /**< Handle of vocproc being attached. */
  465. } __packed;
  466. struct vss_istream_cmd_detach_vocproc_t {
  467. uint16_t handle;
  468. /**< Handle of vocproc being detached. */
  469. } __packed;
  470. struct vss_imvm_cmd_attach_stream_t {
  471. uint16_t handle;
  472. /* The stream handle to attach. */
  473. } __packed;
  474. struct vss_imvm_cmd_detach_stream_t {
  475. uint16_t handle;
  476. /* The stream handle to detach. */
  477. } __packed;
  478. struct vss_icommon_cmd_set_network_t {
  479. uint32_t network_id;
  480. /* Network ID. (Refer to VSS_NETWORK_ID_XXX). */
  481. } __packed;
  482. struct vss_icommon_cmd_set_voice_timing_t {
  483. uint16_t mode;
  484. /*
  485. * The vocoder frame synchronization mode.
  486. *
  487. * 0 : No frame sync.
  488. * 1 : Hard VFR (20ms Vocoder Frame Reference interrupt).
  489. */
  490. uint16_t enc_offset;
  491. /*
  492. * The offset in microseconds from the VFR to deliver a Tx vocoder
  493. * packet. The offset should be less than 20000us.
  494. */
  495. uint16_t dec_req_offset;
  496. /*
  497. * The offset in microseconds from the VFR to request for an Rx vocoder
  498. * packet. The offset should be less than 20000us.
  499. */
  500. uint16_t dec_offset;
  501. /*
  502. * The offset in microseconds from the VFR to indicate the deadline to
  503. * receive an Rx vocoder packet. The offset should be less than 20000us.
  504. * Rx vocoder packets received after this deadline are not guaranteed to
  505. * be processed.
  506. */
  507. } __packed;
  508. struct vss_imvm_cmd_create_control_session_t {
  509. char name[SESSION_NAME_LEN];
  510. /*
  511. * A variable-sized stream name.
  512. *
  513. * The stream name size is the payload size minus the size of the other
  514. * fields.
  515. */
  516. } __packed;
  517. struct vss_imvm_cmd_set_policy_dual_control_t {
  518. bool enable_flag;
  519. /* Set to TRUE to enable modem state machine control */
  520. } __packed;
  521. struct mvm_attach_vocproc_cmd {
  522. struct apr_hdr hdr;
  523. struct vss_istream_cmd_attach_vocproc_t mvm_attach_cvp_handle;
  524. } __packed;
  525. struct mvm_detach_vocproc_cmd {
  526. struct apr_hdr hdr;
  527. struct vss_istream_cmd_detach_vocproc_t mvm_detach_cvp_handle;
  528. } __packed;
  529. struct mvm_create_ctl_session_cmd {
  530. struct apr_hdr hdr;
  531. struct vss_imvm_cmd_create_control_session_t mvm_session;
  532. } __packed;
  533. struct mvm_modem_dual_control_session_cmd {
  534. struct apr_hdr hdr;
  535. struct vss_imvm_cmd_set_policy_dual_control_t voice_ctl;
  536. } __packed;
  537. struct mvm_set_tty_mode_cmd {
  538. struct apr_hdr hdr;
  539. struct vss_istream_cmd_set_tty_mode_t tty_mode;
  540. } __packed;
  541. struct mvm_attach_stream_cmd {
  542. struct apr_hdr hdr;
  543. struct vss_imvm_cmd_attach_stream_t attach_stream;
  544. } __packed;
  545. struct mvm_detach_stream_cmd {
  546. struct apr_hdr hdr;
  547. struct vss_imvm_cmd_detach_stream_t detach_stream;
  548. } __packed;
  549. struct mvm_set_network_cmd {
  550. struct apr_hdr hdr;
  551. struct vss_icommon_cmd_set_network_t network;
  552. } __packed;
  553. struct mvm_set_voice_timing_cmd {
  554. struct apr_hdr hdr;
  555. struct vss_icommon_cmd_set_voice_timing_t timing;
  556. } __packed;
  557. struct mvm_set_hd_enable_cmd {
  558. struct apr_hdr hdr;
  559. } __packed;
  560. struct vss_imemory_table_descriptor_t {
  561. uint32_t mem_address_lsw;
  562. uint32_t mem_address_msw;
  563. /*
  564. * Base physical address of the table. The address must be aligned
  565. * to LCM( cache_line_size, page_align, max_data_width ), where the
  566. * attributes are specified in #VSS_IMEMORY_CMD_MAP_PHYSICAL, and
  567. * LCM = Least Common Multiple. The table at the address must have
  568. * the format specified by #vss_imemory_table_t.
  569. */
  570. uint32_t mem_size;
  571. /* Size in bytes of the table. */
  572. } __packed;
  573. struct vss_imemory_block_t {
  574. uint64_t mem_address;
  575. /*
  576. * Base address of the memory block. The address is virtual for virtual
  577. * memory and physical for physical memory. The address must be aligned
  578. * to LCM( cache_line_size, page_align, max_data_width ), where the
  579. * attributes are specified in VSS_IMEMORY_CMD_MAP_VIRTUAL or
  580. * VSS_IMEMORY_CMD_MAP_PHYSICAL, and LCM = Least Common Multiple.
  581. */
  582. uint32_t mem_size;
  583. /*
  584. * Size in bytes of the memory block. The size must be multiple of
  585. * page_align, where page_align is specified in
  586. * VSS_IMEMORY_CMD_MAP_VIRTUAL or #VSS_IMEMORY_CMD_MAP_PHYSICAL.
  587. */
  588. } __packed;
  589. struct vss_imemory_table_t {
  590. struct vss_imemory_table_descriptor_t next_table_descriptor;
  591. /*
  592. * Specifies the next table. If there is no next table,
  593. * set the size of the table to 0 and the table address is ignored.
  594. */
  595. struct vss_imemory_block_t blocks[NUM_OF_MEMORY_BLOCKS];
  596. /* Specifies one ore more memory blocks. */
  597. } __packed;
  598. struct vss_imemory_cmd_map_physical_t {
  599. struct apr_hdr hdr;
  600. struct vss_imemory_table_descriptor_t table_descriptor;
  601. bool is_cached;
  602. /*
  603. * Indicates cached or uncached memory. Supported values:
  604. * TRUE - Cached.
  605. */
  606. uint16_t cache_line_size;
  607. /* Cache line size in bytes. Supported values: 128 */
  608. uint32_t access_mask;
  609. /*
  610. * CVD's access permission to the memory while it is mapped.
  611. * Supported values:
  612. * bit 0 - If set, the memory is readable.
  613. * bit 1 - If set, the memory is writable.
  614. */
  615. uint32_t page_align;
  616. /* Page frame alignment in bytes. Supported values: 4096 */
  617. uint8_t min_data_width;
  618. /*
  619. * Minimum native data type width in bits that can be accessed.
  620. * Supported values: 8
  621. */
  622. uint8_t max_data_width;
  623. /*
  624. * Maximum native data type width in bits that can be accessed.
  625. * Supported values: 64
  626. */
  627. } __packed;
  628. struct vss_imvm_cmd_set_cal_network_t {
  629. struct apr_hdr hdr;
  630. uint32_t network_id;
  631. } __packed;
  632. struct vss_imvm_cmd_set_cal_media_type_t {
  633. struct apr_hdr hdr;
  634. uint32_t media_id;
  635. } __packed;
  636. struct vss_imemory_cmd_unmap_t {
  637. struct apr_hdr hdr;
  638. uint32_t mem_handle;
  639. } __packed;
  640. /* TO CVS commands */
  641. #define VSS_ISTREAM_CMD_CREATE_PASSIVE_CONTROL_SESSION 0x00011140
  642. /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
  643. #define VSS_ISTREAM_CMD_CREATE_FULL_CONTROL_SESSION 0x000110F7
  644. /* Create a new full control stream session. */
  645. #define APRV2_IBASIC_CMD_DESTROY_SESSION 0x0001003C
  646. /*
  647. * This command changes the mute setting. The new mute setting will
  648. * be applied over the specified ramp duration.
  649. */
  650. #define VSS_IVOLUME_CMD_MUTE_V2 0x0001138B
  651. #define VSS_ISTREAM_CMD_REGISTER_CALIBRATION_DATA_V2 0x00011369
  652. #define VSS_ISTREAM_CMD_DEREGISTER_CALIBRATION_DATA 0x0001127A
  653. #define VSS_ISTREAM_CMD_REGISTER_STATIC_CALIBRATION_DATA 0x0001307D
  654. #define VSS_ISTREAM_CMD_DEREGISTER_STATIC_CALIBRATION_DATA 0x0001307E
  655. #define VSS_ISTREAM_CMD_SET_MEDIA_TYPE 0x00011186
  656. /* Set media type on the stream. */
  657. #define VSS_ISTREAM_EVT_SEND_ENC_BUFFER 0x00011015
  658. /* Event sent by the stream to its client to provide an encoded packet. */
  659. #define VSS_ISTREAM_EVT_REQUEST_DEC_BUFFER 0x00011017
  660. /* Event sent by the stream to its client requesting for a decoder packet.
  661. * The client should respond with a VSS_ISTREAM_EVT_SEND_DEC_BUFFER event.
  662. */
  663. #define VSS_ISTREAM_EVT_OOB_NOTIFY_DEC_BUFFER_REQUEST 0x0001136E
  664. #define VSS_ISTREAM_EVT_SEND_DEC_BUFFER 0x00011016
  665. /* Event sent by the client to the stream in response to a
  666. * VSS_ISTREAM_EVT_REQUEST_DEC_BUFFER event, providing a decoder packet.
  667. */
  668. #define VSS_ISTREAM_CMD_VOC_AMR_SET_ENC_RATE 0x0001113E
  669. /* Set AMR encoder rate. */
  670. #define VSS_ISTREAM_CMD_VOC_AMRWB_SET_ENC_RATE 0x0001113F
  671. /* Set AMR-WB encoder rate. */
  672. #define VSS_ISTREAM_CMD_CDMA_SET_ENC_MINMAX_RATE 0x00011019
  673. /* Set encoder minimum and maximum rate. */
  674. #define VSS_ISTREAM_CMD_SET_ENC_DTX_MODE 0x0001101D
  675. /* Set encoder DTX mode. */
  676. #define MODULE_ID_VOICE_MODULE_ST 0x00010EE3
  677. #define VOICE_PARAM_MOD_ENABLE 0x00010E00
  678. #define MOD_ENABLE_PARAM_LEN 4
  679. #define VSS_IPLAYBACK_CMD_START 0x000112BD
  680. /* Start in-call music delivery on the Tx voice path. */
  681. #define VSS_IPLAYBACK_CMD_STOP 0x00011239
  682. /* Stop the in-call music delivery on the Tx voice path. */
  683. #define VSS_IPLAYBACK_PORT_ID_DEFAULT 0x0000FFFF
  684. /* Default AFE port ID. */
  685. #define VSS_IPLAYBACK_PORT_ID_VOICE 0x00008005
  686. /* AFE port ID for VOICE 1. */
  687. #define VSS_IPLAYBACK_PORT_ID_VOICE2 0x00008002
  688. /* AFE port ID for VOICE 2. */
  689. #define VSS_IRECORD_CMD_START 0x000112BE
  690. /* Start in-call conversation recording. */
  691. #define VSS_IRECORD_CMD_STOP 0x00011237
  692. /* Stop in-call conversation recording. */
  693. #define VSS_IRECORD_PORT_ID_DEFAULT 0x0000FFFF
  694. /* Default AFE port ID. */
  695. #define VSS_IRECORD_TAP_POINT_NONE 0x00010F78
  696. /* Indicates no tapping for specified path. */
  697. #define VSS_IRECORD_TAP_POINT_STREAM_END 0x00010F79
  698. /* Indicates that specified path should be tapped at the end of the stream. */
  699. #define VSS_IRECORD_MODE_TX_RX_STEREO 0x00010F7A
  700. /* Select Tx on left channel and Rx on right channel. */
  701. #define VSS_IRECORD_MODE_TX_RX_MIXING 0x00010F7B
  702. /* Select mixed Tx and Rx paths. */
  703. #define VSS_PARAM_VOCPROC_TX_CHANNEL_INFO 0x0001328E
  704. #define VSS_PARAM_VOCPROC_RX_CHANNEL_INFO 0x0001328F
  705. #define VSS_PARAM_VOCPROC_EC_REF_CHANNEL_INFO 0x00013290
  706. #define VSS_PARAM_TX_PORT_ENDPOINT_MEDIA_INFO 0x00013253
  707. #define VSS_PARAM_RX_PORT_ENDPOINT_MEDIA_INFO 0x00013254
  708. #define VSS_PARAM_EC_REF_PORT_ENDPOINT_MEDIA_INFO 0x00013255
  709. #define VSS_MODULE_CVD_GENERIC 0x0001316E
  710. #define VSS_ISTREAM_EVT_NOT_READY 0x000110FD
  711. #define VSS_ISTREAM_EVT_READY 0x000110FC
  712. #define VSS_ISTREAM_EVT_OOB_NOTIFY_DEC_BUFFER_READY 0x0001136F
  713. /*notify dsp that decoder buffer is ready*/
  714. #define VSS_ISTREAM_EVT_OOB_NOTIFY_ENC_BUFFER_READY 0x0001136C
  715. /*dsp notifying client that encoder buffer is ready*/
  716. #define VSS_ISTREAM_EVT_OOB_NOTIFY_ENC_BUFFER_CONSUMED 0x0001136D
  717. /*notify dsp that encoder buffer is consumed*/
  718. #define VSS_ISTREAM_CMD_SET_OOB_PACKET_EXCHANGE_CONFIG 0x0001136B
  719. #define VSS_ISTREAM_PACKET_EXCHANGE_MODE_INBAND 0
  720. /* In-band packet exchange mode. */
  721. #define VSS_ISTREAM_PACKET_EXCHANGE_MODE_OUT_OF_BAND 1
  722. /* Out-of-band packet exchange mode. */
  723. #define VSS_ISTREAM_CMD_SET_PACKET_EXCHANGE_MODE 0x0001136A
  724. struct vss_iplayback_cmd_start_t {
  725. uint16_t port_id;
  726. /*
  727. * AFE Port ID from which the audio samples are available.
  728. * To use the default AFE pseudo port (0x8005), set this value to
  729. * #VSS_IPLAYBACK_PORT_ID_DEFAULT.
  730. */
  731. } __packed;
  732. struct vss_irecord_cmd_start_t {
  733. uint32_t rx_tap_point;
  734. /* Tap point to use on the Rx path. Supported values are:
  735. * VSS_IRECORD_TAP_POINT_NONE : Do not record Rx path.
  736. * VSS_IRECORD_TAP_POINT_STREAM_END : Rx tap point is at the end of
  737. * the stream.
  738. */
  739. uint32_t tx_tap_point;
  740. /* Tap point to use on the Tx path. Supported values are:
  741. * VSS_IRECORD_TAP_POINT_NONE : Do not record tx path.
  742. * VSS_IRECORD_TAP_POINT_STREAM_END : Tx tap point is at the end of
  743. * the stream.
  744. */
  745. uint16_t port_id;
  746. /* AFE Port ID to which the conversation recording stream needs to be
  747. * sent. Set this to #VSS_IRECORD_PORT_ID_DEFAULT to use default AFE
  748. * pseudo ports (0x8003 for Rx and 0x8004 for Tx).
  749. */
  750. uint32_t mode;
  751. /* Recording Mode. The mode parameter value is ignored if the port_id
  752. * is set to #VSS_IRECORD_PORT_ID_DEFAULT.
  753. * The supported values:
  754. * #VSS_IRECORD_MODE_TX_RX_STEREO
  755. * #VSS_IRECORD_MODE_TX_RX_MIXING
  756. */
  757. } __packed;
  758. struct vss_istream_cmd_create_passive_control_session_t {
  759. char name[SESSION_NAME_LEN];
  760. /**<
  761. * A variable-sized stream name.
  762. *
  763. * The stream name size is the payload size minus the size of the other
  764. * fields.
  765. */
  766. } __packed;
  767. #define VSS_IVOLUME_DIRECTION_TX 0
  768. #define VSS_IVOLUME_DIRECTION_RX 1
  769. #define VSS_IVOLUME_MUTE_OFF 0
  770. #define VSS_IVOLUME_MUTE_ON 1
  771. #define DEFAULT_MUTE_RAMP_DURATION 500
  772. #define DEFAULT_VOLUME_RAMP_DURATION 20
  773. #define MAX_RAMP_DURATION 5000
  774. struct vss_ivolume_cmd_mute_v2_t {
  775. uint16_t direction;
  776. /*
  777. * The direction field sets the direction to apply the mute command.
  778. * The Supported values:
  779. * VSS_IVOLUME_DIRECTION_TX
  780. * VSS_IVOLUME_DIRECTION_RX
  781. */
  782. uint16_t mute_flag;
  783. /*
  784. * Turn mute on or off. The Supported values:
  785. * VSS_IVOLUME_MUTE_OFF
  786. * VSS_IVOLUME_MUTE_ON
  787. */
  788. uint16_t ramp_duration_ms;
  789. /*
  790. * Mute change ramp duration in milliseconds.
  791. * The Supported values: 0 to 5000.
  792. */
  793. } __packed;
  794. struct vss_istream_cmd_create_full_control_session_t {
  795. uint16_t direction;
  796. /*
  797. * Stream direction.
  798. *
  799. * 0 : TX only
  800. * 1 : RX only
  801. * 2 : TX and RX
  802. * 3 : TX and RX loopback
  803. */
  804. uint32_t enc_media_type;
  805. /* Tx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
  806. uint32_t dec_media_type;
  807. /* Rx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
  808. uint32_t network_id;
  809. /* Network ID. (Refer to VSS_NETWORK_ID_XXX). */
  810. char name[SESSION_NAME_LEN];
  811. /*
  812. * A variable-sized stream name.
  813. *
  814. * The stream name size is the payload size minus the size of the other
  815. * fields.
  816. */
  817. } __packed;
  818. struct vss_istream_cmd_set_media_type_t {
  819. uint32_t rx_media_id;
  820. /* Set the Rx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
  821. uint32_t tx_media_id;
  822. /* Set the Tx vocoder type. (Refer to VSS_MEDIA_ID_XXX). */
  823. } __packed;
  824. struct vss_istream_evt_send_enc_buffer_t {
  825. uint32_t media_id;
  826. /* Media ID of the packet. */
  827. uint8_t packet_data[MAX_VOC_PKT_SIZE];
  828. /* Packet data buffer. */
  829. } __packed;
  830. struct vss_istream_evt_send_dec_buffer_t {
  831. uint32_t media_id;
  832. /* Media ID of the packet. */
  833. uint8_t packet_data[MAX_VOC_PKT_SIZE];
  834. /* Packet data. */
  835. } __packed;
  836. struct vss_istream_cmd_voc_amr_set_enc_rate_t {
  837. uint32_t mode;
  838. /* Set the AMR encoder rate.
  839. *
  840. * 0x00000000 : 4.75 kbps
  841. * 0x00000001 : 5.15 kbps
  842. * 0x00000002 : 5.90 kbps
  843. * 0x00000003 : 6.70 kbps
  844. * 0x00000004 : 7.40 kbps
  845. * 0x00000005 : 7.95 kbps
  846. * 0x00000006 : 10.2 kbps
  847. * 0x00000007 : 12.2 kbps
  848. */
  849. } __packed;
  850. struct vss_istream_cmd_voc_amrwb_set_enc_rate_t {
  851. uint32_t mode;
  852. /* Set the AMR-WB encoder rate.
  853. *
  854. * 0x00000000 : 6.60 kbps
  855. * 0x00000001 : 8.85 kbps
  856. * 0x00000002 : 12.65 kbps
  857. * 0x00000003 : 14.25 kbps
  858. * 0x00000004 : 15.85 kbps
  859. * 0x00000005 : 18.25 kbps
  860. * 0x00000006 : 19.85 kbps
  861. * 0x00000007 : 23.05 kbps
  862. * 0x00000008 : 23.85 kbps
  863. */
  864. } __packed;
  865. struct vss_istream_cmd_cdma_set_enc_minmax_rate_t {
  866. uint16_t min_rate;
  867. /* Set the lower bound encoder rate.
  868. *
  869. * 0x0000 : Blank frame
  870. * 0x0001 : Eighth rate
  871. * 0x0002 : Quarter rate
  872. * 0x0003 : Half rate
  873. * 0x0004 : Full rate
  874. */
  875. uint16_t max_rate;
  876. /* Set the upper bound encoder rate.
  877. *
  878. * 0x0000 : Blank frame
  879. * 0x0001 : Eighth rate
  880. * 0x0002 : Quarter rate
  881. * 0x0003 : Half rate
  882. * 0x0004 : Full rate
  883. */
  884. } __packed;
  885. struct vss_istream_cmd_set_enc_dtx_mode_t {
  886. uint32_t enable;
  887. /* Toggle DTX on or off.
  888. *
  889. * 0 : Disables DTX
  890. * 1 : Enables DTX
  891. */
  892. } __packed;
  893. struct vss_istream_cmd_register_calibration_data_v2_t {
  894. uint32_t cal_mem_handle;
  895. /* Handle to the shared memory that holds the calibration data. */
  896. uint32_t cal_mem_address_lsw;
  897. uint32_t cal_mem_address_msw;
  898. /* Location of calibration data. */
  899. uint32_t cal_mem_size;
  900. /* Size of the calibration data in bytes. */
  901. uint8_t column_info[MAX_COL_INFO_SIZE];
  902. /*
  903. * Column info contains the number of columns and the array of columns
  904. * in the calibration table. The order in which the columns are provided
  905. * here must match the order in which they exist in the calibration
  906. * table provided.
  907. */
  908. } __packed;
  909. struct vss_icommon_cmd_set_ui_property_enable_t {
  910. uint32_t module_id;
  911. /* Unique ID of the module. */
  912. uint32_t param_id;
  913. /* Unique ID of the parameter. */
  914. uint16_t param_size;
  915. /* Size of the parameter in bytes: MOD_ENABLE_PARAM_LEN */
  916. uint16_t reserved;
  917. /* Reserved; set to 0. */
  918. uint16_t enable;
  919. uint16_t reserved_field;
  920. /* Reserved, set to 0. */
  921. };
  922. /*
  923. * Event sent by the stream to the client that enables Rx DTMF
  924. * detection whenever DTMF is detected in the Rx path.
  925. *
  926. * The DTMF detection feature can only be used to detect DTMF
  927. * frequencies as listed in the vss_istream_evt_rx_dtmf_detected_t
  928. * structure.
  929. */
  930. #define VSS_ISTREAM_EVT_RX_DTMF_DETECTED 0x0001101A
  931. struct vss_istream_cmd_set_rx_dtmf_detection {
  932. /*
  933. * Enables/disables Rx DTMF detection
  934. *
  935. * Possible values are
  936. * 0 - disable
  937. * 1 - enable
  938. *
  939. */
  940. uint32_t enable;
  941. };
  942. #define VSS_ISTREAM_CMD_SET_RX_DTMF_DETECTION 0x00011027
  943. struct vss_istream_evt_rx_dtmf_detected {
  944. uint16_t low_freq;
  945. /*
  946. * Detected low frequency. Possible values:
  947. * 697 Hz
  948. * 770 Hz
  949. * 852 Hz
  950. * 941 Hz
  951. */
  952. uint16_t high_freq;
  953. /*
  954. * Detected high frequency. Possible values:
  955. * 1209 Hz
  956. * 1336 Hz
  957. * 1477 Hz
  958. * 1633 Hz
  959. */
  960. };
  961. struct cvs_set_rx_dtmf_detection_cmd {
  962. struct apr_hdr hdr;
  963. struct vss_istream_cmd_set_rx_dtmf_detection cvs_dtmf_det;
  964. } __packed;
  965. struct cvs_create_passive_ctl_session_cmd {
  966. struct apr_hdr hdr;
  967. struct vss_istream_cmd_create_passive_control_session_t cvs_session;
  968. } __packed;
  969. struct cvs_create_full_ctl_session_cmd {
  970. struct apr_hdr hdr;
  971. struct vss_istream_cmd_create_full_control_session_t cvs_session;
  972. } __packed;
  973. struct cvs_destroy_session_cmd {
  974. struct apr_hdr hdr;
  975. } __packed;
  976. struct cvs_set_mute_cmd {
  977. struct apr_hdr hdr;
  978. struct vss_ivolume_cmd_mute_v2_t cvs_set_mute;
  979. } __packed;
  980. struct cvs_set_media_type_cmd {
  981. struct apr_hdr hdr;
  982. struct vss_istream_cmd_set_media_type_t media_type;
  983. } __packed;
  984. struct cvs_send_dec_buf_cmd {
  985. struct apr_hdr hdr;
  986. struct vss_istream_evt_send_dec_buffer_t dec_buf;
  987. } __packed;
  988. struct cvs_set_amr_enc_rate_cmd {
  989. struct apr_hdr hdr;
  990. struct vss_istream_cmd_voc_amr_set_enc_rate_t amr_rate;
  991. } __packed;
  992. struct cvs_set_amrwb_enc_rate_cmd {
  993. struct apr_hdr hdr;
  994. struct vss_istream_cmd_voc_amrwb_set_enc_rate_t amrwb_rate;
  995. } __packed;
  996. struct cvs_set_cdma_enc_minmax_rate_cmd {
  997. struct apr_hdr hdr;
  998. struct vss_istream_cmd_cdma_set_enc_minmax_rate_t cdma_rate;
  999. } __packed;
  1000. struct cvs_set_enc_dtx_mode_cmd {
  1001. struct apr_hdr hdr;
  1002. struct vss_istream_cmd_set_enc_dtx_mode_t dtx_mode;
  1003. } __packed;
  1004. struct cvs_register_cal_data_cmd {
  1005. struct apr_hdr hdr;
  1006. struct vss_istream_cmd_register_calibration_data_v2_t cvs_cal_data;
  1007. } __packed;
  1008. struct cvs_deregister_cal_data_cmd {
  1009. struct apr_hdr hdr;
  1010. } __packed;
  1011. struct cvs_set_pp_enable_cmd {
  1012. struct apr_hdr hdr;
  1013. struct vss_icommon_cmd_set_ui_property_enable_t vss_set_pp;
  1014. } __packed;
  1015. struct cvs_start_record_cmd {
  1016. struct apr_hdr hdr;
  1017. struct vss_irecord_cmd_start_t rec_mode;
  1018. } __packed;
  1019. struct cvs_start_playback_cmd {
  1020. struct apr_hdr hdr;
  1021. struct vss_iplayback_cmd_start_t playback_mode;
  1022. } __packed;
  1023. struct cvs_dec_buffer_ready_cmd {
  1024. struct apr_hdr hdr;
  1025. } __packed;
  1026. struct cvs_enc_buffer_consumed_cmd {
  1027. struct apr_hdr hdr;
  1028. } __packed;
  1029. struct vss_istream_cmd_set_oob_packet_exchange_config_t {
  1030. struct apr_hdr hdr;
  1031. uint32_t mem_handle;
  1032. uint32_t enc_buf_addr_lsw;
  1033. uint32_t enc_buf_addr_msw;
  1034. uint32_t enc_buf_size;
  1035. uint32_t dec_buf_addr_lsw;
  1036. uint32_t dec_buf_addr_msw;
  1037. uint32_t dec_buf_size;
  1038. } __packed;
  1039. struct vss_istream_cmd_set_packet_exchange_mode_t {
  1040. struct apr_hdr hdr;
  1041. uint32_t mode;
  1042. } __packed;
  1043. /* TO CVP commands */
  1044. #define VSS_IVOCPROC_CMD_CREATE_FULL_CONTROL_SESSION 0x000100C3
  1045. /**< Wait for APRV2_IBASIC_RSP_RESULT response. */
  1046. #define APRV2_IBASIC_CMD_DESTROY_SESSION 0x0001003C
  1047. #define VSS_IVOCPROC_CMD_SET_DEVICE_V2 0x000112C6
  1048. #define VSS_IVOCPROC_CMD_SET_DEVICE_V3 0x0001316A
  1049. #define VSS_IVOCPROC_CMD_TOPOLOGY_SET_DEV_CHANNELS 0x00013199
  1050. #define VSS_IVOCPROC_CMD_TOPOLOGY_COMMIT 0x00013198
  1051. #define VSS_IVOCPROC_CMD_SET_VP3_DATA 0x000110EB
  1052. #define VSS_IVOLUME_CMD_SET_STEP 0x000112C2
  1053. #define VSS_IVOCPROC_CMD_ENABLE 0x000100C6
  1054. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  1055. #define VSS_IVOCPROC_CMD_DISABLE 0x000110E1
  1056. /**< No payload. Wait for APRV2_IBASIC_RSP_RESULT response. */
  1057. /*
  1058. * Registers the memory that contains device specific configuration data with
  1059. * the vocproc. The client must register device configuration data with the
  1060. * vocproc that corresponds with the device being set on the vocproc.
  1061. */
  1062. #define VSS_IVOCPROC_CMD_REGISTER_DEVICE_CONFIG 0x00011371
  1063. /*
  1064. * Deregisters the memory that holds device configuration data from the
  1065. vocproc.
  1066. */
  1067. #define VSS_IVOCPROC_CMD_DEREGISTER_DEVICE_CONFIG 0x00011372
  1068. #define VSS_IVOCPROC_CMD_REGISTER_CALIBRATION_DATA_V2 0x00011373
  1069. #define VSS_IVOCPROC_CMD_DEREGISTER_CALIBRATION_DATA 0x00011276
  1070. #define VSS_IVOCPROC_CMD_REGISTER_VOL_CALIBRATION_DATA 0x00011374
  1071. #define VSS_IVOCPROC_CMD_DEREGISTER_VOL_CALIBRATION_DATA 0x00011375
  1072. #define VSS_IVOCPROC_CMD_REGISTER_STATIC_CALIBRATION_DATA 0x00013079
  1073. #define VSS_IVOCPROC_CMD_DEREGISTER_STATIC_CALIBRATION_DATA 0x0001307A
  1074. #define VSS_IVOCPROC_CMD_REGISTER_DYNAMIC_CALIBRATION_DATA 0x0001307B
  1075. #define VSS_IVOCPROC_CMD_DEREGISTER_DYNAMIC_CALIBRATION_DATA 0x0001307C
  1076. #define VSS_IVOCPROC_TOPOLOGY_ID_NONE 0x00010F70
  1077. #define VSS_IVOCPROC_TOPOLOGY_ID_TX_SM_ECNS_V2 0x00010F89
  1078. #define VSS_IVOCPROC_TOPOLOGY_ID_TX_DM_FLUENCE 0x00010F72
  1079. #define VSS_IVOCPROC_TOPOLOGY_ID_RX_DEFAULT 0x00010F77
  1080. /* Newtwork IDs */
  1081. #define VSS_ICOMMON_CAL_NETWORK_ID_NONE 0x0001135E
  1082. /* Select internal mixing mode. */
  1083. #define VSS_IVOCPROC_VOCPROC_MODE_EC_INT_MIXING 0x00010F7C
  1084. /* Select external mixing mode. */
  1085. #define VSS_IVOCPROC_VOCPROC_MODE_EC_EXT_MIXING 0x00010F7D
  1086. /* Default AFE port ID. Applicable to Tx and Rx. */
  1087. #define VSS_IVOCPROC_PORT_ID_NONE 0xFFFF
  1088. #define VSS_NETWORK_ID_DEFAULT 0x00010037
  1089. /* Voice over Internet Protocol (VoIP) network ID. Common for all bands.*/
  1090. #define VSS_NETWORK_ID_VOIP 0x00011362
  1091. /* Media types */
  1092. #define VSS_MEDIA_ID_EVRC_MODEM 0x00010FC2
  1093. /* 80-VF690-47 CDMA enhanced variable rate vocoder modem format. */
  1094. #define VSS_MEDIA_ID_AMR_NB_MODEM 0x00010FC6
  1095. /* 80-VF690-47 UMTS AMR-NB vocoder modem format. */
  1096. #define VSS_MEDIA_ID_AMR_WB_MODEM 0x00010FC7
  1097. /* 80-VF690-47 UMTS AMR-WB vocoder modem format. */
  1098. #define VSS_MEDIA_ID_PCM_8_KHZ 0x00010FCB
  1099. #define VSS_MEDIA_ID_PCM_16_KHZ 0x00010FCC
  1100. #define VSS_MEDIA_ID_PCM_32_KHZ 0x00010FD9
  1101. #define VSS_MEDIA_ID_PCM_48_KHZ 0x00010FD6
  1102. /* Linear PCM (16-bit, little-endian). */
  1103. #define VSS_MEDIA_ID_G711_ALAW 0x00010FCD
  1104. /* G.711 a-law (contains two 10ms vocoder frames). */
  1105. #define VSS_MEDIA_ID_G711_MULAW 0x00010FCE
  1106. /* G.711 mu-law (contains two 10ms vocoder frames). */
  1107. #define VSS_MEDIA_ID_G729 0x00010FD0
  1108. /* G.729AB (contains two 10ms vocoder frames. */
  1109. #define VSS_MEDIA_ID_4GV_NB_MODEM 0x00010FC3
  1110. /*CDMA EVRC-B vocoder modem format */
  1111. #define VSS_MEDIA_ID_4GV_WB_MODEM 0x00010FC4
  1112. /*CDMA EVRC-WB vocoder modem format */
  1113. #define VSS_MEDIA_ID_4GV_NW_MODEM 0x00010FC5
  1114. /*CDMA EVRC-NW vocoder modem format */
  1115. #define VSS_IVOCPROC_CMD_CREATE_FULL_CONTROL_SESSION_V2 0x000112BF
  1116. #define VSS_IVOCPROC_CMD_CREATE_FULL_CONTROL_SESSION_V3 0x00013169
  1117. #define VSS_NUM_DEV_CHANNELS_1 1
  1118. #define VSS_NUM_DEV_CHANNELS_2 2
  1119. #define VSS_NUM_DEV_CHANNELS_3 3
  1120. #define VSS_NUM_DEV_CHANNELS_4 4
  1121. struct vss_ivocproc_cmd_create_full_control_session_v2_t {
  1122. uint16_t direction;
  1123. /*
  1124. * Vocproc direction. The supported values:
  1125. * VSS_IVOCPROC_DIRECTION_RX
  1126. * VSS_IVOCPROC_DIRECTION_TX
  1127. * VSS_IVOCPROC_DIRECTION_RX_TX
  1128. */
  1129. uint16_t tx_port_id;
  1130. /*
  1131. * Tx device port ID to which the vocproc connects. If a port ID is
  1132. * not being supplied, set this to #VSS_IVOCPROC_PORT_ID_NONE.
  1133. */
  1134. uint32_t tx_topology_id;
  1135. /*
  1136. * Tx path topology ID. If a topology ID is not being supplied, set
  1137. * this to #VSS_IVOCPROC_TOPOLOGY_ID_NONE.
  1138. */
  1139. uint16_t rx_port_id;
  1140. /*
  1141. * Rx device port ID to which the vocproc connects. If a port ID is
  1142. * not being supplied, set this to #VSS_IVOCPROC_PORT_ID_NONE.
  1143. */
  1144. uint32_t rx_topology_id;
  1145. /*
  1146. * Rx path topology ID. If a topology ID is not being supplied, set
  1147. * this to #VSS_IVOCPROC_TOPOLOGY_ID_NONE.
  1148. */
  1149. uint32_t profile_id;
  1150. /* Voice calibration profile ID. */
  1151. uint32_t vocproc_mode;
  1152. /*
  1153. * Vocproc mode. The supported values:
  1154. * VSS_IVOCPROC_VOCPROC_MODE_EC_INT_MIXING
  1155. * VSS_IVOCPROC_VOCPROC_MODE_EC_EXT_MIXING
  1156. */
  1157. uint16_t ec_ref_port_id;
  1158. /*
  1159. * Port ID to which the vocproc connects for receiving echo
  1160. * cancellation reference signal. If a port ID is not being supplied,
  1161. * set this to #VSS_IVOCPROC_PORT_ID_NONE. This parameter value is
  1162. * ignored when the vocproc_mode parameter is set to
  1163. * VSS_IVOCPROC_VOCPROC_MODE_EC_INT_MIXING.
  1164. */
  1165. char name[SESSION_NAME_LEN];
  1166. /*
  1167. * Session name string used to identify a session that can be shared
  1168. * with passive controllers (optional). The string size, including the
  1169. * NULL termination character, is limited to 31 characters.
  1170. */
  1171. } __packed;
  1172. struct vss_ivocproc_cmd_set_volume_index_t {
  1173. uint16_t vol_index;
  1174. /*
  1175. * Volume index utilized by the vocproc to index into the volume table
  1176. * provided in VSS_IVOCPROC_CMD_CACHE_VOLUME_CALIBRATION_TABLE and set
  1177. * volume on the VDSP.
  1178. */
  1179. } __packed;
  1180. struct vss_ivolume_cmd_set_step_t {
  1181. uint16_t direction;
  1182. /*
  1183. * The direction field sets the direction to apply the volume command.
  1184. * The supported values:
  1185. * #VSS_IVOLUME_DIRECTION_RX
  1186. */
  1187. uint32_t value;
  1188. /*
  1189. * Volume step used to find the corresponding linear volume and
  1190. * the best match index in the registered volume calibration table.
  1191. */
  1192. uint16_t ramp_duration_ms;
  1193. /*
  1194. * Volume change ramp duration in milliseconds.
  1195. * The supported values: 0 to 5000.
  1196. */
  1197. } __packed;
  1198. struct vss_ivocproc_cmd_set_device_v2_t {
  1199. uint16_t tx_port_id;
  1200. /*
  1201. * TX device port ID which vocproc will connect to.
  1202. * VSS_IVOCPROC_PORT_ID_NONE means vocproc will not connect to any port.
  1203. */
  1204. uint32_t tx_topology_id;
  1205. /*
  1206. * TX leg topology ID.
  1207. * VSS_IVOCPROC_TOPOLOGY_ID_NONE means vocproc does not contain any
  1208. * pre/post-processing blocks and is pass-through.
  1209. */
  1210. uint16_t rx_port_id;
  1211. /*
  1212. * RX device port ID which vocproc will connect to.
  1213. * VSS_IVOCPROC_PORT_ID_NONE means vocproc will not connect to any port.
  1214. */
  1215. uint32_t rx_topology_id;
  1216. /*
  1217. * RX leg topology ID.
  1218. * VSS_IVOCPROC_TOPOLOGY_ID_NONE means vocproc does not contain any
  1219. * pre/post-processing blocks and is pass-through.
  1220. */
  1221. uint32_t vocproc_mode;
  1222. /* Vocproc mode. The supported values:
  1223. * VSS_IVOCPROC_VOCPROC_MODE_EC_INT_MIXING - 0x00010F7C
  1224. * VSS_IVOCPROC_VOCPROC_MODE_EC_EXT_MIXING - 0x00010F7D
  1225. */
  1226. uint16_t ec_ref_port_id;
  1227. /* Port ID to which the vocproc connects for receiving
  1228. * echo
  1229. */
  1230. } __packed;
  1231. struct vss_ivocproc_cmd_register_device_config_t {
  1232. uint32_t mem_handle;
  1233. /*
  1234. * Handle to the shared memory that holds the per-network calibration
  1235. * data.
  1236. */
  1237. uint32_t mem_address_lsw;
  1238. uint32_t mem_address_msw;
  1239. /* Location of calibration data. */
  1240. uint32_t mem_size;
  1241. /* Size of the calibration data in bytes. */
  1242. } __packed;
  1243. struct vss_ivocproc_cmd_register_calibration_data_v2_t {
  1244. uint32_t cal_mem_handle;
  1245. /*
  1246. * Handle to the shared memory that holds the per-network calibration
  1247. * data.
  1248. */
  1249. uint32_t cal_mem_address_lsw;
  1250. uint32_t cal_mem_address_msw;
  1251. /* Location of calibration data. */
  1252. uint32_t cal_mem_size;
  1253. /* Size of the calibration data in bytes. */
  1254. uint8_t column_info[MAX_COL_INFO_SIZE];
  1255. /*
  1256. * Column info contains the number of columns and the array of columns
  1257. * in the calibration table. The order in which the columns are provided
  1258. * here must match the order in which they exist in the calibration
  1259. * table provided.
  1260. */
  1261. } __packed;
  1262. struct vss_ivocproc_cmd_register_volume_cal_data_t {
  1263. uint32_t cal_mem_handle;
  1264. /*
  1265. * Handle to the shared memory that holds the volume calibration
  1266. * data.
  1267. */
  1268. uint32_t cal_mem_address_lsw;
  1269. uint32_t cal_mem_address_msw;
  1270. /* Location of volume calibration data. */
  1271. uint32_t cal_mem_size;
  1272. /* Size of the volume calibration data in bytes. */
  1273. uint8_t column_info[MAX_COL_INFO_SIZE];
  1274. /*
  1275. * Column info contains the number of columns and the array of columns
  1276. * in the calibration table. The order in which the columns are provided
  1277. * here must match the order in which they exist in the calibration
  1278. * table provided.
  1279. */
  1280. } __packed;
  1281. struct vss_ivocproc_cmd_topology_set_dev_channels_t {
  1282. uint16_t tx_num_channels;
  1283. /*
  1284. * Number of Mics.
  1285. * Supported values
  1286. * 1 VSS_NUM_DEV_CHANNELS_1
  1287. * 2 VSS_NUM_DEV_CHANNELS_2
  1288. * 3 VSS_NUM_DEV_CHANNELS_3
  1289. * 4 VSS_NUM_DEV_CHANNELS_4
  1290. */
  1291. uint16_t rx_num_channels;
  1292. /*
  1293. * Number of speaker channels.
  1294. * Supported values
  1295. * 1 VSS_NUM_DEV_CHANNELS_1
  1296. */
  1297. } __packed;
  1298. /* Starts a vocoder PCM session */
  1299. #define VSS_IVPCM_CMD_START_V2 0x00011339
  1300. /* Default tap point location on the TX path. */
  1301. #define VSS_IVPCM_TAP_POINT_TX_DEFAULT 0x00011289
  1302. /* Default tap point location on the RX path. */
  1303. #define VSS_IVPCM_TAP_POINT_RX_DEFAULT 0x0001128A
  1304. /* Indicates tap point direction is output. */
  1305. #define VSS_IVPCM_TAP_POINT_DIR_OUT 0
  1306. /* Indicates tap point direction is input. */
  1307. #define VSS_IVPCM_TAP_POINT_DIR_IN 1
  1308. /* Indicates tap point direction is output and input. */
  1309. #define VSS_IVPCM_TAP_POINT_DIR_OUT_IN 2
  1310. #define VSS_IVPCM_SAMPLING_RATE_AUTO 0
  1311. /* Indicates 8 KHz vocoder PCM sampling rate. */
  1312. #define VSS_IVPCM_SAMPLING_RATE_8K 8000
  1313. /* Indicates 16 KHz vocoder PCM sampling rate. */
  1314. #define VSS_IVPCM_SAMPLING_RATE_16K 16000
  1315. /* RX and TX */
  1316. #define MAX_TAP_POINTS_SUPPORTED 2
  1317. struct vss_ivpcm_tap_point {
  1318. uint32_t tap_point;
  1319. uint16_t direction;
  1320. uint16_t sampling_rate;
  1321. uint16_t duration;
  1322. } __packed;
  1323. struct vss_ivpcm_cmd_start_v2_t {
  1324. uint32_t mem_handle;
  1325. uint32_t num_tap_points;
  1326. struct vss_ivpcm_tap_point tap_points[MAX_TAP_POINTS_SUPPORTED];
  1327. } __packed;
  1328. #define VSS_IVPCM_EVT_PUSH_BUFFER_V2 0x0001133A
  1329. /* Push buffer event mask indicating output buffer is filled. */
  1330. #define VSS_IVPCM_PUSH_BUFFER_MASK_OUTPUT_BUFFER 1
  1331. /* Push buffer event mask indicating input buffer is consumed. */
  1332. #define VSS_IVPCM_PUSH_BUFFER_MASK_INPUT_BUFFER 2
  1333. struct vss_ivpcm_evt_push_buffer_v2_t {
  1334. uint32_t tap_point;
  1335. uint32_t push_buf_mask;
  1336. uint64_t out_buf_mem_address;
  1337. uint16_t out_buf_mem_size;
  1338. uint64_t in_buf_mem_address;
  1339. uint16_t in_buf_mem_size;
  1340. uint16_t sampling_rate;
  1341. uint16_t num_in_channels;
  1342. } __packed;
  1343. #define VSS_IVPCM_EVT_NOTIFY_V2 0x0001133B
  1344. /* Notify event mask indicates output buffer is filled. */
  1345. #define VSS_IVPCM_NOTIFY_MASK_OUTPUT_BUFFER 1
  1346. /* Notify event mask indicates input buffer is consumed. */
  1347. #define VSS_IVPCM_NOTIFY_MASK_INPUT_BUFFER 2
  1348. /* Notify event mask indicates a timetick */
  1349. #define VSS_IVPCM_NOTIFY_MASK_TIMETICK 4
  1350. /* Notify event mask indicates an error occurred in output buffer operation */
  1351. #define VSS_IVPCM_NOTIFY_MASK_OUTPUT_ERROR 8
  1352. /* Notify event mask indicates an error occurred in input buffer operation */
  1353. #define VSS_IVPCM_NOTIFY_MASK_INPUT_ERROR 16
  1354. struct vss_ivpcm_evt_notify_v2_t {
  1355. uint32_t tap_point;
  1356. uint32_t notify_mask;
  1357. uint64_t out_buff_addr;
  1358. uint64_t in_buff_addr;
  1359. uint16_t filled_out_size;
  1360. uint16_t request_buf_size;
  1361. uint16_t sampling_rate;
  1362. uint16_t num_out_channels;
  1363. } __packed;
  1364. struct cvp_start_cmd {
  1365. struct apr_hdr hdr;
  1366. struct vss_ivpcm_cmd_start_v2_t vpcm_start_cmd;
  1367. } __packed;
  1368. struct cvp_push_buf_cmd {
  1369. struct apr_hdr hdr;
  1370. struct vss_ivpcm_evt_push_buffer_v2_t vpcm_evt_push_buffer;
  1371. } __packed;
  1372. #define VSS_IVPCM_CMD_STOP 0x0001100B
  1373. struct cvp_create_full_ctl_session_cmd {
  1374. struct apr_hdr hdr;
  1375. struct vss_ivocproc_cmd_create_full_control_session_v2_t cvp_session;
  1376. } __packed;
  1377. struct cvp_command {
  1378. struct apr_hdr hdr;
  1379. } __packed;
  1380. struct cvp_set_device_cmd {
  1381. struct apr_hdr hdr;
  1382. struct vss_ivocproc_cmd_set_device_v2_t cvp_set_device_v2;
  1383. } __packed;
  1384. struct cvp_set_dev_channels_cmd {
  1385. struct apr_hdr hdr;
  1386. struct vss_ivocproc_cmd_topology_set_dev_channels_t cvp_set_channels;
  1387. } __packed;
  1388. struct cvp_set_media_format_cmd {
  1389. struct apr_hdr hdr;
  1390. struct vss_icommon_cmd_set_param_v2_t cvp_set_media_param_v2;
  1391. } __packed;
  1392. struct cvp_set_channel_info_cmd_v2 {
  1393. struct apr_hdr hdr;
  1394. struct vss_icommon_cmd_set_param_channel_info_v2_t
  1395. cvp_set_ch_info_param_v2;
  1396. } __packed;
  1397. struct cvp_set_channel_mixer_info_cmd_v2 {
  1398. struct apr_hdr hdr;
  1399. struct vss_icommon_cmd_set_param_ch_mixer_v2_t
  1400. cvp_set_ch_mixer_param_v2;
  1401. } __packed;
  1402. struct cvp_set_mfc_config_cmd_v2 {
  1403. struct apr_hdr hdr;
  1404. struct vss_icommon_cmd_set_param_mfc_config_v2_t cvp_set_mfc_param_v2;
  1405. } __packed;
  1406. struct cvp_set_vp3_data_cmd {
  1407. struct apr_hdr hdr;
  1408. } __packed;
  1409. struct cvp_set_rx_volume_index_cmd {
  1410. struct apr_hdr hdr;
  1411. struct vss_ivocproc_cmd_set_volume_index_t cvp_set_vol_idx;
  1412. } __packed;
  1413. struct cvp_set_rx_volume_step_cmd {
  1414. struct apr_hdr hdr;
  1415. struct vss_ivolume_cmd_set_step_t cvp_set_vol_step;
  1416. } __packed;
  1417. struct cvp_register_dev_cfg_cmd {
  1418. struct apr_hdr hdr;
  1419. struct vss_ivocproc_cmd_register_device_config_t cvp_dev_cfg_data;
  1420. } __packed;
  1421. struct cvp_deregister_dev_cfg_cmd {
  1422. struct apr_hdr hdr;
  1423. } __packed;
  1424. struct cvp_register_cal_data_cmd {
  1425. struct apr_hdr hdr;
  1426. struct vss_ivocproc_cmd_register_calibration_data_v2_t cvp_cal_data;
  1427. } __packed;
  1428. struct cvp_deregister_cal_data_cmd {
  1429. struct apr_hdr hdr;
  1430. } __packed;
  1431. struct cvp_register_vol_cal_data_cmd {
  1432. struct apr_hdr hdr;
  1433. struct vss_ivocproc_cmd_register_volume_cal_data_t cvp_vol_cal_data;
  1434. } __packed;
  1435. struct cvp_deregister_vol_cal_data_cmd {
  1436. struct apr_hdr hdr;
  1437. } __packed;
  1438. struct cvp_set_mute_cmd {
  1439. struct apr_hdr hdr;
  1440. struct vss_ivolume_cmd_mute_v2_t cvp_set_mute;
  1441. } __packed;
  1442. /* CB for up-link packets. */
  1443. typedef void (*ul_cb_fn)(uint8_t *voc_pkt,
  1444. uint32_t pkt_len,
  1445. uint32_t timestamp,
  1446. void *private_data);
  1447. /* CB for down-link packets. */
  1448. typedef void (*dl_cb_fn)(uint8_t *voc_pkt,
  1449. void *private_data);
  1450. /* CB for DTMF RX Detection */
  1451. typedef void (*dtmf_rx_det_cb_fn)(uint8_t *pkt,
  1452. char *session,
  1453. void *private_data);
  1454. typedef void (*voip_ssr_cb) (uint32_t opcode,
  1455. void *private_data);
  1456. typedef void (*hostpcm_cb_fn)(uint8_t *data,
  1457. char *session,
  1458. void *private_data);
  1459. struct mvs_driver_info {
  1460. uint32_t media_type;
  1461. uint32_t rate;
  1462. uint32_t network_type;
  1463. uint32_t dtx_mode;
  1464. ul_cb_fn ul_cb;
  1465. dl_cb_fn dl_cb;
  1466. voip_ssr_cb ssr_cb;
  1467. void *private_data;
  1468. uint32_t evrc_min_rate;
  1469. uint32_t evrc_max_rate;
  1470. };
  1471. struct dtmf_driver_info {
  1472. dtmf_rx_det_cb_fn dtmf_rx_ul_cb;
  1473. void *private_data;
  1474. };
  1475. struct hostpcm_driver_info {
  1476. hostpcm_cb_fn hostpcm_evt_cb;
  1477. void *private_data;
  1478. };
  1479. struct incall_rec_info {
  1480. uint32_t rec_enable;
  1481. uint32_t rec_mode;
  1482. uint32_t recording;
  1483. };
  1484. struct incall_music_info {
  1485. uint32_t play_enable;
  1486. uint32_t playing;
  1487. int count;
  1488. int force;
  1489. uint16_t port_id;
  1490. };
  1491. struct share_memory_info {
  1492. u32 mem_handle;
  1493. struct share_mem_buf sh_buf;
  1494. struct mem_map_table memtbl;
  1495. };
  1496. #define VSS_ISOUNDFOCUS_CMD_SET_SECTORS 0x00013133
  1497. #define VSS_ISOUNDFOCUS_CMD_GET_SECTORS 0x00013134
  1498. #define VSS_ISOUNDFOCUS_RSP_GET_SECTORS 0x00013135
  1499. #define VSS_ISOURCETRACK_CMD_GET_ACTIVITY 0x00013136
  1500. struct vss_isoundfocus_cmd_set_sectors_t {
  1501. uint16_t start_angles[8];
  1502. uint8_t enables[8];
  1503. uint16_t gain_step;
  1504. } __packed;
  1505. /* Payload of the VSS_ISOUNDFOCUS_RSP_GET_SECTORS response */
  1506. struct vss_isoundfocus_rsp_get_sectors_t {
  1507. uint16_t start_angles[8];
  1508. uint8_t enables[8];
  1509. uint16_t gain_step;
  1510. } __packed;
  1511. struct cvp_set_sound_focus_param_cmd_t {
  1512. struct apr_hdr hdr;
  1513. struct vss_isoundfocus_cmd_set_sectors_t cvp_set_sound_focus_param;
  1514. } __packed;
  1515. /* Payload structure for the VSS_ISOURCETRACK_CMD_GET_ACTIVITY command */
  1516. struct vss_isourcetrack_cmd_get_activity_t {
  1517. uint32_t mem_handle;
  1518. uint32_t mem_address_lsw;
  1519. uint32_t mem_address_msw;
  1520. uint32_t mem_size;
  1521. } __packed;
  1522. struct cvp_get_source_tracking_param_cmd_t {
  1523. struct apr_hdr hdr;
  1524. struct vss_isourcetrack_cmd_get_activity_t
  1525. cvp_get_source_tracking_param;
  1526. } __packed;
  1527. /* Structure for the sound activity data */
  1528. struct vss_isourcetrack_activity_data_t {
  1529. uint8_t voice_active[8];
  1530. uint16_t talker_doa;
  1531. uint16_t interferer_doa[3];
  1532. uint8_t sound_strength[360];
  1533. } __packed;
  1534. struct shared_mem_info {
  1535. uint32_t mem_handle;
  1536. struct mem_map_table sh_mem_block;
  1537. struct mem_map_table sh_mem_table;
  1538. };
  1539. struct voice_data {
  1540. int voc_state;/*INIT, CHANGE, RELEASE, RUN */
  1541. /* Shared mem to store decoder and encoder packets */
  1542. struct share_memory_info shmem_info;
  1543. wait_queue_head_t mvm_wait;
  1544. wait_queue_head_t cvs_wait;
  1545. wait_queue_head_t cvp_wait;
  1546. /* Cache the values related to Rx and Tx devices */
  1547. struct device_data dev_rx;
  1548. struct device_data dev_tx;
  1549. /* Cache the values related to Rx and Tx streams */
  1550. struct stream_data stream_rx;
  1551. struct stream_data stream_tx;
  1552. u32 mvm_state;
  1553. u32 cvs_state;
  1554. u32 cvp_state;
  1555. u32 async_err;
  1556. /* Handle to MVM in the Q6 */
  1557. u16 mvm_handle;
  1558. /* Handle to CVS in the Q6 */
  1559. u16 cvs_handle;
  1560. /* Handle to CVP in the Q6 */
  1561. u16 cvp_handle;
  1562. struct mutex lock;
  1563. bool disable_topology;
  1564. uint16_t sidetone_gain;
  1565. uint8_t tty_mode;
  1566. /* slowtalk enable value */
  1567. uint32_t st_enable;
  1568. uint32_t hd_enable;
  1569. uint32_t dtmf_rx_detect_en;
  1570. /* Local Call Hold mode */
  1571. uint8_t lch_mode;
  1572. struct voice_dev_route_state voc_route_state;
  1573. u32 session_id;
  1574. struct incall_rec_info rec_info;
  1575. struct incall_music_info music_info;
  1576. struct voice_rec_route_state rec_route_state;
  1577. };
  1578. struct cal_mem {
  1579. struct ion_handle *handle;
  1580. uint32_t phy;
  1581. void *buf;
  1582. };
  1583. #define MAX_VOC_SESSIONS 8
  1584. struct common_data {
  1585. /* these default values are for all devices */
  1586. uint32_t default_mute_val;
  1587. uint32_t default_sample_val;
  1588. uint32_t default_vol_step_val;
  1589. uint32_t default_vol_ramp_duration_ms;
  1590. uint32_t default_mute_ramp_duration_ms;
  1591. bool ec_ref_ext;
  1592. struct media_format_info ec_media_fmt_info;
  1593. /* APR to MVM in the Q6 */
  1594. void *apr_q6_mvm;
  1595. /* APR to CVS in the Q6 */
  1596. void *apr_q6_cvs;
  1597. /* APR to CVP in the Q6 */
  1598. void *apr_q6_cvp;
  1599. struct cal_type_data *cal_data[MAX_VOICE_CAL_TYPES];
  1600. struct mem_map_table cal_mem_map_table;
  1601. uint32_t cal_mem_handle;
  1602. struct mem_map_table rtac_mem_map_table;
  1603. uint32_t rtac_mem_handle;
  1604. uint32_t voice_host_pcm_mem_handle;
  1605. struct cal_mem cvp_cal;
  1606. struct cal_mem cvs_cal;
  1607. struct mutex common_lock;
  1608. struct mvs_driver_info mvs_info;
  1609. struct dtmf_driver_info dtmf_info;
  1610. struct hostpcm_driver_info hostpcm_info;
  1611. struct voice_data voice[MAX_VOC_SESSIONS];
  1612. bool srvcc_rec_flag;
  1613. bool is_destroy_cvd;
  1614. char cvd_version[CVD_VERSION_STRING_MAX_SIZE];
  1615. int cvp_version;
  1616. bool is_avcs_version_queried;
  1617. bool is_per_vocoder_cal_enabled;
  1618. bool is_sound_focus_resp_success;
  1619. bool is_source_tracking_resp_success;
  1620. struct vss_isoundfocus_rsp_get_sectors_t soundFocusResponse;
  1621. struct shared_mem_info source_tracking_sh_mem;
  1622. struct vss_isourcetrack_activity_data_t sourceTrackingResponse;
  1623. bool sidetone_enable;
  1624. };
  1625. struct voice_session_itr {
  1626. int cur_idx;
  1627. int session_idx;
  1628. };
  1629. void voc_register_mvs_cb(ul_cb_fn ul_cb,
  1630. dl_cb_fn dl_cb,
  1631. voip_ssr_cb ssr_cb,
  1632. void *private_data);
  1633. void voc_register_dtmf_rx_detection_cb(dtmf_rx_det_cb_fn dtmf_rx_ul_cb,
  1634. void *private_data);
  1635. void voc_config_vocoder(uint32_t media_type,
  1636. uint32_t rate,
  1637. uint32_t network_type,
  1638. uint32_t dtx_mode,
  1639. uint32_t evrc_min_rate,
  1640. uint32_t evrc_max_rate);
  1641. enum {
  1642. DEV_RX = 0,
  1643. DEV_TX,
  1644. };
  1645. enum {
  1646. RX_PATH = 0,
  1647. TX_PATH,
  1648. EC_REF_PATH,
  1649. };
  1650. #define VOC_PATH_PASSIVE 0
  1651. #define VOC_PATH_FULL 1
  1652. #define VOC_PATH_VOLTE_PASSIVE 2
  1653. #define VOC_PATH_VOICE2_PASSIVE 3
  1654. #define VOC_PATH_QCHAT_PASSIVE 4
  1655. #define VOC_PATH_VOWLAN_PASSIVE 5
  1656. #define VOC_PATH_VOICEMMODE1_PASSIVE 6
  1657. #define VOC_PATH_VOICEMMODE2_PASSIVE 7
  1658. #define MAX_SESSION_NAME_LEN 32
  1659. #define VOICE_SESSION_NAME "Voice session"
  1660. #define VOIP_SESSION_NAME "VoIP session"
  1661. #define VOLTE_SESSION_NAME "VoLTE session"
  1662. #define VOICE2_SESSION_NAME "Voice2 session"
  1663. #define QCHAT_SESSION_NAME "QCHAT session"
  1664. #define VOWLAN_SESSION_NAME "VoWLAN session"
  1665. #define VOICEMMODE1_NAME "VoiceMMode1"
  1666. #define VOICEMMODE2_NAME "VoiceMMode2"
  1667. #define VOICE2_SESSION_VSID_STR "10DC1000"
  1668. #define QCHAT_SESSION_VSID_STR "10803000"
  1669. #define VOWLAN_SESSION_VSID_STR "10002000"
  1670. #define VOICEMMODE1_VSID_STR "11C05000"
  1671. #define VOICEMMODE2_VSID_STR "11DC5000"
  1672. #define VOICE_SESSION_VSID 0x10C01000
  1673. #define VOICE2_SESSION_VSID 0x10DC1000
  1674. #define VOLTE_SESSION_VSID 0x10C02000
  1675. #define VOIP_SESSION_VSID 0x10004000
  1676. #define QCHAT_SESSION_VSID 0x10803000
  1677. #define VOWLAN_SESSION_VSID 0x10002000
  1678. #define VOICEMMODE1_VSID 0x11C05000
  1679. #define VOICEMMODE2_VSID 0x11DC5000
  1680. #define ALL_SESSION_VSID 0xFFFFFFFF
  1681. #define VSID_MAX ALL_SESSION_VSID
  1682. /* called by alsa driver */
  1683. int voc_set_pp_enable(uint32_t session_id, uint32_t module_id,
  1684. uint32_t enable);
  1685. int voc_get_pp_enable(uint32_t session_id, uint32_t module_id);
  1686. int voc_set_hd_enable(uint32_t session_id, uint32_t enable);
  1687. uint8_t voc_get_tty_mode(uint32_t session_id);
  1688. int voc_set_tty_mode(uint32_t session_id, uint8_t tty_mode);
  1689. int voc_start_voice_call(uint32_t session_id);
  1690. int voc_end_voice_call(uint32_t session_id);
  1691. int voc_standby_voice_call(uint32_t session_id);
  1692. int voc_resume_voice_call(uint32_t session_id);
  1693. int voc_set_lch(uint32_t session_id, enum voice_lch_mode lch_mode);
  1694. int voc_set_rx_vol_step(uint32_t session_id, uint32_t dir, uint32_t vol_step,
  1695. uint32_t ramp_duration);
  1696. int voc_set_tx_mute(uint32_t session_id, uint32_t dir, uint32_t mute,
  1697. uint32_t ramp_duration);
  1698. int voc_set_device_mute(uint32_t session_id, uint32_t dir, uint32_t mute,
  1699. uint32_t ramp_duration);
  1700. int voc_get_rx_device_mute(uint32_t session_id);
  1701. int voc_set_route_flag(uint32_t session_id, uint8_t path_dir, uint8_t set);
  1702. uint8_t voc_get_route_flag(uint32_t session_id, uint8_t path_dir);
  1703. int voc_enable_dtmf_rx_detection(uint32_t session_id, uint32_t enable);
  1704. void voc_disable_dtmf_det_on_active_sessions(void);
  1705. int voc_alloc_cal_shared_memory(void);
  1706. int voc_alloc_voip_shared_memory(void);
  1707. int is_voc_initialized(void);
  1708. int voc_register_vocproc_vol_table(void);
  1709. int voc_deregister_vocproc_vol_table(void);
  1710. int voc_send_cvp_map_vocpcm_memory(uint32_t session_id,
  1711. struct mem_map_table *tp_mem_table,
  1712. phys_addr_t paddr, uint32_t bufsize);
  1713. int voc_send_cvp_unmap_vocpcm_memory(uint32_t session_id);
  1714. int voc_send_cvp_start_vocpcm(uint32_t session_id,
  1715. struct vss_ivpcm_tap_point *vpcm_tp,
  1716. uint32_t no_of_tp);
  1717. int voc_send_cvp_vocpcm_push_buf_evt(uint32_t session_id,
  1718. struct vss_ivpcm_evt_push_buffer_v2_t *push_buff_evt);
  1719. int voc_send_cvp_stop_vocpcm(uint32_t session_id);
  1720. void voc_register_hpcm_evt_cb(hostpcm_cb_fn hostpcm_cb,
  1721. void *private_data);
  1722. void voc_deregister_hpcm_evt_cb(void);
  1723. int voc_map_rtac_block(struct rtac_cal_block_data *cal_block);
  1724. int voc_unmap_rtac_block(uint32_t *mem_map_handle);
  1725. uint32_t voc_get_session_id(char *name);
  1726. int voc_start_playback(uint32_t set, uint16_t port_id);
  1727. int voc_start_record(uint32_t port_id, uint32_t set, uint32_t session_id);
  1728. int voice_get_idx_for_session(u32 session_id);
  1729. int voc_set_ext_ec_ref_port_id(uint16_t port_id, bool state);
  1730. int voc_get_ext_ec_ref_port_id(void);
  1731. int voc_set_ext_ec_ref_media_fmt_info(struct media_format_info *finfo);
  1732. int voc_update_amr_vocoder_rate(uint32_t session_id);
  1733. int voc_disable_device(uint32_t session_id);
  1734. int voc_enable_device(uint32_t session_id);
  1735. void voc_set_destroy_cvd_flag(bool is_destroy_cvd);
  1736. int voc_disable_topology(uint32_t session_id, uint32_t disable);
  1737. int voc_set_device_config(uint32_t session_id, uint8_t path_dir,
  1738. struct media_format_info *finfo);
  1739. uint32_t voice_get_topology(uint32_t topology_idx);
  1740. int voice_set_topology_specific_info(struct voice_data *v,
  1741. uint32_t topology_idx);
  1742. int voc_set_sound_focus(struct sound_focus_param sound_focus_param);
  1743. int voc_get_sound_focus(struct sound_focus_param *soundFocusData);
  1744. int voc_get_source_tracking(struct source_tracking_param *sourceTrackingData);
  1745. int voc_set_afe_sidetone(uint32_t session_id, bool sidetone_enable);
  1746. bool voc_get_afe_sidetone(void);
  1747. #endif