tcl_data_cmd.h 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845
  1. /*
  2. * Copyright (c) 2016-2017 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. //
  19. // DO NOT EDIT! This file is automatically generated
  20. // These definitions are tied to a particular hardware layout
  21. #ifndef _TCL_DATA_CMD_H_
  22. #define _TCL_DATA_CMD_H_
  23. #if !defined(__ASSEMBLER__)
  24. #endif
  25. #include "buffer_addr_info.h"
  26. // ################ START SUMMARY #################
  27. //
  28. // Dword Fields
  29. // 0-1 struct buffer_addr_info buf_addr_info;
  30. // 2 buf_or_ext_desc_type[0], epd[1], encap_type[3:2], encrypt_type[7:4], src_buffer_swap[8], link_meta_swap[9], reserved[13:10], addrx_en[14], addry_en[15], tcl_cmd_number[31:16]
  31. // 3 data_length[15:0], ipv4_checksum_en[16], udp_over_ipv4_checksum_en[17], udp_over_ipv6_checksum_en[18], tcp_over_ipv4_checksum_en[19], tcp_over_ipv6_checksum_en[20], to_fw[21], dscp_to_tid_priority_table_id[22], packet_offset[31:23]
  32. // 4 buffer_timestamp[18:0], buffer_timestamp_valid[19], mesh_enable[20], hlos_tid_overwrite[21], hlos_tid[25:22], reserved_4[31:26]
  33. // 5 reserved_5[31:0]
  34. // 6 reserved_6a[19:0], ring_id[27:20], looping_count[31:28]
  35. //
  36. // ################ END SUMMARY #################
  37. #define NUM_OF_DWORDS_TCL_DATA_CMD 7
  38. struct tcl_data_cmd {
  39. struct buffer_addr_info buf_addr_info;
  40. uint32_t buf_or_ext_desc_type : 1, //[0]
  41. epd : 1, //[1]
  42. encap_type : 2, //[3:2]
  43. encrypt_type : 4, //[7:4]
  44. src_buffer_swap : 1, //[8]
  45. link_meta_swap : 1, //[9]
  46. reserved : 4, //[13:10]
  47. addrx_en : 1, //[14]
  48. addry_en : 1, //[15]
  49. tcl_cmd_number : 16; //[31:16]
  50. uint32_t data_length : 16, //[15:0]
  51. ipv4_checksum_en : 1, //[16]
  52. udp_over_ipv4_checksum_en : 1, //[17]
  53. udp_over_ipv6_checksum_en : 1, //[18]
  54. tcp_over_ipv4_checksum_en : 1, //[19]
  55. tcp_over_ipv6_checksum_en : 1, //[20]
  56. to_fw : 1, //[21]
  57. dscp_to_tid_priority_table_id : 1, //[22]
  58. packet_offset : 9; //[31:23]
  59. uint32_t buffer_timestamp : 19, //[18:0]
  60. buffer_timestamp_valid : 1, //[19]
  61. mesh_enable : 1, //[20]
  62. hlos_tid_overwrite : 1, //[21]
  63. hlos_tid : 4, //[25:22]
  64. reserved_4 : 6; //[31:26]
  65. uint32_t reserved_5 : 32; //[31:0]
  66. uint32_t reserved_6a : 20, //[19:0]
  67. ring_id : 8, //[27:20]
  68. looping_count : 4; //[31:28]
  69. };
  70. /*
  71. struct buffer_addr_info buf_addr_info
  72. Details of the physical address for a single buffer
  73. It also contains return ownership info as well as some
  74. meta data for SW related to this buffer.
  75. In case of Buf_or_ext_desc_type indicating
  76. 'MSDU_buffer', this address indicates the start of the meta
  77. data that is preceding the actual packet data.
  78. The start of the actual packet data is provided by
  79. field: Packet_offset
  80. buf_or_ext_desc_type
  81. <enum 0 MSDU_buffer> The address points to an MSDU
  82. buffer.
  83. <enum 1 extension_descriptor> The address points to an
  84. MSDU link extension descriptor
  85. < legal all>
  86. epd
  87. When this bit is set then input packet is an EPD type
  88. <legal all>
  89. encap_type
  90. Indicates the encapsulation that HW will perform:
  91. <enum 0 RAW> No encapsulation
  92. <enum 1 Native_WiFi>
  93. <enum 2 Ethernet> Ethernet 2 (DIX) or 802.3 (uses
  94. SNAP/LLC)
  95. <enum 3 802_3> DO NOT USE. Indicate Ethernet
  96. Used by the OLE during encapsulation.
  97. <legal all>
  98. encrypt_type
  99. Field only valid for encap_type: RAW
  100. Indicates type of decrypt cipher used (as defined in the
  101. peer entry)
  102. <enum 0 wep_40> WEP 40-bit
  103. <enum 1 wep_104> WEP 104-bit
  104. <enum 2 tkip_no_mic> TKIP without MIC
  105. <enum 3 wep_128> WEP 128-bit
  106. <enum 4 tkip_with_mic> TKIP with MIC
  107. <enum 5 wapi> WAPI
  108. <enum 6 aes_ccmp_128> AES CCMP 128
  109. <enum 7 no_cipher> No crypto
  110. <enum 8 aes_ccmp_256> AES CCMP 256
  111. <enum 9 aes_gcmp_128> AES CCMP 128
  112. <enum 10 aes_gcmp_256> AES CCMP 256
  113. <enum 11 wapi_gcm_sm4> WAPI GCM SM4
  114. <legal 0-11>
  115. src_buffer_swap
  116. Treats source memory (packet buffer) organization as
  117. big-endian. The packets are read and byte swapped.
  118. 1'b0: Source memory is little endian
  119. 1'b1: Source memory is big endian
  120. <legal all>
  121. link_meta_swap
  122. Treats link descriptor and Metadata as big-endian. The
  123. link descriptor/Metadata is read and byte swapped.
  124. 1'b0: Memory is little endian
  125. 1'b1: Memory is big endian
  126. <legal all>
  127. reserved
  128. <legal 0>
  129. addrx_en
  130. Address X search enable in ASE
  131. 1'b0: Search disable
  132. 1'b1: Search Enable
  133. <legal all>
  134. addry_en
  135. Address Y search enable in ASE
  136. 1'b0: Search disable
  137. 1'b1: Search Enable
  138. <legal all>
  139. tcl_cmd_number
  140. This number can be used by SW to track, identify and
  141. link the created commands with the command statuses
  142. Is set to the value 'TCL_CMD_Number' of the related
  143. TCL_DATA command
  144. <legal all>
  145. data_length
  146. Valid Data length in bytes.
  147. MSDU length in case of direct descriptor.
  148. Length of link extension descriptor in case of Link
  149. extension descriptor. This is used to know the size of
  150. Metadata.
  151. <legal all>
  152. ipv4_checksum_en
  153. OLE related control
  154. Enable IPv4 checksum replacement
  155. udp_over_ipv4_checksum_en
  156. OLE related control
  157. Enable UDP over IPv4 checksum replacement. UDP checksum
  158. over IPv4 is optional for TCP/IP stacks.
  159. udp_over_ipv6_checksum_en
  160. OLE related control
  161. Enable UDP over IPv6 checksum replacement. UDP checksum
  162. over IPv6 is mandatory for TCP/IP stacks.
  163. tcp_over_ipv4_checksum_en
  164. OLE related control
  165. Enable TCP checksum over IPv4 replacement
  166. tcp_over_ipv6_checksum_en
  167. OLE related control
  168. Enable TCP checksum over IPv6 replacement
  169. to_fw
  170. Forward packet to FW along with classification result.
  171. The packet will not be forward to TQM when this bit is set
  172. 1'b0: Use classification result to forward the packet.
  173. 1'b1: Override classification result and forward packet
  174. only to FW.
  175. dscp_to_tid_priority_table_id
  176. The DSCP to tid conversion table to be used for this
  177. frame
  178. <legal all>
  179. packet_offset
  180. Packet offset from Metadata in case of direct buffer
  181. descriptor. This field is valid when Buf_or_ext_desc_type is
  182. reset(= 0).
  183. <legal all>
  184. buffer_timestamp
  185. Field only valid when 'Buffer_timestamp_valid ' is set.
  186. Frame system entrance timestamp. The timestamp is
  187. related to the global system timer
  188. Generally the first module (SW, TCL or TQM). that sees
  189. this frame and this timestamp field is not valid, shall fill
  190. in this field.
  191. Timestamp in units of 1024 us
  192. buffer_timestamp_valid
  193. When set, the Buffer_timestamp field contains valid
  194. info.
  195. mesh_enable
  196. If set to 1:
  197. * For raw WiFi frames, this indicates transmission to a
  198. mesh STA, enabling the interpretation of the 'Mesh Control
  199. Present' bit (bit 8) of QoS Control (otherwise this bit is
  200. ignored),
  201. * For native WiFi frames, this indicates that a 'Mesh
  202. Control' field is present between the header and the LLC.
  203. hlos_tid_overwrite
  204. When set, TCL shall ignore the IP DSCP and VLAN PCP
  205. fields and use HLOS_TID as the final TID. Otherwise TCL
  206. shall consider the DSCP and PCP fields as well as HLOS_TID
  207. and choose a final TID based on the configured priority
  208. <legal all>
  209. hlos_tid
  210. HLOS MSDU priority
  211. Field is used when HLOS_TID_overwrite is set.
  212. Field is also used when HLOS_TID_overwrite is not set
  213. and DSCP/PCP is not available in the packet
  214. <legal all>
  215. reserved_4
  216. <legal 0>
  217. reserved_5
  218. <legal 0>
  219. reserved_6a
  220. <legal 0>
  221. ring_id
  222. The buffer pointer ring ID.
  223. 0 refers to the IDLE ring
  224. 1 - N refers to other rings
  225. Helps with debugging when dumping ring contents.
  226. <legal all>
  227. looping_count
  228. A count value that indicates the number of times the
  229. producer of entries into the Ring has looped around the
  230. ring.
  231. At initialization time, this value is set to 0. On the
  232. first loop, this value is set to 1. After the max value is
  233. reached allowed by the number of bits for this field, the
  234. count value continues with 0 again.
  235. In case SW is the consumer of the ring entries, it can
  236. use this field to figure out up to where the producer of
  237. entries has created new entries. This eliminates the need to
  238. check where the head pointer' of the ring is located once
  239. the SW starts processing an interrupt indicating that new
  240. entries have been put into this ring...
  241. Also note that SW if it wants only needs to look at the
  242. LSB bit of this count value.
  243. <legal all>
  244. */
  245. #define TCL_DATA_CMD_0_BUFFER_ADDR_INFO_BUF_ADDR_INFO_OFFSET 0x00000000
  246. #define TCL_DATA_CMD_0_BUFFER_ADDR_INFO_BUF_ADDR_INFO_LSB 28
  247. #define TCL_DATA_CMD_0_BUFFER_ADDR_INFO_BUF_ADDR_INFO_MASK 0xffffffff
  248. #define TCL_DATA_CMD_1_BUFFER_ADDR_INFO_BUF_ADDR_INFO_OFFSET 0x00000004
  249. #define TCL_DATA_CMD_1_BUFFER_ADDR_INFO_BUF_ADDR_INFO_LSB 28
  250. #define TCL_DATA_CMD_1_BUFFER_ADDR_INFO_BUF_ADDR_INFO_MASK 0xffffffff
  251. /* Description TCL_DATA_CMD_2_BUF_OR_EXT_DESC_TYPE
  252. <enum 0 MSDU_buffer> The address points to an MSDU
  253. buffer.
  254. <enum 1 extension_descriptor> The address points to an
  255. MSDU link extension descriptor
  256. < legal all>
  257. */
  258. #define TCL_DATA_CMD_2_BUF_OR_EXT_DESC_TYPE_OFFSET 0x00000008
  259. #define TCL_DATA_CMD_2_BUF_OR_EXT_DESC_TYPE_LSB 0
  260. #define TCL_DATA_CMD_2_BUF_OR_EXT_DESC_TYPE_MASK 0x00000001
  261. /* Description TCL_DATA_CMD_2_EPD
  262. When this bit is set then input packet is an EPD type
  263. <legal all>
  264. */
  265. #define TCL_DATA_CMD_2_EPD_OFFSET 0x00000008
  266. #define TCL_DATA_CMD_2_EPD_LSB 1
  267. #define TCL_DATA_CMD_2_EPD_MASK 0x00000002
  268. /* Description TCL_DATA_CMD_2_ENCAP_TYPE
  269. Indicates the encapsulation that HW will perform:
  270. <enum 0 RAW> No encapsulation
  271. <enum 1 Native_WiFi>
  272. <enum 2 Ethernet> Ethernet 2 (DIX) or 802.3 (uses
  273. SNAP/LLC)
  274. <enum 3 802_3> DO NOT USE. Indicate Ethernet
  275. Used by the OLE during encapsulation.
  276. <legal all>
  277. */
  278. #define TCL_DATA_CMD_2_ENCAP_TYPE_OFFSET 0x00000008
  279. #define TCL_DATA_CMD_2_ENCAP_TYPE_LSB 2
  280. #define TCL_DATA_CMD_2_ENCAP_TYPE_MASK 0x0000000c
  281. /* Description TCL_DATA_CMD_2_ENCRYPT_TYPE
  282. Field only valid for encap_type: RAW
  283. Indicates type of decrypt cipher used (as defined in the
  284. peer entry)
  285. <enum 0 wep_40> WEP 40-bit
  286. <enum 1 wep_104> WEP 104-bit
  287. <enum 2 tkip_no_mic> TKIP without MIC
  288. <enum 3 wep_128> WEP 128-bit
  289. <enum 4 tkip_with_mic> TKIP with MIC
  290. <enum 5 wapi> WAPI
  291. <enum 6 aes_ccmp_128> AES CCMP 128
  292. <enum 7 no_cipher> No crypto
  293. <enum 8 aes_ccmp_256> AES CCMP 256
  294. <enum 9 aes_gcmp_128> AES CCMP 128
  295. <enum 10 aes_gcmp_256> AES CCMP 256
  296. <enum 11 wapi_gcm_sm4> WAPI GCM SM4
  297. <legal 0-11>
  298. */
  299. #define TCL_DATA_CMD_2_ENCRYPT_TYPE_OFFSET 0x00000008
  300. #define TCL_DATA_CMD_2_ENCRYPT_TYPE_LSB 4
  301. #define TCL_DATA_CMD_2_ENCRYPT_TYPE_MASK 0x000000f0
  302. /* Description TCL_DATA_CMD_2_SRC_BUFFER_SWAP
  303. Treats source memory (packet buffer) organization as
  304. big-endian. The packets are read and byte swapped.
  305. 1'b0: Source memory is little endian
  306. 1'b1: Source memory is big endian
  307. <legal all>
  308. */
  309. #define TCL_DATA_CMD_2_SRC_BUFFER_SWAP_OFFSET 0x00000008
  310. #define TCL_DATA_CMD_2_SRC_BUFFER_SWAP_LSB 8
  311. #define TCL_DATA_CMD_2_SRC_BUFFER_SWAP_MASK 0x00000100
  312. /* Description TCL_DATA_CMD_2_LINK_META_SWAP
  313. Treats link descriptor and Metadata as big-endian. The
  314. link descriptor/Metadata is read and byte swapped.
  315. 1'b0: Memory is little endian
  316. 1'b1: Memory is big endian
  317. <legal all>
  318. */
  319. #define TCL_DATA_CMD_2_LINK_META_SWAP_OFFSET 0x00000008
  320. #define TCL_DATA_CMD_2_LINK_META_SWAP_LSB 9
  321. #define TCL_DATA_CMD_2_LINK_META_SWAP_MASK 0x00000200
  322. /* Description TCL_DATA_CMD_2_RESERVED
  323. <legal 0>
  324. */
  325. #define TCL_DATA_CMD_2_RESERVED_OFFSET 0x00000008
  326. #define TCL_DATA_CMD_2_RESERVED_LSB 10
  327. #define TCL_DATA_CMD_2_RESERVED_MASK 0x00003c00
  328. /* Description TCL_DATA_CMD_2_ADDRX_EN
  329. Address X search enable in ASE
  330. 1'b0: Search disable
  331. 1'b1: Search Enable
  332. <legal all>
  333. */
  334. #define TCL_DATA_CMD_2_ADDRX_EN_OFFSET 0x00000008
  335. #define TCL_DATA_CMD_2_ADDRX_EN_LSB 14
  336. #define TCL_DATA_CMD_2_ADDRX_EN_MASK 0x00004000
  337. /* Description TCL_DATA_CMD_2_ADDRY_EN
  338. Address Y search enable in ASE
  339. 1'b0: Search disable
  340. 1'b1: Search Enable
  341. <legal all>
  342. */
  343. #define TCL_DATA_CMD_2_ADDRY_EN_OFFSET 0x00000008
  344. #define TCL_DATA_CMD_2_ADDRY_EN_LSB 15
  345. #define TCL_DATA_CMD_2_ADDRY_EN_MASK 0x00008000
  346. /* Description TCL_DATA_CMD_2_TCL_CMD_NUMBER
  347. This number can be used by SW to track, identify and
  348. link the created commands with the command statuses
  349. Is set to the value 'TCL_CMD_Number' of the related
  350. TCL_DATA command
  351. <legal all>
  352. */
  353. #define TCL_DATA_CMD_2_TCL_CMD_NUMBER_OFFSET 0x00000008
  354. #define TCL_DATA_CMD_2_TCL_CMD_NUMBER_LSB 16
  355. #define TCL_DATA_CMD_2_TCL_CMD_NUMBER_MASK 0xffff0000
  356. /* Description TCL_DATA_CMD_3_DATA_LENGTH
  357. Valid Data length in bytes.
  358. MSDU length in case of direct descriptor.
  359. Length of link extension descriptor in case of Link
  360. extension descriptor. This is used to know the size of
  361. Metadata.
  362. <legal all>
  363. */
  364. #define TCL_DATA_CMD_3_DATA_LENGTH_OFFSET 0x0000000c
  365. #define TCL_DATA_CMD_3_DATA_LENGTH_LSB 0
  366. #define TCL_DATA_CMD_3_DATA_LENGTH_MASK 0x0000ffff
  367. /* Description TCL_DATA_CMD_3_IPV4_CHECKSUM_EN
  368. OLE related control
  369. Enable IPv4 checksum replacement
  370. */
  371. #define TCL_DATA_CMD_3_IPV4_CHECKSUM_EN_OFFSET 0x0000000c
  372. #define TCL_DATA_CMD_3_IPV4_CHECKSUM_EN_LSB 16
  373. #define TCL_DATA_CMD_3_IPV4_CHECKSUM_EN_MASK 0x00010000
  374. /* Description TCL_DATA_CMD_3_UDP_OVER_IPV4_CHECKSUM_EN
  375. OLE related control
  376. Enable UDP over IPv4 checksum replacement. UDP checksum
  377. over IPv4 is optional for TCP/IP stacks.
  378. */
  379. #define TCL_DATA_CMD_3_UDP_OVER_IPV4_CHECKSUM_EN_OFFSET 0x0000000c
  380. #define TCL_DATA_CMD_3_UDP_OVER_IPV4_CHECKSUM_EN_LSB 17
  381. #define TCL_DATA_CMD_3_UDP_OVER_IPV4_CHECKSUM_EN_MASK 0x00020000
  382. /* Description TCL_DATA_CMD_3_UDP_OVER_IPV6_CHECKSUM_EN
  383. OLE related control
  384. Enable UDP over IPv6 checksum replacement. UDP checksum
  385. over IPv6 is mandatory for TCP/IP stacks.
  386. */
  387. #define TCL_DATA_CMD_3_UDP_OVER_IPV6_CHECKSUM_EN_OFFSET 0x0000000c
  388. #define TCL_DATA_CMD_3_UDP_OVER_IPV6_CHECKSUM_EN_LSB 18
  389. #define TCL_DATA_CMD_3_UDP_OVER_IPV6_CHECKSUM_EN_MASK 0x00040000
  390. /* Description TCL_DATA_CMD_3_TCP_OVER_IPV4_CHECKSUM_EN
  391. OLE related control
  392. Enable TCP checksum over IPv4 replacement
  393. */
  394. #define TCL_DATA_CMD_3_TCP_OVER_IPV4_CHECKSUM_EN_OFFSET 0x0000000c
  395. #define TCL_DATA_CMD_3_TCP_OVER_IPV4_CHECKSUM_EN_LSB 19
  396. #define TCL_DATA_CMD_3_TCP_OVER_IPV4_CHECKSUM_EN_MASK 0x00080000
  397. /* Description TCL_DATA_CMD_3_TCP_OVER_IPV6_CHECKSUM_EN
  398. OLE related control
  399. Enable TCP checksum over IPv6 replacement
  400. */
  401. #define TCL_DATA_CMD_3_TCP_OVER_IPV6_CHECKSUM_EN_OFFSET 0x0000000c
  402. #define TCL_DATA_CMD_3_TCP_OVER_IPV6_CHECKSUM_EN_LSB 20
  403. #define TCL_DATA_CMD_3_TCP_OVER_IPV6_CHECKSUM_EN_MASK 0x00100000
  404. /* Description TCL_DATA_CMD_3_TO_FW
  405. Forward packet to FW along with classification result.
  406. The packet will not be forward to TQM when this bit is set
  407. 1'b0: Use classification result to forward the packet.
  408. 1'b1: Override classification result and forward packet
  409. only to FW.
  410. */
  411. #define TCL_DATA_CMD_3_TO_FW_OFFSET 0x0000000c
  412. #define TCL_DATA_CMD_3_TO_FW_LSB 21
  413. #define TCL_DATA_CMD_3_TO_FW_MASK 0x00200000
  414. /* Description TCL_DATA_CMD_3_DSCP_TO_TID_PRIORITY_TABLE_ID
  415. The DSCP to tid conversion table to be used for this
  416. frame
  417. <legal all>
  418. */
  419. #define TCL_DATA_CMD_3_DSCP_TO_TID_PRIORITY_TABLE_ID_OFFSET 0x0000000c
  420. #define TCL_DATA_CMD_3_DSCP_TO_TID_PRIORITY_TABLE_ID_LSB 22
  421. #define TCL_DATA_CMD_3_DSCP_TO_TID_PRIORITY_TABLE_ID_MASK 0x00400000
  422. /* Description TCL_DATA_CMD_3_PACKET_OFFSET
  423. Packet offset from Metadata in case of direct buffer
  424. descriptor. This field is valid when Buf_or_ext_desc_type is
  425. reset(= 0).
  426. <legal all>
  427. */
  428. #define TCL_DATA_CMD_3_PACKET_OFFSET_OFFSET 0x0000000c
  429. #define TCL_DATA_CMD_3_PACKET_OFFSET_LSB 23
  430. #define TCL_DATA_CMD_3_PACKET_OFFSET_MASK 0xff800000
  431. /* Description TCL_DATA_CMD_4_BUFFER_TIMESTAMP
  432. Field only valid when 'Buffer_timestamp_valid ' is set.
  433. Frame system entrance timestamp. The timestamp is
  434. related to the global system timer
  435. Generally the first module (SW, TCL or TQM). that sees
  436. this frame and this timestamp field is not valid, shall fill
  437. in this field.
  438. Timestamp in units of 1024 us
  439. */
  440. #define TCL_DATA_CMD_4_BUFFER_TIMESTAMP_OFFSET 0x00000010
  441. #define TCL_DATA_CMD_4_BUFFER_TIMESTAMP_LSB 0
  442. #define TCL_DATA_CMD_4_BUFFER_TIMESTAMP_MASK 0x0007ffff
  443. /* Description TCL_DATA_CMD_4_BUFFER_TIMESTAMP_VALID
  444. When set, the Buffer_timestamp field contains valid
  445. info.
  446. */
  447. #define TCL_DATA_CMD_4_BUFFER_TIMESTAMP_VALID_OFFSET 0x00000010
  448. #define TCL_DATA_CMD_4_BUFFER_TIMESTAMP_VALID_LSB 19
  449. #define TCL_DATA_CMD_4_BUFFER_TIMESTAMP_VALID_MASK 0x00080000
  450. /* Description TCL_DATA_CMD_4_MESH_ENABLE
  451. If set to 1:
  452. * For raw WiFi frames, this indicates transmission to a
  453. mesh STA, enabling the interpretation of the 'Mesh Control
  454. Present' bit (bit 8) of QoS Control (otherwise this bit is
  455. ignored),
  456. * For native WiFi frames, this indicates that a 'Mesh
  457. Control' field is present between the header and the LLC.
  458. */
  459. #define TCL_DATA_CMD_4_MESH_ENABLE_OFFSET 0x00000010
  460. #define TCL_DATA_CMD_4_MESH_ENABLE_LSB 20
  461. #define TCL_DATA_CMD_4_MESH_ENABLE_MASK 0x00100000
  462. /* Description TCL_DATA_CMD_4_HLOS_TID_OVERWRITE
  463. When set, TCL shall ignore the IP DSCP and VLAN PCP
  464. fields and use HLOS_TID as the final TID. Otherwise TCL
  465. shall consider the DSCP and PCP fields as well as HLOS_TID
  466. and choose a final TID based on the configured priority
  467. <legal all>
  468. */
  469. #define TCL_DATA_CMD_4_HLOS_TID_OVERWRITE_OFFSET 0x00000010
  470. #define TCL_DATA_CMD_4_HLOS_TID_OVERWRITE_LSB 21
  471. #define TCL_DATA_CMD_4_HLOS_TID_OVERWRITE_MASK 0x00200000
  472. /* Description TCL_DATA_CMD_4_HLOS_TID
  473. HLOS MSDU priority
  474. Field is used when HLOS_TID_overwrite is set.
  475. Field is also used when HLOS_TID_overwrite is not set
  476. and DSCP/PCP is not available in the packet
  477. <legal all>
  478. */
  479. #define TCL_DATA_CMD_4_HLOS_TID_OFFSET 0x00000010
  480. #define TCL_DATA_CMD_4_HLOS_TID_LSB 22
  481. #define TCL_DATA_CMD_4_HLOS_TID_MASK 0x03c00000
  482. /* Description TCL_DATA_CMD_4_RESERVED_4
  483. <legal 0>
  484. */
  485. #define TCL_DATA_CMD_4_RESERVED_4_OFFSET 0x00000010
  486. #define TCL_DATA_CMD_4_RESERVED_4_LSB 26
  487. #define TCL_DATA_CMD_4_RESERVED_4_MASK 0xfc000000
  488. /* Description TCL_DATA_CMD_5_RESERVED_5
  489. <legal 0>
  490. */
  491. #define TCL_DATA_CMD_5_RESERVED_5_OFFSET 0x00000014
  492. #define TCL_DATA_CMD_5_RESERVED_5_LSB 0
  493. #define TCL_DATA_CMD_5_RESERVED_5_MASK 0xffffffff
  494. /* Description TCL_DATA_CMD_6_RESERVED_6A
  495. <legal 0>
  496. */
  497. #define TCL_DATA_CMD_6_RESERVED_6A_OFFSET 0x00000018
  498. #define TCL_DATA_CMD_6_RESERVED_6A_LSB 0
  499. #define TCL_DATA_CMD_6_RESERVED_6A_MASK 0x000fffff
  500. /* Description TCL_DATA_CMD_6_RING_ID
  501. The buffer pointer ring ID.
  502. 0 refers to the IDLE ring
  503. 1 - N refers to other rings
  504. Helps with debugging when dumping ring contents.
  505. <legal all>
  506. */
  507. #define TCL_DATA_CMD_6_RING_ID_OFFSET 0x00000018
  508. #define TCL_DATA_CMD_6_RING_ID_LSB 20
  509. #define TCL_DATA_CMD_6_RING_ID_MASK 0x0ff00000
  510. /* Description TCL_DATA_CMD_6_LOOPING_COUNT
  511. A count value that indicates the number of times the
  512. producer of entries into the Ring has looped around the
  513. ring.
  514. At initialization time, this value is set to 0. On the
  515. first loop, this value is set to 1. After the max value is
  516. reached allowed by the number of bits for this field, the
  517. count value continues with 0 again.
  518. In case SW is the consumer of the ring entries, it can
  519. use this field to figure out up to where the producer of
  520. entries has created new entries. This eliminates the need to
  521. check where the head pointer' of the ring is located once
  522. the SW starts processing an interrupt indicating that new
  523. entries have been put into this ring...
  524. Also note that SW if it wants only needs to look at the
  525. LSB bit of this count value.
  526. <legal all>
  527. */
  528. #define TCL_DATA_CMD_6_LOOPING_COUNT_OFFSET 0x00000018
  529. #define TCL_DATA_CMD_6_LOOPING_COUNT_LSB 28
  530. #define TCL_DATA_CMD_6_LOOPING_COUNT_MASK 0xf0000000
  531. #endif // _TCL_DATA_CMD_H_