blob: 0c1c46f3a0ed42090f3f3fc464d961a15b11bc48 [file] [log] [blame]
Forest Bond92b96792009-06-13 07:38:31 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * File: rxtx.c
20 *
21 * Purpose: handle WMAC/802.3/802.11 rx & tx functions
22 *
23 * Author: Lyndon Chen
24 *
25 * Date: May 20, 2003
26 *
27 * Functions:
Gilles Espinassef77f13e2010-03-29 15:41:47 +020028 * s_vGenerateTxParameter - Generate tx dma required parameter.
Forest Bond92b96792009-06-13 07:38:31 -040029 * s_vGenerateMACHeader - Translate 802.3 to 802.11 header
30 * csBeacon_xmit - beacon tx function
31 * csMgmt_xmit - management tx function
32 * s_uGetDataDuration - get tx data required duration
33 * s_uFillDataHead- fulfill tx data duration header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020034 * s_uGetRTSCTSDuration- get rtx/cts required duration
Forest Bond92b96792009-06-13 07:38:31 -040035 * s_uGetRTSCTSRsvTime- get rts/cts reserved time
36 * s_uGetTxRsvTime- get frame reserved time
37 * s_vFillCTSHead- fulfill CTS ctl header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020038 * s_vFillFragParameter- Set fragment ctl parameter.
Forest Bond92b96792009-06-13 07:38:31 -040039 * s_vFillRTSHead- fulfill RTS ctl header
40 * s_vFillTxKey- fulfill tx encrypt key
41 * s_vSWencryption- Software encrypt header
42 * vDMA0_tx_80211- tx 802.11 frame via dma0
43 * vGenerateFIFOHeader- Generate tx FIFO ctl header
44 *
45 * Revision History:
46 *
47 */
48
Forest Bond92b96792009-06-13 07:38:31 -040049#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040050#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040051#include "tether.h"
Forest Bond92b96792009-06-13 07:38:31 -040052#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040053#include "bssdb.h"
Forest Bond92b96792009-06-13 07:38:31 -040054#include "mac.h"
Forest Bond92b96792009-06-13 07:38:31 -040055#include "michael.h"
Forest Bond92b96792009-06-13 07:38:31 -040056#include "tkip.h"
Forest Bond92b96792009-06-13 07:38:31 -040057#include "tcrc.h"
Forest Bond92b96792009-06-13 07:38:31 -040058#include "wctl.h"
Forest Bond92b96792009-06-13 07:38:31 -040059#include "hostap.h"
Forest Bond92b96792009-06-13 07:38:31 -040060#include "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040061#include "datarate.h"
Forest Bond92b96792009-06-13 07:38:31 -040062#include "usbpipe.h"
Forest Bond92b96792009-06-13 07:38:31 -040063#include "iocmd.h"
Jim Lieb9d26d602009-08-12 14:54:08 -070064
Mariano Reingart4a499de2010-10-29 19:15:26 -030065static int msglevel = MSG_LEVEL_INFO;
Forest Bond92b96792009-06-13 07:38:31 -040066
Andres More3eaca0d2013-02-25 20:32:52 -050067const u16 wTimeStampOff[2][MAX_RATE] = {
Forest Bond92b96792009-06-13 07:38:31 -040068 {384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23}, // Long Preamble
69 {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23}, // Short Preamble
70 };
71
Andres More3eaca0d2013-02-25 20:32:52 -050072const u16 wFB_Opt0[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040073 {RATE_12M, RATE_18M, RATE_24M, RATE_36M, RATE_48M}, // fallback_rate0
74 {RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, // fallback_rate1
75 };
Andres More3eaca0d2013-02-25 20:32:52 -050076const u16 wFB_Opt1[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040077 {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, // fallback_rate0
78 {RATE_6M , RATE_6M, RATE_12M, RATE_12M, RATE_18M}, // fallback_rate1
79 };
80
Forest Bond92b96792009-06-13 07:38:31 -040081#define RTSDUR_BB 0
82#define RTSDUR_BA 1
83#define RTSDUR_AA 2
84#define CTSDUR_BA 3
85#define RTSDUR_BA_F0 4
86#define RTSDUR_AA_F0 5
87#define RTSDUR_BA_F1 6
88#define RTSDUR_AA_F1 7
89#define CTSDUR_BA_F0 8
90#define CTSDUR_BA_F1 9
91#define DATADUR_B 10
92#define DATADUR_A 11
93#define DATADUR_A_F0 12
94#define DATADUR_A_F1 13
95
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000096static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
97 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -040098
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000099static void *s_vGetFreeContext(struct vnt_private *pDevice);
100
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100101static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100102 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100103 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
104 int bNeedACK, u32 uDMAIdx, struct ethhdr *psEthHeader, bool need_rts);
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000105
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000106static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500107 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000108 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -0400109
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000110static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
111 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf, u16 wPayloadLen,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100112 struct vnt_mic_hdr *mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -0400113
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000114static void s_vSWencryption(struct vnt_private *pDevice,
115 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400116
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000117static unsigned int s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
118 u32 cbFrameLength, u16 wRate, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400119
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100120static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice, u8 byRTSRsvType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000121 u8 byPktType, u32 cbFrameLength, u16 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400122
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100123static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100124 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
125 int bNeedAck, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400126
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100127static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100128 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500129 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400130
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100131static u16 s_uGetDataDuration(struct vnt_private *pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100132 u8 byPktType, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400133
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100134static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000135 u8 byDurType, u32 cbFrameLength, u8 byPktType, u16 wRate,
136 int bNeedAck, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400137
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000138static void *s_vGetFreeContext(struct vnt_private *pDevice)
Forest Bond92b96792009-06-13 07:38:31 -0400139{
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100140 struct vnt_usb_send_context *pContext = NULL;
141 struct vnt_usb_send_context *pReturnContext = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000142 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400143
144 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"GetFreeContext()\n");
145
146 for (ii = 0; ii < pDevice->cbTD; ii++) {
Malcolm Priestley18e35e082013-09-22 20:15:58 +0100147 if (!pDevice->apTD[ii])
148 return NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400149 pContext = pDevice->apTD[ii];
Andres Moree269fc22013-02-12 20:36:29 -0500150 if (pContext->bBoolInUse == false) {
Andres More4e9b5e22013-02-12 20:36:30 -0500151 pContext->bBoolInUse = true;
Malcolm Priestleyc0de17e2013-08-05 21:09:14 +0100152 memset(pContext->Data, 0, MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
Forest Bond92b96792009-06-13 07:38:31 -0400153 pReturnContext = pContext;
154 break;
155 }
156 }
157 if ( ii == pDevice->cbTD ) {
158 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Free Tx Context\n");
159 }
Andres More8611a292010-05-01 14:25:00 -0300160 return (void *) pReturnContext;
Forest Bond92b96792009-06-13 07:38:31 -0400161}
162
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000163static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
164 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl)
Forest Bond92b96792009-06-13 07:38:31 -0400165{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000166 PSStatCounter pStatistic = &pDevice->scStatistic;
Forest Bond92b96792009-06-13 07:38:31 -0400167
Andres More4b50fb42010-06-22 21:57:42 -0300168 if (is_broadcast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400169 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_BROAD;
Andres More4b50fb42010-06-22 21:57:42 -0300170 else if (is_multicast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400171 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_MULTI;
172 else
173 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_UNI;
174
175 pStatistic->abyTxPktInfo[byPktNum].wLength = wPktLength;
176 pStatistic->abyTxPktInfo[byPktNum].wFIFOCtl = wFIFOCtl;
Andres More9a0e7562010-04-13 21:54:48 -0300177 memcpy(pStatistic->abyTxPktInfo[byPktNum].abyDestAddr,
178 pbyDestAddr,
179 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400180}
181
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000182static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
183 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100184 u16 wPayloadLen, struct vnt_mic_hdr *mic_hdr)
Forest Bond92b96792009-06-13 07:38:31 -0400185{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000186 u32 *pdwIV = (u32 *)pbyIVHead;
187 u32 *pdwExtIV = (u32 *)((u8 *)pbyIVHead + 4);
Andres More1cac4a42013-03-18 20:33:50 -0500188 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyHdrBuf;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000189 u32 dwRevIVCounter;
Forest Bond92b96792009-06-13 07:38:31 -0400190
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100191 /* Fill TXKEY */
192 if (pTransmitKey == NULL)
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100193 return;
Forest Bond92b96792009-06-13 07:38:31 -0400194
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100195 dwRevIVCounter = cpu_to_le32(pDevice->dwIVCounter);
196 *pdwIV = pDevice->dwIVCounter;
197 pDevice->byKeyIndex = pTransmitKey->dwKeyIndex & 0xf;
Forest Bond92b96792009-06-13 07:38:31 -0400198
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100199 switch (pTransmitKey->byCipherSuite) {
200 case KEY_CTL_WEP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100201 if (pTransmitKey->uKeyLength == WLAN_WEP232_KEYLEN) {
202 memcpy(pDevice->abyPRNG, (u8 *)&dwRevIVCounter, 3);
203 memcpy(pDevice->abyPRNG + 3, pTransmitKey->abyKey,
204 pTransmitKey->uKeyLength);
205 } else {
206 memcpy(pbyBuf, (u8 *)&dwRevIVCounter, 3);
207 memcpy(pbyBuf + 3, pTransmitKey->abyKey,
208 pTransmitKey->uKeyLength);
209 if (pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) {
210 memcpy(pbyBuf+8, (u8 *)&dwRevIVCounter, 3);
211 memcpy(pbyBuf+11, pTransmitKey->abyKey,
212 pTransmitKey->uKeyLength);
213 }
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100214
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100215 memcpy(pDevice->abyPRNG, pbyBuf, 16);
216 }
217 /* Append IV after Mac Header */
218 *pdwIV &= WEP_IV_MASK;
219 *pdwIV |= (u32)pDevice->byKeyIndex << 30;
220 *pdwIV = cpu_to_le32(*pdwIV);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100221
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100222 pDevice->dwIVCounter++;
223 if (pDevice->dwIVCounter > WEP_IV_MASK)
224 pDevice->dwIVCounter = 0;
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100225
226 break;
227 case KEY_CTL_TKIP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100228 pTransmitKey->wTSC15_0++;
229 if (pTransmitKey->wTSC15_0 == 0)
230 pTransmitKey->dwTSC47_16++;
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100231
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100232 TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
233 pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16,
234 pDevice->abyPRNG);
235 memcpy(pbyBuf, pDevice->abyPRNG, 16);
236
237 /* Make IV */
238 memcpy(pdwIV, pDevice->abyPRNG, 3);
239
240 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
241 0xc0) | 0x20);
242 /* Append IV&ExtIV after Mac Header */
243 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
244
245 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
246 "vFillTxKey()---- pdwExtIV: %x\n", *pdwExtIV);
247
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100248 break;
249 case KEY_CTL_CCMP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100250 pTransmitKey->wTSC15_0++;
251 if (pTransmitKey->wTSC15_0 == 0)
252 pTransmitKey->dwTSC47_16++;
253
254 memcpy(pbyBuf, pTransmitKey->abyKey, 16);
255
256 /* Make IV */
257 *pdwIV = 0;
258 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
259 0xc0) | 0x20);
260
261 *pdwIV |= cpu_to_le16((u16)(pTransmitKey->wTSC15_0));
262
263 /* Append IV&ExtIV after Mac Header */
264 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
265
266 if (!mic_hdr)
267 return;
268
269 /* MICHDR0 */
270 mic_hdr->id = 0x59;
271 mic_hdr->payload_len = cpu_to_be16(wPayloadLen);
272 memcpy(mic_hdr->mic_addr2, pMACHeader->addr2, ETH_ALEN);
273
274 mic_hdr->tsc_47_16 = cpu_to_be32(pTransmitKey->dwTSC47_16);
275 mic_hdr->tsc_15_0 = cpu_to_be16(pTransmitKey->wTSC15_0);
276
277 /* MICHDR1 */
278 if (pDevice->bLongHeader)
279 mic_hdr->hlen = cpu_to_be16(28);
280 else
281 mic_hdr->hlen = cpu_to_be16(22);
282
283 memcpy(mic_hdr->addr1, pMACHeader->addr1, ETH_ALEN);
284 memcpy(mic_hdr->addr2, pMACHeader->addr2, ETH_ALEN);
285
286 /* MICHDR2 */
287 memcpy(mic_hdr->addr3, pMACHeader->addr3, ETH_ALEN);
288 mic_hdr->frame_control = cpu_to_le16(pMACHeader->frame_control
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100289 & 0xc78f);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100290 mic_hdr->seq_ctrl = cpu_to_le16(pMACHeader->seq_ctrl & 0xf);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100291
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100292 if (pDevice->bLongHeader)
293 memcpy(mic_hdr->addr4, pMACHeader->addr4, ETH_ALEN);
294 }
Forest Bond92b96792009-06-13 07:38:31 -0400295}
296
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000297static void s_vSWencryption(struct vnt_private *pDevice,
298 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize)
Forest Bond92b96792009-06-13 07:38:31 -0400299{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000300 u32 cbICVlen = 4;
301 u32 dwICV = 0xffffffff;
302 u32 *pdwICV;
Forest Bond92b96792009-06-13 07:38:31 -0400303
304 if (pTransmitKey == NULL)
305 return;
306
307 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
308 //=======================================================================
309 // Append ICV after payload
310 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500311 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400312 // finally, we must invert dwCRC to get the correct answer
313 *pdwICV = cpu_to_le32(~dwICV);
314 // RC4 encryption
315 rc4_init(&pDevice->SBox, pDevice->abyPRNG, pTransmitKey->uKeyLength + 3);
316 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
317 //=======================================================================
318 } else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
319 //=======================================================================
320 //Append ICV after payload
321 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500322 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400323 // finally, we must invert dwCRC to get the correct answer
324 *pdwICV = cpu_to_le32(~dwICV);
325 // RC4 encryption
326 rc4_init(&pDevice->SBox, pDevice->abyPRNG, TKIP_KEY_LEN);
327 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
328 //=======================================================================
329 }
330}
331
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100332static u16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
333{
334 return cpu_to_le16(wTimeStampOff[priv->byPreambleType % 2]
335 [rate % MAX_RATE]);
336}
337
Forest Bond92b96792009-06-13 07:38:31 -0400338/*byPktType : PK_TYPE_11A 0
339 PK_TYPE_11B 1
340 PK_TYPE_11GB 2
341 PK_TYPE_11GA 3
342*/
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000343static u32 s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
344 u32 cbFrameLength, u16 wRate, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400345{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000346 u32 uDataTime, uAckTime;
Forest Bond92b96792009-06-13 07:38:31 -0400347
348 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wRate);
349 if (byPktType == PK_TYPE_11B) {//llb,CCK mode
Andres More3eaca0d2013-02-25 20:32:52 -0500350 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400351 } else {//11g 2.4G OFDM mode & 11a 5G OFDM mode
Andres More3eaca0d2013-02-25 20:32:52 -0500352 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopOFDMBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400353 }
354
355 if (bNeedAck) {
356 return (uDataTime + pDevice->uSIFS + uAckTime);
357 }
358 else {
359 return uDataTime;
360 }
361}
362
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100363static u16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
364 u32 frame_length, u16 rate, int need_ack)
365{
366 return cpu_to_le16((u16)s_uGetTxRsvTime(priv, pkt_type,
367 frame_length, rate, need_ack));
368}
369
Forest Bond92b96792009-06-13 07:38:31 -0400370//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100371static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000372 u8 byRTSRsvType, u8 byPktType, u32 cbFrameLength, u16 wCurrentRate)
Forest Bond92b96792009-06-13 07:38:31 -0400373{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000374 u32 uRrvTime, uRTSTime, uCTSTime, uAckTime, uDataTime;
Forest Bond92b96792009-06-13 07:38:31 -0400375
376 uRrvTime = uRTSTime = uCTSTime = uAckTime = uDataTime = 0;
377
Forest Bond92b96792009-06-13 07:38:31 -0400378 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wCurrentRate);
379 if (byRTSRsvType == 0) { //RTSTxRrvTime_bb
380 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
381 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
382 }
383 else if (byRTSRsvType == 1){ //RTSTxRrvTime_ba, only in 2.4GHZ
384 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
385 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
386 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
387 }
388 else if (byRTSRsvType == 2) { //RTSTxRrvTime_aa
389 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopOFDMBasicRate);
390 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
391 }
392 else if (byRTSRsvType == 3) { //CTSTxRrvTime_ba, only in 2.4GHZ
393 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
394 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
395 uRrvTime = uCTSTime + uAckTime + uDataTime + 2*pDevice->uSIFS;
396 return uRrvTime;
397 }
398
399 //RTSRrvTime
400 uRrvTime = uRTSTime + uCTSTime + uAckTime + uDataTime + 3*pDevice->uSIFS;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100401 return cpu_to_le16((u16)uRrvTime);
Forest Bond92b96792009-06-13 07:38:31 -0400402}
403
404//byFreqType 0: 5GHz, 1:2.4Ghz
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100405static u16 s_uGetDataDuration(struct vnt_private *pDevice,
406 u8 byPktType, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400407{
Malcolm Priestley0005cb02013-08-07 21:26:12 +0100408 u32 uAckTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400409
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100410 if (bNeedAck) {
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100411 if (byPktType == PK_TYPE_11B)
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100412 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
413 byPktType, 14, pDevice->byTopCCKBasicRate);
414 else
415 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
416 byPktType, 14, pDevice->byTopOFDMBasicRate);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100417 return cpu_to_le16((u16)(pDevice->uSIFS + uAckTime));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100418 }
Forest Bond92b96792009-06-13 07:38:31 -0400419
Forest Bond92b96792009-06-13 07:38:31 -0400420 return 0;
421}
422
Forest Bond92b96792009-06-13 07:38:31 -0400423//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100424static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice, u8 byDurType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000425 u32 cbFrameLength, u8 byPktType, u16 wRate, int bNeedAck,
426 u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400427{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000428 u32 uCTSTime = 0, uDurTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400429
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100430 switch (byDurType) {
431 case RTSDUR_BB:
432 case RTSDUR_BA:
433 case RTSDUR_BA_F0:
434 case RTSDUR_BA_F1:
435 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType,
436 14, pDevice->byTopCCKBasicRate);
437 uDurTime = uCTSTime + 2 * pDevice->uSIFS +
438 s_uGetTxRsvTime(pDevice, byPktType,
439 cbFrameLength, wRate, bNeedAck);
440 break;
Forest Bond92b96792009-06-13 07:38:31 -0400441
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100442 case RTSDUR_AA:
443 case RTSDUR_AA_F0:
444 case RTSDUR_AA_F1:
445 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType,
446 14, pDevice->byTopOFDMBasicRate);
447 uDurTime = uCTSTime + 2 * pDevice->uSIFS +
448 s_uGetTxRsvTime(pDevice, byPktType,
449 cbFrameLength, wRate, bNeedAck);
450 break;
Forest Bond92b96792009-06-13 07:38:31 -0400451
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100452 case CTSDUR_BA:
453 case CTSDUR_BA_F0:
454 case CTSDUR_BA_F1:
455 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100456 byPktType, cbFrameLength, wRate, bNeedAck);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100457 break;
Forest Bond92b96792009-06-13 07:38:31 -0400458
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100459 default:
460 break;
461 }
Forest Bond92b96792009-06-13 07:38:31 -0400462
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100463 return cpu_to_le16((u16)uDurTime);
Forest Bond92b96792009-06-13 07:38:31 -0400464}
465
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100466static u16 vnt_rxtx_datahead_g(struct vnt_private *priv, u8 pkt_type, u16 rate,
467 struct vnt_tx_datahead_g *buf, u32 frame_len, int need_ack)
468{
469 /* Get SignalField,ServiceField,Length */
470 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
471 BBvCalculateParameter(priv, frame_len, priv->byTopCCKBasicRate,
472 PK_TYPE_11B, &buf->b);
473
474 /* Get Duration and TimeStamp */
475 buf->wDuration_a = s_uGetDataDuration(priv, pkt_type, need_ack);
476 buf->wDuration_b = s_uGetDataDuration(priv, PK_TYPE_11B, need_ack);
477
478 buf->wTimeStampOff_a = vnt_time_stamp_off(priv, rate);
479 buf->wTimeStampOff_b = vnt_time_stamp_off(priv,
480 priv->byTopCCKBasicRate);
481
482 return buf->wDuration_a;
483}
484
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100485static u16 vnt_rxtx_datahead_g_fb(struct vnt_private *priv, u8 pkt_type,
486 u16 rate, struct vnt_tx_datahead_g_fb *buf,
487 u32 frame_len, int need_ack)
488{
489 /* Get SignalField,ServiceField,Length */
490 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
491
492 BBvCalculateParameter(priv, frame_len, priv->byTopCCKBasicRate,
493 PK_TYPE_11B, &buf->b);
494
495 /* Get Duration and TimeStamp */
496 buf->wDuration_a = s_uGetDataDuration(priv, pkt_type, need_ack);
497 buf->wDuration_b = s_uGetDataDuration(priv, PK_TYPE_11B, need_ack);
498
499 buf->wDuration_a_f0 = s_uGetDataDuration(priv, pkt_type, need_ack);
500 buf->wDuration_a_f1 = s_uGetDataDuration(priv, pkt_type, need_ack);
501
502 buf->wTimeStampOff_a = vnt_time_stamp_off(priv, rate);
503 buf->wTimeStampOff_b = vnt_time_stamp_off(priv,
504 priv->byTopCCKBasicRate);
505
506 return buf->wDuration_a;
507}
508
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100509static u16 vnt_rxtx_datahead_a_fb(struct vnt_private *priv, u8 pkt_type,
510 u16 rate, struct vnt_tx_datahead_a_fb *buf,
511 u32 frame_len, int need_ack)
512{
513 /* Get SignalField,ServiceField,Length */
514 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
515 /* Get Duration and TimeStampOff */
516 buf->wDuration = s_uGetDataDuration(priv, pkt_type, need_ack);
517
518 buf->wDuration_f0 = s_uGetDataDuration(priv, pkt_type, need_ack);
519 buf->wDuration_f1 = s_uGetDataDuration(priv, pkt_type, need_ack);
520
521 buf->wTimeStampOff = vnt_time_stamp_off(priv, rate);
522
523 return buf->wDuration;
524}
525
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100526static u16 vnt_rxtx_datahead_ab(struct vnt_private *priv, u8 pkt_type,
527 u16 rate, struct vnt_tx_datahead_ab *buf,
528 u32 frame_len, int need_ack)
529{
530 /* Get SignalField,ServiceField,Length */
531 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->ab);
532 /* Get Duration and TimeStampOff */
533 buf->wDuration = s_uGetDataDuration(priv, pkt_type, need_ack);
534
535 buf->wTimeStampOff = vnt_time_stamp_off(priv, rate);
536
537 return buf->wDuration;
538}
539
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100540static int vnt_fill_ieee80211_rts(struct vnt_private *priv,
541 struct ieee80211_rts *rts, struct ethhdr *eth_hdr,
542 u16 duration)
543{
544 rts->duration = duration;
545 rts->frame_control = TYPE_CTL_RTS;
546
547 if (priv->eOPMode == OP_MODE_ADHOC || priv->eOPMode == OP_MODE_AP)
548 memcpy(rts->ra, eth_hdr->h_dest, ETH_ALEN);
549 else
550 memcpy(rts->ra, priv->abyBSSID, ETH_ALEN);
551
552 if (priv->eOPMode == OP_MODE_AP)
553 memcpy(rts->ta, priv->abyBSSID, ETH_ALEN);
554 else
555 memcpy(rts->ta, eth_hdr->h_source, ETH_ALEN);
556
557 return 0;
558}
559
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100560static u16 vnt_rxtx_rts_g_head(struct vnt_private *priv,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100561 struct vnt_rts_g *buf, struct ethhdr *eth_hdr,
562 u8 pkt_type, u32 frame_len, int need_ack,
563 u16 current_rate, u8 fb_option)
564{
565 u16 rts_frame_len = 20;
566
567 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
568 PK_TYPE_11B, &buf->b);
569 BBvCalculateParameter(priv, rts_frame_len,
570 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
571
572 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
573 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
574 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
575 pkt_type, current_rate, need_ack, fb_option);
576 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
577 pkt_type, current_rate, need_ack, fb_option);
578
579 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
580
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100581 return vnt_rxtx_datahead_g(priv, pkt_type, current_rate,
582 &buf->data_head, frame_len, need_ack);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100583}
584
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100585static u16 vnt_rxtx_rts_g_fb_head(struct vnt_private *priv,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100586 struct vnt_rts_g_fb *buf, struct ethhdr *eth_hdr,
587 u8 pkt_type, u32 frame_len, int need_ack,
588 u16 current_rate, u8 fb_option)
589{
590 u16 rts_frame_len = 20;
591
592 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
593 PK_TYPE_11B, &buf->b);
594 BBvCalculateParameter(priv, rts_frame_len,
595 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
596
597
598 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
599 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
600 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
601 pkt_type, current_rate, need_ack, fb_option);
602 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
603 pkt_type, current_rate, need_ack, fb_option);
604
605
606 buf->wRTSDuration_ba_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100607 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100608 buf->wRTSDuration_aa_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100609 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100610 buf->wRTSDuration_ba_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100611 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100612 buf->wRTSDuration_aa_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100613 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100614
615 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
616
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100617 return vnt_rxtx_datahead_g_fb(priv, pkt_type, current_rate,
618 &buf->data_head, frame_len, need_ack);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100619}
620
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100621static u16 vnt_rxtx_rts_ab_head(struct vnt_private *priv,
Malcolm Priestley17126332013-08-26 11:09:38 +0100622 struct vnt_rts_ab *buf, struct ethhdr *eth_hdr,
623 u8 pkt_type, u32 frame_len, int need_ack,
624 u16 current_rate, u8 fb_option)
625{
626 u16 rts_frame_len = 20;
627
628 BBvCalculateParameter(priv, rts_frame_len,
629 priv->byTopOFDMBasicRate, pkt_type, &buf->ab);
630
631 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
632 pkt_type, current_rate, need_ack, fb_option);
633
634 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
635
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100636 return vnt_rxtx_datahead_ab(priv, pkt_type, current_rate,
637 &buf->data_head, frame_len, need_ack);
Malcolm Priestley17126332013-08-26 11:09:38 +0100638}
639
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100640static u16 vnt_rxtx_rts_a_fb_head(struct vnt_private *priv,
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100641 struct vnt_rts_a_fb *buf, struct ethhdr *eth_hdr,
642 u8 pkt_type, u32 frame_len, int need_ack,
643 u16 current_rate, u8 fb_option)
644{
645 u16 rts_frame_len = 20;
646
647 BBvCalculateParameter(priv, rts_frame_len,
648 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
649
650 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
651 pkt_type, current_rate, need_ack, fb_option);
652
653 buf->wRTSDuration_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100654 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100655
656 buf->wRTSDuration_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100657 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100658
659 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
660
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100661 return vnt_rxtx_datahead_a_fb(priv, pkt_type, current_rate,
662 &buf->data_head, frame_len, need_ack);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100663}
664
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100665static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100666 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500667 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400668{
Forest Bond92b96792009-06-13 07:38:31 -0400669
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100670 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100671 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400672
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100673 /* Note: So far RTSHead doesn't appear in ATIM
674 * & Beacom DMA, so we don't need to take them
675 * into account.
676 * Otherwise, we need to modified codes for them.
677 */
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100678 switch (byPktType) {
679 case PK_TYPE_11GB:
680 case PK_TYPE_11GA:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100681 if (byFBOption == AUTO_FB_NONE)
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100682 return vnt_rxtx_rts_g_head(pDevice, &head->rts_g,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100683 psEthHeader, byPktType, cbFrameLength,
684 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100685 else
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100686 return vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100687 psEthHeader, byPktType, cbFrameLength,
688 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100689 break;
690 case PK_TYPE_11A:
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100691 if (byFBOption) {
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100692 return vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb,
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100693 psEthHeader, byPktType, cbFrameLength,
694 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100695 break;
696 }
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100697 case PK_TYPE_11B:
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100698 return vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
Malcolm Priestley17126332013-08-26 11:09:38 +0100699 psEthHeader, byPktType, cbFrameLength,
700 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100701 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100702
703 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400704}
705
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100706static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100707 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
708 int bNeedAck, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400709{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000710 u32 uCTSFrameLen = 14;
Forest Bond92b96792009-06-13 07:38:31 -0400711
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100712 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100713 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400714
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100715 if (byFBOption != AUTO_FB_NONE) {
716 /* Auto Fall back */
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100717 struct vnt_cts_fb *pBuf = &head->cts_g_fb;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100718 /* Get SignalField,ServiceField,Length */
719 BBvCalculateParameter(pDevice, uCTSFrameLen,
720 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100721 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
722 cbFrameLength, byPktType,
723 wCurrentRate, bNeedAck, byFBOption);
724 /* Get CTSDuration_ba_f0 */
725 pBuf->wCTSDuration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100726 CTSDUR_BA_F0, cbFrameLength, byPktType,
727 pDevice->tx_rate_fb0, bNeedAck, byFBOption);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100728 /* Get CTSDuration_ba_f1 */
729 pBuf->wCTSDuration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100730 CTSDUR_BA_F1, cbFrameLength, byPktType,
731 pDevice->tx_rate_fb1, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100732 /* Get CTS Frame body */
733 pBuf->data.duration = pBuf->wDuration_ba;
734 pBuf->data.frame_control = TYPE_CTL_CTS;
735 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100736
737 return vnt_rxtx_datahead_g_fb(pDevice, byPktType, wCurrentRate,
738 &pBuf->data_head, cbFrameLength, bNeedAck);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100739 } else {
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100740 struct vnt_cts *pBuf = &head->cts_g;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100741 /* Get SignalField,ServiceField,Length */
742 BBvCalculateParameter(pDevice, uCTSFrameLen,
743 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100744 /* Get CTSDuration_ba */
745 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice,
746 CTSDUR_BA, cbFrameLength, byPktType,
747 wCurrentRate, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100748 /*Get CTS Frame body*/
749 pBuf->data.duration = pBuf->wDuration_ba;
750 pBuf->data.frame_control = TYPE_CTL_CTS;
751 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100752
753 return vnt_rxtx_datahead_g(pDevice, byPktType, wCurrentRate,
754 &pBuf->data_head, cbFrameLength, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400755 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100756
757 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400758}
759
Forest Bond92b96792009-06-13 07:38:31 -0400760/*+
761 *
762 * Description:
763 * Generate FIFO control for MAC & Baseband controller
764 *
765 * Parameters:
766 * In:
767 * pDevice - Pointer to adpater
768 * pTxDataHead - Transmit Data Buffer
769 * pTxBufHead - pTxBufHead
770 * pvRrvTime - pvRrvTime
771 * pvRTS - RTS Buffer
772 * pCTS - CTS Buffer
773 * cbFrameSize - Transmit Data Length (Hdr+Payload+FCS)
774 * bNeedACK - If need ACK
775 * uDMAIdx - DMA Index
776 * Out:
777 * none
778 *
779 * Return Value: none
780 *
781-*/
Andres Morecc856e62010-05-17 21:34:01 -0300782
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100783static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100784 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100785 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
786 int bNeedACK, u32 uDMAIdx, struct ethhdr *psEthHeader, bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400787{
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100788 struct vnt_tx_fifo_head *pFifoHead = &tx_buffer->fifo_head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100789 union vnt_tx_data_head *head = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000790 u32 cbMACHdLen = WLAN_HDR_ADDR3_LEN; /* 24 */
791 u16 wFifoCtl;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000792 u8 byFBOption = AUTO_FB_NONE;
Forest Bond92b96792009-06-13 07:38:31 -0400793
Malcolm Priestley92928f12013-10-07 20:14:01 +0100794 pFifoHead->wReserved = wCurrentRate;
795 wFifoCtl = pFifoHead->wFIFOCtl;
Forest Bond92b96792009-06-13 07:38:31 -0400796
Malcolm Priestley92928f12013-10-07 20:14:01 +0100797 if (wFifoCtl & FIFOCTL_AUTO_FB_0)
798 byFBOption = AUTO_FB_0;
799 else if (wFifoCtl & FIFOCTL_AUTO_FB_1)
800 byFBOption = AUTO_FB_1;
Forest Bond92b96792009-06-13 07:38:31 -0400801
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100802 if (!pFifoHead)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100803 return 0;
Malcolm Priestley2dc22d52013-08-24 13:15:32 +0100804
Malcolm Priestley92928f12013-10-07 20:14:01 +0100805 if (pDevice->bLongHeader)
806 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
Forest Bond92b96792009-06-13 07:38:31 -0400807
Malcolm Priestley92928f12013-10-07 20:14:01 +0100808 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
809 if (need_rts) {
810 struct vnt_rrv_time_rts *pBuf =
811 &tx_buffer->tx_head.tx_rts.rts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100812
Malcolm Priestley92928f12013-10-07 20:14:01 +0100813 pBuf->wRTSTxRrvTime_aa = s_uGetRTSCTSRsvTime(pDevice, 2,
814 byPktType, cbFrameSize, wCurrentRate);
815 pBuf->wRTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 1,
816 byPktType, cbFrameSize, wCurrentRate);
817 pBuf->wRTSTxRrvTime_bb = s_uGetRTSCTSRsvTime(pDevice, 0,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100818 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100819
Malcolm Priestley92928f12013-10-07 20:14:01 +0100820 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
821 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
822 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
823 PK_TYPE_11B, cbFrameSize,
824 pDevice->byTopCCKBasicRate, bNeedACK);
825
826 if (need_mic) {
827 *mic_hdr = &tx_buffer->
828 tx_head.tx_rts.tx.mic.hdr;
829 head = &tx_buffer->tx_head.tx_rts.tx.mic.head;
830 } else {
831 head = &tx_buffer->tx_head.tx_rts.tx.head;
832 }
833
834 /* Fill RTS */
835 return s_vFillRTSHead(pDevice, byPktType, head,
836 cbFrameSize, bNeedACK, psEthHeader,
837 wCurrentRate, byFBOption);
838
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100839 } else {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100840 struct vnt_rrv_time_cts *pBuf = &tx_buffer->
841 tx_head.tx_cts.cts;
842
843 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
844 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
845 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
846 PK_TYPE_11B, cbFrameSize,
847 pDevice->byTopCCKBasicRate, bNeedACK);
848
849 pBuf->wCTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 3,
850 byPktType, cbFrameSize, wCurrentRate);
851
852 if (need_mic) {
853 *mic_hdr = &tx_buffer->
854 tx_head.tx_cts.tx.mic.hdr;
855 head = &tx_buffer->tx_head.tx_cts.tx.mic.head;
856 } else {
857 head = &tx_buffer->tx_head.tx_cts.tx.head;
858 }
859
860 /* Fill CTS */
861 return s_vFillCTSHead(pDevice, uDMAIdx, byPktType,
862 head, cbFrameSize, bNeedACK, wCurrentRate,
863 byFBOption);
864 }
865 } else if (byPktType == PK_TYPE_11A) {
866 if (need_mic) {
867 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
868 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
869 } else {
870 head = &tx_buffer->tx_head.tx_ab.tx.head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100871 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100872
Malcolm Priestley92928f12013-10-07 20:14:01 +0100873 if (need_rts) {
874 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
875 tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100876
Malcolm Priestley92928f12013-10-07 20:14:01 +0100877 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 2,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100878 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100879
Malcolm Priestley92928f12013-10-07 20:14:01 +0100880 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
881 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
882
883 /* Fill RTS */
884 return s_vFillRTSHead(pDevice, byPktType, head,
885 cbFrameSize, bNeedACK, psEthHeader,
886 wCurrentRate, byFBOption);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100887 } else {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100888 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
889 tx_head.tx_ab.ab;
890
891 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
892 PK_TYPE_11A, cbFrameSize,
893 wCurrentRate, bNeedACK);
894
895 return vnt_rxtx_datahead_a_fb(pDevice, byPktType,
896 wCurrentRate, &head->data_head_a_fb,
897 cbFrameSize, bNeedACK);
898 }
899 } else if (byPktType == PK_TYPE_11B) {
900 if (need_mic) {
901 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
902 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
903 } else {
904 head = &tx_buffer->tx_head.tx_ab.tx.head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100905 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100906
Malcolm Priestley92928f12013-10-07 20:14:01 +0100907 if (need_rts) {
908 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
909 tx_head.tx_ab.ab;
Malcolm Priestleya90186e2013-10-01 15:58:54 +0100910
Malcolm Priestley92928f12013-10-07 20:14:01 +0100911 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 0,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100912 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100913
Malcolm Priestley92928f12013-10-07 20:14:01 +0100914 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
915 PK_TYPE_11B, cbFrameSize, wCurrentRate,
916 bNeedACK);
917
918 /* Fill RTS */
919 return s_vFillRTSHead(pDevice, byPktType, head,
920 cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100921 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Malcolm Priestley92928f12013-10-07 20:14:01 +0100922 } else {
923 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
924 tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100925
Malcolm Priestley92928f12013-10-07 20:14:01 +0100926 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
927 PK_TYPE_11B, cbFrameSize,
928 wCurrentRate, bNeedACK);
Malcolm Priestleya90186e2013-10-01 15:58:54 +0100929
Malcolm Priestley92928f12013-10-07 20:14:01 +0100930 return vnt_rxtx_datahead_ab(pDevice, byPktType,
931 wCurrentRate, &head->data_head_ab,
932 cbFrameSize, bNeedACK);
933 }
Malcolm Priestleyc12dca02013-10-01 16:03:40 +0100934 }
935
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100936 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400937}
938/*
Andres Moreb902fbf2013-02-25 20:32:51 -0500939 u8 * pbyBuffer,//point to pTxBufHead
Andres More3eaca0d2013-02-25 20:32:52 -0500940 u16 wFragType,//00:Non-Frag, 01:Start, 02:Mid, 03:Last
Andres Morecc856e62010-05-17 21:34:01 -0300941 unsigned int cbFragmentSize,//Hdr+payoad+FCS
Forest Bond92b96792009-06-13 07:38:31 -0400942*/
943
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000944static int s_bPacketToWirelessUsb(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100945 struct vnt_tx_buffer *tx_buffer, int bNeedEncryption,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +0100946 u32 uSkbPacketLen, u32 uDMAIdx, struct ethhdr *psEthHeader,
947 u8 *pPacket, PSKeyItem pTransmitKey, u32 uNodeIndex, u16 wCurrentRate,
948 u32 *pcbHeaderLen, u32 *pcbTotalLen)
Forest Bond92b96792009-06-13 07:38:31 -0400949{
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100950 struct vnt_tx_fifo_head *pTxBufHead = &tx_buffer->fifo_head;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000951 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
952 u32 cbFrameSize, cbFrameBodySize;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000953 u32 cb802_1_H_len;
954 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbMACHdLen = 0;
955 u32 cbFCSlen = 4, cbMICHDR = 0;
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100956 int bNeedACK;
957 bool bRTS = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000958 u8 *pbyType, *pbyMacHdr, *pbyIVHead, *pbyPayloadHead, *pbyTxBufferAddr;
959 u8 abySNAP_RFC1042[ETH_ALEN] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
960 u8 abySNAP_Bridgetunnel[ETH_ALEN]
961 = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
962 u32 uDuration;
963 u32 cbHeaderLength = 0, uPadding = 0;
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +0100964 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000965 u8 byFBOption = AUTO_FB_NONE, byFragType;
966 u16 wTxBufSize;
Malcolm Priestley4235f722013-08-24 12:42:01 +0100967 u32 dwMICKey0, dwMICKey1, dwMIC_Priority;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000968 u32 *pdwMIC_L, *pdwMIC_R;
Andres Moree269fc22013-02-12 20:36:29 -0500969 int bSoftWEP = false;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100970
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +0100971 pMICHDR = NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400972
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000973 if (bNeedEncryption && pTransmitKey->pvKeyTable) {
Andres More4e9b5e22013-02-12 20:36:30 -0500974 if (((PSKeyTable)pTransmitKey->pvKeyTable)->bSoftWEP == true)
975 bSoftWEP = true; /* WEP 256 */
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000976 }
Forest Bond92b96792009-06-13 07:38:31 -0400977
Forest Bond92b96792009-06-13 07:38:31 -0400978 // Get pkt type
Andres Moreceb8c5d2013-03-18 20:33:49 -0500979 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Forest Bond92b96792009-06-13 07:38:31 -0400980 if (pDevice->dwDiagRefCount == 0) {
981 cb802_1_H_len = 8;
982 } else {
983 cb802_1_H_len = 2;
984 }
985 } else {
986 cb802_1_H_len = 0;
987 }
988
Charles Clément21ec51f2010-05-18 10:08:14 -0700989 cbFrameBodySize = uSkbPacketLen - ETH_HLEN + cb802_1_H_len;
Forest Bond92b96792009-06-13 07:38:31 -0400990
991 //Set packet type
Andres More3eaca0d2013-02-25 20:32:52 -0500992 pTxBufHead->wFIFOCtl |= (u16)(byPktType<<8);
Forest Bond92b96792009-06-13 07:38:31 -0400993
994 if (pDevice->dwDiagRefCount != 0) {
Andres Moree269fc22013-02-12 20:36:29 -0500995 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -0400996 pTxBufHead->wFIFOCtl = pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
997 } else { //if (pDevice->dwDiagRefCount != 0) {
Andres More22040bb2010-08-02 20:21:44 -0300998 if ((pDevice->eOPMode == OP_MODE_ADHOC) ||
999 (pDevice->eOPMode == OP_MODE_AP)) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001000 if (is_multicast_ether_addr(psEthHeader->h_dest)) {
Andres Moree269fc22013-02-12 20:36:29 -05001001 bNeedACK = false;
Andres More22040bb2010-08-02 20:21:44 -03001002 pTxBufHead->wFIFOCtl =
1003 pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1004 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001005 bNeedACK = true;
Andres More22040bb2010-08-02 20:21:44 -03001006 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1007 }
Forest Bond92b96792009-06-13 07:38:31 -04001008 }
1009 else {
1010 // MSDUs in Infra mode always need ACK
Andres More4e9b5e22013-02-12 20:36:30 -05001011 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001012 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1013 }
1014 } //if (pDevice->dwDiagRefCount != 0) {
1015
1016 pTxBufHead->wTimeStamp = DEFAULT_MSDU_LIFETIME_RES_64us;
1017
1018 //Set FIFOCTL_LHEAD
1019 if (pDevice->bLongHeader)
1020 pTxBufHead->wFIFOCtl |= FIFOCTL_LHEAD;
1021
Forest Bond92b96792009-06-13 07:38:31 -04001022 //Set FRAGCTL_MACHDCNT
1023 if (pDevice->bLongHeader) {
1024 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
1025 } else {
1026 cbMACHdLen = WLAN_HDR_ADDR3_LEN;
1027 }
Andres More3eaca0d2013-02-25 20:32:52 -05001028 pTxBufHead->wFragCtl |= (u16)(cbMACHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001029
1030 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001031 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001032 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1033 }
1034
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +01001035 /* Set Auto Fallback Ctl */
1036 if (wCurrentRate >= RATE_18M) {
1037 if (pDevice->byAutoFBCtrl == AUTO_FB_0) {
1038 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
1039
1040 pDevice->tx_rate_fb0 =
1041 wFB_Opt0[FB_RATE0][wCurrentRate - RATE_18M];
1042 pDevice->tx_rate_fb1 =
1043 wFB_Opt0[FB_RATE1][wCurrentRate - RATE_18M];
1044
1045 byFBOption = AUTO_FB_0;
1046 } else if (pDevice->byAutoFBCtrl == AUTO_FB_1) {
1047 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
1048 pDevice->tx_rate_fb0 =
1049 wFB_Opt1[FB_RATE0][wCurrentRate - RATE_18M];
1050 pDevice->tx_rate_fb1 =
1051 wFB_Opt1[FB_RATE1][wCurrentRate - RATE_18M];
1052
1053 byFBOption = AUTO_FB_1;
1054 }
1055 }
Forest Bond92b96792009-06-13 07:38:31 -04001056
Andres More4e9b5e22013-02-12 20:36:30 -05001057 if (bSoftWEP != true) {
Forest Bond92b96792009-06-13 07:38:31 -04001058 if ((bNeedEncryption) && (pTransmitKey != NULL)) { //WEP enabled
1059 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) { //WEP40 or WEP104
1060 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1061 }
1062 if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1063 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Tx Set wFragCtl == FRAGCTL_TKIP\n");
1064 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1065 }
1066 else if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) { //CCMP
1067 pTxBufHead->wFragCtl |= FRAGCTL_AES;
1068 }
1069 }
1070 }
1071
Forest Bond92b96792009-06-13 07:38:31 -04001072 if ((bNeedEncryption) && (pTransmitKey != NULL)) {
1073 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
1074 cbIVlen = 4;
1075 cbICVlen = 4;
1076 }
1077 else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1078 cbIVlen = 8;//IV+ExtIV
1079 cbMIClen = 8;
1080 cbICVlen = 4;
1081 }
1082 if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) {
1083 cbIVlen = 8;//RSN Header
1084 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001085 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001086 }
Andres Moree269fc22013-02-12 20:36:29 -05001087 if (bSoftWEP == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001088 //MAC Header should be padding 0 to DW alignment.
1089 uPadding = 4 - (cbMACHdLen%4);
1090 uPadding %= 4;
1091 }
1092 }
1093
1094 cbFrameSize = cbMACHdLen + cbIVlen + (cbFrameBodySize + cbMIClen) + cbICVlen + cbFCSlen;
1095
Andres Moree269fc22013-02-12 20:36:29 -05001096 if ( (bNeedACK == false) ||(cbFrameSize < pDevice->wRTSThreshold) ) {
1097 bRTS = false;
Forest Bond92b96792009-06-13 07:38:31 -04001098 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001099 bRTS = true;
Forest Bond92b96792009-06-13 07:38:31 -04001100 pTxBufHead->wFIFOCtl |= (FIFOCTL_RTS | FIFOCTL_LRETRY);
1101 }
1102
Andres Moreb902fbf2013-02-25 20:32:51 -05001103 pbyTxBufferAddr = (u8 *) &(pTxBufHead->adwTxKey[0]);
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001104 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
1105
Forest Bond92b96792009-06-13 07:38:31 -04001106 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1107 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001108 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001109 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001110 cbMICHDR + sizeof(struct vnt_rts_g);
Forest Bond92b96792009-06-13 07:38:31 -04001111 }
1112 else { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001113 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001114 cbMICHDR + sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001115 }
1116 } else {
1117 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001118 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001119 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestley5b852f52013-10-01 15:54:56 +01001120 cbMICHDR + sizeof(struct vnt_rts_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001121 }
Andres Moree269fc22013-02-12 20:36:29 -05001122 else if (bRTS == false) { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001123 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley5b852f52013-10-01 15:54:56 +01001124 cbMICHDR + sizeof(struct vnt_cts_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001125 }
1126 } // Auto Fall Back
1127 }
1128 else {//802.11a/b packet
1129 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001130 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001131 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley5634a5a2013-10-01 16:00:20 +01001132 cbMICHDR + sizeof(struct vnt_rts_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001133 }
Andres Moree269fc22013-02-12 20:36:29 -05001134 else if (bRTS == false) { //RTS_needless, no MICHDR
Malcolm Priestley976467d2013-08-16 23:44:04 +01001135 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001136 cbMICHDR + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001137 }
1138 } else {
1139 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001140 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001141 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +01001142 cbMICHDR + sizeof(struct vnt_rts_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001143 }
Andres Moree269fc22013-02-12 20:36:29 -05001144 else if (bRTS == false) { //RTS_needless
Malcolm Priestley976467d2013-08-16 23:44:04 +01001145 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001146 cbMICHDR + sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001147 }
1148 } // Auto Fall Back
1149 }
1150
Andres Moreb902fbf2013-02-25 20:32:51 -05001151 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderLength);
1152 pbyIVHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding);
1153 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001154
Forest Bond92b96792009-06-13 07:38:31 -04001155 //=========================
1156 // No Fragmentation
1157 //=========================
1158 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Fragmentation...\n");
1159 byFragType = FRAGCTL_NONFRAG;
1160 //uDMAIdx = TYPE_AC0DMA;
1161 //pTxBufHead = (PSTxBufHead) &(pTxBufHead->adwTxKey[0]);
1162
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001163 /* Fill FIFO, RrvTime, RTS and CTS */
1164 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
1165 tx_buffer, &pMICHDR, cbMICHDR,
1166 cbFrameSize, bNeedACK, uDMAIdx, psEthHeader, bRTS);
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01001167
Forest Bond92b96792009-06-13 07:38:31 -04001168 // Generate TX MAC Header
Andres More3eaca0d2013-02-25 20:32:52 -05001169 s_vGenerateMACHeader(pDevice, pbyMacHdr, (u16)uDuration, psEthHeader, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04001170 byFragType, uDMAIdx, 0);
1171
Andres More4e9b5e22013-02-12 20:36:30 -05001172 if (bNeedEncryption == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001173 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001174 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01001175 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001176
1177 if (pDevice->bEnableHostWEP) {
1178 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
1179 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
1180 }
1181 }
1182
1183 // 802.1H
Andres Moreceb8c5d2013-03-18 20:33:49 -05001184 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Andres More203e4612010-08-04 19:12:34 -03001185 if (pDevice->dwDiagRefCount == 0) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001186 if ((psEthHeader->h_proto == cpu_to_be16(ETH_P_IPX)) ||
1187 (psEthHeader->h_proto == cpu_to_le16(0xF380))) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001188 memcpy((u8 *) (pbyPayloadHead),
Andres More203e4612010-08-04 19:12:34 -03001189 abySNAP_Bridgetunnel, 6);
Forest Bond92b96792009-06-13 07:38:31 -04001190 } else {
Andres Moreb902fbf2013-02-25 20:32:51 -05001191 memcpy((u8 *) (pbyPayloadHead), &abySNAP_RFC1042[0], 6);
Forest Bond92b96792009-06-13 07:38:31 -04001192 }
Andres Moreb902fbf2013-02-25 20:32:51 -05001193 pbyType = (u8 *) (pbyPayloadHead + 6);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001194 memcpy(pbyType, &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001195 } else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001196 memcpy((u8 *) (pbyPayloadHead), &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001197
1198 }
1199
1200 }
1201
Forest Bond92b96792009-06-13 07:38:31 -04001202 if (pPacket != NULL) {
1203 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001204 memcpy((pbyPayloadHead + cb802_1_H_len),
Charles Clément21ec51f2010-05-18 10:08:14 -07001205 (pPacket + ETH_HLEN),
1206 uSkbPacketLen - ETH_HLEN
Forest Bond92b96792009-06-13 07:38:31 -04001207 );
1208
1209 } else {
1210 // while bRelayPacketSend psEthHeader is point to header+payload
Andres Moreb902fbf2013-02-25 20:32:51 -05001211 memcpy((pbyPayloadHead + cb802_1_H_len), ((u8 *)psEthHeader) + ETH_HLEN, uSkbPacketLen - ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001212 }
1213
Andres More4e9b5e22013-02-12 20:36:30 -05001214 if ((bNeedEncryption == true) && (pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
Forest Bond92b96792009-06-13 07:38:31 -04001215
1216 ///////////////////////////////////////////////////////////////////
1217
Malcolm Priestley14c5ef52013-01-17 23:19:37 +00001218 if (pDevice->vnt_mgmt.eAuthenMode == WMAC_AUTH_WPANONE) {
1219 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1220 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
1221 }
Forest Bond92b96792009-06-13 07:38:31 -04001222 else if ((pTransmitKey->dwKeyIndex & AUTHENTICATOR_KEY) != 0) {
Andres More52a7e642013-02-25 20:32:53 -05001223 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1224 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04001225 }
1226 else {
Andres More52a7e642013-02-25 20:32:53 -05001227 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[24]);
1228 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[28]);
Forest Bond92b96792009-06-13 07:38:31 -04001229 }
1230 // DO Software Michael
1231 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001232 MIC_vAppend((u8 *)&(psEthHeader->h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04001233 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05001234 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001235 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC KEY: %X, %X\n",
1236 dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04001237
1238 ///////////////////////////////////////////////////////////////////
1239
1240 //DBG_PRN_GRP12(("Length:%d, %d\n", cbFrameBodySize, uFromHDtoPLDLength));
1241 //for (ii = 0; ii < cbFrameBodySize; ii++) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001242 // DBG_PRN_GRP12(("%02x ", *((u8 *)((pbyPayloadHead + cb802_1_H_len) + ii))));
Forest Bond92b96792009-06-13 07:38:31 -04001243 //}
1244 //DBG_PRN_GRP12(("\n\n\n"));
1245
1246 MIC_vAppend(pbyPayloadHead, cbFrameBodySize);
1247
Andres More52a7e642013-02-25 20:32:53 -05001248 pdwMIC_L = (u32 *)(pbyPayloadHead + cbFrameBodySize);
1249 pdwMIC_R = (u32 *)(pbyPayloadHead + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04001250
1251 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
1252 MIC_vUnInit();
1253
Andres More4e9b5e22013-02-12 20:36:30 -05001254 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001255 *pdwMIC_L = 0;
1256 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001257 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04001258 }
1259 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
1260 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderLength, uPadding, cbIVlen);
1261 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%lX, %lX\n", *pdwMIC_L, *pdwMIC_R);
1262 }
1263
Andres More4e9b5e22013-02-12 20:36:30 -05001264 if (bSoftWEP == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001265
Andres More3eaca0d2013-02-25 20:32:52 -05001266 s_vSWencryption(pDevice, pTransmitKey, (pbyPayloadHead), (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04001267
Andres More4e9b5e22013-02-12 20:36:30 -05001268 } else if ( ((pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) && (bNeedEncryption == true)) ||
1269 ((pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) && (bNeedEncryption == true)) ||
1270 ((pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) && (bNeedEncryption == true)) ) {
Forest Bond92b96792009-06-13 07:38:31 -04001271 cbFrameSize -= cbICVlen;
1272 }
1273
Forest Bond92b96792009-06-13 07:38:31 -04001274 cbFrameSize -= cbFCSlen;
Forest Bond92b96792009-06-13 07:38:31 -04001275
1276 *pcbHeaderLen = cbHeaderLength;
1277 *pcbTotalLen = cbHeaderLength + cbFrameSize ;
1278
Forest Bond92b96792009-06-13 07:38:31 -04001279 //Set FragCtl in TxBufferHead
Andres More3eaca0d2013-02-25 20:32:52 -05001280 pTxBufHead->wFragCtl |= (u16)byFragType;
Forest Bond92b96792009-06-13 07:38:31 -04001281
Andres More4e9b5e22013-02-12 20:36:30 -05001282 return true;
Forest Bond92b96792009-06-13 07:38:31 -04001283
1284}
1285
Forest Bond92b96792009-06-13 07:38:31 -04001286/*+
1287 *
1288 * Description:
1289 * Translate 802.3 to 802.11 header
1290 *
1291 * Parameters:
1292 * In:
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001293 * pDevice - Pointer to adapter
Forest Bond92b96792009-06-13 07:38:31 -04001294 * dwTxBufferAddr - Transmit Buffer
1295 * pPacket - Packet from upper layer
1296 * cbPacketSize - Transmit Data Length
1297 * Out:
1298 * pcbHeadSize - Header size of MAC&Baseband control and 802.11 Header
1299 * pcbAppendPayload - size of append payload for 802.1H translation
1300 *
1301 * Return Value: none
1302 *
1303-*/
1304
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001305static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -05001306 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001307 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx)
Forest Bond92b96792009-06-13 07:38:31 -04001308{
Andres More1cac4a42013-03-18 20:33:50 -05001309 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyBufferAddr;
Forest Bond92b96792009-06-13 07:38:31 -04001310
Malcolm Priestleyc921cc82013-08-20 20:47:49 +01001311 pMACHeader->frame_control = TYPE_802_11_DATA;
Forest Bond92b96792009-06-13 07:38:31 -04001312
1313 if (pDevice->eOPMode == OP_MODE_AP) {
Andres More1cac4a42013-03-18 20:33:50 -05001314 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001315 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001316 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001317 memcpy(&(pMACHeader->addr2[0]), &(pDevice->abyBSSID[0]), ETH_ALEN);
1318 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001319 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001320 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001321 pMACHeader->frame_control |= FC_FROMDS;
Andres More9a0e7562010-04-13 21:54:48 -03001322 } else {
1323 if (pDevice->eOPMode == OP_MODE_ADHOC) {
Andres More1cac4a42013-03-18 20:33:50 -05001324 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001325 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001326 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001327 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001328 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001329 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001330 memcpy(&(pMACHeader->addr3[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001331 &(pDevice->abyBSSID[0]),
1332 ETH_ALEN);
1333 } else {
Andres More1cac4a42013-03-18 20:33:50 -05001334 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001335 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001336 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001337 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001338 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001339 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001340 memcpy(&(pMACHeader->addr1[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001341 &(pDevice->abyBSSID[0]),
1342 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001343 pMACHeader->frame_control |= FC_TODS;
Forest Bond92b96792009-06-13 07:38:31 -04001344 }
1345 }
1346
1347 if (bNeedEncrypt)
Andres More1cac4a42013-03-18 20:33:50 -05001348 pMACHeader->frame_control |= cpu_to_le16((u16)WLAN_SET_FC_ISWEP(1));
Forest Bond92b96792009-06-13 07:38:31 -04001349
Andres More1cac4a42013-03-18 20:33:50 -05001350 pMACHeader->duration_id = cpu_to_le16(wDuration);
Forest Bond92b96792009-06-13 07:38:31 -04001351
1352 if (pDevice->bLongHeader) {
1353 PWLAN_80211HDR_A4 pMACA4Header = (PWLAN_80211HDR_A4) pbyBufferAddr;
Andres More1cac4a42013-03-18 20:33:50 -05001354 pMACHeader->frame_control |= (FC_TODS | FC_FROMDS);
Jim Lieb3e362592009-08-12 14:54:11 -07001355 memcpy(pMACA4Header->abyAddr4, pDevice->abyBSSID, WLAN_ADDR_LEN);
Forest Bond92b96792009-06-13 07:38:31 -04001356 }
Andres More1cac4a42013-03-18 20:33:50 -05001357 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001358
1359 //Set FragNumber in Sequence Control
Andres More1cac4a42013-03-18 20:33:50 -05001360 pMACHeader->seq_ctrl |= cpu_to_le16((u16)uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -04001361
1362 if ((wFragType == FRAGCTL_ENDFRAG) || (wFragType == FRAGCTL_NONFRAG)) {
1363 pDevice->wSeqCounter++;
1364 if (pDevice->wSeqCounter > 0x0fff)
1365 pDevice->wSeqCounter = 0;
1366 }
1367
1368 if ((wFragType == FRAGCTL_STAFRAG) || (wFragType == FRAGCTL_MIDFRAG)) { //StartFrag or MidFrag
Andres More1cac4a42013-03-18 20:33:50 -05001369 pMACHeader->frame_control |= FC_MOREFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001370 }
1371}
1372
Forest Bond92b96792009-06-13 07:38:31 -04001373/*+
1374 *
1375 * Description:
1376 * Request instructs a MAC to transmit a 802.11 management packet through
1377 * the adapter onto the medium.
1378 *
1379 * Parameters:
1380 * In:
1381 * hDeviceContext - Pointer to the adapter
1382 * pPacket - A pointer to a descriptor for the packet to transmit
1383 * Out:
1384 * none
1385 *
Andres Moree269fc22013-02-12 20:36:29 -05001386 * Return Value: CMD_STATUS_PENDING if MAC Tx resource available; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04001387 *
1388-*/
1389
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001390CMD_STATUS csMgmt_xmit(struct vnt_private *pDevice,
1391 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001392{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001393 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001394 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001395 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001396 struct vnt_tx_fifo_head *pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001397 struct ieee80211_hdr *pMACHeader;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001398 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001399 u8 byPktType, *pbyTxBufferAddr;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001400 struct vnt_mic_hdr *pMICHDR = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001401 u32 uDuration, cbReqCount, cbHeaderSize, cbFrameBodySize, cbFrameSize;
Andres Moree269fc22013-02-12 20:36:29 -05001402 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001403 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1404 u32 uPadding = 0;
1405 u16 wTxBufSize;
1406 u32 cbMacHdLen;
1407 u16 wCurrentRate = RATE_1M;
Forest Bond92b96792009-06-13 07:38:31 -04001408
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001409 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001410
1411 if (NULL == pContext) {
1412 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1413 return CMD_STATUS_RESOURCES;
1414 }
1415
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001416 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Forest Bond92b96792009-06-13 07:38:31 -04001417 cbFrameBodySize = pPacket->cbPayloadLen;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001418 pTxBufHead = &pTX_Buffer->fifo_head;
1419 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1420 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001421
1422 if (pDevice->byBBType == BB_TYPE_11A) {
1423 wCurrentRate = RATE_6M;
1424 byPktType = PK_TYPE_11A;
1425 } else {
1426 wCurrentRate = RATE_1M;
1427 byPktType = PK_TYPE_11B;
1428 }
1429
1430 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1431 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1432 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1433 // to set power here.
1434 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1435 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1436 } else {
1437 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1438 }
1439 pDevice->wCurrentRate = wCurrentRate;
1440
Forest Bond92b96792009-06-13 07:38:31 -04001441 //Set packet type
1442 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1443 pTxBufHead->wFIFOCtl = 0;
1444 }
1445 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1446 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1447 }
1448 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1449 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1450 }
1451 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1452 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1453 }
1454
1455 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1456 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1457
Andres More22040bb2010-08-02 20:21:44 -03001458 if (is_multicast_ether_addr(pPacket->p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001459 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001460 }
1461 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001462 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001463 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1464 };
1465
1466 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1467 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1468
1469 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1470 //Set Preamble type always long
1471 //pDevice->byPreambleType = PREAMBLE_LONG;
1472 // probe-response don't retry
1473 //if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001474 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001475 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1476 //}
1477 }
1478
1479 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1480
1481 if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001482 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001483 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1484 } else {
1485 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1486 }
1487
1488 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001489 pTxBufHead->wFragCtl |= cpu_to_le16((u16)(cbMacHdLen << 10));
Forest Bond92b96792009-06-13 07:38:31 -04001490
1491 // Notes:
1492 // Although spec says MMPDU can be fragmented; In most case,
1493 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001494 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001495
1496 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
1497 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1498 cbIVlen = 4;
1499 cbICVlen = 4;
1500 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1501 }
1502 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1503 cbIVlen = 8;//IV+ExtIV
1504 cbMIClen = 8;
1505 cbICVlen = 4;
1506 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1507 //We need to get seed here for filling TxKey entry.
1508 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1509 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1510 }
1511 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1512 cbIVlen = 8;//RSN Header
1513 cbICVlen = 8;//MIC
1514 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001515 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001516 }
1517 //MAC Header should be padding 0 to DW alignment.
1518 uPadding = 4 - (cbMacHdLen%4);
1519 uPadding %= 4;
1520 }
1521
1522 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen;
1523
1524 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001525 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001526 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1527 }
1528 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1529
1530 //Set RrvTime/RTS/CTS Buffer
1531 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley4f990052013-08-16 23:38:57 +01001532 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001533 sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001534 }
1535 else { // 802.11a/b packet
Malcolm Priestley976467d2013-08-16 23:44:04 +01001536 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001537 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001538 }
1539
Andres Moreceb8c5d2013-03-18 20:33:49 -05001540 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001541 &(pPacket->p80211Header->sA3.abyAddr1[0]),
1542 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001543 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001544 &(pPacket->p80211Header->sA3.abyAddr2[0]),
1545 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001546 //=========================
1547 // No Fragmentation
1548 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001549 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001550
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001551 /* Fill FIFO,RrvTime,RTS,and CTS */
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001552 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001553 pTX_Buffer, &pMICHDR, 0,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001554 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001555
Andres More1cac4a42013-03-18 20:33:50 -05001556 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001557
1558 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + cbFrameBodySize;
1559
1560 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001561 u8 * pbyIVHead;
1562 u8 * pbyPayloadHead;
1563 u8 * pbyBSSID;
Forest Bond92b96792009-06-13 07:38:31 -04001564 PSKeyItem pTransmitKey = NULL;
1565
Andres Moreb902fbf2013-02-25 20:32:51 -05001566 pbyIVHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding);
1567 pbyPayloadHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001568 do {
1569 if ((pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) &&
Andres More4e9b5e22013-02-12 20:36:30 -05001570 (pDevice->bLinkPass == true)) {
Forest Bond92b96792009-06-13 07:38:31 -04001571 pbyBSSID = pDevice->abyBSSID;
1572 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001573 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001574 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001575 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001576 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1577 break;
1578 }
1579 } else {
1580 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get PTK.\n");
1581 break;
1582 }
1583 }
1584 // get group key
1585 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001586 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001587 pTransmitKey = NULL;
1588 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"KEY is NULL. OP Mode[%d]\n", pDevice->eOPMode);
1589 } else {
1590 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1591 }
Andres Moree269fc22013-02-12 20:36:29 -05001592 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001593 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001594 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Andres More3eaca0d2013-02-25 20:32:52 -05001595 (u8 *)pMACHeader, (u16)cbFrameBodySize, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001596
Jim Lieb3e362592009-08-12 14:54:11 -07001597 memcpy(pMACHeader, pPacket->p80211Header, cbMacHdLen);
Andres Moreb902fbf2013-02-25 20:32:51 -05001598 memcpy(pbyPayloadHead, ((u8 *)(pPacket->p80211Header) + cbMacHdLen),
Forest Bond92b96792009-06-13 07:38:31 -04001599 cbFrameBodySize);
1600 }
1601 else {
1602 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001603 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001604 }
1605
Andres More1cac4a42013-03-18 20:33:50 -05001606 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001607 pDevice->wSeqCounter++ ;
1608 if (pDevice->wSeqCounter > 0x0fff)
1609 pDevice->wSeqCounter = 0;
1610
1611 if (bIsPSPOLL) {
1612 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001613 // of FIFO control header.
Forest Bond92b96792009-06-13 07:38:31 -04001614 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
1615 // in the same place of other packet's Duration-field).
1616 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001617 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001618 struct vnt_tx_datahead_g *data_head = &pTX_Buffer->tx_head.
1619 tx_cts.tx.head.cts_g.data_head;
1620 data_head->wDuration_a =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001621 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001622 data_head->wDuration_b =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001623 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1624 } else {
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01001625 struct vnt_tx_datahead_ab *data_head = &pTX_Buffer->tx_head.
1626 tx_ab.tx.head.data_head_ab;
1627 data_head->wDuration =
Malcolm Priestley558becf2013-08-16 23:50:32 +01001628 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1629 }
Forest Bond92b96792009-06-13 07:38:31 -04001630 }
1631
Andres More3eaca0d2013-02-25 20:32:52 -05001632 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05001633 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001634 pTX_Buffer->byType = 0x00;
1635
1636 pContext->pPacket = NULL;
1637 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001638 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001639
Andres More1cac4a42013-03-18 20:33:50 -05001640 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001641 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1642 &pMACHeader->addr1[0], (u16)cbFrameSize,
1643 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001644 }
1645 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001646 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1647 &pMACHeader->addr3[0], (u16)cbFrameSize,
1648 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001649 }
1650
1651 PIPEnsSendBulkOut(pDevice,pContext);
1652 return CMD_STATUS_PENDING;
1653}
1654
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001655CMD_STATUS csBeacon_xmit(struct vnt_private *pDevice,
1656 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001657{
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001658 struct vnt_beacon_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001659 u32 cbFrameSize = pPacket->cbMPDULen + WLAN_FCS_LEN;
1660 u32 cbHeaderSize = 0;
1661 u16 wTxBufSize = sizeof(STxShortBufHead);
1662 PSTxShortBufHead pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001663 struct ieee80211_hdr *pMACHeader;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001664 struct vnt_tx_datahead_ab *pTxDataHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001665 u16 wCurrentRate;
1666 u32 cbFrameBodySize;
1667 u32 cbReqCount;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001668 u8 *pbyTxBufferAddr;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001669 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001670 CMD_STATUS status;
Forest Bond92b96792009-06-13 07:38:31 -04001671
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001672 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001673 if (NULL == pContext) {
1674 status = CMD_STATUS_RESOURCES;
1675 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1676 return status ;
1677 }
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001678
1679 pTX_Buffer = (struct vnt_beacon_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001680 pbyTxBufferAddr = (u8 *)&(pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001681
1682 cbFrameBodySize = pPacket->cbPayloadLen;
1683
1684 pTxBufHead = (PSTxShortBufHead) pbyTxBufferAddr;
1685 wTxBufSize = sizeof(STxShortBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001686
1687 if (pDevice->byBBType == BB_TYPE_11A) {
1688 wCurrentRate = RATE_6M;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001689 pTxDataHead = (struct vnt_tx_datahead_ab *)
1690 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001691 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001692 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11A,
1693 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001694 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001695 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001696 PK_TYPE_11A, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001697 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001698 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001699 } else {
1700 wCurrentRate = RATE_1M;
1701 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001702 pTxDataHead = (struct vnt_tx_datahead_ab *)
1703 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001704 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001705 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11B,
1706 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001707 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001708 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001709 PK_TYPE_11B, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001710 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001711 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001712 }
1713
1714 //Generate Beacon Header
Andres More1cac4a42013-03-18 20:33:50 -05001715 pMACHeader = (struct ieee80211_hdr *)(pbyTxBufferAddr + cbHeaderSize);
Jim Lieb3e362592009-08-12 14:54:11 -07001716 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001717
Andres More1cac4a42013-03-18 20:33:50 -05001718 pMACHeader->duration_id = 0;
1719 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001720 pDevice->wSeqCounter++ ;
1721 if (pDevice->wSeqCounter > 0x0fff)
1722 pDevice->wSeqCounter = 0;
1723
1724 cbReqCount = cbHeaderSize + WLAN_HDR_ADDR3_LEN + cbFrameBodySize;
1725
Andres More3eaca0d2013-02-25 20:32:52 -05001726 pTX_Buffer->wTxByteCount = (u16)cbReqCount;
Andres Moreb902fbf2013-02-25 20:32:51 -05001727 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001728 pTX_Buffer->byType = 0x01;
1729
1730 pContext->pPacket = NULL;
1731 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001732 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001733
1734 PIPEnsSendBulkOut(pDevice,pContext);
1735 return CMD_STATUS_PENDING;
1736
1737}
1738
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001739void vDMA0_tx_80211(struct vnt_private *pDevice, struct sk_buff *skb)
1740{
1741 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001742 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001743 struct vnt_tx_fifo_head *pTxBufHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001744 u8 byPktType;
1745 u8 *pbyTxBufferAddr;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001746 u32 uDuration, cbReqCount;
Andres More1cac4a42013-03-18 20:33:50 -05001747 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001748 u32 cbHeaderSize, cbFrameBodySize;
Andres Moree269fc22013-02-12 20:36:29 -05001749 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001750 u32 cbFrameSize;
1751 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1752 u32 uPadding = 0;
1753 u32 cbMICHDR = 0, uLength = 0;
1754 u32 dwMICKey0, dwMICKey1;
1755 u32 dwMIC_Priority;
1756 u32 *pdwMIC_L, *pdwMIC_R;
1757 u16 wTxBufSize;
1758 u32 cbMacHdLen;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001759 struct ethhdr sEthHeader;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001760 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001761 u32 wCurrentRate = RATE_1M;
1762 PUWLAN_80211HDR p80211Header;
1763 u32 uNodeIndex = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001764 int bNodeExist = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001765 SKeyItem STempKey;
1766 PSKeyItem pTransmitKey = NULL;
1767 u8 *pbyIVHead, *pbyPayloadHead, *pbyMacHdr;
1768 u32 cbExtSuppRate = 0;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001769 struct vnt_usb_send_context *pContext;
Forest Bond92b96792009-06-13 07:38:31 -04001770
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +01001771 pMICHDR = NULL;
Forest Bond92b96792009-06-13 07:38:31 -04001772
1773 if(skb->len <= WLAN_HDR_ADDR3_LEN) {
1774 cbFrameBodySize = 0;
1775 }
1776 else {
1777 cbFrameBodySize = skb->len - WLAN_HDR_ADDR3_LEN;
1778 }
1779 p80211Header = (PUWLAN_80211HDR)skb->data;
1780
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001781 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001782
1783 if (NULL == pContext) {
1784 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0 TX...NO CONTEXT!\n");
1785 dev_kfree_skb_irq(skb);
1786 return ;
1787 }
1788
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001789 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001790 pTxBufHead = &pTX_Buffer->fifo_head;
1791 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1792 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001793
1794 if (pDevice->byBBType == BB_TYPE_11A) {
1795 wCurrentRate = RATE_6M;
1796 byPktType = PK_TYPE_11A;
1797 } else {
1798 wCurrentRate = RATE_1M;
1799 byPktType = PK_TYPE_11B;
1800 }
1801
1802 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1803 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1804 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1805 // to set power here.
1806 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1807 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1808 } else {
1809 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1810 }
1811
1812 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"vDMA0_tx_80211: p80211Header->sA3.wFrameCtl = %x \n", p80211Header->sA3.wFrameCtl);
1813
1814 //Set packet type
1815 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1816 pTxBufHead->wFIFOCtl = 0;
1817 }
1818 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1819 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1820 }
1821 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1822 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1823 }
1824 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1825 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1826 }
1827
1828 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1829 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1830
Andres More22040bb2010-08-02 20:21:44 -03001831 if (is_multicast_ether_addr(p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001832 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001833 if (pDevice->bEnableHostWEP) {
1834 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05001835 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001836 }
Forest Bond92b96792009-06-13 07:38:31 -04001837 }
1838 else {
1839 if (pDevice->bEnableHostWEP) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001840 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(p80211Header->sA3.abyAddr1), &uNodeIndex))
Andres More4e9b5e22013-02-12 20:36:30 -05001841 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001842 }
Andres More4e9b5e22013-02-12 20:36:30 -05001843 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001844 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1845 };
1846
1847 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1848 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1849
1850 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1851 //Set Preamble type always long
1852 //pDevice->byPreambleType = PREAMBLE_LONG;
1853
1854 // probe-response don't retry
1855 //if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001856 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001857 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1858 //}
1859 }
1860
1861 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1862
1863 if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001864 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001865 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1866 } else {
1867 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1868 }
1869
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001870 // hostapd daemon ext support rate patch
Forest Bond92b96792009-06-13 07:38:31 -04001871 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1872
1873 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0) {
1874 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN;
1875 }
1876
1877 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0) {
1878 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN;
1879 }
1880
1881 if (cbExtSuppRate >0) {
1882 cbFrameBodySize = WLAN_ASSOCRESP_OFF_SUPP_RATES;
1883 }
1884 }
1885
Forest Bond92b96792009-06-13 07:38:31 -04001886 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001887 pTxBufHead->wFragCtl |= cpu_to_le16((u16)cbMacHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001888
1889 // Notes:
1890 // Although spec says MMPDU can be fragmented; In most case,
1891 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001892 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001893
Forest Bond92b96792009-06-13 07:38:31 -04001894 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1895 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1896 cbIVlen = 4;
1897 cbICVlen = 4;
1898 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1899 }
1900 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1901 cbIVlen = 8;//IV+ExtIV
1902 cbMIClen = 8;
1903 cbICVlen = 4;
1904 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1905 //We need to get seed here for filling TxKey entry.
1906 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1907 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1908 }
1909 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1910 cbIVlen = 8;//RSN Header
1911 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001912 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001913 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001914 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001915 }
1916 //MAC Header should be padding 0 to DW alignment.
1917 uPadding = 4 - (cbMacHdLen%4);
1918 uPadding %= 4;
1919 }
1920
1921 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen + cbExtSuppRate;
1922
1923 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001924 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001925 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1926 }
1927 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1928
Forest Bond92b96792009-06-13 07:38:31 -04001929 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley4f990052013-08-16 23:38:57 +01001930 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001931 sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001932
1933 }
1934 else {//802.11a/b packet
Malcolm Priestley976467d2013-08-16 23:44:04 +01001935 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001936 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001937 }
Andres Moreceb8c5d2013-03-18 20:33:49 -05001938 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001939 &(p80211Header->sA3.abyAddr1[0]),
1940 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001941 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001942 &(p80211Header->sA3.abyAddr2[0]),
1943 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001944 //=========================
1945 // No Fragmentation
1946 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001947 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001948
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001949 /* Fill FIFO,RrvTime,RTS,and CTS */
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001950 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001951 pTX_Buffer, &pMICHDR, cbMICHDR,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001952 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001953
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +01001954 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001955
1956 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + (cbFrameBodySize + cbMIClen) + cbExtSuppRate;
1957
Andres Moreb902fbf2013-02-25 20:32:51 -05001958 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderSize);
1959 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding + cbIVlen);
1960 pbyIVHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding);
Forest Bond92b96792009-06-13 07:38:31 -04001961
1962 // Copy the Packet into a tx Buffer
1963 memcpy(pbyMacHdr, skb->data, cbMacHdLen);
1964
1965 // version set to 0, patch for hostapd deamon
Andres More1cac4a42013-03-18 20:33:50 -05001966 pMACHeader->frame_control &= cpu_to_le16(0xfffc);
Forest Bond92b96792009-06-13 07:38:31 -04001967 memcpy(pbyPayloadHead, (skb->data + cbMacHdLen), cbFrameBodySize);
1968
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001969 // replace support rate, patch for hostapd daemon( only support 11M)
Forest Bond92b96792009-06-13 07:38:31 -04001970 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1971 if (cbExtSuppRate != 0) {
1972 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0)
1973 memcpy((pbyPayloadHead + cbFrameBodySize),
1974 pMgmt->abyCurrSuppRates,
1975 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN
1976 );
1977 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0)
1978 memcpy((pbyPayloadHead + cbFrameBodySize) + ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN,
1979 pMgmt->abyCurrExtSuppRates,
1980 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN
1981 );
1982 }
1983 }
1984
1985 // Set wep
1986 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1987
1988 if (pDevice->bEnableHostWEP) {
1989 pTransmitKey = &STempKey;
1990 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
1991 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
1992 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
1993 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
1994 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
1995 memcpy(pTransmitKey->abyKey,
1996 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
1997 pTransmitKey->uKeyLength
1998 );
1999 }
2000
2001 if ((pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
2002
Andres More52a7e642013-02-25 20:32:53 -05002003 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
2004 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04002005
2006 // DO Software Michael
2007 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002008 MIC_vAppend((u8 *)&(sEthHeader.h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04002009 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05002010 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002011 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0_tx_8021:MIC KEY:"\
2012 " %X, %X\n", dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04002013
2014 uLength = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen;
2015
2016 MIC_vAppend((pbyTxBufferAddr + uLength), cbFrameBodySize);
2017
Andres More52a7e642013-02-25 20:32:53 -05002018 pdwMIC_L = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize);
2019 pdwMIC_R = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04002020
2021 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
2022 MIC_vUnInit();
2023
Andres More4e9b5e22013-02-12 20:36:30 -05002024 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002025 *pdwMIC_L = 0;
2026 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05002027 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04002028 }
2029
2030 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
2031 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderSize, uPadding, cbIVlen);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002032 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%x, %x\n",
2033 *pdwMIC_L, *pdwMIC_R);
Forest Bond92b96792009-06-13 07:38:31 -04002034
2035 }
2036
Andres Moreb902fbf2013-02-25 20:32:51 -05002037 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01002038 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04002039
2040 if (pDevice->bEnableHostWEP) {
2041 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
2042 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
2043 }
2044
2045 if ((pDevice->byLocalID <= REV_ID_VT3253_A1)) {
Andres More3eaca0d2013-02-25 20:32:52 -05002046 s_vSWencryption(pDevice, pTransmitKey, pbyPayloadHead, (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04002047 }
2048 }
2049
Andres More1cac4a42013-03-18 20:33:50 -05002050 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04002051 pDevice->wSeqCounter++ ;
2052 if (pDevice->wSeqCounter > 0x0fff)
2053 pDevice->wSeqCounter = 0;
2054
Forest Bond92b96792009-06-13 07:38:31 -04002055 if (bIsPSPOLL) {
2056 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
2057 // of FIFO control header.
2058 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
2059 // in the same place of other packet's Duration-field).
2060 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002061 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestley78363fd2013-10-01 15:52:16 +01002062 struct vnt_tx_datahead_g *data_head = &pTX_Buffer->tx_head.
2063 tx_cts.tx.head.cts_g.data_head;
2064 data_head->wDuration_a =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002065 cpu_to_le16(p80211Header->sA2.wDurationID);
Malcolm Priestley78363fd2013-10-01 15:52:16 +01002066 data_head->wDuration_b =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002067 cpu_to_le16(p80211Header->sA2.wDurationID);
2068 } else {
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01002069 struct vnt_tx_datahead_ab *data_head = &pTX_Buffer->tx_head.
2070 tx_ab.tx.head.data_head_ab;
2071 data_head->wDuration =
Malcolm Priestley558becf2013-08-16 23:50:32 +01002072 cpu_to_le16(p80211Header->sA2.wDurationID);
2073 }
Forest Bond92b96792009-06-13 07:38:31 -04002074 }
2075
Andres More3eaca0d2013-02-25 20:32:52 -05002076 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05002077 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04002078 pTX_Buffer->byType = 0x00;
2079
2080 pContext->pPacket = skb;
2081 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002082 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002083
Andres More1cac4a42013-03-18 20:33:50 -05002084 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002085 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2086 &pMACHeader->addr1[0], (u16)cbFrameSize,
2087 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002088 }
2089 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002090 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2091 &pMACHeader->addr3[0], (u16)cbFrameSize,
2092 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002093 }
2094 PIPEnsSendBulkOut(pDevice,pContext);
2095 return ;
2096
2097}
2098
Forest Bond92b96792009-06-13 07:38:31 -04002099//TYPE_AC0DMA data tx
2100/*
2101 * Description:
2102 * Tx packet via AC0DMA(DMA1)
2103 *
2104 * Parameters:
2105 * In:
2106 * pDevice - Pointer to the adapter
2107 * skb - Pointer to tx skb packet
2108 * Out:
2109 * void
2110 *
2111 * Return Value: NULL
2112 */
2113
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002114int nsDMA_tx_packet(struct vnt_private *pDevice,
2115 u32 uDMAIdx, struct sk_buff *skb)
Forest Bond92b96792009-06-13 07:38:31 -04002116{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002117 struct net_device_stats *pStats = &pDevice->stats;
2118 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002119 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002120 u32 BytesToWrite = 0, uHeaderLen = 0;
2121 u32 uNodeIndex = 0;
2122 u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
2123 u16 wAID;
2124 u8 byPktType;
Andres Moree269fc22013-02-12 20:36:29 -05002125 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002126 PSKeyItem pTransmitKey = NULL;
2127 SKeyItem STempKey;
2128 int ii;
Andres Moree269fc22013-02-12 20:36:29 -05002129 int bTKIP_UseGTK = false;
2130 int bNeedDeAuth = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002131 u8 *pbyBSSID;
Andres Moree269fc22013-02-12 20:36:29 -05002132 int bNodeExist = false;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002133 struct vnt_usb_send_context *pContext;
Andres Moredfdcc422013-02-12 20:36:28 -05002134 bool fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002135 u32 status;
2136 u16 wKeepRate = pDevice->wCurrentRate;
Andres Moree269fc22013-02-12 20:36:29 -05002137 int bTxeapol_key = false;
Forest Bond92b96792009-06-13 07:38:31 -04002138
Forest Bond92b96792009-06-13 07:38:31 -04002139 if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
2140
2141 if (pDevice->uAssocCount == 0) {
2142 dev_kfree_skb_irq(skb);
2143 return 0;
2144 }
2145
Andres Moreb902fbf2013-02-25 20:32:51 -05002146 if (is_multicast_ether_addr((u8 *)(skb->data))) {
Forest Bond92b96792009-06-13 07:38:31 -04002147 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05002148 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002149 if (pMgmt->sNodeDBTable[0].bPSEnable) {
2150
2151 skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skb);
2152 pMgmt->sNodeDBTable[0].wEnQueueCnt++;
2153 // set tx map
2154 pMgmt->abyPSTxMap[0] |= byMask[0];
2155 return 0;
2156 }
Masanari Iida93184692012-08-13 21:21:50 +09002157 // multicast/broadcast data rate
Forest Bond92b96792009-06-13 07:38:31 -04002158
2159 if (pDevice->byBBType != BB_TYPE_11A)
2160 pDevice->wCurrentRate = RATE_2M;
2161 else
2162 pDevice->wCurrentRate = RATE_24M;
2163 // long preamble type
2164 pDevice->byPreambleType = PREAMBLE_SHORT;
2165
2166 }else {
2167
Andres Moreb902fbf2013-02-25 20:32:51 -05002168 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(skb->data), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002169
2170 if (pMgmt->sNodeDBTable[uNodeIndex].bPSEnable) {
2171
2172 skb_queue_tail(&pMgmt->sNodeDBTable[uNodeIndex].sTxPSQueue, skb);
2173
2174 pMgmt->sNodeDBTable[uNodeIndex].wEnQueueCnt++;
2175 // set tx map
2176 wAID = pMgmt->sNodeDBTable[uNodeIndex].wAID;
2177 pMgmt->abyPSTxMap[wAID >> 3] |= byMask[wAID & 7];
2178 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set:pMgmt->abyPSTxMap[%d]= %d\n",
2179 (wAID >> 3), pMgmt->abyPSTxMap[wAID >> 3]);
2180
2181 return 0;
2182 }
2183 // AP rate decided from node
2184 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2185 // tx preamble decided from node
2186
2187 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2188 pDevice->byPreambleType = pDevice->byShortPreamble;
2189
2190 }else {
2191 pDevice->byPreambleType = PREAMBLE_LONG;
2192 }
Andres More4e9b5e22013-02-12 20:36:30 -05002193 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002194 }
2195 }
2196
Andres Moree269fc22013-02-12 20:36:29 -05002197 if (bNodeExist == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002198 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Unknown STA not found in node DB \n");
2199 dev_kfree_skb_irq(skb);
2200 return 0;
2201 }
2202 }
2203
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002204 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002205
2206 if (pContext == NULL) {
2207 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG" pContext == NULL\n");
2208 dev_kfree_skb_irq(skb);
2209 return STATUS_RESOURCES;
2210 }
2211
Andres Moreceb8c5d2013-03-18 20:33:49 -05002212 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)(skb->data), ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002213
2214//mike add:station mode check eapol-key challenge--->
2215{
Andres Moreb902fbf2013-02-25 20:32:51 -05002216 u8 Protocol_Version; //802.1x Authentication
2217 u8 Packet_Type; //802.1x Authentication
2218 u8 Descriptor_type;
Andres More3eaca0d2013-02-25 20:32:52 -05002219 u16 Key_info;
Forest Bond92b96792009-06-13 07:38:31 -04002220
Charles Clément21ec51f2010-05-18 10:08:14 -07002221 Protocol_Version = skb->data[ETH_HLEN];
2222 Packet_Type = skb->data[ETH_HLEN+1];
2223 Descriptor_type = skb->data[ETH_HLEN+1+1+2];
2224 Key_info = (skb->data[ETH_HLEN+1+1+2+1] << 8)|(skb->data[ETH_HLEN+1+1+2+2]);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002225 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002226 /* 802.1x OR eapol-key challenge frame transfer */
2227 if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
2228 (Packet_Type == 3)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002229 bTxeapol_key = true;
Forest Bond92b96792009-06-13 07:38:31 -04002230 if(!(Key_info & BIT3) && //WPA or RSN group-key challenge
2231 (Key_info & BIT8) && (Key_info & BIT9)) { //send 2/2 key
2232 if(Descriptor_type==254) {
Andres More4e9b5e22013-02-12 20:36:30 -05002233 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002234 PRINT_K("WPA ");
2235 }
2236 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002237 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002238 PRINT_K("WPA2(re-keying) ");
2239 }
2240 PRINT_K("Authentication completed!!\n");
2241 }
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002242 else if((Key_info & BIT3) && (Descriptor_type==2) && //RSN pairwise-key challenge
Forest Bond92b96792009-06-13 07:38:31 -04002243 (Key_info & BIT8) && (Key_info & BIT9)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002244 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002245 PRINT_K("WPA2 Authentication completed!!\n");
2246 }
2247 }
2248 }
2249}
2250//mike add:station mode check eapol-key challenge<---
2251
Andres More4e9b5e22013-02-12 20:36:30 -05002252 if (pDevice->bEncryptionEnable == true) {
2253 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002254 // get Transmit key
2255 do {
2256 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) &&
2257 (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2258 pbyBSSID = pDevice->abyBSSID;
2259 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05002260 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002261 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05002262 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
2263 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002264 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2265 break;
2266 }
2267 } else {
2268 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get PTK.\n");
2269 break;
2270 }
2271 }else if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002272 /* TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1 */
2273 pbyBSSID = pDevice->sTxEthHeader.h_dest;
Forest Bond92b96792009-06-13 07:38:31 -04002274 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS Serach Key: \n");
2275 for (ii = 0; ii< 6; ii++)
2276 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"%x \n", *(pbyBSSID+ii));
2277 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"\n");
2278
2279 // get pairwise key
Andres More4e9b5e22013-02-12 20:36:30 -05002280 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == true)
Forest Bond92b96792009-06-13 07:38:31 -04002281 break;
2282 }
2283 // get group key
2284 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002285 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002286 pTransmitKey = NULL;
2287 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
2288 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2289 }
2290 else
2291 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"NOT IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2292 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05002293 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002294 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2295 }
Andres Moree269fc22013-02-12 20:36:29 -05002296 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04002297 }
2298
2299 if (pDevice->bEnableHostWEP) {
2300 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"acdma0: STA index %d\n", uNodeIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002301 if (pDevice->bEncryptionEnable == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002302 pTransmitKey = &STempKey;
2303 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2304 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2305 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2306 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2307 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2308 memcpy(pTransmitKey->abyKey,
2309 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2310 pTransmitKey->uKeyLength
2311 );
2312 }
2313 }
2314
Andres Moreb902fbf2013-02-25 20:32:51 -05002315 byPktType = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002316
2317 if (pDevice->bFixRate) {
2318 if (pDevice->byBBType == BB_TYPE_11B) {
2319 if (pDevice->uConnectionRate >= RATE_11M) {
2320 pDevice->wCurrentRate = RATE_11M;
2321 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002322 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002323 }
2324 } else {
2325 if ((pDevice->byBBType == BB_TYPE_11A) &&
2326 (pDevice->uConnectionRate <= RATE_6M)) {
2327 pDevice->wCurrentRate = RATE_6M;
2328 } else {
2329 if (pDevice->uConnectionRate >= RATE_54M)
2330 pDevice->wCurrentRate = RATE_54M;
2331 else
Andres More3eaca0d2013-02-25 20:32:52 -05002332 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002333 }
2334 }
2335 }
2336 else {
2337 if (pDevice->eOPMode == OP_MODE_ADHOC) {
2338 // Adhoc Tx rate decided from node DB
Andres Moreceb8c5d2013-03-18 20:33:49 -05002339 if (is_multicast_ether_addr(pDevice->sTxEthHeader.h_dest)) {
Forest Bond92b96792009-06-13 07:38:31 -04002340 // Multicast use highest data rate
2341 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2342 // preamble type
2343 pDevice->byPreambleType = pDevice->byShortPreamble;
2344 }
2345 else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002346 if (BSSbIsSTAInNodeDB(pDevice, &(pDevice->sTxEthHeader.h_dest[0]), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002347 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2348 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2349 pDevice->byPreambleType = pDevice->byShortPreamble;
2350
2351 }
2352 else {
2353 pDevice->byPreambleType = PREAMBLE_LONG;
2354 }
2355 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Found Node Index is [%d] Tx Data Rate:[%d]\n",uNodeIndex, pDevice->wCurrentRate);
2356 }
2357 else {
2358 if (pDevice->byBBType != BB_TYPE_11A)
2359 pDevice->wCurrentRate = RATE_2M;
2360 else
2361 pDevice->wCurrentRate = RATE_24M; // refer to vMgrCreateOwnIBSS()'s
2362 // abyCurrExtSuppRates[]
2363 pDevice->byPreambleType = PREAMBLE_SHORT;
2364 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Not Found Node use highest basic Rate.....\n");
2365 }
2366 }
2367 }
2368 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) {
2369 // Infra STA rate decided from AP Node, index = 0
2370 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2371 }
2372 }
2373
Andres Moreceb8c5d2013-03-18 20:33:49 -05002374 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002375 if (pDevice->byBBType != BB_TYPE_11A) {
2376 pDevice->wCurrentRate = RATE_1M;
2377 pDevice->byACKRate = RATE_1M;
2378 pDevice->byTopCCKBasicRate = RATE_1M;
2379 pDevice->byTopOFDMBasicRate = RATE_6M;
2380 } else {
2381 pDevice->wCurrentRate = RATE_6M;
2382 pDevice->byACKRate = RATE_6M;
2383 pDevice->byTopCCKBasicRate = RATE_1M;
2384 pDevice->byTopOFDMBasicRate = RATE_6M;
2385 }
2386 }
Forest Bond92b96792009-06-13 07:38:31 -04002387
Andres More0cbd8d92010-05-06 20:34:29 -03002388 DBG_PRT(MSG_LEVEL_DEBUG,
2389 KERN_INFO "dma_tx: pDevice->wCurrentRate = %d\n",
2390 pDevice->wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -04002391
2392 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002393 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002394 }
2395
2396 if (pDevice->wCurrentRate <= RATE_11M) {
2397 byPktType = PK_TYPE_11B;
2398 }
2399
Andres More4e9b5e22013-02-12 20:36:30 -05002400 if (bNeedEncryption == true) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002401 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.h_proto));
2402 if ((pDevice->sTxEthHeader.h_proto) == cpu_to_be16(ETH_P_PAE)) {
Andres Moree269fc22013-02-12 20:36:29 -05002403 bNeedEncryption = false;
Andres Moreceb8c5d2013-03-18 20:33:49 -05002404 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.h_proto));
Forest Bond92b96792009-06-13 07:38:31 -04002405 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) && (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2406 if (pTransmitKey == NULL) {
2407 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Don't Find TX KEY\n");
2408 }
2409 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002410 if (bTKIP_UseGTK == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002411 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"error: KEY is GTK!!~~\n");
2412 }
2413 else {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002414 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2415 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002416 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002417 }
2418 }
2419 }
2420
Forest Bond92b96792009-06-13 07:38:31 -04002421 if (pDevice->bEnableHostWEP) {
2422 if ((uNodeIndex != 0) &&
2423 (pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex & PAIRWISE_KEY)) {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002424 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2425 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002426 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002427 }
2428 }
2429 }
2430 else {
2431
Forest Bond92b96792009-06-13 07:38:31 -04002432 if (pTransmitKey == NULL) {
2433 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"return no tx key\n");
Andres Moree269fc22013-02-12 20:36:29 -05002434 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002435 dev_kfree_skb_irq(skb);
2436 pStats->tx_dropped++;
2437 return STATUS_FAILURE;
2438 }
Forest Bond92b96792009-06-13 07:38:31 -04002439 }
2440 }
2441
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002442 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2443
Forest Bond92b96792009-06-13 07:38:31 -04002444 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002445 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002446 skb->len, uDMAIdx, &pDevice->sTxEthHeader,
Andres Moreb902fbf2013-02-25 20:32:51 -05002447 (u8 *)skb->data, pTransmitKey, uNodeIndex,
Forest Bond92b96792009-06-13 07:38:31 -04002448 pDevice->wCurrentRate,
2449 &uHeaderLen, &BytesToWrite
2450 );
2451
Andres Moree269fc22013-02-12 20:36:29 -05002452 if (fConvertedPacket == false) {
2453 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002454 dev_kfree_skb_irq(skb);
2455 return STATUS_FAILURE;
2456 }
2457
Andres More4e9b5e22013-02-12 20:36:30 -05002458 if ( pDevice->bEnablePSMode == true ) {
Forest Bond92b96792009-06-13 07:38:31 -04002459 if ( !pDevice->bPSModeTxBurst ) {
Andres More0cbd8d92010-05-06 20:34:29 -03002460 bScheduleCommand((void *) pDevice,
2461 WLAN_CMD_MAC_DISPOWERSAVING,
2462 NULL);
Andres More4e9b5e22013-02-12 20:36:30 -05002463 pDevice->bPSModeTxBurst = true;
Forest Bond92b96792009-06-13 07:38:31 -04002464 }
2465 }
2466
Andres Moreb902fbf2013-02-25 20:32:51 -05002467 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002468 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002469
2470 pContext->pPacket = skb;
2471 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002472 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002473
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002474 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2475 &pContext->sEthHeader.h_dest[0],
2476 (u16)(BytesToWrite-uHeaderLen),
2477 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002478
2479 status = PIPEnsSendBulkOut(pDevice,pContext);
2480
Andres More4e9b5e22013-02-12 20:36:30 -05002481 if (bNeedDeAuth == true) {
Andres More3eaca0d2013-02-25 20:32:52 -05002482 u16 wReason = WLAN_MGMT_REASON_MIC_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -04002483
Andres Moreb902fbf2013-02-25 20:32:51 -05002484 bScheduleCommand((void *) pDevice, WLAN_CMD_DEAUTH, (u8 *) &wReason);
Forest Bond92b96792009-06-13 07:38:31 -04002485 }
2486
2487 if(status!=STATUS_PENDING) {
Andres Moree269fc22013-02-12 20:36:29 -05002488 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002489 dev_kfree_skb_irq(skb);
2490 return STATUS_FAILURE;
2491 }
2492 else
2493 return 0;
2494
2495}
2496
Forest Bond92b96792009-06-13 07:38:31 -04002497/*
2498 * Description:
2499 * Relay packet send (AC1DMA) from rx dpc.
2500 *
2501 * Parameters:
2502 * In:
2503 * pDevice - Pointer to the adapter
2504 * pPacket - Pointer to rx packet
2505 * cbPacketSize - rx ethernet frame size
2506 * Out:
Andres Moree269fc22013-02-12 20:36:29 -05002507 * TURE, false
Forest Bond92b96792009-06-13 07:38:31 -04002508 *
Andres More4e9b5e22013-02-12 20:36:30 -05002509 * Return Value: Return true if packet is copy to dma1; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04002510 */
2511
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002512int bRelayPacketSend(struct vnt_private *pDevice, u8 *pbySkbData, u32 uDataLen,
2513 u32 uNodeIndex)
Forest Bond92b96792009-06-13 07:38:31 -04002514{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002515 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002516 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002517 u32 BytesToWrite = 0, uHeaderLen = 0;
2518 u8 byPktType = PK_TYPE_11B;
Andres Moree269fc22013-02-12 20:36:29 -05002519 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002520 SKeyItem STempKey;
2521 PSKeyItem pTransmitKey = NULL;
2522 u8 *pbyBSSID;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002523 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002524 u8 byPktTyp;
2525 int fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002526 u32 status;
2527 u16 wKeepRate = pDevice->wCurrentRate;
Forest Bond92b96792009-06-13 07:38:31 -04002528
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002529 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002530
2531 if (NULL == pContext) {
Andres Moree269fc22013-02-12 20:36:29 -05002532 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002533 }
2534
Andres Moreceb8c5d2013-03-18 20:33:49 -05002535 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)pbySkbData, ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002536
Andres More4e9b5e22013-02-12 20:36:30 -05002537 if (pDevice->bEncryptionEnable == true) {
2538 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002539 // get group key
2540 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002541 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002542 pTransmitKey = NULL;
2543 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2544 } else {
2545 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2546 }
2547 }
2548
2549 if (pDevice->bEnableHostWEP) {
Roel Kluinee93e192009-10-16 20:17:57 +02002550 if (uNodeIndex < MAX_NODE_NUM + 1) {
Forest Bond92b96792009-06-13 07:38:31 -04002551 pTransmitKey = &STempKey;
2552 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2553 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2554 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2555 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2556 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2557 memcpy(pTransmitKey->abyKey,
2558 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2559 pTransmitKey->uKeyLength
2560 );
2561 }
2562 }
2563
2564 if ( bNeedEncryption && (pTransmitKey == NULL) ) {
Andres Moree269fc22013-02-12 20:36:29 -05002565 pContext->bBoolInUse = false;
2566 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002567 }
2568
Andres Moreb902fbf2013-02-25 20:32:51 -05002569 byPktTyp = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002570
2571 if (pDevice->bFixRate) {
2572 if (pDevice->byBBType == BB_TYPE_11B) {
2573 if (pDevice->uConnectionRate >= RATE_11M) {
2574 pDevice->wCurrentRate = RATE_11M;
2575 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002576 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002577 }
2578 } else {
2579 if ((pDevice->byBBType == BB_TYPE_11A) &&
2580 (pDevice->uConnectionRate <= RATE_6M)) {
2581 pDevice->wCurrentRate = RATE_6M;
2582 } else {
2583 if (pDevice->uConnectionRate >= RATE_54M)
2584 pDevice->wCurrentRate = RATE_54M;
2585 else
Andres More3eaca0d2013-02-25 20:32:52 -05002586 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002587 }
2588 }
2589 }
2590 else {
2591 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2592 }
2593
Forest Bond92b96792009-06-13 07:38:31 -04002594 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002595 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002596 }
2597
2598 if (pDevice->wCurrentRate <= RATE_11M)
2599 byPktType = PK_TYPE_11B;
2600
Andres Moreabad19d2010-07-12 16:28:32 -03002601 BytesToWrite = uDataLen + ETH_FCS_LEN;
2602
Forest Bond92b96792009-06-13 07:38:31 -04002603 // Convert the packet to an usb frame and copy into our buffer
2604 // and send the irp.
2605
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002606 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2607
Forest Bond92b96792009-06-13 07:38:31 -04002608 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002609 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002610 uDataLen, TYPE_AC0DMA, &pDevice->sTxEthHeader,
2611 pbySkbData, pTransmitKey, uNodeIndex,
2612 pDevice->wCurrentRate,
2613 &uHeaderLen, &BytesToWrite
2614 );
2615
Andres Moree269fc22013-02-12 20:36:29 -05002616 if (fConvertedPacket == false) {
2617 pContext->bBoolInUse = false;
2618 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002619 }
2620
Andres Moreb902fbf2013-02-25 20:32:51 -05002621 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002622 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002623
2624 pContext->pPacket = NULL;
2625 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002626 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002627
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002628 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2629 &pContext->sEthHeader.h_dest[0],
2630 (u16)(BytesToWrite - uHeaderLen),
2631 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002632
2633 status = PIPEnsSendBulkOut(pDevice,pContext);
2634
Andres More4e9b5e22013-02-12 20:36:30 -05002635 return true;
Forest Bond92b96792009-06-13 07:38:31 -04002636}
2637