tcl_status_ring.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. /* Copyright (c) 2022, Qualcomm Innovation Center, Inc. All rights reserved.
  2. *
  3. * Permission to use, copy, modify, and/or distribute this software for any
  4. * purpose with or without fee is hereby granted, provided that the above
  5. * copyright notice and this permission notice appear in all copies.
  6. *
  7. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. */
  15. #ifndef _TCL_STATUS_RING_H_
  16. #define _TCL_STATUS_RING_H_
  17. #if !defined(__ASSEMBLER__)
  18. #endif
  19. #define NUM_OF_DWORDS_TCL_STATUS_RING 8
  20. struct tcl_status_ring {
  21. #ifndef WIFI_BIT_ORDER_BIG_ENDIAN
  22. uint32_t gse_ctrl : 4, // [3:0]
  23. ase_fse_sel : 1, // [4:4]
  24. cache_op_res : 2, // [6:5]
  25. index_search_en : 1, // [7:7]
  26. msdu_cnt_n : 24; // [31:8]
  27. uint32_t msdu_byte_cnt_n : 32; // [31:0]
  28. uint32_t msdu_timestmp_n : 32; // [31:0]
  29. uint32_t cmd_meta_data_31_0 : 32; // [31:0]
  30. uint32_t cmd_meta_data_63_32 : 32; // [31:0]
  31. uint32_t hash_indx_val : 20, // [19:0]
  32. cache_set_num : 4, // [23:20]
  33. reserved_5a : 8; // [31:24]
  34. uint32_t reserved_6a : 32; // [31:0]
  35. uint32_t reserved_7a : 20, // [19:0]
  36. ring_id : 8, // [27:20]
  37. looping_count : 4; // [31:28]
  38. #else
  39. uint32_t msdu_cnt_n : 24, // [31:8]
  40. index_search_en : 1, // [7:7]
  41. cache_op_res : 2, // [6:5]
  42. ase_fse_sel : 1, // [4:4]
  43. gse_ctrl : 4; // [3:0]
  44. uint32_t msdu_byte_cnt_n : 32; // [31:0]
  45. uint32_t msdu_timestmp_n : 32; // [31:0]
  46. uint32_t cmd_meta_data_31_0 : 32; // [31:0]
  47. uint32_t cmd_meta_data_63_32 : 32; // [31:0]
  48. uint32_t reserved_5a : 8, // [31:24]
  49. cache_set_num : 4, // [23:20]
  50. hash_indx_val : 20; // [19:0]
  51. uint32_t reserved_6a : 32; // [31:0]
  52. uint32_t looping_count : 4, // [31:28]
  53. ring_id : 8, // [27:20]
  54. reserved_7a : 20; // [19:0]
  55. #endif
  56. };
  57. /* Description GSE_CTRL
  58. GSE control operations. This includes cache operations and
  59. table entry statistics read/clear operation.
  60. <enum 0 rd_stat> Report or Read statistics
  61. <enum 1 srch_dis> Search disable. Report only Hash
  62. <enum 2 Wr_bk_single> Write Back single entry
  63. <enum 3 wr_bk_all> Write Back entire cache entry
  64. <enum 4 inval_single> Invalidate single cache entry
  65. <enum 5 inval_all> Invalidate entire cache
  66. <enum 6 wr_bk_inval_single> Write back and Invalidate single
  67. entry in cache
  68. <enum 7 wr_bk_inval_all> write back and invalidate entire
  69. cache
  70. <enum 8 clr_stat_single> Clear statistics for single entry
  71. <legal 0-8>
  72. Rest of the values reserved.
  73. For all single entry control operations (write back, Invalidate
  74. or both)Statistics will be reported
  75. */
  76. #define TCL_STATUS_RING_GSE_CTRL_OFFSET 0x00000000
  77. #define TCL_STATUS_RING_GSE_CTRL_LSB 0
  78. #define TCL_STATUS_RING_GSE_CTRL_MSB 3
  79. #define TCL_STATUS_RING_GSE_CTRL_MASK 0x0000000f
  80. /* Description ASE_FSE_SEL
  81. Search Engine for which operation is done.
  82. 1'b0: Address Search Engine Result
  83. 1'b1: Flow Search Engine result
  84. */
  85. #define TCL_STATUS_RING_ASE_FSE_SEL_OFFSET 0x00000000
  86. #define TCL_STATUS_RING_ASE_FSE_SEL_LSB 4
  87. #define TCL_STATUS_RING_ASE_FSE_SEL_MSB 4
  88. #define TCL_STATUS_RING_ASE_FSE_SEL_MASK 0x00000010
  89. /* Description CACHE_OP_RES
  90. Cache operation result. Following are results of cache operation.
  91. <enum 0 op_done> Operation successful
  92. <enum 1 not_fnd> Entry not found in Table
  93. <enum 2 timeout_er> Timeout Error
  94. <legal 0-2>
  95. */
  96. #define TCL_STATUS_RING_CACHE_OP_RES_OFFSET 0x00000000
  97. #define TCL_STATUS_RING_CACHE_OP_RES_LSB 5
  98. #define TCL_STATUS_RING_CACHE_OP_RES_MSB 6
  99. #define TCL_STATUS_RING_CACHE_OP_RES_MASK 0x00000060
  100. /* Description INDEX_SEARCH_EN
  101. When this bit is set to 1 control_buffer_addr[19:0] will
  102. be considered as index of the AST or Flow table and GSE
  103. commands will be executed accordingly on the entry pointed
  104. by the index.
  105. This feature is disabled by setting this bit to 0.
  106. <enum 0 index_based_cmd_disable>
  107. <enum 1 index_based_cmd_enable>
  108. <legal all>
  109. */
  110. #define TCL_STATUS_RING_INDEX_SEARCH_EN_OFFSET 0x00000000
  111. #define TCL_STATUS_RING_INDEX_SEARCH_EN_LSB 7
  112. #define TCL_STATUS_RING_INDEX_SEARCH_EN_MSB 7
  113. #define TCL_STATUS_RING_INDEX_SEARCH_EN_MASK 0x00000080
  114. /* Description MSDU_CNT_N
  115. MSDU count of Entry. Valid when GSE_CTRL is 4'b0111 and
  116. 4'b1000
  117. */
  118. #define TCL_STATUS_RING_MSDU_CNT_N_OFFSET 0x00000000
  119. #define TCL_STATUS_RING_MSDU_CNT_N_LSB 8
  120. #define TCL_STATUS_RING_MSDU_CNT_N_MSB 31
  121. #define TCL_STATUS_RING_MSDU_CNT_N_MASK 0xffffff00
  122. /* Description MSDU_BYTE_CNT_N
  123. MSDU byte count for entry 1. Valid when GSE_CTRL is 4'b0111
  124. and 4'b1000
  125. */
  126. #define TCL_STATUS_RING_MSDU_BYTE_CNT_N_OFFSET 0x00000004
  127. #define TCL_STATUS_RING_MSDU_BYTE_CNT_N_LSB 0
  128. #define TCL_STATUS_RING_MSDU_BYTE_CNT_N_MSB 31
  129. #define TCL_STATUS_RING_MSDU_BYTE_CNT_N_MASK 0xffffffff
  130. /* Description MSDU_TIMESTMP_N
  131. MSDU timestamp for entry 1. Valid when GSE_CTRL is 4'b0111
  132. and 4'b1000
  133. */
  134. #define TCL_STATUS_RING_MSDU_TIMESTMP_N_OFFSET 0x00000008
  135. #define TCL_STATUS_RING_MSDU_TIMESTMP_N_LSB 0
  136. #define TCL_STATUS_RING_MSDU_TIMESTMP_N_MSB 31
  137. #define TCL_STATUS_RING_MSDU_TIMESTMP_N_MASK 0xffffffff
  138. /* Description CMD_META_DATA_31_0
  139. Meta data from input ring
  140. <legal all>
  141. */
  142. #define TCL_STATUS_RING_CMD_META_DATA_31_0_OFFSET 0x0000000c
  143. #define TCL_STATUS_RING_CMD_META_DATA_31_0_LSB 0
  144. #define TCL_STATUS_RING_CMD_META_DATA_31_0_MSB 31
  145. #define TCL_STATUS_RING_CMD_META_DATA_31_0_MASK 0xffffffff
  146. /* Description CMD_META_DATA_63_32
  147. Meta data from input ring
  148. <legal all>
  149. */
  150. #define TCL_STATUS_RING_CMD_META_DATA_63_32_OFFSET 0x00000010
  151. #define TCL_STATUS_RING_CMD_META_DATA_63_32_LSB 0
  152. #define TCL_STATUS_RING_CMD_META_DATA_63_32_MSB 31
  153. #define TCL_STATUS_RING_CMD_META_DATA_63_32_MASK 0xffffffff
  154. /* Description HASH_INDX_VAL
  155. Index of entry in the table in case of search pass (or)
  156. Hash value of the entry in table in case of search failed
  157. or search disable.
  158. <legal all>
  159. */
  160. #define TCL_STATUS_RING_HASH_INDX_VAL_OFFSET 0x00000014
  161. #define TCL_STATUS_RING_HASH_INDX_VAL_LSB 0
  162. #define TCL_STATUS_RING_HASH_INDX_VAL_MSB 19
  163. #define TCL_STATUS_RING_HASH_INDX_VAL_MASK 0x000fffff
  164. /* Description CACHE_SET_NUM
  165. Cache set number copied from TCL_GSE_CMD
  166. */
  167. #define TCL_STATUS_RING_CACHE_SET_NUM_OFFSET 0x00000014
  168. #define TCL_STATUS_RING_CACHE_SET_NUM_LSB 20
  169. #define TCL_STATUS_RING_CACHE_SET_NUM_MSB 23
  170. #define TCL_STATUS_RING_CACHE_SET_NUM_MASK 0x00f00000
  171. /* Description RESERVED_5A
  172. <legal 0>
  173. */
  174. #define TCL_STATUS_RING_RESERVED_5A_OFFSET 0x00000014
  175. #define TCL_STATUS_RING_RESERVED_5A_LSB 24
  176. #define TCL_STATUS_RING_RESERVED_5A_MSB 31
  177. #define TCL_STATUS_RING_RESERVED_5A_MASK 0xff000000
  178. /* Description RESERVED_6A
  179. <legal 0>
  180. */
  181. #define TCL_STATUS_RING_RESERVED_6A_OFFSET 0x00000018
  182. #define TCL_STATUS_RING_RESERVED_6A_LSB 0
  183. #define TCL_STATUS_RING_RESERVED_6A_MSB 31
  184. #define TCL_STATUS_RING_RESERVED_6A_MASK 0xffffffff
  185. /* Description RESERVED_7A
  186. <legal 0>
  187. */
  188. #define TCL_STATUS_RING_RESERVED_7A_OFFSET 0x0000001c
  189. #define TCL_STATUS_RING_RESERVED_7A_LSB 0
  190. #define TCL_STATUS_RING_RESERVED_7A_MSB 19
  191. #define TCL_STATUS_RING_RESERVED_7A_MASK 0x000fffff
  192. /* Description RING_ID
  193. The buffer pointer ring ID.
  194. Helps with debugging when dumping ring contents.
  195. <legal all>
  196. */
  197. #define TCL_STATUS_RING_RING_ID_OFFSET 0x0000001c
  198. #define TCL_STATUS_RING_RING_ID_LSB 20
  199. #define TCL_STATUS_RING_RING_ID_MSB 27
  200. #define TCL_STATUS_RING_RING_ID_MASK 0x0ff00000
  201. /* Description LOOPING_COUNT
  202. A count value that indicates the number of times the producer
  203. of entries into the Ring has looped around the ring.
  204. At initialization time, this value is set to 0. On the first
  205. loop, this value is set to 1. After the max value is reached
  206. allowed by the number of bits for this field, the count
  207. value continues with 0 again.
  208. In case SW is the consumer of the ring entries, it can use
  209. this field to figure out up to where the producer of entries
  210. has created new entries. This eliminates the need to check
  211. where the "head pointer' of the ring is located once the
  212. SW starts processing an interrupt indicating that new entries
  213. have been put into this ring...
  214. Also note that SW if it wants only needs to look at the
  215. LSB bit of this count value.
  216. <legal all>
  217. */
  218. #define TCL_STATUS_RING_LOOPING_COUNT_OFFSET 0x0000001c
  219. #define TCL_STATUS_RING_LOOPING_COUNT_LSB 28
  220. #define TCL_STATUS_RING_LOOPING_COUNT_MSB 31
  221. #define TCL_STATUS_RING_LOOPING_COUNT_MASK 0xf0000000
  222. #endif // TCL_STATUS_RING