hal_rx.h 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923
  1. /*
  2. * Copyright (c) 2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef _HAL_RX_H_
  19. #define _HAL_RX_H_
  20. #include <hal_internal.h>
  21. /**
  22. * enum hal_reo_error_code: Enum which encapsulates "reo_push_reason"
  23. *
  24. * @ HAL_REO_ERROR_DETECTED: Packets arrived because of an error detected
  25. * @ HAL_REO_ROUTING_INSTRUCTION: Packets arrived because of REO routing
  26. */
  27. enum hal_reo_error_status {
  28. HAL_REO_ERROR_DETECTED = 0,
  29. HAL_REO_ROUTING_INSTRUCTION = 1,
  30. };
  31. /**
  32. * @msdu_flags: [0] first_msdu_in_mpdu
  33. * [1] last_msdu_in_mpdu
  34. * [2] msdu_continuation - MSDU spread across buffers
  35. * [23] sa_is_valid - SA match in peer table
  36. * [24] sa_idx_timeout - Timeout while searching for SA match
  37. * [25] da_is_valid - Used to identtify intra-bss forwarding
  38. * [26] da_is_MCBC
  39. * [27] da_idx_timeout - Timeout while searching for DA match
  40. *
  41. */
  42. struct hal_rx_msdu_desc_info {
  43. uint32_t msdu_flags;
  44. uint16_t msdu_len; /* 14 bits for length */
  45. };
  46. /**
  47. * enum hal_rx_msdu_desc_flags: Enum for flags in MSDU_DESC_INFO
  48. *
  49. * @ HAL_MSDU_F_FIRST_MSDU_IN_MPDU: First MSDU in MPDU
  50. * @ HAL_MSDU_F_LAST_MSDU_IN_MPDU: Last MSDU in MPDU
  51. * @ HAL_MSDU_F_MSDU_CONTINUATION: MSDU continuation
  52. * @ HAL_MSDU_F_SA_IS_VALID: Found match for SA in AST
  53. * @ HAL_MSDU_F_SA_IDX_TIMEOUT: AST search for SA timed out
  54. * @ HAL_MSDU_F_DA_IS_VALID: Found match for DA in AST
  55. * @ HAL_MSDU_F_DA_IS_MCBC: DA is MC/BC address
  56. * @ HAL_MSDU_F_DA_IDX_TIMEOUT: AST search for DA timed out
  57. */
  58. enum hal_rx_msdu_desc_flags {
  59. HAL_MSDU_F_FIRST_MSDU_IN_MPDU = (0x1 << 0),
  60. HAL_MSDU_F_LAST_MSDU_IN_MPDU = (0x1 << 1),
  61. HAL_MSDU_F_MSDU_CONTINUATION = (0x1 << 2),
  62. HAL_MSDU_F_SA_IS_VALID = (0x1 << 23),
  63. HAL_MSDU_F_SA_IDX_TIMEOUT = (0x1 << 24),
  64. HAL_MSDU_F_DA_IS_VALID = (0x1 << 25),
  65. HAL_MSDU_F_DA_IS_MCBC = (0x1 << 26),
  66. HAL_MSDU_F_DA_IDX_TIMEOUT = (0x1 << 27)
  67. };
  68. /*
  69. * @msdu_count: no. of msdus in the MPDU
  70. * @mpdu_seq: MPDU sequence number
  71. * @mpdu_flags [0] Fragment flag
  72. * [1] MPDU_retry_bit
  73. * [2] AMPDU flag
  74. * [3] raw_ampdu
  75. * @peer_meta_data: Upper bits containing peer id, vdev id
  76. */
  77. struct hal_rx_mpdu_desc_info {
  78. uint16_t msdu_count;
  79. uint16_t mpdu_seq; /* 12 bits for length */
  80. uint32_t mpdu_flags;
  81. uint32_t peer_meta_data; /* sw progamed meta-data:MAC Id & peer Id */
  82. };
  83. /**
  84. * enum hal_rx_mpdu_desc_flags: Enum for flags in MPDU_DESC_INFO
  85. *
  86. * @ HAL_MPDU_F_FRAGMENT: Fragmented MPDU (802.11 fragemtation)
  87. * @ HAL_MPDU_F_RETRY_BIT: Retry bit is set in FC of MPDU
  88. * @ HAL_MPDU_F_AMPDU_FLAG: MPDU received as part of A-MPDU
  89. * @ HAL_MPDU_F_RAW_AMPDU: MPDU is a Raw MDPU
  90. */
  91. enum hal_rx_mpdu_desc_flags {
  92. HAL_MPDU_F_FRAGMENT = (0x1 << 20),
  93. HAL_MPDU_F_RETRY_BIT = (0x1 << 21),
  94. HAL_MPDU_F_AMPDU_FLAG = (0x1 << 22),
  95. HAL_MPDU_F_RAW_AMPDU = (0x1 << 30)
  96. };
  97. /**
  98. * enum hal_rx_ret_buf_manager: Enum for return_buffer_manager field in
  99. * BUFFER_ADDR_INFO structure
  100. *
  101. * @ HAL_RX_BUF_RBM_WBM_IDLE_BUF_LIST: Buffer returned to WBM idle buffer list
  102. * @ HAL_RX_BUF_RBM_WBM_IDLE_DESC_LIST: Descriptor returned to WBM idle
  103. * descriptor list
  104. * @ HAL_RX_BUF_RBM_FW_BM: Buffer returned to FW
  105. * @ HAL_RX_BUF_RBM_SW0_BM: For Tx completion -- returned to host
  106. * @ HAL_RX_BUF_RBM_SW1_BM: For Tx completion -- returned to host
  107. * @ HAL_RX_BUF_RBM_SW2_BM: For Tx completion -- returned to host
  108. * @ HAL_RX_BUF_RBM_SW3_BM: For Rx release -- returned to host
  109. */
  110. enum hal_rx_ret_buf_manager {
  111. HAL_RX_BUF_RBM_WBM_IDLE_BUF_LIST = 0,
  112. HAL_RX_BUF_RBM_WBM_IDLE_DESC_LIST = 1,
  113. HAL_RX_BUF_RBM_FW_BM = 2,
  114. HAL_RX_BUF_RBM_SW0_BM = 3,
  115. HAL_RX_BUF_RBM_SW1_BM = 4,
  116. HAL_RX_BUF_RBM_SW2_BM = 5,
  117. HAL_RX_BUF_RBM_SW3_BM = 6,
  118. };
  119. /*
  120. * Given the offset of a field in bytes, returns uint8_t *
  121. */
  122. #define _OFFSET_TO_BYTE_PTR(_ptr, _off_in_bytes) \
  123. (((uint8_t *)(_ptr)) + (_off_in_bytes))
  124. /*
  125. * Given the offset of a field in bytes, returns uint32_t *
  126. */
  127. #define _OFFSET_TO_WORD_PTR(_ptr, _off_in_bytes) \
  128. (((uint32_t *)(_ptr)) + ((_off_in_bytes) >> 2))
  129. #define _HAL_MS(_word, _mask, _shift) \
  130. (((_word) & (_mask)) >> (_shift))
  131. /*
  132. * macro to set the LSW of the nbuf data physical address
  133. * to the rxdma ring entry
  134. */
  135. #define HAL_RXDMA_PADDR_LO_SET(buff_addr_info, paddr_lo) \
  136. ((*(((unsigned int *) buff_addr_info) + \
  137. (BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_OFFSET >> 2))) |= \
  138. (paddr_lo << BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_LSB) & \
  139. BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_MASK)
  140. /*
  141. * macro to set the LSB of MSW of the nbuf data physical address
  142. * to the rxdma ring entry
  143. */
  144. #define HAL_RXDMA_PADDR_HI_SET(buff_addr_info, paddr_hi) \
  145. ((*(((unsigned int *) buff_addr_info) + \
  146. (BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_OFFSET >> 2))) |= \
  147. (paddr_hi << BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_LSB) & \
  148. BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_MASK)
  149. /*
  150. * macro to set the cookie into the rxdma ring entry
  151. */
  152. #define HAL_RXDMA_COOKIE_SET(buff_addr_info, cookie) \
  153. ((*(((unsigned int *) buff_addr_info) + \
  154. (BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_OFFSET >> 2))) |= \
  155. (cookie << BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_LSB) & \
  156. BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_MASK)
  157. /*
  158. * macro to set the manager into the rxdma ring entry
  159. */
  160. #define HAL_RXDMA_MANAGER_SET(buff_addr_info, manager) \
  161. ((*(((unsigned int *) buff_addr_info) + \
  162. (BUFFER_ADDR_INFO_1_RETURN_BUFFER_MANAGER_OFFSET >> 2))) |= \
  163. (manager << BUFFER_ADDR_INFO_1_RETURN_BUFFER_MANAGER_LSB) & \
  164. BUFFER_ADDR_INFO_1_RETURN_BUFFER_MANAGER_MASK)
  165. #define HAL_RX_ERROR_STATUS_GET(reo_desc) \
  166. (_HAL_MS((*_OFFSET_TO_WORD_PTR(reo_desc, \
  167. REO_DESTINATION_RING_7_REO_PUSH_REASON_OFFSET)),\
  168. REO_DESTINATION_RING_7_REO_PUSH_REASON_MASK, \
  169. REO_DESTINATION_RING_7_REO_PUSH_REASON_LSB))
  170. #define HAL_RX_BUF_COOKIE_GET(buff_addr_info) \
  171. (_HAL_MS((*_OFFSET_TO_WORD_PTR(buff_addr_info, \
  172. BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_OFFSET)), \
  173. BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_MASK, \
  174. BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_LSB))
  175. #define HAL_RX_BUFFER_ADDR_39_32_GET(buff_addr_info) \
  176. (_HAL_MS((*_OFFSET_TO_WORD_PTR(buff_addr_info, \
  177. BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_OFFSET)), \
  178. BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_MASK, \
  179. BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_LSB))
  180. #define HAL_RX_BUFFER_ADDR_31_0_GET(buff_addr_info) \
  181. (_HAL_MS((*_OFFSET_TO_WORD_PTR(buff_addr_info, \
  182. BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_OFFSET)), \
  183. BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_MASK, \
  184. BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_LSB))
  185. #define HAL_RX_BUF_RBM_GET(buff_addr_info) \
  186. (_HAL_MS((*_OFFSET_TO_WORD_PTR(buff_addr_info, \
  187. BUFFER_ADDR_INFO_1_RETURN_BUFFER_MANAGER_OFFSET)),\
  188. BUFFER_ADDR_INFO_1_RETURN_BUFFER_MANAGER_MASK, \
  189. BUFFER_ADDR_INFO_1_RETURN_BUFFER_MANAGER_LSB))
  190. /* TODO: Convert the following structure fields accesseses to offsets */
  191. #define HAL_RX_REO_BUFFER_ADDR_39_32_GET(reo_desc) \
  192. (HAL_RX_BUFFER_ADDR_39_32_GET(& \
  193. (((struct reo_destination_ring *) \
  194. reo_desc)->buf_or_link_desc_addr_info)))
  195. #define HAL_RX_REO_BUFFER_ADDR_31_0_GET(reo_desc) \
  196. (HAL_RX_BUFFER_ADDR_31_0_GET(& \
  197. (((struct reo_destination_ring *) \
  198. reo_desc)->buf_or_link_desc_addr_info)))
  199. #define HAL_RX_REO_BUF_COOKIE_GET(reo_desc) \
  200. (HAL_RX_BUF_COOKIE_GET(& \
  201. (((struct reo_destination_ring *) \
  202. reo_desc)->buf_or_link_desc_addr_info)))
  203. #define HAL_RX_MPDU_SEQUENCE_NUMBER_GET(mpdu_info_ptr) \
  204. ((mpdu_info_ptr \
  205. [RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER_OFFSET >> 2] & \
  206. RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER_MASK) >> \
  207. RX_MPDU_DESC_INFO_0_MPDU_SEQUENCE_NUMBER_LSB)
  208. #define HAL_RX_MPDU_PEER_META_DATA_GET(mpdu_info_ptr) \
  209. ((mpdu_info_ptr \
  210. [RX_MPDU_DESC_INFO_1_PEER_META_DATA_OFFSET >> 2] & \
  211. RX_MPDU_DESC_INFO_1_PEER_META_DATA_MASK) >> \
  212. RX_MPDU_DESC_INFO_1_PEER_META_DATA_LSB)
  213. #define HAL_RX_MPDU_MSDU_COUNT_GET(mpdu_info_ptr) \
  214. ((mpdu_info_ptr[RX_MPDU_DESC_INFO_0_MSDU_COUNT_OFFSET >> 2] & \
  215. RX_MPDU_DESC_INFO_0_MSDU_COUNT_MASK) >> \
  216. RX_MPDU_DESC_INFO_0_MSDU_COUNT_LSB)
  217. #define HAL_RX_MPDU_FRAGMENT_FLAG_GET(mpdu_info_ptr) \
  218. (mpdu_info_ptr[RX_MPDU_DESC_INFO_0_FRAGMENT_FLAG_OFFSET >> 2] & \
  219. RX_MPDU_DESC_INFO_0_FRAGMENT_FLAG_MASK)
  220. #define HAL_RX_MPDU_RETRY_BIT_GET(mpdu_info_ptr) \
  221. (mpdu_info_ptr[RX_MPDU_DESC_INFO_0_MPDU_RETRY_BIT_OFFSET >> 2] & \
  222. RX_MPDU_DESC_INFO_0_MPDU_RETRY_BIT_MASK)
  223. #define HAL_RX_MPDU_AMPDU_FLAG_GET(mpdu_info_ptr) \
  224. (mpdu_info_ptr[RX_MPDU_DESC_INFO_0_AMPDU_FLAG_OFFSET >> 2] & \
  225. RX_MPDU_DESC_INFO_0_AMPDU_FLAG_MASK)
  226. #define HAL_RX_MPDU_RAW_MPDU_GET(mpdu_info_ptr) \
  227. (mpdu_info_ptr[RX_MPDU_DESC_INFO_0_RAW_MPDU_OFFSET >> 2] & \
  228. RX_MPDU_DESC_INFO_0_RAW_MPDU_MASK)
  229. #define HAL_RX_MPDU_FLAGS_GET(mpdu_info_ptr) \
  230. (HAL_RX_MPDU_FRAGMENT_FLAG_GET(mpdu_info_ptr) | \
  231. HAL_RX_MPDU_RETRY_BIT_GET(mpdu_info_ptr) | \
  232. HAL_RX_MPDU_AMPDU_FLAG_GET(mpdu_info_ptr) | \
  233. HAL_RX_MPDU_RAW_MPDU_GET(mpdu_info_ptr))
  234. #define HAL_RX_MSDU_PKT_LENGTH_GET(msdu_info_ptr) \
  235. (_HAL_MS((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  236. RX_MSDU_DESC_INFO_0_MSDU_LENGTH_OFFSET)), \
  237. RX_MSDU_DESC_INFO_0_MSDU_LENGTH_MASK, \
  238. RX_MSDU_DESC_INFO_0_MSDU_LENGTH_LSB))
  239. /*
  240. * NOTE: None of the following _GET macros need a right
  241. * shift by the corresponding _LSB. This is because, they are
  242. * finally taken and "OR'ed" into a single word again.
  243. */
  244. #define HAL_RX_FIRST_MSDU_IN_MPDU_FLAG_GET(msdu_info_ptr) \
  245. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  246. RX_MSDU_DESC_INFO_0_FIRST_MSDU_IN_MPDU_FLAG_OFFSET)) & \
  247. RX_MSDU_DESC_INFO_0_FIRST_MSDU_IN_MPDU_FLAG_MASK)
  248. #define HAL_RX_LAST_MSDU_IN_MPDU_FLAG_GET(msdu_info_ptr) \
  249. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  250. RX_MSDU_DESC_INFO_0_LAST_MSDU_IN_MPDU_FLAG_OFFSET)) & \
  251. RX_MSDU_DESC_INFO_0_LAST_MSDU_IN_MPDU_FLAG_MASK)
  252. #define HAL_RX_MSDU_CONTINUATION_FLAG_GET(msdu_info_ptr) \
  253. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  254. RX_MSDU_DESC_INFO_0_MSDU_CONTINUATION_OFFSET)) & \
  255. RX_MSDU_DESC_INFO_0_MSDU_CONTINUATION_MASK)
  256. #define HAL_RX_MSDU_SA_IS_VALID_FLAG_GET(msdu_info_ptr) \
  257. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  258. RX_MSDU_DESC_INFO_0_SA_IS_VALID_OFFSET)) & \
  259. RX_MSDU_DESC_INFO_0_SA_IS_VALID_MASK)
  260. #define HAL_RX_MSDU_SA_IDX_TIMEOUT_FLAG_GET(msdu_info_ptr) \
  261. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  262. RX_MSDU_DESC_INFO_0_SA_IDX_TIMEOUT_OFFSET)) & \
  263. RX_MSDU_DESC_INFO_0_SA_IDX_TIMEOUT_MASK)
  264. #define HAL_RX_MSDU_DA_IS_VALID_FLAG_GET(msdu_info_ptr) \
  265. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  266. RX_MSDU_DESC_INFO_0_DA_IS_VALID_OFFSET)) & \
  267. RX_MSDU_DESC_INFO_0_DA_IS_VALID_MASK)
  268. #define HAL_RX_MSDU_DA_IS_MCBC_FLAG_GET(msdu_info_ptr) \
  269. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  270. RX_MSDU_DESC_INFO_0_DA_IS_MCBC_OFFSET)) & \
  271. RX_MSDU_DESC_INFO_0_DA_IS_MCBC_MASK)
  272. #define HAL_RX_MSDU_DA_IDX_TIMEOUT_FLAG_GET(msdu_info_ptr) \
  273. ((*_OFFSET_TO_WORD_PTR(msdu_info_ptr, \
  274. RX_MSDU_DESC_INFO_0_DA_IDX_TIMEOUT_OFFSET)) & \
  275. RX_MSDU_DESC_INFO_0_DA_IDX_TIMEOUT_MASK)
  276. #define HAL_RX_MSDU_FLAGS_GET(msdu_info_ptr) \
  277. (HAL_RX_FIRST_MSDU_IN_MPDU_FLAG_GET(msdu_info_ptr) | \
  278. HAL_RX_LAST_MSDU_IN_MPDU_FLAG_GET(msdu_info_ptr) | \
  279. HAL_RX_MSDU_CONTINUATION_FLAG_GET(msdu_info_ptr) | \
  280. HAL_RX_MSDU_SA_IS_VALID_FLAG_GET(msdu_info_ptr) | \
  281. HAL_RX_MSDU_SA_IDX_TIMEOUT_FLAG_GET(msdu_info_ptr) | \
  282. HAL_RX_MSDU_DA_IS_VALID_FLAG_GET(msdu_info_ptr) | \
  283. HAL_RX_MSDU_DA_IS_MCBC_FLAG_GET(msdu_info_ptr) | \
  284. HAL_RX_MSDU_DA_IDX_TIMEOUT_FLAG_GET(msdu_info_ptr))
  285. #define HAL_RX_MSDU_DESC_INFO_GET(msdu_details_ptr) \
  286. ((struct rx_msdu_desc_info *) \
  287. _OFFSET_TO_BYTE_PTR(msdu_details_ptr, \
  288. RX_MSDU_DETAILS_2_RX_MSDU_DESC_INFO_RX_MSDU_DESC_INFO_DETAILS_OFFSET))
  289. static inline void hal_rx_mpdu_info_get(void *desc_addr,
  290. struct hal_rx_mpdu_desc_info *mpdu_desc_info)
  291. {
  292. struct reo_destination_ring *reo_dst_ring;
  293. uint32_t mpdu_info[NUM_OF_DWORDS_RX_MPDU_DESC_INFO];
  294. reo_dst_ring = (struct reo_destination_ring *) desc_addr;
  295. qdf_mem_copy(&mpdu_info,
  296. (const void *)&reo_dst_ring->rx_mpdu_desc_info_details,
  297. sizeof(struct rx_mpdu_desc_info));
  298. mpdu_desc_info->msdu_count = HAL_RX_MPDU_MSDU_COUNT_GET(mpdu_info);
  299. mpdu_desc_info->mpdu_seq = HAL_RX_MPDU_SEQUENCE_NUMBER_GET(mpdu_info);
  300. mpdu_desc_info->mpdu_flags = HAL_RX_MPDU_FLAGS_GET(mpdu_info);
  301. mpdu_desc_info->peer_meta_data =
  302. HAL_RX_MPDU_PEER_META_DATA_GET(mpdu_info);
  303. }
  304. /*
  305. * @ hal_rx_msdu_desc_info_get: Gets the flags related to MSDU desciptor.
  306. * @ Specifically flags needed are:
  307. * @ first_msdu_in_mpdu, last_msdu_in_mpdu,
  308. * @ msdu_continuation, sa_is_valid,
  309. * @ sa_idx_timeout, da_is_valid, da_idx_timeout,
  310. * @ da_is_MCBC
  311. *
  312. * @ hal_rx_desc_cookie: Opaque cookie pointer used by HAL to get to the current
  313. * @ descriptor
  314. * @ msdu_desc_info: Holds MSDU descriptor info from HAL Rx descriptor
  315. * @ Return: void
  316. */
  317. static inline void hal_rx_msdu_desc_info_get(void *desc_addr,
  318. struct hal_rx_msdu_desc_info *msdu_desc_info)
  319. {
  320. struct reo_destination_ring *reo_dst_ring;
  321. uint32_t msdu_info[NUM_OF_DWORDS_RX_MSDU_DESC_INFO];
  322. reo_dst_ring = (struct reo_destination_ring *) desc_addr;
  323. qdf_mem_copy(&msdu_info,
  324. (const void *)&reo_dst_ring->rx_msdu_desc_info_details,
  325. sizeof(struct rx_msdu_desc_info));
  326. msdu_desc_info->msdu_flags = HAL_RX_MSDU_FLAGS_GET(msdu_info);
  327. msdu_desc_info->msdu_len = HAL_RX_MSDU_PKT_LENGTH_GET(msdu_info);
  328. }
  329. /*
  330. * hal_rxdma_buff_addr_info_set() - set the buffer_addr_info of the
  331. * rxdma ring entry.
  332. * @rxdma_entry: descriptor entry
  333. * @paddr: physical address of nbuf data pointer.
  334. * @cookie: SW cookie used as a index to SW rx desc.
  335. * @manager: who owns the nbuf (host, NSS, etc...).
  336. *
  337. */
  338. static inline void hal_rxdma_buff_addr_info_set(void *rxdma_entry,
  339. qdf_dma_addr_t paddr, uint16_t cookie, uint8_t manager)
  340. {
  341. uint32_t paddr_lo = ((u64)paddr & 0x00000000ffffffff);
  342. uint32_t paddr_hi = ((u64)paddr & 0xffffffff00000000) >> 32;
  343. HAL_RXDMA_PADDR_LO_SET(rxdma_entry, paddr_lo);
  344. HAL_RXDMA_PADDR_HI_SET(rxdma_entry, paddr_hi);
  345. HAL_RXDMA_COOKIE_SET(rxdma_entry, cookie);
  346. HAL_RXDMA_MANAGER_SET(rxdma_entry, manager);
  347. }
  348. /*
  349. * Structures & Macros to obtain fields from the TLV's in the Rx packet
  350. * pre-header.
  351. */
  352. /*
  353. * Every Rx packet starts at an offset from the top of the buffer.
  354. * If the host hasn't subscribed to any specific TLV, there is
  355. * still space reserved for the following TLV's from the start of
  356. * the buffer:
  357. * -- RX ATTENTION
  358. * -- RX MPDU START
  359. * -- RX MSDU START
  360. * -- RX MSDU END
  361. * -- RX MPDU END
  362. * -- RX PACKET HEADER (802.11)
  363. * If the host subscribes to any of the TLV's above, that TLV
  364. * if populated by the HW
  365. */
  366. #define NUM_DWORDS_TAG 1
  367. /* By default the packet header TLV is 128 bytes */
  368. #define NUM_OF_BYTES_RX_802_11_HDR_TLV 128
  369. #define NUM_OF_DWORDS_RX_802_11_HDR_TLV \
  370. (NUM_OF_BYTES_RX_802_11_HDR_TLV >> 2)
  371. #define RX_PKT_OFFSET_WORDS \
  372. ( \
  373. NUM_OF_DWORDS_RX_ATTENTION + NUM_DWORDS_TAG \
  374. NUM_OF_DWORDS_RX_MPDU_START + NUM_DWORDS_TAG \
  375. NUM_OF_DWORDS_RX_MSDU_START + NUM_DWORDS_TAG \
  376. NUM_OF_DWORDS_RX_MSDU_END + NUM_DWORDS_TAG \
  377. NUM_OF_DWORDS_RX_MPDU_END + NUM_DWORDS_TAG \
  378. NUM_OF_DWORDS_RX_802_11_HDR_TLV + NUM_DWORDS_TAG \
  379. )
  380. #define RX_PKT_OFFSET_BYTES \
  381. (RX_PKT_OFFSET_WORDS << 2)
  382. #define RX_PKT_HDR_TLV_LEN 120
  383. /*
  384. * Each RX descriptor TLV is preceded by 1 DWORD "tag"
  385. */
  386. struct rx_attention_tlv {
  387. uint32_t tag;
  388. struct rx_attention rx_attn;
  389. };
  390. struct rx_mpdu_start_tlv {
  391. uint32_t tag;
  392. struct rx_mpdu_start rx_mpdu_start;
  393. };
  394. struct rx_msdu_start_tlv {
  395. uint32_t tag;
  396. struct rx_msdu_start rx_msdu_start;
  397. };
  398. struct rx_msdu_end_tlv {
  399. uint32_t tag;
  400. struct rx_msdu_end rx_msdu_end;
  401. };
  402. struct rx_mpdu_end_tlv {
  403. uint32_t tag;
  404. struct rx_mpdu_end rx_mpdu_end;
  405. };
  406. struct rx_pkt_hdr_tlv {
  407. uint32_t tag; /* 4 B */
  408. uint32_t phy_ppdu_id; /* 4 B */
  409. char rx_pkt_hdr[RX_PKT_HDR_TLV_LEN]; /* 120 B */
  410. };
  411. #define RXDMA_OPTIMIZATION
  412. #ifdef RXDMA_OPTIMIZATION
  413. /*
  414. * The RX_PADDING_BYTES is required so that the TLV's don't
  415. * spread across the 128 byte boundary
  416. * RXDMA optimization requires:
  417. * 1) MSDU_END & ATTENTION TLV's follow in that order
  418. * 2) TLV's don't span across 128 byte lines
  419. * 3) Rx Buffer is nicely aligned on the 128 byte boundary
  420. */
  421. #define RX_PADDING_BYTES 16
  422. struct rx_pkt_tlvs {
  423. struct rx_msdu_end_tlv msdu_end_tlv; /* 72 bytes */
  424. struct rx_attention_tlv attn_tlv; /* 16 bytes */
  425. struct rx_msdu_start_tlv msdu_start_tlv;/* 40 bytes */
  426. struct rx_mpdu_start_tlv mpdu_start_tlv;/* 96 bytes */
  427. struct rx_mpdu_end_tlv mpdu_end_tlv; /* 12 bytes */
  428. uint8_t rx_padding[RX_PADDING_BYTES]; /* 20 bytes */
  429. struct rx_pkt_hdr_tlv pkt_hdr_tlv; /* 128 bytes */
  430. };
  431. #else /* RXDMA_OPTIMIZATION */
  432. struct rx_pkt_tlvs {
  433. struct rx_attention_tlv attn_tlv;
  434. struct rx_mpdu_start_tlv mpdu_start_tlv;
  435. struct rx_msdu_start_tlv msdu_start_tlv;
  436. struct rx_msdu_end_tlv msdu_end_tlv;
  437. struct rx_mpdu_end_tlv mpdu_end_tlv;
  438. struct rx_pkt_hdr_tlv pkt_hdr_tlv;
  439. };
  440. #endif /* RXDMA_OPTIMIZATION */
  441. #define RX_PKT_TLVS_LEN (sizeof(struct rx_pkt_tlvs))
  442. /*
  443. * Get msdu_done bit from the RX_ATTENTION TLV
  444. */
  445. #define HAL_RX_ATTN_MSDU_DONE_GET(_rx_attn) \
  446. (_HAL_MS((*_OFFSET_TO_WORD_PTR(_rx_attn, \
  447. RX_ATTENTION_2_MSDU_DONE_OFFSET)), \
  448. RX_ATTENTION_2_MSDU_DONE_MASK, \
  449. RX_ATTENTION_2_MSDU_DONE_LSB))
  450. static inline uint32_t
  451. hal_rx_attn_msdu_done_get(uint8_t *buf)
  452. {
  453. struct rx_pkt_tlvs *pkt_tlvs = (struct rx_pkt_tlvs *)buf;
  454. struct rx_attention *rx_attn = &pkt_tlvs->attn_tlv.rx_attn;
  455. uint32_t msdu_done;
  456. msdu_done = HAL_RX_ATTN_MSDU_DONE_GET(rx_attn);
  457. return msdu_done;
  458. }
  459. /*
  460. * Get l3_header_padding from RX_MSDU_END
  461. */
  462. #define HAL_RX_MSDU_END_L3_HEADER_PADDING_GET(_rx_msdu_end) \
  463. (_HAL_MS((*_OFFSET_TO_WORD_PTR(_rx_msdu_end, \
  464. RX_MSDU_END_9_L3_HEADER_PADDING_OFFSET)), \
  465. RX_MSDU_END_9_L3_HEADER_PADDING_MASK, \
  466. RX_MSDU_END_9_L3_HEADER_PADDING_LSB))
  467. static inline uint32_t
  468. hal_rx_msdu_end_l3_hdr_padding_get(uint8_t *buf)
  469. {
  470. struct rx_pkt_tlvs *pkt_tlvs = (struct rx_pkt_tlvs *)buf;
  471. struct rx_msdu_end *msdu_end = &pkt_tlvs->msdu_end_tlv.rx_msdu_end;
  472. uint32_t l3_header_padding;
  473. l3_header_padding = HAL_RX_MSDU_END_L3_HEADER_PADDING_GET(msdu_end);
  474. return l3_header_padding;
  475. }
  476. /*******************************************************************************
  477. * RX ERROR APIS
  478. ******************************************************************************/
  479. /*******************************************************************************
  480. * RX REO ERROR APIS
  481. ******************************************************************************/
  482. #define HAL_RX_LINK_DESC_MSDU0_PTR(link_desc) \
  483. ((struct rx_msdu_details *) \
  484. _OFFSET_TO_BYTE_PTR((link_desc),\
  485. RX_MSDU_LINK_8_RX_MSDU_DETAILS_MSDU_0_OFFSET))
  486. #define HAL_RX_NUM_MSDU_DESC 6
  487. struct hal_rx_msdu_list {
  488. struct hal_rx_msdu_desc_info msdu_info[HAL_RX_NUM_MSDU_DESC];
  489. uint32_t sw_cookie[HAL_RX_NUM_MSDU_DESC];
  490. };
  491. struct hal_buf_info {
  492. uint64_t paddr;
  493. uint32_t sw_cookie;
  494. };
  495. /**
  496. * hal_rx_msdu_link_desc_get: API to get the MSDU information
  497. * from the MSDU link descriptor
  498. *
  499. * @ msdu_link_desc: Opaque pointer used by HAL to get to the
  500. * MSDU link descriptor (struct rx_msdu_link)
  501. * @ msdu_list: Return the list of MSDUs contained in this link descriptor
  502. * Return: void
  503. */
  504. static inline void hal_rx_msdu_list_get(void *msdu_link_desc,
  505. struct hal_rx_msdu_list *msdu_list, uint8_t *num_msdus)
  506. {
  507. struct rx_msdu_details *msdu_details;
  508. struct rx_msdu_desc_info *msdu_desc_info;
  509. struct rx_msdu_link *msdu_link = (struct rx_msdu_link *)msdu_link_desc;
  510. int i;
  511. *num_msdus = 0;
  512. msdu_details = HAL_RX_LINK_DESC_MSDU0_PTR(msdu_link);
  513. for (i = 0; i < HAL_RX_NUM_MSDU_DESC; i++) {
  514. msdu_desc_info = HAL_RX_MSDU_DESC_INFO_GET(&msdu_details[i]);
  515. msdu_list->msdu_info[i].msdu_flags =
  516. HAL_RX_MSDU_FLAGS_GET(msdu_desc_info);
  517. msdu_list->msdu_info[i].msdu_len =
  518. HAL_RX_MSDU_PKT_LENGTH_GET(msdu_desc_info);
  519. msdu_list->sw_cookie[i] =
  520. HAL_RX_BUF_COOKIE_GET(
  521. &msdu_details[i].buffer_addr_info_details);
  522. }
  523. *num_msdus = i;
  524. }
  525. /**
  526. * hal_rx_reo_buf_paddr_get: Gets the physical address and
  527. * cookie from the REO destination ring element
  528. *
  529. * @ hal_rx_desc_cookie: Opaque cookie pointer used by HAL to get to
  530. * the current descriptor
  531. * @ buf_info: structure to return the buffer information
  532. * Return: void
  533. */
  534. static inline void hal_rx_reo_buf_paddr_get(void *rx_desc,
  535. struct hal_buf_info *buf_info)
  536. {
  537. struct reo_destination_ring *reo_ring =
  538. (struct reo_destination_ring *)rx_desc;
  539. buf_info->paddr =
  540. (HAL_RX_REO_BUFFER_ADDR_31_0_GET(reo_ring) |
  541. ((uint64_t)(HAL_RX_REO_BUFFER_ADDR_39_32_GET(reo_ring)) << 32));
  542. buf_info->sw_cookie = HAL_RX_REO_BUF_COOKIE_GET(reo_ring);
  543. }
  544. /**
  545. * enum hal_reo_error_code: Indicates that type of buffer or descriptor
  546. *
  547. * @ HAL_RX_MSDU_BUF_ADDR_TYPE : Reo buffer address points to the MSDU buffer
  548. * @ HAL_RX_MSDU_LINK_DESC_TYPE: Reo buffer address points to the link
  549. * descriptor
  550. */
  551. enum hal_rx_reo_buf_type {
  552. HAL_RX_REO_MSDU_BUF_ADDR_TYPE = 0,
  553. HAL_RX_REO_MSDU_LINK_DESC_TYPE,
  554. };
  555. #define HAL_RX_REO_BUF_TYPE_GET(reo_desc) (((*(((uint32_t *) reo_desc)+ \
  556. (REO_DESTINATION_RING_7_REO_DEST_BUFFER_TYPE_OFFSET >> 2))) & \
  557. REO_DESTINATION_RING_7_REO_DEST_BUFFER_TYPE_MASK) >> \
  558. REO_DESTINATION_RING_7_REO_DEST_BUFFER_TYPE_LSB)
  559. /**
  560. * enum hal_reo_error_code: Error code describing the type of error detected
  561. *
  562. * @ HAL_REO_ERR_QUEUE_DESC_ADDR_0 : Reo queue descriptor provided in the
  563. * REO_ENTRANCE ring is set to 0
  564. * @ HAL_REO_ERR_QUEUE_DESC_INVALID: Reo queue descriptor valid bit is NOT set
  565. * @ HAL_REO_ERR_AMPDU_IN_NON_BA : AMPDU frame received without BA session
  566. * having been setup
  567. * @ HAL_REO_ERR_NON_BA_DUPLICATE : Non-BA session, SN equal to SSN,
  568. * Retry bit set: duplicate frame
  569. * @ HAL_REO_ERR_BA_DUPLICATE : BA session, duplicate frame
  570. * @ HAL_REO_ERR_REGULAR_FRAME_2K_JUMP : A normal (management/data frame)
  571. * received with 2K jump in SN
  572. * @ HAL_REO_ERR_BAR_FRAME_2K_JUMP : A bar received with 2K jump in SSN
  573. * @ HAL_REO_ERR_REGULAR_FRAME_OOR : A normal (management/data frame) received
  574. * with SN falling within the OOR window
  575. * @ HAL_REO_ERR_BAR_FRAME_OOR : A bar received with SSN falling within the
  576. * OOR window
  577. * @ HAL_REO_ERR_BAR_FRAME_NO_BA_SESSION : A bar received without a BA session
  578. * @ HAL_REO_ERR_BAR_FRAME_SN_EQUALS_SSN : A bar received with SSN equal to SN
  579. * @ HAL_REO_ERR_PN_CHECK_FAILED : PN Check Failed packet
  580. * @ HAL_REO_ERR_2K_ERROR_HANDLING_FLAG_SET : Frame is forwarded as a result
  581. * of the ‘Seq_2k_error_detected_flag’ been set in the REO Queue descriptor
  582. * @ HAL_REO_ERR_PN_ERROR_HANDLING_FLAG_SET : Frame is forwarded as a result
  583. * of the ‘pn_error_detected_flag’ been set in the REO Queue descriptor
  584. * @ HAL_REO_ERR_QUEUE_DESC_BLOCKED_SET : Frame is forwarded as a result of
  585. * the queue descriptor(address) being blocked as SW/FW seems to be currently
  586. * in the process of making updates to this descriptor
  587. */
  588. enum hal_reo_error_code {
  589. HAL_REO_ERR_QUEUE_DESC_ADDR_0 = 0,
  590. HAL_REO_ERR_QUEUE_DESC_INVALID,
  591. HAL_REO_ERR_AMPDU_IN_NON_BA,
  592. HAL_REO_ERR_NON_BA_DUPLICATE,
  593. HAL_REO_ERR_BA_DUPLICATE,
  594. HAL_REO_ERR_REGULAR_FRAME_2K_JUMP,
  595. HAL_REO_ERR_BAR_FRAME_2K_JUMP,
  596. HAL_REO_ERR_REGULAR_FRAME_OOR,
  597. HAL_REO_ERR_BAR_FRAME_OOR,
  598. HAL_REO_ERR_BAR_FRAME_NO_BA_SESSION,
  599. HAL_REO_ERR_BAR_FRAME_SN_EQUALS_SSN,
  600. HAL_REO_ERR_PN_CHECK_FAILED,
  601. HAL_REO_ERR_2K_ERROR_HANDLING_FLAG_SET,
  602. HAL_REO_ERR_PN_ERROR_HANDLING_FLAG_SET,
  603. HAL_REO_ERR_QUEUE_DESC_BLOCKED_SET
  604. };
  605. #define HAL_RX_REO_ERROR_GET(reo_desc) (((*(((uint32_t *) reo_desc)+ \
  606. (REO_DESTINATION_RING_7_REO_ERROR_CODE_OFFSET >> 2))) & \
  607. REO_DESTINATION_RING_7_REO_ERROR_CODE_MASK) >> \
  608. REO_DESTINATION_RING_7_REO_ERROR_CODE_LSB)
  609. /**
  610. * hal_rx_is_pn_error() - Indicate if this error was caused by a
  611. * PN check failure
  612. *
  613. * @reo_desc: opaque pointer used by HAL to get the REO destination entry
  614. *
  615. * Return: true: error caused by PN check, false: other error
  616. */
  617. static inline bool hal_rx_reo_is_pn_error(void *rx_desc)
  618. {
  619. struct reo_destination_ring *reo_desc =
  620. (struct reo_destination_ring *)rx_desc;
  621. return ((HAL_RX_REO_ERROR_GET(reo_desc) ==
  622. HAL_REO_ERR_PN_CHECK_FAILED) |
  623. (HAL_RX_REO_ERROR_GET(reo_desc) ==
  624. HAL_REO_ERR_PN_ERROR_HANDLING_FLAG_SET)) ?
  625. true : false;
  626. }
  627. /**
  628. * hal_rx_is_2k_jump() - Indicate if this error was caused by a 2K jump in
  629. * the sequence number
  630. *
  631. * @ring_desc: opaque pointer used by HAL to get the REO destination entry
  632. *
  633. * Return: true: error caused by 2K jump, false: other error
  634. */
  635. static inline bool hal_rx_reo_is_2k_jump(void *rx_desc)
  636. {
  637. struct reo_destination_ring *reo_desc =
  638. (struct reo_destination_ring *)rx_desc;
  639. return ((HAL_RX_REO_ERROR_GET(reo_desc) ==
  640. HAL_REO_ERR_REGULAR_FRAME_2K_JUMP) |
  641. (HAL_RX_REO_ERROR_GET(reo_desc) ==
  642. HAL_REO_ERR_2K_ERROR_HANDLING_FLAG_SET)) ?
  643. true : false;
  644. }
  645. /**
  646. * hal_rx_msdu_link_desc_set: Retrieves MSDU Link Descriptor to WBM
  647. *
  648. * @ soc : HAL version of the SOC pointer
  649. * @ src_srng_desc : void pointer to the WBM Release Ring descriptor
  650. * @ buf_addr_info : void pointer to the buffer_addr_info
  651. *
  652. * Return: void
  653. */
  654. /* look at implementation at dp_hw_link_desc_pool_setup()*/
  655. static inline void hal_rx_msdu_link_desc_set(struct hal_soc *soc,
  656. void *src_srng_desc, void *buf_addr_info)
  657. {
  658. struct wbm_release_ring *wbm_rel_srng =
  659. (struct wbm_release_ring *)src_srng_desc;
  660. /* Structure copy !!! */
  661. wbm_rel_srng->released_buff_or_desc_addr_info =
  662. *((struct buffer_addr_info *)buf_addr_info);
  663. }
  664. /*
  665. * hal_rx_msdu_link_desc_reinject: Re-injects the MSDU link descriptor to
  666. * REO entrance ring
  667. *
  668. * @ soc: HAL version of the SOC pointer
  669. * @ pa: Physical address of the MSDU Link Descriptor
  670. * @ cookie: SW cookie to get to the virtual address
  671. * @ error_enabled_reo_q: Argument to determine whether this needs to go
  672. * to the error enabled REO queue
  673. *
  674. * Return: void
  675. */
  676. static inline void hal_rx_msdu_link_desc_reinject(struct hal_soc *soc,
  677. uint64_t pa, uint32_t cookie, bool error_enabled_reo_q)
  678. {
  679. /* TODO */
  680. }
  681. /**
  682. * HAL_RX_BUF_ADDR_INFO_GET: Returns the address of the
  683. * BUFFER_ADDR_INFO, give the RX descriptor
  684. * (Assumption -- BUFFER_ADDR_INFO is the
  685. * first field in the descriptor structure)
  686. */
  687. #define HAL_RX_BUF_ADDR_INFO_GET(ring_desc) ((void *)(ring_desc))
  688. #define HAL_RX_REO_BUF_ADDR_INFO_GET HAL_RX_BUF_ADDR_INFO_GET
  689. #define HAL_RX_WBM_BUF_ADDR_INFO_GET HAL_RX_BUF_ADDR_INFO_GET
  690. /**
  691. * hal_rx_ret_buf_manager_get: Returns the "return_buffer_manager"
  692. * from the BUFFER_ADDR_INFO structure
  693. * given a REO destination ring descriptor.
  694. * @ ring_desc: RX(REO/WBM release) destination ring descriptor
  695. *
  696. * Return: uint8_t (value of the return_buffer_manager)
  697. */
  698. static inline
  699. uint8_t hal_rx_ret_buf_manager_get(void *ring_desc)
  700. {
  701. /*
  702. * The following macro takes buf_addr_info as argument,
  703. * but since buf_addr_info is the first field in ring_desc
  704. * Hence the following call is OK
  705. */
  706. return HAL_RX_BUF_RBM_GET(ring_desc);
  707. }
  708. /*******************************************************************************
  709. * RX WBM ERROR APIS
  710. ******************************************************************************/
  711. /**
  712. * enum hal_rx_wbm_error_source: Indicates which module initiated the
  713. * release of this buffer or descriptor
  714. *
  715. * @ HAL_RX_WBM_ERR_SRC_TQM : TQM released this buffer or descriptor
  716. * @ HAL_RX_WBM_ERR_SRC_RXDMA: RXDMA released this buffer or descriptor
  717. * @ HAL_RX_WBM_ERR_SRC_REO: REO released this buffer or descriptor
  718. * @ HAL_RX_WBM_ERR_SRC_FW: FW released this buffer or descriptor
  719. * @ HAL_RX_WBM_ERR_SRC_SW: SW released this buffer or descriptor
  720. */
  721. enum hal_rx_wbm_error_source {
  722. HAL_RX_WBM_ERR_SRC_TQM = 0,
  723. HAL_RX_WBM_ERR_SRC_RXDMA,
  724. HAL_RX_WBM_ERR_SRC_REO,
  725. HAL_RX_WBM_ERR_SRC_FW,
  726. HAL_RX_WBM_ERR_SRC_SW,
  727. };
  728. #define HAL_RX_WBM_ERR_SRC_GET(wbm_desc) (((*(((uint32_t *) wbm_desc)+ \
  729. (WBM_RELEASE_RING_2_RELEASE_SOURCE_MODULE_OFFSET >> 2))) & \
  730. WBM_RELEASE_RING_2_RELEASE_SOURCE_MODULE_MASK) >> \
  731. WBM_RELEASE_RING_2_RELEASE_SOURCE_MODULE_LSB)
  732. /**
  733. * enum hal_rx_wbm_buf_type: Indicates that type of buffer or descriptor
  734. * released
  735. *
  736. * @ HAL_RX_WBM_ERR_SRC_TQM : TQM released this buffer or descriptor
  737. * @ HAL_RX_WBM_ERR_SRC_RXDMA: RXDMA released this buffer or descriptor
  738. * @ HAL_RX_WBM_ERR_SRC_REO: REO released this buffer or descriptor
  739. * @ HAL_RX_WBM_ERR_SRC_FW: FW released this buffer or descriptor
  740. * @ HAL_RX_WBM_ERR_SRC_SW: SW released this buffer or descriptor
  741. */
  742. enum hal_rx_wbm_buf_type {
  743. HAL_RX_WBM_BUF_TYPE_REL_BUF = 0,
  744. HAL_RX_WBM_BUF_TYPE_MSDU_LINK_DESC,
  745. HAL_RX_WBM_BUF_TYPE_MPDU_LINK_DESC,
  746. HAL_RX_WBM_BUF_TYPE_MSDU_EXT_DESC,
  747. HAL_RX_WBM_BUF_TYPE_Q_EXT_DESC,
  748. };
  749. #define HAL_RX_WBM_BUF_TYPE_GET(wbm_desc) (((*(((uint32_t *) wbm_desc)+ \
  750. (WBM_RELEASE_RING_2_BUFFER_OR_DESC_TYPE_OFFSET >> 2))) & \
  751. WBM_RELEASE_RING_2_BUFFER_OR_DESC_TYPE_MASK) >> \
  752. WBM_RELEASE_RING_2_BUFFER_OR_DESC_TYPE_LSB)
  753. /**
  754. * enum - hal_rx_wbm_reo_push_reason: Indicates why REO pushed
  755. * the frame to this release ring
  756. *
  757. * @ HAL_RX_WBM_REO_PSH_RSN_ERROR : Reo detected an error and pushed this
  758. * frame to this queue
  759. * @ HAL_RX_WBM_REO_PSH_RSN_ROUTE: Reo pushed the frame to this queue per
  760. * received routing instructions. No error within REO was detected
  761. */
  762. enum hal_rx_wbm_reo_push_reason {
  763. HAL_RX_WBM_REO_PSH_RSN_ERROR = 0,
  764. HAL_RX_WBM_REO_PSH_RSN_ROUTE,
  765. };
  766. #define HAL_RX_WBM_REO_PUSH_REASON_GET(wbm_desc) (((*(((uint32_t *) wbm_desc)+ \
  767. (WBM_RELEASE_RING_2_REO_PUSH_REASON_OFFSET >> 2))) & \
  768. WBM_RELEASE_RING_2_REO_PUSH_REASON_MASK) >> \
  769. WBM_RELEASE_RING_2_REO_PUSH_REASON_LSB)
  770. #define HAL_RX_WBM_REO_ERROR_CODE_GET(wbm_desc) (((*(((uint32_t *) wbm_desc)+ \
  771. (WBM_RELEASE_RING_2_REO_ERROR_CODE_OFFSET >> 2))) & \
  772. WBM_RELEASE_RING_2_REO_ERROR_CODE_MASK) >> \
  773. WBM_RELEASE_RING_2_REO_ERROR_CODE_LSB)
  774. /**
  775. * enum hal_rx_wbm_rxdma_push_reason: Indicates why REO pushed the frame to
  776. * this release ring
  777. *
  778. * @ HAL_RX_WBM_RXDMA_PSH_RSN_ERROR : RXDMA detected an error and pushed
  779. * this frame to this queue
  780. * @ HAL_RX_WBM_RXDMA_PSH_RSN_ROUTE: RXDMA pushed the frame to this queue
  781. * per received routing instructions. No error within RXDMA was detected
  782. */
  783. enum hal_rx_wbm_rxdma_push_reason {
  784. HAL_RX_WBM_RXDMA_PSH_RSN_ERROR = 0,
  785. HAL_RX_WBM_RXDMA_PSH_RSN_ROUTE,
  786. };
  787. #define HAL_RX_WBM_RXDMA_PUSH_REASON_GET(wbm_desc) \
  788. (((*(((uint32_t *) wbm_desc) + \
  789. (WBM_RELEASE_RING_2_RXDMA_PUSH_REASON_OFFSET >> 2))) & \
  790. WBM_RELEASE_RING_2_RXDMA_PUSH_REASON_MASK) >> \
  791. WBM_RELEASE_RING_2_RXDMA_PUSH_REASON_LSB)
  792. #define HAL_RX_WBM_RXDMA_ERROR_CODE_GET(wbm_desc) \
  793. (((*(((uint32_t *) wbm_desc) + \
  794. (WBM_RELEASE_RING_2_RXDMA_ERROR_CODE_OFFSET >> 2))) & \
  795. WBM_RELEASE_RING_2_RXDMA_ERROR_CODE_MASK) >> \
  796. WBM_RELEASE_RING_2_RXDMA_ERROR_CODE_LSB)
  797. #define HAL_RX_WBM_BUF_COOKIE_GET(wbm_desc) \
  798. HAL_RX_BUF_COOKIE_GET(&((struct wbm_release_ring *) \
  799. wbm_desc)->released_buff_or_desc_addr_info)
  800. #endif /* _HAL_RX_H */