blob: c18861b4f371dbea2bf60a7c8b6a0be1bd5c0ab1 [file] [log] [blame]
Forest Bond92b96792009-06-13 07:38:31 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * File: rxtx.c
20 *
21 * Purpose: handle WMAC/802.3/802.11 rx & tx functions
22 *
23 * Author: Lyndon Chen
24 *
25 * Date: May 20, 2003
26 *
27 * Functions:
Gilles Espinassef77f13e2010-03-29 15:41:47 +020028 * s_vGenerateTxParameter - Generate tx dma required parameter.
Forest Bond92b96792009-06-13 07:38:31 -040029 * s_vGenerateMACHeader - Translate 802.3 to 802.11 header
30 * csBeacon_xmit - beacon tx function
31 * csMgmt_xmit - management tx function
32 * s_uGetDataDuration - get tx data required duration
33 * s_uFillDataHead- fulfill tx data duration header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020034 * s_uGetRTSCTSDuration- get rtx/cts required duration
Forest Bond92b96792009-06-13 07:38:31 -040035 * s_uGetRTSCTSRsvTime- get rts/cts reserved time
36 * s_uGetTxRsvTime- get frame reserved time
37 * s_vFillCTSHead- fulfill CTS ctl header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020038 * s_vFillFragParameter- Set fragment ctl parameter.
Forest Bond92b96792009-06-13 07:38:31 -040039 * s_vFillRTSHead- fulfill RTS ctl header
40 * s_vFillTxKey- fulfill tx encrypt key
41 * s_vSWencryption- Software encrypt header
42 * vDMA0_tx_80211- tx 802.11 frame via dma0
43 * vGenerateFIFOHeader- Generate tx FIFO ctl header
44 *
45 * Revision History:
46 *
47 */
48
Forest Bond92b96792009-06-13 07:38:31 -040049#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040050#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040051#include "tether.h"
Forest Bond92b96792009-06-13 07:38:31 -040052#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040053#include "bssdb.h"
Forest Bond92b96792009-06-13 07:38:31 -040054#include "mac.h"
Forest Bond92b96792009-06-13 07:38:31 -040055#include "michael.h"
Forest Bond92b96792009-06-13 07:38:31 -040056#include "tkip.h"
Forest Bond92b96792009-06-13 07:38:31 -040057#include "tcrc.h"
Forest Bond92b96792009-06-13 07:38:31 -040058#include "wctl.h"
Forest Bond92b96792009-06-13 07:38:31 -040059#include "hostap.h"
Forest Bond92b96792009-06-13 07:38:31 -040060#include "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040061#include "datarate.h"
Forest Bond92b96792009-06-13 07:38:31 -040062#include "usbpipe.h"
Forest Bond92b96792009-06-13 07:38:31 -040063#include "iocmd.h"
Jim Lieb9d26d602009-08-12 14:54:08 -070064
Mariano Reingart4a499de2010-10-29 19:15:26 -030065static int msglevel = MSG_LEVEL_INFO;
Forest Bond92b96792009-06-13 07:38:31 -040066
Andres More3eaca0d2013-02-25 20:32:52 -050067const u16 wTimeStampOff[2][MAX_RATE] = {
Forest Bond92b96792009-06-13 07:38:31 -040068 {384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23}, // Long Preamble
69 {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23}, // Short Preamble
70 };
71
Andres More3eaca0d2013-02-25 20:32:52 -050072const u16 wFB_Opt0[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040073 {RATE_12M, RATE_18M, RATE_24M, RATE_36M, RATE_48M}, // fallback_rate0
74 {RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, // fallback_rate1
75 };
Andres More3eaca0d2013-02-25 20:32:52 -050076const u16 wFB_Opt1[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040077 {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, // fallback_rate0
78 {RATE_6M , RATE_6M, RATE_12M, RATE_12M, RATE_18M}, // fallback_rate1
79 };
80
Forest Bond92b96792009-06-13 07:38:31 -040081#define RTSDUR_BB 0
82#define RTSDUR_BA 1
83#define RTSDUR_AA 2
84#define CTSDUR_BA 3
85#define RTSDUR_BA_F0 4
86#define RTSDUR_AA_F0 5
87#define RTSDUR_BA_F1 6
88#define RTSDUR_AA_F1 7
89#define CTSDUR_BA_F0 8
90#define CTSDUR_BA_F1 9
91#define DATADUR_B 10
92#define DATADUR_A 11
93#define DATADUR_A_F0 12
94#define DATADUR_A_F1 13
95
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000096static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
97 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -040098
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000099static void *s_vGetFreeContext(struct vnt_private *pDevice);
100
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100101static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100102 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100103 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
104 int bNeedACK, u32 uDMAIdx, struct ethhdr *psEthHeader, bool need_rts);
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000105
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 Priestley0a0f4b62013-10-01 15:50:24 +0100127static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100128 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
129 int bNeedAck, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400130
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100131static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100132 union vnt_tx_data_head *head, 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 Priestleydcdf1d02013-08-27 12:41:50 +0100144 struct vnt_usb_send_context *pContext = NULL;
145 struct vnt_usb_send_context *pReturnContext = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000146 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++) {
Malcolm Priestley18e35e082013-09-22 20:15:58 +0100151 if (!pDevice->apTD[ii])
152 return NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400153 pContext = pDevice->apTD[ii];
Andres Moree269fc22013-02-12 20:36:29 -0500154 if (pContext->bBoolInUse == false) {
Andres More4e9b5e22013-02-12 20:36:30 -0500155 pContext->bBoolInUse = true;
Malcolm Priestleyc0de17e2013-08-05 21:09:14 +0100156 memset(pContext->Data, 0, MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
Forest Bond92b96792009-06-13 07:38:31 -0400157 pReturnContext = pContext;
158 break;
159 }
160 }
161 if ( ii == pDevice->cbTD ) {
162 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Free Tx Context\n");
163 }
Andres More8611a292010-05-01 14:25:00 -0300164 return (void *) pReturnContext;
Forest Bond92b96792009-06-13 07:38:31 -0400165}
166
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000167static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
168 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl)
Forest Bond92b96792009-06-13 07:38:31 -0400169{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000170 PSStatCounter pStatistic = &pDevice->scStatistic;
Forest Bond92b96792009-06-13 07:38:31 -0400171
Andres More4b50fb42010-06-22 21:57:42 -0300172 if (is_broadcast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400173 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_BROAD;
Andres More4b50fb42010-06-22 21:57:42 -0300174 else if (is_multicast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400175 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_MULTI;
176 else
177 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_UNI;
178
179 pStatistic->abyTxPktInfo[byPktNum].wLength = wPktLength;
180 pStatistic->abyTxPktInfo[byPktNum].wFIFOCtl = wFIFOCtl;
Andres More9a0e7562010-04-13 21:54:48 -0300181 memcpy(pStatistic->abyTxPktInfo[byPktNum].abyDestAddr,
182 pbyDestAddr,
183 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400184}
185
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000186static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
187 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100188 u16 wPayloadLen, struct vnt_mic_hdr *mic_hdr)
Forest Bond92b96792009-06-13 07:38:31 -0400189{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000190 u32 *pdwIV = (u32 *)pbyIVHead;
191 u32 *pdwExtIV = (u32 *)((u8 *)pbyIVHead + 4);
Andres More1cac4a42013-03-18 20:33:50 -0500192 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyHdrBuf;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000193 u32 dwRevIVCounter;
Forest Bond92b96792009-06-13 07:38:31 -0400194
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100195 /* Fill TXKEY */
196 if (pTransmitKey == NULL)
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100197 return;
Forest Bond92b96792009-06-13 07:38:31 -0400198
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100199 dwRevIVCounter = cpu_to_le32(pDevice->dwIVCounter);
200 *pdwIV = pDevice->dwIVCounter;
201 pDevice->byKeyIndex = pTransmitKey->dwKeyIndex & 0xf;
Forest Bond92b96792009-06-13 07:38:31 -0400202
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100203 switch (pTransmitKey->byCipherSuite) {
204 case KEY_CTL_WEP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100205 if (pTransmitKey->uKeyLength == WLAN_WEP232_KEYLEN) {
206 memcpy(pDevice->abyPRNG, (u8 *)&dwRevIVCounter, 3);
207 memcpy(pDevice->abyPRNG + 3, pTransmitKey->abyKey,
208 pTransmitKey->uKeyLength);
209 } else {
210 memcpy(pbyBuf, (u8 *)&dwRevIVCounter, 3);
211 memcpy(pbyBuf + 3, pTransmitKey->abyKey,
212 pTransmitKey->uKeyLength);
213 if (pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) {
214 memcpy(pbyBuf+8, (u8 *)&dwRevIVCounter, 3);
215 memcpy(pbyBuf+11, pTransmitKey->abyKey,
216 pTransmitKey->uKeyLength);
217 }
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100218
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100219 memcpy(pDevice->abyPRNG, pbyBuf, 16);
220 }
221 /* Append IV after Mac Header */
222 *pdwIV &= WEP_IV_MASK;
223 *pdwIV |= (u32)pDevice->byKeyIndex << 30;
224 *pdwIV = cpu_to_le32(*pdwIV);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100225
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100226 pDevice->dwIVCounter++;
227 if (pDevice->dwIVCounter > WEP_IV_MASK)
228 pDevice->dwIVCounter = 0;
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100229
230 break;
231 case KEY_CTL_TKIP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100232 pTransmitKey->wTSC15_0++;
233 if (pTransmitKey->wTSC15_0 == 0)
234 pTransmitKey->dwTSC47_16++;
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100235
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100236 TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
237 pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16,
238 pDevice->abyPRNG);
239 memcpy(pbyBuf, pDevice->abyPRNG, 16);
240
241 /* Make IV */
242 memcpy(pdwIV, pDevice->abyPRNG, 3);
243
244 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
245 0xc0) | 0x20);
246 /* Append IV&ExtIV after Mac Header */
247 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
248
249 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
250 "vFillTxKey()---- pdwExtIV: %x\n", *pdwExtIV);
251
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100252 break;
253 case KEY_CTL_CCMP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100254 pTransmitKey->wTSC15_0++;
255 if (pTransmitKey->wTSC15_0 == 0)
256 pTransmitKey->dwTSC47_16++;
257
258 memcpy(pbyBuf, pTransmitKey->abyKey, 16);
259
260 /* Make IV */
261 *pdwIV = 0;
262 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
263 0xc0) | 0x20);
264
265 *pdwIV |= cpu_to_le16((u16)(pTransmitKey->wTSC15_0));
266
267 /* Append IV&ExtIV after Mac Header */
268 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
269
270 if (!mic_hdr)
271 return;
272
273 /* MICHDR0 */
274 mic_hdr->id = 0x59;
275 mic_hdr->payload_len = cpu_to_be16(wPayloadLen);
276 memcpy(mic_hdr->mic_addr2, pMACHeader->addr2, ETH_ALEN);
277
278 mic_hdr->tsc_47_16 = cpu_to_be32(pTransmitKey->dwTSC47_16);
279 mic_hdr->tsc_15_0 = cpu_to_be16(pTransmitKey->wTSC15_0);
280
281 /* MICHDR1 */
282 if (pDevice->bLongHeader)
283 mic_hdr->hlen = cpu_to_be16(28);
284 else
285 mic_hdr->hlen = cpu_to_be16(22);
286
287 memcpy(mic_hdr->addr1, pMACHeader->addr1, ETH_ALEN);
288 memcpy(mic_hdr->addr2, pMACHeader->addr2, ETH_ALEN);
289
290 /* MICHDR2 */
291 memcpy(mic_hdr->addr3, pMACHeader->addr3, ETH_ALEN);
292 mic_hdr->frame_control = cpu_to_le16(pMACHeader->frame_control
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100293 & 0xc78f);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100294 mic_hdr->seq_ctrl = cpu_to_le16(pMACHeader->seq_ctrl & 0xf);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100295
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100296 if (pDevice->bLongHeader)
297 memcpy(mic_hdr->addr4, pMACHeader->addr4, ETH_ALEN);
298 }
Forest Bond92b96792009-06-13 07:38:31 -0400299}
300
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000301static void s_vSWencryption(struct vnt_private *pDevice,
302 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize)
Forest Bond92b96792009-06-13 07:38:31 -0400303{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000304 u32 cbICVlen = 4;
305 u32 dwICV = 0xffffffff;
306 u32 *pdwICV;
Forest Bond92b96792009-06-13 07:38:31 -0400307
308 if (pTransmitKey == NULL)
309 return;
310
311 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
312 //=======================================================================
313 // Append ICV after payload
314 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500315 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400316 // finally, we must invert dwCRC to get the correct answer
317 *pdwICV = cpu_to_le32(~dwICV);
318 // RC4 encryption
319 rc4_init(&pDevice->SBox, pDevice->abyPRNG, pTransmitKey->uKeyLength + 3);
320 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
321 //=======================================================================
322 } else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
323 //=======================================================================
324 //Append ICV after payload
325 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500326 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400327 // finally, we must invert dwCRC to get the correct answer
328 *pdwICV = cpu_to_le32(~dwICV);
329 // RC4 encryption
330 rc4_init(&pDevice->SBox, pDevice->abyPRNG, TKIP_KEY_LEN);
331 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
332 //=======================================================================
333 }
334}
335
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100336static u16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
337{
338 return cpu_to_le16(wTimeStampOff[priv->byPreambleType % 2]
339 [rate % MAX_RATE]);
340}
341
Forest Bond92b96792009-06-13 07:38:31 -0400342/*byPktType : PK_TYPE_11A 0
343 PK_TYPE_11B 1
344 PK_TYPE_11GB 2
345 PK_TYPE_11GA 3
346*/
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000347static u32 s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
348 u32 cbFrameLength, u16 wRate, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400349{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000350 u32 uDataTime, uAckTime;
Forest Bond92b96792009-06-13 07:38:31 -0400351
352 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wRate);
353 if (byPktType == PK_TYPE_11B) {//llb,CCK mode
Andres More3eaca0d2013-02-25 20:32:52 -0500354 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400355 } else {//11g 2.4G OFDM mode & 11a 5G OFDM mode
Andres More3eaca0d2013-02-25 20:32:52 -0500356 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopOFDMBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400357 }
358
359 if (bNeedAck) {
360 return (uDataTime + pDevice->uSIFS + uAckTime);
361 }
362 else {
363 return uDataTime;
364 }
365}
366
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100367static u16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
368 u32 frame_length, u16 rate, int need_ack)
369{
370 return cpu_to_le16((u16)s_uGetTxRsvTime(priv, pkt_type,
371 frame_length, rate, need_ack));
372}
373
Forest Bond92b96792009-06-13 07:38:31 -0400374//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100375static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000376 u8 byRTSRsvType, u8 byPktType, u32 cbFrameLength, u16 wCurrentRate)
Forest Bond92b96792009-06-13 07:38:31 -0400377{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000378 u32 uRrvTime, uRTSTime, uCTSTime, uAckTime, uDataTime;
Forest Bond92b96792009-06-13 07:38:31 -0400379
380 uRrvTime = uRTSTime = uCTSTime = uAckTime = uDataTime = 0;
381
Forest Bond92b96792009-06-13 07:38:31 -0400382 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wCurrentRate);
383 if (byRTSRsvType == 0) { //RTSTxRrvTime_bb
384 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
385 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
386 }
387 else if (byRTSRsvType == 1){ //RTSTxRrvTime_ba, only in 2.4GHZ
388 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
389 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
390 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
391 }
392 else if (byRTSRsvType == 2) { //RTSTxRrvTime_aa
393 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopOFDMBasicRate);
394 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
395 }
396 else if (byRTSRsvType == 3) { //CTSTxRrvTime_ba, only in 2.4GHZ
397 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
398 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
399 uRrvTime = uCTSTime + uAckTime + uDataTime + 2*pDevice->uSIFS;
400 return uRrvTime;
401 }
402
403 //RTSRrvTime
404 uRrvTime = uRTSTime + uCTSTime + uAckTime + uDataTime + 3*pDevice->uSIFS;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100405 return cpu_to_le16((u16)uRrvTime);
Forest Bond92b96792009-06-13 07:38:31 -0400406}
407
408//byFreqType 0: 5GHz, 1:2.4Ghz
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100409static u16 s_uGetDataDuration(struct vnt_private *pDevice,
410 u8 byPktType, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400411{
Malcolm Priestley0005cb02013-08-07 21:26:12 +0100412 u32 uAckTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400413
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100414 if (bNeedAck) {
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100415 if (byPktType == PK_TYPE_11B)
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100416 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
417 byPktType, 14, pDevice->byTopCCKBasicRate);
418 else
419 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
420 byPktType, 14, pDevice->byTopOFDMBasicRate);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100421 return cpu_to_le16((u16)(pDevice->uSIFS + uAckTime));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100422 }
Forest Bond92b96792009-06-13 07:38:31 -0400423
Forest Bond92b96792009-06-13 07:38:31 -0400424 return 0;
425}
426
Forest Bond92b96792009-06-13 07:38:31 -0400427//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100428static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice, u8 byDurType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000429 u32 cbFrameLength, u8 byPktType, u16 wRate, int bNeedAck,
430 u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400431{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000432 u32 uCTSTime = 0, uDurTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400433
Forest Bond92b96792009-06-13 07:38:31 -0400434 switch (byDurType) {
435
436 case RTSDUR_BB: //RTSDuration_bb
437 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
438 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
439 break;
440
441 case RTSDUR_BA: //RTSDuration_ba
442 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
443 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
444 break;
445
446 case RTSDUR_AA: //RTSDuration_aa
447 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
448 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
449 break;
450
451 case CTSDUR_BA: //CTSDuration_ba
452 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
453 break;
454
455 case RTSDUR_BA_F0: //RTSDuration_ba_f0
456 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
457 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
458 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
459 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
460 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
461 }
462 break;
463
464 case RTSDUR_AA_F0: //RTSDuration_aa_f0
465 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
466 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
467 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
468 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
469 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
470 }
471 break;
472
473 case RTSDUR_BA_F1: //RTSDuration_ba_f1
474 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
475 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
476 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
477 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
478 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
479 }
480 break;
481
482 case RTSDUR_AA_F1: //RTSDuration_aa_f1
483 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
484 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
485 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
486 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
487 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
488 }
489 break;
490
491 case CTSDUR_BA_F0: //CTSDuration_ba_f0
492 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
493 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
494 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
495 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
496 }
497 break;
498
499 case CTSDUR_BA_F1: //CTSDuration_ba_f1
500 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
501 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
502 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
503 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
504 }
505 break;
506
507 default:
508 break;
509 }
510
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100511 return cpu_to_le16((u16)uDurTime);
Forest Bond92b96792009-06-13 07:38:31 -0400512}
513
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000514static u32 s_uFillDataHead(struct vnt_private *pDevice,
515 u8 byPktType, u16 wCurrentRate, void *pTxDataHead, u32 cbFrameLength,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +0100516 u32 uDMAIdx, int bNeedAck, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400517{
518
519 if (pTxDataHead == NULL) {
520 return 0;
521 }
522
523 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Forest Bond92b96792009-06-13 07:38:31 -0400524 if (byFBOption == AUTO_FB_NONE) {
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +0100525 struct vnt_tx_datahead_g *pBuf =
526 (struct vnt_tx_datahead_g *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400527 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100528 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
529 byPktType, &pBuf->a);
530 BBvCalculateParameter(pDevice, cbFrameLength,
531 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Forest Bond92b96792009-06-13 07:38:31 -0400532 //Get Duration and TimeStamp
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100533 pBuf->wDuration_a = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100534 byPktType, bNeedAck);
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100535 pBuf->wDuration_b = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100536 PK_TYPE_11B, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400537
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100538 pBuf->wTimeStampOff_a = vnt_time_stamp_off(pDevice,
539 wCurrentRate);
540 pBuf->wTimeStampOff_b = vnt_time_stamp_off(pDevice,
541 pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400542 return (pBuf->wDuration_a);
543 } else {
544 // Auto Fallback
Malcolm Priestley7c05c542013-08-16 23:49:15 +0100545 struct vnt_tx_datahead_g_fb *pBuf =
546 (struct vnt_tx_datahead_g_fb *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400547 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100548 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
549 byPktType, &pBuf->a);
550 BBvCalculateParameter(pDevice, cbFrameLength,
551 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Forest Bond92b96792009-06-13 07:38:31 -0400552 //Get Duration and TimeStamp
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100553 pBuf->wDuration_a = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100554 byPktType, bNeedAck);
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100555 pBuf->wDuration_b = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100556 PK_TYPE_11B, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100557 pBuf->wDuration_a_f0 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100558 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100559 pBuf->wDuration_a_f1 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100560 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100561 pBuf->wTimeStampOff_a = vnt_time_stamp_off(pDevice,
562 wCurrentRate);
563 pBuf->wTimeStampOff_b = vnt_time_stamp_off(pDevice,
564 pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400565 return (pBuf->wDuration_a);
566 } //if (byFBOption == AUTO_FB_NONE)
Forest Bond92b96792009-06-13 07:38:31 -0400567 }
568 else if (byPktType == PK_TYPE_11A) {
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100569 if (byFBOption != AUTO_FB_NONE) {
Malcolm Priestley1da4ee22013-08-16 23:51:38 +0100570 struct vnt_tx_datahead_a_fb *pBuf =
571 (struct vnt_tx_datahead_a_fb *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400572 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100573 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
574 byPktType, &pBuf->a);
Forest Bond92b96792009-06-13 07:38:31 -0400575 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100576 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100577 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100578 pBuf->wDuration_f0 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100579 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100580 pBuf->wDuration_f1 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100581 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100582 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
583 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400584 return (pBuf->wDuration);
585 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +0100586 struct vnt_tx_datahead_ab *pBuf =
587 (struct vnt_tx_datahead_ab *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400588 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100589 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
590 byPktType, &pBuf->ab);
Forest Bond92b96792009-06-13 07:38:31 -0400591 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100592 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100593 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100594 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
595 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400596 return (pBuf->wDuration);
597 }
598 }
599 else if (byPktType == PK_TYPE_11B) {
Malcolm Priestley558becf2013-08-16 23:50:32 +0100600 struct vnt_tx_datahead_ab *pBuf =
601 (struct vnt_tx_datahead_ab *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400602 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100603 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
604 byPktType, &pBuf->ab);
Forest Bond92b96792009-06-13 07:38:31 -0400605 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100606 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100607 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100608 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
609 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400610 return (pBuf->wDuration);
611 }
612 return 0;
613}
614
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100615static int vnt_fill_ieee80211_rts(struct vnt_private *priv,
616 struct ieee80211_rts *rts, struct ethhdr *eth_hdr,
617 u16 duration)
618{
619 rts->duration = duration;
620 rts->frame_control = TYPE_CTL_RTS;
621
622 if (priv->eOPMode == OP_MODE_ADHOC || priv->eOPMode == OP_MODE_AP)
623 memcpy(rts->ra, eth_hdr->h_dest, ETH_ALEN);
624 else
625 memcpy(rts->ra, priv->abyBSSID, ETH_ALEN);
626
627 if (priv->eOPMode == OP_MODE_AP)
628 memcpy(rts->ta, priv->abyBSSID, ETH_ALEN);
629 else
630 memcpy(rts->ta, eth_hdr->h_source, ETH_ALEN);
631
632 return 0;
633}
634
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100635static u16 vnt_rxtx_rts_g_head(struct vnt_private *priv,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100636 struct vnt_rts_g *buf, struct ethhdr *eth_hdr,
637 u8 pkt_type, u32 frame_len, int need_ack,
638 u16 current_rate, u8 fb_option)
639{
640 u16 rts_frame_len = 20;
641
642 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
643 PK_TYPE_11B, &buf->b);
644 BBvCalculateParameter(priv, rts_frame_len,
645 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
646
647 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
648 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
649 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
650 pkt_type, current_rate, need_ack, fb_option);
651 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
652 pkt_type, current_rate, need_ack, fb_option);
653
654 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
655
656 return 0;
657}
658
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100659static u16 vnt_rxtx_rts_g_fb_head(struct vnt_private *priv,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100660 struct vnt_rts_g_fb *buf, struct ethhdr *eth_hdr,
661 u8 pkt_type, u32 frame_len, int need_ack,
662 u16 current_rate, u8 fb_option)
663{
664 u16 rts_frame_len = 20;
665
666 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
667 PK_TYPE_11B, &buf->b);
668 BBvCalculateParameter(priv, rts_frame_len,
669 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
670
671
672 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
673 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
674 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
675 pkt_type, current_rate, need_ack, fb_option);
676 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
677 pkt_type, current_rate, need_ack, fb_option);
678
679
680 buf->wRTSDuration_ba_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F0,
681 frame_len, pkt_type, current_rate, need_ack, fb_option);
682 buf->wRTSDuration_aa_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
683 frame_len, pkt_type, current_rate, need_ack, fb_option);
684 buf->wRTSDuration_ba_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F1,
685 frame_len, pkt_type, current_rate, need_ack, fb_option);
686 buf->wRTSDuration_aa_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
687 frame_len, pkt_type, current_rate, need_ack, fb_option);
688
689 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
690
691 return 0;
692}
693
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100694static u16 vnt_rxtx_rts_ab_head(struct vnt_private *priv,
Malcolm Priestley17126332013-08-26 11:09:38 +0100695 struct vnt_rts_ab *buf, struct ethhdr *eth_hdr,
696 u8 pkt_type, u32 frame_len, int need_ack,
697 u16 current_rate, u8 fb_option)
698{
699 u16 rts_frame_len = 20;
700
701 BBvCalculateParameter(priv, rts_frame_len,
702 priv->byTopOFDMBasicRate, pkt_type, &buf->ab);
703
704 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
705 pkt_type, current_rate, need_ack, fb_option);
706
707 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
708
709 return 0;
710}
711
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100712static u16 vnt_rxtx_rts_a_fb_head(struct vnt_private *priv,
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100713 struct vnt_rts_a_fb *buf, struct ethhdr *eth_hdr,
714 u8 pkt_type, u32 frame_len, int need_ack,
715 u16 current_rate, u8 fb_option)
716{
717 u16 rts_frame_len = 20;
718
719 BBvCalculateParameter(priv, rts_frame_len,
720 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
721
722 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
723 pkt_type, current_rate, need_ack, fb_option);
724
725 buf->wRTSDuration_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
726 frame_len, pkt_type, current_rate, need_ack, fb_option);
727
728 buf->wRTSDuration_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
729 frame_len, pkt_type, current_rate, need_ack, fb_option);
730
731 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
732
733 return 0;
734}
735
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100736static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100737 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500738 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400739{
Forest Bond92b96792009-06-13 07:38:31 -0400740
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100741 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100742 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400743
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100744 /* Note: So far RTSHead doesn't appear in ATIM
745 * & Beacom DMA, so we don't need to take them
746 * into account.
747 * Otherwise, we need to modified codes for them.
748 */
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100749 switch (byPktType) {
750 case PK_TYPE_11GB:
751 case PK_TYPE_11GA:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100752 if (byFBOption == AUTO_FB_NONE)
753 vnt_rxtx_rts_g_head(pDevice, &head->rts_g,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100754 psEthHeader, byPktType, cbFrameLength,
755 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100756 else
757 vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100758 psEthHeader, byPktType, cbFrameLength,
759 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100760 break;
761 case PK_TYPE_11A:
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100762 if (byFBOption) {
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100763 vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb,
764 psEthHeader, byPktType, cbFrameLength,
765 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100766 break;
767 }
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100768 case PK_TYPE_11B:
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100769 vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
Malcolm Priestley17126332013-08-26 11:09:38 +0100770 psEthHeader, byPktType, cbFrameLength,
771 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100772 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100773
774 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400775}
776
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100777static u16 s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100778 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
779 int bNeedAck, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400780{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000781 u32 uCTSFrameLen = 14;
Forest Bond92b96792009-06-13 07:38:31 -0400782
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100783 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100784 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400785
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100786 if (byFBOption != AUTO_FB_NONE) {
787 /* Auto Fall back */
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100788 struct vnt_cts_fb *pBuf = &head->cts_g_fb;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100789 /* Get SignalField,ServiceField,Length */
790 BBvCalculateParameter(pDevice, uCTSFrameLen,
791 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100792 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
793 cbFrameLength, byPktType,
794 wCurrentRate, bNeedAck, byFBOption);
795 /* Get CTSDuration_ba_f0 */
796 pBuf->wCTSDuration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
797 CTSDUR_BA_F0, cbFrameLength, byPktType, wCurrentRate,
798 bNeedAck, byFBOption);
799 /* Get CTSDuration_ba_f1 */
800 pBuf->wCTSDuration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
801 CTSDUR_BA_F1, cbFrameLength, byPktType, wCurrentRate,
802 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);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100807 } else {
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100808 struct vnt_cts *pBuf = &head->cts_g;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100809 /* Get SignalField,ServiceField,Length */
810 BBvCalculateParameter(pDevice, uCTSFrameLen,
811 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100812 /* Get CTSDuration_ba */
813 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice,
814 CTSDUR_BA, cbFrameLength, byPktType,
815 wCurrentRate, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100816 /*Get CTS Frame body*/
817 pBuf->data.duration = pBuf->wDuration_ba;
818 pBuf->data.frame_control = TYPE_CTL_CTS;
819 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400820 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100821
822 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400823}
824
Forest Bond92b96792009-06-13 07:38:31 -0400825/*+
826 *
827 * Description:
828 * Generate FIFO control for MAC & Baseband controller
829 *
830 * Parameters:
831 * In:
832 * pDevice - Pointer to adpater
833 * pTxDataHead - Transmit Data Buffer
834 * pTxBufHead - pTxBufHead
835 * pvRrvTime - pvRrvTime
836 * pvRTS - RTS Buffer
837 * pCTS - CTS Buffer
838 * cbFrameSize - Transmit Data Length (Hdr+Payload+FCS)
839 * bNeedACK - If need ACK
840 * uDMAIdx - DMA Index
841 * Out:
842 * none
843 *
844 * Return Value: none
845 *
846-*/
Andres Morecc856e62010-05-17 21:34:01 -0300847
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100848static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100849 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100850 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
851 int bNeedACK, u32 uDMAIdx, struct ethhdr *psEthHeader, bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400852{
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100853 struct vnt_tx_fifo_head *pFifoHead = &tx_buffer->fifo_head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100854 union vnt_tx_data_head *head = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000855 u32 cbMACHdLen = WLAN_HDR_ADDR3_LEN; /* 24 */
856 u16 wFifoCtl;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000857 u8 byFBOption = AUTO_FB_NONE;
Forest Bond92b96792009-06-13 07:38:31 -0400858
859 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_vGenerateTxParameter...\n");
Forest Bond92b96792009-06-13 07:38:31 -0400860 pFifoHead->wReserved = wCurrentRate;
861 wFifoCtl = pFifoHead->wFIFOCtl;
862
Forest Bond92b96792009-06-13 07:38:31 -0400863 if (wFifoCtl & FIFOCTL_AUTO_FB_0) {
864 byFBOption = AUTO_FB_0;
865 }
866 else if (wFifoCtl & FIFOCTL_AUTO_FB_1) {
867 byFBOption = AUTO_FB_1;
868 }
869
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100870 if (!pFifoHead)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100871 return 0;
Malcolm Priestley2dc22d52013-08-24 13:15:32 +0100872
Forest Bond92b96792009-06-13 07:38:31 -0400873 if (pDevice->bLongHeader)
874 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
875
876 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100877 if (need_rts) {
Forest Bond92b96792009-06-13 07:38:31 -0400878 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100879 struct vnt_rrv_time_rts *pBuf = &tx_buffer->tx_head.tx_rts.rts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100880
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100881 pBuf->wRTSTxRrvTime_aa = s_uGetRTSCTSRsvTime(pDevice, 2,
882 byPktType, cbFrameSize, wCurrentRate);
883 pBuf->wRTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 1,
884 byPktType, cbFrameSize, wCurrentRate);
885 pBuf->wRTSTxRrvTime_bb = s_uGetRTSCTSRsvTime(pDevice, 0,
886 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100887 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
888 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
889 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
890 PK_TYPE_11B, cbFrameSize, pDevice->byTopCCKBasicRate,
891 bNeedACK);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100892
893 if (need_mic) {
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100894 *mic_hdr = &tx_buffer->tx_head.tx_rts.tx.mic.hdr;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100895 head = &tx_buffer->tx_head.tx_rts.tx.mic.head;
896 } else {
897 head = &tx_buffer->tx_head.tx_rts.tx.head;
898 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100899
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100900 /* Fill RTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100901 s_vFillRTSHead(pDevice, byPktType, head, cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100902 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400903 }
904 else {//RTS_needless, PCF mode
Forest Bond92b96792009-06-13 07:38:31 -0400905 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100906 struct vnt_rrv_time_cts *pBuf = &tx_buffer->tx_head.tx_cts.cts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100907
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100908 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice, byPktType,
909 cbFrameSize, wCurrentRate, bNeedACK);
910 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
911 PK_TYPE_11B, cbFrameSize,
912 pDevice->byTopCCKBasicRate, bNeedACK);
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100913 pBuf->wCTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 3,
914 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100915
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100916 if (need_mic) {
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100917 *mic_hdr = &tx_buffer->tx_head.tx_cts.tx.mic.hdr;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100918 head = &tx_buffer->tx_head.tx_cts.tx.mic.head;
919 } else {
920 head = &tx_buffer->tx_head.tx_cts.tx.head;
921 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100922
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100923 /* Fill CTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100924 s_vFillCTSHead(pDevice, uDMAIdx, byPktType, head,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100925 cbFrameSize, bNeedACK, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400926 }
927 }
928 else if (byPktType == PK_TYPE_11A) {
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100929 if (need_rts) {
Forest Bond92b96792009-06-13 07:38:31 -0400930 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100931 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100932
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100933 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 2,
934 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100935 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, byPktType,
936 cbFrameSize, wCurrentRate, bNeedACK);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100937
938 if (need_mic) {
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100939 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100940 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
941 } else {
942 head = &tx_buffer->tx_head.tx_ab.tx.head;
943 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100944
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100945 /* Fill RTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100946 s_vFillRTSHead(pDevice, byPktType, head, cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100947 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100948 } else {
Forest Bond92b96792009-06-13 07:38:31 -0400949 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100950 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100951
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100952 if (need_mic)
953 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
954
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100955 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11A,
956 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400957 }
958 }
959 else if (byPktType == PK_TYPE_11B) {
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100960 if (need_rts) {
Forest Bond92b96792009-06-13 07:38:31 -0400961 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100962 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100963
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100964 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 0,
965 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100966 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11B,
967 cbFrameSize, wCurrentRate, bNeedACK);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100968
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100969 if (need_mic) {
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100970 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100971 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
972 } else {
973 head = &tx_buffer->tx_head.tx_ab.tx.head;
974 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100975
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100976 /* Fill RTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100977 s_vFillRTSHead(pDevice, byPktType, head, cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100978 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400979 }
980 else { //RTS_needless, non PCF mode
981 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100982 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100983
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100984 if (need_mic)
985 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
986
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100987 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11B,
988 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400989 }
990 }
991 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_vGenerateTxParameter END.\n");
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100992
993 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400994}
995/*
Andres Moreb902fbf2013-02-25 20:32:51 -0500996 u8 * pbyBuffer,//point to pTxBufHead
Andres More3eaca0d2013-02-25 20:32:52 -0500997 u16 wFragType,//00:Non-Frag, 01:Start, 02:Mid, 03:Last
Andres Morecc856e62010-05-17 21:34:01 -0300998 unsigned int cbFragmentSize,//Hdr+payoad+FCS
Forest Bond92b96792009-06-13 07:38:31 -0400999*/
1000
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001001static int s_bPacketToWirelessUsb(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001002 struct vnt_tx_buffer *tx_buffer, int bNeedEncryption,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01001003 u32 uSkbPacketLen, u32 uDMAIdx, struct ethhdr *psEthHeader,
1004 u8 *pPacket, PSKeyItem pTransmitKey, u32 uNodeIndex, u16 wCurrentRate,
1005 u32 *pcbHeaderLen, u32 *pcbTotalLen)
Forest Bond92b96792009-06-13 07:38:31 -04001006{
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001007 struct vnt_tx_fifo_head *pTxBufHead = &tx_buffer->fifo_head;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001008 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
1009 u32 cbFrameSize, cbFrameBodySize;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001010 u32 cb802_1_H_len;
1011 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbMACHdLen = 0;
1012 u32 cbFCSlen = 4, cbMICHDR = 0;
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001013 int bNeedACK;
1014 bool bRTS = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001015 u8 *pbyType, *pbyMacHdr, *pbyIVHead, *pbyPayloadHead, *pbyTxBufferAddr;
1016 u8 abySNAP_RFC1042[ETH_ALEN] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
1017 u8 abySNAP_Bridgetunnel[ETH_ALEN]
1018 = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
1019 u32 uDuration;
1020 u32 cbHeaderLength = 0, uPadding = 0;
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001021 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001022 void *pvTxDataHd;
1023 u8 byFBOption = AUTO_FB_NONE, byFragType;
1024 u16 wTxBufSize;
Malcolm Priestley4235f722013-08-24 12:42:01 +01001025 u32 dwMICKey0, dwMICKey1, dwMIC_Priority;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001026 u32 *pdwMIC_L, *pdwMIC_R;
Andres Moree269fc22013-02-12 20:36:29 -05001027 int bSoftWEP = false;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +01001028
1029 pMICHDR = pvTxDataHd = NULL;
Forest Bond92b96792009-06-13 07:38:31 -04001030
Malcolm Priestleye2efba72012-11-11 15:20:52 +00001031 if (bNeedEncryption && pTransmitKey->pvKeyTable) {
Andres More4e9b5e22013-02-12 20:36:30 -05001032 if (((PSKeyTable)pTransmitKey->pvKeyTable)->bSoftWEP == true)
1033 bSoftWEP = true; /* WEP 256 */
Malcolm Priestleye2efba72012-11-11 15:20:52 +00001034 }
Forest Bond92b96792009-06-13 07:38:31 -04001035
Forest Bond92b96792009-06-13 07:38:31 -04001036 // Get pkt type
Andres Moreceb8c5d2013-03-18 20:33:49 -05001037 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Forest Bond92b96792009-06-13 07:38:31 -04001038 if (pDevice->dwDiagRefCount == 0) {
1039 cb802_1_H_len = 8;
1040 } else {
1041 cb802_1_H_len = 2;
1042 }
1043 } else {
1044 cb802_1_H_len = 0;
1045 }
1046
Charles Clément21ec51f2010-05-18 10:08:14 -07001047 cbFrameBodySize = uSkbPacketLen - ETH_HLEN + cb802_1_H_len;
Forest Bond92b96792009-06-13 07:38:31 -04001048
1049 //Set packet type
Andres More3eaca0d2013-02-25 20:32:52 -05001050 pTxBufHead->wFIFOCtl |= (u16)(byPktType<<8);
Forest Bond92b96792009-06-13 07:38:31 -04001051
1052 if (pDevice->dwDiagRefCount != 0) {
Andres Moree269fc22013-02-12 20:36:29 -05001053 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001054 pTxBufHead->wFIFOCtl = pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1055 } else { //if (pDevice->dwDiagRefCount != 0) {
Andres More22040bb2010-08-02 20:21:44 -03001056 if ((pDevice->eOPMode == OP_MODE_ADHOC) ||
1057 (pDevice->eOPMode == OP_MODE_AP)) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001058 if (is_multicast_ether_addr(psEthHeader->h_dest)) {
Andres Moree269fc22013-02-12 20:36:29 -05001059 bNeedACK = false;
Andres More22040bb2010-08-02 20:21:44 -03001060 pTxBufHead->wFIFOCtl =
1061 pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1062 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001063 bNeedACK = true;
Andres More22040bb2010-08-02 20:21:44 -03001064 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1065 }
Forest Bond92b96792009-06-13 07:38:31 -04001066 }
1067 else {
1068 // MSDUs in Infra mode always need ACK
Andres More4e9b5e22013-02-12 20:36:30 -05001069 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001070 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1071 }
1072 } //if (pDevice->dwDiagRefCount != 0) {
1073
1074 pTxBufHead->wTimeStamp = DEFAULT_MSDU_LIFETIME_RES_64us;
1075
1076 //Set FIFOCTL_LHEAD
1077 if (pDevice->bLongHeader)
1078 pTxBufHead->wFIFOCtl |= FIFOCTL_LHEAD;
1079
Forest Bond92b96792009-06-13 07:38:31 -04001080 //Set FRAGCTL_MACHDCNT
1081 if (pDevice->bLongHeader) {
1082 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
1083 } else {
1084 cbMACHdLen = WLAN_HDR_ADDR3_LEN;
1085 }
Andres More3eaca0d2013-02-25 20:32:52 -05001086 pTxBufHead->wFragCtl |= (u16)(cbMACHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001087
1088 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001089 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001090 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1091 }
1092
1093 //Set Auto Fallback Ctl
1094 if (wCurrentRate >= RATE_18M) {
1095 if (pDevice->byAutoFBCtrl == AUTO_FB_0) {
1096 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
1097 byFBOption = AUTO_FB_0;
1098 } else if (pDevice->byAutoFBCtrl == AUTO_FB_1) {
1099 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
1100 byFBOption = AUTO_FB_1;
1101 }
1102 }
1103
Andres More4e9b5e22013-02-12 20:36:30 -05001104 if (bSoftWEP != true) {
Forest Bond92b96792009-06-13 07:38:31 -04001105 if ((bNeedEncryption) && (pTransmitKey != NULL)) { //WEP enabled
1106 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) { //WEP40 or WEP104
1107 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1108 }
1109 if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1110 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Tx Set wFragCtl == FRAGCTL_TKIP\n");
1111 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1112 }
1113 else if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) { //CCMP
1114 pTxBufHead->wFragCtl |= FRAGCTL_AES;
1115 }
1116 }
1117 }
1118
Forest Bond92b96792009-06-13 07:38:31 -04001119 if ((bNeedEncryption) && (pTransmitKey != NULL)) {
1120 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
1121 cbIVlen = 4;
1122 cbICVlen = 4;
1123 }
1124 else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1125 cbIVlen = 8;//IV+ExtIV
1126 cbMIClen = 8;
1127 cbICVlen = 4;
1128 }
1129 if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) {
1130 cbIVlen = 8;//RSN Header
1131 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001132 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001133 }
Andres Moree269fc22013-02-12 20:36:29 -05001134 if (bSoftWEP == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001135 //MAC Header should be padding 0 to DW alignment.
1136 uPadding = 4 - (cbMACHdLen%4);
1137 uPadding %= 4;
1138 }
1139 }
1140
1141 cbFrameSize = cbMACHdLen + cbIVlen + (cbFrameBodySize + cbMIClen) + cbICVlen + cbFCSlen;
1142
Andres Moree269fc22013-02-12 20:36:29 -05001143 if ( (bNeedACK == false) ||(cbFrameSize < pDevice->wRTSThreshold) ) {
1144 bRTS = false;
Forest Bond92b96792009-06-13 07:38:31 -04001145 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001146 bRTS = true;
Forest Bond92b96792009-06-13 07:38:31 -04001147 pTxBufHead->wFIFOCtl |= (FIFOCTL_RTS | FIFOCTL_LRETRY);
1148 }
1149
Andres Moreb902fbf2013-02-25 20:32:51 -05001150 pbyTxBufferAddr = (u8 *) &(pTxBufHead->adwTxKey[0]);
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001151 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
1152
Forest Bond92b96792009-06-13 07:38:31 -04001153 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1154 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001155 if (bRTS == true) {//RTS_need
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001156 pvTxDataHd = (struct vnt_tx_datahead_g *) (pbyTxBufferAddr +
1157 wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1158 cbMICHDR + sizeof(struct vnt_rts_g));
Malcolm Priestley6398a592013-08-16 21:26:55 +01001159 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001160 cbMICHDR + sizeof(struct vnt_rts_g) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001161 sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001162 }
1163 else { //RTS_needless
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001164 pvTxDataHd = (struct vnt_tx_datahead_g *)(pbyTxBufferAddr +
1165 wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1166 cbMICHDR + sizeof(struct vnt_cts));
Malcolm Priestley4f990052013-08-16 23:38:57 +01001167 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1168 cbMICHDR + sizeof(struct vnt_cts) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001169 sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001170 }
1171 } else {
1172 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001173 if (bRTS == true) {//RTS_need
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001174 pvTxDataHd = (struct vnt_tx_datahead_g_fb *) (pbyTxBufferAddr +
1175 wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1176 cbMICHDR + sizeof(struct vnt_rts_g_fb));
Malcolm Priestley6398a592013-08-16 21:26:55 +01001177 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1178 cbMICHDR + sizeof(struct vnt_rts_g_fb) +
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001179 sizeof(struct vnt_tx_datahead_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001180 }
Andres Moree269fc22013-02-12 20:36:29 -05001181 else if (bRTS == false) { //RTS_needless
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001182 pvTxDataHd = (struct vnt_tx_datahead_g_fb *) (pbyTxBufferAddr +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001183 wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1184 cbMICHDR + sizeof(struct vnt_cts_fb));
1185 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001186 cbMICHDR + sizeof(struct vnt_cts_fb) +
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001187 sizeof(struct vnt_tx_datahead_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001188 }
1189 } // Auto Fall Back
1190 }
1191 else {//802.11a/b packet
1192 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001193 if (bRTS == true) {//RTS_need
Malcolm Priestley558becf2013-08-16 23:50:32 +01001194 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
1195 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001196 sizeof(struct vnt_rts_ab));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001197 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
1198 cbMICHDR + sizeof(struct vnt_rts_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001199 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001200 }
Andres Moree269fc22013-02-12 20:36:29 -05001201 else if (bRTS == false) { //RTS_needless, no MICHDR
Malcolm Priestley558becf2013-08-16 23:50:32 +01001202 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
1203 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01001204 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001205 cbMICHDR + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001206 }
1207 } else {
1208 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001209 if (bRTS == true) {//RTS_need
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001210 pvTxDataHd = (struct vnt_tx_datahead_a_fb *)(pbyTxBufferAddr +
1211 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001212 sizeof(struct vnt_rts_a_fb));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001213 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
1214 cbMICHDR + sizeof(struct vnt_rts_a_fb) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001215 sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001216 }
Andres Moree269fc22013-02-12 20:36:29 -05001217 else if (bRTS == false) { //RTS_needless
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001218 pvTxDataHd = (struct vnt_tx_datahead_a_fb *)(pbyTxBufferAddr +
1219 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01001220 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001221 cbMICHDR + sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001222 }
1223 } // Auto Fall Back
1224 }
1225
Andres Moreb902fbf2013-02-25 20:32:51 -05001226 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderLength);
1227 pbyIVHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding);
1228 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001229
Forest Bond92b96792009-06-13 07:38:31 -04001230 //=========================
1231 // No Fragmentation
1232 //=========================
1233 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Fragmentation...\n");
1234 byFragType = FRAGCTL_NONFRAG;
1235 //uDMAIdx = TYPE_AC0DMA;
1236 //pTxBufHead = (PSTxBufHead) &(pTxBufHead->adwTxKey[0]);
1237
Forest Bond92b96792009-06-13 07:38:31 -04001238 //Fill FIFO,RrvTime,RTS,and CTS
Andres More8611a292010-05-01 14:25:00 -03001239 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001240 tx_buffer, &pMICHDR, cbMICHDR,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001241 cbFrameSize, bNeedACK, uDMAIdx, psEthHeader, bRTS);
Forest Bond92b96792009-06-13 07:38:31 -04001242 //Fill DataHead
1243 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, uDMAIdx, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01001244 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -04001245 // Generate TX MAC Header
Andres More3eaca0d2013-02-25 20:32:52 -05001246 s_vGenerateMACHeader(pDevice, pbyMacHdr, (u16)uDuration, psEthHeader, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04001247 byFragType, uDMAIdx, 0);
1248
Andres More4e9b5e22013-02-12 20:36:30 -05001249 if (bNeedEncryption == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001250 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001251 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01001252 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001253
1254 if (pDevice->bEnableHostWEP) {
1255 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
1256 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
1257 }
1258 }
1259
1260 // 802.1H
Andres Moreceb8c5d2013-03-18 20:33:49 -05001261 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Andres More203e4612010-08-04 19:12:34 -03001262 if (pDevice->dwDiagRefCount == 0) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001263 if ((psEthHeader->h_proto == cpu_to_be16(ETH_P_IPX)) ||
1264 (psEthHeader->h_proto == cpu_to_le16(0xF380))) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001265 memcpy((u8 *) (pbyPayloadHead),
Andres More203e4612010-08-04 19:12:34 -03001266 abySNAP_Bridgetunnel, 6);
Forest Bond92b96792009-06-13 07:38:31 -04001267 } else {
Andres Moreb902fbf2013-02-25 20:32:51 -05001268 memcpy((u8 *) (pbyPayloadHead), &abySNAP_RFC1042[0], 6);
Forest Bond92b96792009-06-13 07:38:31 -04001269 }
Andres Moreb902fbf2013-02-25 20:32:51 -05001270 pbyType = (u8 *) (pbyPayloadHead + 6);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001271 memcpy(pbyType, &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001272 } else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001273 memcpy((u8 *) (pbyPayloadHead), &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001274
1275 }
1276
1277 }
1278
Forest Bond92b96792009-06-13 07:38:31 -04001279 if (pPacket != NULL) {
1280 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001281 memcpy((pbyPayloadHead + cb802_1_H_len),
Charles Clément21ec51f2010-05-18 10:08:14 -07001282 (pPacket + ETH_HLEN),
1283 uSkbPacketLen - ETH_HLEN
Forest Bond92b96792009-06-13 07:38:31 -04001284 );
1285
1286 } else {
1287 // while bRelayPacketSend psEthHeader is point to header+payload
Andres Moreb902fbf2013-02-25 20:32:51 -05001288 memcpy((pbyPayloadHead + cb802_1_H_len), ((u8 *)psEthHeader) + ETH_HLEN, uSkbPacketLen - ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001289 }
1290
Andres More4e9b5e22013-02-12 20:36:30 -05001291 if ((bNeedEncryption == true) && (pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
Forest Bond92b96792009-06-13 07:38:31 -04001292
1293 ///////////////////////////////////////////////////////////////////
1294
Malcolm Priestley14c5ef52013-01-17 23:19:37 +00001295 if (pDevice->vnt_mgmt.eAuthenMode == WMAC_AUTH_WPANONE) {
1296 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1297 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
1298 }
Forest Bond92b96792009-06-13 07:38:31 -04001299 else if ((pTransmitKey->dwKeyIndex & AUTHENTICATOR_KEY) != 0) {
Andres More52a7e642013-02-25 20:32:53 -05001300 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1301 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04001302 }
1303 else {
Andres More52a7e642013-02-25 20:32:53 -05001304 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[24]);
1305 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[28]);
Forest Bond92b96792009-06-13 07:38:31 -04001306 }
1307 // DO Software Michael
1308 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001309 MIC_vAppend((u8 *)&(psEthHeader->h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04001310 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05001311 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001312 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC KEY: %X, %X\n",
1313 dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04001314
1315 ///////////////////////////////////////////////////////////////////
1316
1317 //DBG_PRN_GRP12(("Length:%d, %d\n", cbFrameBodySize, uFromHDtoPLDLength));
1318 //for (ii = 0; ii < cbFrameBodySize; ii++) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001319 // DBG_PRN_GRP12(("%02x ", *((u8 *)((pbyPayloadHead + cb802_1_H_len) + ii))));
Forest Bond92b96792009-06-13 07:38:31 -04001320 //}
1321 //DBG_PRN_GRP12(("\n\n\n"));
1322
1323 MIC_vAppend(pbyPayloadHead, cbFrameBodySize);
1324
Andres More52a7e642013-02-25 20:32:53 -05001325 pdwMIC_L = (u32 *)(pbyPayloadHead + cbFrameBodySize);
1326 pdwMIC_R = (u32 *)(pbyPayloadHead + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04001327
1328 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
1329 MIC_vUnInit();
1330
Andres More4e9b5e22013-02-12 20:36:30 -05001331 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001332 *pdwMIC_L = 0;
1333 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001334 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04001335 }
1336 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
1337 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderLength, uPadding, cbIVlen);
1338 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%lX, %lX\n", *pdwMIC_L, *pdwMIC_R);
1339 }
1340
Andres More4e9b5e22013-02-12 20:36:30 -05001341 if (bSoftWEP == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001342
Andres More3eaca0d2013-02-25 20:32:52 -05001343 s_vSWencryption(pDevice, pTransmitKey, (pbyPayloadHead), (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04001344
Andres More4e9b5e22013-02-12 20:36:30 -05001345 } else if ( ((pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) && (bNeedEncryption == true)) ||
1346 ((pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) && (bNeedEncryption == true)) ||
1347 ((pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) && (bNeedEncryption == true)) ) {
Forest Bond92b96792009-06-13 07:38:31 -04001348 cbFrameSize -= cbICVlen;
1349 }
1350
Forest Bond92b96792009-06-13 07:38:31 -04001351 cbFrameSize -= cbFCSlen;
Forest Bond92b96792009-06-13 07:38:31 -04001352
1353 *pcbHeaderLen = cbHeaderLength;
1354 *pcbTotalLen = cbHeaderLength + cbFrameSize ;
1355
Forest Bond92b96792009-06-13 07:38:31 -04001356 //Set FragCtl in TxBufferHead
Andres More3eaca0d2013-02-25 20:32:52 -05001357 pTxBufHead->wFragCtl |= (u16)byFragType;
Forest Bond92b96792009-06-13 07:38:31 -04001358
Andres More4e9b5e22013-02-12 20:36:30 -05001359 return true;
Forest Bond92b96792009-06-13 07:38:31 -04001360
1361}
1362
Forest Bond92b96792009-06-13 07:38:31 -04001363/*+
1364 *
1365 * Description:
1366 * Translate 802.3 to 802.11 header
1367 *
1368 * Parameters:
1369 * In:
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001370 * pDevice - Pointer to adapter
Forest Bond92b96792009-06-13 07:38:31 -04001371 * dwTxBufferAddr - Transmit Buffer
1372 * pPacket - Packet from upper layer
1373 * cbPacketSize - Transmit Data Length
1374 * Out:
1375 * pcbHeadSize - Header size of MAC&Baseband control and 802.11 Header
1376 * pcbAppendPayload - size of append payload for 802.1H translation
1377 *
1378 * Return Value: none
1379 *
1380-*/
1381
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001382static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -05001383 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001384 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx)
Forest Bond92b96792009-06-13 07:38:31 -04001385{
Andres More1cac4a42013-03-18 20:33:50 -05001386 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyBufferAddr;
Forest Bond92b96792009-06-13 07:38:31 -04001387
Malcolm Priestleyc921cc82013-08-20 20:47:49 +01001388 pMACHeader->frame_control = TYPE_802_11_DATA;
Forest Bond92b96792009-06-13 07:38:31 -04001389
1390 if (pDevice->eOPMode == OP_MODE_AP) {
Andres More1cac4a42013-03-18 20:33:50 -05001391 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001392 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001393 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001394 memcpy(&(pMACHeader->addr2[0]), &(pDevice->abyBSSID[0]), ETH_ALEN);
1395 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001396 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001397 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001398 pMACHeader->frame_control |= FC_FROMDS;
Andres More9a0e7562010-04-13 21:54:48 -03001399 } else {
1400 if (pDevice->eOPMode == OP_MODE_ADHOC) {
Andres More1cac4a42013-03-18 20:33:50 -05001401 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001402 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001403 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001404 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001405 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001406 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001407 memcpy(&(pMACHeader->addr3[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001408 &(pDevice->abyBSSID[0]),
1409 ETH_ALEN);
1410 } else {
Andres More1cac4a42013-03-18 20:33:50 -05001411 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001412 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001413 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001414 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001415 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001416 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001417 memcpy(&(pMACHeader->addr1[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001418 &(pDevice->abyBSSID[0]),
1419 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001420 pMACHeader->frame_control |= FC_TODS;
Forest Bond92b96792009-06-13 07:38:31 -04001421 }
1422 }
1423
1424 if (bNeedEncrypt)
Andres More1cac4a42013-03-18 20:33:50 -05001425 pMACHeader->frame_control |= cpu_to_le16((u16)WLAN_SET_FC_ISWEP(1));
Forest Bond92b96792009-06-13 07:38:31 -04001426
Andres More1cac4a42013-03-18 20:33:50 -05001427 pMACHeader->duration_id = cpu_to_le16(wDuration);
Forest Bond92b96792009-06-13 07:38:31 -04001428
1429 if (pDevice->bLongHeader) {
1430 PWLAN_80211HDR_A4 pMACA4Header = (PWLAN_80211HDR_A4) pbyBufferAddr;
Andres More1cac4a42013-03-18 20:33:50 -05001431 pMACHeader->frame_control |= (FC_TODS | FC_FROMDS);
Jim Lieb3e362592009-08-12 14:54:11 -07001432 memcpy(pMACA4Header->abyAddr4, pDevice->abyBSSID, WLAN_ADDR_LEN);
Forest Bond92b96792009-06-13 07:38:31 -04001433 }
Andres More1cac4a42013-03-18 20:33:50 -05001434 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001435
1436 //Set FragNumber in Sequence Control
Andres More1cac4a42013-03-18 20:33:50 -05001437 pMACHeader->seq_ctrl |= cpu_to_le16((u16)uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -04001438
1439 if ((wFragType == FRAGCTL_ENDFRAG) || (wFragType == FRAGCTL_NONFRAG)) {
1440 pDevice->wSeqCounter++;
1441 if (pDevice->wSeqCounter > 0x0fff)
1442 pDevice->wSeqCounter = 0;
1443 }
1444
1445 if ((wFragType == FRAGCTL_STAFRAG) || (wFragType == FRAGCTL_MIDFRAG)) { //StartFrag or MidFrag
Andres More1cac4a42013-03-18 20:33:50 -05001446 pMACHeader->frame_control |= FC_MOREFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001447 }
1448}
1449
Forest Bond92b96792009-06-13 07:38:31 -04001450/*+
1451 *
1452 * Description:
1453 * Request instructs a MAC to transmit a 802.11 management packet through
1454 * the adapter onto the medium.
1455 *
1456 * Parameters:
1457 * In:
1458 * hDeviceContext - Pointer to the adapter
1459 * pPacket - A pointer to a descriptor for the packet to transmit
1460 * Out:
1461 * none
1462 *
Andres Moree269fc22013-02-12 20:36:29 -05001463 * Return Value: CMD_STATUS_PENDING if MAC Tx resource available; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04001464 *
1465-*/
1466
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001467CMD_STATUS csMgmt_xmit(struct vnt_private *pDevice,
1468 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001469{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001470 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001471 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001472 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001473 struct vnt_tx_fifo_head *pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001474 struct ieee80211_hdr *pMACHeader;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001475 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001476 u8 byPktType, *pbyTxBufferAddr;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001477 void *pvTxDataHd;
1478 struct vnt_mic_hdr *pMICHDR = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001479 u32 uDuration, cbReqCount, cbHeaderSize, cbFrameBodySize, cbFrameSize;
Andres Moree269fc22013-02-12 20:36:29 -05001480 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001481 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1482 u32 uPadding = 0;
1483 u16 wTxBufSize;
1484 u32 cbMacHdLen;
1485 u16 wCurrentRate = RATE_1M;
Forest Bond92b96792009-06-13 07:38:31 -04001486
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001487 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001488
1489 if (NULL == pContext) {
1490 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1491 return CMD_STATUS_RESOURCES;
1492 }
1493
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001494 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Forest Bond92b96792009-06-13 07:38:31 -04001495 cbFrameBodySize = pPacket->cbPayloadLen;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001496 pTxBufHead = &pTX_Buffer->fifo_head;
1497 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1498 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001499
1500 if (pDevice->byBBType == BB_TYPE_11A) {
1501 wCurrentRate = RATE_6M;
1502 byPktType = PK_TYPE_11A;
1503 } else {
1504 wCurrentRate = RATE_1M;
1505 byPktType = PK_TYPE_11B;
1506 }
1507
1508 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1509 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1510 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1511 // to set power here.
1512 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1513 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1514 } else {
1515 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1516 }
1517 pDevice->wCurrentRate = wCurrentRate;
1518
Forest Bond92b96792009-06-13 07:38:31 -04001519 //Set packet type
1520 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1521 pTxBufHead->wFIFOCtl = 0;
1522 }
1523 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1524 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1525 }
1526 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1527 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1528 }
1529 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1530 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1531 }
1532
1533 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1534 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1535
Andres More22040bb2010-08-02 20:21:44 -03001536 if (is_multicast_ether_addr(pPacket->p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001537 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001538 }
1539 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001540 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001541 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1542 };
1543
1544 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1545 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1546
1547 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1548 //Set Preamble type always long
1549 //pDevice->byPreambleType = PREAMBLE_LONG;
1550 // probe-response don't retry
1551 //if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001552 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001553 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1554 //}
1555 }
1556
1557 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1558
1559 if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001560 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001561 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1562 } else {
1563 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1564 }
1565
1566 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001567 pTxBufHead->wFragCtl |= cpu_to_le16((u16)(cbMacHdLen << 10));
Forest Bond92b96792009-06-13 07:38:31 -04001568
1569 // Notes:
1570 // Although spec says MMPDU can be fragmented; In most case,
1571 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001572 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001573
1574 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
1575 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1576 cbIVlen = 4;
1577 cbICVlen = 4;
1578 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1579 }
1580 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1581 cbIVlen = 8;//IV+ExtIV
1582 cbMIClen = 8;
1583 cbICVlen = 4;
1584 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1585 //We need to get seed here for filling TxKey entry.
1586 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1587 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1588 }
1589 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1590 cbIVlen = 8;//RSN Header
1591 cbICVlen = 8;//MIC
1592 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001593 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001594 }
1595 //MAC Header should be padding 0 to DW alignment.
1596 uPadding = 4 - (cbMacHdLen%4);
1597 uPadding %= 4;
1598 }
1599
1600 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen;
1601
1602 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001603 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001604 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1605 }
1606 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1607
1608 //Set RrvTime/RTS/CTS Buffer
1609 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001610 pvTxDataHd = (struct vnt_tx_datahead_g *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001611 sizeof(struct vnt_rrv_time_cts) + sizeof(struct vnt_cts));
1612 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001613 sizeof(struct vnt_cts) + sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001614 }
1615 else { // 802.11a/b packet
Malcolm Priestley558becf2013-08-16 23:50:32 +01001616 pvTxDataHd = (struct vnt_tx_datahead_ab *) (pbyTxBufferAddr +
1617 wTxBufSize + sizeof(struct vnt_rrv_time_ab));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001618 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001619 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001620 }
1621
Andres Moreceb8c5d2013-03-18 20:33:49 -05001622 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001623 &(pPacket->p80211Header->sA3.abyAddr1[0]),
1624 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001625 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001626 &(pPacket->p80211Header->sA3.abyAddr2[0]),
1627 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001628 //=========================
1629 // No Fragmentation
1630 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001631 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001632
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001633 /* Fill FIFO,RrvTime,RTS,and CTS */
1634 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001635 pTX_Buffer, &pMICHDR, 0,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001636 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001637
1638 //Fill DataHead
1639 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, TYPE_TXDMA0, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01001640 AUTO_FB_NONE);
Forest Bond92b96792009-06-13 07:38:31 -04001641
Andres More1cac4a42013-03-18 20:33:50 -05001642 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001643
1644 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + cbFrameBodySize;
1645
1646 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001647 u8 * pbyIVHead;
1648 u8 * pbyPayloadHead;
1649 u8 * pbyBSSID;
Forest Bond92b96792009-06-13 07:38:31 -04001650 PSKeyItem pTransmitKey = NULL;
1651
Andres Moreb902fbf2013-02-25 20:32:51 -05001652 pbyIVHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding);
1653 pbyPayloadHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001654 do {
1655 if ((pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) &&
Andres More4e9b5e22013-02-12 20:36:30 -05001656 (pDevice->bLinkPass == true)) {
Forest Bond92b96792009-06-13 07:38:31 -04001657 pbyBSSID = pDevice->abyBSSID;
1658 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001659 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001660 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001661 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001662 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1663 break;
1664 }
1665 } else {
1666 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get PTK.\n");
1667 break;
1668 }
1669 }
1670 // get group key
1671 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001672 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001673 pTransmitKey = NULL;
1674 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"KEY is NULL. OP Mode[%d]\n", pDevice->eOPMode);
1675 } else {
1676 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1677 }
Andres Moree269fc22013-02-12 20:36:29 -05001678 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001679 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001680 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Andres More3eaca0d2013-02-25 20:32:52 -05001681 (u8 *)pMACHeader, (u16)cbFrameBodySize, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001682
Jim Lieb3e362592009-08-12 14:54:11 -07001683 memcpy(pMACHeader, pPacket->p80211Header, cbMacHdLen);
Andres Moreb902fbf2013-02-25 20:32:51 -05001684 memcpy(pbyPayloadHead, ((u8 *)(pPacket->p80211Header) + cbMacHdLen),
Forest Bond92b96792009-06-13 07:38:31 -04001685 cbFrameBodySize);
1686 }
1687 else {
1688 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001689 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001690 }
1691
Andres More1cac4a42013-03-18 20:33:50 -05001692 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001693 pDevice->wSeqCounter++ ;
1694 if (pDevice->wSeqCounter > 0x0fff)
1695 pDevice->wSeqCounter = 0;
1696
1697 if (bIsPSPOLL) {
1698 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001699 // of FIFO control header.
Forest Bond92b96792009-06-13 07:38:31 -04001700 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
1701 // in the same place of other packet's Duration-field).
1702 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001703 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
1704 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_a =
1705 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1706 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_b =
1707 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1708 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +01001709 ((struct vnt_tx_datahead_ab *)pvTxDataHd)->wDuration =
1710 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1711 }
Forest Bond92b96792009-06-13 07:38:31 -04001712 }
1713
Andres More3eaca0d2013-02-25 20:32:52 -05001714 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05001715 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001716 pTX_Buffer->byType = 0x00;
1717
1718 pContext->pPacket = NULL;
1719 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001720 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001721
Andres More1cac4a42013-03-18 20:33:50 -05001722 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001723 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1724 &pMACHeader->addr1[0], (u16)cbFrameSize,
1725 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001726 }
1727 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001728 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1729 &pMACHeader->addr3[0], (u16)cbFrameSize,
1730 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001731 }
1732
1733 PIPEnsSendBulkOut(pDevice,pContext);
1734 return CMD_STATUS_PENDING;
1735}
1736
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001737CMD_STATUS csBeacon_xmit(struct vnt_private *pDevice,
1738 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001739{
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001740 struct vnt_beacon_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001741 u32 cbFrameSize = pPacket->cbMPDULen + WLAN_FCS_LEN;
1742 u32 cbHeaderSize = 0;
1743 u16 wTxBufSize = sizeof(STxShortBufHead);
1744 PSTxShortBufHead pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001745 struct ieee80211_hdr *pMACHeader;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001746 struct vnt_tx_datahead_ab *pTxDataHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001747 u16 wCurrentRate;
1748 u32 cbFrameBodySize;
1749 u32 cbReqCount;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001750 u8 *pbyTxBufferAddr;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001751 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001752 CMD_STATUS status;
Forest Bond92b96792009-06-13 07:38:31 -04001753
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001754 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001755 if (NULL == pContext) {
1756 status = CMD_STATUS_RESOURCES;
1757 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1758 return status ;
1759 }
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001760
1761 pTX_Buffer = (struct vnt_beacon_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001762 pbyTxBufferAddr = (u8 *)&(pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001763
1764 cbFrameBodySize = pPacket->cbPayloadLen;
1765
1766 pTxBufHead = (PSTxShortBufHead) pbyTxBufferAddr;
1767 wTxBufSize = sizeof(STxShortBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001768
1769 if (pDevice->byBBType == BB_TYPE_11A) {
1770 wCurrentRate = RATE_6M;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001771 pTxDataHead = (struct vnt_tx_datahead_ab *)
1772 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001773 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001774 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11A,
1775 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001776 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001777 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001778 PK_TYPE_11A, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001779 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001780 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001781 } else {
1782 wCurrentRate = RATE_1M;
1783 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001784 pTxDataHead = (struct vnt_tx_datahead_ab *)
1785 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001786 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001787 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11B,
1788 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001789 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001790 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001791 PK_TYPE_11B, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001792 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001793 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001794 }
1795
1796 //Generate Beacon Header
Andres More1cac4a42013-03-18 20:33:50 -05001797 pMACHeader = (struct ieee80211_hdr *)(pbyTxBufferAddr + cbHeaderSize);
Jim Lieb3e362592009-08-12 14:54:11 -07001798 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001799
Andres More1cac4a42013-03-18 20:33:50 -05001800 pMACHeader->duration_id = 0;
1801 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001802 pDevice->wSeqCounter++ ;
1803 if (pDevice->wSeqCounter > 0x0fff)
1804 pDevice->wSeqCounter = 0;
1805
1806 cbReqCount = cbHeaderSize + WLAN_HDR_ADDR3_LEN + cbFrameBodySize;
1807
Andres More3eaca0d2013-02-25 20:32:52 -05001808 pTX_Buffer->wTxByteCount = (u16)cbReqCount;
Andres Moreb902fbf2013-02-25 20:32:51 -05001809 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001810 pTX_Buffer->byType = 0x01;
1811
1812 pContext->pPacket = NULL;
1813 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001814 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001815
1816 PIPEnsSendBulkOut(pDevice,pContext);
1817 return CMD_STATUS_PENDING;
1818
1819}
1820
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001821void vDMA0_tx_80211(struct vnt_private *pDevice, struct sk_buff *skb)
1822{
1823 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001824 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001825 struct vnt_tx_fifo_head *pTxBufHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001826 u8 byPktType;
1827 u8 *pbyTxBufferAddr;
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001828 void *pvTxDataHd;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001829 u32 uDuration, cbReqCount;
Andres More1cac4a42013-03-18 20:33:50 -05001830 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001831 u32 cbHeaderSize, cbFrameBodySize;
Andres Moree269fc22013-02-12 20:36:29 -05001832 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001833 u32 cbFrameSize;
1834 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1835 u32 uPadding = 0;
1836 u32 cbMICHDR = 0, uLength = 0;
1837 u32 dwMICKey0, dwMICKey1;
1838 u32 dwMIC_Priority;
1839 u32 *pdwMIC_L, *pdwMIC_R;
1840 u16 wTxBufSize;
1841 u32 cbMacHdLen;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001842 struct ethhdr sEthHeader;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001843 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001844 u32 wCurrentRate = RATE_1M;
1845 PUWLAN_80211HDR p80211Header;
1846 u32 uNodeIndex = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001847 int bNodeExist = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001848 SKeyItem STempKey;
1849 PSKeyItem pTransmitKey = NULL;
1850 u8 *pbyIVHead, *pbyPayloadHead, *pbyMacHdr;
1851 u32 cbExtSuppRate = 0;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001852 struct vnt_usb_send_context *pContext;
Forest Bond92b96792009-06-13 07:38:31 -04001853
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +01001854 pMICHDR = pvTxDataHd = NULL;
Forest Bond92b96792009-06-13 07:38:31 -04001855
1856 if(skb->len <= WLAN_HDR_ADDR3_LEN) {
1857 cbFrameBodySize = 0;
1858 }
1859 else {
1860 cbFrameBodySize = skb->len - WLAN_HDR_ADDR3_LEN;
1861 }
1862 p80211Header = (PUWLAN_80211HDR)skb->data;
1863
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001864 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001865
1866 if (NULL == pContext) {
1867 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0 TX...NO CONTEXT!\n");
1868 dev_kfree_skb_irq(skb);
1869 return ;
1870 }
1871
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001872 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001873 pTxBufHead = &pTX_Buffer->fifo_head;
1874 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1875 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001876
1877 if (pDevice->byBBType == BB_TYPE_11A) {
1878 wCurrentRate = RATE_6M;
1879 byPktType = PK_TYPE_11A;
1880 } else {
1881 wCurrentRate = RATE_1M;
1882 byPktType = PK_TYPE_11B;
1883 }
1884
1885 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1886 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1887 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1888 // to set power here.
1889 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1890 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1891 } else {
1892 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1893 }
1894
1895 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"vDMA0_tx_80211: p80211Header->sA3.wFrameCtl = %x \n", p80211Header->sA3.wFrameCtl);
1896
1897 //Set packet type
1898 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1899 pTxBufHead->wFIFOCtl = 0;
1900 }
1901 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1902 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1903 }
1904 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1905 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1906 }
1907 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1908 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1909 }
1910
1911 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1912 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1913
Andres More22040bb2010-08-02 20:21:44 -03001914 if (is_multicast_ether_addr(p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001915 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001916 if (pDevice->bEnableHostWEP) {
1917 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05001918 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001919 }
Forest Bond92b96792009-06-13 07:38:31 -04001920 }
1921 else {
1922 if (pDevice->bEnableHostWEP) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001923 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(p80211Header->sA3.abyAddr1), &uNodeIndex))
Andres More4e9b5e22013-02-12 20:36:30 -05001924 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001925 }
Andres More4e9b5e22013-02-12 20:36:30 -05001926 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001927 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1928 };
1929
1930 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1931 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1932
1933 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1934 //Set Preamble type always long
1935 //pDevice->byPreambleType = PREAMBLE_LONG;
1936
1937 // probe-response don't retry
1938 //if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001939 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001940 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1941 //}
1942 }
1943
1944 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1945
1946 if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001947 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001948 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1949 } else {
1950 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1951 }
1952
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001953 // hostapd daemon ext support rate patch
Forest Bond92b96792009-06-13 07:38:31 -04001954 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1955
1956 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0) {
1957 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN;
1958 }
1959
1960 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0) {
1961 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN;
1962 }
1963
1964 if (cbExtSuppRate >0) {
1965 cbFrameBodySize = WLAN_ASSOCRESP_OFF_SUPP_RATES;
1966 }
1967 }
1968
Forest Bond92b96792009-06-13 07:38:31 -04001969 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001970 pTxBufHead->wFragCtl |= cpu_to_le16((u16)cbMacHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001971
1972 // Notes:
1973 // Although spec says MMPDU can be fragmented; In most case,
1974 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001975 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001976
Forest Bond92b96792009-06-13 07:38:31 -04001977 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1978 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1979 cbIVlen = 4;
1980 cbICVlen = 4;
1981 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1982 }
1983 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1984 cbIVlen = 8;//IV+ExtIV
1985 cbMIClen = 8;
1986 cbICVlen = 4;
1987 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1988 //We need to get seed here for filling TxKey entry.
1989 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1990 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1991 }
1992 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1993 cbIVlen = 8;//RSN Header
1994 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001995 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001996 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001997 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001998 }
1999 //MAC Header should be padding 0 to DW alignment.
2000 uPadding = 4 - (cbMacHdLen%4);
2001 uPadding %= 4;
2002 }
2003
2004 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen + cbExtSuppRate;
2005
2006 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05002007 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04002008 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
2009 }
2010 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
2011
Forest Bond92b96792009-06-13 07:38:31 -04002012 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002013 pvTxDataHd = (struct vnt_tx_datahead_g *) (pbyTxBufferAddr +
2014 wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley4f990052013-08-16 23:38:57 +01002015 sizeof(struct vnt_cts));
2016 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002017 sizeof(struct vnt_cts) + sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04002018
2019 }
2020 else {//802.11a/b packet
Malcolm Priestley558becf2013-08-16 23:50:32 +01002021 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
2022 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01002023 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestley558becf2013-08-16 23:50:32 +01002024 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04002025 }
Andres Moreceb8c5d2013-03-18 20:33:49 -05002026 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03002027 &(p80211Header->sA3.abyAddr1[0]),
2028 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002029 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03002030 &(p80211Header->sA3.abyAddr2[0]),
2031 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04002032 //=========================
2033 // No Fragmentation
2034 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05002035 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04002036
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01002037 /* Fill FIFO,RrvTime,RTS,and CTS */
2038 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01002039 pTX_Buffer, &pMICHDR, cbMICHDR,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01002040 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04002041
2042 //Fill DataHead
2043 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, TYPE_TXDMA0, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01002044 AUTO_FB_NONE);
Forest Bond92b96792009-06-13 07:38:31 -04002045
Andres More1cac4a42013-03-18 20:33:50 -05002046 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04002047
2048 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + (cbFrameBodySize + cbMIClen) + cbExtSuppRate;
2049
Andres Moreb902fbf2013-02-25 20:32:51 -05002050 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderSize);
2051 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding + cbIVlen);
2052 pbyIVHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding);
Forest Bond92b96792009-06-13 07:38:31 -04002053
2054 // Copy the Packet into a tx Buffer
2055 memcpy(pbyMacHdr, skb->data, cbMacHdLen);
2056
2057 // version set to 0, patch for hostapd deamon
Andres More1cac4a42013-03-18 20:33:50 -05002058 pMACHeader->frame_control &= cpu_to_le16(0xfffc);
Forest Bond92b96792009-06-13 07:38:31 -04002059 memcpy(pbyPayloadHead, (skb->data + cbMacHdLen), cbFrameBodySize);
2060
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002061 // replace support rate, patch for hostapd daemon( only support 11M)
Forest Bond92b96792009-06-13 07:38:31 -04002062 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
2063 if (cbExtSuppRate != 0) {
2064 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0)
2065 memcpy((pbyPayloadHead + cbFrameBodySize),
2066 pMgmt->abyCurrSuppRates,
2067 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN
2068 );
2069 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0)
2070 memcpy((pbyPayloadHead + cbFrameBodySize) + ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN,
2071 pMgmt->abyCurrExtSuppRates,
2072 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN
2073 );
2074 }
2075 }
2076
2077 // Set wep
2078 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
2079
2080 if (pDevice->bEnableHostWEP) {
2081 pTransmitKey = &STempKey;
2082 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2083 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2084 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2085 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2086 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2087 memcpy(pTransmitKey->abyKey,
2088 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2089 pTransmitKey->uKeyLength
2090 );
2091 }
2092
2093 if ((pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
2094
Andres More52a7e642013-02-25 20:32:53 -05002095 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
2096 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04002097
2098 // DO Software Michael
2099 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002100 MIC_vAppend((u8 *)&(sEthHeader.h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04002101 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05002102 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002103 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0_tx_8021:MIC KEY:"\
2104 " %X, %X\n", dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04002105
2106 uLength = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen;
2107
2108 MIC_vAppend((pbyTxBufferAddr + uLength), cbFrameBodySize);
2109
Andres More52a7e642013-02-25 20:32:53 -05002110 pdwMIC_L = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize);
2111 pdwMIC_R = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04002112
2113 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
2114 MIC_vUnInit();
2115
Andres More4e9b5e22013-02-12 20:36:30 -05002116 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002117 *pdwMIC_L = 0;
2118 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05002119 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04002120 }
2121
2122 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
2123 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderSize, uPadding, cbIVlen);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002124 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%x, %x\n",
2125 *pdwMIC_L, *pdwMIC_R);
Forest Bond92b96792009-06-13 07:38:31 -04002126
2127 }
2128
Andres Moreb902fbf2013-02-25 20:32:51 -05002129 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01002130 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04002131
2132 if (pDevice->bEnableHostWEP) {
2133 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
2134 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
2135 }
2136
2137 if ((pDevice->byLocalID <= REV_ID_VT3253_A1)) {
Andres More3eaca0d2013-02-25 20:32:52 -05002138 s_vSWencryption(pDevice, pTransmitKey, pbyPayloadHead, (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04002139 }
2140 }
2141
Andres More1cac4a42013-03-18 20:33:50 -05002142 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04002143 pDevice->wSeqCounter++ ;
2144 if (pDevice->wSeqCounter > 0x0fff)
2145 pDevice->wSeqCounter = 0;
2146
Forest Bond92b96792009-06-13 07:38:31 -04002147 if (bIsPSPOLL) {
2148 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
2149 // of FIFO control header.
2150 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
2151 // in the same place of other packet's Duration-field).
2152 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002153 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
2154 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_a =
2155 cpu_to_le16(p80211Header->sA2.wDurationID);
2156 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_b =
2157 cpu_to_le16(p80211Header->sA2.wDurationID);
2158 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +01002159 ((struct vnt_tx_datahead_ab *)pvTxDataHd)->wDuration =
2160 cpu_to_le16(p80211Header->sA2.wDurationID);
2161 }
Forest Bond92b96792009-06-13 07:38:31 -04002162 }
2163
Andres More3eaca0d2013-02-25 20:32:52 -05002164 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05002165 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04002166 pTX_Buffer->byType = 0x00;
2167
2168 pContext->pPacket = skb;
2169 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002170 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002171
Andres More1cac4a42013-03-18 20:33:50 -05002172 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002173 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2174 &pMACHeader->addr1[0], (u16)cbFrameSize,
2175 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002176 }
2177 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002178 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2179 &pMACHeader->addr3[0], (u16)cbFrameSize,
2180 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002181 }
2182 PIPEnsSendBulkOut(pDevice,pContext);
2183 return ;
2184
2185}
2186
Forest Bond92b96792009-06-13 07:38:31 -04002187//TYPE_AC0DMA data tx
2188/*
2189 * Description:
2190 * Tx packet via AC0DMA(DMA1)
2191 *
2192 * Parameters:
2193 * In:
2194 * pDevice - Pointer to the adapter
2195 * skb - Pointer to tx skb packet
2196 * Out:
2197 * void
2198 *
2199 * Return Value: NULL
2200 */
2201
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002202int nsDMA_tx_packet(struct vnt_private *pDevice,
2203 u32 uDMAIdx, struct sk_buff *skb)
Forest Bond92b96792009-06-13 07:38:31 -04002204{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002205 struct net_device_stats *pStats = &pDevice->stats;
2206 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002207 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002208 u32 BytesToWrite = 0, uHeaderLen = 0;
2209 u32 uNodeIndex = 0;
2210 u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
2211 u16 wAID;
2212 u8 byPktType;
Andres Moree269fc22013-02-12 20:36:29 -05002213 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002214 PSKeyItem pTransmitKey = NULL;
2215 SKeyItem STempKey;
2216 int ii;
Andres Moree269fc22013-02-12 20:36:29 -05002217 int bTKIP_UseGTK = false;
2218 int bNeedDeAuth = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002219 u8 *pbyBSSID;
Andres Moree269fc22013-02-12 20:36:29 -05002220 int bNodeExist = false;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002221 struct vnt_usb_send_context *pContext;
Andres Moredfdcc422013-02-12 20:36:28 -05002222 bool fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002223 u32 status;
2224 u16 wKeepRate = pDevice->wCurrentRate;
Andres Moree269fc22013-02-12 20:36:29 -05002225 int bTxeapol_key = false;
Forest Bond92b96792009-06-13 07:38:31 -04002226
Forest Bond92b96792009-06-13 07:38:31 -04002227 if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
2228
2229 if (pDevice->uAssocCount == 0) {
2230 dev_kfree_skb_irq(skb);
2231 return 0;
2232 }
2233
Andres Moreb902fbf2013-02-25 20:32:51 -05002234 if (is_multicast_ether_addr((u8 *)(skb->data))) {
Forest Bond92b96792009-06-13 07:38:31 -04002235 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05002236 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002237 if (pMgmt->sNodeDBTable[0].bPSEnable) {
2238
2239 skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skb);
2240 pMgmt->sNodeDBTable[0].wEnQueueCnt++;
2241 // set tx map
2242 pMgmt->abyPSTxMap[0] |= byMask[0];
2243 return 0;
2244 }
Masanari Iida93184692012-08-13 21:21:50 +09002245 // multicast/broadcast data rate
Forest Bond92b96792009-06-13 07:38:31 -04002246
2247 if (pDevice->byBBType != BB_TYPE_11A)
2248 pDevice->wCurrentRate = RATE_2M;
2249 else
2250 pDevice->wCurrentRate = RATE_24M;
2251 // long preamble type
2252 pDevice->byPreambleType = PREAMBLE_SHORT;
2253
2254 }else {
2255
Andres Moreb902fbf2013-02-25 20:32:51 -05002256 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(skb->data), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002257
2258 if (pMgmt->sNodeDBTable[uNodeIndex].bPSEnable) {
2259
2260 skb_queue_tail(&pMgmt->sNodeDBTable[uNodeIndex].sTxPSQueue, skb);
2261
2262 pMgmt->sNodeDBTable[uNodeIndex].wEnQueueCnt++;
2263 // set tx map
2264 wAID = pMgmt->sNodeDBTable[uNodeIndex].wAID;
2265 pMgmt->abyPSTxMap[wAID >> 3] |= byMask[wAID & 7];
2266 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set:pMgmt->abyPSTxMap[%d]= %d\n",
2267 (wAID >> 3), pMgmt->abyPSTxMap[wAID >> 3]);
2268
2269 return 0;
2270 }
2271 // AP rate decided from node
2272 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2273 // tx preamble decided from node
2274
2275 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2276 pDevice->byPreambleType = pDevice->byShortPreamble;
2277
2278 }else {
2279 pDevice->byPreambleType = PREAMBLE_LONG;
2280 }
Andres More4e9b5e22013-02-12 20:36:30 -05002281 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002282 }
2283 }
2284
Andres Moree269fc22013-02-12 20:36:29 -05002285 if (bNodeExist == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002286 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Unknown STA not found in node DB \n");
2287 dev_kfree_skb_irq(skb);
2288 return 0;
2289 }
2290 }
2291
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002292 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002293
2294 if (pContext == NULL) {
2295 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG" pContext == NULL\n");
2296 dev_kfree_skb_irq(skb);
2297 return STATUS_RESOURCES;
2298 }
2299
Andres Moreceb8c5d2013-03-18 20:33:49 -05002300 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)(skb->data), ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002301
2302//mike add:station mode check eapol-key challenge--->
2303{
Andres Moreb902fbf2013-02-25 20:32:51 -05002304 u8 Protocol_Version; //802.1x Authentication
2305 u8 Packet_Type; //802.1x Authentication
2306 u8 Descriptor_type;
Andres More3eaca0d2013-02-25 20:32:52 -05002307 u16 Key_info;
Forest Bond92b96792009-06-13 07:38:31 -04002308
Charles Clément21ec51f2010-05-18 10:08:14 -07002309 Protocol_Version = skb->data[ETH_HLEN];
2310 Packet_Type = skb->data[ETH_HLEN+1];
2311 Descriptor_type = skb->data[ETH_HLEN+1+1+2];
2312 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 -05002313 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002314 /* 802.1x OR eapol-key challenge frame transfer */
2315 if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
2316 (Packet_Type == 3)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002317 bTxeapol_key = true;
Forest Bond92b96792009-06-13 07:38:31 -04002318 if(!(Key_info & BIT3) && //WPA or RSN group-key challenge
2319 (Key_info & BIT8) && (Key_info & BIT9)) { //send 2/2 key
2320 if(Descriptor_type==254) {
Andres More4e9b5e22013-02-12 20:36:30 -05002321 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002322 PRINT_K("WPA ");
2323 }
2324 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002325 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002326 PRINT_K("WPA2(re-keying) ");
2327 }
2328 PRINT_K("Authentication completed!!\n");
2329 }
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002330 else if((Key_info & BIT3) && (Descriptor_type==2) && //RSN pairwise-key challenge
Forest Bond92b96792009-06-13 07:38:31 -04002331 (Key_info & BIT8) && (Key_info & BIT9)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002332 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002333 PRINT_K("WPA2 Authentication completed!!\n");
2334 }
2335 }
2336 }
2337}
2338//mike add:station mode check eapol-key challenge<---
2339
Andres More4e9b5e22013-02-12 20:36:30 -05002340 if (pDevice->bEncryptionEnable == true) {
2341 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002342 // get Transmit key
2343 do {
2344 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) &&
2345 (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2346 pbyBSSID = pDevice->abyBSSID;
2347 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05002348 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002349 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05002350 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
2351 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002352 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2353 break;
2354 }
2355 } else {
2356 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get PTK.\n");
2357 break;
2358 }
2359 }else if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002360 /* TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1 */
2361 pbyBSSID = pDevice->sTxEthHeader.h_dest;
Forest Bond92b96792009-06-13 07:38:31 -04002362 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS Serach Key: \n");
2363 for (ii = 0; ii< 6; ii++)
2364 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"%x \n", *(pbyBSSID+ii));
2365 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"\n");
2366
2367 // get pairwise key
Andres More4e9b5e22013-02-12 20:36:30 -05002368 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == true)
Forest Bond92b96792009-06-13 07:38:31 -04002369 break;
2370 }
2371 // get group key
2372 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002373 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002374 pTransmitKey = NULL;
2375 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
2376 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2377 }
2378 else
2379 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"NOT IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2380 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05002381 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002382 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2383 }
Andres Moree269fc22013-02-12 20:36:29 -05002384 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04002385 }
2386
2387 if (pDevice->bEnableHostWEP) {
2388 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"acdma0: STA index %d\n", uNodeIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002389 if (pDevice->bEncryptionEnable == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002390 pTransmitKey = &STempKey;
2391 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2392 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2393 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2394 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2395 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2396 memcpy(pTransmitKey->abyKey,
2397 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2398 pTransmitKey->uKeyLength
2399 );
2400 }
2401 }
2402
Andres Moreb902fbf2013-02-25 20:32:51 -05002403 byPktType = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002404
2405 if (pDevice->bFixRate) {
2406 if (pDevice->byBBType == BB_TYPE_11B) {
2407 if (pDevice->uConnectionRate >= RATE_11M) {
2408 pDevice->wCurrentRate = RATE_11M;
2409 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002410 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002411 }
2412 } else {
2413 if ((pDevice->byBBType == BB_TYPE_11A) &&
2414 (pDevice->uConnectionRate <= RATE_6M)) {
2415 pDevice->wCurrentRate = RATE_6M;
2416 } else {
2417 if (pDevice->uConnectionRate >= RATE_54M)
2418 pDevice->wCurrentRate = RATE_54M;
2419 else
Andres More3eaca0d2013-02-25 20:32:52 -05002420 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002421 }
2422 }
2423 }
2424 else {
2425 if (pDevice->eOPMode == OP_MODE_ADHOC) {
2426 // Adhoc Tx rate decided from node DB
Andres Moreceb8c5d2013-03-18 20:33:49 -05002427 if (is_multicast_ether_addr(pDevice->sTxEthHeader.h_dest)) {
Forest Bond92b96792009-06-13 07:38:31 -04002428 // Multicast use highest data rate
2429 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2430 // preamble type
2431 pDevice->byPreambleType = pDevice->byShortPreamble;
2432 }
2433 else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002434 if (BSSbIsSTAInNodeDB(pDevice, &(pDevice->sTxEthHeader.h_dest[0]), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002435 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2436 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2437 pDevice->byPreambleType = pDevice->byShortPreamble;
2438
2439 }
2440 else {
2441 pDevice->byPreambleType = PREAMBLE_LONG;
2442 }
2443 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Found Node Index is [%d] Tx Data Rate:[%d]\n",uNodeIndex, pDevice->wCurrentRate);
2444 }
2445 else {
2446 if (pDevice->byBBType != BB_TYPE_11A)
2447 pDevice->wCurrentRate = RATE_2M;
2448 else
2449 pDevice->wCurrentRate = RATE_24M; // refer to vMgrCreateOwnIBSS()'s
2450 // abyCurrExtSuppRates[]
2451 pDevice->byPreambleType = PREAMBLE_SHORT;
2452 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Not Found Node use highest basic Rate.....\n");
2453 }
2454 }
2455 }
2456 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) {
2457 // Infra STA rate decided from AP Node, index = 0
2458 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2459 }
2460 }
2461
Andres Moreceb8c5d2013-03-18 20:33:49 -05002462 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002463 if (pDevice->byBBType != BB_TYPE_11A) {
2464 pDevice->wCurrentRate = RATE_1M;
2465 pDevice->byACKRate = RATE_1M;
2466 pDevice->byTopCCKBasicRate = RATE_1M;
2467 pDevice->byTopOFDMBasicRate = RATE_6M;
2468 } else {
2469 pDevice->wCurrentRate = RATE_6M;
2470 pDevice->byACKRate = RATE_6M;
2471 pDevice->byTopCCKBasicRate = RATE_1M;
2472 pDevice->byTopOFDMBasicRate = RATE_6M;
2473 }
2474 }
Forest Bond92b96792009-06-13 07:38:31 -04002475
Andres More0cbd8d92010-05-06 20:34:29 -03002476 DBG_PRT(MSG_LEVEL_DEBUG,
2477 KERN_INFO "dma_tx: pDevice->wCurrentRate = %d\n",
2478 pDevice->wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -04002479
2480 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002481 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002482 }
2483
2484 if (pDevice->wCurrentRate <= RATE_11M) {
2485 byPktType = PK_TYPE_11B;
2486 }
2487
Andres More4e9b5e22013-02-12 20:36:30 -05002488 if (bNeedEncryption == true) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002489 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.h_proto));
2490 if ((pDevice->sTxEthHeader.h_proto) == cpu_to_be16(ETH_P_PAE)) {
Andres Moree269fc22013-02-12 20:36:29 -05002491 bNeedEncryption = false;
Andres Moreceb8c5d2013-03-18 20:33:49 -05002492 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.h_proto));
Forest Bond92b96792009-06-13 07:38:31 -04002493 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) && (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2494 if (pTransmitKey == NULL) {
2495 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Don't Find TX KEY\n");
2496 }
2497 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002498 if (bTKIP_UseGTK == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002499 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"error: KEY is GTK!!~~\n");
2500 }
2501 else {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002502 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2503 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002504 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002505 }
2506 }
2507 }
2508
Forest Bond92b96792009-06-13 07:38:31 -04002509 if (pDevice->bEnableHostWEP) {
2510 if ((uNodeIndex != 0) &&
2511 (pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex & PAIRWISE_KEY)) {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002512 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2513 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002514 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002515 }
2516 }
2517 }
2518 else {
2519
Forest Bond92b96792009-06-13 07:38:31 -04002520 if (pTransmitKey == NULL) {
2521 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"return no tx key\n");
Andres Moree269fc22013-02-12 20:36:29 -05002522 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002523 dev_kfree_skb_irq(skb);
2524 pStats->tx_dropped++;
2525 return STATUS_FAILURE;
2526 }
Forest Bond92b96792009-06-13 07:38:31 -04002527 }
2528 }
2529
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002530 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2531
Forest Bond92b96792009-06-13 07:38:31 -04002532 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002533 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002534 skb->len, uDMAIdx, &pDevice->sTxEthHeader,
Andres Moreb902fbf2013-02-25 20:32:51 -05002535 (u8 *)skb->data, pTransmitKey, uNodeIndex,
Forest Bond92b96792009-06-13 07:38:31 -04002536 pDevice->wCurrentRate,
2537 &uHeaderLen, &BytesToWrite
2538 );
2539
Andres Moree269fc22013-02-12 20:36:29 -05002540 if (fConvertedPacket == false) {
2541 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002542 dev_kfree_skb_irq(skb);
2543 return STATUS_FAILURE;
2544 }
2545
Andres More4e9b5e22013-02-12 20:36:30 -05002546 if ( pDevice->bEnablePSMode == true ) {
Forest Bond92b96792009-06-13 07:38:31 -04002547 if ( !pDevice->bPSModeTxBurst ) {
Andres More0cbd8d92010-05-06 20:34:29 -03002548 bScheduleCommand((void *) pDevice,
2549 WLAN_CMD_MAC_DISPOWERSAVING,
2550 NULL);
Andres More4e9b5e22013-02-12 20:36:30 -05002551 pDevice->bPSModeTxBurst = true;
Forest Bond92b96792009-06-13 07:38:31 -04002552 }
2553 }
2554
Andres Moreb902fbf2013-02-25 20:32:51 -05002555 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002556 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002557
2558 pContext->pPacket = skb;
2559 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002560 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002561
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002562 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2563 &pContext->sEthHeader.h_dest[0],
2564 (u16)(BytesToWrite-uHeaderLen),
2565 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002566
2567 status = PIPEnsSendBulkOut(pDevice,pContext);
2568
Andres More4e9b5e22013-02-12 20:36:30 -05002569 if (bNeedDeAuth == true) {
Andres More3eaca0d2013-02-25 20:32:52 -05002570 u16 wReason = WLAN_MGMT_REASON_MIC_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -04002571
Andres Moreb902fbf2013-02-25 20:32:51 -05002572 bScheduleCommand((void *) pDevice, WLAN_CMD_DEAUTH, (u8 *) &wReason);
Forest Bond92b96792009-06-13 07:38:31 -04002573 }
2574
2575 if(status!=STATUS_PENDING) {
Andres Moree269fc22013-02-12 20:36:29 -05002576 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002577 dev_kfree_skb_irq(skb);
2578 return STATUS_FAILURE;
2579 }
2580 else
2581 return 0;
2582
2583}
2584
Forest Bond92b96792009-06-13 07:38:31 -04002585/*
2586 * Description:
2587 * Relay packet send (AC1DMA) from rx dpc.
2588 *
2589 * Parameters:
2590 * In:
2591 * pDevice - Pointer to the adapter
2592 * pPacket - Pointer to rx packet
2593 * cbPacketSize - rx ethernet frame size
2594 * Out:
Andres Moree269fc22013-02-12 20:36:29 -05002595 * TURE, false
Forest Bond92b96792009-06-13 07:38:31 -04002596 *
Andres More4e9b5e22013-02-12 20:36:30 -05002597 * Return Value: Return true if packet is copy to dma1; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04002598 */
2599
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002600int bRelayPacketSend(struct vnt_private *pDevice, u8 *pbySkbData, u32 uDataLen,
2601 u32 uNodeIndex)
Forest Bond92b96792009-06-13 07:38:31 -04002602{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002603 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002604 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002605 u32 BytesToWrite = 0, uHeaderLen = 0;
2606 u8 byPktType = PK_TYPE_11B;
Andres Moree269fc22013-02-12 20:36:29 -05002607 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002608 SKeyItem STempKey;
2609 PSKeyItem pTransmitKey = NULL;
2610 u8 *pbyBSSID;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002611 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002612 u8 byPktTyp;
2613 int fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002614 u32 status;
2615 u16 wKeepRate = pDevice->wCurrentRate;
Forest Bond92b96792009-06-13 07:38:31 -04002616
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002617 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002618
2619 if (NULL == pContext) {
Andres Moree269fc22013-02-12 20:36:29 -05002620 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002621 }
2622
Andres Moreceb8c5d2013-03-18 20:33:49 -05002623 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)pbySkbData, ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002624
Andres More4e9b5e22013-02-12 20:36:30 -05002625 if (pDevice->bEncryptionEnable == true) {
2626 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002627 // get group key
2628 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002629 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002630 pTransmitKey = NULL;
2631 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2632 } else {
2633 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2634 }
2635 }
2636
2637 if (pDevice->bEnableHostWEP) {
Roel Kluinee93e192009-10-16 20:17:57 +02002638 if (uNodeIndex < MAX_NODE_NUM + 1) {
Forest Bond92b96792009-06-13 07:38:31 -04002639 pTransmitKey = &STempKey;
2640 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2641 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2642 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2643 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2644 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2645 memcpy(pTransmitKey->abyKey,
2646 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2647 pTransmitKey->uKeyLength
2648 );
2649 }
2650 }
2651
2652 if ( bNeedEncryption && (pTransmitKey == NULL) ) {
Andres Moree269fc22013-02-12 20:36:29 -05002653 pContext->bBoolInUse = false;
2654 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002655 }
2656
Andres Moreb902fbf2013-02-25 20:32:51 -05002657 byPktTyp = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002658
2659 if (pDevice->bFixRate) {
2660 if (pDevice->byBBType == BB_TYPE_11B) {
2661 if (pDevice->uConnectionRate >= RATE_11M) {
2662 pDevice->wCurrentRate = RATE_11M;
2663 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002664 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002665 }
2666 } else {
2667 if ((pDevice->byBBType == BB_TYPE_11A) &&
2668 (pDevice->uConnectionRate <= RATE_6M)) {
2669 pDevice->wCurrentRate = RATE_6M;
2670 } else {
2671 if (pDevice->uConnectionRate >= RATE_54M)
2672 pDevice->wCurrentRate = RATE_54M;
2673 else
Andres More3eaca0d2013-02-25 20:32:52 -05002674 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002675 }
2676 }
2677 }
2678 else {
2679 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2680 }
2681
Forest Bond92b96792009-06-13 07:38:31 -04002682 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002683 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002684 }
2685
2686 if (pDevice->wCurrentRate <= RATE_11M)
2687 byPktType = PK_TYPE_11B;
2688
Andres Moreabad19d2010-07-12 16:28:32 -03002689 BytesToWrite = uDataLen + ETH_FCS_LEN;
2690
Forest Bond92b96792009-06-13 07:38:31 -04002691 // Convert the packet to an usb frame and copy into our buffer
2692 // and send the irp.
2693
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002694 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2695
Forest Bond92b96792009-06-13 07:38:31 -04002696 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002697 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002698 uDataLen, TYPE_AC0DMA, &pDevice->sTxEthHeader,
2699 pbySkbData, pTransmitKey, uNodeIndex,
2700 pDevice->wCurrentRate,
2701 &uHeaderLen, &BytesToWrite
2702 );
2703
Andres Moree269fc22013-02-12 20:36:29 -05002704 if (fConvertedPacket == false) {
2705 pContext->bBoolInUse = false;
2706 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002707 }
2708
Andres Moreb902fbf2013-02-25 20:32:51 -05002709 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002710 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002711
2712 pContext->pPacket = NULL;
2713 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002714 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002715
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002716 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2717 &pContext->sEthHeader.h_dest[0],
2718 (u16)(BytesToWrite - uHeaderLen),
2719 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002720
2721 status = PIPEnsSendBulkOut(pDevice,pContext);
2722
Andres More4e9b5e22013-02-12 20:36:30 -05002723 return true;
Forest Bond92b96792009-06-13 07:38:31 -04002724}
2725