apr_us.h 4.6 KB

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