apr_us.h 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. /* Copyright (c) 2011-2014, 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. */
  13. #ifndef __APR_US_H__
  14. #define __APR_US_H__
  15. #include <ipc/apr.h>
  16. /* ======================================================================= */
  17. /* Session Level commands */
  18. #define USM_SESSION_CMD_RUN 0x00012306
  19. struct usm_stream_cmd_run {
  20. struct apr_hdr hdr;
  21. u32 flags;
  22. u32 msw_ts;
  23. u32 lsw_ts;
  24. } __packed;
  25. /* Stream level commands */
  26. #define USM_STREAM_CMD_OPEN_READ 0x00012309
  27. struct usm_stream_cmd_open_read {
  28. struct apr_hdr hdr;
  29. u32 uMode;
  30. u32 src_endpoint;
  31. u32 pre_proc_top;
  32. u32 format;
  33. } __packed;
  34. #define USM_STREAM_CMD_OPEN_WRITE 0x00011271
  35. struct usm_stream_cmd_open_write {
  36. struct apr_hdr hdr;
  37. u32 format;
  38. } __packed;
  39. #define USM_STREAM_CMD_CLOSE 0x0001230A
  40. #define USM_STREAM_CMD_SET_PARAM 0x00012731
  41. struct usm_stream_cmd_set_param {
  42. struct apr_hdr hdr;
  43. u32 buf_addr_lsw;
  44. u32 buf_addr_msw;
  45. u32 mem_map_handle;
  46. u32 buf_size;
  47. u32 module_id;
  48. u32 param_id;
  49. } __packed;
  50. #define USM_STREAM_CMD_GET_PARAM 0x00012732
  51. struct usm_stream_cmd_get_param {
  52. struct apr_hdr hdr;
  53. u32 buf_addr_lsw;
  54. u32 buf_addr_msw;
  55. u32 mem_map_handle;
  56. u32 buf_size;
  57. u32 module_id;
  58. u32 param_id;
  59. } __packed;
  60. /* Encoder configuration definitions */
  61. #define USM_STREAM_CMD_SET_ENC_PARAM 0x0001230B
  62. /* Decoder configuration definitions */
  63. #define USM_DATA_CMD_MEDIA_FORMAT_UPDATE 0x00011272
  64. /* Encoder/decoder configuration block */
  65. #define USM_PARAM_ID_ENCDEC_ENC_CFG_BLK 0x0001230D
  66. /* Max number of static located ports (bytes) */
  67. #define USM_MAX_PORT_NUMBER 8
  68. /* Max number of static located transparent data (bytes) */
  69. #define USM_MAX_CFG_DATA_SIZE 100
  70. /* Parameter structures used in USM_STREAM_CMD_SET_ENCDEC_PARAM command */
  71. /* common declarations */
  72. struct usm_cfg_common {
  73. u16 ch_cfg;
  74. u16 bits_per_sample;
  75. u32 sample_rate;
  76. u32 dev_id;
  77. u8 data_map[USM_MAX_PORT_NUMBER];
  78. } __packed;
  79. struct us_encdec_cfg {
  80. u32 format_id;
  81. struct usm_cfg_common cfg_common;
  82. u16 params_size;
  83. u8 *params;
  84. } __packed;
  85. /* Start/stop US signal detection */
  86. #define USM_SESSION_CMD_SIGNAL_DETECT_MODE 0x00012719
  87. struct usm_session_cmd_detect_info {
  88. struct apr_hdr hdr;
  89. u32 detect_mode;
  90. u32 skip_interval;
  91. u32 algorithm_cfg_size;
  92. } __packed;
  93. /* US signal detection result */
  94. #define USM_SESSION_EVENT_SIGNAL_DETECT_RESULT 0x00012720
  95. /* ======================================================================= */
  96. /* Session Level commands */
  97. #define USM_CMD_SHARED_MEM_MAP_REGION 0x00012728
  98. struct usm_cmd_memory_map_region {
  99. struct apr_hdr hdr;
  100. u16 mempool_id;
  101. u16 num_regions;
  102. u32 flags;
  103. u32 shm_addr_lsw;
  104. u32 shm_addr_msw;
  105. u32 mem_size_bytes;
  106. } __packed;
  107. #define USM_CMDRSP_SHARED_MEM_MAP_REGION 0x00012729
  108. struct usm_cmdrsp_memory_map_region {
  109. u32 mem_map_handle;
  110. } __packed;
  111. #define USM_CMD_SHARED_MEM_UNMAP_REGION 0x0001272A
  112. struct usm_cmd_memory_unmap_region {
  113. struct apr_hdr hdr;
  114. u32 mem_map_handle;
  115. } __packed;
  116. #define USM_DATA_CMD_READ 0x00012724
  117. struct usm_stream_cmd_read {
  118. struct apr_hdr hdr;
  119. u32 buf_addr_lsw;
  120. u32 buf_addr_msw;
  121. u32 mem_map_handle;
  122. u32 buf_size;
  123. u32 seq_id;
  124. u32 counter;
  125. } __packed;
  126. #define USM_DATA_EVENT_READ_DONE 0x00012725
  127. #define USM_DATA_CMD_WRITE 0x00012726
  128. struct usm_stream_cmd_write {
  129. struct apr_hdr hdr;
  130. u32 buf_addr_lsw;
  131. u32 buf_addr_msw;
  132. u32 mem_map_handle;
  133. u32 buf_size;
  134. u32 seq_id;
  135. u32 res0;
  136. u32 res1;
  137. u32 res2;
  138. } __packed;
  139. #define USM_DATA_EVENT_WRITE_DONE 0x00012727
  140. struct usm_stream_media_format_update {
  141. struct apr_hdr hdr;
  142. u32 format_id;
  143. /* <cfg_size> = sizeof(usm_cfg_common)+|transp_data| */
  144. u32 cfg_size;
  145. struct usm_cfg_common cfg_common;
  146. /* Transparent configuration data for specific encoder */
  147. u8 transp_data[USM_MAX_CFG_DATA_SIZE];
  148. } __packed;
  149. struct usm_encode_cfg_blk {
  150. u32 frames_per_buf;
  151. u32 format_id;
  152. /* <cfg_size> = sizeof(usm_cfg_common)+|transp_data| */
  153. u32 cfg_size;
  154. struct usm_cfg_common cfg_common;
  155. /* Transparent configuration data for specific encoder */
  156. u8 transp_data[USM_MAX_CFG_DATA_SIZE];
  157. } __packed;
  158. struct usm_stream_cmd_encdec_cfg_blk {
  159. struct apr_hdr hdr;
  160. u32 param_id;
  161. u32 param_size;
  162. struct usm_encode_cfg_blk enc_blk;
  163. } __packed;
  164. #endif /* __APR_US_H__ */