trx.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. /******************************************************************************
  2. *
  3. * Copyright(c) 2009-2012 Realtek Corporation. All rights reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of version 2 of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * The full GNU General Public License is included in this distribution in the
  15. * file called LICENSE.
  16. *
  17. * Contact Information:
  18. * wlanfae <wlanfae@realtek.com>
  19. * Realtek Corporation, No. 2, Innovation Road II, Hsinchu Science Park,
  20. * Hsinchu 300, Taiwan.
  21. *
  22. * Larry Finger <Larry.Finger@lwfinger.net>
  23. *
  24. *****************************************************************************/
  25. #ifndef __RTL92CU_TRX_H__
  26. #define __RTL92CU_TRX_H__
  27. #define RTL92C_USB_BULK_IN_NUM 1
  28. #define RTL92C_NUM_RX_URBS 8
  29. #define RTL92C_NUM_TX_URBS 32
  30. #define RTL92C_SIZE_MAX_RX_BUFFER 15360 /* 8192 */
  31. #define RX_DRV_INFO_SIZE_UNIT 8
  32. #define RTL_AGG_ON 1
  33. enum usb_rx_agg_mode {
  34. USB_RX_AGG_DISABLE,
  35. USB_RX_AGG_DMA,
  36. USB_RX_AGG_USB,
  37. USB_RX_AGG_DMA_USB
  38. };
  39. #define TX_SELE_HQ BIT(0) /* High Queue */
  40. #define TX_SELE_LQ BIT(1) /* Low Queue */
  41. #define TX_SELE_NQ BIT(2) /* Normal Queue */
  42. #define RTL_USB_TX_AGG_NUM_DESC 5
  43. #define RTL_USB_RX_AGG_PAGE_NUM 4
  44. #define RTL_USB_RX_AGG_PAGE_TIMEOUT 3
  45. #define RTL_USB_RX_AGG_BLOCK_NUM 5
  46. #define RTL_USB_RX_AGG_BLOCK_TIMEOUT 3
  47. /*======================== rx status =========================================*/
  48. struct rx_drv_info_92c {
  49. /*
  50. * Driver info contain PHY status and other variabel size info
  51. * PHY Status content as below
  52. */
  53. /* DWORD 0 */
  54. u8 gain_trsw[4];
  55. /* DWORD 1 */
  56. u8 pwdb_all;
  57. u8 cfosho[4];
  58. /* DWORD 2 */
  59. u8 cfotail[4];
  60. /* DWORD 3 */
  61. s8 rxevm[2];
  62. s8 rxsnr[4];
  63. /* DWORD 4 */
  64. u8 pdsnr[2];
  65. /* DWORD 5 */
  66. u8 csi_current[2];
  67. u8 csi_target[2];
  68. /* DWORD 6 */
  69. u8 sigevm;
  70. u8 max_ex_pwr;
  71. u8 ex_intf_flag:1;
  72. u8 sgi_en:1;
  73. u8 rxsc:2;
  74. u8 reserve:4;
  75. } __packed;
  76. /* Define a macro that takes a le32 word, converts it to host ordering,
  77. * right shifts by a specified count, creates a mask of the specified
  78. * bit count, and extracts that number of bits.
  79. */
  80. #define SHIFT_AND_MASK_LE(__pdesc, __shift, __bits) \
  81. ((le32_to_cpu(*(((__le32 *)(__pdesc)))) >> (__shift)) & \
  82. BIT_LEN_MASK_32(__bits))
  83. /* Define a macro that clears a bit field in an le32 word and
  84. * sets the specified value into that bit field. The resulting
  85. * value remains in le32 ordering; however, it is properly converted
  86. * to host ordering for the clear and set operations before conversion
  87. * back to le32.
  88. */
  89. #define SET_BITS_OFFSET_LE(__pdesc, __shift, __len, __val) \
  90. (*(__le32 *)(__pdesc) = \
  91. (cpu_to_le32((le32_to_cpu(*((__le32 *)(__pdesc))) & \
  92. (~(BIT_OFFSET_LEN_MASK_32((__shift), __len)))) | \
  93. (((u32)(__val) & BIT_LEN_MASK_32(__len)) << (__shift)))));
  94. /* macros to read various fields in RX descriptor */
  95. /* DWORD 0 */
  96. #define GET_RX_DESC_PKT_LEN(__rxdesc) \
  97. SHIFT_AND_MASK_LE((__rxdesc), 0, 14)
  98. #define GET_RX_DESC_CRC32(__rxdesc) \
  99. SHIFT_AND_MASK_LE(__rxdesc, 14, 1)
  100. #define GET_RX_DESC_ICV(__rxdesc) \
  101. SHIFT_AND_MASK_LE(__rxdesc, 15, 1)
  102. #define GET_RX_DESC_DRVINFO_SIZE(__rxdesc) \
  103. SHIFT_AND_MASK_LE(__rxdesc, 16, 4)
  104. #define GET_RX_DESC_SECURITY(__rxdesc) \
  105. SHIFT_AND_MASK_LE(__rxdesc, 20, 3)
  106. #define GET_RX_DESC_QOS(__rxdesc) \
  107. SHIFT_AND_MASK_LE(__rxdesc, 23, 1)
  108. #define GET_RX_DESC_SHIFT(__rxdesc) \
  109. SHIFT_AND_MASK_LE(__rxdesc, 24, 2)
  110. #define GET_RX_DESC_PHY_STATUS(__rxdesc) \
  111. SHIFT_AND_MASK_LE(__rxdesc, 26, 1)
  112. #define GET_RX_DESC_SWDEC(__rxdesc) \
  113. SHIFT_AND_MASK_LE(__rxdesc, 27, 1)
  114. #define GET_RX_DESC_LAST_SEG(__rxdesc) \
  115. SHIFT_AND_MASK_LE(__rxdesc, 28, 1)
  116. #define GET_RX_DESC_FIRST_SEG(__rxdesc) \
  117. SHIFT_AND_MASK_LE(__rxdesc, 29, 1)
  118. #define GET_RX_DESC_EOR(__rxdesc) \
  119. SHIFT_AND_MASK_LE(__rxdesc, 30, 1)
  120. #define GET_RX_DESC_OWN(__rxdesc) \
  121. SHIFT_AND_MASK_LE(__rxdesc, 31, 1)
  122. /* DWORD 1 */
  123. #define GET_RX_DESC_MACID(__rxdesc) \
  124. SHIFT_AND_MASK_LE(__rxdesc+4, 0, 5)
  125. #define GET_RX_DESC_TID(__rxdesc) \
  126. SHIFT_AND_MASK_LE(__rxdesc+4, 5, 4)
  127. #define GET_RX_DESC_PAGGR(__rxdesc) \
  128. SHIFT_AND_MASK_LE(__rxdesc+4, 14, 1)
  129. #define GET_RX_DESC_FAGGR(__rxdesc) \
  130. SHIFT_AND_MASK_LE(__rxdesc+4, 15, 1)
  131. #define GET_RX_DESC_A1_FIT(__rxdesc) \
  132. SHIFT_AND_MASK_LE(__rxdesc+4, 16, 4)
  133. #define GET_RX_DESC_A2_FIT(__rxdesc) \
  134. SHIFT_AND_MASK_LE(__rxdesc+4, 20, 4)
  135. #define GET_RX_DESC_PAM(__rxdesc) \
  136. SHIFT_AND_MASK_LE(__rxdesc+4, 24, 1)
  137. #define GET_RX_DESC_PWR(__rxdesc) \
  138. SHIFT_AND_MASK_LE(__rxdesc+4, 25, 1)
  139. #define GET_RX_DESC_MORE_DATA(__rxdesc) \
  140. SHIFT_AND_MASK_LE(__rxdesc+4, 26, 1)
  141. #define GET_RX_DESC_MORE_FRAG(__rxdesc) \
  142. SHIFT_AND_MASK_LE(__rxdesc+4, 27, 1)
  143. #define GET_RX_DESC_TYPE(__rxdesc) \
  144. SHIFT_AND_MASK_LE(__rxdesc+4, 28, 2)
  145. #define GET_RX_DESC_MC(__rxdesc) \
  146. SHIFT_AND_MASK_LE(__rxdesc+4, 30, 1)
  147. #define GET_RX_DESC_BC(__rxdesc) \
  148. SHIFT_AND_MASK_LE(__rxdesc+4, 31, 1)
  149. /* DWORD 2 */
  150. #define GET_RX_DESC_SEQ(__rxdesc) \
  151. SHIFT_AND_MASK_LE(__rxdesc+8, 0, 12)
  152. #define GET_RX_DESC_FRAG(__rxdesc) \
  153. SHIFT_AND_MASK_LE(__rxdesc+8, 12, 4)
  154. #define GET_RX_DESC_USB_AGG_PKTNUM(__rxdesc) \
  155. SHIFT_AND_MASK_LE(__rxdesc+8, 16, 8)
  156. #define GET_RX_DESC_NEXT_IND(__rxdesc) \
  157. SHIFT_AND_MASK_LE(__rxdesc+8, 30, 1)
  158. /* DWORD 3 */
  159. #define GET_RX_DESC_RX_MCS(__rxdesc) \
  160. SHIFT_AND_MASK_LE(__rxdesc+12, 0, 6)
  161. #define GET_RX_DESC_RX_HT(__rxdesc) \
  162. SHIFT_AND_MASK_LE(__rxdesc+12, 6, 1)
  163. #define GET_RX_DESC_AMSDU(__rxdesc) \
  164. SHIFT_AND_MASK_LE(__rxdesc+12, 7, 1)
  165. #define GET_RX_DESC_SPLCP(__rxdesc) \
  166. SHIFT_AND_MASK_LE(__rxdesc+12, 8, 1)
  167. #define GET_RX_DESC_BW(__rxdesc) \
  168. SHIFT_AND_MASK_LE(__rxdesc+12, 9, 1)
  169. #define GET_RX_DESC_HTC(__rxdesc) \
  170. SHIFT_AND_MASK_LE(__rxdesc+12, 10, 1)
  171. #define GET_RX_DESC_TCP_CHK_RPT(__rxdesc) \
  172. SHIFT_AND_MASK_LE(__rxdesc+12, 11, 1)
  173. #define GET_RX_DESC_IP_CHK_RPT(__rxdesc) \
  174. SHIFT_AND_MASK_LE(__rxdesc+12, 12, 1)
  175. #define GET_RX_DESC_TCP_CHK_VALID(__rxdesc) \
  176. SHIFT_AND_MASK_LE(__rxdesc+12, 13, 1)
  177. #define GET_RX_DESC_HWPC_ERR(__rxdesc) \
  178. SHIFT_AND_MASK_LE(__rxdesc+12, 14, 1)
  179. #define GET_RX_DESC_HWPC_IND(__rxdesc) \
  180. SHIFT_AND_MASK_LE(__rxdesc+12, 15, 1)
  181. #define GET_RX_DESC_IV0(__rxdesc) \
  182. SHIFT_AND_MASK_LE(__rxdesc+12, 16, 16)
  183. /* DWORD 4 */
  184. #define GET_RX_DESC_IV1(__rxdesc) \
  185. SHIFT_AND_MASK_LE(__rxdesc+16, 0, 32)
  186. /* DWORD 5 */
  187. #define GET_RX_DESC_TSFL(__rxdesc) \
  188. SHIFT_AND_MASK_LE(__rxdesc+20, 0, 32)
  189. /*======================= tx desc ============================================*/
  190. /* macros to set various fields in TX descriptor */
  191. /* Dword 0 */
  192. #define SET_TX_DESC_PKT_SIZE(__txdesc, __value) \
  193. SET_BITS_OFFSET_LE(__txdesc, 0, 16, __value)
  194. #define SET_TX_DESC_OFFSET(__txdesc, __value) \
  195. SET_BITS_OFFSET_LE(__txdesc, 16, 8, __value)
  196. #define SET_TX_DESC_BMC(__txdesc, __value) \
  197. SET_BITS_OFFSET_LE(__txdesc, 24, 1, __value)
  198. #define SET_TX_DESC_HTC(__txdesc, __value) \
  199. SET_BITS_OFFSET_LE(__txdesc, 25, 1, __value)
  200. #define SET_TX_DESC_LAST_SEG(__txdesc, __value) \
  201. SET_BITS_OFFSET_LE(__txdesc, 26, 1, __value)
  202. #define SET_TX_DESC_FIRST_SEG(__txdesc, __value) \
  203. SET_BITS_OFFSET_LE(__txdesc, 27, 1, __value)
  204. #define SET_TX_DESC_LINIP(__txdesc, __value) \
  205. SET_BITS_OFFSET_LE(__txdesc, 28, 1, __value)
  206. #define SET_TX_DESC_NO_ACM(__txdesc, __value) \
  207. SET_BITS_OFFSET_LE(__txdesc, 29, 1, __value)
  208. #define SET_TX_DESC_GF(__txdesc, __value) \
  209. SET_BITS_OFFSET_LE(__txdesc, 30, 1, __value)
  210. #define SET_TX_DESC_OWN(__txdesc, __value) \
  211. SET_BITS_OFFSET_LE(__txdesc, 31, 1, __value)
  212. /* Dword 1 */
  213. #define SET_TX_DESC_MACID(__txdesc, __value) \
  214. SET_BITS_OFFSET_LE(__txdesc+4, 0, 5, __value)
  215. #define SET_TX_DESC_AGG_ENABLE(__txdesc, __value) \
  216. SET_BITS_OFFSET_LE(__txdesc+4, 5, 1, __value)
  217. #define SET_TX_DESC_AGG_BREAK(__txdesc, __value) \
  218. SET_BITS_OFFSET_LE(__txdesc+4, 6, 1, __value)
  219. #define SET_TX_DESC_RDG_ENABLE(__txdesc, __value) \
  220. SET_BITS_OFFSET_LE(__txdesc+4, 7, 1, __value)
  221. #define SET_TX_DESC_QUEUE_SEL(__txdesc, __value) \
  222. SET_BITS_OFFSET_LE(__txdesc+4, 8, 5, __value)
  223. #define SET_TX_DESC_RDG_NAV_EXT(__txdesc, __value) \
  224. SET_BITS_OFFSET_LE(__txdesc+4, 13, 1, __value)
  225. #define SET_TX_DESC_LSIG_TXOP_EN(__txdesc, __value) \
  226. SET_BITS_OFFSET_LE(__txdesc+4, 14, 1, __value)
  227. #define SET_TX_DESC_PIFS(__txdesc, __value) \
  228. SET_BITS_OFFSET_LE(__txdesc+4, 15, 1, __value)
  229. #define SET_TX_DESC_RATE_ID(__txdesc, __value) \
  230. SET_BITS_OFFSET_LE(__txdesc+4, 16, 4, __value)
  231. #define SET_TX_DESC_RA_BRSR_ID(__txdesc, __value) \
  232. SET_BITS_OFFSET_LE(__txdesc+4, 16, 4, __value)
  233. #define SET_TX_DESC_NAV_USE_HDR(__txdesc, __value) \
  234. SET_BITS_OFFSET_LE(__txdesc+4, 20, 1, __value)
  235. #define SET_TX_DESC_EN_DESC_ID(__txdesc, __value) \
  236. SET_BITS_OFFSET_LE(__txdesc+4, 21, 1, __value)
  237. #define SET_TX_DESC_SEC_TYPE(__txdesc, __value) \
  238. SET_BITS_OFFSET_LE(__txdesc+4, 22, 2, __value)
  239. #define SET_TX_DESC_PKT_OFFSET(__txdesc, __value) \
  240. SET_BITS_OFFSET_LE(__txdesc+4, 26, 5, __value)
  241. /* Dword 2 */
  242. #define SET_TX_DESC_RTS_RC(__txdesc, __value) \
  243. SET_BITS_OFFSET_LE(__txdesc+8, 0, 6, __value)
  244. #define SET_TX_DESC_DATA_RC(__txdesc, __value) \
  245. SET_BITS_OFFSET_LE(__txdesc+8, 6, 6, __value)
  246. #define SET_TX_DESC_BAR_RTY_TH(__txdesc, __value) \
  247. SET_BITS_OFFSET_LE(__txdesc+8, 14, 2, __value)
  248. #define SET_TX_DESC_MORE_FRAG(__txdesc, __value) \
  249. SET_BITS_OFFSET_LE(__txdesc+8, 17, 1, __value)
  250. #define SET_TX_DESC_RAW(__txdesc, __value) \
  251. SET_BITS_OFFSET_LE(__txdesc+8, 18, 1, __value)
  252. #define SET_TX_DESC_CCX(__txdesc, __value) \
  253. SET_BITS_OFFSET_LE(__txdesc+8, 19, 1, __value)
  254. #define SET_TX_DESC_AMPDU_DENSITY(__txdesc, __value) \
  255. SET_BITS_OFFSET_LE(__txdesc+8, 20, 3, __value)
  256. #define SET_TX_DESC_ANTSEL_A(__txdesc, __value) \
  257. SET_BITS_OFFSET_LE(__txdesc+8, 24, 1, __value)
  258. #define SET_TX_DESC_ANTSEL_B(__txdesc, __value) \
  259. SET_BITS_OFFSET_LE(__txdesc+8, 25, 1, __value)
  260. #define SET_TX_DESC_TX_ANT_CCK(__txdesc, __value) \
  261. SET_BITS_OFFSET_LE(__txdesc+8, 26, 2, __value)
  262. #define SET_TX_DESC_TX_ANTL(__txdesc, __value) \
  263. SET_BITS_OFFSET_LE(__txdesc+8, 28, 2, __value)
  264. #define SET_TX_DESC_TX_ANT_HT(__txdesc, __value) \
  265. SET_BITS_OFFSET_LE(__txdesc+8, 30, 2, __value)
  266. /* Dword 3 */
  267. #define SET_TX_DESC_NEXT_HEAP_PAGE(__txdesc, __value) \
  268. SET_BITS_OFFSET_LE(__txdesc+12, 0, 8, __value)
  269. #define SET_TX_DESC_TAIL_PAGE(__txdesc, __value) \
  270. SET_BITS_OFFSET_LE(__txdesc+12, 8, 8, __value)
  271. #define SET_TX_DESC_SEQ(__txdesc, __value) \
  272. SET_BITS_OFFSET_LE(__txdesc+12, 16, 12, __value)
  273. #define SET_TX_DESC_PKT_ID(__txdesc, __value) \
  274. SET_BITS_OFFSET_LE(__txdesc+12, 28, 4, __value)
  275. /* Dword 4 */
  276. #define SET_TX_DESC_RTS_RATE(__txdesc, __value) \
  277. SET_BITS_OFFSET_LE(__txdesc+16, 0, 5, __value)
  278. #define SET_TX_DESC_AP_DCFE(__txdesc, __value) \
  279. SET_BITS_OFFSET_LE(__txdesc+16, 5, 1, __value)
  280. #define SET_TX_DESC_QOS(__txdesc, __value) \
  281. SET_BITS_OFFSET_LE(__txdesc+16, 6, 1, __value)
  282. #define SET_TX_DESC_HWSEQ_EN(__txdesc, __value) \
  283. SET_BITS_OFFSET_LE(__txdesc+16, 7, 1, __value)
  284. #define SET_TX_DESC_USE_RATE(__txdesc, __value) \
  285. SET_BITS_OFFSET_LE(__txdesc+16, 8, 1, __value)
  286. #define SET_TX_DESC_DISABLE_RTS_FB(__txdesc, __value) \
  287. SET_BITS_OFFSET_LE(__txdesc+16, 9, 1, __value)
  288. #define SET_TX_DESC_DISABLE_FB(__txdesc, __value) \
  289. SET_BITS_OFFSET_LE(__txdesc+16, 10, 1, __value)
  290. #define SET_TX_DESC_CTS2SELF(__txdesc, __value) \
  291. SET_BITS_OFFSET_LE(__txdesc+16, 11, 1, __value)
  292. #define SET_TX_DESC_RTS_ENABLE(__txdesc, __value) \
  293. SET_BITS_OFFSET_LE(__txdesc+16, 12, 1, __value)
  294. #define SET_TX_DESC_HW_RTS_ENABLE(__txdesc, __value) \
  295. SET_BITS_OFFSET_LE(__txdesc+16, 13, 1, __value)
  296. #define SET_TX_DESC_WAIT_DCTS(__txdesc, __value) \
  297. SET_BITS_OFFSET_LE(__txdesc+16, 18, 1, __value)
  298. #define SET_TX_DESC_CTS2AP_EN(__txdesc, __value) \
  299. SET_BITS_OFFSET_LE(__txdesc+16, 19, 1, __value)
  300. #define SET_TX_DESC_DATA_SC(__txdesc, __value) \
  301. SET_BITS_OFFSET_LE(__txdesc+16, 20, 2, __value)
  302. #define SET_TX_DESC_DATA_STBC(__txdesc, __value) \
  303. SET_BITS_OFFSET_LE(__txdesc+16, 22, 2, __value)
  304. #define SET_TX_DESC_DATA_SHORT(__txdesc, __value) \
  305. SET_BITS_OFFSET_LE(__txdesc+16, 24, 1, __value)
  306. #define SET_TX_DESC_DATA_BW(__txdesc, __value) \
  307. SET_BITS_OFFSET_LE(__txdesc+16, 25, 1, __value)
  308. #define SET_TX_DESC_RTS_SHORT(__txdesc, __value) \
  309. SET_BITS_OFFSET_LE(__txdesc+16, 26, 1, __value)
  310. #define SET_TX_DESC_RTS_BW(__txdesc, __value) \
  311. SET_BITS_OFFSET_LE(__txdesc+16, 27, 1, __value)
  312. #define SET_TX_DESC_RTS_SC(__txdesc, __value) \
  313. SET_BITS_OFFSET_LE(__txdesc+16, 28, 2, __value)
  314. #define SET_TX_DESC_RTS_STBC(__txdesc, __value) \
  315. SET_BITS_OFFSET_LE(__txdesc+16, 30, 2, __value)
  316. /* Dword 5 */
  317. #define SET_TX_DESC_TX_RATE(__pdesc, __val) \
  318. SET_BITS_OFFSET_LE(__pdesc+20, 0, 6, __val)
  319. #define SET_TX_DESC_DATA_SHORTGI(__pdesc, __val) \
  320. SET_BITS_OFFSET_LE(__pdesc+20, 6, 1, __val)
  321. #define SET_TX_DESC_CCX_TAG(__pdesc, __val) \
  322. SET_BITS_OFFSET_LE(__pdesc+20, 7, 1, __val)
  323. #define SET_TX_DESC_DATA_RATE_FB_LIMIT(__txdesc, __value) \
  324. SET_BITS_OFFSET_LE(__txdesc+20, 8, 5, __value)
  325. #define SET_TX_DESC_RTS_RATE_FB_LIMIT(__txdesc, __value) \
  326. SET_BITS_OFFSET_LE(__txdesc+20, 13, 4, __value)
  327. #define SET_TX_DESC_RETRY_LIMIT_ENABLE(__txdesc, __value) \
  328. SET_BITS_OFFSET_LE(__txdesc+20, 17, 1, __value)
  329. #define SET_TX_DESC_DATA_RETRY_LIMIT(__txdesc, __value) \
  330. SET_BITS_OFFSET_LE(__txdesc+20, 18, 6, __value)
  331. #define SET_TX_DESC_USB_TXAGG_NUM(__txdesc, __value) \
  332. SET_BITS_OFFSET_LE(__txdesc+20, 24, 8, __value)
  333. /* Dword 6 */
  334. #define SET_TX_DESC_TXAGC_A(__txdesc, __value) \
  335. SET_BITS_OFFSET_LE(__txdesc+24, 0, 5, __value)
  336. #define SET_TX_DESC_TXAGC_B(__txdesc, __value) \
  337. SET_BITS_OFFSET_LE(__txdesc+24, 5, 5, __value)
  338. #define SET_TX_DESC_USB_MAX_LEN(__txdesc, __value) \
  339. SET_BITS_OFFSET_LE(__txdesc+24, 10, 1, __value)
  340. #define SET_TX_DESC_MAX_AGG_NUM(__txdesc, __value) \
  341. SET_BITS_OFFSET_LE(__txdesc+24, 11, 5, __value)
  342. #define SET_TX_DESC_MCSG1_MAX_LEN(__txdesc, __value) \
  343. SET_BITS_OFFSET_LE(__txdesc+24, 16, 4, __value)
  344. #define SET_TX_DESC_MCSG2_MAX_LEN(__txdesc, __value) \
  345. SET_BITS_OFFSET_LE(__txdesc+24, 20, 4, __value)
  346. #define SET_TX_DESC_MCSG3_MAX_LEN(__txdesc, __value) \
  347. SET_BITS_OFFSET_LE(__txdesc+24, 24, 4, __value)
  348. #define SET_TX_DESC_MCSG7_MAX_LEN(__txdesc, __value) \
  349. SET_BITS_OFFSET_LE(__txdesc+24, 28, 4, __value)
  350. /* Dword 7 */
  351. #define SET_TX_DESC_TX_DESC_CHECKSUM(__txdesc, __value) \
  352. SET_BITS_OFFSET_LE(__txdesc+28, 0, 16, __value)
  353. #define SET_TX_DESC_MCSG4_MAX_LEN(__txdesc, __value) \
  354. SET_BITS_OFFSET_LE(__txdesc+28, 16, 4, __value)
  355. #define SET_TX_DESC_MCSG5_MAX_LEN(__txdesc, __value) \
  356. SET_BITS_OFFSET_LE(__txdesc+28, 20, 4, __value)
  357. #define SET_TX_DESC_MCSG6_MAX_LEN(__txdesc, __value) \
  358. SET_BITS_OFFSET_LE(__txdesc+28, 24, 4, __value)
  359. #define SET_TX_DESC_MCSG15_MAX_LEN(__txdesc, __value) \
  360. SET_BITS_OFFSET_LE(__txdesc+28, 28, 4, __value)
  361. int rtl8192cu_endpoint_mapping(struct ieee80211_hw *hw);
  362. u16 rtl8192cu_mq_to_hwq(__le16 fc, u16 mac80211_queue_index);
  363. bool rtl92cu_rx_query_desc(struct ieee80211_hw *hw,
  364. struct rtl_stats *stats,
  365. struct ieee80211_rx_status *rx_status,
  366. u8 *p_desc, struct sk_buff *skb);
  367. void rtl8192cu_rx_hdl(struct ieee80211_hw *hw, struct sk_buff * skb);
  368. void rtl8192c_rx_segregate_hdl(struct ieee80211_hw *, struct sk_buff *,
  369. struct sk_buff_head *);
  370. void rtl8192c_tx_cleanup(struct ieee80211_hw *hw, struct sk_buff *skb);
  371. int rtl8192c_tx_post_hdl(struct ieee80211_hw *hw, struct urb *urb,
  372. struct sk_buff *skb);
  373. struct sk_buff *rtl8192c_tx_aggregate_hdl(struct ieee80211_hw *,
  374. struct sk_buff_head *);
  375. void rtl92cu_tx_fill_desc(struct ieee80211_hw *hw,
  376. struct ieee80211_hdr *hdr, u8 *pdesc_tx,
  377. u8 *pbd_desc_tx, struct ieee80211_tx_info *info,
  378. struct ieee80211_sta *sta,
  379. struct sk_buff *skb,
  380. u8 queue_index,
  381. struct rtl_tcb_desc *tcb_desc);
  382. void rtl92cu_fill_fake_txdesc(struct ieee80211_hw *hw, u8 * pDesc,
  383. u32 buffer_len, bool bIsPsPoll);
  384. void rtl92cu_tx_fill_cmddesc(struct ieee80211_hw *hw,
  385. u8 *pdesc, bool b_firstseg,
  386. bool b_lastseg, struct sk_buff *skb);
  387. bool rtl92cu_cmd_send_packet(struct ieee80211_hw *hw, struct sk_buff *skb);
  388. #endif