blob: 7002b5d1734b2884f68af1846007565f67dc424f [file] [log] [blame]
Forest Bond92b96792009-06-13 07:38:31 -04001/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * File: rxtx.c
20 *
21 * Purpose: handle WMAC/802.3/802.11 rx & tx functions
22 *
23 * Author: Lyndon Chen
24 *
25 * Date: May 20, 2003
26 *
27 * Functions:
Gilles Espinassef77f13e2010-03-29 15:41:47 +020028 * s_vGenerateTxParameter - Generate tx dma required parameter.
Forest Bond92b96792009-06-13 07:38:31 -040029 * s_vGenerateMACHeader - Translate 802.3 to 802.11 header
30 * csBeacon_xmit - beacon tx function
31 * csMgmt_xmit - management tx function
32 * s_uGetDataDuration - get tx data required duration
33 * s_uFillDataHead- fulfill tx data duration header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020034 * s_uGetRTSCTSDuration- get rtx/cts required duration
Forest Bond92b96792009-06-13 07:38:31 -040035 * s_uGetRTSCTSRsvTime- get rts/cts reserved time
36 * s_uGetTxRsvTime- get frame reserved time
37 * s_vFillCTSHead- fulfill CTS ctl header
Gilles Espinassef77f13e2010-03-29 15:41:47 +020038 * s_vFillFragParameter- Set fragment ctl parameter.
Forest Bond92b96792009-06-13 07:38:31 -040039 * s_vFillRTSHead- fulfill RTS ctl header
40 * s_vFillTxKey- fulfill tx encrypt key
41 * s_vSWencryption- Software encrypt header
42 * vDMA0_tx_80211- tx 802.11 frame via dma0
43 * vGenerateFIFOHeader- Generate tx FIFO ctl header
44 *
45 * Revision History:
46 *
47 */
48
Forest Bond92b96792009-06-13 07:38:31 -040049#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040050#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040051#include "tether.h"
Forest Bond92b96792009-06-13 07:38:31 -040052#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040053#include "bssdb.h"
Forest Bond92b96792009-06-13 07:38:31 -040054#include "mac.h"
Forest Bond92b96792009-06-13 07:38:31 -040055#include "michael.h"
Forest Bond92b96792009-06-13 07:38:31 -040056#include "tkip.h"
Forest Bond92b96792009-06-13 07:38:31 -040057#include "tcrc.h"
Forest Bond92b96792009-06-13 07:38:31 -040058#include "wctl.h"
Forest Bond92b96792009-06-13 07:38:31 -040059#include "hostap.h"
Forest Bond92b96792009-06-13 07:38:31 -040060#include "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040061#include "datarate.h"
Forest Bond92b96792009-06-13 07:38:31 -040062#include "usbpipe.h"
Forest Bond92b96792009-06-13 07:38:31 -040063#include "iocmd.h"
Jim Lieb9d26d602009-08-12 14:54:08 -070064
Mariano Reingart4a499de2010-10-29 19:15:26 -030065static int msglevel = MSG_LEVEL_INFO;
Forest Bond92b96792009-06-13 07:38:31 -040066
Andres More3eaca0d2013-02-25 20:32:52 -050067const u16 wTimeStampOff[2][MAX_RATE] = {
Forest Bond92b96792009-06-13 07:38:31 -040068 {384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23}, // Long Preamble
69 {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23}, // Short Preamble
70 };
71
Andres More3eaca0d2013-02-25 20:32:52 -050072const u16 wFB_Opt0[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040073 {RATE_12M, RATE_18M, RATE_24M, RATE_36M, RATE_48M}, // fallback_rate0
74 {RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, // fallback_rate1
75 };
Andres More3eaca0d2013-02-25 20:32:52 -050076const u16 wFB_Opt1[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040077 {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, // fallback_rate0
78 {RATE_6M , RATE_6M, RATE_12M, RATE_12M, RATE_18M}, // fallback_rate1
79 };
80
Forest Bond92b96792009-06-13 07:38:31 -040081#define RTSDUR_BB 0
82#define RTSDUR_BA 1
83#define RTSDUR_AA 2
84#define CTSDUR_BA 3
85#define RTSDUR_BA_F0 4
86#define RTSDUR_AA_F0 5
87#define RTSDUR_BA_F1 6
88#define RTSDUR_AA_F1 7
89#define CTSDUR_BA_F0 8
90#define CTSDUR_BA_F1 9
91#define DATADUR_B 10
92#define DATADUR_A 11
93#define DATADUR_A_F0 12
94#define DATADUR_A_F1 13
95
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000096static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
97 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -040098
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000099static void *s_vGetFreeContext(struct vnt_private *pDevice);
100
101static void s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100102 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100103 struct vnt_mic_hdr **mic_hdr, u32 need_mic,
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100104 void *rts_cts, u32 cbFrameSize, int bNeedACK, u32 uDMAIdx,
105 struct ethhdr *psEthHeader, bool need_rts);
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000106
107static u32 s_uFillDataHead(struct vnt_private *pDevice,
108 u8 byPktType, u16 wCurrentRate, void *pTxDataHead, u32 cbFrameLength,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +0100109 u32 uDMAIdx, int bNeedAck, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400110
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000111static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500112 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000113 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -0400114
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000115static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
116 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf, u16 wPayloadLen,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100117 struct vnt_mic_hdr *mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -0400118
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000119static void s_vSWencryption(struct vnt_private *pDevice,
120 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400121
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000122static unsigned int s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
123 u32 cbFrameLength, u16 wRate, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400124
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100125static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice, u8 byRTSRsvType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000126 u8 byPktType, u32 cbFrameLength, u16 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400127
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000128static void s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100129 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
130 int bNeedAck, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400131
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000132static void s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100133 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500134 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400135
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100136static u16 s_uGetDataDuration(struct vnt_private *pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100137 u8 byPktType, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400138
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100139static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000140 u8 byDurType, u32 cbFrameLength, u8 byPktType, u16 wRate,
141 int bNeedAck, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400142
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000143static void *s_vGetFreeContext(struct vnt_private *pDevice)
Forest Bond92b96792009-06-13 07:38:31 -0400144{
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100145 struct vnt_usb_send_context *pContext = NULL;
146 struct vnt_usb_send_context *pReturnContext = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000147 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400148
149 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"GetFreeContext()\n");
150
151 for (ii = 0; ii < pDevice->cbTD; ii++) {
152 pContext = pDevice->apTD[ii];
Andres Moree269fc22013-02-12 20:36:29 -0500153 if (pContext->bBoolInUse == false) {
Andres More4e9b5e22013-02-12 20:36:30 -0500154 pContext->bBoolInUse = true;
Malcolm Priestleyc0de17e2013-08-05 21:09:14 +0100155 memset(pContext->Data, 0, MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
Forest Bond92b96792009-06-13 07:38:31 -0400156 pReturnContext = pContext;
157 break;
158 }
159 }
160 if ( ii == pDevice->cbTD ) {
161 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Free Tx Context\n");
162 }
Andres More8611a292010-05-01 14:25:00 -0300163 return (void *) pReturnContext;
Forest Bond92b96792009-06-13 07:38:31 -0400164}
165
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000166static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
167 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl)
Forest Bond92b96792009-06-13 07:38:31 -0400168{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000169 PSStatCounter pStatistic = &pDevice->scStatistic;
Forest Bond92b96792009-06-13 07:38:31 -0400170
Andres More4b50fb42010-06-22 21:57:42 -0300171 if (is_broadcast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400172 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_BROAD;
Andres More4b50fb42010-06-22 21:57:42 -0300173 else if (is_multicast_ether_addr(pbyDestAddr))
Forest Bond92b96792009-06-13 07:38:31 -0400174 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_MULTI;
175 else
176 pStatistic->abyTxPktInfo[byPktNum].byBroadMultiUni = TX_PKT_UNI;
177
178 pStatistic->abyTxPktInfo[byPktNum].wLength = wPktLength;
179 pStatistic->abyTxPktInfo[byPktNum].wFIFOCtl = wFIFOCtl;
Andres More9a0e7562010-04-13 21:54:48 -0300180 memcpy(pStatistic->abyTxPktInfo[byPktNum].abyDestAddr,
181 pbyDestAddr,
182 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400183}
184
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000185static void s_vFillTxKey(struct vnt_private *pDevice, u8 *pbyBuf,
186 u8 *pbyIVHead, PSKeyItem pTransmitKey, u8 *pbyHdrBuf,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100187 u16 wPayloadLen, struct vnt_mic_hdr *mic_hdr)
Forest Bond92b96792009-06-13 07:38:31 -0400188{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000189 u32 *pdwIV = (u32 *)pbyIVHead;
190 u32 *pdwExtIV = (u32 *)((u8 *)pbyIVHead + 4);
Andres More1cac4a42013-03-18 20:33:50 -0500191 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyHdrBuf;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000192 u32 dwRevIVCounter;
Forest Bond92b96792009-06-13 07:38:31 -0400193
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100194 /* Fill TXKEY */
195 if (pTransmitKey == NULL)
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100196 return;
Forest Bond92b96792009-06-13 07:38:31 -0400197
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100198 dwRevIVCounter = cpu_to_le32(pDevice->dwIVCounter);
199 *pdwIV = pDevice->dwIVCounter;
200 pDevice->byKeyIndex = pTransmitKey->dwKeyIndex & 0xf;
Forest Bond92b96792009-06-13 07:38:31 -0400201
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100202 switch (pTransmitKey->byCipherSuite) {
203 case KEY_CTL_WEP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100204 if (pTransmitKey->uKeyLength == WLAN_WEP232_KEYLEN) {
205 memcpy(pDevice->abyPRNG, (u8 *)&dwRevIVCounter, 3);
206 memcpy(pDevice->abyPRNG + 3, pTransmitKey->abyKey,
207 pTransmitKey->uKeyLength);
208 } else {
209 memcpy(pbyBuf, (u8 *)&dwRevIVCounter, 3);
210 memcpy(pbyBuf + 3, pTransmitKey->abyKey,
211 pTransmitKey->uKeyLength);
212 if (pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) {
213 memcpy(pbyBuf+8, (u8 *)&dwRevIVCounter, 3);
214 memcpy(pbyBuf+11, pTransmitKey->abyKey,
215 pTransmitKey->uKeyLength);
216 }
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100217
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100218 memcpy(pDevice->abyPRNG, pbyBuf, 16);
219 }
220 /* Append IV after Mac Header */
221 *pdwIV &= WEP_IV_MASK;
222 *pdwIV |= (u32)pDevice->byKeyIndex << 30;
223 *pdwIV = cpu_to_le32(*pdwIV);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100224
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100225 pDevice->dwIVCounter++;
226 if (pDevice->dwIVCounter > WEP_IV_MASK)
227 pDevice->dwIVCounter = 0;
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100228
229 break;
230 case KEY_CTL_TKIP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100231 pTransmitKey->wTSC15_0++;
232 if (pTransmitKey->wTSC15_0 == 0)
233 pTransmitKey->dwTSC47_16++;
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100234
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100235 TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
236 pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16,
237 pDevice->abyPRNG);
238 memcpy(pbyBuf, pDevice->abyPRNG, 16);
239
240 /* Make IV */
241 memcpy(pdwIV, pDevice->abyPRNG, 3);
242
243 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
244 0xc0) | 0x20);
245 /* Append IV&ExtIV after Mac Header */
246 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
247
248 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
249 "vFillTxKey()---- pdwExtIV: %x\n", *pdwExtIV);
250
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100251 break;
252 case KEY_CTL_CCMP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100253 pTransmitKey->wTSC15_0++;
254 if (pTransmitKey->wTSC15_0 == 0)
255 pTransmitKey->dwTSC47_16++;
256
257 memcpy(pbyBuf, pTransmitKey->abyKey, 16);
258
259 /* Make IV */
260 *pdwIV = 0;
261 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
262 0xc0) | 0x20);
263
264 *pdwIV |= cpu_to_le16((u16)(pTransmitKey->wTSC15_0));
265
266 /* Append IV&ExtIV after Mac Header */
267 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
268
269 if (!mic_hdr)
270 return;
271
272 /* MICHDR0 */
273 mic_hdr->id = 0x59;
274 mic_hdr->payload_len = cpu_to_be16(wPayloadLen);
275 memcpy(mic_hdr->mic_addr2, pMACHeader->addr2, ETH_ALEN);
276
277 mic_hdr->tsc_47_16 = cpu_to_be32(pTransmitKey->dwTSC47_16);
278 mic_hdr->tsc_15_0 = cpu_to_be16(pTransmitKey->wTSC15_0);
279
280 /* MICHDR1 */
281 if (pDevice->bLongHeader)
282 mic_hdr->hlen = cpu_to_be16(28);
283 else
284 mic_hdr->hlen = cpu_to_be16(22);
285
286 memcpy(mic_hdr->addr1, pMACHeader->addr1, ETH_ALEN);
287 memcpy(mic_hdr->addr2, pMACHeader->addr2, ETH_ALEN);
288
289 /* MICHDR2 */
290 memcpy(mic_hdr->addr3, pMACHeader->addr3, ETH_ALEN);
291 mic_hdr->frame_control = cpu_to_le16(pMACHeader->frame_control
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100292 & 0xc78f);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100293 mic_hdr->seq_ctrl = cpu_to_le16(pMACHeader->seq_ctrl & 0xf);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100294
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100295 if (pDevice->bLongHeader)
296 memcpy(mic_hdr->addr4, pMACHeader->addr4, ETH_ALEN);
297 }
Forest Bond92b96792009-06-13 07:38:31 -0400298}
299
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000300static void s_vSWencryption(struct vnt_private *pDevice,
301 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize)
Forest Bond92b96792009-06-13 07:38:31 -0400302{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000303 u32 cbICVlen = 4;
304 u32 dwICV = 0xffffffff;
305 u32 *pdwICV;
Forest Bond92b96792009-06-13 07:38:31 -0400306
307 if (pTransmitKey == NULL)
308 return;
309
310 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
311 //=======================================================================
312 // Append ICV after payload
313 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500314 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400315 // finally, we must invert dwCRC to get the correct answer
316 *pdwICV = cpu_to_le32(~dwICV);
317 // RC4 encryption
318 rc4_init(&pDevice->SBox, pDevice->abyPRNG, pTransmitKey->uKeyLength + 3);
319 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
320 //=======================================================================
321 } else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
322 //=======================================================================
323 //Append ICV after payload
324 dwICV = CRCdwGetCrc32Ex(pbyPayloadHead, wPayloadSize, dwICV);//ICV(Payload)
Andres More52a7e642013-02-25 20:32:53 -0500325 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400326 // finally, we must invert dwCRC to get the correct answer
327 *pdwICV = cpu_to_le32(~dwICV);
328 // RC4 encryption
329 rc4_init(&pDevice->SBox, pDevice->abyPRNG, TKIP_KEY_LEN);
330 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
331 //=======================================================================
332 }
333}
334
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100335static u16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
336{
337 return cpu_to_le16(wTimeStampOff[priv->byPreambleType % 2]
338 [rate % MAX_RATE]);
339}
340
Forest Bond92b96792009-06-13 07:38:31 -0400341/*byPktType : PK_TYPE_11A 0
342 PK_TYPE_11B 1
343 PK_TYPE_11GB 2
344 PK_TYPE_11GA 3
345*/
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000346static u32 s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
347 u32 cbFrameLength, u16 wRate, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400348{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000349 u32 uDataTime, uAckTime;
Forest Bond92b96792009-06-13 07:38:31 -0400350
351 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wRate);
352 if (byPktType == PK_TYPE_11B) {//llb,CCK mode
Andres More3eaca0d2013-02-25 20:32:52 -0500353 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400354 } else {//11g 2.4G OFDM mode & 11a 5G OFDM mode
Andres More3eaca0d2013-02-25 20:32:52 -0500355 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, (u16)pDevice->byTopOFDMBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400356 }
357
358 if (bNeedAck) {
359 return (uDataTime + pDevice->uSIFS + uAckTime);
360 }
361 else {
362 return uDataTime;
363 }
364}
365
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100366static u16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
367 u32 frame_length, u16 rate, int need_ack)
368{
369 return cpu_to_le16((u16)s_uGetTxRsvTime(priv, pkt_type,
370 frame_length, rate, need_ack));
371}
372
Forest Bond92b96792009-06-13 07:38:31 -0400373//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100374static u16 s_uGetRTSCTSRsvTime(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000375 u8 byRTSRsvType, u8 byPktType, u32 cbFrameLength, u16 wCurrentRate)
Forest Bond92b96792009-06-13 07:38:31 -0400376{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000377 u32 uRrvTime, uRTSTime, uCTSTime, uAckTime, uDataTime;
Forest Bond92b96792009-06-13 07:38:31 -0400378
379 uRrvTime = uRTSTime = uCTSTime = uAckTime = uDataTime = 0;
380
Forest Bond92b96792009-06-13 07:38:31 -0400381 uDataTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, cbFrameLength, wCurrentRate);
382 if (byRTSRsvType == 0) { //RTSTxRrvTime_bb
383 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
384 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
385 }
386 else if (byRTSRsvType == 1){ //RTSTxRrvTime_ba, only in 2.4GHZ
387 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopCCKBasicRate);
388 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
389 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
390 }
391 else if (byRTSRsvType == 2) { //RTSTxRrvTime_aa
392 uRTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 20, pDevice->byTopOFDMBasicRate);
393 uCTSTime = uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
394 }
395 else if (byRTSRsvType == 3) { //CTSTxRrvTime_ba, only in 2.4GHZ
396 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
397 uAckTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
398 uRrvTime = uCTSTime + uAckTime + uDataTime + 2*pDevice->uSIFS;
399 return uRrvTime;
400 }
401
402 //RTSRrvTime
403 uRrvTime = uRTSTime + uCTSTime + uAckTime + uDataTime + 3*pDevice->uSIFS;
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100404 return cpu_to_le16((u16)uRrvTime);
Forest Bond92b96792009-06-13 07:38:31 -0400405}
406
407//byFreqType 0: 5GHz, 1:2.4Ghz
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100408static u16 s_uGetDataDuration(struct vnt_private *pDevice,
409 u8 byPktType, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400410{
Malcolm Priestley0005cb02013-08-07 21:26:12 +0100411 u32 uAckTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400412
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100413 if (bNeedAck) {
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100414 if (byPktType == PK_TYPE_11B)
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100415 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
416 byPktType, 14, pDevice->byTopCCKBasicRate);
417 else
418 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
419 byPktType, 14, pDevice->byTopOFDMBasicRate);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100420 return cpu_to_le16((u16)(pDevice->uSIFS + uAckTime));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100421 }
Forest Bond92b96792009-06-13 07:38:31 -0400422
Forest Bond92b96792009-06-13 07:38:31 -0400423 return 0;
424}
425
Forest Bond92b96792009-06-13 07:38:31 -0400426//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100427static u16 s_uGetRTSCTSDuration(struct vnt_private *pDevice, u8 byDurType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000428 u32 cbFrameLength, u8 byPktType, u16 wRate, int bNeedAck,
429 u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400430{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000431 u32 uCTSTime = 0, uDurTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400432
Forest Bond92b96792009-06-13 07:38:31 -0400433 switch (byDurType) {
434
435 case RTSDUR_BB: //RTSDuration_bb
436 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
437 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
438 break;
439
440 case RTSDUR_BA: //RTSDuration_ba
441 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
442 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
443 break;
444
445 case RTSDUR_AA: //RTSDuration_aa
446 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
447 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
448 break;
449
450 case CTSDUR_BA: //CTSDuration_ba
451 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wRate, bNeedAck);
452 break;
453
454 case RTSDUR_BA_F0: //RTSDuration_ba_f0
455 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
456 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
457 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
458 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
459 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
460 }
461 break;
462
463 case RTSDUR_AA_F0: //RTSDuration_aa_f0
464 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
465 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
466 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
467 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
468 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
469 }
470 break;
471
472 case RTSDUR_BA_F1: //RTSDuration_ba_f1
473 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopCCKBasicRate);
474 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
475 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
476 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
477 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
478 }
479 break;
480
481 case RTSDUR_AA_F1: //RTSDuration_aa_f1
482 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType, 14, pDevice->byTopOFDMBasicRate);
483 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
484 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
485 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
486 uDurTime = uCTSTime + 2*pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
487 }
488 break;
489
490 case CTSDUR_BA_F0: //CTSDuration_ba_f0
491 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
492 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE0][wRate-RATE_18M], bNeedAck);
493 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
494 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE0][wRate-RATE_18M], bNeedAck);
495 }
496 break;
497
498 case CTSDUR_BA_F1: //CTSDuration_ba_f1
499 if ((byFBOption == AUTO_FB_0) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
500 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt0[FB_RATE1][wRate-RATE_18M], bNeedAck);
501 } else if ((byFBOption == AUTO_FB_1) && (wRate >= RATE_18M) && (wRate <=RATE_54M)) {
502 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice, byPktType, cbFrameLength, wFB_Opt1[FB_RATE1][wRate-RATE_18M], bNeedAck);
503 }
504 break;
505
506 default:
507 break;
508 }
509
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100510 return cpu_to_le16((u16)uDurTime);
Forest Bond92b96792009-06-13 07:38:31 -0400511}
512
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000513static u32 s_uFillDataHead(struct vnt_private *pDevice,
514 u8 byPktType, u16 wCurrentRate, void *pTxDataHead, u32 cbFrameLength,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +0100515 u32 uDMAIdx, int bNeedAck, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400516{
517
518 if (pTxDataHead == NULL) {
519 return 0;
520 }
521
522 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Forest Bond92b96792009-06-13 07:38:31 -0400523 if (byFBOption == AUTO_FB_NONE) {
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +0100524 struct vnt_tx_datahead_g *pBuf =
525 (struct vnt_tx_datahead_g *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400526 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100527 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
528 byPktType, &pBuf->a);
529 BBvCalculateParameter(pDevice, cbFrameLength,
530 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Forest Bond92b96792009-06-13 07:38:31 -0400531 //Get Duration and TimeStamp
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100532 pBuf->wDuration_a = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100533 byPktType, bNeedAck);
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100534 pBuf->wDuration_b = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100535 PK_TYPE_11B, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400536
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100537 pBuf->wTimeStampOff_a = vnt_time_stamp_off(pDevice,
538 wCurrentRate);
539 pBuf->wTimeStampOff_b = vnt_time_stamp_off(pDevice,
540 pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400541 return (pBuf->wDuration_a);
542 } else {
543 // Auto Fallback
Malcolm Priestley7c05c542013-08-16 23:49:15 +0100544 struct vnt_tx_datahead_g_fb *pBuf =
545 (struct vnt_tx_datahead_g_fb *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400546 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100547 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
548 byPktType, &pBuf->a);
549 BBvCalculateParameter(pDevice, cbFrameLength,
550 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Forest Bond92b96792009-06-13 07:38:31 -0400551 //Get Duration and TimeStamp
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100552 pBuf->wDuration_a = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100553 byPktType, bNeedAck);
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100554 pBuf->wDuration_b = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100555 PK_TYPE_11B, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100556 pBuf->wDuration_a_f0 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100557 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100558 pBuf->wDuration_a_f1 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100559 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100560 pBuf->wTimeStampOff_a = vnt_time_stamp_off(pDevice,
561 wCurrentRate);
562 pBuf->wTimeStampOff_b = vnt_time_stamp_off(pDevice,
563 pDevice->byTopCCKBasicRate);
Forest Bond92b96792009-06-13 07:38:31 -0400564 return (pBuf->wDuration_a);
565 } //if (byFBOption == AUTO_FB_NONE)
Forest Bond92b96792009-06-13 07:38:31 -0400566 }
567 else if (byPktType == PK_TYPE_11A) {
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100568 if (byFBOption != AUTO_FB_NONE) {
Malcolm Priestley1da4ee22013-08-16 23:51:38 +0100569 struct vnt_tx_datahead_a_fb *pBuf =
570 (struct vnt_tx_datahead_a_fb *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400571 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100572 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
573 byPktType, &pBuf->a);
Forest Bond92b96792009-06-13 07:38:31 -0400574 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100575 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100576 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100577 pBuf->wDuration_f0 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100578 byPktType, bNeedAck);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100579 pBuf->wDuration_f1 = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100580 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100581 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
582 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400583 return (pBuf->wDuration);
584 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +0100585 struct vnt_tx_datahead_ab *pBuf =
586 (struct vnt_tx_datahead_ab *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400587 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100588 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
589 byPktType, &pBuf->ab);
Forest Bond92b96792009-06-13 07:38:31 -0400590 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100591 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100592 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100593 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
594 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400595 return (pBuf->wDuration);
596 }
597 }
598 else if (byPktType == PK_TYPE_11B) {
Malcolm Priestley558becf2013-08-16 23:50:32 +0100599 struct vnt_tx_datahead_ab *pBuf =
600 (struct vnt_tx_datahead_ab *)pTxDataHead;
Forest Bond92b96792009-06-13 07:38:31 -0400601 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100602 BBvCalculateParameter(pDevice, cbFrameLength, wCurrentRate,
603 byPktType, &pBuf->ab);
Forest Bond92b96792009-06-13 07:38:31 -0400604 //Get Duration and TimeStampOff
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100605 pBuf->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100606 byPktType, bNeedAck);
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100607 pBuf->wTimeStampOff = vnt_time_stamp_off(pDevice,
608 wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -0400609 return (pBuf->wDuration);
610 }
611 return 0;
612}
613
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100614static int vnt_fill_ieee80211_rts(struct vnt_private *priv,
615 struct ieee80211_rts *rts, struct ethhdr *eth_hdr,
616 u16 duration)
617{
618 rts->duration = duration;
619 rts->frame_control = TYPE_CTL_RTS;
620
621 if (priv->eOPMode == OP_MODE_ADHOC || priv->eOPMode == OP_MODE_AP)
622 memcpy(rts->ra, eth_hdr->h_dest, ETH_ALEN);
623 else
624 memcpy(rts->ra, priv->abyBSSID, ETH_ALEN);
625
626 if (priv->eOPMode == OP_MODE_AP)
627 memcpy(rts->ta, priv->abyBSSID, ETH_ALEN);
628 else
629 memcpy(rts->ta, eth_hdr->h_source, ETH_ALEN);
630
631 return 0;
632}
633
634static int vnt_rxtx_rts_g_head(struct vnt_private *priv,
635 struct vnt_rts_g *buf, struct ethhdr *eth_hdr,
636 u8 pkt_type, u32 frame_len, int need_ack,
637 u16 current_rate, u8 fb_option)
638{
639 u16 rts_frame_len = 20;
640
641 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
642 PK_TYPE_11B, &buf->b);
643 BBvCalculateParameter(priv, rts_frame_len,
644 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
645
646 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
647 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
648 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
649 pkt_type, current_rate, need_ack, fb_option);
650 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
651 pkt_type, current_rate, need_ack, fb_option);
652
653 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
654
655 return 0;
656}
657
Malcolm Priestleyec917132013-08-26 11:07:46 +0100658static int vnt_rxtx_rts_g_fb_head(struct vnt_private *priv,
659 struct vnt_rts_g_fb *buf, struct ethhdr *eth_hdr,
660 u8 pkt_type, u32 frame_len, int need_ack,
661 u16 current_rate, u8 fb_option)
662{
663 u16 rts_frame_len = 20;
664
665 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
666 PK_TYPE_11B, &buf->b);
667 BBvCalculateParameter(priv, rts_frame_len,
668 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
669
670
671 buf->wDuration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
672 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
673 buf->wDuration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
674 pkt_type, current_rate, need_ack, fb_option);
675 buf->wDuration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
676 pkt_type, current_rate, need_ack, fb_option);
677
678
679 buf->wRTSDuration_ba_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F0,
680 frame_len, pkt_type, current_rate, need_ack, fb_option);
681 buf->wRTSDuration_aa_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
682 frame_len, pkt_type, current_rate, need_ack, fb_option);
683 buf->wRTSDuration_ba_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F1,
684 frame_len, pkt_type, current_rate, need_ack, fb_option);
685 buf->wRTSDuration_aa_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
686 frame_len, pkt_type, current_rate, need_ack, fb_option);
687
688 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration_aa);
689
690 return 0;
691}
692
Malcolm Priestley17126332013-08-26 11:09:38 +0100693static int vnt_rxtx_rts_ab_head(struct vnt_private *priv,
694 struct vnt_rts_ab *buf, struct ethhdr *eth_hdr,
695 u8 pkt_type, u32 frame_len, int need_ack,
696 u16 current_rate, u8 fb_option)
697{
698 u16 rts_frame_len = 20;
699
700 BBvCalculateParameter(priv, rts_frame_len,
701 priv->byTopOFDMBasicRate, pkt_type, &buf->ab);
702
703 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
704 pkt_type, current_rate, need_ack, fb_option);
705
706 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
707
708 return 0;
709}
710
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100711static int vnt_rxtx_rts_a_fb_head(struct vnt_private *priv,
712 struct vnt_rts_a_fb *buf, struct ethhdr *eth_hdr,
713 u8 pkt_type, u32 frame_len, int need_ack,
714 u16 current_rate, u8 fb_option)
715{
716 u16 rts_frame_len = 20;
717
718 BBvCalculateParameter(priv, rts_frame_len,
719 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
720
721 buf->wDuration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
722 pkt_type, current_rate, need_ack, fb_option);
723
724 buf->wRTSDuration_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
725 frame_len, pkt_type, current_rate, need_ack, fb_option);
726
727 buf->wRTSDuration_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
728 frame_len, pkt_type, current_rate, need_ack, fb_option);
729
730 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->wDuration);
731
732 return 0;
733}
734
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000735static void s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100736 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500737 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400738{
Forest Bond92b96792009-06-13 07:38:31 -0400739
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100740 if (!head)
741 return;
Forest Bond92b96792009-06-13 07:38:31 -0400742
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100743 /* Note: So far RTSHead doesn't appear in ATIM
744 * & Beacom DMA, so we don't need to take them
745 * into account.
746 * Otherwise, we need to modified codes for them.
747 */
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100748 switch (byPktType) {
749 case PK_TYPE_11GB:
750 case PK_TYPE_11GA:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100751 if (byFBOption == AUTO_FB_NONE)
752 vnt_rxtx_rts_g_head(pDevice, &head->rts_g,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100753 psEthHeader, byPktType, cbFrameLength,
754 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100755 else
756 vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100757 psEthHeader, byPktType, cbFrameLength,
758 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100759 break;
760 case PK_TYPE_11A:
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100761 if (byFBOption) {
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100762 vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb,
763 psEthHeader, byPktType, cbFrameLength,
764 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100765 break;
766 }
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100767 case PK_TYPE_11B:
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100768 vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
Malcolm Priestley17126332013-08-26 11:09:38 +0100769 psEthHeader, byPktType, cbFrameLength,
770 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100771 }
Forest Bond92b96792009-06-13 07:38:31 -0400772}
773
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000774static void s_vFillCTSHead(struct vnt_private *pDevice, u32 uDMAIdx,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100775 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
776 int bNeedAck, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400777{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000778 u32 uCTSFrameLen = 14;
Forest Bond92b96792009-06-13 07:38:31 -0400779
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100780 if (!head)
781 return;
Forest Bond92b96792009-06-13 07:38:31 -0400782
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100783 if (byFBOption != AUTO_FB_NONE) {
784 /* Auto Fall back */
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100785 struct vnt_cts_fb *pBuf = &head->cts_g_fb;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100786 /* Get SignalField,ServiceField,Length */
787 BBvCalculateParameter(pDevice, uCTSFrameLen,
788 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100789 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
790 cbFrameLength, byPktType,
791 wCurrentRate, bNeedAck, byFBOption);
792 /* Get CTSDuration_ba_f0 */
793 pBuf->wCTSDuration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
794 CTSDUR_BA_F0, cbFrameLength, byPktType, wCurrentRate,
795 bNeedAck, byFBOption);
796 /* Get CTSDuration_ba_f1 */
797 pBuf->wCTSDuration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
798 CTSDUR_BA_F1, cbFrameLength, byPktType, wCurrentRate,
799 bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100800 /* Get CTS Frame body */
801 pBuf->data.duration = pBuf->wDuration_ba;
802 pBuf->data.frame_control = TYPE_CTL_CTS;
803 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100804 } else {
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100805 struct vnt_cts *pBuf = &head->cts_g;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100806 /* Get SignalField,ServiceField,Length */
807 BBvCalculateParameter(pDevice, uCTSFrameLen,
808 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100809 /* Get CTSDuration_ba */
810 pBuf->wDuration_ba = s_uGetRTSCTSDuration(pDevice,
811 CTSDUR_BA, cbFrameLength, byPktType,
812 wCurrentRate, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100813 /*Get CTS Frame body*/
814 pBuf->data.duration = pBuf->wDuration_ba;
815 pBuf->data.frame_control = TYPE_CTL_CTS;
816 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -0400817 }
Forest Bond92b96792009-06-13 07:38:31 -0400818}
819
Forest Bond92b96792009-06-13 07:38:31 -0400820/*+
821 *
822 * Description:
823 * Generate FIFO control for MAC & Baseband controller
824 *
825 * Parameters:
826 * In:
827 * pDevice - Pointer to adpater
828 * pTxDataHead - Transmit Data Buffer
829 * pTxBufHead - pTxBufHead
830 * pvRrvTime - pvRrvTime
831 * pvRTS - RTS Buffer
832 * pCTS - CTS Buffer
833 * cbFrameSize - Transmit Data Length (Hdr+Payload+FCS)
834 * bNeedACK - If need ACK
835 * uDMAIdx - DMA Index
836 * Out:
837 * none
838 *
839 * Return Value: none
840 *
841-*/
Andres Morecc856e62010-05-17 21:34:01 -0300842
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000843static void s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100844 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100845 struct vnt_mic_hdr **mic_hdr, u32 need_mic,
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100846 void *rts_cts, u32 cbFrameSize, int bNeedACK, u32 uDMAIdx,
847 struct ethhdr *psEthHeader, bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400848{
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100849 struct vnt_tx_fifo_head *pFifoHead = &tx_buffer->fifo_head;
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100850 union vnt_tx_data_head *head = rts_cts;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000851 u32 cbMACHdLen = WLAN_HDR_ADDR3_LEN; /* 24 */
852 u16 wFifoCtl;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000853 u8 byFBOption = AUTO_FB_NONE;
Forest Bond92b96792009-06-13 07:38:31 -0400854
855 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_vGenerateTxParameter...\n");
Forest Bond92b96792009-06-13 07:38:31 -0400856 pFifoHead->wReserved = wCurrentRate;
857 wFifoCtl = pFifoHead->wFIFOCtl;
858
Forest Bond92b96792009-06-13 07:38:31 -0400859 if (wFifoCtl & FIFOCTL_AUTO_FB_0) {
860 byFBOption = AUTO_FB_0;
861 }
862 else if (wFifoCtl & FIFOCTL_AUTO_FB_1) {
863 byFBOption = AUTO_FB_1;
864 }
865
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100866 if (!pFifoHead)
Malcolm Priestley2dc22d52013-08-24 13:15:32 +0100867 return;
868
Forest Bond92b96792009-06-13 07:38:31 -0400869 if (pDevice->bLongHeader)
870 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
871
872 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100873 if (need_rts) {
Forest Bond92b96792009-06-13 07:38:31 -0400874 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100875 struct vnt_rrv_time_rts *pBuf = &tx_buffer->tx_head.tx_rts.rts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100876
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100877 pBuf->wRTSTxRrvTime_aa = s_uGetRTSCTSRsvTime(pDevice, 2,
878 byPktType, cbFrameSize, wCurrentRate);
879 pBuf->wRTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 1,
880 byPktType, cbFrameSize, wCurrentRate);
881 pBuf->wRTSTxRrvTime_bb = s_uGetRTSCTSRsvTime(pDevice, 0,
882 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100883 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice,
884 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
885 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
886 PK_TYPE_11B, cbFrameSize, pDevice->byTopCCKBasicRate,
887 bNeedACK);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100888 if (need_mic)
889 *mic_hdr = &tx_buffer->tx_head.tx_rts.tx.mic.hdr;
890
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100891 /* Fill RTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100892 s_vFillRTSHead(pDevice, byPktType, head, cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100893 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400894 }
895 else {//RTS_needless, PCF mode
Forest Bond92b96792009-06-13 07:38:31 -0400896 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100897 struct vnt_rrv_time_cts *pBuf = &tx_buffer->tx_head.tx_cts.cts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100898
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100899 pBuf->wTxRrvTime_a = vnt_rxtx_rsvtime_le16(pDevice, byPktType,
900 cbFrameSize, wCurrentRate, bNeedACK);
901 pBuf->wTxRrvTime_b = vnt_rxtx_rsvtime_le16(pDevice,
902 PK_TYPE_11B, cbFrameSize,
903 pDevice->byTopCCKBasicRate, bNeedACK);
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100904 pBuf->wCTSTxRrvTime_ba = s_uGetRTSCTSRsvTime(pDevice, 3,
905 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100906
907 if (need_mic)
908 *mic_hdr = &tx_buffer->tx_head.tx_cts.tx.mic.hdr;
909
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100910 /* Fill CTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100911 s_vFillCTSHead(pDevice, uDMAIdx, byPktType, head,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100912 cbFrameSize, bNeedACK, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400913 }
914 }
915 else if (byPktType == PK_TYPE_11A) {
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100916 if (need_rts) {
Forest Bond92b96792009-06-13 07:38:31 -0400917 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100918 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100919
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100920 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 2,
921 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100922 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, byPktType,
923 cbFrameSize, wCurrentRate, bNeedACK);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100924 if (need_mic)
925 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
926
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100927 /* Fill RTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100928 s_vFillRTSHead(pDevice, byPktType, head, cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100929 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100930 } else {
Forest Bond92b96792009-06-13 07:38:31 -0400931 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100932 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100933
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100934 if (need_mic)
935 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
936
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100937 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11A,
938 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400939 }
940 }
941 else if (byPktType == PK_TYPE_11B) {
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100942 if (need_rts) {
Forest Bond92b96792009-06-13 07:38:31 -0400943 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100944 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100945
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100946 pBuf->wRTSTxRrvTime = s_uGetRTSCTSRsvTime(pDevice, 0,
947 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100948 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11B,
949 cbFrameSize, wCurrentRate, bNeedACK);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100950
951 if (need_mic)
952 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
953
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100954 /* Fill RTS */
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100955 s_vFillRTSHead(pDevice, byPktType, head, cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100956 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400957 }
958 else { //RTS_needless, non PCF mode
959 //Fill RsvTime
Malcolm Priestley56c60e42013-09-26 18:49:44 +0100960 struct vnt_rrv_time_ab *pBuf = &tx_buffer->tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100961
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100962 if (need_mic)
963 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
964
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100965 pBuf->wTxRrvTime = vnt_rxtx_rsvtime_le16(pDevice, PK_TYPE_11B,
966 cbFrameSize, wCurrentRate, bNeedACK);
Forest Bond92b96792009-06-13 07:38:31 -0400967 }
968 }
969 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"s_vGenerateTxParameter END.\n");
970}
971/*
Andres Moreb902fbf2013-02-25 20:32:51 -0500972 u8 * pbyBuffer,//point to pTxBufHead
Andres More3eaca0d2013-02-25 20:32:52 -0500973 u16 wFragType,//00:Non-Frag, 01:Start, 02:Mid, 03:Last
Andres Morecc856e62010-05-17 21:34:01 -0300974 unsigned int cbFragmentSize,//Hdr+payoad+FCS
Forest Bond92b96792009-06-13 07:38:31 -0400975*/
976
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000977static int s_bPacketToWirelessUsb(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100978 struct vnt_tx_buffer *tx_buffer, int bNeedEncryption,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +0100979 u32 uSkbPacketLen, u32 uDMAIdx, struct ethhdr *psEthHeader,
980 u8 *pPacket, PSKeyItem pTransmitKey, u32 uNodeIndex, u16 wCurrentRate,
981 u32 *pcbHeaderLen, u32 *pcbTotalLen)
Forest Bond92b96792009-06-13 07:38:31 -0400982{
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100983 struct vnt_tx_fifo_head *pTxBufHead = &tx_buffer->fifo_head;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000984 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
985 u32 cbFrameSize, cbFrameBodySize;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000986 u32 cb802_1_H_len;
987 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbMACHdLen = 0;
988 u32 cbFCSlen = 4, cbMICHDR = 0;
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100989 int bNeedACK;
990 bool bRTS = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000991 u8 *pbyType, *pbyMacHdr, *pbyIVHead, *pbyPayloadHead, *pbyTxBufferAddr;
992 u8 abySNAP_RFC1042[ETH_ALEN] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
993 u8 abySNAP_Bridgetunnel[ETH_ALEN]
994 = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
995 u32 uDuration;
996 u32 cbHeaderLength = 0, uPadding = 0;
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +0100997 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100998 void *rts_cts = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000999 void *pvTxDataHd;
1000 u8 byFBOption = AUTO_FB_NONE, byFragType;
1001 u16 wTxBufSize;
Malcolm Priestley4235f722013-08-24 12:42:01 +01001002 u32 dwMICKey0, dwMICKey1, dwMIC_Priority;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001003 u32 *pdwMIC_L, *pdwMIC_R;
Andres Moree269fc22013-02-12 20:36:29 -05001004 int bSoftWEP = false;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +01001005
1006 pMICHDR = pvTxDataHd = NULL;
Forest Bond92b96792009-06-13 07:38:31 -04001007
Malcolm Priestleye2efba72012-11-11 15:20:52 +00001008 if (bNeedEncryption && pTransmitKey->pvKeyTable) {
Andres More4e9b5e22013-02-12 20:36:30 -05001009 if (((PSKeyTable)pTransmitKey->pvKeyTable)->bSoftWEP == true)
1010 bSoftWEP = true; /* WEP 256 */
Malcolm Priestleye2efba72012-11-11 15:20:52 +00001011 }
Forest Bond92b96792009-06-13 07:38:31 -04001012
Forest Bond92b96792009-06-13 07:38:31 -04001013 // Get pkt type
Andres Moreceb8c5d2013-03-18 20:33:49 -05001014 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Forest Bond92b96792009-06-13 07:38:31 -04001015 if (pDevice->dwDiagRefCount == 0) {
1016 cb802_1_H_len = 8;
1017 } else {
1018 cb802_1_H_len = 2;
1019 }
1020 } else {
1021 cb802_1_H_len = 0;
1022 }
1023
Charles Clément21ec51f2010-05-18 10:08:14 -07001024 cbFrameBodySize = uSkbPacketLen - ETH_HLEN + cb802_1_H_len;
Forest Bond92b96792009-06-13 07:38:31 -04001025
1026 //Set packet type
Andres More3eaca0d2013-02-25 20:32:52 -05001027 pTxBufHead->wFIFOCtl |= (u16)(byPktType<<8);
Forest Bond92b96792009-06-13 07:38:31 -04001028
1029 if (pDevice->dwDiagRefCount != 0) {
Andres Moree269fc22013-02-12 20:36:29 -05001030 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001031 pTxBufHead->wFIFOCtl = pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1032 } else { //if (pDevice->dwDiagRefCount != 0) {
Andres More22040bb2010-08-02 20:21:44 -03001033 if ((pDevice->eOPMode == OP_MODE_ADHOC) ||
1034 (pDevice->eOPMode == OP_MODE_AP)) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001035 if (is_multicast_ether_addr(psEthHeader->h_dest)) {
Andres Moree269fc22013-02-12 20:36:29 -05001036 bNeedACK = false;
Andres More22040bb2010-08-02 20:21:44 -03001037 pTxBufHead->wFIFOCtl =
1038 pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1039 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001040 bNeedACK = true;
Andres More22040bb2010-08-02 20:21:44 -03001041 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1042 }
Forest Bond92b96792009-06-13 07:38:31 -04001043 }
1044 else {
1045 // MSDUs in Infra mode always need ACK
Andres More4e9b5e22013-02-12 20:36:30 -05001046 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001047 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1048 }
1049 } //if (pDevice->dwDiagRefCount != 0) {
1050
1051 pTxBufHead->wTimeStamp = DEFAULT_MSDU_LIFETIME_RES_64us;
1052
1053 //Set FIFOCTL_LHEAD
1054 if (pDevice->bLongHeader)
1055 pTxBufHead->wFIFOCtl |= FIFOCTL_LHEAD;
1056
Forest Bond92b96792009-06-13 07:38:31 -04001057 //Set FRAGCTL_MACHDCNT
1058 if (pDevice->bLongHeader) {
1059 cbMACHdLen = WLAN_HDR_ADDR3_LEN + 6;
1060 } else {
1061 cbMACHdLen = WLAN_HDR_ADDR3_LEN;
1062 }
Andres More3eaca0d2013-02-25 20:32:52 -05001063 pTxBufHead->wFragCtl |= (u16)(cbMACHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001064
1065 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001066 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001067 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1068 }
1069
1070 //Set Auto Fallback Ctl
1071 if (wCurrentRate >= RATE_18M) {
1072 if (pDevice->byAutoFBCtrl == AUTO_FB_0) {
1073 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
1074 byFBOption = AUTO_FB_0;
1075 } else if (pDevice->byAutoFBCtrl == AUTO_FB_1) {
1076 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
1077 byFBOption = AUTO_FB_1;
1078 }
1079 }
1080
Andres More4e9b5e22013-02-12 20:36:30 -05001081 if (bSoftWEP != true) {
Forest Bond92b96792009-06-13 07:38:31 -04001082 if ((bNeedEncryption) && (pTransmitKey != NULL)) { //WEP enabled
1083 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) { //WEP40 or WEP104
1084 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1085 }
1086 if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1087 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Tx Set wFragCtl == FRAGCTL_TKIP\n");
1088 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1089 }
1090 else if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) { //CCMP
1091 pTxBufHead->wFragCtl |= FRAGCTL_AES;
1092 }
1093 }
1094 }
1095
Forest Bond92b96792009-06-13 07:38:31 -04001096 if ((bNeedEncryption) && (pTransmitKey != NULL)) {
1097 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
1098 cbIVlen = 4;
1099 cbICVlen = 4;
1100 }
1101 else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1102 cbIVlen = 8;//IV+ExtIV
1103 cbMIClen = 8;
1104 cbICVlen = 4;
1105 }
1106 if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) {
1107 cbIVlen = 8;//RSN Header
1108 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001109 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001110 }
Andres Moree269fc22013-02-12 20:36:29 -05001111 if (bSoftWEP == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001112 //MAC Header should be padding 0 to DW alignment.
1113 uPadding = 4 - (cbMACHdLen%4);
1114 uPadding %= 4;
1115 }
1116 }
1117
1118 cbFrameSize = cbMACHdLen + cbIVlen + (cbFrameBodySize + cbMIClen) + cbICVlen + cbFCSlen;
1119
Andres Moree269fc22013-02-12 20:36:29 -05001120 if ( (bNeedACK == false) ||(cbFrameSize < pDevice->wRTSThreshold) ) {
1121 bRTS = false;
Forest Bond92b96792009-06-13 07:38:31 -04001122 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001123 bRTS = true;
Forest Bond92b96792009-06-13 07:38:31 -04001124 pTxBufHead->wFIFOCtl |= (FIFOCTL_RTS | FIFOCTL_LRETRY);
1125 }
1126
Andres Moreb902fbf2013-02-25 20:32:51 -05001127 pbyTxBufferAddr = (u8 *) &(pTxBufHead->adwTxKey[0]);
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001128 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
1129
Forest Bond92b96792009-06-13 07:38:31 -04001130 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1131 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001132 if (bRTS == true) {//RTS_need
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001133 rts_cts = (struct vnt_rts_g *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley6398a592013-08-16 21:26:55 +01001134 sizeof(struct vnt_rrv_time_rts) + cbMICHDR);
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001135 pvTxDataHd = (struct vnt_tx_datahead_g *) (pbyTxBufferAddr +
1136 wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1137 cbMICHDR + sizeof(struct vnt_rts_g));
Malcolm Priestley6398a592013-08-16 21:26:55 +01001138 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001139 cbMICHDR + sizeof(struct vnt_rts_g) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001140 sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001141 }
1142 else { //RTS_needless
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001143 rts_cts = (struct vnt_cts *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001144 sizeof(struct vnt_rrv_time_cts) + cbMICHDR);
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001145 pvTxDataHd = (struct vnt_tx_datahead_g *)(pbyTxBufferAddr +
1146 wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1147 cbMICHDR + sizeof(struct vnt_cts));
Malcolm Priestley4f990052013-08-16 23:38:57 +01001148 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1149 cbMICHDR + sizeof(struct vnt_cts) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001150 sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001151 }
1152 } else {
1153 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001154 if (bRTS == true) {//RTS_need
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001155 rts_cts = (struct vnt_rts_g_fb *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley6398a592013-08-16 21:26:55 +01001156 sizeof(struct vnt_rrv_time_rts) + cbMICHDR);
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001157 pvTxDataHd = (struct vnt_tx_datahead_g_fb *) (pbyTxBufferAddr +
1158 wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1159 cbMICHDR + sizeof(struct vnt_rts_g_fb));
Malcolm Priestley6398a592013-08-16 21:26:55 +01001160 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
1161 cbMICHDR + sizeof(struct vnt_rts_g_fb) +
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001162 sizeof(struct vnt_tx_datahead_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001163 }
Andres Moree269fc22013-02-12 20:36:29 -05001164 else if (bRTS == false) { //RTS_needless
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001165 rts_cts = (struct vnt_cts_fb *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001166 sizeof(struct vnt_rrv_time_cts) + cbMICHDR);
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001167 pvTxDataHd = (struct vnt_tx_datahead_g_fb *) (pbyTxBufferAddr +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001168 wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
1169 cbMICHDR + sizeof(struct vnt_cts_fb));
1170 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestleyf0c5ba22013-08-15 21:27:22 +01001171 cbMICHDR + sizeof(struct vnt_cts_fb) +
Malcolm Priestley7c05c542013-08-16 23:49:15 +01001172 sizeof(struct vnt_tx_datahead_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001173 }
1174 } // Auto Fall Back
1175 }
1176 else {//802.11a/b packet
1177 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001178 if (bRTS == true) {//RTS_need
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001179 rts_cts = (struct vnt_rts_ab *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001180 sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001181 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
1182 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001183 sizeof(struct vnt_rts_ab));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001184 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
1185 cbMICHDR + sizeof(struct vnt_rts_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001186 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001187 }
Andres Moree269fc22013-02-12 20:36:29 -05001188 else if (bRTS == false) { //RTS_needless, no MICHDR
Malcolm Priestley558becf2013-08-16 23:50:32 +01001189 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
1190 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01001191 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001192 cbMICHDR + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001193 }
1194 } else {
1195 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001196 if (bRTS == true) {//RTS_need
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001197 rts_cts = (struct vnt_rts_a_fb *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley976467d2013-08-16 23:44:04 +01001198 sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001199 pvTxDataHd = (struct vnt_tx_datahead_a_fb *)(pbyTxBufferAddr +
1200 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestleyc521cb52013-08-15 21:23:25 +01001201 sizeof(struct vnt_rts_a_fb));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001202 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
1203 cbMICHDR + sizeof(struct vnt_rts_a_fb) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001204 sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001205 }
Andres Moree269fc22013-02-12 20:36:29 -05001206 else if (bRTS == false) { //RTS_needless
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001207 pvTxDataHd = (struct vnt_tx_datahead_a_fb *)(pbyTxBufferAddr +
1208 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01001209 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001210 cbMICHDR + sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001211 }
1212 } // Auto Fall Back
1213 }
1214
Andres Moreb902fbf2013-02-25 20:32:51 -05001215 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderLength);
1216 pbyIVHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding);
1217 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001218
Forest Bond92b96792009-06-13 07:38:31 -04001219 //=========================
1220 // No Fragmentation
1221 //=========================
1222 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Fragmentation...\n");
1223 byFragType = FRAGCTL_NONFRAG;
1224 //uDMAIdx = TYPE_AC0DMA;
1225 //pTxBufHead = (PSTxBufHead) &(pTxBufHead->adwTxKey[0]);
1226
Forest Bond92b96792009-06-13 07:38:31 -04001227 //Fill FIFO,RrvTime,RTS,and CTS
Andres More8611a292010-05-01 14:25:00 -03001228 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001229 tx_buffer, &pMICHDR, cbMICHDR, rts_cts,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001230 cbFrameSize, bNeedACK, uDMAIdx, psEthHeader, bRTS);
Forest Bond92b96792009-06-13 07:38:31 -04001231 //Fill DataHead
1232 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, uDMAIdx, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01001233 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -04001234 // Generate TX MAC Header
Andres More3eaca0d2013-02-25 20:32:52 -05001235 s_vGenerateMACHeader(pDevice, pbyMacHdr, (u16)uDuration, psEthHeader, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04001236 byFragType, uDMAIdx, 0);
1237
Andres More4e9b5e22013-02-12 20:36:30 -05001238 if (bNeedEncryption == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001239 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001240 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01001241 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001242
1243 if (pDevice->bEnableHostWEP) {
1244 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
1245 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
1246 }
1247 }
1248
1249 // 802.1H
Andres Moreceb8c5d2013-03-18 20:33:49 -05001250 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Andres More203e4612010-08-04 19:12:34 -03001251 if (pDevice->dwDiagRefCount == 0) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001252 if ((psEthHeader->h_proto == cpu_to_be16(ETH_P_IPX)) ||
1253 (psEthHeader->h_proto == cpu_to_le16(0xF380))) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001254 memcpy((u8 *) (pbyPayloadHead),
Andres More203e4612010-08-04 19:12:34 -03001255 abySNAP_Bridgetunnel, 6);
Forest Bond92b96792009-06-13 07:38:31 -04001256 } else {
Andres Moreb902fbf2013-02-25 20:32:51 -05001257 memcpy((u8 *) (pbyPayloadHead), &abySNAP_RFC1042[0], 6);
Forest Bond92b96792009-06-13 07:38:31 -04001258 }
Andres Moreb902fbf2013-02-25 20:32:51 -05001259 pbyType = (u8 *) (pbyPayloadHead + 6);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001260 memcpy(pbyType, &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001261 } else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001262 memcpy((u8 *) (pbyPayloadHead), &(psEthHeader->h_proto), sizeof(u16));
Forest Bond92b96792009-06-13 07:38:31 -04001263
1264 }
1265
1266 }
1267
Forest Bond92b96792009-06-13 07:38:31 -04001268 if (pPacket != NULL) {
1269 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001270 memcpy((pbyPayloadHead + cb802_1_H_len),
Charles Clément21ec51f2010-05-18 10:08:14 -07001271 (pPacket + ETH_HLEN),
1272 uSkbPacketLen - ETH_HLEN
Forest Bond92b96792009-06-13 07:38:31 -04001273 );
1274
1275 } else {
1276 // while bRelayPacketSend psEthHeader is point to header+payload
Andres Moreb902fbf2013-02-25 20:32:51 -05001277 memcpy((pbyPayloadHead + cb802_1_H_len), ((u8 *)psEthHeader) + ETH_HLEN, uSkbPacketLen - ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001278 }
1279
Andres More4e9b5e22013-02-12 20:36:30 -05001280 if ((bNeedEncryption == true) && (pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
Forest Bond92b96792009-06-13 07:38:31 -04001281
1282 ///////////////////////////////////////////////////////////////////
1283
Malcolm Priestley14c5ef52013-01-17 23:19:37 +00001284 if (pDevice->vnt_mgmt.eAuthenMode == WMAC_AUTH_WPANONE) {
1285 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1286 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
1287 }
Forest Bond92b96792009-06-13 07:38:31 -04001288 else if ((pTransmitKey->dwKeyIndex & AUTHENTICATOR_KEY) != 0) {
Andres More52a7e642013-02-25 20:32:53 -05001289 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1290 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04001291 }
1292 else {
Andres More52a7e642013-02-25 20:32:53 -05001293 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[24]);
1294 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[28]);
Forest Bond92b96792009-06-13 07:38:31 -04001295 }
1296 // DO Software Michael
1297 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001298 MIC_vAppend((u8 *)&(psEthHeader->h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04001299 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05001300 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001301 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC KEY: %X, %X\n",
1302 dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04001303
1304 ///////////////////////////////////////////////////////////////////
1305
1306 //DBG_PRN_GRP12(("Length:%d, %d\n", cbFrameBodySize, uFromHDtoPLDLength));
1307 //for (ii = 0; ii < cbFrameBodySize; ii++) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001308 // DBG_PRN_GRP12(("%02x ", *((u8 *)((pbyPayloadHead + cb802_1_H_len) + ii))));
Forest Bond92b96792009-06-13 07:38:31 -04001309 //}
1310 //DBG_PRN_GRP12(("\n\n\n"));
1311
1312 MIC_vAppend(pbyPayloadHead, cbFrameBodySize);
1313
Andres More52a7e642013-02-25 20:32:53 -05001314 pdwMIC_L = (u32 *)(pbyPayloadHead + cbFrameBodySize);
1315 pdwMIC_R = (u32 *)(pbyPayloadHead + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04001316
1317 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
1318 MIC_vUnInit();
1319
Andres More4e9b5e22013-02-12 20:36:30 -05001320 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001321 *pdwMIC_L = 0;
1322 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001323 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04001324 }
1325 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
1326 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderLength, uPadding, cbIVlen);
1327 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%lX, %lX\n", *pdwMIC_L, *pdwMIC_R);
1328 }
1329
Andres More4e9b5e22013-02-12 20:36:30 -05001330 if (bSoftWEP == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001331
Andres More3eaca0d2013-02-25 20:32:52 -05001332 s_vSWencryption(pDevice, pTransmitKey, (pbyPayloadHead), (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04001333
Andres More4e9b5e22013-02-12 20:36:30 -05001334 } else if ( ((pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) && (bNeedEncryption == true)) ||
1335 ((pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) && (bNeedEncryption == true)) ||
1336 ((pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) && (bNeedEncryption == true)) ) {
Forest Bond92b96792009-06-13 07:38:31 -04001337 cbFrameSize -= cbICVlen;
1338 }
1339
Forest Bond92b96792009-06-13 07:38:31 -04001340 cbFrameSize -= cbFCSlen;
Forest Bond92b96792009-06-13 07:38:31 -04001341
1342 *pcbHeaderLen = cbHeaderLength;
1343 *pcbTotalLen = cbHeaderLength + cbFrameSize ;
1344
Forest Bond92b96792009-06-13 07:38:31 -04001345 //Set FragCtl in TxBufferHead
Andres More3eaca0d2013-02-25 20:32:52 -05001346 pTxBufHead->wFragCtl |= (u16)byFragType;
Forest Bond92b96792009-06-13 07:38:31 -04001347
Andres More4e9b5e22013-02-12 20:36:30 -05001348 return true;
Forest Bond92b96792009-06-13 07:38:31 -04001349
1350}
1351
Forest Bond92b96792009-06-13 07:38:31 -04001352/*+
1353 *
1354 * Description:
1355 * Translate 802.3 to 802.11 header
1356 *
1357 * Parameters:
1358 * In:
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001359 * pDevice - Pointer to adapter
Forest Bond92b96792009-06-13 07:38:31 -04001360 * dwTxBufferAddr - Transmit Buffer
1361 * pPacket - Packet from upper layer
1362 * cbPacketSize - Transmit Data Length
1363 * Out:
1364 * pcbHeadSize - Header size of MAC&Baseband control and 802.11 Header
1365 * pcbAppendPayload - size of append payload for 802.1H translation
1366 *
1367 * Return Value: none
1368 *
1369-*/
1370
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001371static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -05001372 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001373 int bNeedEncrypt, u16 wFragType, u32 uDMAIdx, u32 uFragIdx)
Forest Bond92b96792009-06-13 07:38:31 -04001374{
Andres More1cac4a42013-03-18 20:33:50 -05001375 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyBufferAddr;
Forest Bond92b96792009-06-13 07:38:31 -04001376
Malcolm Priestleyc921cc82013-08-20 20:47:49 +01001377 pMACHeader->frame_control = TYPE_802_11_DATA;
Forest Bond92b96792009-06-13 07:38:31 -04001378
1379 if (pDevice->eOPMode == OP_MODE_AP) {
Andres More1cac4a42013-03-18 20:33:50 -05001380 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001381 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001382 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001383 memcpy(&(pMACHeader->addr2[0]), &(pDevice->abyBSSID[0]), ETH_ALEN);
1384 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001385 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001386 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001387 pMACHeader->frame_control |= FC_FROMDS;
Andres More9a0e7562010-04-13 21:54:48 -03001388 } else {
1389 if (pDevice->eOPMode == OP_MODE_ADHOC) {
Andres More1cac4a42013-03-18 20:33:50 -05001390 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001391 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001392 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001393 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001394 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001395 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001396 memcpy(&(pMACHeader->addr3[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001397 &(pDevice->abyBSSID[0]),
1398 ETH_ALEN);
1399 } else {
Andres More1cac4a42013-03-18 20:33:50 -05001400 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001401 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001402 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001403 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001404 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001405 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001406 memcpy(&(pMACHeader->addr1[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001407 &(pDevice->abyBSSID[0]),
1408 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001409 pMACHeader->frame_control |= FC_TODS;
Forest Bond92b96792009-06-13 07:38:31 -04001410 }
1411 }
1412
1413 if (bNeedEncrypt)
Andres More1cac4a42013-03-18 20:33:50 -05001414 pMACHeader->frame_control |= cpu_to_le16((u16)WLAN_SET_FC_ISWEP(1));
Forest Bond92b96792009-06-13 07:38:31 -04001415
Andres More1cac4a42013-03-18 20:33:50 -05001416 pMACHeader->duration_id = cpu_to_le16(wDuration);
Forest Bond92b96792009-06-13 07:38:31 -04001417
1418 if (pDevice->bLongHeader) {
1419 PWLAN_80211HDR_A4 pMACA4Header = (PWLAN_80211HDR_A4) pbyBufferAddr;
Andres More1cac4a42013-03-18 20:33:50 -05001420 pMACHeader->frame_control |= (FC_TODS | FC_FROMDS);
Jim Lieb3e362592009-08-12 14:54:11 -07001421 memcpy(pMACA4Header->abyAddr4, pDevice->abyBSSID, WLAN_ADDR_LEN);
Forest Bond92b96792009-06-13 07:38:31 -04001422 }
Andres More1cac4a42013-03-18 20:33:50 -05001423 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001424
1425 //Set FragNumber in Sequence Control
Andres More1cac4a42013-03-18 20:33:50 -05001426 pMACHeader->seq_ctrl |= cpu_to_le16((u16)uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -04001427
1428 if ((wFragType == FRAGCTL_ENDFRAG) || (wFragType == FRAGCTL_NONFRAG)) {
1429 pDevice->wSeqCounter++;
1430 if (pDevice->wSeqCounter > 0x0fff)
1431 pDevice->wSeqCounter = 0;
1432 }
1433
1434 if ((wFragType == FRAGCTL_STAFRAG) || (wFragType == FRAGCTL_MIDFRAG)) { //StartFrag or MidFrag
Andres More1cac4a42013-03-18 20:33:50 -05001435 pMACHeader->frame_control |= FC_MOREFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001436 }
1437}
1438
Forest Bond92b96792009-06-13 07:38:31 -04001439/*+
1440 *
1441 * Description:
1442 * Request instructs a MAC to transmit a 802.11 management packet through
1443 * the adapter onto the medium.
1444 *
1445 * Parameters:
1446 * In:
1447 * hDeviceContext - Pointer to the adapter
1448 * pPacket - A pointer to a descriptor for the packet to transmit
1449 * Out:
1450 * none
1451 *
Andres Moree269fc22013-02-12 20:36:29 -05001452 * Return Value: CMD_STATUS_PENDING if MAC Tx resource available; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04001453 *
1454-*/
1455
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001456CMD_STATUS csMgmt_xmit(struct vnt_private *pDevice,
1457 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001458{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001459 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001460 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001461 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001462 struct vnt_tx_fifo_head *pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001463 struct ieee80211_hdr *pMACHeader;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001464 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001465 u8 byPktType, *pbyTxBufferAddr;
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001466 void *rts_cts = NULL;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001467 void *pvTxDataHd;
1468 struct vnt_mic_hdr *pMICHDR = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001469 u32 uDuration, cbReqCount, cbHeaderSize, cbFrameBodySize, cbFrameSize;
Andres Moree269fc22013-02-12 20:36:29 -05001470 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001471 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1472 u32 uPadding = 0;
1473 u16 wTxBufSize;
1474 u32 cbMacHdLen;
1475 u16 wCurrentRate = RATE_1M;
Forest Bond92b96792009-06-13 07:38:31 -04001476
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001477 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001478
1479 if (NULL == pContext) {
1480 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1481 return CMD_STATUS_RESOURCES;
1482 }
1483
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001484 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Forest Bond92b96792009-06-13 07:38:31 -04001485 cbFrameBodySize = pPacket->cbPayloadLen;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001486 pTxBufHead = &pTX_Buffer->fifo_head;
1487 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1488 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001489
1490 if (pDevice->byBBType == BB_TYPE_11A) {
1491 wCurrentRate = RATE_6M;
1492 byPktType = PK_TYPE_11A;
1493 } else {
1494 wCurrentRate = RATE_1M;
1495 byPktType = PK_TYPE_11B;
1496 }
1497
1498 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1499 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1500 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1501 // to set power here.
1502 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1503 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1504 } else {
1505 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1506 }
1507 pDevice->wCurrentRate = wCurrentRate;
1508
Forest Bond92b96792009-06-13 07:38:31 -04001509 //Set packet type
1510 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1511 pTxBufHead->wFIFOCtl = 0;
1512 }
1513 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1514 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1515 }
1516 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1517 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1518 }
1519 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1520 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1521 }
1522
1523 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1524 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1525
Andres More22040bb2010-08-02 20:21:44 -03001526 if (is_multicast_ether_addr(pPacket->p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001527 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001528 }
1529 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001530 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001531 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1532 };
1533
1534 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1535 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1536
1537 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1538 //Set Preamble type always long
1539 //pDevice->byPreambleType = PREAMBLE_LONG;
1540 // probe-response don't retry
1541 //if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001542 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001543 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1544 //}
1545 }
1546
1547 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1548
1549 if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001550 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001551 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1552 } else {
1553 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1554 }
1555
1556 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001557 pTxBufHead->wFragCtl |= cpu_to_le16((u16)(cbMacHdLen << 10));
Forest Bond92b96792009-06-13 07:38:31 -04001558
1559 // Notes:
1560 // Although spec says MMPDU can be fragmented; In most case,
1561 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001562 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001563
1564 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
1565 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1566 cbIVlen = 4;
1567 cbICVlen = 4;
1568 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1569 }
1570 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1571 cbIVlen = 8;//IV+ExtIV
1572 cbMIClen = 8;
1573 cbICVlen = 4;
1574 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1575 //We need to get seed here for filling TxKey entry.
1576 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1577 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1578 }
1579 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1580 cbIVlen = 8;//RSN Header
1581 cbICVlen = 8;//MIC
1582 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001583 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001584 }
1585 //MAC Header should be padding 0 to DW alignment.
1586 uPadding = 4 - (cbMacHdLen%4);
1587 uPadding %= 4;
1588 }
1589
1590 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen;
1591
1592 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001593 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001594 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1595 }
1596 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1597
1598 //Set RrvTime/RTS/CTS Buffer
1599 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001600 rts_cts = (struct vnt_cts *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001601 sizeof(struct vnt_rrv_time_cts));
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001602 pvTxDataHd = (struct vnt_tx_datahead_g *)(pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01001603 sizeof(struct vnt_rrv_time_cts) + sizeof(struct vnt_cts));
1604 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001605 sizeof(struct vnt_cts) + sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04001606 }
1607 else { // 802.11a/b packet
Malcolm Priestley558becf2013-08-16 23:50:32 +01001608 pvTxDataHd = (struct vnt_tx_datahead_ab *) (pbyTxBufferAddr +
1609 wTxBufSize + sizeof(struct vnt_rrv_time_ab));
Malcolm Priestley976467d2013-08-16 23:44:04 +01001610 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001611 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001612 }
1613
Andres Moreceb8c5d2013-03-18 20:33:49 -05001614 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001615 &(pPacket->p80211Header->sA3.abyAddr1[0]),
1616 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001617 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001618 &(pPacket->p80211Header->sA3.abyAddr2[0]),
1619 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001620 //=========================
1621 // No Fragmentation
1622 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001623 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001624
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001625 /* Fill FIFO,RrvTime,RTS,and CTS */
1626 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001627 pTX_Buffer, &pMICHDR, 0, rts_cts,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01001628 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001629
1630 //Fill DataHead
1631 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, TYPE_TXDMA0, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01001632 AUTO_FB_NONE);
Forest Bond92b96792009-06-13 07:38:31 -04001633
Andres More1cac4a42013-03-18 20:33:50 -05001634 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001635
1636 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + cbFrameBodySize;
1637
1638 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001639 u8 * pbyIVHead;
1640 u8 * pbyPayloadHead;
1641 u8 * pbyBSSID;
Forest Bond92b96792009-06-13 07:38:31 -04001642 PSKeyItem pTransmitKey = NULL;
1643
Andres Moreb902fbf2013-02-25 20:32:51 -05001644 pbyIVHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding);
1645 pbyPayloadHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001646 do {
1647 if ((pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) &&
Andres More4e9b5e22013-02-12 20:36:30 -05001648 (pDevice->bLinkPass == true)) {
Forest Bond92b96792009-06-13 07:38:31 -04001649 pbyBSSID = pDevice->abyBSSID;
1650 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001651 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001652 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001653 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001654 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1655 break;
1656 }
1657 } else {
1658 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get PTK.\n");
1659 break;
1660 }
1661 }
1662 // get group key
1663 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001664 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001665 pTransmitKey = NULL;
1666 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"KEY is NULL. OP Mode[%d]\n", pDevice->eOPMode);
1667 } else {
1668 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1669 }
Andres Moree269fc22013-02-12 20:36:29 -05001670 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001671 //Fill TXKEY
Andres Moreb902fbf2013-02-25 20:32:51 -05001672 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Andres More3eaca0d2013-02-25 20:32:52 -05001673 (u8 *)pMACHeader, (u16)cbFrameBodySize, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001674
Jim Lieb3e362592009-08-12 14:54:11 -07001675 memcpy(pMACHeader, pPacket->p80211Header, cbMacHdLen);
Andres Moreb902fbf2013-02-25 20:32:51 -05001676 memcpy(pbyPayloadHead, ((u8 *)(pPacket->p80211Header) + cbMacHdLen),
Forest Bond92b96792009-06-13 07:38:31 -04001677 cbFrameBodySize);
1678 }
1679 else {
1680 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001681 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001682 }
1683
Andres More1cac4a42013-03-18 20:33:50 -05001684 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001685 pDevice->wSeqCounter++ ;
1686 if (pDevice->wSeqCounter > 0x0fff)
1687 pDevice->wSeqCounter = 0;
1688
1689 if (bIsPSPOLL) {
1690 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001691 // of FIFO control header.
Forest Bond92b96792009-06-13 07:38:31 -04001692 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
1693 // in the same place of other packet's Duration-field).
1694 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001695 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
1696 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_a =
1697 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1698 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_b =
1699 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1700 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +01001701 ((struct vnt_tx_datahead_ab *)pvTxDataHd)->wDuration =
1702 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1703 }
Forest Bond92b96792009-06-13 07:38:31 -04001704 }
1705
Andres More3eaca0d2013-02-25 20:32:52 -05001706 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05001707 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001708 pTX_Buffer->byType = 0x00;
1709
1710 pContext->pPacket = NULL;
1711 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001712 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001713
Andres More1cac4a42013-03-18 20:33:50 -05001714 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001715 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1716 &pMACHeader->addr1[0], (u16)cbFrameSize,
1717 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001718 }
1719 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001720 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1721 &pMACHeader->addr3[0], (u16)cbFrameSize,
1722 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001723 }
1724
1725 PIPEnsSendBulkOut(pDevice,pContext);
1726 return CMD_STATUS_PENDING;
1727}
1728
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001729CMD_STATUS csBeacon_xmit(struct vnt_private *pDevice,
1730 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001731{
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001732 struct vnt_beacon_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001733 u32 cbFrameSize = pPacket->cbMPDULen + WLAN_FCS_LEN;
1734 u32 cbHeaderSize = 0;
1735 u16 wTxBufSize = sizeof(STxShortBufHead);
1736 PSTxShortBufHead pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001737 struct ieee80211_hdr *pMACHeader;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001738 struct vnt_tx_datahead_ab *pTxDataHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001739 u16 wCurrentRate;
1740 u32 cbFrameBodySize;
1741 u32 cbReqCount;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001742 u8 *pbyTxBufferAddr;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001743 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001744 CMD_STATUS status;
Forest Bond92b96792009-06-13 07:38:31 -04001745
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001746 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001747 if (NULL == pContext) {
1748 status = CMD_STATUS_RESOURCES;
1749 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1750 return status ;
1751 }
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001752
1753 pTX_Buffer = (struct vnt_beacon_buffer *)&pContext->Data[0];
Andres Moreb902fbf2013-02-25 20:32:51 -05001754 pbyTxBufferAddr = (u8 *)&(pTX_Buffer->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001755
1756 cbFrameBodySize = pPacket->cbPayloadLen;
1757
1758 pTxBufHead = (PSTxShortBufHead) pbyTxBufferAddr;
1759 wTxBufSize = sizeof(STxShortBufHead);
Forest Bond92b96792009-06-13 07:38:31 -04001760
1761 if (pDevice->byBBType == BB_TYPE_11A) {
1762 wCurrentRate = RATE_6M;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001763 pTxDataHead = (struct vnt_tx_datahead_ab *)
1764 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001765 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001766 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11A,
1767 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001768 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001769 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001770 PK_TYPE_11A, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001771 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001772 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001773 } else {
1774 wCurrentRate = RATE_1M;
1775 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
Malcolm Priestley558becf2013-08-16 23:50:32 +01001776 pTxDataHead = (struct vnt_tx_datahead_ab *)
1777 (pbyTxBufferAddr + wTxBufSize);
Forest Bond92b96792009-06-13 07:38:31 -04001778 //Get SignalField,ServiceField,Length
Malcolm Priestleyaed387c2013-08-20 22:52:30 +01001779 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate, PK_TYPE_11B,
1780 &pTxDataHead->ab);
Forest Bond92b96792009-06-13 07:38:31 -04001781 //Get Duration and TimeStampOff
Malcolm Priestleyd5005952013-08-21 21:58:37 +01001782 pTxDataHead->wDuration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001783 PK_TYPE_11B, false);
Malcolm Priestleyf115e762013-08-23 11:48:46 +01001784 pTxDataHead->wTimeStampOff = vnt_time_stamp_off(pDevice, wCurrentRate);
Malcolm Priestley558becf2013-08-16 23:50:32 +01001785 cbHeaderSize = wTxBufSize + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001786 }
1787
1788 //Generate Beacon Header
Andres More1cac4a42013-03-18 20:33:50 -05001789 pMACHeader = (struct ieee80211_hdr *)(pbyTxBufferAddr + cbHeaderSize);
Jim Lieb3e362592009-08-12 14:54:11 -07001790 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001791
Andres More1cac4a42013-03-18 20:33:50 -05001792 pMACHeader->duration_id = 0;
1793 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001794 pDevice->wSeqCounter++ ;
1795 if (pDevice->wSeqCounter > 0x0fff)
1796 pDevice->wSeqCounter = 0;
1797
1798 cbReqCount = cbHeaderSize + WLAN_HDR_ADDR3_LEN + cbFrameBodySize;
1799
Andres More3eaca0d2013-02-25 20:32:52 -05001800 pTX_Buffer->wTxByteCount = (u16)cbReqCount;
Andres Moreb902fbf2013-02-25 20:32:51 -05001801 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001802 pTX_Buffer->byType = 0x01;
1803
1804 pContext->pPacket = NULL;
1805 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05001806 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04001807
1808 PIPEnsSendBulkOut(pDevice,pContext);
1809 return CMD_STATUS_PENDING;
1810
1811}
1812
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001813void vDMA0_tx_80211(struct vnt_private *pDevice, struct sk_buff *skb)
1814{
1815 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001816 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001817 struct vnt_tx_fifo_head *pTxBufHead;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001818 u8 byPktType;
1819 u8 *pbyTxBufferAddr;
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001820 void *rts_cts = NULL;
1821 void *pvTxDataHd;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001822 u32 uDuration, cbReqCount;
Andres More1cac4a42013-03-18 20:33:50 -05001823 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001824 u32 cbHeaderSize, cbFrameBodySize;
Andres Moree269fc22013-02-12 20:36:29 -05001825 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001826 u32 cbFrameSize;
1827 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1828 u32 uPadding = 0;
1829 u32 cbMICHDR = 0, uLength = 0;
1830 u32 dwMICKey0, dwMICKey1;
1831 u32 dwMIC_Priority;
1832 u32 *pdwMIC_L, *pdwMIC_R;
1833 u16 wTxBufSize;
1834 u32 cbMacHdLen;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001835 struct ethhdr sEthHeader;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001836 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001837 u32 wCurrentRate = RATE_1M;
1838 PUWLAN_80211HDR p80211Header;
1839 u32 uNodeIndex = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001840 int bNodeExist = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001841 SKeyItem STempKey;
1842 PSKeyItem pTransmitKey = NULL;
1843 u8 *pbyIVHead, *pbyPayloadHead, *pbyMacHdr;
1844 u32 cbExtSuppRate = 0;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001845 struct vnt_usb_send_context *pContext;
Forest Bond92b96792009-06-13 07:38:31 -04001846
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +01001847 pMICHDR = pvTxDataHd = NULL;
Forest Bond92b96792009-06-13 07:38:31 -04001848
1849 if(skb->len <= WLAN_HDR_ADDR3_LEN) {
1850 cbFrameBodySize = 0;
1851 }
1852 else {
1853 cbFrameBodySize = skb->len - WLAN_HDR_ADDR3_LEN;
1854 }
1855 p80211Header = (PUWLAN_80211HDR)skb->data;
1856
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001857 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001858
1859 if (NULL == pContext) {
1860 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0 TX...NO CONTEXT!\n");
1861 dev_kfree_skb_irq(skb);
1862 return ;
1863 }
1864
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001865 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001866 pTxBufHead = &pTX_Buffer->fifo_head;
1867 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1868 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001869
1870 if (pDevice->byBBType == BB_TYPE_11A) {
1871 wCurrentRate = RATE_6M;
1872 byPktType = PK_TYPE_11A;
1873 } else {
1874 wCurrentRate = RATE_1M;
1875 byPktType = PK_TYPE_11B;
1876 }
1877
1878 // SetPower will cause error power TX state for OFDM Date packet in TX buffer.
1879 // 2004.11.11 Kyle -- Using OFDM power to tx MngPkt will decrease the connection capability.
1880 // And cmd timer will wait data pkt TX finish before scanning so it's OK
1881 // to set power here.
1882 if (pMgmt->eScanState != WMAC_NO_SCANNING) {
1883 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1884 } else {
1885 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1886 }
1887
1888 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"vDMA0_tx_80211: p80211Header->sA3.wFrameCtl = %x \n", p80211Header->sA3.wFrameCtl);
1889
1890 //Set packet type
1891 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1892 pTxBufHead->wFIFOCtl = 0;
1893 }
1894 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1895 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1896 }
1897 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1898 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1899 }
1900 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1901 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1902 }
1903
1904 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
1905 pTxBufHead->wTimeStamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
1906
Andres More22040bb2010-08-02 20:21:44 -03001907 if (is_multicast_ether_addr(p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001908 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001909 if (pDevice->bEnableHostWEP) {
1910 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05001911 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001912 }
Forest Bond92b96792009-06-13 07:38:31 -04001913 }
1914 else {
1915 if (pDevice->bEnableHostWEP) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001916 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(p80211Header->sA3.abyAddr1), &uNodeIndex))
Andres More4e9b5e22013-02-12 20:36:30 -05001917 bNodeExist = true;
Joe Perches9fc86022011-04-10 14:31:32 -07001918 }
Andres More4e9b5e22013-02-12 20:36:30 -05001919 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001920 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1921 };
1922
1923 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1924 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1925
1926 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1927 //Set Preamble type always long
1928 //pDevice->byPreambleType = PREAMBLE_LONG;
1929
1930 // probe-response don't retry
1931 //if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001932 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001933 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1934 //}
1935 }
1936
1937 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1938
1939 if ((p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001940 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001941 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1942 } else {
1943 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1944 }
1945
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001946 // hostapd daemon ext support rate patch
Forest Bond92b96792009-06-13 07:38:31 -04001947 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
1948
1949 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0) {
1950 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN;
1951 }
1952
1953 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0) {
1954 cbExtSuppRate += ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN;
1955 }
1956
1957 if (cbExtSuppRate >0) {
1958 cbFrameBodySize = WLAN_ASSOCRESP_OFF_SUPP_RATES;
1959 }
1960 }
1961
Forest Bond92b96792009-06-13 07:38:31 -04001962 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001963 pTxBufHead->wFragCtl |= cpu_to_le16((u16)cbMacHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001964
1965 // Notes:
1966 // Although spec says MMPDU can be fragmented; In most case,
1967 // no one will send a MMPDU under fragmentation. With RTS may occur.
Andres Moree269fc22013-02-12 20:36:29 -05001968 pDevice->bAES = false; //Set FRAGCTL_WEPTYP
Forest Bond92b96792009-06-13 07:38:31 -04001969
Forest Bond92b96792009-06-13 07:38:31 -04001970 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
1971 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1972 cbIVlen = 4;
1973 cbICVlen = 4;
1974 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1975 }
1976 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1977 cbIVlen = 8;//IV+ExtIV
1978 cbMIClen = 8;
1979 cbICVlen = 4;
1980 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1981 //We need to get seed here for filling TxKey entry.
1982 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1983 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1984 }
1985 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1986 cbIVlen = 8;//RSN Header
1987 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001988 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001989 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Andres More4e9b5e22013-02-12 20:36:30 -05001990 pDevice->bAES = true;
Forest Bond92b96792009-06-13 07:38:31 -04001991 }
1992 //MAC Header should be padding 0 to DW alignment.
1993 uPadding = 4 - (cbMacHdLen%4);
1994 uPadding %= 4;
1995 }
1996
1997 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen + cbExtSuppRate;
1998
1999 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05002000 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04002001 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
2002 }
2003 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
2004
Forest Bond92b96792009-06-13 07:38:31 -04002005 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01002006 rts_cts = (struct vnt_cts *) (pbyTxBufferAddr + wTxBufSize +
Malcolm Priestley4f990052013-08-16 23:38:57 +01002007 sizeof(struct vnt_rrv_time_cts) + cbMICHDR);
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002008 pvTxDataHd = (struct vnt_tx_datahead_g *) (pbyTxBufferAddr +
2009 wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley4f990052013-08-16 23:38:57 +01002010 sizeof(struct vnt_cts));
2011 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) + cbMICHDR +
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002012 sizeof(struct vnt_cts) + sizeof(struct vnt_tx_datahead_g);
Forest Bond92b96792009-06-13 07:38:31 -04002013
2014 }
2015 else {//802.11a/b packet
Malcolm Priestley558becf2013-08-16 23:50:32 +01002016 pvTxDataHd = (struct vnt_tx_datahead_ab *)(pbyTxBufferAddr +
2017 wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR);
Malcolm Priestley976467d2013-08-16 23:44:04 +01002018 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) + cbMICHDR +
Malcolm Priestley558becf2013-08-16 23:50:32 +01002019 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04002020 }
Andres Moreceb8c5d2013-03-18 20:33:49 -05002021 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03002022 &(p80211Header->sA3.abyAddr1[0]),
2023 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002024 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03002025 &(p80211Header->sA3.abyAddr2[0]),
2026 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04002027 //=========================
2028 // No Fragmentation
2029 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05002030 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04002031
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01002032 /* Fill FIFO,RrvTime,RTS,and CTS */
2033 s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01002034 pTX_Buffer, &pMICHDR, cbMICHDR, rts_cts,
Malcolm Priestleyf46142b2013-08-27 11:56:33 +01002035 cbFrameSize, bNeedACK, TYPE_TXDMA0, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04002036
2037 //Fill DataHead
2038 uDuration = s_uFillDataHead(pDevice, byPktType, wCurrentRate, pvTxDataHd, cbFrameSize, TYPE_TXDMA0, bNeedACK,
Malcolm Priestleyab01fed2013-08-07 21:31:48 +01002039 AUTO_FB_NONE);
Forest Bond92b96792009-06-13 07:38:31 -04002040
Andres More1cac4a42013-03-18 20:33:50 -05002041 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04002042
2043 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + (cbFrameBodySize + cbMIClen) + cbExtSuppRate;
2044
Andres Moreb902fbf2013-02-25 20:32:51 -05002045 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderSize);
2046 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding + cbIVlen);
2047 pbyIVHead = (u8 *)(pbyMacHdr + cbMacHdLen + uPadding);
Forest Bond92b96792009-06-13 07:38:31 -04002048
2049 // Copy the Packet into a tx Buffer
2050 memcpy(pbyMacHdr, skb->data, cbMacHdLen);
2051
2052 // version set to 0, patch for hostapd deamon
Andres More1cac4a42013-03-18 20:33:50 -05002053 pMACHeader->frame_control &= cpu_to_le16(0xfffc);
Forest Bond92b96792009-06-13 07:38:31 -04002054 memcpy(pbyPayloadHead, (skb->data + cbMacHdLen), cbFrameBodySize);
2055
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002056 // replace support rate, patch for hostapd daemon( only support 11M)
Forest Bond92b96792009-06-13 07:38:31 -04002057 if (WLAN_GET_FC_FSTYPE(p80211Header->sA4.wFrameCtl) == WLAN_FSTYPE_ASSOCRESP) {
2058 if (cbExtSuppRate != 0) {
2059 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len != 0)
2060 memcpy((pbyPayloadHead + cbFrameBodySize),
2061 pMgmt->abyCurrSuppRates,
2062 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN
2063 );
2064 if (((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len != 0)
2065 memcpy((pbyPayloadHead + cbFrameBodySize) + ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrSuppRates)->len + WLAN_IEHDR_LEN,
2066 pMgmt->abyCurrExtSuppRates,
2067 ((PWLAN_IE_SUPP_RATES)pMgmt->abyCurrExtSuppRates)->len + WLAN_IEHDR_LEN
2068 );
2069 }
2070 }
2071
2072 // Set wep
2073 if (WLAN_GET_FC_ISWEP(p80211Header->sA4.wFrameCtl) != 0) {
2074
2075 if (pDevice->bEnableHostWEP) {
2076 pTransmitKey = &STempKey;
2077 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2078 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2079 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2080 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2081 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2082 memcpy(pTransmitKey->abyKey,
2083 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2084 pTransmitKey->uKeyLength
2085 );
2086 }
2087
2088 if ((pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
2089
Andres More52a7e642013-02-25 20:32:53 -05002090 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
2091 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04002092
2093 // DO Software Michael
2094 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05002095 MIC_vAppend((u8 *)&(sEthHeader.h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04002096 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05002097 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002098 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"DMA0_tx_8021:MIC KEY:"\
2099 " %X, %X\n", dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04002100
2101 uLength = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen;
2102
2103 MIC_vAppend((pbyTxBufferAddr + uLength), cbFrameBodySize);
2104
Andres More52a7e642013-02-25 20:32:53 -05002105 pdwMIC_L = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize);
2106 pdwMIC_R = (u32 *)(pbyTxBufferAddr + uLength + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04002107
2108 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
2109 MIC_vUnInit();
2110
Andres More4e9b5e22013-02-12 20:36:30 -05002111 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002112 *pdwMIC_L = 0;
2113 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05002114 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04002115 }
2116
2117 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
2118 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderSize, uPadding, cbIVlen);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002119 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%x, %x\n",
2120 *pdwMIC_L, *pdwMIC_R);
Forest Bond92b96792009-06-13 07:38:31 -04002121
2122 }
2123
Andres Moreb902fbf2013-02-25 20:32:51 -05002124 s_vFillTxKey(pDevice, (u8 *)(pTxBufHead->adwTxKey), pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01002125 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04002126
2127 if (pDevice->bEnableHostWEP) {
2128 pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16 = pTransmitKey->dwTSC47_16;
2129 pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0 = pTransmitKey->wTSC15_0;
2130 }
2131
2132 if ((pDevice->byLocalID <= REV_ID_VT3253_A1)) {
Andres More3eaca0d2013-02-25 20:32:52 -05002133 s_vSWencryption(pDevice, pTransmitKey, pbyPayloadHead, (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04002134 }
2135 }
2136
Andres More1cac4a42013-03-18 20:33:50 -05002137 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04002138 pDevice->wSeqCounter++ ;
2139 if (pDevice->wSeqCounter > 0x0fff)
2140 pDevice->wSeqCounter = 0;
2141
Forest Bond92b96792009-06-13 07:38:31 -04002142 if (bIsPSPOLL) {
2143 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
2144 // of FIFO control header.
2145 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
2146 // in the same place of other packet's Duration-field).
2147 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01002148 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
2149 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_a =
2150 cpu_to_le16(p80211Header->sA2.wDurationID);
2151 ((struct vnt_tx_datahead_g *)pvTxDataHd)->wDuration_b =
2152 cpu_to_le16(p80211Header->sA2.wDurationID);
2153 } else {
Malcolm Priestley558becf2013-08-16 23:50:32 +01002154 ((struct vnt_tx_datahead_ab *)pvTxDataHd)->wDuration =
2155 cpu_to_le16(p80211Header->sA2.wDurationID);
2156 }
Forest Bond92b96792009-06-13 07:38:31 -04002157 }
2158
Andres More3eaca0d2013-02-25 20:32:52 -05002159 pTX_Buffer->wTxByteCount = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05002160 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04002161 pTX_Buffer->byType = 0x00;
2162
2163 pContext->pPacket = skb;
2164 pContext->Type = CONTEXT_MGMT_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002165 pContext->uBufLen = (u16)cbReqCount + 4; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002166
Andres More1cac4a42013-03-18 20:33:50 -05002167 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002168 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2169 &pMACHeader->addr1[0], (u16)cbFrameSize,
2170 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002171 }
2172 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002173 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2174 &pMACHeader->addr3[0], (u16)cbFrameSize,
2175 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002176 }
2177 PIPEnsSendBulkOut(pDevice,pContext);
2178 return ;
2179
2180}
2181
Forest Bond92b96792009-06-13 07:38:31 -04002182//TYPE_AC0DMA data tx
2183/*
2184 * Description:
2185 * Tx packet via AC0DMA(DMA1)
2186 *
2187 * Parameters:
2188 * In:
2189 * pDevice - Pointer to the adapter
2190 * skb - Pointer to tx skb packet
2191 * Out:
2192 * void
2193 *
2194 * Return Value: NULL
2195 */
2196
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002197int nsDMA_tx_packet(struct vnt_private *pDevice,
2198 u32 uDMAIdx, struct sk_buff *skb)
Forest Bond92b96792009-06-13 07:38:31 -04002199{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002200 struct net_device_stats *pStats = &pDevice->stats;
2201 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002202 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002203 u32 BytesToWrite = 0, uHeaderLen = 0;
2204 u32 uNodeIndex = 0;
2205 u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
2206 u16 wAID;
2207 u8 byPktType;
Andres Moree269fc22013-02-12 20:36:29 -05002208 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002209 PSKeyItem pTransmitKey = NULL;
2210 SKeyItem STempKey;
2211 int ii;
Andres Moree269fc22013-02-12 20:36:29 -05002212 int bTKIP_UseGTK = false;
2213 int bNeedDeAuth = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002214 u8 *pbyBSSID;
Andres Moree269fc22013-02-12 20:36:29 -05002215 int bNodeExist = false;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002216 struct vnt_usb_send_context *pContext;
Andres Moredfdcc422013-02-12 20:36:28 -05002217 bool fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002218 u32 status;
2219 u16 wKeepRate = pDevice->wCurrentRate;
Andres Moree269fc22013-02-12 20:36:29 -05002220 int bTxeapol_key = false;
Forest Bond92b96792009-06-13 07:38:31 -04002221
Forest Bond92b96792009-06-13 07:38:31 -04002222 if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
2223
2224 if (pDevice->uAssocCount == 0) {
2225 dev_kfree_skb_irq(skb);
2226 return 0;
2227 }
2228
Andres Moreb902fbf2013-02-25 20:32:51 -05002229 if (is_multicast_ether_addr((u8 *)(skb->data))) {
Forest Bond92b96792009-06-13 07:38:31 -04002230 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05002231 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002232 if (pMgmt->sNodeDBTable[0].bPSEnable) {
2233
2234 skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skb);
2235 pMgmt->sNodeDBTable[0].wEnQueueCnt++;
2236 // set tx map
2237 pMgmt->abyPSTxMap[0] |= byMask[0];
2238 return 0;
2239 }
Masanari Iida93184692012-08-13 21:21:50 +09002240 // multicast/broadcast data rate
Forest Bond92b96792009-06-13 07:38:31 -04002241
2242 if (pDevice->byBBType != BB_TYPE_11A)
2243 pDevice->wCurrentRate = RATE_2M;
2244 else
2245 pDevice->wCurrentRate = RATE_24M;
2246 // long preamble type
2247 pDevice->byPreambleType = PREAMBLE_SHORT;
2248
2249 }else {
2250
Andres Moreb902fbf2013-02-25 20:32:51 -05002251 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(skb->data), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002252
2253 if (pMgmt->sNodeDBTable[uNodeIndex].bPSEnable) {
2254
2255 skb_queue_tail(&pMgmt->sNodeDBTable[uNodeIndex].sTxPSQueue, skb);
2256
2257 pMgmt->sNodeDBTable[uNodeIndex].wEnQueueCnt++;
2258 // set tx map
2259 wAID = pMgmt->sNodeDBTable[uNodeIndex].wAID;
2260 pMgmt->abyPSTxMap[wAID >> 3] |= byMask[wAID & 7];
2261 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set:pMgmt->abyPSTxMap[%d]= %d\n",
2262 (wAID >> 3), pMgmt->abyPSTxMap[wAID >> 3]);
2263
2264 return 0;
2265 }
2266 // AP rate decided from node
2267 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2268 // tx preamble decided from node
2269
2270 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2271 pDevice->byPreambleType = pDevice->byShortPreamble;
2272
2273 }else {
2274 pDevice->byPreambleType = PREAMBLE_LONG;
2275 }
Andres More4e9b5e22013-02-12 20:36:30 -05002276 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04002277 }
2278 }
2279
Andres Moree269fc22013-02-12 20:36:29 -05002280 if (bNodeExist == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002281 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Unknown STA not found in node DB \n");
2282 dev_kfree_skb_irq(skb);
2283 return 0;
2284 }
2285 }
2286
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002287 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002288
2289 if (pContext == NULL) {
2290 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG" pContext == NULL\n");
2291 dev_kfree_skb_irq(skb);
2292 return STATUS_RESOURCES;
2293 }
2294
Andres Moreceb8c5d2013-03-18 20:33:49 -05002295 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)(skb->data), ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002296
2297//mike add:station mode check eapol-key challenge--->
2298{
Andres Moreb902fbf2013-02-25 20:32:51 -05002299 u8 Protocol_Version; //802.1x Authentication
2300 u8 Packet_Type; //802.1x Authentication
2301 u8 Descriptor_type;
Andres More3eaca0d2013-02-25 20:32:52 -05002302 u16 Key_info;
Forest Bond92b96792009-06-13 07:38:31 -04002303
Charles Clément21ec51f2010-05-18 10:08:14 -07002304 Protocol_Version = skb->data[ETH_HLEN];
2305 Packet_Type = skb->data[ETH_HLEN+1];
2306 Descriptor_type = skb->data[ETH_HLEN+1+1+2];
2307 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 -05002308 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002309 /* 802.1x OR eapol-key challenge frame transfer */
2310 if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
2311 (Packet_Type == 3)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002312 bTxeapol_key = true;
Forest Bond92b96792009-06-13 07:38:31 -04002313 if(!(Key_info & BIT3) && //WPA or RSN group-key challenge
2314 (Key_info & BIT8) && (Key_info & BIT9)) { //send 2/2 key
2315 if(Descriptor_type==254) {
Andres More4e9b5e22013-02-12 20:36:30 -05002316 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002317 PRINT_K("WPA ");
2318 }
2319 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002320 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002321 PRINT_K("WPA2(re-keying) ");
2322 }
2323 PRINT_K("Authentication completed!!\n");
2324 }
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07002325 else if((Key_info & BIT3) && (Descriptor_type==2) && //RSN pairwise-key challenge
Forest Bond92b96792009-06-13 07:38:31 -04002326 (Key_info & BIT8) && (Key_info & BIT9)) {
Andres More4e9b5e22013-02-12 20:36:30 -05002327 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04002328 PRINT_K("WPA2 Authentication completed!!\n");
2329 }
2330 }
2331 }
2332}
2333//mike add:station mode check eapol-key challenge<---
2334
Andres More4e9b5e22013-02-12 20:36:30 -05002335 if (pDevice->bEncryptionEnable == true) {
2336 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002337 // get Transmit key
2338 do {
2339 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) &&
2340 (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2341 pbyBSSID = pDevice->abyBSSID;
2342 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05002343 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002344 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05002345 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
2346 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002347 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2348 break;
2349 }
2350 } else {
2351 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get PTK.\n");
2352 break;
2353 }
2354 }else if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002355 /* TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1 */
2356 pbyBSSID = pDevice->sTxEthHeader.h_dest;
Forest Bond92b96792009-06-13 07:38:31 -04002357 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS Serach Key: \n");
2358 for (ii = 0; ii< 6; ii++)
2359 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"%x \n", *(pbyBSSID+ii));
2360 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"\n");
2361
2362 // get pairwise key
Andres More4e9b5e22013-02-12 20:36:30 -05002363 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == true)
Forest Bond92b96792009-06-13 07:38:31 -04002364 break;
2365 }
2366 // get group key
2367 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002368 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002369 pTransmitKey = NULL;
2370 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
2371 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2372 }
2373 else
2374 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"NOT IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2375 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05002376 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04002377 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2378 }
Andres Moree269fc22013-02-12 20:36:29 -05002379 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04002380 }
2381
2382 if (pDevice->bEnableHostWEP) {
2383 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"acdma0: STA index %d\n", uNodeIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002384 if (pDevice->bEncryptionEnable == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002385 pTransmitKey = &STempKey;
2386 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2387 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2388 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2389 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2390 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2391 memcpy(pTransmitKey->abyKey,
2392 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2393 pTransmitKey->uKeyLength
2394 );
2395 }
2396 }
2397
Andres Moreb902fbf2013-02-25 20:32:51 -05002398 byPktType = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002399
2400 if (pDevice->bFixRate) {
2401 if (pDevice->byBBType == BB_TYPE_11B) {
2402 if (pDevice->uConnectionRate >= RATE_11M) {
2403 pDevice->wCurrentRate = RATE_11M;
2404 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002405 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002406 }
2407 } else {
2408 if ((pDevice->byBBType == BB_TYPE_11A) &&
2409 (pDevice->uConnectionRate <= RATE_6M)) {
2410 pDevice->wCurrentRate = RATE_6M;
2411 } else {
2412 if (pDevice->uConnectionRate >= RATE_54M)
2413 pDevice->wCurrentRate = RATE_54M;
2414 else
Andres More3eaca0d2013-02-25 20:32:52 -05002415 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002416 }
2417 }
2418 }
2419 else {
2420 if (pDevice->eOPMode == OP_MODE_ADHOC) {
2421 // Adhoc Tx rate decided from node DB
Andres Moreceb8c5d2013-03-18 20:33:49 -05002422 if (is_multicast_ether_addr(pDevice->sTxEthHeader.h_dest)) {
Forest Bond92b96792009-06-13 07:38:31 -04002423 // Multicast use highest data rate
2424 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2425 // preamble type
2426 pDevice->byPreambleType = pDevice->byShortPreamble;
2427 }
2428 else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002429 if (BSSbIsSTAInNodeDB(pDevice, &(pDevice->sTxEthHeader.h_dest[0]), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04002430 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2431 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
2432 pDevice->byPreambleType = pDevice->byShortPreamble;
2433
2434 }
2435 else {
2436 pDevice->byPreambleType = PREAMBLE_LONG;
2437 }
2438 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Found Node Index is [%d] Tx Data Rate:[%d]\n",uNodeIndex, pDevice->wCurrentRate);
2439 }
2440 else {
2441 if (pDevice->byBBType != BB_TYPE_11A)
2442 pDevice->wCurrentRate = RATE_2M;
2443 else
2444 pDevice->wCurrentRate = RATE_24M; // refer to vMgrCreateOwnIBSS()'s
2445 // abyCurrExtSuppRates[]
2446 pDevice->byPreambleType = PREAMBLE_SHORT;
2447 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Not Found Node use highest basic Rate.....\n");
2448 }
2449 }
2450 }
2451 if (pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) {
2452 // Infra STA rate decided from AP Node, index = 0
2453 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
2454 }
2455 }
2456
Andres Moreceb8c5d2013-03-18 20:33:49 -05002457 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01002458 if (pDevice->byBBType != BB_TYPE_11A) {
2459 pDevice->wCurrentRate = RATE_1M;
2460 pDevice->byACKRate = RATE_1M;
2461 pDevice->byTopCCKBasicRate = RATE_1M;
2462 pDevice->byTopOFDMBasicRate = RATE_6M;
2463 } else {
2464 pDevice->wCurrentRate = RATE_6M;
2465 pDevice->byACKRate = RATE_6M;
2466 pDevice->byTopCCKBasicRate = RATE_1M;
2467 pDevice->byTopOFDMBasicRate = RATE_6M;
2468 }
2469 }
Forest Bond92b96792009-06-13 07:38:31 -04002470
Andres More0cbd8d92010-05-06 20:34:29 -03002471 DBG_PRT(MSG_LEVEL_DEBUG,
2472 KERN_INFO "dma_tx: pDevice->wCurrentRate = %d\n",
2473 pDevice->wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -04002474
2475 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002476 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002477 }
2478
2479 if (pDevice->wCurrentRate <= RATE_11M) {
2480 byPktType = PK_TYPE_11B;
2481 }
2482
Andres More4e9b5e22013-02-12 20:36:30 -05002483 if (bNeedEncryption == true) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05002484 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.h_proto));
2485 if ((pDevice->sTxEthHeader.h_proto) == cpu_to_be16(ETH_P_PAE)) {
Andres Moree269fc22013-02-12 20:36:29 -05002486 bNeedEncryption = false;
Andres Moreceb8c5d2013-03-18 20:33:49 -05002487 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.h_proto));
Forest Bond92b96792009-06-13 07:38:31 -04002488 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) && (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
2489 if (pTransmitKey == NULL) {
2490 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Don't Find TX KEY\n");
2491 }
2492 else {
Andres More4e9b5e22013-02-12 20:36:30 -05002493 if (bTKIP_UseGTK == true) {
Forest Bond92b96792009-06-13 07:38:31 -04002494 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"error: KEY is GTK!!~~\n");
2495 }
2496 else {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002497 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2498 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002499 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002500 }
2501 }
2502 }
2503
Forest Bond92b96792009-06-13 07:38:31 -04002504 if (pDevice->bEnableHostWEP) {
2505 if ((uNodeIndex != 0) &&
2506 (pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex & PAIRWISE_KEY)) {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00002507 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
2508 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05002509 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002510 }
2511 }
2512 }
2513 else {
2514
Forest Bond92b96792009-06-13 07:38:31 -04002515 if (pTransmitKey == NULL) {
2516 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"return no tx key\n");
Andres Moree269fc22013-02-12 20:36:29 -05002517 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002518 dev_kfree_skb_irq(skb);
2519 pStats->tx_dropped++;
2520 return STATUS_FAILURE;
2521 }
Forest Bond92b96792009-06-13 07:38:31 -04002522 }
2523 }
2524
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002525 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2526
Forest Bond92b96792009-06-13 07:38:31 -04002527 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002528 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002529 skb->len, uDMAIdx, &pDevice->sTxEthHeader,
Andres Moreb902fbf2013-02-25 20:32:51 -05002530 (u8 *)skb->data, pTransmitKey, uNodeIndex,
Forest Bond92b96792009-06-13 07:38:31 -04002531 pDevice->wCurrentRate,
2532 &uHeaderLen, &BytesToWrite
2533 );
2534
Andres Moree269fc22013-02-12 20:36:29 -05002535 if (fConvertedPacket == false) {
2536 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002537 dev_kfree_skb_irq(skb);
2538 return STATUS_FAILURE;
2539 }
2540
Andres More4e9b5e22013-02-12 20:36:30 -05002541 if ( pDevice->bEnablePSMode == true ) {
Forest Bond92b96792009-06-13 07:38:31 -04002542 if ( !pDevice->bPSModeTxBurst ) {
Andres More0cbd8d92010-05-06 20:34:29 -03002543 bScheduleCommand((void *) pDevice,
2544 WLAN_CMD_MAC_DISPOWERSAVING,
2545 NULL);
Andres More4e9b5e22013-02-12 20:36:30 -05002546 pDevice->bPSModeTxBurst = true;
Forest Bond92b96792009-06-13 07:38:31 -04002547 }
2548 }
2549
Andres Moreb902fbf2013-02-25 20:32:51 -05002550 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002551 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002552
2553 pContext->pPacket = skb;
2554 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002555 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002556
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002557 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2558 &pContext->sEthHeader.h_dest[0],
2559 (u16)(BytesToWrite-uHeaderLen),
2560 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002561
2562 status = PIPEnsSendBulkOut(pDevice,pContext);
2563
Andres More4e9b5e22013-02-12 20:36:30 -05002564 if (bNeedDeAuth == true) {
Andres More3eaca0d2013-02-25 20:32:52 -05002565 u16 wReason = WLAN_MGMT_REASON_MIC_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -04002566
Andres Moreb902fbf2013-02-25 20:32:51 -05002567 bScheduleCommand((void *) pDevice, WLAN_CMD_DEAUTH, (u8 *) &wReason);
Forest Bond92b96792009-06-13 07:38:31 -04002568 }
2569
2570 if(status!=STATUS_PENDING) {
Andres Moree269fc22013-02-12 20:36:29 -05002571 pContext->bBoolInUse = false;
Forest Bond92b96792009-06-13 07:38:31 -04002572 dev_kfree_skb_irq(skb);
2573 return STATUS_FAILURE;
2574 }
2575 else
2576 return 0;
2577
2578}
2579
Forest Bond92b96792009-06-13 07:38:31 -04002580/*
2581 * Description:
2582 * Relay packet send (AC1DMA) from rx dpc.
2583 *
2584 * Parameters:
2585 * In:
2586 * pDevice - Pointer to the adapter
2587 * pPacket - Pointer to rx packet
2588 * cbPacketSize - rx ethernet frame size
2589 * Out:
Andres Moree269fc22013-02-12 20:36:29 -05002590 * TURE, false
Forest Bond92b96792009-06-13 07:38:31 -04002591 *
Andres More4e9b5e22013-02-12 20:36:30 -05002592 * Return Value: Return true if packet is copy to dma1; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04002593 */
2594
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002595int bRelayPacketSend(struct vnt_private *pDevice, u8 *pbySkbData, u32 uDataLen,
2596 u32 uNodeIndex)
Forest Bond92b96792009-06-13 07:38:31 -04002597{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002598 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01002599 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002600 u32 BytesToWrite = 0, uHeaderLen = 0;
2601 u8 byPktType = PK_TYPE_11B;
Andres Moree269fc22013-02-12 20:36:29 -05002602 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002603 SKeyItem STempKey;
2604 PSKeyItem pTransmitKey = NULL;
2605 u8 *pbyBSSID;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002606 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002607 u8 byPktTyp;
2608 int fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00002609 u32 status;
2610 u16 wKeepRate = pDevice->wCurrentRate;
Forest Bond92b96792009-06-13 07:38:31 -04002611
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01002612 pContext = (struct vnt_usb_send_context *)s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04002613
2614 if (NULL == pContext) {
Andres Moree269fc22013-02-12 20:36:29 -05002615 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002616 }
2617
Andres Moreceb8c5d2013-03-18 20:33:49 -05002618 memcpy(pDevice->sTxEthHeader.h_dest, (u8 *)pbySkbData, ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04002619
Andres More4e9b5e22013-02-12 20:36:30 -05002620 if (pDevice->bEncryptionEnable == true) {
2621 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002622 // get group key
2623 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05002624 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04002625 pTransmitKey = NULL;
2626 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"KEY is NULL. [%d]\n", pMgmt->eCurrMode);
2627 } else {
2628 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
2629 }
2630 }
2631
2632 if (pDevice->bEnableHostWEP) {
Roel Kluinee93e192009-10-16 20:17:57 +02002633 if (uNodeIndex < MAX_NODE_NUM + 1) {
Forest Bond92b96792009-06-13 07:38:31 -04002634 pTransmitKey = &STempKey;
2635 pTransmitKey->byCipherSuite = pMgmt->sNodeDBTable[uNodeIndex].byCipherSuite;
2636 pTransmitKey->dwKeyIndex = pMgmt->sNodeDBTable[uNodeIndex].dwKeyIndex;
2637 pTransmitKey->uKeyLength = pMgmt->sNodeDBTable[uNodeIndex].uWepKeyLength;
2638 pTransmitKey->dwTSC47_16 = pMgmt->sNodeDBTable[uNodeIndex].dwTSC47_16;
2639 pTransmitKey->wTSC15_0 = pMgmt->sNodeDBTable[uNodeIndex].wTSC15_0;
2640 memcpy(pTransmitKey->abyKey,
2641 &pMgmt->sNodeDBTable[uNodeIndex].abyWepKey[0],
2642 pTransmitKey->uKeyLength
2643 );
2644 }
2645 }
2646
2647 if ( bNeedEncryption && (pTransmitKey == NULL) ) {
Andres Moree269fc22013-02-12 20:36:29 -05002648 pContext->bBoolInUse = false;
2649 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002650 }
2651
Andres Moreb902fbf2013-02-25 20:32:51 -05002652 byPktTyp = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04002653
2654 if (pDevice->bFixRate) {
2655 if (pDevice->byBBType == BB_TYPE_11B) {
2656 if (pDevice->uConnectionRate >= RATE_11M) {
2657 pDevice->wCurrentRate = RATE_11M;
2658 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05002659 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002660 }
2661 } else {
2662 if ((pDevice->byBBType == BB_TYPE_11A) &&
2663 (pDevice->uConnectionRate <= RATE_6M)) {
2664 pDevice->wCurrentRate = RATE_6M;
2665 } else {
2666 if (pDevice->uConnectionRate >= RATE_54M)
2667 pDevice->wCurrentRate = RATE_54M;
2668 else
Andres More3eaca0d2013-02-25 20:32:52 -05002669 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04002670 }
2671 }
2672 }
2673 else {
2674 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
2675 }
2676
Forest Bond92b96792009-06-13 07:38:31 -04002677 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03002678 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04002679 }
2680
2681 if (pDevice->wCurrentRate <= RATE_11M)
2682 byPktType = PK_TYPE_11B;
2683
Andres Moreabad19d2010-07-12 16:28:32 -03002684 BytesToWrite = uDataLen + ETH_FCS_LEN;
2685
Forest Bond92b96792009-06-13 07:38:31 -04002686 // Convert the packet to an usb frame and copy into our buffer
2687 // and send the irp.
2688
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002689 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->Data[0];
2690
Forest Bond92b96792009-06-13 07:38:31 -04002691 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002692 pTX_Buffer, bNeedEncryption,
Forest Bond92b96792009-06-13 07:38:31 -04002693 uDataLen, TYPE_AC0DMA, &pDevice->sTxEthHeader,
2694 pbySkbData, pTransmitKey, uNodeIndex,
2695 pDevice->wCurrentRate,
2696 &uHeaderLen, &BytesToWrite
2697 );
2698
Andres Moree269fc22013-02-12 20:36:29 -05002699 if (fConvertedPacket == false) {
2700 pContext->bBoolInUse = false;
2701 return false;
Forest Bond92b96792009-06-13 07:38:31 -04002702 }
2703
Andres Moreb902fbf2013-02-25 20:32:51 -05002704 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Andres More3eaca0d2013-02-25 20:32:52 -05002705 pTX_Buffer->wTxByteCount = (u16)BytesToWrite;
Forest Bond92b96792009-06-13 07:38:31 -04002706
2707 pContext->pPacket = NULL;
2708 pContext->Type = CONTEXT_DATA_PACKET;
Andres More3eaca0d2013-02-25 20:32:52 -05002709 pContext->uBufLen = (u16)BytesToWrite + 4 ; //USB header
Forest Bond92b96792009-06-13 07:38:31 -04002710
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002711 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
2712 &pContext->sEthHeader.h_dest[0],
2713 (u16)(BytesToWrite - uHeaderLen),
2714 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002715
2716 status = PIPEnsSendBulkOut(pDevice,pContext);
2717
Andres More4e9b5e22013-02-12 20:36:30 -05002718 return true;
Forest Bond92b96792009-06-13 07:38:31 -04002719}
2720