blob: 9cf5b0890fc12bcbe2528610b87d07d526fa5e3e [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
Forest Bond92b96792009-06-13 07:38:31 -0400430 switch (byDurType) {
431
432 case RTSDUR_BB: //RTSDuration_bb
Forest Bond92b96792009-06-13 07:38:31 -0400433 case RTSDUR_BA: //RTSDuration_ba
Forest Bond92b96792009-06-13 07:38:31 -0400434 case RTSDUR_BA_F0: //RTSDuration_ba_f0
Forest Bond92b96792009-06-13 07:38:31 -0400435 case RTSDUR_BA_F1: //RTSDuration_ba_f1
436 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100437 uDurTime = uCTSTime + 2 * pDevice->uSIFS + s_uGetTxRsvTime(pDevice,
438 byPktType, cbFrameLength, wRate, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400439 break;
440
Malcolm Priestley3dec8f12013-10-15 21:03:53 +0100441 case RTSDUR_AA:
442 case RTSDUR_AA_F0:
Forest Bond92b96792009-06-13 07:38:31 -0400443 case RTSDUR_AA_F1: //RTSDuration_aa_f1
444 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100445 uDurTime = uCTSTime + 2 * pDevice->uSIFS + s_uGetTxRsvTime(pDevice,
446 byPktType, cbFrameLength, wRate, bNeedAck);
447 break;
Forest Bond92b96792009-06-13 07:38:31 -0400448
Malcolm Priestley3dec8f12013-10-15 21:03:53 +0100449 case CTSDUR_BA:
Forest Bond92b96792009-06-13 07:38:31 -0400450 case CTSDUR_BA_F0: //CTSDuration_ba_f0
Forest Bond92b96792009-06-13 07:38:31 -0400451 case CTSDUR_BA_F1: //CTSDuration_ba_f1
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100452 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice,
453 byPktType, cbFrameLength, wRate, bNeedAck);
454 break;
Forest Bond92b96792009-06-13 07:38:31 -0400455
456 default:
457 break;
458 }
459
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100460 return cpu_to_le16((u16)uDurTime);
Forest Bond92b96792009-06-13 07:38:31 -0400461}
462
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100463static u16 vnt_rxtx_datahead_g(struct vnt_private *priv, u8 pkt_type, u16 rate,
464 struct vnt_tx_datahead_g *buf, u32 frame_len, int need_ack)
465{
466 /* Get SignalField,ServiceField,Length */
467 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
468 BBvCalculateParameter(priv, frame_len, priv->byTopCCKBasicRate,
469 PK_TYPE_11B, &buf->b);
470
471 /* Get Duration and TimeStamp */
472 buf->wDuration_a = s_uGetDataDuration(priv, pkt_type, need_ack);
473 buf->wDuration_b = s_uGetDataDuration(priv, PK_TYPE_11B, need_ack);
474
475 buf->wTimeStampOff_a = vnt_time_stamp_off(priv, rate);
476 buf->wTimeStampOff_b = vnt_time_stamp_off(priv,
477 priv->byTopCCKBasicRate);
478
479 return buf->wDuration_a;
480}
481
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100482static u16 vnt_rxtx_datahead_g_fb(struct vnt_private *priv, u8 pkt_type,
483 u16 rate, struct vnt_tx_datahead_g_fb *buf,
484 u32 frame_len, int need_ack)
485{
486 /* Get SignalField,ServiceField,Length */
487 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
488
489 BBvCalculateParameter(priv, frame_len, priv->byTopCCKBasicRate,
490 PK_TYPE_11B, &buf->b);
491
492 /* Get Duration and TimeStamp */
493 buf->wDuration_a = s_uGetDataDuration(priv, pkt_type, need_ack);
494 buf->wDuration_b = s_uGetDataDuration(priv, PK_TYPE_11B, need_ack);
495
496 buf->wDuration_a_f0 = s_uGetDataDuration(priv, pkt_type, need_ack);
497 buf->wDuration_a_f1 = s_uGetDataDuration(priv, pkt_type, need_ack);
498
499 buf->wTimeStampOff_a = vnt_time_stamp_off(priv, rate);
500 buf->wTimeStampOff_b = vnt_time_stamp_off(priv,
501 priv->byTopCCKBasicRate);
502
503 return buf->wDuration_a;
504}
505
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100506static u16 vnt_rxtx_datahead_a_fb(struct vnt_private *priv, u8 pkt_type,
507 u16 rate, struct vnt_tx_datahead_a_fb *buf,
508 u32 frame_len, int need_ack)
509{
510 /* Get SignalField,ServiceField,Length */
511 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
512 /* Get Duration and TimeStampOff */
513 buf->wDuration = s_uGetDataDuration(priv, pkt_type, need_ack);
514
515 buf->wDuration_f0 = s_uGetDataDuration(priv, pkt_type, need_ack);
516 buf->wDuration_f1 = s_uGetDataDuration(priv, pkt_type, need_ack);
517
518 buf->wTimeStampOff = vnt_time_stamp_off(priv, rate);
519
520 return buf->wDuration;
521}
522
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100523static u16 vnt_rxtx_datahead_ab(struct vnt_private *priv, u8 pkt_type,
524 u16 rate, struct vnt_tx_datahead_ab *buf,
525 u32 frame_len, int need_ack)
526{
527 /* Get SignalField,ServiceField,Length */
528 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->ab);
529 /* Get Duration and TimeStampOff */
530 buf->wDuration = s_uGetDataDuration(priv, pkt_type, need_ack);
531
532 buf->wTimeStampOff = vnt_time_stamp_off(priv, rate);
533
534 return buf->wDuration;
535}
536
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100537static int vnt_fill_ieee80211_rts(struct vnt_private *priv,
538 struct ieee80211_rts *rts, struct ethhdr *eth_hdr,
539 u16 duration)
540{
541 rts->duration = duration;
542 rts->frame_control = TYPE_CTL_RTS;
543
544 if (priv->eOPMode == OP_MODE_ADHOC || priv->eOPMode == OP_MODE_AP)
545 memcpy(rts->ra, eth_hdr->h_dest, ETH_ALEN);
546 else
547 memcpy(rts->ra, priv->abyBSSID, ETH_ALEN);
548
549 if (priv->eOPMode == OP_MODE_AP)
550 memcpy(rts->ta, priv->abyBSSID, ETH_ALEN);
551 else
552 memcpy(rts->ta, eth_hdr->h_source, ETH_ALEN);
553
554 return 0;
555}
556
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100557static u16 vnt_rxtx_rts_g_head(struct vnt_private *priv,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100558 struct vnt_rts_g *buf, struct ethhdr *eth_hdr,
559 u8 pkt_type, u32 frame_len, int need_ack,
560 u16 current_rate, u8 fb_option)
561{
562 u16 rts_frame_len = 20;
563
564 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
565 PK_TYPE_11B, &buf->b);
566 BBvCalculateParameter(priv, rts_frame_len,
567 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
568
569 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
570 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
571 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
572 pkt_type, current_rate, need_ack, fb_option);
573 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
574 pkt_type, current_rate, need_ack, fb_option);
575
576 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
577
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100578 return vnt_rxtx_datahead_g(priv, pkt_type, current_rate,
579 &buf->data_head, frame_len, need_ack);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100580}
581
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100582static u16 vnt_rxtx_rts_g_fb_head(struct vnt_private *priv,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100583 struct vnt_rts_g_fb *buf, struct ethhdr *eth_hdr,
584 u8 pkt_type, u32 frame_len, int need_ack,
585 u16 current_rate, u8 fb_option)
586{
587 u16 rts_frame_len = 20;
588
589 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
590 PK_TYPE_11B, &buf->b);
591 BBvCalculateParameter(priv, rts_frame_len,
592 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
593
594
595 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
596 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
597 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
598 pkt_type, current_rate, need_ack, fb_option);
599 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
600 pkt_type, current_rate, need_ack, fb_option);
601
602
603 buf->wRTSDuration_ba_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100604 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100605 buf->wRTSDuration_aa_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100606 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100607 buf->wRTSDuration_ba_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100608 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100609 buf->wRTSDuration_aa_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100610 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100611
612 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
613
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100614 return vnt_rxtx_datahead_g_fb(priv, pkt_type, current_rate,
615 &buf->data_head, frame_len, need_ack);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100616}
617
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100618static u16 vnt_rxtx_rts_ab_head(struct vnt_private *priv,
Malcolm Priestley17126332013-08-26 11:09:38 +0100619 struct vnt_rts_ab *buf, struct ethhdr *eth_hdr,
620 u8 pkt_type, u32 frame_len, int need_ack,
621 u16 current_rate, u8 fb_option)
622{
623 u16 rts_frame_len = 20;
624
625 BBvCalculateParameter(priv, rts_frame_len,
626 priv->byTopOFDMBasicRate, pkt_type, &buf->ab);
627
628 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
629 pkt_type, current_rate, need_ack, fb_option);
630
631 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
632
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100633 return vnt_rxtx_datahead_ab(priv, pkt_type, current_rate,
634 &buf->data_head, frame_len, need_ack);
Malcolm Priestley17126332013-08-26 11:09:38 +0100635}
636
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100637static u16 vnt_rxtx_rts_a_fb_head(struct vnt_private *priv,
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100638 struct vnt_rts_a_fb *buf, struct ethhdr *eth_hdr,
639 u8 pkt_type, u32 frame_len, int need_ack,
640 u16 current_rate, u8 fb_option)
641{
642 u16 rts_frame_len = 20;
643
644 BBvCalculateParameter(priv, rts_frame_len,
645 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
646
647 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
648 pkt_type, current_rate, need_ack, fb_option);
649
650 buf->wRTSDuration_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100651 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100652
653 buf->wRTSDuration_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100654 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100655
656 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
657
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100658 return vnt_rxtx_datahead_a_fb(priv, pkt_type, current_rate,
659 &buf->data_head, frame_len, need_ack);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100660}
661
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100662static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100663 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500664 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400665{
Forest Bond92b96792009-06-13 07:38:31 -0400666
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100667 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100668 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400669
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100670 /* Note: So far RTSHead doesn't appear in ATIM
671 * & Beacom DMA, so we don't need to take them
672 * into account.
673 * Otherwise, we need to modified codes for them.
674 */
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100675 switch (byPktType) {
676 case PK_TYPE_11GB:
677 case PK_TYPE_11GA:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100678 if (byFBOption == AUTO_FB_NONE)
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100679 return vnt_rxtx_rts_g_head(pDevice, &head->rts_g,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100680 psEthHeader, byPktType, cbFrameLength,
681 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100682 else
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100683 return vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100684 psEthHeader, byPktType, cbFrameLength,
685 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100686 break;
687 case PK_TYPE_11A:
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100688 if (byFBOption) {
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100689 return vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb,
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100690 psEthHeader, byPktType, cbFrameLength,
691 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100692 break;
693 }
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100694 case PK_TYPE_11B:
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100695 return vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
Malcolm Priestley17126332013-08-26 11:09:38 +0100696 psEthHeader, byPktType, cbFrameLength,
697 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100698 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100699
700 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400701}
702
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100703static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100704 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
705 int bNeedAck, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400706{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000707 u32 uCTSFrameLen = 14;
Forest Bond92b96792009-06-13 07:38:31 -0400708
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100709 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100710 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400711
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100712 if (byFBOption != AUTO_FB_NONE) {
713 /* Auto Fall back */
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100714 struct vnt_cts_fb *pBuf = &head->cts_g_fb;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100715 /* Get SignalField,ServiceField,Length */
716 BBvCalculateParameter(pDevice, uCTSFrameLen,
717 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100718 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
719 cbFrameLength, byPktType,
720 wCurrentRate, bNeedAck, byFBOption);
721 /* Get CTSDuration_ba_f0 */
722 pBuf->wCTSDuration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100723 CTSDUR_BA_F0, cbFrameLength, byPktType,
724 pDevice->tx_rate_fb0, bNeedAck, byFBOption);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100725 /* Get CTSDuration_ba_f1 */
726 pBuf->wCTSDuration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100727 CTSDUR_BA_F1, cbFrameLength, byPktType,
728 pDevice->tx_rate_fb1, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100729 /* Get CTS Frame body */
730 pBuf->data.duration = pBuf->wDuration_ba;
731 pBuf->data.frame_control = TYPE_CTL_CTS;
732 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100733
734 return vnt_rxtx_datahead_g_fb(pDevice, byPktType, wCurrentRate,
735 &pBuf->data_head, cbFrameLength, bNeedAck);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100736 } else {
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100737 struct vnt_cts *pBuf = &head->cts_g;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100738 /* Get SignalField,ServiceField,Length */
739 BBvCalculateParameter(pDevice, uCTSFrameLen,
740 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100741 /* Get CTSDuration_ba */
742 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice,
743 CTSDUR_BA, cbFrameLength, byPktType,
744 wCurrentRate, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100745 /*Get CTS Frame body*/
746 pBuf->data.duration = pBuf->wDuration_ba;
747 pBuf->data.frame_control = TYPE_CTL_CTS;
748 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100749
750 return vnt_rxtx_datahead_g(pDevice, byPktType, wCurrentRate,
751 &pBuf->data_head, cbFrameLength, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400752 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100753
754 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400755}
756
Forest Bond92b96792009-06-13 07:38:31 -0400757/*+
758 *
759 * Description:
760 * Generate FIFO control for MAC & Baseband controller
761 *
762 * Parameters:
763 * In:
764 * pDevice - Pointer to adpater
765 * pTxDataHead - Transmit Data Buffer
766 * pTxBufHead - pTxBufHead
767 * pvRrvTime - pvRrvTime
768 * pvRTS - RTS Buffer
769 * pCTS - CTS Buffer
770 * cbFrameSize - Transmit Data Length (Hdr+Payload+FCS)
771 * bNeedACK - If need ACK
772 * uDMAIdx - DMA Index
773 * Out:
774 * none
775 *
776 * Return Value: none
777 *
778-*/
Andres Morecc856e62010-05-17 21:34:01 -0300779
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100780static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100781 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100782 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
783 int bNeedACK, u32 uDMAIdx, struct ethhdr *psEthHeader, bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400784{
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100785 struct vnt_tx_fifo_head *pFifoHead = &tx_buffer->fifo_head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100786 union vnt_tx_data_head *head = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000787 u32 cbMACHdLen = WLAN_HDR_ADDR3_LEN; /* 24 */
788 u16 wFifoCtl;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000789 u8 byFBOption = AUTO_FB_NONE;
Forest Bond92b96792009-06-13 07:38:31 -0400790
Malcolm Priestley92928f12013-10-07 20:14:01 +0100791 pFifoHead->wReserved = wCurrentRate;
792 wFifoCtl = pFifoHead->wFIFOCtl;
Forest Bond92b96792009-06-13 07:38:31 -0400793
Malcolm Priestley92928f12013-10-07 20:14:01 +0100794 if (wFifoCtl & FIFOCTL_AUTO_FB_0)
795 byFBOption = AUTO_FB_0;
796 else if (wFifoCtl & FIFOCTL_AUTO_FB_1)
797 byFBOption = AUTO_FB_1;
Forest Bond92b96792009-06-13 07:38:31 -0400798
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100799 if (!pFifoHead)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100800 return 0;
Malcolm Priestley2dc22d52013-08-24 13:15:32 +0100801
Malcolm Priestley92928f12013-10-07 20:14:01 +0100802 if (pDevice->bLongHeader)
803 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
Forest Bond92b96792009-06-13 07:38:31 -0400804
Malcolm Priestley92928f12013-10-07 20:14:01 +0100805 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
806 if (need_rts) {
807 struct vnt_rrv_time_rts *pBuf =
808 &tx_buffer->tx_head.tx_rts.rts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100809
Malcolm Priestley92928f12013-10-07 20:14:01 +0100810 pBuf->wRTSTxRrvTime_aa = s_uGetRTSCTSRsvTime(pDevice, 2,
811 byPktType, cbFrameSize, wCurrentRate);
812 pBuf->wRTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 1,
813 byPktType, cbFrameSize, wCurrentRate);
814 pBuf->wRTSTxRrvTime_bb = s_uGetRTSCTSRsvTime(pDevice, 0,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100815 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100816
Malcolm Priestley92928f12013-10-07 20:14:01 +0100817 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
818 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
819 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
820 PK_TYPE_11B, cbFrameSize,
821 pDevice->byTopCCKBasicRate, bNeedACK);
822
823 if (need_mic) {
824 *mic_hdr = &tx_buffer->
825 tx_head.tx_rts.tx.mic.hdr;
826 head = &tx_buffer->tx_head.tx_rts.tx.mic.head;
827 } else {
828 head = &tx_buffer->tx_head.tx_rts.tx.head;
829 }
830
831 /* Fill RTS */
832 return s_vFillRTSHead(pDevice, byPktType, head,
833 cbFrameSize, bNeedACK, psEthHeader,
834 wCurrentRate, byFBOption);
835
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100836 } else {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100837 struct vnt_rrv_time_cts *pBuf = &tx_buffer->
838 tx_head.tx_cts.cts;
839
840 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
841 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
842 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
843 PK_TYPE_11B, cbFrameSize,
844 pDevice->byTopCCKBasicRate, bNeedACK);
845
846 pBuf->wCTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 3,
847 byPktType, cbFrameSize, wCurrentRate);
848
849 if (need_mic) {
850 *mic_hdr = &tx_buffer->
851 tx_head.tx_cts.tx.mic.hdr;
852 head = &tx_buffer->tx_head.tx_cts.tx.mic.head;
853 } else {
854 head = &tx_buffer->tx_head.tx_cts.tx.head;
855 }
856
857 /* Fill CTS */
858 return s_vFillCTSHead(pDevice, uDMAIdx, byPktType,
859 head, cbFrameSize, bNeedACK, wCurrentRate,
860 byFBOption);
861 }
862 } else if (byPktType == PK_TYPE_11A) {
863 if (need_mic) {
864 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
865 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
866 } else {
867 head = &tx_buffer->tx_head.tx_ab.tx.head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100868 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100869
Malcolm Priestley92928f12013-10-07 20:14:01 +0100870 if (need_rts) {
871 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
872 tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100873
Malcolm Priestley92928f12013-10-07 20:14:01 +0100874 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 2,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100875 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100876
Malcolm Priestley92928f12013-10-07 20:14:01 +0100877 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
878 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
879
880 /* Fill RTS */
881 return s_vFillRTSHead(pDevice, byPktType, head,
882 cbFrameSize, bNeedACK, psEthHeader,
883 wCurrentRate, byFBOption);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100884 } else {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100885 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
886 tx_head.tx_ab.ab;
887
888 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
889 PK_TYPE_11A, cbFrameSize,
890 wCurrentRate, bNeedACK);
891
892 return vnt_rxtx_datahead_a_fb(pDevice, byPktType,
893 wCurrentRate, &head->data_head_a_fb,
894 cbFrameSize, bNeedACK);
895 }
896 } else if (byPktType == PK_TYPE_11B) {
897 if (need_mic) {
898 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
899 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
900 } else {
901 head = &tx_buffer->tx_head.tx_ab.tx.head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100902 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100903
Malcolm Priestley92928f12013-10-07 20:14:01 +0100904 if (need_rts) {
905 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
906 tx_head.tx_ab.ab;
Malcolm Priestleya90186e2013-10-01 15:58:54 +0100907
Malcolm Priestley92928f12013-10-07 20:14:01 +0100908 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 0,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100909 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100910
Malcolm Priestley92928f12013-10-07 20:14:01 +0100911 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
912 PK_TYPE_11B, cbFrameSize, wCurrentRate,
913 bNeedACK);
914
915 /* Fill RTS */
916 return s_vFillRTSHead(pDevice, byPktType, head,
917 cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100918 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Malcolm Priestley92928f12013-10-07 20:14:01 +0100919 } else {
920 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
921 tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100922
Malcolm Priestley92928f12013-10-07 20:14:01 +0100923 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice,
924 PK_TYPE_11B, cbFrameSize,
925 wCurrentRate, bNeedACK);
Malcolm Priestleya90186e2013-10-01 15:58:54 +0100926
Malcolm Priestley92928f12013-10-07 20:14:01 +0100927 return vnt_rxtx_datahead_ab(pDevice, byPktType,
928 wCurrentRate, &head->data_head_ab,
929 cbFrameSize, bNeedACK);
930 }
Malcolm Priestleyc12dca02013-10-01 16:03:40 +0100931 }
932
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100933 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400934}
935/*
Andres Moreb902fbf2013-02-25 20:32:51 -0500936 u8 * pbyBuffer,//point to pTxBufHead
Andres More3eaca0d2013-02-25 20:32:52 -0500937 u16 wFragType,//00:Non-Frag, 01:Start, 02:Mid, 03:Last
Andres Morecc856e62010-05-17 21:34:01 -0300938 unsigned int cbFragmentSize,//Hdr+payoad+FCS
Forest Bond92b96792009-06-13 07:38:31 -0400939*/
940
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000941static int s_bPacketToWirelessUsb(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100942 struct vnt_tx_buffer *tx_buffer, int bNeedEncryption,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +0100943 u32 uSkbPacketLen, u32 uDMAIdx, struct ethhdr *psEthHeader,
944 u8 *pPacket, PSKeyItem pTransmitKey, u32 uNodeIndex, u16 wCurrentRate,
945 u32 *pcbHeaderLen, u32 *pcbTotalLen)
Forest Bond92b96792009-06-13 07:38:31 -0400946{
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100947 struct vnt_tx_fifo_head *pTxBufHead = &tx_buffer->fifo_head;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000948 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
949 u32 cbFrameSize, cbFrameBodySize;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000950 u32 cb802_1_H_len;
951 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbMACHdLen = 0;
952 u32 cbFCSlen = 4, cbMICHDR = 0;
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100953 int bNeedACK;
954 bool bRTS = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000955 u8 *pbyType, *pbyMacHdr, *pbyIVHead, *pbyPayloadHead, *pbyTxBufferAddr;
956 u8 abySNAP_RFC1042[ETH_ALEN] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
957 u8 abySNAP_Bridgetunnel[ETH_ALEN]
958 = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
959 u32 uDuration;
960 u32 cbHeaderLength = 0, uPadding = 0;
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +0100961 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000962 u8 byFBOption = AUTO_FB_NONE, byFragType;
963 u16 wTxBufSize;
Malcolm Priestley4235f722013-08-24 12:42:01 +0100964 u32 dwMICKey0, dwMICKey1, dwMIC_Priority;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000965 u32 *pdwMIC_L, *pdwMIC_R;
Andres Moree269fc22013-02-12 20:36:29 -0500966 int bSoftWEP = false;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100967
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +0100968 pMICHDR = NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400969
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000970 if (bNeedEncryption && pTransmitKey->pvKeyTable) {
Andres More4e9b5e22013-02-12 20:36:30 -0500971 if (((PSKeyTable)pTransmitKey->pvKeyTable)->bSoftWEP == true)
972 bSoftWEP = true; /* WEP 256 */
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000973 }
Forest Bond92b96792009-06-13 07:38:31 -0400974
Forest Bond92b96792009-06-13 07:38:31 -0400975 // Get pkt type
Andres Moreceb8c5d2013-03-18 20:33:49 -0500976 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Forest Bond92b96792009-06-13 07:38:31 -0400977 if (pDevice->dwDiagRefCount == 0) {
978 cb802_1_H_len = 8;
979 } else {
980 cb802_1_H_len = 2;
981 }
982 } else {
983 cb802_1_H_len = 0;
984 }
985
Charles Clément21ec51f2010-05-18 10:08:14 -0700986 cbFrameBodySize = uSkbPacketLen - ETH_HLEN + cb802_1_H_len;
Forest Bond92b96792009-06-13 07:38:31 -0400987
988 //Set packet type
Andres More3eaca0d2013-02-25 20:32:52 -0500989 pTxBufHead->wFIFOCtl |= (u16)(byPktType<<8);
Forest Bond92b96792009-06-13 07:38:31 -0400990
991 if (pDevice->dwDiagRefCount != 0) {
Andres Moree269fc22013-02-12 20:36:29 -0500992 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -0400993 pTxBufHead->wFIFOCtl = pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
994 } else { //if (pDevice->dwDiagRefCount != 0) {
Andres More22040bb2010-08-02 20:21:44 -0300995 if ((pDevice->eOPMode == OP_MODE_ADHOC) ||
996 (pDevice->eOPMode == OP_MODE_AP)) {
Andres Moreceb8c5d2013-03-18 20:33:49 -0500997 if (is_multicast_ether_addr(psEthHeader->h_dest)) {
Andres Moree269fc22013-02-12 20:36:29 -0500998 bNeedACK = false;
Andres More22040bb2010-08-02 20:21:44 -0300999 pTxBufHead->wFIFOCtl =
1000 pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1001 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001002 bNeedACK = true;
Andres More22040bb2010-08-02 20:21:44 -03001003 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1004 }
Forest Bond92b96792009-06-13 07:38:31 -04001005 }
1006 else {
1007 // MSDUs in Infra mode always need ACK
Andres More4e9b5e22013-02-12 20:36:30 -05001008 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001009 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1010 }
1011 } //if (pDevice->dwDiagRefCount != 0) {
1012
1013 pTxBufHead->wTimeStamp = DEFAULT_MSDU_LIFETIME_RES_64us;
1014
1015 //Set FIFOCTL_LHEAD
1016 if (pDevice->bLongHeader)
1017 pTxBufHead->wFIFOCtl |= FIFOCTL_LHEAD;
1018
Forest Bond92b96792009-06-13 07:38:31 -04001019 //Set FRAGCTL_MACHDCNT
1020 if (pDevice->bLongHeader) {
1021 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
1022 } else {
1023 cbMACHdLen = WLAN_HDR_ADDR3_LEN;
1024 }
Andres More3eaca0d2013-02-25 20:32:52 -05001025 pTxBufHead->wFragCtl |= (u16)(cbMACHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001026
1027 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001028 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001029 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1030 }
1031
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +01001032 /* Set Auto Fallback Ctl */
1033 if (wCurrentRate >= RATE_18M) {
1034 if (pDevice->byAutoFBCtrl == AUTO_FB_0) {
1035 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
1036
1037 pDevice->tx_rate_fb0 =
1038 wFB_Opt0[FB_RATE0][wCurrentRate - RATE_18M];
1039 pDevice->tx_rate_fb1 =
1040 wFB_Opt0[FB_RATE1][wCurrentRate - RATE_18M];
1041
1042 byFBOption = AUTO_FB_0;
1043 } else if (pDevice->byAutoFBCtrl == AUTO_FB_1) {
1044 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
1045 pDevice->tx_rate_fb0 =
1046 wFB_Opt1[FB_RATE0][wCurrentRate - RATE_18M];
1047 pDevice->tx_rate_fb1 =
1048 wFB_Opt1[FB_RATE1][wCurrentRate - RATE_18M];
1049
1050 byFBOption = AUTO_FB_1;
1051 }
1052 }
Forest Bond92b96792009-06-13 07:38:31 -04001053
Andres More4e9b5e22013-02-12 20:36:30 -05001054 if (bSoftWEP != true) {
Forest Bond92b96792009-06-13 07:38:31 -04001055 if ((bNeedEncryption) && (pTransmitKey != NULL)) { //WEP enabled
1056 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) { //WEP40 or WEP104
1057 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1058 }
1059 if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1060 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Tx Set wFragCtl == FRAGCTL_TKIP\n");
1061 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1062 }
1063 else if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) { //CCMP
1064 pTxBufHead->wFragCtl |= FRAGCTL_AES;
1065 }
1066 }
1067 }
1068
Forest Bond92b96792009-06-13 07:38:31 -04001069 if ((bNeedEncryption) && (pTransmitKey != NULL)) {
1070 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
1071 cbIVlen = 4;
1072 cbICVlen = 4;
1073 }
1074 else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1075 cbIVlen = 8;//IV+ExtIV
1076 cbMIClen = 8;
1077 cbICVlen = 4;
1078 }
1079 if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) {
1080 cbIVlen = 8;//RSN Header
1081 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001082 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001083 }
Andres Moree269fc22013-02-12 20:36:29 -05001084 if (bSoftWEP == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001085 //MAC Header should be padding 0 to DW alignment.
1086 uPadding = 4 - (cbMACHdLen%4);
1087 uPadding %= 4;
1088 }
1089 }
1090
1091 cbFrameSize = cbMACHdLen + cbIVlen + (cbFrameBodySize + cbMIClen) + cbICVlen + cbFCSlen;
1092
Andres Moree269fc22013-02-12 20:36:29 -05001093 if ( (bNeedACK == false) ||(cbFrameSize < pDevice->wRTSThreshold) ) {
1094 bRTS = false;
Forest Bond92b96792009-06-13 07:38:31 -04001095 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001096 bRTS = true;
Forest Bond92b96792009-06-13 07:38:31 -04001097 pTxBufHead->wFIFOCtl |= (FIFOCTL_RTS | FIFOCTL_LRETRY);
1098 }
1099
Andres Moreb902fbf2013-02-25 20:32:51 -05001100 pbyTxBufferAddr = (u8 *) &(pTxBufHead->adwTxKey[0]);
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001101 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
1102
Forest Bond92b96792009-06-13 07:38:31 -04001103 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1104 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001105 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001106 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001107 cbMICHDR + sizeof(struct vnt_rts_g);
Forest Bond92b96792009-06-13 07:38:31 -04001108 }
1109 else { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001110 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001111 cbMICHDR + sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001112 }
1113 } else {
1114 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001115 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001116 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestley5b852f52013-10-01 15:54:56 +01001117 cbMICHDR + sizeof(struct vnt_rts_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001118 }
Andres Moree269fc22013-02-12 20:36:29 -05001119 else if (bRTS == false) { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001120 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley5b852f52013-10-01 15:54:56 +01001121 cbMICHDR + sizeof(struct vnt_cts_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001122 }
1123 } // Auto Fall Back
1124 }
1125 else {//802.11a/b packet
1126 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001127 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001128 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley5634a5a2013-10-01 16:00:20 +01001129 cbMICHDR + sizeof(struct vnt_rts_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001130 }
Andres Moree269fc22013-02-12 20:36:29 -05001131 else if (bRTS == false) { //RTS_needless, no MICHDR
Malcolm Priestley976467d2013-08-16 23:44:04 +01001132 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001133 cbMICHDR + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001134 }
1135 } else {
1136 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001137 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001138 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +01001139 cbMICHDR + sizeof(struct vnt_rts_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001140 }
Andres Moree269fc22013-02-12 20:36:29 -05001141 else if (bRTS == false) { //RTS_needless
Malcolm Priestley976467d2013-08-16 23:44:04 +01001142 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001143 cbMICHDR + sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001144 }
1145 } // Auto Fall Back
1146 }
1147
Andres Moreb902fbf2013-02-25 20:32:51 -05001148 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderLength);
1149 pbyIVHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding);
1150 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001151
Forest Bond92b96792009-06-13 07:38:31 -04001152 //=========================
1153 // No Fragmentation
1154 //=========================
1155 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Fragmentation...\n");
1156 byFragType = FRAGCTL_NONFRAG;
1157 //uDMAIdx = TYPE_AC0DMA;
1158 //pTxBufHead = (PSTxBufHead) &(pTxBufHead->adwTxKey[0]);
1159
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001160 /* Fill FIFO, RrvTime, RTS and CTS */
1161 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
1162 tx_buffer, &pMICHDR, cbMICHDR,
1163 cbFrameSize, bNeedACK, uDMAIdx, psEthHeader, bRTS);
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01001164
Forest Bond92b96792009-06-13 07:38:31 -04001165 // Generate TX MAC Header
Andres More3eaca0d2013-02-25 20:32:52 -05001166 s_vGenerateMACHeader(pDevice, pbyMacHdr, (u16)uDuration, psEthHeader, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04001167 byFragType, uDMAIdx, 0);
1168
Andres More4e9b5e22013-02-12 20:36:30 -05001169 if (bNeedEncryption == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001170 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001171 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01001172 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001173
1174 if (pDevice->bEnableHostWEP) {
1175 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
1176 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
1177 }
1178 }
1179
1180 // 802.1H
Andres Moreceb8c5d2013-03-18 20:33:49 -05001181 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Andres More203e4612010-08-04 19:12:34 -03001182 if (pDevice->dwDiagRefCount == 0) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001183 if ((psEthHeader->h_proto == cpu_to_be16(ETH_P_IPX)) ||
1184 (psEthHeader->h_proto == cpu_to_le16(0xF380))) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001185 memcpy((u8 *) (pbyPayloadHead),
Andres More203e4612010-08-04 19:12:34 -03001186 abySNAP_Bridgetunnel, 6);
Forest Bond92b96792009-06-13 07:38:31 -04001187 } else {
Andres Moreb902fbf2013-02-25 20:32:51 -05001188 memcpy((u8 *) (pbyPayloadHead), &abySNAP_RFC1042[0], 6);
Forest Bond92b96792009-06-13 07:38:31 -04001189 }
Andres Moreb902fbf2013-02-25 20:32:51 -05001190 pbyType = (u8 *) (pbyPayloadHead + 6);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001191 memcpy(pbyType, &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001192 } else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001193 memcpy((u8 *) (pbyPayloadHead), &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001194
1195 }
1196
1197 }
1198
Forest Bond92b96792009-06-13 07:38:31 -04001199 if (pPacket != NULL) {
1200 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001201 memcpy((pbyPayloadHead + cb802_1_H_len),
Charles Clément21ec51f2010-05-18 10:08:14 -07001202 (pPacket + ETH_HLEN),
1203 uSkbPacketLen - ETH_HLEN
Forest Bond92b96792009-06-13 07:38:31 -04001204 );
1205
1206 } else {
1207 // while bRelayPacketSend psEthHeader is point to header+payload
Andres Moreb902fbf2013-02-25 20:32:51 -05001208 memcpy((pbyPayloadHead + cb802_1_H_len), ((u8 *)psEthHeader) + ETH_HLEN, uSkbPacketLen - ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001209 }
1210
Andres More4e9b5e22013-02-12 20:36:30 -05001211 if ((bNeedEncryption == true) && (pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
Forest Bond92b96792009-06-13 07:38:31 -04001212
1213 ///////////////////////////////////////////////////////////////////
1214
Malcolm Priestley14c5ef52013-01-17 23:19:37 +00001215 if (pDevice->vnt_mgmt.eAuthenMode == WMAC_AUTH_WPANONE) {
1216 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1217 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
1218 }
Forest Bond92b96792009-06-13 07:38:31 -04001219 else if ((pTransmitKey->dwKeyIndex & AUTHENTICATOR_KEY) != 0) {
Andres More52a7e642013-02-25 20:32:53 -05001220 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1221 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04001222 }
1223 else {
Andres More52a7e642013-02-25 20:32:53 -05001224 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[24]);
1225 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[28]);
Forest Bond92b96792009-06-13 07:38:31 -04001226 }
1227 // DO Software Michael
1228 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001229 MIC_vAppend((u8 *)&(psEthHeader->h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04001230 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05001231 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001232 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC KEY: %X, %X\n",
1233 dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04001234
1235 ///////////////////////////////////////////////////////////////////
1236
1237 //DBG_PRN_GRP12(("Length:%d, %d\n", cbFrameBodySize, uFromHDtoPLDLength));
1238 //for (ii = 0; ii < cbFrameBodySize; ii++) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001239 // DBG_PRN_GRP12(("%02x ", *((u8 *)((pbyPayloadHead + cb802_1_H_len) + ii))));
Forest Bond92b96792009-06-13 07:38:31 -04001240 //}
1241 //DBG_PRN_GRP12(("\n\n\n"));
1242
1243 MIC_vAppend(pbyPayloadHead, cbFrameBodySize);
1244
Andres More52a7e642013-02-25 20:32:53 -05001245 pdwMIC_L = (u32 *)(pbyPayloadHead + cbFrameBodySize);
1246 pdwMIC_R = (u32 *)(pbyPayloadHead + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04001247
1248 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
1249 MIC_vUnInit();
1250
Andres More4e9b5e22013-02-12 20:36:30 -05001251 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001252 *pdwMIC_L = 0;
1253 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001254 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04001255 }
1256 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
1257 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderLength, uPadding, cbIVlen);
1258 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%lX, %lX\n", *pdwMIC_L, *pdwMIC_R);
1259 }
1260
Andres More4e9b5e22013-02-12 20:36:30 -05001261 if (bSoftWEP == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001262
Andres More3eaca0d2013-02-25 20:32:52 -05001263 s_vSWencryption(pDevice, pTransmitKey, (pbyPayloadHead), (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04001264
Andres More4e9b5e22013-02-12 20:36:30 -05001265 } else if ( ((pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) && (bNeedEncryption == true)) ||
1266 ((pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) && (bNeedEncryption == true)) ||
1267 ((pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) && (bNeedEncryption == true)) ) {
Forest Bond92b96792009-06-13 07:38:31 -04001268 cbFrameSize -= cbICVlen;
1269 }
1270
Forest Bond92b96792009-06-13 07:38:31 -04001271 cbFrameSize -= cbFCSlen;
Forest Bond92b96792009-06-13 07:38:31 -04001272
1273 *pcbHeaderLen = cbHeaderLength;
1274 *pcbTotalLen = cbHeaderLength + cbFrameSize ;
1275
Forest Bond92b96792009-06-13 07:38:31 -04001276 //Set FragCtl in TxBufferHead
Andres More3eaca0d2013-02-25 20:32:52 -05001277 pTxBufHead->wFragCtl |= (u16)byFragType;
Forest Bond92b96792009-06-13 07:38:31 -04001278
Andres More4e9b5e22013-02-12 20:36:30 -05001279 return true;
Forest Bond92b96792009-06-13 07:38:31 -04001280
1281}
1282
Forest Bond92b96792009-06-13 07:38:31 -04001283/*+
1284 *
1285 * Description:
1286 * Translate 802.3 to 802.11 header
1287 *
1288 * Parameters:
1289 * In:
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001290 * pDevice - Pointer to adapter
Forest Bond92b96792009-06-13 07:38:31 -04001291 * dwTxBufferAddr - Transmit Buffer
1292 * pPacket - Packet from upper layer
1293 * cbPacketSize - Transmit Data Length
1294 * Out:
1295 * pcbHeadSize - Header size of MAC&Baseband control and 802.11 Header
1296 * pcbAppendPayload - size of append payload for 802.1H translation
1297 *
1298 * Return Value: none
1299 *
1300-*/
1301
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001302static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -05001303 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001304 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx)
Forest Bond92b96792009-06-13 07:38:31 -04001305{
Andres More1cac4a42013-03-18 20:33:50 -05001306 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyBufferAddr;
Forest Bond92b96792009-06-13 07:38:31 -04001307
Malcolm Priestleyc921cc82013-08-20 20:47:49 +01001308 pMACHeader->frame_control = TYPE_802_11_DATA;
Forest Bond92b96792009-06-13 07:38:31 -04001309
1310 if (pDevice->eOPMode == OP_MODE_AP) {
Andres More1cac4a42013-03-18 20:33:50 -05001311 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001312 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001313 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001314 memcpy(&(pMACHeader->addr2[0]), &(pDevice->abyBSSID[0]), ETH_ALEN);
1315 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001316 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001317 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001318 pMACHeader->frame_control |= FC_FROMDS;
Andres More9a0e7562010-04-13 21:54:48 -03001319 } else {
1320 if (pDevice->eOPMode == OP_MODE_ADHOC) {
Andres More1cac4a42013-03-18 20:33:50 -05001321 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001322 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001323 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001324 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001325 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001326 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001327 memcpy(&(pMACHeader->addr3[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001328 &(pDevice->abyBSSID[0]),
1329 ETH_ALEN);
1330 } else {
Andres More1cac4a42013-03-18 20:33:50 -05001331 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001332 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001333 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001334 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001335 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001336 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001337 memcpy(&(pMACHeader->addr1[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001338 &(pDevice->abyBSSID[0]),
1339 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001340 pMACHeader->frame_control |= FC_TODS;
Forest Bond92b96792009-06-13 07:38:31 -04001341 }
1342 }
1343
1344 if (bNeedEncrypt)
Andres More1cac4a42013-03-18 20:33:50 -05001345 pMACHeader->frame_control |= cpu_to_le16((u16)WLAN_SET_FC_ISWEP(1));
Forest Bond92b96792009-06-13 07:38:31 -04001346
Andres More1cac4a42013-03-18 20:33:50 -05001347 pMACHeader->duration_id = cpu_to_le16(wDuration);
Forest Bond92b96792009-06-13 07:38:31 -04001348
1349 if (pDevice->bLongHeader) {
1350 PWLAN_80211HDR_A4 pMACA4Header = (PWLAN_80211HDR_A4) pbyBufferAddr;
Andres More1cac4a42013-03-18 20:33:50 -05001351 pMACHeader->frame_control |= (FC_TODS | FC_FROMDS);
Jim Lieb3e362592009-08-12 14:54:11 -07001352 memcpy(pMACA4Header->abyAddr4, pDevice->abyBSSID, WLAN_ADDR_LEN);
Forest Bond92b96792009-06-13 07:38:31 -04001353 }
Andres More1cac4a42013-03-18 20:33:50 -05001354 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001355
1356 //Set FragNumber in Sequence Control
Andres More1cac4a42013-03-18 20:33:50 -05001357 pMACHeader->seq_ctrl |= cpu_to_le16((u16)uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -04001358
1359 if ((wFragType == FRAGCTL_ENDFRAG) || (wFragType == FRAGCTL_NONFRAG)) {
1360 pDevice->wSeqCounter++;
1361 if (pDevice->wSeqCounter > 0x0fff)
1362 pDevice->wSeqCounter = 0;
1363 }
1364
1365 if ((wFragType == FRAGCTL_STAFRAG) || (wFragType == FRAGCTL_MIDFRAG)) { //StartFrag or MidFrag
Andres More1cac4a42013-03-18 20:33:50 -05001366 pMACHeader->frame_control |= FC_MOREFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001367 }
1368}
1369
Forest Bond92b96792009-06-13 07:38:31 -04001370/*+
1371 *
1372 * Description:
1373 * Request instructs a MAC to transmit a 802.11 management packet through
1374 * the adapter onto the medium.
1375 *
1376 * Parameters:
1377 * In:
1378 * hDeviceContext - Pointer to the adapter
1379 * pPacket - A pointer to a descriptor for the packet to transmit
1380 * Out:
1381 * none
1382 *
Andres Moree269fc22013-02-12 20:36:29 -05001383 * Return Value: CMD_STATUS_PENDING if MAC Tx resource available; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04001384 *
1385-*/
1386
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001387CMD_STATUS csMgmt_xmit(struct vnt_private *pDevice,
1388 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001389{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001390 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001391 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001392 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001393 struct vnt_tx_fifo_head *pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001394 struct ieee80211_hdr *pMACHeader;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001395 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001396 u8 byPktType, *pbyTxBufferAddr;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001397 struct vnt_mic_hdr *pMICHDR = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001398 u32 uDuration, cbReqCount, cbHeaderSize, cbFrameBodySize, cbFrameSize;
Andres Moree269fc22013-02-12 20:36:29 -05001399 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001400 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1401 u32 uPadding = 0;
1402 u16 wTxBufSize;
1403 u32 cbMacHdLen;
1404 u16 wCurrentRate = RATE_1M;
Forest Bond92b96792009-06-13 07:38:31 -04001405
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001406 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001407
1408 if (NULL == pContext) {
1409 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1410 return CMD_STATUS_RESOURCES;
1411 }
1412
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001413 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Forest Bond92b96792009-06-13 07:38:31 -04001414 cbFrameBodySize = pPacket->cbPayloadLen;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001415 pTxBufHead = &pTX_Buffer->fifo_head;
1416 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1417 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001418
1419 if (pDevice->byBBType == BB_TYPE_11A) {
1420 wCurrentRate = RATE_6M;
1421 byPktType = PK_TYPE_11A;
1422 } else {
1423 wCurrentRate = RATE_1M;
1424 byPktType = PK_TYPE_11B;
1425 }
1426
1427 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1428 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1429 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1430 // to set power here.
1431 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1432 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1433 } else {
1434 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1435 }
1436 pDevice->wCurrentRate = wCurrentRate;
1437
Forest Bond92b96792009-06-13 07:38:31 -04001438 //Set packet type
1439 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1440 pTxBufHead->wFIFOCtl = 0;
1441 }
1442 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1443 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1444 }
1445 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1446 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1447 }
1448 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1449 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1450 }
1451
1452 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1453 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1454
Andres More22040bb2010-08-02 20:21:44 -03001455 if (is_multicast_ether_addr(pPacket->p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001456 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001457 }
1458 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001459 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001460 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1461 };
1462
1463 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1464 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1465
1466 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1467 //Set Preamble type always long
1468 //pDevice->byPreambleType = PREAMBLE_LONG;
1469 // probe-response don't retry
1470 //if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001471 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001472 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1473 //}
1474 }
1475
1476 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1477
1478 if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001479 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001480 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1481 } else {
1482 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1483 }
1484
1485 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001486 pTxBufHead->wFragCtl |= cpu_to_le16((u16)(cbMacHdLen << 10));
Forest Bond92b96792009-06-13 07:38:31 -04001487
1488 // Notes:
1489 // Although spec says MMPDU can be fragmented; In most case,
1490 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001491 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001492
1493 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
1494 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1495 cbIVlen = 4;
1496 cbICVlen = 4;
1497 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1498 }
1499 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1500 cbIVlen = 8;//IV+ExtIV
1501 cbMIClen = 8;
1502 cbICVlen = 4;
1503 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1504 //We need to get seed here for filling TxKey entry.
1505 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1506 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1507 }
1508 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1509 cbIVlen = 8;//RSN Header
1510 cbICVlen = 8;//MIC
1511 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001512 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001513 }
1514 //MAC Header should be padding 0 to DW alignment.
1515 uPadding = 4 - (cbMacHdLen%4);
1516 uPadding %= 4;
1517 }
1518
1519 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen;
1520
1521 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001522 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001523 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1524 }
1525 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1526
1527 //Set RrvTime/RTS/CTS Buffer
1528 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley4f990052013-08-16 23:38:57 +01001529 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001530 sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001531 }
1532 else { // 802.11a/b packet
Malcolm Priestley976467d2013-08-16 23:44:04 +01001533 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001534 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001535 }
1536
Andres Moreceb8c5d2013-03-18 20:33:49 -05001537 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001538 &(pPacket->p80211Header->sA3.abyAddr1[0]),
1539 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001540 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001541 &(pPacket->p80211Header->sA3.abyAddr2[0]),
1542 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001543 //=========================
1544 // No Fragmentation
1545 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001546 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001547
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001548 /* Fill FIFO,RrvTime,RTS,and CTS */
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001549 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001550 pTX_Buffer, &pMICHDR, 0,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001551 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001552
Andres More1cac4a42013-03-18 20:33:50 -05001553 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001554
1555 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + cbFrameBodySize;
1556
1557 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001558 u8 * pbyIVHead;
1559 u8 * pbyPayloadHead;
1560 u8 * pbyBSSID;
Forest Bond92b96792009-06-13 07:38:31 -04001561 PSKeyItem pTransmitKey = NULL;
1562
Andres Moreb902fbf2013-02-25 20:32:51 -05001563 pbyIVHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding);
1564 pbyPayloadHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001565 do {
1566 if ((pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) &&
Andres More4e9b5e22013-02-12 20:36:30 -05001567 (pDevice->bLinkPass == true)) {
Forest Bond92b96792009-06-13 07:38:31 -04001568 pbyBSSID = pDevice->abyBSSID;
1569 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001570 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001571 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001572 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001573 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1574 break;
1575 }
1576 } else {
1577 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get PTK.\n");
1578 break;
1579 }
1580 }
1581 // get group key
1582 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001583 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001584 pTransmitKey = NULL;
1585 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"KEY is NULL. OP Mode[%d]\n", pDevice->eOPMode);
1586 } else {
1587 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1588 }
Andres Moree269fc22013-02-12 20:36:29 -05001589 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001590 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001591 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Andres More3eaca0d2013-02-25 20:32:52 -05001592 (u8 *)pMACHeader, (u16)cbFrameBodySize, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001593
Jim Lieb3e362592009-08-12 14:54:11 -07001594 memcpy(pMACHeader, pPacket->p80211Header, cbMacHdLen);
Andres Moreb902fbf2013-02-25 20:32:51 -05001595 memcpy(pbyPayloadHead, ((u8 *)(pPacket->p80211Header) + cbMacHdLen),
Forest Bond92b96792009-06-13 07:38:31 -04001596 cbFrameBodySize);
1597 }
1598 else {
1599 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001600 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001601 }
1602
Andres More1cac4a42013-03-18 20:33:50 -05001603 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001604 pDevice->wSeqCounter++ ;
1605 if (pDevice->wSeqCounter > 0x0fff)
1606 pDevice->wSeqCounter = 0;
1607
1608 if (bIsPSPOLL) {
1609 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001610 // of FIFO control header.
Forest Bond92b96792009-06-13 07:38:31 -04001611 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
1612 // in the same place of other packet's Duration-field).
1613 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001614 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001615 struct vnt_tx_datahead_g *data_head = &pTX_Buffer->tx_head.
1616 tx_cts.tx.head.cts_g.data_head;
1617 data_head->wDuration_a =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001618 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001619 data_head->wDuration_b =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001620 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1621 } else {
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01001622 struct vnt_tx_datahead_ab *data_head = &pTX_Buffer->tx_head.
1623 tx_ab.tx.head.data_head_ab;
1624 data_head->wDuration =
Malcolm Priestley558becf2013-08-16 23:50:32 +01001625 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1626 }
Forest Bond92b96792009-06-13 07:38:31 -04001627 }
1628
Andres More3eaca0d2013-02-25 20:32:52 -05001629 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05001630 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001631 pTX_Buffer->byType = 0x00;
1632
1633 pContext->pPacket = NULL;
1634 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001635 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001636
Andres More1cac4a42013-03-18 20:33:50 -05001637 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001638 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1639 &pMACHeader->addr1[0], (u16)cbFrameSize,
1640 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001641 }
1642 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001643 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1644 &pMACHeader->addr3[0], (u16)cbFrameSize,
1645 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001646 }
1647
1648 PIPEnsSendBulkOut(pDevice,pContext);
1649 return CMD_STATUS_PENDING;
1650}
1651
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001652CMD_STATUS csBeacon_xmit(struct vnt_private *pDevice,
1653 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001654{
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001655 struct vnt_beacon_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001656 u32 cbFrameSize = pPacket->cbMPDULen + WLAN_FCS_LEN;
1657 u32 cbHeaderSize = 0;
1658 u16 wTxBufSize = sizeof(STxShortBufHead);
1659 PSTxShortBufHead pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001660 struct ieee80211_hdr *pMACHeader;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001661 struct vnt_tx_datahead_ab *pTxDataHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001662 u16 wCurrentRate;
1663 u32 cbFrameBodySize;
1664 u32 cbReqCount;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001665 u8 *pbyTxBufferAddr;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001666 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001667 CMD_STATUS status;
Forest Bond92b96792009-06-13 07:38:31 -04001668
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001669 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001670 if (NULL == pContext) {
1671 status = CMD_STATUS_RESOURCES;
1672 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1673 return status ;
1674 }
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001675
1676 pTX_Buffer = (struct vnt_beacon_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001677 pbyTxBufferAddr = (u8 *)&(pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001678
1679 cbFrameBodySize = pPacket->cbPayloadLen;
1680
1681 pTxBufHead = (PSTxShortBufHead) pbyTxBufferAddr;
1682 wTxBufSize = sizeof(STxShortBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001683
1684 if (pDevice->byBBType == BB_TYPE_11A) {
1685 wCurrentRate = RATE_6M;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001686 pTxDataHead = (struct vnt_tx_datahead_ab *)
1687 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001688 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001689 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11A,
1690 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001691 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001692 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001693 PK_TYPE_11A, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001694 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001695 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001696 } else {
1697 wCurrentRate = RATE_1M;
1698 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001699 pTxDataHead = (struct vnt_tx_datahead_ab *)
1700 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001701 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001702 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11B,
1703 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001704 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001705 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001706 PK_TYPE_11B, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001707 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001708 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001709 }
1710
1711 //Generate Beacon Header
Andres More1cac4a42013-03-18 20:33:50 -05001712 pMACHeader = (struct ieee80211_hdr *)(pbyTxBufferAddr + cbHeaderSize);
Jim Lieb3e362592009-08-12 14:54:11 -07001713 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001714
Andres More1cac4a42013-03-18 20:33:50 -05001715 pMACHeader->duration_id = 0;
1716 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001717 pDevice->wSeqCounter++ ;
1718 if (pDevice->wSeqCounter > 0x0fff)
1719 pDevice->wSeqCounter = 0;
1720
1721 cbReqCount = cbHeaderSize + WLAN_HDR_ADDR3_LEN + cbFrameBodySize;
1722
Andres More3eaca0d2013-02-25 20:32:52 -05001723 pTX_Buffer->wTxByteCount = (u16)cbReqCount;
Andres Moreb902fbf2013-02-25 20:32:51 -05001724 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001725 pTX_Buffer->byType = 0x01;
1726
1727 pContext->pPacket = NULL;
1728 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001729 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001730
1731 PIPEnsSendBulkOut(pDevice,pContext);
1732 return CMD_STATUS_PENDING;
1733
1734}
1735
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001736void vDMA0_tx_80211(struct vnt_private *pDevice, struct sk_buff *skb)
1737{
1738 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001739 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001740 struct vnt_tx_fifo_head *pTxBufHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001741 u8 byPktType;
1742 u8 *pbyTxBufferAddr;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001743 u32 uDuration, cbReqCount;
Andres More1cac4a42013-03-18 20:33:50 -05001744 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001745 u32 cbHeaderSize, cbFrameBodySize;
Andres Moree269fc22013-02-12 20:36:29 -05001746 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001747 u32 cbFrameSize;
1748 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1749 u32 uPadding = 0;
1750 u32 cbMICHDR = 0, uLength = 0;
1751 u32 dwMICKey0, dwMICKey1;
1752 u32 dwMIC_Priority;
1753 u32 *pdwMIC_L, *pdwMIC_R;
1754 u16 wTxBufSize;
1755 u32 cbMacHdLen;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001756 struct ethhdr sEthHeader;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001757 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001758 u32 wCurrentRate = RATE_1M;
1759 PUWLAN_80211HDR p80211Header;
1760 u32 uNodeIndex = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001761 int bNodeExist = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001762 SKeyItem STempKey;
1763 PSKeyItem pTransmitKey = NULL;
1764 u8 *pbyIVHead, *pbyPayloadHead, *pbyMacHdr;
1765 u32 cbExtSuppRate = 0;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001766 struct vnt_usb_send_context *pContext;
Forest Bond92b96792009-06-13 07:38:31 -04001767
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +01001768 pMICHDR = NULL;
Forest Bond92b96792009-06-13 07:38:31 -04001769
1770 if(skb->len <= WLAN_HDR_ADDR3_LEN) {
1771 cbFrameBodySize = 0;
1772 }
1773 else {
1774 cbFrameBodySize = skb->len - WLAN_HDR_ADDR3_LEN;
1775 }
1776 p80211Header = (PUWLAN_80211HDR)skb->data;
1777
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001778 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001779
1780 if (NULL == pContext) {
1781 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0 TX...NO CONTEXT!\n");
1782 dev_kfree_skb_irq(skb);
1783 return ;
1784 }
1785
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001786 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001787 pTxBufHead = &pTX_Buffer->fifo_head;
1788 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1789 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001790
1791 if (pDevice->byBBType == BB_TYPE_11A) {
1792 wCurrentRate = RATE_6M;
1793 byPktType = PK_TYPE_11A;
1794 } else {
1795 wCurrentRate = RATE_1M;
1796 byPktType = PK_TYPE_11B;
1797 }
1798
1799 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1800 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1801 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1802 // to set power here.
1803 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1804 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1805 } else {
1806 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1807 }
1808
1809 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"vDMA0_tx_80211: p80211Header->sA3.wFrameCtl = %x \n", p80211Header->sA3.wFrameCtl);
1810
1811 //Set packet type
1812 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1813 pTxBufHead->wFIFOCtl = 0;
1814 }
1815 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1816 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1817 }
1818 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1819 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1820 }
1821 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1822 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1823 }
1824
1825 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1826 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1827
Andres More22040bb2010-08-02 20:21:44 -03001828 if (is_multicast_ether_addr(p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001829 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001830 if (pDevice->bEnableHostWEP) {
1831 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05001832 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001833 }
Forest Bond92b96792009-06-13 07:38:31 -04001834 }
1835 else {
1836 if (pDevice->bEnableHostWEP) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001837 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(p80211Header->sA3.abyAddr1), &uNodeIndex))
Andres More4e9b5e22013-02-12 20:36:30 -05001838 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001839 }
Andres More4e9b5e22013-02-12 20:36:30 -05001840 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001841 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1842 };
1843
1844 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1845 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1846
1847 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1848 //Set Preamble type always long
1849 //pDevice->byPreambleType = PREAMBLE_LONG;
1850
1851 // probe-response don't retry
1852 //if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001853 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001854 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1855 //}
1856 }
1857
1858 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1859
1860 if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001861 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001862 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1863 } else {
1864 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1865 }
1866
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001867 // hostapd daemon ext support rate patch
Forest Bond92b96792009-06-13 07:38:31 -04001868 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1869
1870 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0) {
1871 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN;
1872 }
1873
1874 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0) {
1875 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN;
1876 }
1877
1878 if (cbExtSuppRate >0) {
1879 cbFrameBodySize = WLAN_ASSOCRESP_OFF_SUPP_RATES;
1880 }
1881 }
1882
Forest Bond92b96792009-06-13 07:38:31 -04001883 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001884 pTxBufHead->wFragCtl |= cpu_to_le16((u16)cbMacHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001885
1886 // Notes:
1887 // Although spec says MMPDU can be fragmented; In most case,
1888 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001889 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001890
Forest Bond92b96792009-06-13 07:38:31 -04001891 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1892 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1893 cbIVlen = 4;
1894 cbICVlen = 4;
1895 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1896 }
1897 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1898 cbIVlen = 8;//IV+ExtIV
1899 cbMIClen = 8;
1900 cbICVlen = 4;
1901 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1902 //We need to get seed here for filling TxKey entry.
1903 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1904 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1905 }
1906 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1907 cbIVlen = 8;//RSN Header
1908 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001909 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001910 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001911 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001912 }
1913 //MAC Header should be padding 0 to DW alignment.
1914 uPadding = 4 - (cbMacHdLen%4);
1915 uPadding %= 4;
1916 }
1917
1918 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen + cbExtSuppRate;
1919
1920 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001921 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001922 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1923 }
1924 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1925
Forest Bond92b96792009-06-13 07:38:31 -04001926 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley4f990052013-08-16 23:38:57 +01001927 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001928 sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001929
1930 }
1931 else {//802.11a/b packet
Malcolm Priestley976467d2013-08-16 23:44:04 +01001932 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001933 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001934 }
Andres Moreceb8c5d2013-03-18 20:33:49 -05001935 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001936 &(p80211Header->sA3.abyAddr1[0]),
1937 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001938 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001939 &(p80211Header->sA3.abyAddr2[0]),
1940 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001941 //=========================
1942 // No Fragmentation
1943 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001944 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001945
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001946 /* Fill FIFO,RrvTime,RTS,and CTS */
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001947 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001948 pTX_Buffer, &pMICHDR, cbMICHDR,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001949 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001950
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +01001951 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001952
1953 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + (cbFrameBodySize + cbMIClen) + cbExtSuppRate;
1954
Andres Moreb902fbf2013-02-25 20:32:51 -05001955 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderSize);
1956 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding + cbIVlen);
1957 pbyIVHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding);
Forest Bond92b96792009-06-13 07:38:31 -04001958
1959 // Copy the Packet into a tx Buffer
1960 memcpy(pbyMacHdr, skb->data, cbMacHdLen);
1961
1962 // version set to 0, patch for hostapd deamon
Andres More1cac4a42013-03-18 20:33:50 -05001963 pMACHeader->frame_control &= cpu_to_le16(0xfffc);
Forest Bond92b96792009-06-13 07:38:31 -04001964 memcpy(pbyPayloadHead, (skb->data + cbMacHdLen), cbFrameBodySize);
1965
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001966 // replace support rate, patch for hostapd daemon( only support 11M)
Forest Bond92b96792009-06-13 07:38:31 -04001967 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1968 if (cbExtSuppRate != 0) {
1969 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0)
1970 memcpy((pbyPayloadHead + cbFrameBodySize),
1971 pMgmt->abyCurrSuppRates,
1972 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN
1973 );
1974 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0)
1975 memcpy((pbyPayloadHead + cbFrameBodySize) + ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN,
1976 pMgmt->abyCurrExtSuppRates,
1977 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN
1978 );
1979 }
1980 }
1981
1982 // Set wep
1983 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1984
1985 if (pDevice->bEnableHostWEP) {
1986 pTransmitKey = &STempKey;
1987 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
1988 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
1989 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
1990 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
1991 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
1992 memcpy(pTransmitKey->abyKey,
1993 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
1994 pTransmitKey->uKeyLength
1995 );
1996 }
1997
1998 if ((pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
1999
Andres More52a7e642013-02-25 20:32:53 -05002000 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
2001 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04002002
2003 // DO Software Michael
2004 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002005 MIC_vAppend((u8 *)&(sEthHeader.h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04002006 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05002007 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002008 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0_tx_8021:MIC KEY:"\
2009 " %X, %X\n", dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04002010
2011 uLength = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen;
2012
2013 MIC_vAppend((pbyTxBufferAddr + uLength), cbFrameBodySize);
2014
Andres More52a7e642013-02-25 20:32:53 -05002015 pdwMIC_L = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize);
2016 pdwMIC_R = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04002017
2018 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
2019 MIC_vUnInit();
2020
Andres More4e9b5e22013-02-12 20:36:30 -05002021 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002022 *pdwMIC_L = 0;
2023 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05002024 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04002025 }
2026
2027 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
2028 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderSize, uPadding, cbIVlen);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002029 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%x, %x\n",
2030 *pdwMIC_L, *pdwMIC_R);
Forest Bond92b96792009-06-13 07:38:31 -04002031
2032 }
2033
Andres Moreb902fbf2013-02-25 20:32:51 -05002034 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01002035 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04002036
2037 if (pDevice->bEnableHostWEP) {
2038 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
2039 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
2040 }
2041
2042 if ((pDevice->byLocalID <= REV_ID_VT3253_A1)) {
Andres More3eaca0d2013-02-25 20:32:52 -05002043 s_vSWencryption(pDevice, pTransmitKey, pbyPayloadHead, (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04002044 }
2045 }
2046
Andres More1cac4a42013-03-18 20:33:50 -05002047 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04002048 pDevice->wSeqCounter++ ;
2049 if (pDevice->wSeqCounter > 0x0fff)
2050 pDevice->wSeqCounter = 0;
2051
Forest Bond92b96792009-06-13 07:38:31 -04002052 if (bIsPSPOLL) {
2053 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
2054 // of FIFO control header.
2055 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
2056 // in the same place of other packet's Duration-field).
2057 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002058 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestley78363fd2013-10-01 15:52:16 +01002059 struct vnt_tx_datahead_g *data_head = &pTX_Buffer->tx_head.
2060 tx_cts.tx.head.cts_g.data_head;
2061 data_head->wDuration_a =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002062 cpu_to_le16(p80211Header->sA2.wDurationID);
Malcolm Priestley78363fd2013-10-01 15:52:16 +01002063 data_head->wDuration_b =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002064 cpu_to_le16(p80211Header->sA2.wDurationID);
2065 } else {
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01002066 struct vnt_tx_datahead_ab *data_head = &pTX_Buffer->tx_head.
2067 tx_ab.tx.head.data_head_ab;
2068 data_head->wDuration =
Malcolm Priestley558becf2013-08-16 23:50:32 +01002069 cpu_to_le16(p80211Header->sA2.wDurationID);
2070 }
Forest Bond92b96792009-06-13 07:38:31 -04002071 }
2072
Andres More3eaca0d2013-02-25 20:32:52 -05002073 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05002074 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04002075 pTX_Buffer->byType = 0x00;
2076
2077 pContext->pPacket = skb;
2078 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002079 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002080
Andres More1cac4a42013-03-18 20:33:50 -05002081 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002082 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2083 &pMACHeader->addr1[0], (u16)cbFrameSize,
2084 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002085 }
2086 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002087 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2088 &pMACHeader->addr3[0], (u16)cbFrameSize,
2089 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002090 }
2091 PIPEnsSendBulkOut(pDevice,pContext);
2092 return ;
2093
2094}
2095
Forest Bond92b96792009-06-13 07:38:31 -04002096//TYPE_AC0DMA data tx
2097/*
2098 * Description:
2099 * Tx packet via AC0DMA(DMA1)
2100 *
2101 * Parameters:
2102 * In:
2103 * pDevice - Pointer to the adapter
2104 * skb - Pointer to tx skb packet
2105 * Out:
2106 * void
2107 *
2108 * Return Value: NULL
2109 */
2110
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002111int nsDMA_tx_packet(struct vnt_private *pDevice,
2112 u32 uDMAIdx, struct sk_buff *skb)
Forest Bond92b96792009-06-13 07:38:31 -04002113{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002114 struct net_device_stats *pStats = &pDevice->stats;
2115 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002116 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002117 u32 BytesToWrite = 0, uHeaderLen = 0;
2118 u32 uNodeIndex = 0;
2119 u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
2120 u16 wAID;
2121 u8 byPktType;
Andres Moree269fc22013-02-12 20:36:29 -05002122 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002123 PSKeyItem pTransmitKey = NULL;
2124 SKeyItem STempKey;
2125 int ii;
Andres Moree269fc22013-02-12 20:36:29 -05002126 int bTKIP_UseGTK = false;
2127 int bNeedDeAuth = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002128 u8 *pbyBSSID;
Andres Moree269fc22013-02-12 20:36:29 -05002129 int bNodeExist = false;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002130 struct vnt_usb_send_context *pContext;
Andres Moredfdcc422013-02-12 20:36:28 -05002131 bool fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002132 u32 status;
2133 u16 wKeepRate = pDevice->wCurrentRate;
Andres Moree269fc22013-02-12 20:36:29 -05002134 int bTxeapol_key = false;
Forest Bond92b96792009-06-13 07:38:31 -04002135
Forest Bond92b96792009-06-13 07:38:31 -04002136 if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
2137
2138 if (pDevice->uAssocCount == 0) {
2139 dev_kfree_skb_irq(skb);
2140 return 0;
2141 }
2142
Andres Moreb902fbf2013-02-25 20:32:51 -05002143 if (is_multicast_ether_addr((u8 *)(skb->data))) {
Forest Bond92b96792009-06-13 07:38:31 -04002144 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05002145 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002146 if (pMgmt->sNodeDBTable[0].bPSEnable) {
2147
2148 skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skb);
2149 pMgmt->sNodeDBTable[0].wEnQueueCnt++;
2150 // set tx map
2151 pMgmt->abyPSTxMap[0] |= byMask[0];
2152 return 0;
2153 }
Masanari Iida93184692012-08-13 21:21:50 +09002154 // multicast/broadcast data rate
Forest Bond92b96792009-06-13 07:38:31 -04002155
2156 if (pDevice->byBBType != BB_TYPE_11A)
2157 pDevice->wCurrentRate = RATE_2M;
2158 else
2159 pDevice->wCurrentRate = RATE_24M;
2160 // long preamble type
2161 pDevice->byPreambleType = PREAMBLE_SHORT;
2162
2163 }else {
2164
Andres Moreb902fbf2013-02-25 20:32:51 -05002165 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(skb->data), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002166
2167 if (pMgmt->sNodeDBTable[uNodeIndex].bPSEnable) {
2168
2169 skb_queue_tail(&pMgmt->sNodeDBTable[uNodeIndex].sTxPSQueue, skb);
2170
2171 pMgmt->sNodeDBTable[uNodeIndex].wEnQueueCnt++;
2172 // set tx map
2173 wAID = pMgmt->sNodeDBTable[uNodeIndex].wAID;
2174 pMgmt->abyPSTxMap[wAID >> 3] |= byMask[wAID & 7];
2175 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set:pMgmt->abyPSTxMap[%d]= %d\n",
2176 (wAID >> 3), pMgmt->abyPSTxMap[wAID >> 3]);
2177
2178 return 0;
2179 }
2180 // AP rate decided from node
2181 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2182 // tx preamble decided from node
2183
2184 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2185 pDevice->byPreambleType = pDevice->byShortPreamble;
2186
2187 }else {
2188 pDevice->byPreambleType = PREAMBLE_LONG;
2189 }
Andres More4e9b5e22013-02-12 20:36:30 -05002190 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002191 }
2192 }
2193
Andres Moree269fc22013-02-12 20:36:29 -05002194 if (bNodeExist == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002195 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Unknown STA not found in node DB \n");
2196 dev_kfree_skb_irq(skb);
2197 return 0;
2198 }
2199 }
2200
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002201 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002202
2203 if (pContext == NULL) {
2204 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG" pContext == NULL\n");
2205 dev_kfree_skb_irq(skb);
2206 return STATUS_RESOURCES;
2207 }
2208
Andres Moreceb8c5d2013-03-18 20:33:49 -05002209 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)(skb->data), ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002210
2211//mike add:station mode check eapol-key challenge--->
2212{
Andres Moreb902fbf2013-02-25 20:32:51 -05002213 u8 Protocol_Version; //802.1x Authentication
2214 u8 Packet_Type; //802.1x Authentication
2215 u8 Descriptor_type;
Andres More3eaca0d2013-02-25 20:32:52 -05002216 u16 Key_info;
Forest Bond92b96792009-06-13 07:38:31 -04002217
Charles Clément21ec51f2010-05-18 10:08:14 -07002218 Protocol_Version = skb->data[ETH_HLEN];
2219 Packet_Type = skb->data[ETH_HLEN+1];
2220 Descriptor_type = skb->data[ETH_HLEN+1+1+2];
2221 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 -05002222 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002223 /* 802.1x OR eapol-key challenge frame transfer */
2224 if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
2225 (Packet_Type == 3)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002226 bTxeapol_key = true;
Forest Bond92b96792009-06-13 07:38:31 -04002227 if(!(Key_info & BIT3) && //WPA or RSN group-key challenge
2228 (Key_info & BIT8) && (Key_info & BIT9)) { //send 2/2 key
2229 if(Descriptor_type==254) {
Andres More4e9b5e22013-02-12 20:36:30 -05002230 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002231 PRINT_K("WPA ");
2232 }
2233 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002234 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002235 PRINT_K("WPA2(re-keying) ");
2236 }
2237 PRINT_K("Authentication completed!!\n");
2238 }
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002239 else if((Key_info & BIT3) && (Descriptor_type==2) && //RSN pairwise-key challenge
Forest Bond92b96792009-06-13 07:38:31 -04002240 (Key_info & BIT8) && (Key_info & BIT9)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002241 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002242 PRINT_K("WPA2 Authentication completed!!\n");
2243 }
2244 }
2245 }
2246}
2247//mike add:station mode check eapol-key challenge<---
2248
Andres More4e9b5e22013-02-12 20:36:30 -05002249 if (pDevice->bEncryptionEnable == true) {
2250 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002251 // get Transmit key
2252 do {
2253 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) &&
2254 (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2255 pbyBSSID = pDevice->abyBSSID;
2256 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05002257 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002258 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05002259 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
2260 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002261 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2262 break;
2263 }
2264 } else {
2265 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get PTK.\n");
2266 break;
2267 }
2268 }else if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002269 /* TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1 */
2270 pbyBSSID = pDevice->sTxEthHeader.h_dest;
Forest Bond92b96792009-06-13 07:38:31 -04002271 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS Serach Key: \n");
2272 for (ii = 0; ii< 6; ii++)
2273 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"%x \n", *(pbyBSSID+ii));
2274 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"\n");
2275
2276 // get pairwise key
Andres More4e9b5e22013-02-12 20:36:30 -05002277 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == true)
Forest Bond92b96792009-06-13 07:38:31 -04002278 break;
2279 }
2280 // get group key
2281 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002282 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002283 pTransmitKey = NULL;
2284 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
2285 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2286 }
2287 else
2288 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"NOT IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2289 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05002290 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002291 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2292 }
Andres Moree269fc22013-02-12 20:36:29 -05002293 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04002294 }
2295
2296 if (pDevice->bEnableHostWEP) {
2297 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"acdma0: STA index %d\n", uNodeIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002298 if (pDevice->bEncryptionEnable == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002299 pTransmitKey = &STempKey;
2300 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2301 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2302 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2303 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2304 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2305 memcpy(pTransmitKey->abyKey,
2306 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2307 pTransmitKey->uKeyLength
2308 );
2309 }
2310 }
2311
Andres Moreb902fbf2013-02-25 20:32:51 -05002312 byPktType = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002313
2314 if (pDevice->bFixRate) {
2315 if (pDevice->byBBType == BB_TYPE_11B) {
2316 if (pDevice->uConnectionRate >= RATE_11M) {
2317 pDevice->wCurrentRate = RATE_11M;
2318 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002319 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002320 }
2321 } else {
2322 if ((pDevice->byBBType == BB_TYPE_11A) &&
2323 (pDevice->uConnectionRate <= RATE_6M)) {
2324 pDevice->wCurrentRate = RATE_6M;
2325 } else {
2326 if (pDevice->uConnectionRate >= RATE_54M)
2327 pDevice->wCurrentRate = RATE_54M;
2328 else
Andres More3eaca0d2013-02-25 20:32:52 -05002329 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002330 }
2331 }
2332 }
2333 else {
2334 if (pDevice->eOPMode == OP_MODE_ADHOC) {
2335 // Adhoc Tx rate decided from node DB
Andres Moreceb8c5d2013-03-18 20:33:49 -05002336 if (is_multicast_ether_addr(pDevice->sTxEthHeader.h_dest)) {
Forest Bond92b96792009-06-13 07:38:31 -04002337 // Multicast use highest data rate
2338 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2339 // preamble type
2340 pDevice->byPreambleType = pDevice->byShortPreamble;
2341 }
2342 else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002343 if (BSSbIsSTAInNodeDB(pDevice, &(pDevice->sTxEthHeader.h_dest[0]), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002344 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2345 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2346 pDevice->byPreambleType = pDevice->byShortPreamble;
2347
2348 }
2349 else {
2350 pDevice->byPreambleType = PREAMBLE_LONG;
2351 }
2352 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Found Node Index is [%d] Tx Data Rate:[%d]\n",uNodeIndex, pDevice->wCurrentRate);
2353 }
2354 else {
2355 if (pDevice->byBBType != BB_TYPE_11A)
2356 pDevice->wCurrentRate = RATE_2M;
2357 else
2358 pDevice->wCurrentRate = RATE_24M; // refer to vMgrCreateOwnIBSS()'s
2359 // abyCurrExtSuppRates[]
2360 pDevice->byPreambleType = PREAMBLE_SHORT;
2361 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Not Found Node use highest basic Rate.....\n");
2362 }
2363 }
2364 }
2365 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) {
2366 // Infra STA rate decided from AP Node, index = 0
2367 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2368 }
2369 }
2370
Andres Moreceb8c5d2013-03-18 20:33:49 -05002371 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002372 if (pDevice->byBBType != BB_TYPE_11A) {
2373 pDevice->wCurrentRate = RATE_1M;
2374 pDevice->byACKRate = RATE_1M;
2375 pDevice->byTopCCKBasicRate = RATE_1M;
2376 pDevice->byTopOFDMBasicRate = RATE_6M;
2377 } else {
2378 pDevice->wCurrentRate = RATE_6M;
2379 pDevice->byACKRate = RATE_6M;
2380 pDevice->byTopCCKBasicRate = RATE_1M;
2381 pDevice->byTopOFDMBasicRate = RATE_6M;
2382 }
2383 }
Forest Bond92b96792009-06-13 07:38:31 -04002384
Andres More0cbd8d92010-05-06 20:34:29 -03002385 DBG_PRT(MSG_LEVEL_DEBUG,
2386 KERN_INFO "dma_tx: pDevice->wCurrentRate = %d\n",
2387 pDevice->wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -04002388
2389 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002390 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002391 }
2392
2393 if (pDevice->wCurrentRate <= RATE_11M) {
2394 byPktType = PK_TYPE_11B;
2395 }
2396
Andres More4e9b5e22013-02-12 20:36:30 -05002397 if (bNeedEncryption == true) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002398 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.h_proto));
2399 if ((pDevice->sTxEthHeader.h_proto) == cpu_to_be16(ETH_P_PAE)) {
Andres Moree269fc22013-02-12 20:36:29 -05002400 bNeedEncryption = false;
Andres Moreceb8c5d2013-03-18 20:33:49 -05002401 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.h_proto));
Forest Bond92b96792009-06-13 07:38:31 -04002402 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) && (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2403 if (pTransmitKey == NULL) {
2404 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Don't Find TX KEY\n");
2405 }
2406 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002407 if (bTKIP_UseGTK == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002408 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"error: KEY is GTK!!~~\n");
2409 }
2410 else {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002411 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2412 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002413 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002414 }
2415 }
2416 }
2417
Forest Bond92b96792009-06-13 07:38:31 -04002418 if (pDevice->bEnableHostWEP) {
2419 if ((uNodeIndex != 0) &&
2420 (pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex & PAIRWISE_KEY)) {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002421 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2422 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002423 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002424 }
2425 }
2426 }
2427 else {
2428
Forest Bond92b96792009-06-13 07:38:31 -04002429 if (pTransmitKey == NULL) {
2430 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"return no tx key\n");
Andres Moree269fc22013-02-12 20:36:29 -05002431 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002432 dev_kfree_skb_irq(skb);
2433 pStats->tx_dropped++;
2434 return STATUS_FAILURE;
2435 }
Forest Bond92b96792009-06-13 07:38:31 -04002436 }
2437 }
2438
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002439 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2440
Forest Bond92b96792009-06-13 07:38:31 -04002441 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002442 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002443 skb->len, uDMAIdx, &pDevice->sTxEthHeader,
Andres Moreb902fbf2013-02-25 20:32:51 -05002444 (u8 *)skb->data, pTransmitKey, uNodeIndex,
Forest Bond92b96792009-06-13 07:38:31 -04002445 pDevice->wCurrentRate,
2446 &uHeaderLen, &BytesToWrite
2447 );
2448
Andres Moree269fc22013-02-12 20:36:29 -05002449 if (fConvertedPacket == false) {
2450 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002451 dev_kfree_skb_irq(skb);
2452 return STATUS_FAILURE;
2453 }
2454
Andres More4e9b5e22013-02-12 20:36:30 -05002455 if ( pDevice->bEnablePSMode == true ) {
Forest Bond92b96792009-06-13 07:38:31 -04002456 if ( !pDevice->bPSModeTxBurst ) {
Andres More0cbd8d92010-05-06 20:34:29 -03002457 bScheduleCommand((void *) pDevice,
2458 WLAN_CMD_MAC_DISPOWERSAVING,
2459 NULL);
Andres More4e9b5e22013-02-12 20:36:30 -05002460 pDevice->bPSModeTxBurst = true;
Forest Bond92b96792009-06-13 07:38:31 -04002461 }
2462 }
2463
Andres Moreb902fbf2013-02-25 20:32:51 -05002464 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002465 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002466
2467 pContext->pPacket = skb;
2468 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002469 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002470
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002471 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2472 &pContext->sEthHeader.h_dest[0],
2473 (u16)(BytesToWrite-uHeaderLen),
2474 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002475
2476 status = PIPEnsSendBulkOut(pDevice,pContext);
2477
Andres More4e9b5e22013-02-12 20:36:30 -05002478 if (bNeedDeAuth == true) {
Andres More3eaca0d2013-02-25 20:32:52 -05002479 u16 wReason = WLAN_MGMT_REASON_MIC_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -04002480
Andres Moreb902fbf2013-02-25 20:32:51 -05002481 bScheduleCommand((void *) pDevice, WLAN_CMD_DEAUTH, (u8 *) &wReason);
Forest Bond92b96792009-06-13 07:38:31 -04002482 }
2483
2484 if(status!=STATUS_PENDING) {
Andres Moree269fc22013-02-12 20:36:29 -05002485 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002486 dev_kfree_skb_irq(skb);
2487 return STATUS_FAILURE;
2488 }
2489 else
2490 return 0;
2491
2492}
2493
Forest Bond92b96792009-06-13 07:38:31 -04002494/*
2495 * Description:
2496 * Relay packet send (AC1DMA) from rx dpc.
2497 *
2498 * Parameters:
2499 * In:
2500 * pDevice - Pointer to the adapter
2501 * pPacket - Pointer to rx packet
2502 * cbPacketSize - rx ethernet frame size
2503 * Out:
Andres Moree269fc22013-02-12 20:36:29 -05002504 * TURE, false
Forest Bond92b96792009-06-13 07:38:31 -04002505 *
Andres More4e9b5e22013-02-12 20:36:30 -05002506 * Return Value: Return true if packet is copy to dma1; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04002507 */
2508
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002509int bRelayPacketSend(struct vnt_private *pDevice, u8 *pbySkbData, u32 uDataLen,
2510 u32 uNodeIndex)
Forest Bond92b96792009-06-13 07:38:31 -04002511{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002512 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002513 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002514 u32 BytesToWrite = 0, uHeaderLen = 0;
2515 u8 byPktType = PK_TYPE_11B;
Andres Moree269fc22013-02-12 20:36:29 -05002516 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002517 SKeyItem STempKey;
2518 PSKeyItem pTransmitKey = NULL;
2519 u8 *pbyBSSID;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002520 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002521 u8 byPktTyp;
2522 int fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002523 u32 status;
2524 u16 wKeepRate = pDevice->wCurrentRate;
Forest Bond92b96792009-06-13 07:38:31 -04002525
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002526 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002527
2528 if (NULL == pContext) {
Andres Moree269fc22013-02-12 20:36:29 -05002529 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002530 }
2531
Andres Moreceb8c5d2013-03-18 20:33:49 -05002532 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)pbySkbData, ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002533
Andres More4e9b5e22013-02-12 20:36:30 -05002534 if (pDevice->bEncryptionEnable == true) {
2535 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002536 // get group key
2537 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002538 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002539 pTransmitKey = NULL;
2540 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2541 } else {
2542 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2543 }
2544 }
2545
2546 if (pDevice->bEnableHostWEP) {
Roel Kluinee93e192009-10-16 20:17:57 +02002547 if (uNodeIndex < MAX_NODE_NUM + 1) {
Forest Bond92b96792009-06-13 07:38:31 -04002548 pTransmitKey = &STempKey;
2549 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2550 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2551 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2552 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2553 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2554 memcpy(pTransmitKey->abyKey,
2555 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2556 pTransmitKey->uKeyLength
2557 );
2558 }
2559 }
2560
2561 if ( bNeedEncryption && (pTransmitKey == NULL) ) {
Andres Moree269fc22013-02-12 20:36:29 -05002562 pContext->bBoolInUse = false;
2563 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002564 }
2565
Andres Moreb902fbf2013-02-25 20:32:51 -05002566 byPktTyp = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002567
2568 if (pDevice->bFixRate) {
2569 if (pDevice->byBBType == BB_TYPE_11B) {
2570 if (pDevice->uConnectionRate >= RATE_11M) {
2571 pDevice->wCurrentRate = RATE_11M;
2572 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002573 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002574 }
2575 } else {
2576 if ((pDevice->byBBType == BB_TYPE_11A) &&
2577 (pDevice->uConnectionRate <= RATE_6M)) {
2578 pDevice->wCurrentRate = RATE_6M;
2579 } else {
2580 if (pDevice->uConnectionRate >= RATE_54M)
2581 pDevice->wCurrentRate = RATE_54M;
2582 else
Andres More3eaca0d2013-02-25 20:32:52 -05002583 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002584 }
2585 }
2586 }
2587 else {
2588 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2589 }
2590
Forest Bond92b96792009-06-13 07:38:31 -04002591 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002592 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002593 }
2594
2595 if (pDevice->wCurrentRate <= RATE_11M)
2596 byPktType = PK_TYPE_11B;
2597
Andres Moreabad19d2010-07-12 16:28:32 -03002598 BytesToWrite = uDataLen + ETH_FCS_LEN;
2599
Forest Bond92b96792009-06-13 07:38:31 -04002600 // Convert the packet to an usb frame and copy into our buffer
2601 // and send the irp.
2602
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002603 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2604
Forest Bond92b96792009-06-13 07:38:31 -04002605 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002606 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002607 uDataLen, TYPE_AC0DMA, &pDevice->sTxEthHeader,
2608 pbySkbData, pTransmitKey, uNodeIndex,
2609 pDevice->wCurrentRate,
2610 &uHeaderLen, &BytesToWrite
2611 );
2612
Andres Moree269fc22013-02-12 20:36:29 -05002613 if (fConvertedPacket == false) {
2614 pContext->bBoolInUse = false;
2615 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002616 }
2617
Andres Moreb902fbf2013-02-25 20:32:51 -05002618 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002619 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002620
2621 pContext->pPacket = NULL;
2622 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002623 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002624
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002625 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2626 &pContext->sEthHeader.h_dest[0],
2627 (u16)(BytesToWrite - uHeaderLen),
2628 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002629
2630 status = PIPEnsSendBulkOut(pDevice,pContext);
2631
Andres More4e9b5e22013-02-12 20:36:30 -05002632 return true;
Forest Bond92b96792009-06-13 07:38:31 -04002633}
2634