hal_tx.h 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920
  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. #if !defined(HAL_TX_H)
  19. #define HAL_TX_H
  20. /*---------------------------------------------------------------------------
  21. Include files
  22. ---------------------------------------------------------------------------*/
  23. #include "hal_api.h"
  24. /*---------------------------------------------------------------------------
  25. Preprocessor definitions and constants
  26. ---------------------------------------------------------------------------*/
  27. #define HAL_OFFSET(block, field) block ## _ ## field ## _OFFSET
  28. #define HAL_SET_FLD(desc, block , field) \
  29. (*(uint32_t *) ((uint8_t *) desc + HAL_OFFSET(block, field)))
  30. #define HAL_SET_FLD_OFFSET(desc, block , field, offset) \
  31. (*(uint32_t *) ((uint8_t *) desc + HAL_OFFSET(block, field) + (offset)))
  32. #define HAL_TX_DESC_SET_TLV_HDR(desc, tag, len) \
  33. do { \
  34. ((struct tlv_32_hdr *) desc)->tlv_tag = (tag); \
  35. ((struct tlv_32_hdr *) desc)->tlv_len = (len); \
  36. } while (0)
  37. #define HAL_TX_TCL_DATA_TAG WIFITCL_DATA_CMD_E
  38. #define HAL_TX_TCL_CMD_TAG WIFITCL_GSE_CMD_E
  39. #define HAL_TX_SM(block, field, value) \
  40. ((value << (block ## _ ## field ## _LSB)) & \
  41. (block ## _ ## field ## _MASK))
  42. #define HAL_TX_DESC_LEN_DWORDS (NUM_OF_DWORDS_TCL_DATA_CMD)
  43. #define HAL_TX_DESC_LEN_BYTES (NUM_OF_DWORDS_TCL_DATA_CMD * 4)
  44. #define HAL_TX_EXTENSION_DESC_LEN_DWORDS (NUM_OF_DWORDS_TX_MSDU_EXTENSION)
  45. #define HAL_TX_EXTENSION_DESC_LEN_BYTES (NUM_OF_DWORDS_TX_MSDU_EXTENSION * 4)
  46. #define HAL_TX_COMPLETION_DESC_LEN_DWORDS (NUM_OF_DWORDS_WBM_RELEASE_RING)
  47. #define HAL_TX_COMPLETION_DESC_LEN_BYTES (NUM_OF_DWORDS_WBM_RELEASE_RING*4)
  48. /* Length of WBM release ring without the status words */
  49. #define HAL_TX_COMPLETION_DESC_BASE_LEN 12
  50. #define HAL_TX_COMP_RELEASE_SOURCE_TQM 0
  51. #define HAL_TX_COMP_RELEASE_SOURCE_FW 3
  52. /*
  53. * Offset of HTT Tx Descriptor in WBM Completion
  54. * HTT Tx Desc structure is passed from firmware to host overlayed
  55. * on wbm_release_ring DWORD 3 and 4 for software based completions
  56. * (Exception frames and TQM bypass frames)
  57. */
  58. #define HAL_TX_COMP_HTT_STATUS_OFFSET 12
  59. #define HAL_TX_COMP_HTT_STATUS_LEN 8
  60. #define HAL_TX_BUF_TYPE_BUFFER 0
  61. #define HAL_TX_BUF_TYPE_EXT_DESC 2
  62. #define HAL_TX_EXT_DESC_BUF_OFFSET TX_MSDU_EXTENSION_6_BUF0_PTR_31_0_OFFSET
  63. #define HAL_TX_EXT_BUF_LOW_MASK TX_MSDU_EXTENSION_6_BUF0_PTR_31_0_MASK
  64. #define HAL_TX_EXT_BUF_HI_MASK TX_MSDU_EXTENSION_7_BUF0_PTR_39_32_MASK
  65. #define HAL_TX_EXT_BUF_LEN_MASK TX_MSDU_EXTENSION_7_BUF0_LEN_MASK
  66. #define HAL_TX_EXT_BUF_LEN_LSB TX_MSDU_EXTENSION_7_BUF0_LEN_LSB
  67. #define HAL_TX_EXT_BUF_WD_SIZE 2
  68. #define HAL_TX_DESC_ADDRX_EN 0x1
  69. #define HAL_TX_DESC_ADDRY_EN 0x2
  70. enum hal_tx_ret_buf_manager {
  71. HAL_WBM_SW0_BM_ID = 3,
  72. HAL_WBM_SW1_BM_ID = 4,
  73. HAL_WBM_SW2_BM_ID = 5,
  74. HAL_WBM_SW3_BM_ID = 6,
  75. };
  76. /*---------------------------------------------------------------------------
  77. Structures
  78. ---------------------------------------------------------------------------*/
  79. /**
  80. * struct hal_tx_completion_status - HAL Tx completion descriptor contents
  81. * @ack_frame_rssi: RSSI of the received ACK or BA frame
  82. * @first_msdu: Indicates this MSDU is the first MSDU in AMSDU
  83. * @last_msdu: Indicates this MSDU is the last MSDU in AMSDU
  84. * @msdu_part_of_amsdu : Indicates this MSDU was part of an A-MSDU in MPDU
  85. * @bw: Indicates the BW of the upcoming transmission -
  86. * <enum 0 transmit_bw_20_MHz>
  87. * <enum 1 transmit_bw_40_MHz>
  88. * <enum 2 transmit_bw_80_MHz>
  89. * <enum 3 transmit_bw_160_MHz>
  90. * @pkt_type: Transmit Packet Type
  91. * @stbc: When set, STBC transmission rate was used
  92. * @ldpc: When set, use LDPC transmission rates
  93. * @sgi: <enum 0 0_8_us_sgi > Legacy normal GI
  94. * <enum 1 0_4_us_sgi > Legacy short GI
  95. * <enum 2 1_6_us_sgi > HE related GI
  96. * <enum 3 3_2_us_sgi > HE
  97. * @mcs: Transmit MCS Rate
  98. * @ofdma: Set when the transmission was an OFDMA transmission
  99. * @tones_in_ru: The number of tones in the RU used.
  100. * @tsf: Lower 32 bits of the TSF
  101. * @ppdu_id: TSF, snapshot of this value when transmission of the
  102. * PPDU containing the frame finished.
  103. * @transmit_cnt: Number of times this frame has been transmitted
  104. * @tid: TID of the flow or MPDU queue
  105. * @peer_id: Peer ID of the flow or MPDU queue
  106. */
  107. struct hal_tx_completion_status {
  108. uint8_t ack_frame_rssi;
  109. uint8_t first_msdu:1,
  110. last_msdu:1,
  111. msdu_part_of_amsdu:1;
  112. uint32_t bw:2,
  113. pkt_type:4,
  114. stbc:1,
  115. ldpc:1,
  116. sgi:2,
  117. mcs:2,
  118. ofdma:1,
  119. tones_in_ru:10;
  120. uint32_t tsf;
  121. uint32_t ppdu_id;
  122. uint8_t transmit_cnt;
  123. uint8_t tid;
  124. uint16_t peer_id;
  125. };
  126. /**
  127. * struct hal_tx_desc_comp_s - hal tx completion descriptor contents
  128. * @desc: Transmit status information from descriptor
  129. */
  130. struct hal_tx_desc_comp_s {
  131. uint32_t desc[HAL_TX_COMPLETION_DESC_LEN_DWORDS];
  132. };
  133. /*
  134. * enum hal_tx_encrypt_type - Type of decrypt cipher used (valid only for RAW)
  135. * @HAL_TX_ENCRYPT_TYPE_WEP_40: WEP 40-bit
  136. * @HAL_TX_ENCRYPT_TYPE_WEP_10: WEP 10-bit
  137. * @HAL_TX_ENCRYPT_TYPE_TKIP_NO_MIC: TKIP without MIC
  138. * @HAL_TX_ENCRYPT_TYPE_WEP_128: WEP_128
  139. * @HAL_TX_ENCRYPT_TYPE_TKIP_WITH_MIC: TKIP_WITH_MIC
  140. * @HAL_TX_ENCRYPT_TYPE_WAPI: WAPI
  141. * @HAL_TX_ENCRYPT_TYPE_AES_CCMP_128: AES_CCMP_128
  142. * @HAL_TX_ENCRYPT_TYPE_NO_CIPHER: NO CIPHER
  143. * @HAL_TX_ENCRYPT_TYPE_AES_CCMP_256: AES_CCMP_256
  144. * @HAL_TX_ENCRYPT_TYPE_AES_GCMP_128: AES_GCMP_128
  145. * @HAL_TX_ENCRYPT_TYPE_AES_GCMP_256: AES_GCMP_256
  146. * @HAL_TX_ENCRYPT_TYPE_WAPI_GCM_SM4: WAPI GCM SM4
  147. */
  148. enum hal_tx_encrypt_type {
  149. HAL_TX_ENCRYPT_TYPE_WEP_40 = 0,
  150. HAL_TX_ENCRYPT_TYPE_WEP_104 = 1 ,
  151. HAL_TX_ENCRYPT_TYPE_TKIP_NO_MIC = 2,
  152. HAL_TX_ENCRYPT_TYPE_WEP_128 = 3,
  153. HAL_TX_ENCRYPT_TYPE_TKIP_WITH_MIC = 4,
  154. HAL_TX_ENCRYPT_TYPE_WAPI = 5,
  155. HAL_TX_ENCRYPT_TYPE_AES_CCMP_128 = 6,
  156. HAL_TX_ENCRYPT_TYPE_NO_CIPHER = 7,
  157. HAL_TX_ENCRYPT_TYPE_AES_CCMP_256 = 8,
  158. HAL_TX_ENCRYPT_TYPE_AES_GCMP_128 = 9,
  159. HAL_TX_ENCRYPT_TYPE_AES_GCMP_256 = 10,
  160. HAL_TX_ENCRYPT_TYPE_WAPI_GCM_SM4 = 11,
  161. };
  162. /*
  163. * enum hal_tx_encap_type - Encapsulation type that HW will perform
  164. * @HAL_TX_ENCAP_TYPE_RAW: Raw Packet Type
  165. * @HAL_TX_ENCAP_TYPE_NWIFI: Native WiFi Type
  166. * @HAL_TX_ENCAP_TYPE_ETHERNET: Ethernet
  167. * @HAL_TX_ENCAP_TYPE_802_3: 802.3 Frame
  168. */
  169. enum hal_tx_encap_type {
  170. HAL_TX_ENCAP_TYPE_RAW = 0,
  171. HAL_TX_ENCAP_TYPE_NWIFI = 1,
  172. HAL_TX_ENCAP_TYPE_ETHERNET = 2,
  173. HAL_TX_ENCAP_TYPE_802_3 = 3,
  174. };
  175. /**
  176. * enum hal_tx_tqm_release_reason - TQM Release reason codes
  177. *
  178. * @HAL_TX_TQM_RR_FRAME_ACKED : ACK of BA for it was received
  179. * @HAL_TX_TQM_RR_REM_CMD_REM : Remove cmd of type “Remove_mpdus” initiated
  180. * by SW
  181. * @HAL_TX_TQM_RR_REM_CMD_TX : Remove command of type Remove_transmitted_mpdus
  182. * initiated by SW
  183. * @HAL_TX_TQM_RR_REM_CMD_NOTX : Remove cmd of type Remove_untransmitted_mpdus
  184. * initiated by SW
  185. * @HAL_TX_TQM_RR_REM_CMD_AGED : Remove command of type “Remove_aged_mpdus” or
  186. * “Remove_aged_msdus” initiated by SW
  187. * @HAL_TX_TQM_RR_FW_REASON1 : Remove command where fw indicated that
  188. * remove reason is fw_reason1
  189. * @HAL_TX_TQM_RR_FW_REASON2 : Remove command where fw indicated that
  190. * remove reason is fw_reason2
  191. * @HAL_TX_TQM_RR_FW_REASON3 : Remove command where fw indicated that
  192. * remove reason is fw_reason3
  193. */
  194. enum hal_tx_tqm_release_reason {
  195. HAL_TX_TQM_RR_FRAME_ACKED,
  196. HAL_TX_TQM_RR_REM_CMD_REM,
  197. HAL_TX_TQM_RR_REM_CMD_TX,
  198. HAL_TX_TQM_RR_REM_CMD_NOTX,
  199. HAL_TX_TQM_RR_REM_CMD_AGED,
  200. HAL_TX_TQM_RR_FW_REASON1,
  201. HAL_TX_TQM_RR_FW_REASON2,
  202. HAL_TX_TQM_RR_FW_REASON3,
  203. };
  204. /* enum - Table IDs for 2 DSCP-TID mapping Tables that TCL H/W supports
  205. * @HAL_TX_DSCP_TID_MAP_TABLE_DEFAULT: Default DSCP-TID mapping table
  206. * @HAL_TX_DSCP_TID_MAP_TABLE_OVERRIDE: DSCP-TID map override table
  207. */
  208. enum hal_tx_dscp_tid_table_id {
  209. HAL_TX_DSCP_TID_MAP_TABLE_DEFAULT,
  210. HAL_TX_DSCP_TID_MAP_TABLE_OVERRIDE,
  211. };
  212. /*---------------------------------------------------------------------------
  213. Function declarations and documentation
  214. ---------------------------------------------------------------------------*/
  215. /*---------------------------------------------------------------------------
  216. TCL Descriptor accessor APIs
  217. ---------------------------------------------------------------------------*/
  218. /**
  219. * hal_tx_desc_set_buf_addr - Fill Buffer Address information in Tx Descriptor
  220. * @desc: Handle to Tx Descriptor
  221. * @paddr: Physical Address
  222. * @pool_id: Return Buffer Manager ID
  223. * @desc_id: Descriptor ID
  224. * @type: 0 - Address points to a MSDU buffer
  225. * 1 - Address points to MSDU extension descriptor
  226. *
  227. * Return: void
  228. */
  229. static inline void hal_tx_desc_set_buf_addr(void *desc,
  230. dma_addr_t paddr, uint8_t pool_id,
  231. uint32_t desc_id, uint8_t type)
  232. {
  233. /* Set buffer_addr_info.buffer_addr_31_0 */
  234. HAL_SET_FLD(desc, TCL_DATA_CMD_0, BUFFER_ADDR_INFO_BUF_ADDR_INFO) =
  235. HAL_TX_SM(BUFFER_ADDR_INFO_0, BUFFER_ADDR_31_0, paddr);
  236. /* Set buffer_addr_info.buffer_addr_39_32 */
  237. HAL_SET_FLD(desc, TCL_DATA_CMD_1,
  238. BUFFER_ADDR_INFO_BUF_ADDR_INFO) |=
  239. HAL_TX_SM(BUFFER_ADDR_INFO_1, BUFFER_ADDR_39_32,
  240. (((uint64_t) paddr) << 32));
  241. /* Set buffer_addr_info.return_buffer_manager = pool id */
  242. HAL_SET_FLD(desc, TCL_DATA_CMD_1,
  243. BUFFER_ADDR_INFO_BUF_ADDR_INFO) |=
  244. HAL_TX_SM(BUFFER_ADDR_INFO_1,
  245. RETURN_BUFFER_MANAGER, (pool_id + HAL_WBM_SW0_BM_ID));
  246. /* Set buffer_addr_info.sw_buffer_cookie = desc_id */
  247. HAL_SET_FLD(desc, TCL_DATA_CMD_1,
  248. BUFFER_ADDR_INFO_BUF_ADDR_INFO) |=
  249. HAL_TX_SM(BUFFER_ADDR_INFO_1, SW_BUFFER_COOKIE, desc_id);
  250. /* Set Buffer or Ext Descriptor Type */
  251. HAL_SET_FLD(desc, TCL_DATA_CMD_1,
  252. BUFFER_ADDR_INFO_BUF_ADDR_INFO) |=
  253. HAL_TX_SM(TCL_DATA_CMD_2, BUF_OR_EXT_DESC_TYPE, type);
  254. }
  255. /**
  256. * hal_tx_desc_set_buf_length - Set Data length in bytes in Tx Descriptor
  257. * @desc: Handle to Tx Descriptor
  258. * @data_length: MSDU length in case of direct descriptor.
  259. * Length of link extension descriptor in case of Link extension
  260. * descriptor.Includes the length of Metadata
  261. * Return: None
  262. */
  263. static inline void hal_tx_desc_set_buf_length(void *desc,
  264. uint16_t data_length)
  265. {
  266. HAL_SET_FLD(desc, TCL_DATA_CMD_3, DATA_LENGTH) |=
  267. HAL_TX_SM(TCL_DATA_CMD_3, DATA_LENGTH, data_length);
  268. }
  269. /**
  270. * hal_tx_desc_set_buf_offset - Sets Packet Offset field in Tx descriptor
  271. * @desc: Handle to Tx Descriptor
  272. * @offset: Packet offset from Metadata in case of direct buffer descriptor.
  273. *
  274. * Return: void
  275. */
  276. static inline void hal_tx_desc_set_buf_offset(void *desc,
  277. uint8_t offset)
  278. {
  279. HAL_SET_FLD(desc, TCL_DATA_CMD_3, PACKET_OFFSET) |=
  280. HAL_TX_SM(TCL_DATA_CMD_3, PACKET_OFFSET, offset);
  281. }
  282. /**
  283. * hal_tx_desc_set_encap_type - Set encapsulation type in Tx Descriptor
  284. * @desc: Handle to Tx Descriptor
  285. * @encap_type: Encapsulation that HW will perform
  286. *
  287. * Return: void
  288. *
  289. */
  290. static inline void hal_tx_desc_set_encap_type(void *desc,
  291. enum hal_tx_encap_type encap_type)
  292. {
  293. HAL_SET_FLD(desc, TCL_DATA_CMD_2, ENCAP_TYPE) |=
  294. HAL_TX_SM(TCL_DATA_CMD_2, ENCAP_TYPE, encap_type);
  295. }
  296. /**
  297. * hal_tx_desc_set_encrypt_type - Sets the Encrypt Type in Tx Descriptor
  298. * @desc: Handle to Tx Descriptor
  299. * @type: Encrypt Type
  300. *
  301. * Return: void
  302. */
  303. static inline void hal_tx_desc_set_encrypt_type(void *desc,
  304. enum hal_tx_encrypt_type type)
  305. {
  306. HAL_SET_FLD(desc, TCL_DATA_CMD_2, ENCRYPT_TYPE) |=
  307. HAL_TX_SM(TCL_DATA_CMD_2, ENCRYPT_TYPE, type);
  308. }
  309. /**
  310. * hal_tx_desc_set_addr_search_flags - Enable AddrX and AddrY search flags
  311. * @desc: Handle to Tx Descriptor
  312. * @flags: Bit 0 - AddrY search enable, Bit 1 - AddrX search enable
  313. *
  314. * Return: void
  315. */
  316. static inline void hal_tx_desc_set_addr_search_flags(void *desc,
  317. uint8_t flags)
  318. {
  319. HAL_SET_FLD(desc, TCL_DATA_CMD_2, ADDRX_EN) |=
  320. HAL_TX_SM(TCL_DATA_CMD_2, ADDRX_EN, (flags & 0x1));
  321. HAL_SET_FLD(desc, TCL_DATA_CMD_2, ADDRY_EN) |=
  322. HAL_TX_SM(TCL_DATA_CMD_2, ADDRY_EN, (flags >> 1));
  323. }
  324. /**
  325. * hal_tx_desc_set_l4_checksum_en - Set TCP/IP checksum enable flags
  326. * Tx Descriptor for MSDU_buffer type
  327. * @desc: Handle to Tx Descriptor
  328. * @en: UDP/TCP over ipv4/ipv6 checksum enable flags (5 bits)
  329. *
  330. * Return: void
  331. */
  332. static inline void hal_tx_desc_set_l4_checksum_en(void *desc,
  333. uint8_t en)
  334. {
  335. HAL_SET_FLD(desc, TCL_DATA_CMD_3, IPV4_CHECKSUM_EN) |=
  336. (HAL_TX_SM(TCL_DATA_CMD_3, UDP_OVER_IPV4_CHECKSUM_EN, en) |
  337. HAL_TX_SM(TCL_DATA_CMD_3, UDP_OVER_IPV6_CHECKSUM_EN, en) |
  338. HAL_TX_SM(TCL_DATA_CMD_3, TCP_OVER_IPV4_CHECKSUM_EN, en) |
  339. HAL_TX_SM(TCL_DATA_CMD_3, TCP_OVER_IPV6_CHECKSUM_EN, en));
  340. }
  341. /**
  342. * hal_tx_desc_set_l3_checksum_en - Set IPv4 checksum enable flag in
  343. * Tx Descriptor for MSDU_buffer type
  344. * @desc: Handle to Tx Descriptor
  345. * @checksum_en_flags: ipv4 checksum enable flags
  346. *
  347. * Return: void
  348. */
  349. static inline void hal_tx_desc_set_l3_checksum_en(void *desc,
  350. uint8_t en)
  351. {
  352. HAL_SET_FLD(desc, TCL_DATA_CMD_3, IPV4_CHECKSUM_EN) |=
  353. HAL_TX_SM(TCL_DATA_CMD_3, IPV4_CHECKSUM_EN, en);
  354. }
  355. /**
  356. * hal_tx_desc_set_fw_metadata- Sets the metadata that is part of TCL descriptor
  357. * @desc:Handle to Tx Descriptor
  358. * @metadata: Metadata to be sent to Firmware
  359. *
  360. * Return: void
  361. */
  362. static inline void hal_tx_desc_set_fw_metadata(void *desc,
  363. uint16_t metadata)
  364. {
  365. HAL_SET_FLD(desc, TCL_DATA_CMD_2, TCL_CMD_NUMBER) |=
  366. HAL_TX_SM(TCL_DATA_CMD_2, TCL_CMD_NUMBER, metadata);
  367. }
  368. /**
  369. * hal_tx_desc_set_to_fw - Set To_FW bit in Tx Descriptor.
  370. * @desc:Handle to Tx Descriptor
  371. * @to_fw: if set, Forward packet to FW along with classification result
  372. *
  373. * Return: void
  374. */
  375. static inline void hal_tx_desc_set_to_fw(void *desc, uint8_t to_fw)
  376. {
  377. HAL_SET_FLD(desc, TCL_DATA_CMD_3, TO_FW) |=
  378. HAL_TX_SM(TCL_DATA_CMD_3, TO_FW, to_fw);
  379. }
  380. /**
  381. * hal_tx_desc_set_dscp_tid_table_id - Sets DSCP to TID conversion table ID
  382. * @desc: Handle to Tx Descriptor
  383. * @id: DSCP to tid conversion table to be used for this frame
  384. *
  385. * Return: void
  386. */
  387. static inline void hal_tx_desc_set_dscp_tid_table_id(void *desc,
  388. uint8_t id)
  389. {
  390. HAL_SET_FLD(desc, TCL_DATA_CMD_3,
  391. DSCP_TO_TID_PRIORITY_TABLE_ID) |=
  392. HAL_TX_SM(TCL_DATA_CMD_3,
  393. DSCP_TO_TID_PRIORITY_TABLE_ID, id);
  394. }
  395. /**
  396. * hal_tx_desc_set_mesh_en - Set mesh_enable flag in Tx descriptor
  397. * @desc: Handle to Tx Descriptor
  398. * @en: For raw WiFi frames, this indicates transmission to a mesh STA,
  399. * enabling the interpretation of the 'Mesh Control Present' bit
  400. * (bit 8) of QoS Control (otherwise this bit is ignored),
  401. * For native WiFi frames, this indicates that a 'Mesh Control' field
  402. * is present between the header and the LLC.
  403. *
  404. * Return: void
  405. */
  406. static inline void hal_tx_desc_set_mesh_en(void *desc, uint8_t en)
  407. {
  408. HAL_SET_FLD(desc, TCL_DATA_CMD_4, MESH_ENABLE) |=
  409. HAL_TX_SM(TCL_DATA_CMD_4, MESH_ENABLE, en);
  410. }
  411. /**
  412. * hal_tx_desc_set_hlos_tid - Set the TID value (override DSCP/PCP fields in
  413. * frame) to be used for Tx Frame
  414. * @desc: Handle to Tx Descriptor
  415. * @hlos_tid: HLOS TID
  416. *
  417. * Return: void
  418. */
  419. static inline void hal_tx_desc_set_hlos_tid(void *desc,
  420. uint8_t hlos_tid)
  421. {
  422. HAL_SET_FLD(desc, TCL_DATA_CMD_4, HLOS_TID) |=
  423. HAL_TX_SM(TCL_DATA_CMD_4, HLOS_TID, hlos_tid);
  424. HAL_SET_FLD(desc, TCL_DATA_CMD_4, HLOS_TID_OVERWRITE) |=
  425. HAL_TX_SM(TCL_DATA_CMD_4, HLOS_TID_OVERWRITE, 1);
  426. }
  427. /**
  428. * hal_tx_desc_sync - Commit the descriptor to Hardware
  429. * @hal_tx_des_cached: Cached descriptor that software maintains
  430. * @hw_desc: Hardware descriptor to be updated
  431. */
  432. static inline void hal_tx_desc_sync(void *hal_tx_desc_cached,
  433. void *hw_desc)
  434. {
  435. qdf_mem_copy((hw_desc + sizeof(struct tlv_32_hdr)),
  436. hal_tx_desc_cached, 20);
  437. }
  438. /*---------------------------------------------------------------------------
  439. Tx MSDU Extension Descriptor accessor APIs
  440. ---------------------------------------------------------------------------*/
  441. /**
  442. * hal_tx_ext_desc_set_tso_enable() - Set TSO Enable Flag
  443. * @desc: Handle to Tx MSDU Extension Descriptor
  444. * @tso_en: bool value set to true if TSO is enabled
  445. *
  446. * Return: none
  447. */
  448. static inline void hal_tx_ext_desc_set_tso_enable(void *desc,
  449. uint8_t tso_en)
  450. {
  451. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_0, TSO_ENABLE) |=
  452. HAL_TX_SM(TX_MSDU_EXTENSION_0, TSO_ENABLE, tso_en);
  453. }
  454. /**
  455. * hal_tx_ext_desc_set_checksum_en() - Enable HW Checksum offload
  456. * @desc: Handle to Tx MSDU Extension Descriptor
  457. * @en: Checksum offload enable
  458. *
  459. * Return: none
  460. */
  461. static inline void hal_tx_ext_desc_set_checksum_en(void *desc,
  462. uint8_t en)
  463. {
  464. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_0, IPV4_CHECKSUM_EN) |=
  465. ((HAL_TX_SM(TX_MSDU_EXTENSION_0, IPV4_CHECKSUM_EN, en)) |
  466. (HAL_TX_SM(TX_MSDU_EXTENSION_0, UDP_OVER_IPV4_CHECKSUM_EN, en)) |
  467. (HAL_TX_SM(TX_MSDU_EXTENSION_0, UDP_OVER_IPV6_CHECKSUM_EN, en)) |
  468. (HAL_TX_SM(TX_MSDU_EXTENSION_0, TCP_OVER_IPV4_CHECKSUM_EN, en)) |
  469. (HAL_TX_SM(TX_MSDU_EXTENSION_0, TCP_OVER_IPV6_CHECKSUM_EN, en)));
  470. }
  471. /**
  472. * hal_tx_ext_desc_set_tcp_flags() - Enable HW Checksum offload
  473. * @desc: Handle to Tx MSDU Extension Descriptor
  474. * @tcp_flags: TCP flags {NS,CWR,ECE,URG,ACK,PSH, RST ,SYN,FIN}
  475. * @mask: TCP flag mask. Tcp_flag is inserted into the header
  476. * based on the mask, if tso is enabled
  477. *
  478. * Return: none
  479. */
  480. static inline void hal_tx_ext_desc_set_tcp_flags(void *desc,
  481. uint16_t tcp_flags,
  482. uint16_t mask)
  483. {
  484. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_0, TCP_FLAG) |=
  485. ((HAL_TX_SM(TX_MSDU_EXTENSION_0, TCP_FLAG, tcp_flags)) |
  486. (HAL_TX_SM(TX_MSDU_EXTENSION_0, TCP_FLAG_MASK, mask)));
  487. }
  488. /**
  489. * hal_tx_ext_desc_set_msdu_length() - Set L2 and IP Lengths
  490. * @desc: Handle to Tx MSDU Extension Descriptor
  491. * @l2_len: L2 length for the msdu, if tso is enabled
  492. * @ip_len: IP length for the msdu, if tso is enabled
  493. *
  494. * Return: none
  495. */
  496. static inline void hal_tx_ext_desc_set_msdu_length(void *desc,
  497. uint16_t l2_len,
  498. uint16_t ip_len)
  499. {
  500. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_1, L2_LENGTH) |=
  501. ((HAL_TX_SM(TX_MSDU_EXTENSION_1, L2_LENGTH, l2_len)) |
  502. (HAL_TX_SM(TX_MSDU_EXTENSION_1, IP_LENGTH, ip_len)));
  503. }
  504. /**
  505. * hal_tx_ext_desc_set_tcp_seq() - Set TCP Sequence number
  506. * @desc: Handle to Tx MSDU Extension Descriptor
  507. * @seq_num: Tcp_seq_number for the msdu, if tso is enabled
  508. *
  509. * Return: none
  510. */
  511. static inline void hal_tx_ext_desc_set_tcp_seq(void *desc,
  512. uint32_t seq_num)
  513. {
  514. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_2, TCP_SEQ_NUMBER) |=
  515. ((HAL_TX_SM(TX_MSDU_EXTENSION_2, TCP_SEQ_NUMBER, seq_num)));
  516. }
  517. /**
  518. * hal_tx_ext_desc_set_buffer() - Set Buffer Pointer and Length for a fragment
  519. * @desc: Handle to Tx MSDU Extension Descriptor
  520. * @frag_num: Fragment number (value can be 0 to 5)
  521. * @paddr_lo: Lower 32-bit of Buffer Physical address
  522. * @paddr_hi: Upper 32-bit of Buffer Physical address
  523. * @length: Buffer Length
  524. *
  525. * Return: none
  526. */
  527. static inline void hal_tx_ext_desc_set_buffer(void *desc,
  528. uint8_t frag_num,
  529. uint32_t paddr_lo,
  530. uint16_t paddr_hi,
  531. uint16_t length)
  532. {
  533. HAL_SET_FLD_OFFSET(desc, TX_MSDU_EXTENSION_6, BUF0_PTR_31_0,
  534. (frag_num << 3)) |=
  535. ((HAL_TX_SM(TX_MSDU_EXTENSION_6, BUF0_PTR_31_0, paddr_lo)));
  536. HAL_SET_FLD_OFFSET(desc, TX_MSDU_EXTENSION_7, BUF0_PTR_39_32,
  537. (frag_num << 3)) |=
  538. ((HAL_TX_SM(TX_MSDU_EXTENSION_7, BUF0_PTR_39_32,
  539. (paddr_hi))));
  540. HAL_SET_FLD_OFFSET(desc, TX_MSDU_EXTENSION_7, BUF0_LEN,
  541. (frag_num << 3)) |=
  542. ((HAL_TX_SM(TX_MSDU_EXTENSION_7, BUF0_LEN, length)));
  543. }
  544. /**
  545. * hal_tx_ext_desc_set_buffer0_param() - Set Buffer 0 Pointer and Length
  546. * @desc: Handle to Tx MSDU Extension Descriptor
  547. * @paddr_lo: Lower 32-bit of Buffer Physical address
  548. * @paddr_hi: Upper 32-bit of Buffer Physical address
  549. * @length: Buffer 0 Length
  550. *
  551. * Return: none
  552. */
  553. static inline void hal_tx_ext_desc_set_buffer0_param(void *desc,
  554. uint32_t paddr_lo,
  555. uint16_t paddr_hi,
  556. uint16_t length)
  557. {
  558. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_6, BUF0_PTR_31_0) |=
  559. ((HAL_TX_SM(TX_MSDU_EXTENSION_6, BUF0_PTR_31_0, paddr_lo)));
  560. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_7, BUF0_PTR_39_32) |=
  561. ((HAL_TX_SM(TX_MSDU_EXTENSION_7,
  562. BUF0_PTR_39_32, paddr_hi)));
  563. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_7, BUF0_LEN) |=
  564. ((HAL_TX_SM(TX_MSDU_EXTENSION_7, BUF0_LEN, length)));
  565. }
  566. /**
  567. * hal_tx_ext_desc_set_buffer1_param() - Set Buffer 1 Pointer and Length
  568. * @desc: Handle to Tx MSDU Extension Descriptor
  569. * @paddr_lo: Lower 32-bit of Buffer Physical address
  570. * @paddr_hi: Upper 32-bit of Buffer Physical address
  571. * @length: Buffer 1 Length
  572. *
  573. * Return: none
  574. */
  575. static inline void hal_tx_ext_desc_set_buffer1_param(void *desc,
  576. uint32_t paddr_lo,
  577. uint16_t paddr_hi,
  578. uint16_t length)
  579. {
  580. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_8, BUF1_PTR_31_0) |=
  581. ((HAL_TX_SM(TX_MSDU_EXTENSION_8, BUF1_PTR_31_0, paddr_lo)));
  582. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_9, BUF1_PTR_39_32) |=
  583. ((HAL_TX_SM(TX_MSDU_EXTENSION_9,
  584. BUF1_PTR_39_32, paddr_hi)));
  585. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_9, BUF1_LEN) |=
  586. ((HAL_TX_SM(TX_MSDU_EXTENSION_9, BUF1_LEN, length)));
  587. }
  588. /**
  589. * hal_tx_ext_desc_set_buffer2_param() - Set Buffer 2 Pointer and Length
  590. * @desc: Handle to Tx MSDU Extension Descriptor
  591. * @paddr_lo: Lower 32-bit of Buffer Physical address
  592. * @paddr_hi: Upper 32-bit of Buffer Physical address
  593. * @length: Buffer 2 Length
  594. *
  595. * Return: none
  596. */
  597. static inline void hal_tx_ext_desc_set_buffer2_param(void *desc,
  598. uint32_t paddr_lo,
  599. uint16_t paddr_hi,
  600. uint16_t length)
  601. {
  602. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_10, BUF2_PTR_31_0) |=
  603. ((HAL_TX_SM(TX_MSDU_EXTENSION_10, BUF2_PTR_31_0,
  604. paddr_lo)));
  605. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_11, BUF2_PTR_39_32) |=
  606. ((HAL_TX_SM(TX_MSDU_EXTENSION_11, BUF2_PTR_39_32,
  607. paddr_hi)));
  608. HAL_SET_FLD(desc, TX_MSDU_EXTENSION_11, BUF2_LEN) |=
  609. ((HAL_TX_SM(TX_MSDU_EXTENSION_11, BUF2_LEN, length)));
  610. }
  611. /**
  612. * hal_tx_ext_desc_sync - Commit the descriptor to Hardware
  613. * @desc_cached: Cached descriptor that software maintains
  614. * @hw_desc: Hardware descriptor to be updated
  615. *
  616. * Return: none
  617. */
  618. static inline void hal_tx_ext_desc_sync(uint8_t *desc_cached,
  619. uint8_t *hw_desc)
  620. {
  621. qdf_mem_copy(&hw_desc[0], &desc_cached[0],
  622. HAL_TX_EXTENSION_DESC_LEN_BYTES);
  623. }
  624. /**
  625. * hal_tx_ext_desc_get_tso_enable() - Set TSO Enable Flag
  626. * @hal_tx_ext_desc: Handle to Tx MSDU Extension Descriptor
  627. *
  628. * Return: tso_enable value in the descriptor
  629. */
  630. static inline uint32_t hal_tx_ext_desc_get_tso_enable(void *hal_tx_ext_desc)
  631. {
  632. uint32_t *desc = (uint32_t *) hal_tx_ext_desc;
  633. return (*desc & TX_MSDU_EXTENSION_0_TSO_ENABLE_MASK) >>
  634. TX_MSDU_EXTENSION_0_TSO_ENABLE_LSB;
  635. }
  636. /*---------------------------------------------------------------------------
  637. WBM Descriptor accessor APIs for Tx completions
  638. ---------------------------------------------------------------------------*/
  639. /**
  640. * hal_tx_comp_get_desc_id() - Get TX descriptor id within comp descriptor
  641. * @hal_desc: completion ring descriptor pointer
  642. *
  643. * This function will tx descriptor id, cookie, within hardware completion
  644. * descriptor
  645. *
  646. * Return: cookie
  647. */
  648. static inline uint32_t hal_tx_comp_get_desc_id(void *hal_desc)
  649. {
  650. uint32_t comp_desc =
  651. *(uint32_t *) (((uint8_t *) hal_desc) +
  652. BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_OFFSET);
  653. /* Cookie is placed on 2nd word */
  654. return (comp_desc & BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_MASK) >>
  655. BUFFER_ADDR_INFO_1_SW_BUFFER_COOKIE_LSB;
  656. }
  657. /**
  658. * hal_tx_comp_get_paddr() - Get paddr within comp descriptor
  659. * @hal_desc: completion ring descriptor pointer
  660. *
  661. * This function will get buffer physical address within hardware completion
  662. * descriptor
  663. *
  664. * Return: Buffer physical address
  665. */
  666. static inline qdf_dma_addr_t hal_tx_comp_get_paddr(void *hal_desc)
  667. {
  668. uint32_t paddr_lo;
  669. uint32_t paddr_hi;
  670. paddr_lo = *(uint32_t *) (((uint8_t *) hal_desc) +
  671. BUFFER_ADDR_INFO_0_BUFFER_ADDR_31_0_OFFSET);
  672. paddr_hi = *(uint32_t *) (((uint8_t *) hal_desc) +
  673. BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_OFFSET);
  674. paddr_hi = (paddr_hi & BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_MASK) >>
  675. BUFFER_ADDR_INFO_1_BUFFER_ADDR_39_32_LSB;
  676. return (qdf_dma_addr_t) (paddr_lo | (((uint64_t) paddr_hi) << 32));
  677. }
  678. /**
  679. * hal_tx_comp_get_buffer_source() - Get buffer release source value
  680. * @hal_desc: completion ring descriptor pointer
  681. *
  682. * This function will get buffer release source from Tx completion descriptor
  683. *
  684. * Return: buffer release source
  685. */
  686. static inline uint32_t hal_tx_comp_get_buffer_source(void *hal_desc)
  687. {
  688. uint32_t comp_desc =
  689. *(uint32_t *) (((uint8_t *) hal_desc) +
  690. WBM_RELEASE_RING_2_RELEASE_SOURCE_MODULE_OFFSET);
  691. return (comp_desc & WBM_RELEASE_RING_2_RELEASE_SOURCE_MODULE_MASK) >>
  692. WBM_RELEASE_RING_2_RELEASE_SOURCE_MODULE_LSB;
  693. }
  694. /**
  695. * hal_tx_comp_get_buffer_type() - Buffer or Descriptor type
  696. * @hal_desc: completion ring descriptor pointer
  697. *
  698. * This function will return the type of pointer - buffer or descriptor
  699. *
  700. * Return: buffer type
  701. */
  702. static inline uint32_t hal_tx_comp_get_buffer_type(void *hal_desc)
  703. {
  704. uint32_t comp_desc =
  705. *(uint32_t *) (((uint8_t *) hal_desc) +
  706. WBM_RELEASE_RING_2_BUFFER_OR_DESC_TYPE_OFFSET);
  707. return (comp_desc & WBM_RELEASE_RING_2_BUFFER_OR_DESC_TYPE_MASK) >>
  708. WBM_RELEASE_RING_2_BUFFER_OR_DESC_TYPE_LSB;
  709. }
  710. /**
  711. * hal_tx_comp_get_release_reason() - TQM Release reason
  712. * @hal_desc: completion ring descriptor pointer
  713. *
  714. * This function will return the type of pointer - buffer or descriptor
  715. *
  716. * Return: buffer type
  717. */
  718. static inline uint8_t hal_tx_comp_get_release_reason(void *hal_desc)
  719. {
  720. uint32_t comp_desc =
  721. *(uint32_t *) (((uint8_t *) hal_desc) +
  722. WBM_RELEASE_RING_2_TQM_RELEASE_REASON_OFFSET);
  723. return (comp_desc & WBM_RELEASE_RING_2_TQM_RELEASE_REASON_MASK) >>
  724. WBM_RELEASE_RING_2_TQM_RELEASE_REASON_LSB;
  725. }
  726. /**
  727. * hal_tx_comp_desc_sync() - collect hardware descriptor contents
  728. * @hal_desc: hardware descriptor pointer
  729. * @comp: software descriptor pointer
  730. * @read_status: 0 - Do not read status words from descriptors
  731. * 1 - Enable reading of status words from descriptor
  732. *
  733. * This function will collect hardware release ring element contents and
  734. * translate to software descriptor content
  735. *
  736. * Return: none
  737. */
  738. static inline void hal_tx_comp_desc_sync(void *hw_desc,
  739. struct hal_tx_desc_comp_s *comp,
  740. bool read_status)
  741. {
  742. if (!read_status)
  743. qdf_mem_copy(comp, hw_desc, HAL_TX_COMPLETION_DESC_BASE_LEN);
  744. else
  745. qdf_mem_copy(comp, hw_desc, HAL_TX_COMPLETION_DESC_LEN_BYTES);
  746. }
  747. /**
  748. * hal_tx_comp_get_htt_desc() - Read the HTT portion of WBM Descriptor
  749. * @hal_desc: Hardware (WBM) descriptor pointer
  750. * @htt_desc: Software HTT descriptor pointer
  751. *
  752. * This function will read the HTT structure overlaid on WBM descriptor
  753. * into a cached software descriptor
  754. *
  755. */
  756. static inline void hal_tx_comp_get_htt_desc(void *hw_desc, uint8_t *htt_desc)
  757. {
  758. uint8_t *desc = hw_desc + HAL_TX_COMP_HTT_STATUS_OFFSET;
  759. qdf_mem_copy(htt_desc, desc, HAL_TX_COMP_HTT_STATUS_LEN);
  760. }
  761. /**
  762. * hal_tx_set_dscp_tid_map_default() - Configure default DSCP to TID map table
  763. * @soc: HAL SoC context
  764. * @map: DSCP-TID mapping table
  765. * @id: mapping table ID - 0,1
  766. *
  767. * DSCP are mapped to 8 TID values using TID values programmed
  768. * in two set of mapping registers DSCP_TID1_MAP_<0 to 6> (id = 0)
  769. * and DSCP_TID2_MAP_<0 to 6> (id = 1)
  770. * Each mapping register has TID mapping for 10 DSCP values
  771. *
  772. * Return: none
  773. */
  774. static inline void hal_tx_set_dscp_tid_map(void *hal_soc, uint8_t *map,
  775. uint8_t id)
  776. {
  777. int i;
  778. uint32_t addr;
  779. uint32_t value;
  780. struct hal_soc *soc = (struct hal_soc *)hal_soc;
  781. if (id == HAL_TX_DSCP_TID_MAP_TABLE_DEFAULT) {
  782. addr =
  783. HWIO_TCL_R0_DSCP_TID1_MAP_0_ADDR(
  784. SEQ_WCSS_UMAC_MAC_TCL_REG_OFFSET);
  785. } else {
  786. addr =
  787. HWIO_TCL_R0_DSCP_TID2_MAP_0_ADDR(
  788. SEQ_WCSS_UMAC_MAC_TCL_REG_OFFSET);
  789. }
  790. for (i = 0; i < 64; i += 10) {
  791. value = (map[i] |
  792. (map[i+1] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_1_SHFT) |
  793. (map[i+2] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_2_SHFT) |
  794. (map[i+3] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_3_SHFT) |
  795. (map[i+4] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_4_SHFT) |
  796. (map[i+5] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_5_SHFT) |
  797. (map[i+6] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_6_SHFT) |
  798. (map[i+7] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_7_SHFT) |
  799. (map[i+8] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_8_SHFT) |
  800. (map[i+9] << HWIO_TCL_R0_DSCP_TID1_MAP_0_DSCP_9_SHFT));
  801. HAL_REG_WRITE(soc, addr,
  802. (value & HWIO_TCL_R0_DSCP_TID1_MAP_1_RMSK));
  803. addr += 4;
  804. }
  805. }
  806. /**
  807. * hal_tx_init_data_ring() - Initialize all the TCL Descriptors in SRNG
  808. * @hal_soc: Handle to HAL SoC structure
  809. * @hal_srng: Handle to HAL SRNG structure
  810. *
  811. * Return: none
  812. */
  813. static inline void hal_tx_init_data_ring(void *hal_soc, void *hal_srng)
  814. {
  815. uint8_t *desc_addr;
  816. struct hal_srng_params srng_params;
  817. uint32_t desc_size;
  818. uint32_t num_desc;
  819. hal_get_srng_params(hal_soc, hal_srng, &srng_params);
  820. desc_addr = (uint8_t *) srng_params.ring_base_vaddr;
  821. desc_size = sizeof(struct tcl_data_cmd);
  822. num_desc = srng_params.num_entries;
  823. while (num_desc) {
  824. HAL_TX_DESC_SET_TLV_HDR(desc_addr, HAL_TX_TCL_DATA_TAG,
  825. desc_size);
  826. desc_addr += (desc_size + sizeof(struct tlv_32_hdr));
  827. num_desc--;
  828. }
  829. }
  830. #endif /* HAL_TX_H */