blob: e049a34ad91f2092a635da804040b4fdf07ed6a5 [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
101static void s_vGenerateTxParameter(struct vnt_private *pDevice,
102 u8 byPktType, u16 wCurrentRate, void *pTxBufHead, void *pvRrvTime,
103 void *pvRTS, void *pvCTS, u32 cbFrameSize, int bNeedACK, u32 uDMAIdx,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500104 struct ethhdr *psEthHeader);
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000105
106static u32 s_uFillDataHead(struct vnt_private *pDevice,
107 u8 byPktType, u16 wCurrentRate, void *pTxDataHead, u32 cbFrameLength,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +0100108 u32 uDMAIdx, int bNeedAck, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400109
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000110static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500111 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000112 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -0400113
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000114static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
115 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf, u16 wPayloadLen,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100116 struct vnt_mic_hdr *mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -0400117
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000118static void s_vSWencryption(struct vnt_private *pDevice,
119 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400120
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000121static unsigned int s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
122 u32 cbFrameLength, u16 wRate, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400123
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100124static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice, u8 byRTSRsvType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000125 u8 byPktType, u32 cbFrameLength, u16 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400126
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000127static void s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
128 u8 byPktType, void *pvCTS, u32 cbFrameLength, int bNeedAck,
Malcolm Priestley09bd0f32013-08-24 12:56:11 +0100129 u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400130
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000131static void s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyfedbfe72013-08-24 12:50:50 +0100132 void *pvRTS, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500133 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400134
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100135static u16 s_uGetDataDuration(struct vnt_private *pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100136 u8 byPktType, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400137
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100138static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000139 u8 byDurType, u32 cbFrameLength, u8 byPktType, u16 wRate,
140 int bNeedAck, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400141
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000142static void *s_vGetFreeContext(struct vnt_private *pDevice)
Forest Bond92b96792009-06-13 07:38:31 -0400143{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000144 PUSB_SEND_CONTEXT pContext = NULL;
145 PUSB_SEND_CONTEXT pReturnContext = NULL;
146 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400147
148 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"GetFreeContext()\n");
149
150 for (ii = 0; ii < pDevice->cbTD; ii++) {
151 pContext = pDevice->apTD[ii];
Andres Moree269fc22013-02-12 20:36:29 -0500152 if (pContext->bBoolInUse == false) {
Andres More4e9b5e22013-02-12 20:36:30 -0500153 pContext->bBoolInUse = true;
Malcolm Priestleyc0de17e2013-08-05 21:09:14 +0100154 memset(pContext->Data, 0, MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
Forest Bond92b96792009-06-13 07:38:31 -0400155 pReturnContext = pContext;
156 break;
157 }
158 }
159 if ( ii == pDevice->cbTD ) {
160 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Free Tx Context\n");
161 }
Andres More8611a292010-05-01 14:25:00 -0300162 return (void *) pReturnContext;
Forest Bond92b96792009-06-13 07:38:31 -0400163}
164
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000165static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
166 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl)
Forest Bond92b96792009-06-13 07:38:31 -0400167{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000168 PSStatCounter pStatistic = &pDevice->scStatistic;
Forest Bond92b96792009-06-13 07:38:31 -0400169
Andres More4b50fb42010-06-22 21:57:42 -0300170 if (is_broadcast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400171 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_BROAD;
Andres More4b50fb42010-06-22 21:57:42 -0300172 else if (is_multicast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400173 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_MULTI;
174 else
175 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_UNI;
176
177 pStatistic->abyTxPktInfo[byPktNum].wLength = wPktLength;
178 pStatistic->abyTxPktInfo[byPktNum].wFIFOCtl = wFIFOCtl;
Andres More9a0e7562010-04-13 21:54:48 -0300179 memcpy(pStatistic->abyTxPktInfo[byPktNum].abyDestAddr,
180 pbyDestAddr,
181 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400182}
183
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000184static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
185 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100186 u16 wPayloadLen, struct vnt_mic_hdr *mic_hdr)
Forest Bond92b96792009-06-13 07:38:31 -0400187{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000188 u32 *pdwIV = (u32 *)pbyIVHead;
189 u32 *pdwExtIV = (u32 *)((u8 *)pbyIVHead + 4);
Andres More1cac4a42013-03-18 20:33:50 -0500190 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyHdrBuf;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000191 u32 dwRevIVCounter;
Forest Bond92b96792009-06-13 07:38:31 -0400192
Forest Bond92b96792009-06-13 07:38:31 -0400193 //Fill TXKEY
194 if (pTransmitKey == NULL)
195 return;
196
197 dwRevIVCounter = cpu_to_le32(pDevice->dwIVCounter);
198 *pdwIV = pDevice->dwIVCounter;
199 pDevice->byKeyIndex = pTransmitKey->dwKeyIndex & 0xf;
200
201 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
202 if (pTransmitKey->uKeyLength == WLAN_WEP232_KEYLEN ){
Andres Moreb902fbf2013-02-25 20:32:51 -0500203 memcpy(pDevice->abyPRNG, (u8 *)&(dwRevIVCounter), 3);
Jim Lieb3e362592009-08-12 14:54:11 -0700204 memcpy(pDevice->abyPRNG+3, pTransmitKey->abyKey, pTransmitKey->uKeyLength);
Forest Bond92b96792009-06-13 07:38:31 -0400205 } else {
Andres Moreb902fbf2013-02-25 20:32:51 -0500206 memcpy(pbyBuf, (u8 *)&(dwRevIVCounter), 3);
Jim Lieb3e362592009-08-12 14:54:11 -0700207 memcpy(pbyBuf+3, pTransmitKey->abyKey, pTransmitKey->uKeyLength);
Forest Bond92b96792009-06-13 07:38:31 -0400208 if(pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) {
Andres Moreb902fbf2013-02-25 20:32:51 -0500209 memcpy(pbyBuf+8, (u8 *)&(dwRevIVCounter), 3);
Jim Lieb3e362592009-08-12 14:54:11 -0700210 memcpy(pbyBuf+11, pTransmitKey->abyKey, pTransmitKey->uKeyLength);
Forest Bond92b96792009-06-13 07:38:31 -0400211 }
Jim Lieb3e362592009-08-12 14:54:11 -0700212 memcpy(pDevice->abyPRNG, pbyBuf, 16);
Forest Bond92b96792009-06-13 07:38:31 -0400213 }
214 // Append IV after Mac Header
215 *pdwIV &= WEP_IV_MASK;//00000000 11111111 11111111 11111111
Malcolm Priestleyd5bbef72012-11-11 15:53:14 +0000216 *pdwIV |= (u32)pDevice->byKeyIndex << 30;
Forest Bond92b96792009-06-13 07:38:31 -0400217 *pdwIV = cpu_to_le32(*pdwIV);
218 pDevice->dwIVCounter++;
219 if (pDevice->dwIVCounter > WEP_IV_MASK) {
220 pDevice->dwIVCounter = 0;
221 }
222 } else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
223 pTransmitKey->wTSC15_0++;
224 if (pTransmitKey->wTSC15_0 == 0) {
225 pTransmitKey->dwTSC47_16++;
226 }
227 TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
228 pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
Jim Lieb3e362592009-08-12 14:54:11 -0700229 memcpy(pbyBuf, pDevice->abyPRNG, 16);
Forest Bond92b96792009-06-13 07:38:31 -0400230 // Make IV
Jim Lieb3e362592009-08-12 14:54:11 -0700231 memcpy(pdwIV, pDevice->abyPRNG, 3);
Forest Bond92b96792009-06-13 07:38:31 -0400232
Andres Moreb902fbf2013-02-25 20:32:51 -0500233 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) & 0xc0) | 0x20); // 0x20 is ExtIV
Forest Bond92b96792009-06-13 07:38:31 -0400234 // Append IV&ExtIV after Mac Header
235 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +0000236 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"vFillTxKey()---- pdwExtIV: %x\n",
237 *pdwExtIV);
Forest Bond92b96792009-06-13 07:38:31 -0400238
239 } else if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) {
240 pTransmitKey->wTSC15_0++;
241 if (pTransmitKey->wTSC15_0 == 0) {
242 pTransmitKey->dwTSC47_16++;
243 }
Jim Lieb3e362592009-08-12 14:54:11 -0700244 memcpy(pbyBuf, pTransmitKey->abyKey, 16);
Forest Bond92b96792009-06-13 07:38:31 -0400245
246 // Make IV
247 *pdwIV = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -0500248 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) & 0xc0) | 0x20); // 0x20 is ExtIV
Andres More3eaca0d2013-02-25 20:32:52 -0500249 *pdwIV |= cpu_to_le16((u16)(pTransmitKey->wTSC15_0));
Forest Bond92b96792009-06-13 07:38:31 -0400250 //Append IV&ExtIV after Mac Header
251 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
252
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100253 if (!mic_hdr)
254 return;
Forest Bond92b96792009-06-13 07:38:31 -0400255
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100256 /* MICHDR0 */
257 mic_hdr->id = 0x59;
258 mic_hdr->payload_len = cpu_to_be16(wPayloadLen);
259 memcpy(mic_hdr->mic_addr2, pMACHeader->addr2, ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400260
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100261 mic_hdr->tsc_47_16 = cpu_to_be32(pTransmitKey->dwTSC47_16);
262 mic_hdr->tsc_15_0 = cpu_to_be16(pTransmitKey->wTSC15_0);
263
264 /* MICHDR1 */
265 if (pDevice->bLongHeader)
266 mic_hdr->hlen = cpu_to_be16(28);
267 else
268 mic_hdr->hlen = cpu_to_be16(22);
269
270 memcpy(mic_hdr->addr1, pMACHeader->addr1, ETH_ALEN);
271 memcpy(mic_hdr->addr2, pMACHeader->addr2, ETH_ALEN);
272
273 /* MICHDR2 */
274 memcpy(mic_hdr->addr3, pMACHeader->addr3, ETH_ALEN);
275 mic_hdr->frame_control = cpu_to_le16(pMACHeader->frame_control
276 & 0xc78f);
277 mic_hdr->seq_ctrl = cpu_to_le16(pMACHeader->seq_ctrl & 0xf);
278
279 if (pDevice->bLongHeader)
280 memcpy(mic_hdr->addr4, pMACHeader->addr4, ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400281 }
282}
283
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000284static void s_vSWencryption(struct vnt_private *pDevice,
285 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize)
Forest Bond92b96792009-06-13 07:38:31 -0400286{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000287 u32 cbICVlen = 4;
288 u32 dwICV = 0xffffffff;
289 u32 *pdwICV;
Forest Bond92b96792009-06-13 07:38:31 -0400290
291 if (pTransmitKey == NULL)
292 return;
293
294 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
295 //=======================================================================
296 // Append ICV after payload
297 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500298 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400299 // finally, we must invert dwCRC to get the correct answer
300 *pdwICV = cpu_to_le32(~dwICV);
301 // RC4 encryption
302 rc4_init(&pDevice->SBox, pDevice->abyPRNG, pTransmitKey->uKeyLength + 3);
303 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
304 //=======================================================================
305 } else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
306 //=======================================================================
307 //Append ICV after payload
308 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500309 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400310 // finally, we must invert dwCRC to get the correct answer
311 *pdwICV = cpu_to_le32(~dwICV);
312 // RC4 encryption
313 rc4_init(&pDevice->SBox, pDevice->abyPRNG, TKIP_KEY_LEN);
314 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
315 //=======================================================================
316 }
317}
318
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100319static u16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
320{
321 return cpu_to_le16(wTimeStampOff[priv->byPreambleType % 2]
322 [rate % MAX_RATE]);
323}
324
Forest Bond92b96792009-06-13 07:38:31 -0400325/*byPktType : PK_TYPE_11A 0
326 PK_TYPE_11B 1
327 PK_TYPE_11GB 2
328 PK_TYPE_11GA 3
329*/
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000330static u32 s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
331 u32 cbFrameLength, u16 wRate, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400332{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000333 u32 uDataTime, uAckTime;
Forest Bond92b96792009-06-13 07:38:31 -0400334
335 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wRate);
336 if (byPktType == PK_TYPE_11B) {//llb,CCK mode
Andres More3eaca0d2013-02-25 20:32:52 -0500337 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400338 } else {//11g 2.4G OFDM mode & 11a 5G OFDM mode
Andres More3eaca0d2013-02-25 20:32:52 -0500339 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopOFDMBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400340 }
341
342 if (bNeedAck) {
343 return (uDataTime + pDevice->uSIFS + uAckTime);
344 }
345 else {
346 return uDataTime;
347 }
348}
349
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100350static u16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
351 u32 frame_length, u16 rate, int need_ack)
352{
353 return cpu_to_le16((u16)s_uGetTxRsvTime(priv, pkt_type,
354 frame_length, rate, need_ack));
355}
356
Forest Bond92b96792009-06-13 07:38:31 -0400357//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100358static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000359 u8 byRTSRsvType, u8 byPktType, u32 cbFrameLength, u16 wCurrentRate)
Forest Bond92b96792009-06-13 07:38:31 -0400360{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000361 u32 uRrvTime, uRTSTime, uCTSTime, uAckTime, uDataTime;
Forest Bond92b96792009-06-13 07:38:31 -0400362
363 uRrvTime = uRTSTime = uCTSTime = uAckTime = uDataTime = 0;
364
Forest Bond92b96792009-06-13 07:38:31 -0400365 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wCurrentRate);
366 if (byRTSRsvType == 0) { //RTSTxRrvTime_bb
367 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
368 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
369 }
370 else if (byRTSRsvType == 1){ //RTSTxRrvTime_ba, only in 2.4GHZ
371 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
372 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
373 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
374 }
375 else if (byRTSRsvType == 2) { //RTSTxRrvTime_aa
376 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopOFDMBasicRate);
377 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
378 }
379 else if (byRTSRsvType == 3) { //CTSTxRrvTime_ba, only in 2.4GHZ
380 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
381 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
382 uRrvTime = uCTSTime + uAckTime + uDataTime + 2*pDevice->uSIFS;
383 return uRrvTime;
384 }
385
386 //RTSRrvTime
387 uRrvTime = uRTSTime + uCTSTime + uAckTime + uDataTime + 3*pDevice->uSIFS;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100388 return cpu_to_le16((u16)uRrvTime);
Forest Bond92b96792009-06-13 07:38:31 -0400389}
390
391//byFreqType 0: 5GHz, 1:2.4Ghz
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100392static u16 s_uGetDataDuration(struct vnt_private *pDevice,
393 u8 byPktType, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400394{
Malcolm Priestley0005cb02013-08-07 21:26:12 +0100395 u32 uAckTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400396
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100397 if (bNeedAck) {
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100398 if (byPktType == PK_TYPE_11B)
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100399 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
400 byPktType, 14, pDevice->byTopCCKBasicRate);
401 else
402 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
403 byPktType, 14, pDevice->byTopOFDMBasicRate);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100404 return cpu_to_le16((u16)(pDevice->uSIFS + uAckTime));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100405 }
Forest Bond92b96792009-06-13 07:38:31 -0400406
Forest Bond92b96792009-06-13 07:38:31 -0400407 return 0;
408}
409
Forest Bond92b96792009-06-13 07:38:31 -0400410//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100411static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice, u8 byDurType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000412 u32 cbFrameLength, u8 byPktType, u16 wRate, int bNeedAck,
413 u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400414{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000415 u32 uCTSTime = 0, uDurTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400416
Forest Bond92b96792009-06-13 07:38:31 -0400417 switch (byDurType) {
418
419 case RTSDUR_BB: //RTSDuration_bb
420 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
421 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
422 break;
423
424 case RTSDUR_BA: //RTSDuration_ba
425 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
426 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
427 break;
428
429 case RTSDUR_AA: //RTSDuration_aa
430 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
431 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
432 break;
433
434 case CTSDUR_BA: //CTSDuration_ba
435 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
436 break;
437
438 case RTSDUR_BA_F0: //RTSDuration_ba_f0
439 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
440 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
441 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
442 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
443 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
444 }
445 break;
446
447 case RTSDUR_AA_F0: //RTSDuration_aa_f0
448 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
449 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
450 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
451 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
452 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
453 }
454 break;
455
456 case RTSDUR_BA_F1: //RTSDuration_ba_f1
457 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
458 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
459 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
460 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
461 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
462 }
463 break;
464
465 case RTSDUR_AA_F1: //RTSDuration_aa_f1
466 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
467 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
468 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
469 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
470 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
471 }
472 break;
473
474 case CTSDUR_BA_F0: //CTSDuration_ba_f0
475 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
476 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
477 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
478 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
479 }
480 break;
481
482 case CTSDUR_BA_F1: //CTSDuration_ba_f1
483 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
484 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
485 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
486 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
487 }
488 break;
489
490 default:
491 break;
492 }
493
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100494 return cpu_to_le16((u16)uDurTime);
Forest Bond92b96792009-06-13 07:38:31 -0400495}
496
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000497static u32 s_uFillDataHead(struct vnt_private *pDevice,
498 u8 byPktType, u16 wCurrentRate, void *pTxDataHead, u32 cbFrameLength,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +0100499 u32 uDMAIdx, int bNeedAck, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400500{
501
502 if (pTxDataHead == NULL) {
503 return 0;
504 }
505
506 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Forest Bond92b96792009-06-13 07:38:31 -0400507 if (byFBOption == AUTO_FB_NONE) {
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +0100508 struct vnt_tx_datahead_g *pBuf =
509 (struct vnt_tx_datahead_g *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400510 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100511 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
512 byPktType, &pBuf->a);
513 BBvCalculateParameter(pDevice, cbFrameLength,
514 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Forest Bond92b96792009-06-13 07:38:31 -0400515 //Get Duration and TimeStamp
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100516 pBuf->wDuration_a = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100517 byPktType, bNeedAck);
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100518 pBuf->wDuration_b = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100519 PK_TYPE_11B, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400520
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100521 pBuf->wTimeStampOff_a = vnt_time_stamp_off(pDevice,
522 wCurrentRate);
523 pBuf->wTimeStampOff_b = vnt_time_stamp_off(pDevice,
524 pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400525 return (pBuf->wDuration_a);
526 } else {
527 // Auto Fallback
Malcolm Priestley7c05c542013-08-16 23:49:15 +0100528 struct vnt_tx_datahead_g_fb *pBuf =
529 (struct vnt_tx_datahead_g_fb *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400530 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100531 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
532 byPktType, &pBuf->a);
533 BBvCalculateParameter(pDevice, cbFrameLength,
534 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Forest Bond92b96792009-06-13 07:38:31 -0400535 //Get Duration and TimeStamp
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100536 pBuf->wDuration_a = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100537 byPktType, bNeedAck);
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100538 pBuf->wDuration_b = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100539 PK_TYPE_11B, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100540 pBuf->wDuration_a_f0 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100541 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100542 pBuf->wDuration_a_f1 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100543 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100544 pBuf->wTimeStampOff_a = vnt_time_stamp_off(pDevice,
545 wCurrentRate);
546 pBuf->wTimeStampOff_b = vnt_time_stamp_off(pDevice,
547 pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400548 return (pBuf->wDuration_a);
549 } //if (byFBOption == AUTO_FB_NONE)
Forest Bond92b96792009-06-13 07:38:31 -0400550 }
551 else if (byPktType == PK_TYPE_11A) {
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100552 if (byFBOption != AUTO_FB_NONE) {
Malcolm Priestley1da4ee22013-08-16 23:51:38 +0100553 struct vnt_tx_datahead_a_fb *pBuf =
554 (struct vnt_tx_datahead_a_fb *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400555 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100556 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
557 byPktType, &pBuf->a);
Forest Bond92b96792009-06-13 07:38:31 -0400558 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100559 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100560 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100561 pBuf->wDuration_f0 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100562 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100563 pBuf->wDuration_f1 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100564 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100565 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
566 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400567 return (pBuf->wDuration);
568 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +0100569 struct vnt_tx_datahead_ab *pBuf =
570 (struct vnt_tx_datahead_ab *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400571 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100572 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
573 byPktType, &pBuf->ab);
Forest Bond92b96792009-06-13 07:38:31 -0400574 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100575 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100576 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100577 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
578 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400579 return (pBuf->wDuration);
580 }
581 }
582 else if (byPktType == PK_TYPE_11B) {
Malcolm Priestley558becf2013-08-16 23:50:32 +0100583 struct vnt_tx_datahead_ab *pBuf =
584 (struct vnt_tx_datahead_ab *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400585 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100586 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
587 byPktType, &pBuf->ab);
Forest Bond92b96792009-06-13 07:38:31 -0400588 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100589 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100590 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100591 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
592 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400593 return (pBuf->wDuration);
594 }
595 return 0;
596}
597
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100598static int vnt_fill_ieee80211_rts(struct vnt_private *priv,
599 struct ieee80211_rts *rts, struct ethhdr *eth_hdr,
600 u16 duration)
601{
602 rts->duration = duration;
603 rts->frame_control = TYPE_CTL_RTS;
604
605 if (priv->eOPMode == OP_MODE_ADHOC || priv->eOPMode == OP_MODE_AP)
606 memcpy(rts->ra, eth_hdr->h_dest, ETH_ALEN);
607 else
608 memcpy(rts->ra, priv->abyBSSID, ETH_ALEN);
609
610 if (priv->eOPMode == OP_MODE_AP)
611 memcpy(rts->ta, priv->abyBSSID, ETH_ALEN);
612 else
613 memcpy(rts->ta, eth_hdr->h_source, ETH_ALEN);
614
615 return 0;
616}
617
618static int vnt_rxtx_rts_g_head(struct vnt_private *priv,
619 struct vnt_rts_g *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, priv->byTopCCKBasicRate,
626 PK_TYPE_11B, &buf->b);
627 BBvCalculateParameter(priv, rts_frame_len,
628 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
629
630 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
631 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
632 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
633 pkt_type, current_rate, need_ack, fb_option);
634 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
635 pkt_type, current_rate, need_ack, fb_option);
636
637 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
638
639 return 0;
640}
641
Malcolm Priestleyec917132013-08-26 11:07:46 +0100642static int vnt_rxtx_rts_g_fb_head(struct vnt_private *priv,
643 struct vnt_rts_g_fb *buf, struct ethhdr *eth_hdr,
644 u8 pkt_type, u32 frame_len, int need_ack,
645 u16 current_rate, u8 fb_option)
646{
647 u16 rts_frame_len = 20;
648
649 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
650 PK_TYPE_11B, &buf->b);
651 BBvCalculateParameter(priv, rts_frame_len,
652 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
653
654
655 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
656 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
657 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
658 pkt_type, current_rate, need_ack, fb_option);
659 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
660 pkt_type, current_rate, need_ack, fb_option);
661
662
663 buf->wRTSDuration_ba_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F0,
664 frame_len, pkt_type, current_rate, need_ack, fb_option);
665 buf->wRTSDuration_aa_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
666 frame_len, pkt_type, current_rate, need_ack, fb_option);
667 buf->wRTSDuration_ba_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F1,
668 frame_len, pkt_type, current_rate, need_ack, fb_option);
669 buf->wRTSDuration_aa_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
670 frame_len, pkt_type, current_rate, need_ack, fb_option);
671
672 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
673
674 return 0;
675}
676
Malcolm Priestley17126332013-08-26 11:09:38 +0100677static int vnt_rxtx_rts_ab_head(struct vnt_private *priv,
678 struct vnt_rts_ab *buf, struct ethhdr *eth_hdr,
679 u8 pkt_type, u32 frame_len, int need_ack,
680 u16 current_rate, u8 fb_option)
681{
682 u16 rts_frame_len = 20;
683
684 BBvCalculateParameter(priv, rts_frame_len,
685 priv->byTopOFDMBasicRate, pkt_type, &buf->ab);
686
687 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
688 pkt_type, current_rate, need_ack, fb_option);
689
690 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
691
692 return 0;
693}
694
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100695static int vnt_rxtx_rts_a_fb_head(struct vnt_private *priv,
696 struct vnt_rts_a_fb *buf, struct ethhdr *eth_hdr,
697 u8 pkt_type, u32 frame_len, int need_ack,
698 u16 current_rate, u8 fb_option)
699{
700 u16 rts_frame_len = 20;
701
702 BBvCalculateParameter(priv, rts_frame_len,
703 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
704
705 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
706 pkt_type, current_rate, need_ack, fb_option);
707
708 buf->wRTSDuration_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
709 frame_len, pkt_type, current_rate, need_ack, fb_option);
710
711 buf->wRTSDuration_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
712 frame_len, pkt_type, current_rate, need_ack, fb_option);
713
714 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
715
716 return 0;
717}
718
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000719static void s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyfedbfe72013-08-24 12:50:50 +0100720 void *pvRTS, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500721 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400722{
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100723 union vnt_tx_data_head *head = pvRTS;
Forest Bond92b96792009-06-13 07:38:31 -0400724
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100725 if (!head)
726 return;
Forest Bond92b96792009-06-13 07:38:31 -0400727
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100728 /* Note: So far RTSHead doesn't appear in ATIM
729 * & Beacom DMA, so we don't need to take them
730 * into account.
731 * Otherwise, we need to modified codes for them.
732 */
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100733 switch (byPktType) {
734 case PK_TYPE_11GB:
735 case PK_TYPE_11GA:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100736 if (byFBOption == AUTO_FB_NONE)
737 vnt_rxtx_rts_g_head(pDevice, &head->rts_g,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100738 psEthHeader, byPktType, cbFrameLength,
739 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100740 else
741 vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100742 psEthHeader, byPktType, cbFrameLength,
743 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100744 break;
745 case PK_TYPE_11A:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100746 if (byFBOption == AUTO_FB_NONE)
747 vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
748 psEthHeader, byPktType, cbFrameLength,
749 bNeedAck, wCurrentRate, byFBOption);
750 else
751 vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb,
752 psEthHeader, byPktType, cbFrameLength,
753 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100754 break;
755 case PK_TYPE_11B:
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100756 vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
Malcolm Priestley17126332013-08-26 11:09:38 +0100757 psEthHeader, byPktType, cbFrameLength,
758 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100759 }
Forest Bond92b96792009-06-13 07:38:31 -0400760}
761
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000762static void s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
763 u8 byPktType, void *pvCTS, u32 cbFrameLength, int bNeedAck,
Malcolm Priestley09bd0f32013-08-24 12:56:11 +0100764 u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400765{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000766 u32 uCTSFrameLen = 14;
Forest Bond92b96792009-06-13 07:38:31 -0400767
768 if (pvCTS == NULL) {
769 return;
770 }
771
Forest Bond92b96792009-06-13 07:38:31 -0400772 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100773 if (byFBOption != AUTO_FB_NONE) {
774 /* Auto Fall back */
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +0100775 struct vnt_cts_fb *pBuf = (struct vnt_cts_fb *)pvCTS;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100776 /* Get SignalField,ServiceField,Length */
777 BBvCalculateParameter(pDevice, uCTSFrameLen,
778 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100779 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
780 cbFrameLength, byPktType,
781 wCurrentRate, bNeedAck, byFBOption);
782 /* Get CTSDuration_ba_f0 */
783 pBuf->wCTSDuration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
784 CTSDUR_BA_F0, cbFrameLength, byPktType, wCurrentRate,
785 bNeedAck, byFBOption);
786 /* Get CTSDuration_ba_f1 */
787 pBuf->wCTSDuration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
788 CTSDUR_BA_F1, cbFrameLength, byPktType, wCurrentRate,
789 bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100790 /* Get CTS Frame body */
791 pBuf->data.duration = pBuf->wDuration_ba;
792 pBuf->data.frame_control = TYPE_CTL_CTS;
793 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100794 } else {
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +0100795 struct vnt_cts *pBuf = (struct vnt_cts *)pvCTS;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100796 /* Get SignalField,ServiceField,Length */
797 BBvCalculateParameter(pDevice, uCTSFrameLen,
798 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100799 /* Get CTSDuration_ba */
800 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice,
801 CTSDUR_BA, cbFrameLength, byPktType,
802 wCurrentRate, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100803 /*Get CTS Frame body*/
804 pBuf->data.duration = pBuf->wDuration_ba;
805 pBuf->data.frame_control = TYPE_CTL_CTS;
806 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400807 }
808 }
809}
810
Forest Bond92b96792009-06-13 07:38:31 -0400811/*+
812 *
813 * Description:
814 * Generate FIFO control for MAC & Baseband controller
815 *
816 * Parameters:
817 * In:
818 * pDevice - Pointer to adpater
819 * pTxDataHead - Transmit Data Buffer
820 * pTxBufHead - pTxBufHead
821 * pvRrvTime - pvRrvTime
822 * pvRTS - RTS Buffer
823 * pCTS - CTS Buffer
824 * cbFrameSize - Transmit Data Length (Hdr+Payload+FCS)
825 * bNeedACK - If need ACK
826 * uDMAIdx - DMA Index
827 * Out:
828 * none
829 *
830 * Return Value: none
831 *
832-*/
Andres Morecc856e62010-05-17 21:34:01 -0300833
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000834static void s_vGenerateTxParameter(struct vnt_private *pDevice,
835 u8 byPktType, u16 wCurrentRate, void *pTxBufHead, void *pvRrvTime,
836 void *pvRTS, void *pvCTS, u32 cbFrameSize, int bNeedACK, u32 uDMAIdx,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500837 struct ethhdr *psEthHeader)
Forest Bond92b96792009-06-13 07:38:31 -0400838{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000839 u32 cbMACHdLen = WLAN_HDR_ADDR3_LEN; /* 24 */
840 u16 wFifoCtl;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000841 u8 byFBOption = AUTO_FB_NONE;
Forest Bond92b96792009-06-13 07:38:31 -0400842
843 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_vGenerateTxParameter...\n");
844 PSTxBufHead pFifoHead = (PSTxBufHead)pTxBufHead;
845 pFifoHead->wReserved = wCurrentRate;
846 wFifoCtl = pFifoHead->wFIFOCtl;
847
Forest Bond92b96792009-06-13 07:38:31 -0400848 if (wFifoCtl & FIFOCTL_AUTO_FB_0) {
849 byFBOption = AUTO_FB_0;
850 }
851 else if (wFifoCtl & FIFOCTL_AUTO_FB_1) {
852 byFBOption = AUTO_FB_1;
853 }
854
Malcolm Priestley2dc22d52013-08-24 13:15:32 +0100855 if (!pvRrvTime)
856 return;
857
Forest Bond92b96792009-06-13 07:38:31 -0400858 if (pDevice->bLongHeader)
859 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
860
861 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
862
863 if (pvRTS != NULL) { //RTS_need
864 //Fill RsvTime
Malcolm Priestley6398a592013-08-16 21:26:55 +0100865 struct vnt_rrv_time_rts *pBuf =
866 (struct vnt_rrv_time_rts *)pvRrvTime;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100867 pBuf->wRTSTxRrvTime_aa = s_uGetRTSCTSRsvTime(pDevice, 2,
868 byPktType, cbFrameSize, wCurrentRate);
869 pBuf->wRTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 1,
870 byPktType, cbFrameSize, wCurrentRate);
871 pBuf->wRTSTxRrvTime_bb = s_uGetRTSCTSRsvTime(pDevice, 0,
872 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100873 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
874 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
875 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
876 PK_TYPE_11B, cbFrameSize, pDevice->byTopCCKBasicRate,
877 bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400878 //Fill RTS
Malcolm Priestleyfedbfe72013-08-24 12:50:50 +0100879 s_vFillRTSHead(pDevice, byPktType, pvRTS, cbFrameSize, bNeedACK,
880 psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400881 }
882 else {//RTS_needless, PCF mode
Forest Bond92b96792009-06-13 07:38:31 -0400883 //Fill RsvTime
Malcolm Priestley4f990052013-08-16 23:38:57 +0100884 struct vnt_rrv_time_cts *pBuf =
885 (struct vnt_rrv_time_cts *)pvRrvTime;
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100886 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice, byPktType,
887 cbFrameSize, wCurrentRate, bNeedACK);
888 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
889 PK_TYPE_11B, cbFrameSize,
890 pDevice->byTopCCKBasicRate, bNeedACK);
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100891 pBuf->wCTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 3,
892 byPktType, cbFrameSize, wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400893 //Fill CTS
Malcolm Priestley09bd0f32013-08-24 12:56:11 +0100894 s_vFillCTSHead(pDevice, uDMAIdx, byPktType, pvCTS, cbFrameSize,
895 bNeedACK, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400896 }
897 }
898 else if (byPktType == PK_TYPE_11A) {
899
900 if (pvRTS != NULL) {//RTS_need, non PCF mode
901 //Fill RsvTime
Malcolm Priestley976467d2013-08-16 23:44:04 +0100902 struct vnt_rrv_time_ab *pBuf =
903 (struct vnt_rrv_time_ab *)pvRrvTime;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100904 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 2,
905 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100906 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, byPktType,
907 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400908 //Fill RTS
Malcolm Priestleyfedbfe72013-08-24 12:50:50 +0100909 s_vFillRTSHead(pDevice, byPktType, pvRTS, cbFrameSize, bNeedACK,
910 psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400911 }
912 else if (pvRTS == NULL) {//RTS_needless, non PCF mode
913 //Fill RsvTime
Malcolm Priestley976467d2013-08-16 23:44:04 +0100914 struct vnt_rrv_time_ab *pBuf =
915 (struct vnt_rrv_time_ab *)pvRrvTime;
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100916 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11A,
917 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400918 }
919 }
920 else if (byPktType == PK_TYPE_11B) {
921
922 if ((pvRTS != NULL)) {//RTS_need, non PCF mode
923 //Fill RsvTime
Malcolm Priestley976467d2013-08-16 23:44:04 +0100924 struct vnt_rrv_time_ab *pBuf =
925 (struct vnt_rrv_time_ab *)pvRrvTime;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100926 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 0,
927 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100928 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11B,
929 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400930 //Fill RTS
Malcolm Priestleyfedbfe72013-08-24 12:50:50 +0100931 s_vFillRTSHead(pDevice, byPktType, pvRTS, cbFrameSize, bNeedACK,
932 psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400933 }
934 else { //RTS_needless, non PCF mode
935 //Fill RsvTime
Malcolm Priestley976467d2013-08-16 23:44:04 +0100936 struct vnt_rrv_time_ab *pBuf =
937 (struct vnt_rrv_time_ab *)pvRrvTime;
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100938 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11B,
939 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400940 }
941 }
942 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_vGenerateTxParameter END.\n");
943}
944/*
Andres Moreb902fbf2013-02-25 20:32:51 -0500945 u8 * pbyBuffer,//point to pTxBufHead
Andres More3eaca0d2013-02-25 20:32:52 -0500946 u16 wFragType,//00:Non-Frag, 01:Start, 02:Mid, 03:Last
Andres Morecc856e62010-05-17 21:34:01 -0300947 unsigned int cbFragmentSize,//Hdr+payoad+FCS
Forest Bond92b96792009-06-13 07:38:31 -0400948*/
949
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000950static int s_bPacketToWirelessUsb(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +0100951 struct vnt_tx_buffer *pTxBufHead, int bNeedEncryption,
952 u32 uSkbPacketLen, u32 uDMAIdx, struct ethhdr *psEthHeader,
953 u8 *pPacket, PSKeyItem pTransmitKey, u32 uNodeIndex, u16 wCurrentRate,
954 u32 *pcbHeaderLen, u32 *pcbTotalLen)
Forest Bond92b96792009-06-13 07:38:31 -0400955{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000956 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
957 u32 cbFrameSize, cbFrameBodySize;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000958 u32 cb802_1_H_len;
959 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbMACHdLen = 0;
960 u32 cbFCSlen = 4, cbMICHDR = 0;
961 int bNeedACK, bRTS;
962 u8 *pbyType, *pbyMacHdr, *pbyIVHead, *pbyPayloadHead, *pbyTxBufferAddr;
963 u8 abySNAP_RFC1042[ETH_ALEN] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
964 u8 abySNAP_Bridgetunnel[ETH_ALEN]
965 = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
966 u32 uDuration;
967 u32 cbHeaderLength = 0, uPadding = 0;
968 void *pvRrvTime;
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +0100969 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000970 void *pvRTS;
971 void *pvCTS;
972 void *pvTxDataHd;
973 u8 byFBOption = AUTO_FB_NONE, byFragType;
974 u16 wTxBufSize;
Malcolm Priestley4235f722013-08-24 12:42:01 +0100975 u32 dwMICKey0, dwMICKey1, dwMIC_Priority;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000976 u32 *pdwMIC_L, *pdwMIC_R;
Andres Moree269fc22013-02-12 20:36:29 -0500977 int bSoftWEP = false;
Forest Bond92b96792009-06-13 07:38:31 -0400978
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000979 pvRrvTime = pMICHDR = pvRTS = pvCTS = pvTxDataHd = NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400980
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000981 if (bNeedEncryption && pTransmitKey->pvKeyTable) {
Andres More4e9b5e22013-02-12 20:36:30 -0500982 if (((PSKeyTable)pTransmitKey->pvKeyTable)->bSoftWEP == true)
983 bSoftWEP = true; /* WEP 256 */
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000984 }
Forest Bond92b96792009-06-13 07:38:31 -0400985
Forest Bond92b96792009-06-13 07:38:31 -0400986 // Get pkt type
Andres Moreceb8c5d2013-03-18 20:33:49 -0500987 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Forest Bond92b96792009-06-13 07:38:31 -0400988 if (pDevice->dwDiagRefCount == 0) {
989 cb802_1_H_len = 8;
990 } else {
991 cb802_1_H_len = 2;
992 }
993 } else {
994 cb802_1_H_len = 0;
995 }
996
Charles Clément21ec51f2010-05-18 10:08:14 -0700997 cbFrameBodySize = uSkbPacketLen - ETH_HLEN + cb802_1_H_len;
Forest Bond92b96792009-06-13 07:38:31 -0400998
999 //Set packet type
Andres More3eaca0d2013-02-25 20:32:52 -05001000 pTxBufHead->wFIFOCtl |= (u16)(byPktType<<8);
Forest Bond92b96792009-06-13 07:38:31 -04001001
1002 if (pDevice->dwDiagRefCount != 0) {
Andres Moree269fc22013-02-12 20:36:29 -05001003 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001004 pTxBufHead->wFIFOCtl = pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1005 } else { //if (pDevice->dwDiagRefCount != 0) {
Andres More22040bb2010-08-02 20:21:44 -03001006 if ((pDevice->eOPMode == OP_MODE_ADHOC) ||
1007 (pDevice->eOPMode == OP_MODE_AP)) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001008 if (is_multicast_ether_addr(psEthHeader->h_dest)) {
Andres Moree269fc22013-02-12 20:36:29 -05001009 bNeedACK = false;
Andres More22040bb2010-08-02 20:21:44 -03001010 pTxBufHead->wFIFOCtl =
1011 pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1012 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001013 bNeedACK = true;
Andres More22040bb2010-08-02 20:21:44 -03001014 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1015 }
Forest Bond92b96792009-06-13 07:38:31 -04001016 }
1017 else {
1018 // MSDUs in Infra mode always need ACK
Andres More4e9b5e22013-02-12 20:36:30 -05001019 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001020 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1021 }
1022 } //if (pDevice->dwDiagRefCount != 0) {
1023
1024 pTxBufHead->wTimeStamp = DEFAULT_MSDU_LIFETIME_RES_64us;
1025
1026 //Set FIFOCTL_LHEAD
1027 if (pDevice->bLongHeader)
1028 pTxBufHead->wFIFOCtl |= FIFOCTL_LHEAD;
1029
Forest Bond92b96792009-06-13 07:38:31 -04001030 //Set FRAGCTL_MACHDCNT
1031 if (pDevice->bLongHeader) {
1032 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
1033 } else {
1034 cbMACHdLen = WLAN_HDR_ADDR3_LEN;
1035 }
Andres More3eaca0d2013-02-25 20:32:52 -05001036 pTxBufHead->wFragCtl |= (u16)(cbMACHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001037
1038 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001039 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001040 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1041 }
1042
1043 //Set Auto Fallback Ctl
1044 if (wCurrentRate >= RATE_18M) {
1045 if (pDevice->byAutoFBCtrl == AUTO_FB_0) {
1046 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
1047 byFBOption = AUTO_FB_0;
1048 } else if (pDevice->byAutoFBCtrl == AUTO_FB_1) {
1049 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
1050 byFBOption = AUTO_FB_1;
1051 }
1052 }
1053
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]);
Forest Bond92b96792009-06-13 07:38:31 -04001101 wTxBufSize = sizeof(STxBufHead);
1102 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1103 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001104 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001105 pvRrvTime = (struct vnt_rrv_time_rts *)
1106 (pbyTxBufferAddr + wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001107 pMICHDR = (struct vnt_mic_hdr *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley6398a592013-08-16 21:26:55 +01001108 sizeof(struct vnt_rrv_time_rts));
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001109 pvRTS = (struct vnt_rts_g *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley6398a592013-08-16 21:26:55 +01001110 sizeof(struct vnt_rrv_time_rts) + cbMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001111 pvCTS = NULL;
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001112 pvTxDataHd = (struct vnt_tx_datahead_g *) (pbyTxBufferAddr +
1113 wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1114 cbMICHDR + sizeof(struct vnt_rts_g));
Malcolm Priestley6398a592013-08-16 21:26:55 +01001115 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001116 cbMICHDR + sizeof(struct vnt_rts_g) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001117 sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001118 }
1119 else { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001120 pvRrvTime = (struct vnt_rrv_time_cts *)
1121 (pbyTxBufferAddr + wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001122 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001123 sizeof(struct vnt_rrv_time_cts));
Forest Bond92b96792009-06-13 07:38:31 -04001124 pvRTS = NULL;
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001125 pvCTS = (struct vnt_cts *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001126 sizeof(struct vnt_rrv_time_cts) + cbMICHDR);
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001127 pvTxDataHd = (struct vnt_tx_datahead_g *)(pbyTxBufferAddr +
1128 wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1129 cbMICHDR + sizeof(struct vnt_cts));
Malcolm Priestley4f990052013-08-16 23:38:57 +01001130 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1131 cbMICHDR + sizeof(struct vnt_cts) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001132 sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001133 }
1134 } else {
1135 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001136 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001137 pvRrvTime = (struct vnt_rrv_time_rts *)(pbyTxBufferAddr +
1138 wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001139 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley6398a592013-08-16 21:26:55 +01001140 sizeof(struct vnt_rrv_time_rts));
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001141 pvRTS = (struct vnt_rts_g_fb *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley6398a592013-08-16 21:26:55 +01001142 sizeof(struct vnt_rrv_time_rts) + cbMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001143 pvCTS = NULL;
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001144 pvTxDataHd = (struct vnt_tx_datahead_g_fb *) (pbyTxBufferAddr +
1145 wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1146 cbMICHDR + sizeof(struct vnt_rts_g_fb));
Malcolm Priestley6398a592013-08-16 21:26:55 +01001147 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1148 cbMICHDR + sizeof(struct vnt_rts_g_fb) +
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001149 sizeof(struct vnt_tx_datahead_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001150 }
Andres Moree269fc22013-02-12 20:36:29 -05001151 else if (bRTS == false) { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001152 pvRrvTime = (struct vnt_rrv_time_cts *)
1153 (pbyTxBufferAddr + wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001154 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001155 sizeof(struct vnt_rrv_time_cts));
Forest Bond92b96792009-06-13 07:38:31 -04001156 pvRTS = NULL;
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001157 pvCTS = (struct vnt_cts_fb *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001158 sizeof(struct vnt_rrv_time_cts) + cbMICHDR);
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001159 pvTxDataHd = (struct vnt_tx_datahead_g_fb *) (pbyTxBufferAddr +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001160 wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1161 cbMICHDR + sizeof(struct vnt_cts_fb));
1162 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001163 cbMICHDR + sizeof(struct vnt_cts_fb) +
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001164 sizeof(struct vnt_tx_datahead_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001165 }
1166 } // Auto Fall Back
1167 }
1168 else {//802.11a/b packet
1169 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001170 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001171 pvRrvTime = (struct vnt_rrv_time_ab *) (pbyTxBufferAddr +
1172 wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001173 pMICHDR = (struct vnt_mic_hdr *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001174 sizeof(struct vnt_rrv_time_ab));
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001175 pvRTS = (struct vnt_rts_ab *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001176 sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001177 pvCTS = NULL;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001178 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
1179 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001180 sizeof(struct vnt_rts_ab));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001181 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
1182 cbMICHDR + sizeof(struct vnt_rts_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001183 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001184 }
Andres Moree269fc22013-02-12 20:36:29 -05001185 else if (bRTS == false) { //RTS_needless, no MICHDR
Malcolm Priestley976467d2013-08-16 23:44:04 +01001186 pvRrvTime = (struct vnt_rrv_time_ab *)(pbyTxBufferAddr +
1187 wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001188 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001189 sizeof(struct vnt_rrv_time_ab));
Forest Bond92b96792009-06-13 07:38:31 -04001190 pvRTS = NULL;
1191 pvCTS = NULL;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001192 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
1193 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01001194 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001195 cbMICHDR + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001196 }
1197 } else {
1198 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001199 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001200 pvRrvTime = (struct vnt_rrv_time_ab *)(pbyTxBufferAddr +
1201 wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001202 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001203 sizeof(struct vnt_rrv_time_ab));
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001204 pvRTS = (struct vnt_rts_a_fb *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001205 sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001206 pvCTS = NULL;
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001207 pvTxDataHd = (struct vnt_tx_datahead_a_fb *)(pbyTxBufferAddr +
1208 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001209 sizeof(struct vnt_rts_a_fb));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001210 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
1211 cbMICHDR + sizeof(struct vnt_rts_a_fb) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001212 sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001213 }
Andres Moree269fc22013-02-12 20:36:29 -05001214 else if (bRTS == false) { //RTS_needless
Malcolm Priestley976467d2013-08-16 23:44:04 +01001215 pvRrvTime = (struct vnt_rrv_time_ab *)(pbyTxBufferAddr +
1216 wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001217 pMICHDR = (struct vnt_mic_hdr *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001218 sizeof(struct vnt_rrv_time_ab));
Forest Bond92b96792009-06-13 07:38:31 -04001219 pvRTS = NULL;
1220 pvCTS = NULL;
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001221 pvTxDataHd = (struct vnt_tx_datahead_a_fb *)(pbyTxBufferAddr +
1222 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01001223 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001224 cbMICHDR + sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001225 }
1226 } // Auto Fall Back
1227 }
1228
Andres Moreb902fbf2013-02-25 20:32:51 -05001229 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderLength);
1230 pbyIVHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding);
1231 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001232
Forest Bond92b96792009-06-13 07:38:31 -04001233 //=========================
1234 // No Fragmentation
1235 //=========================
1236 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Fragmentation...\n");
1237 byFragType = FRAGCTL_NONFRAG;
1238 //uDMAIdx = TYPE_AC0DMA;
1239 //pTxBufHead = (PSTxBufHead) &(pTxBufHead->adwTxKey[0]);
1240
Forest Bond92b96792009-06-13 07:38:31 -04001241 //Fill FIFO,RrvTime,RTS,and CTS
Andres More8611a292010-05-01 14:25:00 -03001242 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
1243 (void *)pbyTxBufferAddr, pvRrvTime, pvRTS, pvCTS,
Forest Bond92b96792009-06-13 07:38:31 -04001244 cbFrameSize, bNeedACK, uDMAIdx, psEthHeader);
1245 //Fill DataHead
1246 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, uDMAIdx, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01001247 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -04001248 // Generate TX MAC Header
Andres More3eaca0d2013-02-25 20:32:52 -05001249 s_vGenerateMACHeader(pDevice, pbyMacHdr, (u16)uDuration, psEthHeader, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04001250 byFragType, uDMAIdx, 0);
1251
Andres More4e9b5e22013-02-12 20:36:30 -05001252 if (bNeedEncryption == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001253 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001254 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01001255 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001256
1257 if (pDevice->bEnableHostWEP) {
1258 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
1259 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
1260 }
1261 }
1262
1263 // 802.1H
Andres Moreceb8c5d2013-03-18 20:33:49 -05001264 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Andres More203e4612010-08-04 19:12:34 -03001265 if (pDevice->dwDiagRefCount == 0) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001266 if ((psEthHeader->h_proto == cpu_to_be16(ETH_P_IPX)) ||
1267 (psEthHeader->h_proto == cpu_to_le16(0xF380))) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001268 memcpy((u8 *) (pbyPayloadHead),
Andres More203e4612010-08-04 19:12:34 -03001269 abySNAP_Bridgetunnel, 6);
Forest Bond92b96792009-06-13 07:38:31 -04001270 } else {
Andres Moreb902fbf2013-02-25 20:32:51 -05001271 memcpy((u8 *) (pbyPayloadHead), &abySNAP_RFC1042[0], 6);
Forest Bond92b96792009-06-13 07:38:31 -04001272 }
Andres Moreb902fbf2013-02-25 20:32:51 -05001273 pbyType = (u8 *) (pbyPayloadHead + 6);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001274 memcpy(pbyType, &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001275 } else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001276 memcpy((u8 *) (pbyPayloadHead), &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001277
1278 }
1279
1280 }
1281
Forest Bond92b96792009-06-13 07:38:31 -04001282 if (pPacket != NULL) {
1283 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001284 memcpy((pbyPayloadHead + cb802_1_H_len),
Charles Clément21ec51f2010-05-18 10:08:14 -07001285 (pPacket + ETH_HLEN),
1286 uSkbPacketLen - ETH_HLEN
Forest Bond92b96792009-06-13 07:38:31 -04001287 );
1288
1289 } else {
1290 // while bRelayPacketSend psEthHeader is point to header+payload
Andres Moreb902fbf2013-02-25 20:32:51 -05001291 memcpy((pbyPayloadHead + cb802_1_H_len), ((u8 *)psEthHeader) + ETH_HLEN, uSkbPacketLen - ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001292 }
1293
Andres More4e9b5e22013-02-12 20:36:30 -05001294 if ((bNeedEncryption == true) && (pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
Forest Bond92b96792009-06-13 07:38:31 -04001295
1296 ///////////////////////////////////////////////////////////////////
1297
Malcolm Priestley14c5ef52013-01-17 23:19:37 +00001298 if (pDevice->vnt_mgmt.eAuthenMode == WMAC_AUTH_WPANONE) {
1299 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1300 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
1301 }
Forest Bond92b96792009-06-13 07:38:31 -04001302 else if ((pTransmitKey->dwKeyIndex & AUTHENTICATOR_KEY) != 0) {
Andres More52a7e642013-02-25 20:32:53 -05001303 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1304 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04001305 }
1306 else {
Andres More52a7e642013-02-25 20:32:53 -05001307 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[24]);
1308 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[28]);
Forest Bond92b96792009-06-13 07:38:31 -04001309 }
1310 // DO Software Michael
1311 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001312 MIC_vAppend((u8 *)&(psEthHeader->h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04001313 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05001314 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001315 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC KEY: %X, %X\n",
1316 dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04001317
1318 ///////////////////////////////////////////////////////////////////
1319
1320 //DBG_PRN_GRP12(("Length:%d, %d\n", cbFrameBodySize, uFromHDtoPLDLength));
1321 //for (ii = 0; ii < cbFrameBodySize; ii++) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001322 // DBG_PRN_GRP12(("%02x ", *((u8 *)((pbyPayloadHead + cb802_1_H_len) + ii))));
Forest Bond92b96792009-06-13 07:38:31 -04001323 //}
1324 //DBG_PRN_GRP12(("\n\n\n"));
1325
1326 MIC_vAppend(pbyPayloadHead, cbFrameBodySize);
1327
Andres More52a7e642013-02-25 20:32:53 -05001328 pdwMIC_L = (u32 *)(pbyPayloadHead + cbFrameBodySize);
1329 pdwMIC_R = (u32 *)(pbyPayloadHead + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04001330
1331 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
1332 MIC_vUnInit();
1333
Andres More4e9b5e22013-02-12 20:36:30 -05001334 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001335 *pdwMIC_L = 0;
1336 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001337 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04001338 }
1339 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
1340 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderLength, uPadding, cbIVlen);
1341 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%lX, %lX\n", *pdwMIC_L, *pdwMIC_R);
1342 }
1343
Andres More4e9b5e22013-02-12 20:36:30 -05001344 if (bSoftWEP == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001345
Andres More3eaca0d2013-02-25 20:32:52 -05001346 s_vSWencryption(pDevice, pTransmitKey, (pbyPayloadHead), (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04001347
Andres More4e9b5e22013-02-12 20:36:30 -05001348 } else if ( ((pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) && (bNeedEncryption == true)) ||
1349 ((pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) && (bNeedEncryption == true)) ||
1350 ((pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) && (bNeedEncryption == true)) ) {
Forest Bond92b96792009-06-13 07:38:31 -04001351 cbFrameSize -= cbICVlen;
1352 }
1353
Forest Bond92b96792009-06-13 07:38:31 -04001354 cbFrameSize -= cbFCSlen;
Forest Bond92b96792009-06-13 07:38:31 -04001355
1356 *pcbHeaderLen = cbHeaderLength;
1357 *pcbTotalLen = cbHeaderLength + cbFrameSize ;
1358
Forest Bond92b96792009-06-13 07:38:31 -04001359 //Set FragCtl in TxBufferHead
Andres More3eaca0d2013-02-25 20:32:52 -05001360 pTxBufHead->wFragCtl |= (u16)byFragType;
Forest Bond92b96792009-06-13 07:38:31 -04001361
Andres More4e9b5e22013-02-12 20:36:30 -05001362 return true;
Forest Bond92b96792009-06-13 07:38:31 -04001363
1364}
1365
Forest Bond92b96792009-06-13 07:38:31 -04001366/*+
1367 *
1368 * Description:
1369 * Translate 802.3 to 802.11 header
1370 *
1371 * Parameters:
1372 * In:
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001373 * pDevice - Pointer to adapter
Forest Bond92b96792009-06-13 07:38:31 -04001374 * dwTxBufferAddr - Transmit Buffer
1375 * pPacket - Packet from upper layer
1376 * cbPacketSize - Transmit Data Length
1377 * Out:
1378 * pcbHeadSize - Header size of MAC&Baseband control and 802.11 Header
1379 * pcbAppendPayload - size of append payload for 802.1H translation
1380 *
1381 * Return Value: none
1382 *
1383-*/
1384
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001385static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -05001386 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001387 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx)
Forest Bond92b96792009-06-13 07:38:31 -04001388{
Andres More1cac4a42013-03-18 20:33:50 -05001389 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyBufferAddr;
Forest Bond92b96792009-06-13 07:38:31 -04001390
Malcolm Priestleyc921cc82013-08-20 20:47:49 +01001391 pMACHeader->frame_control = TYPE_802_11_DATA;
Forest Bond92b96792009-06-13 07:38:31 -04001392
1393 if (pDevice->eOPMode == OP_MODE_AP) {
Andres More1cac4a42013-03-18 20:33:50 -05001394 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001395 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001396 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001397 memcpy(&(pMACHeader->addr2[0]), &(pDevice->abyBSSID[0]), ETH_ALEN);
1398 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001399 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001400 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001401 pMACHeader->frame_control |= FC_FROMDS;
Andres More9a0e7562010-04-13 21:54:48 -03001402 } else {
1403 if (pDevice->eOPMode == OP_MODE_ADHOC) {
Andres More1cac4a42013-03-18 20:33:50 -05001404 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001405 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001406 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001407 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001408 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001409 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001410 memcpy(&(pMACHeader->addr3[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001411 &(pDevice->abyBSSID[0]),
1412 ETH_ALEN);
1413 } else {
Andres More1cac4a42013-03-18 20:33:50 -05001414 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001415 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001416 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001417 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001418 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001419 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001420 memcpy(&(pMACHeader->addr1[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001421 &(pDevice->abyBSSID[0]),
1422 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001423 pMACHeader->frame_control |= FC_TODS;
Forest Bond92b96792009-06-13 07:38:31 -04001424 }
1425 }
1426
1427 if (bNeedEncrypt)
Andres More1cac4a42013-03-18 20:33:50 -05001428 pMACHeader->frame_control |= cpu_to_le16((u16)WLAN_SET_FC_ISWEP(1));
Forest Bond92b96792009-06-13 07:38:31 -04001429
Andres More1cac4a42013-03-18 20:33:50 -05001430 pMACHeader->duration_id = cpu_to_le16(wDuration);
Forest Bond92b96792009-06-13 07:38:31 -04001431
1432 if (pDevice->bLongHeader) {
1433 PWLAN_80211HDR_A4 pMACA4Header = (PWLAN_80211HDR_A4) pbyBufferAddr;
Andres More1cac4a42013-03-18 20:33:50 -05001434 pMACHeader->frame_control |= (FC_TODS | FC_FROMDS);
Jim Lieb3e362592009-08-12 14:54:11 -07001435 memcpy(pMACA4Header->abyAddr4, pDevice->abyBSSID, WLAN_ADDR_LEN);
Forest Bond92b96792009-06-13 07:38:31 -04001436 }
Andres More1cac4a42013-03-18 20:33:50 -05001437 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001438
1439 //Set FragNumber in Sequence Control
Andres More1cac4a42013-03-18 20:33:50 -05001440 pMACHeader->seq_ctrl |= cpu_to_le16((u16)uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -04001441
1442 if ((wFragType == FRAGCTL_ENDFRAG) || (wFragType == FRAGCTL_NONFRAG)) {
1443 pDevice->wSeqCounter++;
1444 if (pDevice->wSeqCounter > 0x0fff)
1445 pDevice->wSeqCounter = 0;
1446 }
1447
1448 if ((wFragType == FRAGCTL_STAFRAG) || (wFragType == FRAGCTL_MIDFRAG)) { //StartFrag or MidFrag
Andres More1cac4a42013-03-18 20:33:50 -05001449 pMACHeader->frame_control |= FC_MOREFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001450 }
1451}
1452
Forest Bond92b96792009-06-13 07:38:31 -04001453/*+
1454 *
1455 * Description:
1456 * Request instructs a MAC to transmit a 802.11 management packet through
1457 * the adapter onto the medium.
1458 *
1459 * Parameters:
1460 * In:
1461 * hDeviceContext - Pointer to the adapter
1462 * pPacket - A pointer to a descriptor for the packet to transmit
1463 * Out:
1464 * none
1465 *
Andres Moree269fc22013-02-12 20:36:29 -05001466 * Return Value: CMD_STATUS_PENDING if MAC Tx resource available; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04001467 *
1468-*/
1469
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001470CMD_STATUS csMgmt_xmit(struct vnt_private *pDevice,
1471 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001472{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001473 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001474 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001475 PSTxBufHead pTxBufHead;
1476 PUSB_SEND_CONTEXT pContext;
Andres More1cac4a42013-03-18 20:33:50 -05001477 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001478 struct vnt_cts *pCTS;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001479 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001480 u8 byPktType, *pbyTxBufferAddr;
1481 void *pvRTS, *pvTxDataHd, *pvRrvTime, *pMICHDR;
1482 u32 uDuration, cbReqCount, cbHeaderSize, cbFrameBodySize, cbFrameSize;
Andres Moree269fc22013-02-12 20:36:29 -05001483 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001484 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1485 u32 uPadding = 0;
1486 u16 wTxBufSize;
1487 u32 cbMacHdLen;
1488 u16 wCurrentRate = RATE_1M;
Forest Bond92b96792009-06-13 07:38:31 -04001489
Forest Bond92b96792009-06-13 07:38:31 -04001490 pContext = (PUSB_SEND_CONTEXT)s_vGetFreeContext(pDevice);
1491
1492 if (NULL == pContext) {
1493 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1494 return CMD_STATUS_RESOURCES;
1495 }
1496
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001497 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001498 pbyTxBufferAddr = (u8 *)&(pTX_Buffer->adwTxKey[0]);
Forest Bond92b96792009-06-13 07:38:31 -04001499 cbFrameBodySize = pPacket->cbPayloadLen;
1500 pTxBufHead = (PSTxBufHead) pbyTxBufferAddr;
1501 wTxBufSize = sizeof(STxBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001502
1503 if (pDevice->byBBType == BB_TYPE_11A) {
1504 wCurrentRate = RATE_6M;
1505 byPktType = PK_TYPE_11A;
1506 } else {
1507 wCurrentRate = RATE_1M;
1508 byPktType = PK_TYPE_11B;
1509 }
1510
1511 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1512 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1513 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1514 // to set power here.
1515 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1516 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1517 } else {
1518 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1519 }
1520 pDevice->wCurrentRate = wCurrentRate;
1521
Forest Bond92b96792009-06-13 07:38:31 -04001522 //Set packet type
1523 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1524 pTxBufHead->wFIFOCtl = 0;
1525 }
1526 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1527 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1528 }
1529 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1530 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1531 }
1532 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1533 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1534 }
1535
1536 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1537 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1538
Andres More22040bb2010-08-02 20:21:44 -03001539 if (is_multicast_ether_addr(pPacket->p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001540 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001541 }
1542 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001543 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001544 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1545 };
1546
1547 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1548 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1549
1550 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1551 //Set Preamble type always long
1552 //pDevice->byPreambleType = PREAMBLE_LONG;
1553 // probe-response don't retry
1554 //if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001555 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001556 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1557 //}
1558 }
1559
1560 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1561
1562 if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001563 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001564 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1565 } else {
1566 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1567 }
1568
1569 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001570 pTxBufHead->wFragCtl |= cpu_to_le16((u16)(cbMacHdLen << 10));
Forest Bond92b96792009-06-13 07:38:31 -04001571
1572 // Notes:
1573 // Although spec says MMPDU can be fragmented; In most case,
1574 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001575 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001576
1577 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
1578 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1579 cbIVlen = 4;
1580 cbICVlen = 4;
1581 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1582 }
1583 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1584 cbIVlen = 8;//IV+ExtIV
1585 cbMIClen = 8;
1586 cbICVlen = 4;
1587 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1588 //We need to get seed here for filling TxKey entry.
1589 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1590 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1591 }
1592 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1593 cbIVlen = 8;//RSN Header
1594 cbICVlen = 8;//MIC
1595 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001596 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001597 }
1598 //MAC Header should be padding 0 to DW alignment.
1599 uPadding = 4 - (cbMacHdLen%4);
1600 uPadding %= 4;
1601 }
1602
1603 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen;
1604
1605 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001606 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001607 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1608 }
1609 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1610
1611 //Set RrvTime/RTS/CTS Buffer
1612 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1613
Malcolm Priestley4f990052013-08-16 23:38:57 +01001614 pvRrvTime = (struct vnt_rrv_time_cts *) (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001615 pMICHDR = NULL;
1616 pvRTS = NULL;
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001617 pCTS = (struct vnt_cts *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001618 sizeof(struct vnt_rrv_time_cts));
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001619 pvTxDataHd = (struct vnt_tx_datahead_g *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001620 sizeof(struct vnt_rrv_time_cts) + sizeof(struct vnt_cts));
1621 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001622 sizeof(struct vnt_cts) + sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001623 }
1624 else { // 802.11a/b packet
Malcolm Priestley976467d2013-08-16 23:44:04 +01001625 pvRrvTime = (struct vnt_rrv_time_ab *) (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001626 pMICHDR = NULL;
1627 pvRTS = NULL;
1628 pCTS = NULL;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001629 pvTxDataHd = (struct vnt_tx_datahead_ab *) (pbyTxBufferAddr +
1630 wTxBufSize + sizeof(struct vnt_rrv_time_ab));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001631 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001632 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001633 }
1634
Andres Moreceb8c5d2013-03-18 20:33:49 -05001635 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001636 &(pPacket->p80211Header->sA3.abyAddr1[0]),
1637 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001638 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001639 &(pPacket->p80211Header->sA3.abyAddr2[0]),
1640 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001641 //=========================
1642 // No Fragmentation
1643 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001644 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001645
Forest Bond92b96792009-06-13 07:38:31 -04001646 //Fill FIFO,RrvTime,RTS,and CTS
1647 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate, pbyTxBufferAddr, pvRrvTime, pvRTS, pCTS,
1648 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader);
1649
1650 //Fill DataHead
1651 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, TYPE_TXDMA0, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01001652 AUTO_FB_NONE);
Forest Bond92b96792009-06-13 07:38:31 -04001653
Andres More1cac4a42013-03-18 20:33:50 -05001654 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001655
1656 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + cbFrameBodySize;
1657
1658 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001659 u8 * pbyIVHead;
1660 u8 * pbyPayloadHead;
1661 u8 * pbyBSSID;
Forest Bond92b96792009-06-13 07:38:31 -04001662 PSKeyItem pTransmitKey = NULL;
1663
Andres Moreb902fbf2013-02-25 20:32:51 -05001664 pbyIVHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding);
1665 pbyPayloadHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001666 do {
1667 if ((pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) &&
Andres More4e9b5e22013-02-12 20:36:30 -05001668 (pDevice->bLinkPass == true)) {
Forest Bond92b96792009-06-13 07:38:31 -04001669 pbyBSSID = pDevice->abyBSSID;
1670 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001671 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001672 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001673 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001674 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1675 break;
1676 }
1677 } else {
1678 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get PTK.\n");
1679 break;
1680 }
1681 }
1682 // get group key
1683 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001684 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001685 pTransmitKey = NULL;
1686 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"KEY is NULL. OP Mode[%d]\n", pDevice->eOPMode);
1687 } else {
1688 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1689 }
Andres Moree269fc22013-02-12 20:36:29 -05001690 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001691 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001692 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Andres More3eaca0d2013-02-25 20:32:52 -05001693 (u8 *)pMACHeader, (u16)cbFrameBodySize, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001694
Jim Lieb3e362592009-08-12 14:54:11 -07001695 memcpy(pMACHeader, pPacket->p80211Header, cbMacHdLen);
Andres Moreb902fbf2013-02-25 20:32:51 -05001696 memcpy(pbyPayloadHead, ((u8 *)(pPacket->p80211Header) + cbMacHdLen),
Forest Bond92b96792009-06-13 07:38:31 -04001697 cbFrameBodySize);
1698 }
1699 else {
1700 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001701 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001702 }
1703
Andres More1cac4a42013-03-18 20:33:50 -05001704 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001705 pDevice->wSeqCounter++ ;
1706 if (pDevice->wSeqCounter > 0x0fff)
1707 pDevice->wSeqCounter = 0;
1708
1709 if (bIsPSPOLL) {
1710 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001711 // of FIFO control header.
Forest Bond92b96792009-06-13 07:38:31 -04001712 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
1713 // in the same place of other packet's Duration-field).
1714 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001715 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
1716 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_a =
1717 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1718 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_b =
1719 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1720 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +01001721 ((struct vnt_tx_datahead_ab *)pvTxDataHd)->wDuration =
1722 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1723 }
Forest Bond92b96792009-06-13 07:38:31 -04001724 }
1725
Andres More3eaca0d2013-02-25 20:32:52 -05001726 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05001727 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001728 pTX_Buffer->byType = 0x00;
1729
1730 pContext->pPacket = NULL;
1731 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001732 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001733
Andres More1cac4a42013-03-18 20:33:50 -05001734 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
1735 s_vSaveTxPktInfo(pDevice, (u8) (pTX_Buffer->byPKTNO & 0x0F), &(pMACHeader->addr1[0]), (u16)cbFrameSize, pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001736 }
1737 else {
Andres More1cac4a42013-03-18 20:33:50 -05001738 s_vSaveTxPktInfo(pDevice, (u8) (pTX_Buffer->byPKTNO & 0x0F), &(pMACHeader->addr3[0]), (u16)cbFrameSize, pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001739 }
1740
1741 PIPEnsSendBulkOut(pDevice,pContext);
1742 return CMD_STATUS_PENDING;
1743}
1744
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001745CMD_STATUS csBeacon_xmit(struct vnt_private *pDevice,
1746 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001747{
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001748 struct vnt_beacon_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001749 u32 cbFrameSize = pPacket->cbMPDULen + WLAN_FCS_LEN;
1750 u32 cbHeaderSize = 0;
1751 u16 wTxBufSize = sizeof(STxShortBufHead);
1752 PSTxShortBufHead pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001753 struct ieee80211_hdr *pMACHeader;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001754 struct vnt_tx_datahead_ab *pTxDataHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001755 u16 wCurrentRate;
1756 u32 cbFrameBodySize;
1757 u32 cbReqCount;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001758 u8 *pbyTxBufferAddr;
1759 PUSB_SEND_CONTEXT pContext;
1760 CMD_STATUS status;
Forest Bond92b96792009-06-13 07:38:31 -04001761
Forest Bond92b96792009-06-13 07:38:31 -04001762 pContext = (PUSB_SEND_CONTEXT)s_vGetFreeContext(pDevice);
1763 if (NULL == pContext) {
1764 status = CMD_STATUS_RESOURCES;
1765 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1766 return status ;
1767 }
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001768
1769 pTX_Buffer = (struct vnt_beacon_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001770 pbyTxBufferAddr = (u8 *)&(pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001771
1772 cbFrameBodySize = pPacket->cbPayloadLen;
1773
1774 pTxBufHead = (PSTxShortBufHead) pbyTxBufferAddr;
1775 wTxBufSize = sizeof(STxShortBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001776
1777 if (pDevice->byBBType == BB_TYPE_11A) {
1778 wCurrentRate = RATE_6M;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001779 pTxDataHead = (struct vnt_tx_datahead_ab *)
1780 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001781 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001782 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11A,
1783 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001784 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001785 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001786 PK_TYPE_11A, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001787 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001788 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001789 } else {
1790 wCurrentRate = RATE_1M;
1791 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001792 pTxDataHead = (struct vnt_tx_datahead_ab *)
1793 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001794 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001795 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11B,
1796 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001797 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001798 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001799 PK_TYPE_11B, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001800 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001801 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001802 }
1803
1804 //Generate Beacon Header
Andres More1cac4a42013-03-18 20:33:50 -05001805 pMACHeader = (struct ieee80211_hdr *)(pbyTxBufferAddr + cbHeaderSize);
Jim Lieb3e362592009-08-12 14:54:11 -07001806 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001807
Andres More1cac4a42013-03-18 20:33:50 -05001808 pMACHeader->duration_id = 0;
1809 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001810 pDevice->wSeqCounter++ ;
1811 if (pDevice->wSeqCounter > 0x0fff)
1812 pDevice->wSeqCounter = 0;
1813
1814 cbReqCount = cbHeaderSize + WLAN_HDR_ADDR3_LEN + cbFrameBodySize;
1815
Andres More3eaca0d2013-02-25 20:32:52 -05001816 pTX_Buffer->wTxByteCount = (u16)cbReqCount;
Andres Moreb902fbf2013-02-25 20:32:51 -05001817 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001818 pTX_Buffer->byType = 0x01;
1819
1820 pContext->pPacket = NULL;
1821 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001822 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001823
1824 PIPEnsSendBulkOut(pDevice,pContext);
1825 return CMD_STATUS_PENDING;
1826
1827}
1828
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001829void vDMA0_tx_80211(struct vnt_private *pDevice, struct sk_buff *skb)
1830{
1831 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001832 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001833 u8 byPktType;
1834 u8 *pbyTxBufferAddr;
1835 void *pvRTS, *pvCTS, *pvTxDataHd;
1836 u32 uDuration, cbReqCount;
Andres More1cac4a42013-03-18 20:33:50 -05001837 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001838 u32 cbHeaderSize, cbFrameBodySize;
Andres Moree269fc22013-02-12 20:36:29 -05001839 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001840 PSTxBufHead pTxBufHead;
1841 u32 cbFrameSize;
1842 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1843 u32 uPadding = 0;
1844 u32 cbMICHDR = 0, uLength = 0;
1845 u32 dwMICKey0, dwMICKey1;
1846 u32 dwMIC_Priority;
1847 u32 *pdwMIC_L, *pdwMIC_R;
1848 u16 wTxBufSize;
1849 u32 cbMacHdLen;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001850 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001851 void *pvRrvTime, *pMICHDR;
1852 u32 wCurrentRate = RATE_1M;
1853 PUWLAN_80211HDR p80211Header;
1854 u32 uNodeIndex = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001855 int bNodeExist = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001856 SKeyItem STempKey;
1857 PSKeyItem pTransmitKey = NULL;
1858 u8 *pbyIVHead, *pbyPayloadHead, *pbyMacHdr;
1859 u32 cbExtSuppRate = 0;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001860 PUSB_SEND_CONTEXT pContext;
Forest Bond92b96792009-06-13 07:38:31 -04001861
Forest Bond92b96792009-06-13 07:38:31 -04001862 pvRrvTime = pMICHDR = pvRTS = pvCTS = pvTxDataHd = NULL;
1863
1864 if(skb->len <= WLAN_HDR_ADDR3_LEN) {
1865 cbFrameBodySize = 0;
1866 }
1867 else {
1868 cbFrameBodySize = skb->len - WLAN_HDR_ADDR3_LEN;
1869 }
1870 p80211Header = (PUWLAN_80211HDR)skb->data;
1871
1872 pContext = (PUSB_SEND_CONTEXT)s_vGetFreeContext(pDevice);
1873
1874 if (NULL == pContext) {
1875 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0 TX...NO CONTEXT!\n");
1876 dev_kfree_skb_irq(skb);
1877 return ;
1878 }
1879
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001880 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001881 pbyTxBufferAddr = (u8 *)(&pTX_Buffer->adwTxKey[0]);
Forest Bond92b96792009-06-13 07:38:31 -04001882 pTxBufHead = (PSTxBufHead) pbyTxBufferAddr;
1883 wTxBufSize = sizeof(STxBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001884
1885 if (pDevice->byBBType == BB_TYPE_11A) {
1886 wCurrentRate = RATE_6M;
1887 byPktType = PK_TYPE_11A;
1888 } else {
1889 wCurrentRate = RATE_1M;
1890 byPktType = PK_TYPE_11B;
1891 }
1892
1893 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1894 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1895 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1896 // to set power here.
1897 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1898 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1899 } else {
1900 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1901 }
1902
1903 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"vDMA0_tx_80211: p80211Header->sA3.wFrameCtl = %x \n", p80211Header->sA3.wFrameCtl);
1904
1905 //Set packet type
1906 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1907 pTxBufHead->wFIFOCtl = 0;
1908 }
1909 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1910 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1911 }
1912 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1913 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1914 }
1915 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1916 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1917 }
1918
1919 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1920 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1921
Andres More22040bb2010-08-02 20:21:44 -03001922 if (is_multicast_ether_addr(p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001923 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001924 if (pDevice->bEnableHostWEP) {
1925 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05001926 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001927 }
Forest Bond92b96792009-06-13 07:38:31 -04001928 }
1929 else {
1930 if (pDevice->bEnableHostWEP) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001931 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(p80211Header->sA3.abyAddr1), &uNodeIndex))
Andres More4e9b5e22013-02-12 20:36:30 -05001932 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001933 }
Andres More4e9b5e22013-02-12 20:36:30 -05001934 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001935 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1936 };
1937
1938 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1939 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1940
1941 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1942 //Set Preamble type always long
1943 //pDevice->byPreambleType = PREAMBLE_LONG;
1944
1945 // probe-response don't retry
1946 //if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001947 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001948 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1949 //}
1950 }
1951
1952 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1953
1954 if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001955 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001956 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1957 } else {
1958 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1959 }
1960
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001961 // hostapd daemon ext support rate patch
Forest Bond92b96792009-06-13 07:38:31 -04001962 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1963
1964 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0) {
1965 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN;
1966 }
1967
1968 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0) {
1969 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN;
1970 }
1971
1972 if (cbExtSuppRate >0) {
1973 cbFrameBodySize = WLAN_ASSOCRESP_OFF_SUPP_RATES;
1974 }
1975 }
1976
Forest Bond92b96792009-06-13 07:38:31 -04001977 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001978 pTxBufHead->wFragCtl |= cpu_to_le16((u16)cbMacHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001979
1980 // Notes:
1981 // Although spec says MMPDU can be fragmented; In most case,
1982 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001983 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001984
Forest Bond92b96792009-06-13 07:38:31 -04001985 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1986 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1987 cbIVlen = 4;
1988 cbICVlen = 4;
1989 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1990 }
1991 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1992 cbIVlen = 8;//IV+ExtIV
1993 cbMIClen = 8;
1994 cbICVlen = 4;
1995 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1996 //We need to get seed here for filling TxKey entry.
1997 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1998 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1999 }
2000 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
2001 cbIVlen = 8;//RSN Header
2002 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01002003 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04002004 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05002005 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04002006 }
2007 //MAC Header should be padding 0 to DW alignment.
2008 uPadding = 4 - (cbMacHdLen%4);
2009 uPadding %= 4;
2010 }
2011
2012 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen + cbExtSuppRate;
2013
2014 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05002015 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04002016 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
2017 }
2018 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
2019
Forest Bond92b96792009-06-13 07:38:31 -04002020 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley4f990052013-08-16 23:38:57 +01002021 pvRrvTime = (struct vnt_rrv_time_cts *) (pbyTxBufferAddr + wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01002022 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01002023 sizeof(struct vnt_rrv_time_cts));
Forest Bond92b96792009-06-13 07:38:31 -04002024 pvRTS = NULL;
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01002025 pvCTS = (struct vnt_cts *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01002026 sizeof(struct vnt_rrv_time_cts) + cbMICHDR);
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002027 pvTxDataHd = (struct vnt_tx_datahead_g *) (pbyTxBufferAddr +
2028 wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley4f990052013-08-16 23:38:57 +01002029 sizeof(struct vnt_cts));
2030 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002031 sizeof(struct vnt_cts) + sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04002032
2033 }
2034 else {//802.11a/b packet
2035
Malcolm Priestley976467d2013-08-16 23:44:04 +01002036 pvRrvTime = (struct vnt_rrv_time_ab *) (pbyTxBufferAddr + wTxBufSize);
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01002037 pMICHDR = (struct vnt_mic_hdr *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01002038 sizeof(struct vnt_rrv_time_ab));
Forest Bond92b96792009-06-13 07:38:31 -04002039 pvRTS = NULL;
2040 pvCTS = NULL;
Malcolm Priestley558becf2013-08-16 23:50:32 +01002041 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
2042 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01002043 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestley558becf2013-08-16 23:50:32 +01002044 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04002045 }
Andres Moreceb8c5d2013-03-18 20:33:49 -05002046 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03002047 &(p80211Header->sA3.abyAddr1[0]),
2048 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002049 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03002050 &(p80211Header->sA3.abyAddr2[0]),
2051 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04002052 //=========================
2053 // No Fragmentation
2054 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05002055 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04002056
Forest Bond92b96792009-06-13 07:38:31 -04002057 //Fill FIFO,RrvTime,RTS,and CTS
2058 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate, pbyTxBufferAddr, pvRrvTime, pvRTS, pvCTS,
2059 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader);
2060
2061 //Fill DataHead
2062 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, TYPE_TXDMA0, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01002063 AUTO_FB_NONE);
Forest Bond92b96792009-06-13 07:38:31 -04002064
Andres More1cac4a42013-03-18 20:33:50 -05002065 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04002066
2067 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + (cbFrameBodySize + cbMIClen) + cbExtSuppRate;
2068
Andres Moreb902fbf2013-02-25 20:32:51 -05002069 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderSize);
2070 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding + cbIVlen);
2071 pbyIVHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding);
Forest Bond92b96792009-06-13 07:38:31 -04002072
2073 // Copy the Packet into a tx Buffer
2074 memcpy(pbyMacHdr, skb->data, cbMacHdLen);
2075
2076 // version set to 0, patch for hostapd deamon
Andres More1cac4a42013-03-18 20:33:50 -05002077 pMACHeader->frame_control &= cpu_to_le16(0xfffc);
Forest Bond92b96792009-06-13 07:38:31 -04002078 memcpy(pbyPayloadHead, (skb->data + cbMacHdLen), cbFrameBodySize);
2079
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002080 // replace support rate, patch for hostapd daemon( only support 11M)
Forest Bond92b96792009-06-13 07:38:31 -04002081 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
2082 if (cbExtSuppRate != 0) {
2083 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0)
2084 memcpy((pbyPayloadHead + cbFrameBodySize),
2085 pMgmt->abyCurrSuppRates,
2086 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN
2087 );
2088 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0)
2089 memcpy((pbyPayloadHead + cbFrameBodySize) + ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN,
2090 pMgmt->abyCurrExtSuppRates,
2091 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN
2092 );
2093 }
2094 }
2095
2096 // Set wep
2097 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
2098
2099 if (pDevice->bEnableHostWEP) {
2100 pTransmitKey = &STempKey;
2101 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2102 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2103 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2104 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2105 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2106 memcpy(pTransmitKey->abyKey,
2107 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2108 pTransmitKey->uKeyLength
2109 );
2110 }
2111
2112 if ((pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
2113
Andres More52a7e642013-02-25 20:32:53 -05002114 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
2115 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04002116
2117 // DO Software Michael
2118 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002119 MIC_vAppend((u8 *)&(sEthHeader.h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04002120 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05002121 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002122 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0_tx_8021:MIC KEY:"\
2123 " %X, %X\n", dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04002124
2125 uLength = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen;
2126
2127 MIC_vAppend((pbyTxBufferAddr + uLength), cbFrameBodySize);
2128
Andres More52a7e642013-02-25 20:32:53 -05002129 pdwMIC_L = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize);
2130 pdwMIC_R = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04002131
2132 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
2133 MIC_vUnInit();
2134
Andres More4e9b5e22013-02-12 20:36:30 -05002135 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002136 *pdwMIC_L = 0;
2137 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05002138 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04002139 }
2140
2141 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
2142 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderSize, uPadding, cbIVlen);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002143 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%x, %x\n",
2144 *pdwMIC_L, *pdwMIC_R);
Forest Bond92b96792009-06-13 07:38:31 -04002145
2146 }
2147
Andres Moreb902fbf2013-02-25 20:32:51 -05002148 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01002149 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04002150
2151 if (pDevice->bEnableHostWEP) {
2152 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
2153 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
2154 }
2155
2156 if ((pDevice->byLocalID <= REV_ID_VT3253_A1)) {
Andres More3eaca0d2013-02-25 20:32:52 -05002157 s_vSWencryption(pDevice, pTransmitKey, pbyPayloadHead, (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04002158 }
2159 }
2160
Andres More1cac4a42013-03-18 20:33:50 -05002161 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04002162 pDevice->wSeqCounter++ ;
2163 if (pDevice->wSeqCounter > 0x0fff)
2164 pDevice->wSeqCounter = 0;
2165
Forest Bond92b96792009-06-13 07:38:31 -04002166 if (bIsPSPOLL) {
2167 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
2168 // of FIFO control header.
2169 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
2170 // in the same place of other packet's Duration-field).
2171 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002172 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
2173 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_a =
2174 cpu_to_le16(p80211Header->sA2.wDurationID);
2175 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_b =
2176 cpu_to_le16(p80211Header->sA2.wDurationID);
2177 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +01002178 ((struct vnt_tx_datahead_ab *)pvTxDataHd)->wDuration =
2179 cpu_to_le16(p80211Header->sA2.wDurationID);
2180 }
Forest Bond92b96792009-06-13 07:38:31 -04002181 }
2182
Andres More3eaca0d2013-02-25 20:32:52 -05002183 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05002184 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04002185 pTX_Buffer->byType = 0x00;
2186
2187 pContext->pPacket = skb;
2188 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002189 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002190
Andres More1cac4a42013-03-18 20:33:50 -05002191 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
2192 s_vSaveTxPktInfo(pDevice, (u8) (pTX_Buffer->byPKTNO & 0x0F), &(pMACHeader->addr1[0]), (u16)cbFrameSize, pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002193 }
2194 else {
Andres More1cac4a42013-03-18 20:33:50 -05002195 s_vSaveTxPktInfo(pDevice, (u8) (pTX_Buffer->byPKTNO & 0x0F), &(pMACHeader->addr3[0]), (u16)cbFrameSize, pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002196 }
2197 PIPEnsSendBulkOut(pDevice,pContext);
2198 return ;
2199
2200}
2201
Forest Bond92b96792009-06-13 07:38:31 -04002202//TYPE_AC0DMA data tx
2203/*
2204 * Description:
2205 * Tx packet via AC0DMA(DMA1)
2206 *
2207 * Parameters:
2208 * In:
2209 * pDevice - Pointer to the adapter
2210 * skb - Pointer to tx skb packet
2211 * Out:
2212 * void
2213 *
2214 * Return Value: NULL
2215 */
2216
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002217int nsDMA_tx_packet(struct vnt_private *pDevice,
2218 u32 uDMAIdx, struct sk_buff *skb)
Forest Bond92b96792009-06-13 07:38:31 -04002219{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002220 struct net_device_stats *pStats = &pDevice->stats;
2221 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002222 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002223 u32 BytesToWrite = 0, uHeaderLen = 0;
2224 u32 uNodeIndex = 0;
2225 u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
2226 u16 wAID;
2227 u8 byPktType;
Andres Moree269fc22013-02-12 20:36:29 -05002228 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002229 PSKeyItem pTransmitKey = NULL;
2230 SKeyItem STempKey;
2231 int ii;
Andres Moree269fc22013-02-12 20:36:29 -05002232 int bTKIP_UseGTK = false;
2233 int bNeedDeAuth = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002234 u8 *pbyBSSID;
Andres Moree269fc22013-02-12 20:36:29 -05002235 int bNodeExist = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002236 PUSB_SEND_CONTEXT pContext;
Andres Moredfdcc422013-02-12 20:36:28 -05002237 bool fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002238 u32 status;
2239 u16 wKeepRate = pDevice->wCurrentRate;
Andres Moree269fc22013-02-12 20:36:29 -05002240 int bTxeapol_key = false;
Forest Bond92b96792009-06-13 07:38:31 -04002241
Forest Bond92b96792009-06-13 07:38:31 -04002242 if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
2243
2244 if (pDevice->uAssocCount == 0) {
2245 dev_kfree_skb_irq(skb);
2246 return 0;
2247 }
2248
Andres Moreb902fbf2013-02-25 20:32:51 -05002249 if (is_multicast_ether_addr((u8 *)(skb->data))) {
Forest Bond92b96792009-06-13 07:38:31 -04002250 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05002251 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002252 if (pMgmt->sNodeDBTable[0].bPSEnable) {
2253
2254 skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skb);
2255 pMgmt->sNodeDBTable[0].wEnQueueCnt++;
2256 // set tx map
2257 pMgmt->abyPSTxMap[0] |= byMask[0];
2258 return 0;
2259 }
Masanari Iida93184692012-08-13 21:21:50 +09002260 // multicast/broadcast data rate
Forest Bond92b96792009-06-13 07:38:31 -04002261
2262 if (pDevice->byBBType != BB_TYPE_11A)
2263 pDevice->wCurrentRate = RATE_2M;
2264 else
2265 pDevice->wCurrentRate = RATE_24M;
2266 // long preamble type
2267 pDevice->byPreambleType = PREAMBLE_SHORT;
2268
2269 }else {
2270
Andres Moreb902fbf2013-02-25 20:32:51 -05002271 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(skb->data), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002272
2273 if (pMgmt->sNodeDBTable[uNodeIndex].bPSEnable) {
2274
2275 skb_queue_tail(&pMgmt->sNodeDBTable[uNodeIndex].sTxPSQueue, skb);
2276
2277 pMgmt->sNodeDBTable[uNodeIndex].wEnQueueCnt++;
2278 // set tx map
2279 wAID = pMgmt->sNodeDBTable[uNodeIndex].wAID;
2280 pMgmt->abyPSTxMap[wAID >> 3] |= byMask[wAID & 7];
2281 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set:pMgmt->abyPSTxMap[%d]= %d\n",
2282 (wAID >> 3), pMgmt->abyPSTxMap[wAID >> 3]);
2283
2284 return 0;
2285 }
2286 // AP rate decided from node
2287 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2288 // tx preamble decided from node
2289
2290 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2291 pDevice->byPreambleType = pDevice->byShortPreamble;
2292
2293 }else {
2294 pDevice->byPreambleType = PREAMBLE_LONG;
2295 }
Andres More4e9b5e22013-02-12 20:36:30 -05002296 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002297 }
2298 }
2299
Andres Moree269fc22013-02-12 20:36:29 -05002300 if (bNodeExist == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002301 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Unknown STA not found in node DB \n");
2302 dev_kfree_skb_irq(skb);
2303 return 0;
2304 }
2305 }
2306
2307 pContext = (PUSB_SEND_CONTEXT)s_vGetFreeContext(pDevice);
2308
2309 if (pContext == NULL) {
2310 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG" pContext == NULL\n");
2311 dev_kfree_skb_irq(skb);
2312 return STATUS_RESOURCES;
2313 }
2314
Andres Moreceb8c5d2013-03-18 20:33:49 -05002315 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)(skb->data), ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002316
2317//mike add:station mode check eapol-key challenge--->
2318{
Andres Moreb902fbf2013-02-25 20:32:51 -05002319 u8 Protocol_Version; //802.1x Authentication
2320 u8 Packet_Type; //802.1x Authentication
2321 u8 Descriptor_type;
Andres More3eaca0d2013-02-25 20:32:52 -05002322 u16 Key_info;
Forest Bond92b96792009-06-13 07:38:31 -04002323
Charles Clément21ec51f2010-05-18 10:08:14 -07002324 Protocol_Version = skb->data[ETH_HLEN];
2325 Packet_Type = skb->data[ETH_HLEN+1];
2326 Descriptor_type = skb->data[ETH_HLEN+1+1+2];
2327 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 -05002328 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002329 /* 802.1x OR eapol-key challenge frame transfer */
2330 if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
2331 (Packet_Type == 3)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002332 bTxeapol_key = true;
Forest Bond92b96792009-06-13 07:38:31 -04002333 if(!(Key_info & BIT3) && //WPA or RSN group-key challenge
2334 (Key_info & BIT8) && (Key_info & BIT9)) { //send 2/2 key
2335 if(Descriptor_type==254) {
Andres More4e9b5e22013-02-12 20:36:30 -05002336 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002337 PRINT_K("WPA ");
2338 }
2339 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002340 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002341 PRINT_K("WPA2(re-keying) ");
2342 }
2343 PRINT_K("Authentication completed!!\n");
2344 }
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002345 else if((Key_info & BIT3) && (Descriptor_type==2) && //RSN pairwise-key challenge
Forest Bond92b96792009-06-13 07:38:31 -04002346 (Key_info & BIT8) && (Key_info & BIT9)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002347 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002348 PRINT_K("WPA2 Authentication completed!!\n");
2349 }
2350 }
2351 }
2352}
2353//mike add:station mode check eapol-key challenge<---
2354
Andres More4e9b5e22013-02-12 20:36:30 -05002355 if (pDevice->bEncryptionEnable == true) {
2356 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002357 // get Transmit key
2358 do {
2359 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) &&
2360 (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2361 pbyBSSID = pDevice->abyBSSID;
2362 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05002363 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002364 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05002365 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
2366 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002367 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2368 break;
2369 }
2370 } else {
2371 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get PTK.\n");
2372 break;
2373 }
2374 }else if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002375 /* TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1 */
2376 pbyBSSID = pDevice->sTxEthHeader.h_dest;
Forest Bond92b96792009-06-13 07:38:31 -04002377 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS Serach Key: \n");
2378 for (ii = 0; ii< 6; ii++)
2379 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"%x \n", *(pbyBSSID+ii));
2380 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"\n");
2381
2382 // get pairwise key
Andres More4e9b5e22013-02-12 20:36:30 -05002383 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == true)
Forest Bond92b96792009-06-13 07:38:31 -04002384 break;
2385 }
2386 // get group key
2387 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002388 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002389 pTransmitKey = NULL;
2390 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
2391 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2392 }
2393 else
2394 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"NOT IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2395 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05002396 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002397 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2398 }
Andres Moree269fc22013-02-12 20:36:29 -05002399 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04002400 }
2401
2402 if (pDevice->bEnableHostWEP) {
2403 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"acdma0: STA index %d\n", uNodeIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002404 if (pDevice->bEncryptionEnable == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002405 pTransmitKey = &STempKey;
2406 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2407 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2408 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2409 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2410 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2411 memcpy(pTransmitKey->abyKey,
2412 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2413 pTransmitKey->uKeyLength
2414 );
2415 }
2416 }
2417
Andres Moreb902fbf2013-02-25 20:32:51 -05002418 byPktType = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002419
2420 if (pDevice->bFixRate) {
2421 if (pDevice->byBBType == BB_TYPE_11B) {
2422 if (pDevice->uConnectionRate >= RATE_11M) {
2423 pDevice->wCurrentRate = RATE_11M;
2424 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002425 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002426 }
2427 } else {
2428 if ((pDevice->byBBType == BB_TYPE_11A) &&
2429 (pDevice->uConnectionRate <= RATE_6M)) {
2430 pDevice->wCurrentRate = RATE_6M;
2431 } else {
2432 if (pDevice->uConnectionRate >= RATE_54M)
2433 pDevice->wCurrentRate = RATE_54M;
2434 else
Andres More3eaca0d2013-02-25 20:32:52 -05002435 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002436 }
2437 }
2438 }
2439 else {
2440 if (pDevice->eOPMode == OP_MODE_ADHOC) {
2441 // Adhoc Tx rate decided from node DB
Andres Moreceb8c5d2013-03-18 20:33:49 -05002442 if (is_multicast_ether_addr(pDevice->sTxEthHeader.h_dest)) {
Forest Bond92b96792009-06-13 07:38:31 -04002443 // Multicast use highest data rate
2444 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2445 // preamble type
2446 pDevice->byPreambleType = pDevice->byShortPreamble;
2447 }
2448 else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002449 if (BSSbIsSTAInNodeDB(pDevice, &(pDevice->sTxEthHeader.h_dest[0]), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002450 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2451 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2452 pDevice->byPreambleType = pDevice->byShortPreamble;
2453
2454 }
2455 else {
2456 pDevice->byPreambleType = PREAMBLE_LONG;
2457 }
2458 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Found Node Index is [%d] Tx Data Rate:[%d]\n",uNodeIndex, pDevice->wCurrentRate);
2459 }
2460 else {
2461 if (pDevice->byBBType != BB_TYPE_11A)
2462 pDevice->wCurrentRate = RATE_2M;
2463 else
2464 pDevice->wCurrentRate = RATE_24M; // refer to vMgrCreateOwnIBSS()'s
2465 // abyCurrExtSuppRates[]
2466 pDevice->byPreambleType = PREAMBLE_SHORT;
2467 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Not Found Node use highest basic Rate.....\n");
2468 }
2469 }
2470 }
2471 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) {
2472 // Infra STA rate decided from AP Node, index = 0
2473 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2474 }
2475 }
2476
Andres Moreceb8c5d2013-03-18 20:33:49 -05002477 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002478 if (pDevice->byBBType != BB_TYPE_11A) {
2479 pDevice->wCurrentRate = RATE_1M;
2480 pDevice->byACKRate = RATE_1M;
2481 pDevice->byTopCCKBasicRate = RATE_1M;
2482 pDevice->byTopOFDMBasicRate = RATE_6M;
2483 } else {
2484 pDevice->wCurrentRate = RATE_6M;
2485 pDevice->byACKRate = RATE_6M;
2486 pDevice->byTopCCKBasicRate = RATE_1M;
2487 pDevice->byTopOFDMBasicRate = RATE_6M;
2488 }
2489 }
Forest Bond92b96792009-06-13 07:38:31 -04002490
Andres More0cbd8d92010-05-06 20:34:29 -03002491 DBG_PRT(MSG_LEVEL_DEBUG,
2492 KERN_INFO "dma_tx: pDevice->wCurrentRate = %d\n",
2493 pDevice->wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -04002494
2495 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002496 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002497 }
2498
2499 if (pDevice->wCurrentRate <= RATE_11M) {
2500 byPktType = PK_TYPE_11B;
2501 }
2502
Andres More4e9b5e22013-02-12 20:36:30 -05002503 if (bNeedEncryption == true) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002504 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.h_proto));
2505 if ((pDevice->sTxEthHeader.h_proto) == cpu_to_be16(ETH_P_PAE)) {
Andres Moree269fc22013-02-12 20:36:29 -05002506 bNeedEncryption = false;
Andres Moreceb8c5d2013-03-18 20:33:49 -05002507 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.h_proto));
Forest Bond92b96792009-06-13 07:38:31 -04002508 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) && (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2509 if (pTransmitKey == NULL) {
2510 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Don't Find TX KEY\n");
2511 }
2512 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002513 if (bTKIP_UseGTK == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002514 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"error: KEY is GTK!!~~\n");
2515 }
2516 else {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002517 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2518 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002519 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002520 }
2521 }
2522 }
2523
Forest Bond92b96792009-06-13 07:38:31 -04002524 if (pDevice->bEnableHostWEP) {
2525 if ((uNodeIndex != 0) &&
2526 (pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex & PAIRWISE_KEY)) {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002527 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2528 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002529 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002530 }
2531 }
2532 }
2533 else {
2534
Forest Bond92b96792009-06-13 07:38:31 -04002535 if (pTransmitKey == NULL) {
2536 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"return no tx key\n");
Andres Moree269fc22013-02-12 20:36:29 -05002537 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002538 dev_kfree_skb_irq(skb);
2539 pStats->tx_dropped++;
2540 return STATUS_FAILURE;
2541 }
Forest Bond92b96792009-06-13 07:38:31 -04002542 }
2543 }
2544
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002545 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2546
Forest Bond92b96792009-06-13 07:38:31 -04002547 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002548 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002549 skb->len, uDMAIdx, &pDevice->sTxEthHeader,
Andres Moreb902fbf2013-02-25 20:32:51 -05002550 (u8 *)skb->data, pTransmitKey, uNodeIndex,
Forest Bond92b96792009-06-13 07:38:31 -04002551 pDevice->wCurrentRate,
2552 &uHeaderLen, &BytesToWrite
2553 );
2554
Andres Moree269fc22013-02-12 20:36:29 -05002555 if (fConvertedPacket == false) {
2556 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002557 dev_kfree_skb_irq(skb);
2558 return STATUS_FAILURE;
2559 }
2560
Andres More4e9b5e22013-02-12 20:36:30 -05002561 if ( pDevice->bEnablePSMode == true ) {
Forest Bond92b96792009-06-13 07:38:31 -04002562 if ( !pDevice->bPSModeTxBurst ) {
Andres More0cbd8d92010-05-06 20:34:29 -03002563 bScheduleCommand((void *) pDevice,
2564 WLAN_CMD_MAC_DISPOWERSAVING,
2565 NULL);
Andres More4e9b5e22013-02-12 20:36:30 -05002566 pDevice->bPSModeTxBurst = true;
Forest Bond92b96792009-06-13 07:38:31 -04002567 }
2568 }
2569
Andres Moreb902fbf2013-02-25 20:32:51 -05002570 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002571 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002572
2573 pContext->pPacket = skb;
2574 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002575 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002576
Andres Moreceb8c5d2013-03-18 20:33:49 -05002577 s_vSaveTxPktInfo(pDevice, (u8) (pTX_Buffer->byPKTNO & 0x0F), &(pContext->sEthHeader.h_dest[0]), (u16) (BytesToWrite-uHeaderLen), pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002578
2579 status = PIPEnsSendBulkOut(pDevice,pContext);
2580
Andres More4e9b5e22013-02-12 20:36:30 -05002581 if (bNeedDeAuth == true) {
Andres More3eaca0d2013-02-25 20:32:52 -05002582 u16 wReason = WLAN_MGMT_REASON_MIC_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -04002583
Andres Moreb902fbf2013-02-25 20:32:51 -05002584 bScheduleCommand((void *) pDevice, WLAN_CMD_DEAUTH, (u8 *) &wReason);
Forest Bond92b96792009-06-13 07:38:31 -04002585 }
2586
2587 if(status!=STATUS_PENDING) {
Andres Moree269fc22013-02-12 20:36:29 -05002588 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002589 dev_kfree_skb_irq(skb);
2590 return STATUS_FAILURE;
2591 }
2592 else
2593 return 0;
2594
2595}
2596
Forest Bond92b96792009-06-13 07:38:31 -04002597/*
2598 * Description:
2599 * Relay packet send (AC1DMA) from rx dpc.
2600 *
2601 * Parameters:
2602 * In:
2603 * pDevice - Pointer to the adapter
2604 * pPacket - Pointer to rx packet
2605 * cbPacketSize - rx ethernet frame size
2606 * Out:
Andres Moree269fc22013-02-12 20:36:29 -05002607 * TURE, false
Forest Bond92b96792009-06-13 07:38:31 -04002608 *
Andres More4e9b5e22013-02-12 20:36:30 -05002609 * Return Value: Return true if packet is copy to dma1; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04002610 */
2611
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002612int bRelayPacketSend(struct vnt_private *pDevice, u8 *pbySkbData, u32 uDataLen,
2613 u32 uNodeIndex)
Forest Bond92b96792009-06-13 07:38:31 -04002614{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002615 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002616 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002617 u32 BytesToWrite = 0, uHeaderLen = 0;
2618 u8 byPktType = PK_TYPE_11B;
Andres Moree269fc22013-02-12 20:36:29 -05002619 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002620 SKeyItem STempKey;
2621 PSKeyItem pTransmitKey = NULL;
2622 u8 *pbyBSSID;
2623 PUSB_SEND_CONTEXT pContext;
2624 u8 byPktTyp;
2625 int fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002626 u32 status;
2627 u16 wKeepRate = pDevice->wCurrentRate;
Forest Bond92b96792009-06-13 07:38:31 -04002628
Forest Bond92b96792009-06-13 07:38:31 -04002629 pContext = (PUSB_SEND_CONTEXT)s_vGetFreeContext(pDevice);
2630
2631 if (NULL == pContext) {
Andres Moree269fc22013-02-12 20:36:29 -05002632 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002633 }
2634
Andres Moreceb8c5d2013-03-18 20:33:49 -05002635 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)pbySkbData, ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002636
Andres More4e9b5e22013-02-12 20:36:30 -05002637 if (pDevice->bEncryptionEnable == true) {
2638 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002639 // get group key
2640 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002641 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002642 pTransmitKey = NULL;
2643 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2644 } else {
2645 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2646 }
2647 }
2648
2649 if (pDevice->bEnableHostWEP) {
Roel Kluinee93e192009-10-16 20:17:57 +02002650 if (uNodeIndex < MAX_NODE_NUM + 1) {
Forest Bond92b96792009-06-13 07:38:31 -04002651 pTransmitKey = &STempKey;
2652 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2653 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2654 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2655 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2656 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2657 memcpy(pTransmitKey->abyKey,
2658 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2659 pTransmitKey->uKeyLength
2660 );
2661 }
2662 }
2663
2664 if ( bNeedEncryption && (pTransmitKey == NULL) ) {
Andres Moree269fc22013-02-12 20:36:29 -05002665 pContext->bBoolInUse = false;
2666 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002667 }
2668
Andres Moreb902fbf2013-02-25 20:32:51 -05002669 byPktTyp = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002670
2671 if (pDevice->bFixRate) {
2672 if (pDevice->byBBType == BB_TYPE_11B) {
2673 if (pDevice->uConnectionRate >= RATE_11M) {
2674 pDevice->wCurrentRate = RATE_11M;
2675 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002676 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002677 }
2678 } else {
2679 if ((pDevice->byBBType == BB_TYPE_11A) &&
2680 (pDevice->uConnectionRate <= RATE_6M)) {
2681 pDevice->wCurrentRate = RATE_6M;
2682 } else {
2683 if (pDevice->uConnectionRate >= RATE_54M)
2684 pDevice->wCurrentRate = RATE_54M;
2685 else
Andres More3eaca0d2013-02-25 20:32:52 -05002686 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002687 }
2688 }
2689 }
2690 else {
2691 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2692 }
2693
Forest Bond92b96792009-06-13 07:38:31 -04002694 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002695 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002696 }
2697
2698 if (pDevice->wCurrentRate <= RATE_11M)
2699 byPktType = PK_TYPE_11B;
2700
Andres Moreabad19d2010-07-12 16:28:32 -03002701 BytesToWrite = uDataLen + ETH_FCS_LEN;
2702
Forest Bond92b96792009-06-13 07:38:31 -04002703 // Convert the packet to an usb frame and copy into our buffer
2704 // and send the irp.
2705
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002706 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2707
Forest Bond92b96792009-06-13 07:38:31 -04002708 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002709 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002710 uDataLen, TYPE_AC0DMA, &pDevice->sTxEthHeader,
2711 pbySkbData, pTransmitKey, uNodeIndex,
2712 pDevice->wCurrentRate,
2713 &uHeaderLen, &BytesToWrite
2714 );
2715
Andres Moree269fc22013-02-12 20:36:29 -05002716 if (fConvertedPacket == false) {
2717 pContext->bBoolInUse = false;
2718 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002719 }
2720
Andres Moreb902fbf2013-02-25 20:32:51 -05002721 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002722 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002723
2724 pContext->pPacket = NULL;
2725 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002726 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002727
Andres Moreceb8c5d2013-03-18 20:33:49 -05002728 s_vSaveTxPktInfo(pDevice, (u8) (pTX_Buffer->byPKTNO & 0x0F), &(pContext->sEthHeader.h_dest[0]), (u16) (BytesToWrite-uHeaderLen), pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002729
2730 status = PIPEnsSendBulkOut(pDevice,pContext);
2731
Andres More4e9b5e22013-02-12 20:36:30 -05002732 return true;
Forest Bond92b96792009-06-13 07:38:31 -04002733}
2734