blob: 050967259b2eb5aff647097092256cbcabe31fc9 [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 "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040060#include "datarate.h"
Forest Bond92b96792009-06-13 07:38:31 -040061#include "usbpipe.h"
Forest Bond92b96792009-06-13 07:38:31 -040062#include "iocmd.h"
Jim Lieb9d26d602009-08-12 14:54:08 -070063
Mariano Reingart4a499de2010-10-29 19:15:26 -030064static int msglevel = MSG_LEVEL_INFO;
Forest Bond92b96792009-06-13 07:38:31 -040065
Valentina Manea3b138852013-11-04 10:44:02 +020066static const u16 wTimeStampOff[2][MAX_RATE] = {
Forest Bond92b96792009-06-13 07:38:31 -040067 {384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23}, // Long Preamble
68 {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23}, // Short Preamble
69 };
70
Valentina Manea3b138852013-11-04 10:44:02 +020071static const u16 wFB_Opt0[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040072 {RATE_12M, RATE_18M, RATE_24M, RATE_36M, RATE_48M}, // fallback_rate0
73 {RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, // fallback_rate1
74 };
Valentina Manea3b138852013-11-04 10:44:02 +020075static const u16 wFB_Opt1[2][5] = {
Forest Bond92b96792009-06-13 07:38:31 -040076 {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, // fallback_rate0
77 {RATE_6M , RATE_6M, RATE_12M, RATE_12M, RATE_18M}, // fallback_rate1
78 };
79
Forest Bond92b96792009-06-13 07:38:31 -040080#define RTSDUR_BB 0
81#define RTSDUR_BA 1
82#define RTSDUR_AA 2
83#define CTSDUR_BA 3
84#define RTSDUR_BA_F0 4
85#define RTSDUR_AA_F0 5
86#define RTSDUR_BA_F1 6
87#define RTSDUR_AA_F1 7
88#define CTSDUR_BA_F0 8
89#define CTSDUR_BA_F1 9
90#define DATADUR_B 10
91#define DATADUR_A 11
92#define DATADUR_A_F0 12
93#define DATADUR_A_F1 13
94
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000095static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
96 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -040097
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000098static struct vnt_usb_send_context *s_vGetFreeContext(struct vnt_private *);
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000099
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100100static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100101 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100102 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100103 int bNeedACK, struct ethhdr *psEthHeader, bool need_rts);
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000104
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000105static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500106 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100107 int bNeedEncrypt, u16 wFragType, u32 uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -0400108
Malcolm Priestley3ba09382013-10-15 21:41:38 +0100109static void s_vFillTxKey(struct vnt_private *pDevice,
110 struct vnt_tx_fifo_head *fifo_head, u8 *pbyIVHead,
111 PSKeyItem pTransmitKey, u8 *pbyHdrBuf, u16 wPayloadLen,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100112 struct vnt_mic_hdr *mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -0400113
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000114static void s_vSWencryption(struct vnt_private *pDevice,
115 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400116
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000117static unsigned int s_uGetTxRsvTime(struct vnt_private *pDevice, u8 byPktType,
118 u32 cbFrameLength, u16 wRate, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400119
Malcolm Priestley20338012014-03-18 19:25:08 +0000120static __le16 s_uGetRTSCTSRsvTime(struct vnt_private *priv,
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000121 u8 rsv_type, u8 pkt_type, u32 frame_lenght, u16 current_rate);
Forest Bond92b96792009-06-13 07:38:31 -0400122
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100123static u16 s_vFillCTSHead(struct vnt_private *pDevice,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100124 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
125 int bNeedAck, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400126
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100127static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100128 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500129 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400130
Malcolm Priestley5abe3d62014-03-18 19:25:06 +0000131static __le16 s_uGetDataDuration(struct vnt_private *pDevice,
Malcolm Priestley3ed210e2013-08-07 21:28:45 +0100132 u8 byPktType, int bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400133
Malcolm Priestley7f591a12014-03-18 19:25:05 +0000134static __le16 s_uGetRTSCTSDuration(struct vnt_private *pDevice,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000135 u8 byDurType, u32 cbFrameLength, u8 byPktType, u16 wRate,
136 int bNeedAck, u8 byFBOption);
Forest Bond92b96792009-06-13 07:38:31 -0400137
Malcolm Priestleyaceaf012013-11-26 19:06:35 +0000138static struct vnt_usb_send_context
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +0000139 *s_vGetFreeContext(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -0400140{
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +0000141 struct vnt_usb_send_context *context = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000142 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400143
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +0000144 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"GetFreeContext()\n");
Forest Bond92b96792009-06-13 07:38:31 -0400145
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +0000146 for (ii = 0; ii < priv->cbTD; ii++) {
147 if (!priv->apTD[ii])
148 return NULL;
149
150 context = priv->apTD[ii];
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100151 if (context->in_use == false) {
152 context->in_use = true;
153 memset(context->data, 0,
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +0000154 MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
155 return context;
156 }
157 }
158
159 if (ii == priv->cbTD)
160 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Free Tx Context\n");
Malcolm Priestleyaceaf012013-11-26 19:06:35 +0000161
Malcolm Priestley5c851382013-11-26 19:12:38 +0000162 return NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400163}
164
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000165static void s_vSaveTxPktInfo(struct vnt_private *pDevice, u8 byPktNum,
166 u8 *pbyDestAddr, u16 wPktLength, u16 wFIFOCtl)
Forest Bond92b96792009-06-13 07:38:31 -0400167{
Malcolm Priestleyae27b142013-12-09 22:23:19 +0000168 struct net_device_stats *stats = &pDevice->stats;
Malcolm Priestley51934e72013-12-09 22:30:14 +0000169 struct vnt_tx_pkt_info *pkt_info = pDevice->pkt_info;
Forest Bond92b96792009-06-13 07:38:31 -0400170
Malcolm Priestley51934e72013-12-09 22:30:14 +0000171 pkt_info[byPktNum].fifo_ctl = wFIFOCtl;
172 memcpy(pkt_info[byPktNum].dest_addr, pbyDestAddr, ETH_ALEN);
Malcolm Priestleyae27b142013-12-09 22:23:19 +0000173
174 stats->tx_bytes += wPktLength;
Forest Bond92b96792009-06-13 07:38:31 -0400175}
176
Malcolm Priestley3ba09382013-10-15 21:41:38 +0100177static void s_vFillTxKey(struct vnt_private *pDevice,
178 struct vnt_tx_fifo_head *fifo_head, u8 *pbyIVHead,
179 PSKeyItem pTransmitKey, u8 *pbyHdrBuf, u16 wPayloadLen,
180 struct vnt_mic_hdr *mic_hdr)
Forest Bond92b96792009-06-13 07:38:31 -0400181{
Malcolm Priestley3ba09382013-10-15 21:41:38 +0100182 u8 *pbyBuf = (u8 *)&fifo_head->adwTxKey[0];
Malcolm Priestleyfb453db2014-03-22 09:01:24 +0000183 __le32 *pdwIV = (__le32 *)pbyIVHead;
Malcolm Priestley2fbb2302014-03-22 09:01:25 +0000184 __le32 *pdwExtIV = (__le32 *)((u8 *)pbyIVHead + 4);
Andres More1cac4a42013-03-18 20:33:50 -0500185 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyHdrBuf;
Malcolm Priestleyfbfaccf2014-03-22 09:01:23 +0000186 __le32 rev_iv_counter;
Forest Bond92b96792009-06-13 07:38:31 -0400187
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100188 /* Fill TXKEY */
189 if (pTransmitKey == NULL)
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100190 return;
Forest Bond92b96792009-06-13 07:38:31 -0400191
Malcolm Priestleyfbfaccf2014-03-22 09:01:23 +0000192 rev_iv_counter = cpu_to_le32(pDevice->dwIVCounter);
Malcolm Priestleyfb453db2014-03-22 09:01:24 +0000193 *pdwIV = cpu_to_le32(pDevice->dwIVCounter);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100194 pDevice->byKeyIndex = pTransmitKey->dwKeyIndex & 0xf;
Forest Bond92b96792009-06-13 07:38:31 -0400195
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100196 switch (pTransmitKey->byCipherSuite) {
197 case KEY_CTL_WEP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100198 if (pTransmitKey->uKeyLength == WLAN_WEP232_KEYLEN) {
Malcolm Priestleyfbfaccf2014-03-22 09:01:23 +0000199 memcpy(pDevice->abyPRNG, (u8 *)&rev_iv_counter, 3);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100200 memcpy(pDevice->abyPRNG + 3, pTransmitKey->abyKey,
201 pTransmitKey->uKeyLength);
202 } else {
Malcolm Priestleyfbfaccf2014-03-22 09:01:23 +0000203 memcpy(pbyBuf, (u8 *)&rev_iv_counter, 3);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100204 memcpy(pbyBuf + 3, pTransmitKey->abyKey,
205 pTransmitKey->uKeyLength);
206 if (pTransmitKey->uKeyLength == WLAN_WEP40_KEYLEN) {
Malcolm Priestleyfbfaccf2014-03-22 09:01:23 +0000207 memcpy(pbyBuf+8, (u8 *)&rev_iv_counter, 3);
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100208 memcpy(pbyBuf+11, pTransmitKey->abyKey,
209 pTransmitKey->uKeyLength);
210 }
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100211
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100212 memcpy(pDevice->abyPRNG, pbyBuf, 16);
213 }
214 /* Append IV after Mac Header */
Malcolm Priestleyfb453db2014-03-22 09:01:24 +0000215 *pdwIV &= cpu_to_le32(WEP_IV_MASK);
216 *pdwIV |= cpu_to_le32((u32)pDevice->byKeyIndex << 30);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100217
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100218 pDevice->dwIVCounter++;
219 if (pDevice->dwIVCounter > WEP_IV_MASK)
220 pDevice->dwIVCounter = 0;
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100221
222 break;
223 case KEY_CTL_TKIP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100224 pTransmitKey->wTSC15_0++;
225 if (pTransmitKey->wTSC15_0 == 0)
226 pTransmitKey->dwTSC47_16++;
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100227
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100228 TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
229 pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16,
230 pDevice->abyPRNG);
231 memcpy(pbyBuf, pDevice->abyPRNG, 16);
232
233 /* Make IV */
234 memcpy(pdwIV, pDevice->abyPRNG, 3);
235
236 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
237 0xc0) | 0x20);
238 /* Append IV&ExtIV after Mac Header */
239 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
240
241 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
242 "vFillTxKey()---- pdwExtIV: %x\n", *pdwExtIV);
243
Malcolm Priestleyf6804f32013-08-27 12:32:01 +0100244 break;
245 case KEY_CTL_CCMP:
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100246 pTransmitKey->wTSC15_0++;
247 if (pTransmitKey->wTSC15_0 == 0)
248 pTransmitKey->dwTSC47_16++;
249
250 memcpy(pbyBuf, pTransmitKey->abyKey, 16);
251
252 /* Make IV */
253 *pdwIV = 0;
254 *(pbyIVHead+3) = (u8)(((pDevice->byKeyIndex << 6) &
255 0xc0) | 0x20);
256
Malcolm Priestleyfb453db2014-03-22 09:01:24 +0000257 *pdwIV |= cpu_to_le32((u32)(pTransmitKey->wTSC15_0));
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100258
259 /* Append IV&ExtIV after Mac Header */
260 *pdwExtIV = cpu_to_le32(pTransmitKey->dwTSC47_16);
261
262 if (!mic_hdr)
263 return;
264
265 /* MICHDR0 */
266 mic_hdr->id = 0x59;
267 mic_hdr->payload_len = cpu_to_be16(wPayloadLen);
268 memcpy(mic_hdr->mic_addr2, pMACHeader->addr2, ETH_ALEN);
269
270 mic_hdr->tsc_47_16 = cpu_to_be32(pTransmitKey->dwTSC47_16);
271 mic_hdr->tsc_15_0 = cpu_to_be16(pTransmitKey->wTSC15_0);
272
273 /* MICHDR1 */
Malcolm Priestley078d0cf2013-11-25 22:14:16 +0000274 if (ieee80211_has_a4(pMACHeader->frame_control))
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100275 mic_hdr->hlen = cpu_to_be16(28);
276 else
277 mic_hdr->hlen = cpu_to_be16(22);
278
279 memcpy(mic_hdr->addr1, pMACHeader->addr1, ETH_ALEN);
280 memcpy(mic_hdr->addr2, pMACHeader->addr2, ETH_ALEN);
281
282 /* MICHDR2 */
283 memcpy(mic_hdr->addr3, pMACHeader->addr3, ETH_ALEN);
Malcolm Priestley5d4fe752014-03-22 09:01:26 +0000284 mic_hdr->frame_control = cpu_to_le16(
285 le16_to_cpu(pMACHeader->frame_control) & 0xc78f);
286 mic_hdr->seq_ctrl = cpu_to_le16(
287 le16_to_cpu(pMACHeader->seq_ctrl) & 0xf);
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +0100288
Malcolm Priestley078d0cf2013-11-25 22:14:16 +0000289 if (ieee80211_has_a4(pMACHeader->frame_control))
Malcolm Priestley95bfb1a2013-08-27 12:29:10 +0100290 memcpy(mic_hdr->addr4, pMACHeader->addr4, ETH_ALEN);
291 }
Forest Bond92b96792009-06-13 07:38:31 -0400292}
293
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000294static void s_vSWencryption(struct vnt_private *pDevice,
295 PSKeyItem pTransmitKey, u8 *pbyPayloadHead, u16 wPayloadSize)
Forest Bond92b96792009-06-13 07:38:31 -0400296{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000297 u32 cbICVlen = 4;
298 u32 dwICV = 0xffffffff;
299 u32 *pdwICV;
Forest Bond92b96792009-06-13 07:38:31 -0400300
301 if (pTransmitKey == NULL)
302 return;
303
304 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
305 //=======================================================================
306 // Append ICV after payload
Malcolm Priestley929cb312014-05-21 21:09:42 +0100307 dwICV = ether_crc_le(wPayloadSize, pbyPayloadHead);
Andres More52a7e642013-02-25 20:32:53 -0500308 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400309 // finally, we must invert dwCRC to get the correct answer
310 *pdwICV = cpu_to_le32(~dwICV);
311 // RC4 encryption
312 rc4_init(&pDevice->SBox, pDevice->abyPRNG, pTransmitKey->uKeyLength + 3);
313 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
314 //=======================================================================
315 } else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
316 //=======================================================================
317 //Append ICV after payload
Malcolm Priestley929cb312014-05-21 21:09:42 +0100318 dwICV = ether_crc_le(wPayloadSize, pbyPayloadHead);
Andres More52a7e642013-02-25 20:32:53 -0500319 pdwICV = (u32 *)(pbyPayloadHead + wPayloadSize);
Forest Bond92b96792009-06-13 07:38:31 -0400320 // finally, we must invert dwCRC to get the correct answer
321 *pdwICV = cpu_to_le32(~dwICV);
322 // RC4 encryption
323 rc4_init(&pDevice->SBox, pDevice->abyPRNG, TKIP_KEY_LEN);
324 rc4_encrypt(&pDevice->SBox, pbyPayloadHead, pbyPayloadHead, wPayloadSize+cbICVlen);
325 //=======================================================================
326 }
327}
328
Malcolm Priestleydab085b2014-03-18 19:25:03 +0000329static __le16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100330{
331 return cpu_to_le16(wTimeStampOff[priv->byPreambleType % 2]
332 [rate % MAX_RATE]);
333}
334
Forest Bond92b96792009-06-13 07:38:31 -0400335/*byPktType : PK_TYPE_11A 0
336 PK_TYPE_11B 1
337 PK_TYPE_11GB 2
338 PK_TYPE_11GA 3
339*/
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000340static u32 s_uGetTxRsvTime(struct vnt_private *priv, u8 pkt_type,
341 u32 frame_length, u16 rate, int need_ack)
Forest Bond92b96792009-06-13 07:38:31 -0400342{
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000343 u32 data_time, ack_time;
Forest Bond92b96792009-06-13 07:38:31 -0400344
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000345 data_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
346 frame_length, rate);
Forest Bond92b96792009-06-13 07:38:31 -0400347
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000348 if (pkt_type == PK_TYPE_11B)
349 ack_time = BBuGetFrameTime(priv->byPreambleType, pkt_type, 14,
350 (u16)priv->byTopCCKBasicRate);
351 else
352 ack_time = BBuGetFrameTime(priv->byPreambleType, pkt_type, 14,
353 (u16)priv->byTopOFDMBasicRate);
354
355 if (need_ack)
356 return data_time + priv->uSIFS + ack_time;
357
358 return data_time;
Forest Bond92b96792009-06-13 07:38:31 -0400359}
360
Malcolm Priestley2075f652014-03-18 19:25:07 +0000361static __le16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100362 u32 frame_length, u16 rate, int need_ack)
363{
364 return cpu_to_le16((u16)s_uGetTxRsvTime(priv, pkt_type,
365 frame_length, rate, need_ack));
366}
367
Forest Bond92b96792009-06-13 07:38:31 -0400368//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestley20338012014-03-18 19:25:08 +0000369static __le16 s_uGetRTSCTSRsvTime(struct vnt_private *priv,
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000370 u8 rsv_type, u8 pkt_type, u32 frame_lenght, u16 current_rate)
Forest Bond92b96792009-06-13 07:38:31 -0400371{
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000372 u32 rrv_time, rts_time, cts_time, ack_time, data_time;
Forest Bond92b96792009-06-13 07:38:31 -0400373
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000374 rrv_time = rts_time = cts_time = ack_time = data_time = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400375
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000376 data_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
377 frame_lenght, current_rate);
Forest Bond92b96792009-06-13 07:38:31 -0400378
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000379 if (rsv_type == 0) {
380 rts_time = BBuGetFrameTime(priv->byPreambleType,
381 pkt_type, 20, priv->byTopCCKBasicRate);
382 cts_time = ack_time = BBuGetFrameTime(priv->byPreambleType,
383 pkt_type, 14, priv->byTopCCKBasicRate);
384 } else if (rsv_type == 1) {
385 rts_time = BBuGetFrameTime(priv->byPreambleType,
386 pkt_type, 20, priv->byTopCCKBasicRate);
387 cts_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
388 14, priv->byTopCCKBasicRate);
389 ack_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
390 14, priv->byTopOFDMBasicRate);
391 } else if (rsv_type == 2) {
392 rts_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
393 20, priv->byTopOFDMBasicRate);
394 cts_time = ack_time = BBuGetFrameTime(priv->byPreambleType,
395 pkt_type, 14, priv->byTopOFDMBasicRate);
396 } else if (rsv_type == 3) {
397 cts_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
398 14, priv->byTopCCKBasicRate);
399 ack_time = BBuGetFrameTime(priv->byPreambleType, pkt_type,
400 14, priv->byTopOFDMBasicRate);
401
402 rrv_time = cts_time + ack_time + data_time + 2 * priv->uSIFS;
403
Malcolm Priestley20338012014-03-18 19:25:08 +0000404 return cpu_to_le16((u16)rrv_time);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000405 }
406
407 rrv_time = rts_time + cts_time + ack_time + data_time + 3 * priv->uSIFS;
408
409 return cpu_to_le16((u16)rrv_time);
Forest Bond92b96792009-06-13 07:38:31 -0400410}
411
412//byFreqType 0: 5GHz, 1:2.4Ghz
Malcolm Priestley5abe3d62014-03-18 19:25:06 +0000413static __le16 s_uGetDataDuration(struct vnt_private *pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100414 u8 byPktType, int bNeedAck)
Forest Bond92b96792009-06-13 07:38:31 -0400415{
Malcolm Priestley0005cb02013-08-07 21:26:12 +0100416 u32 uAckTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400417
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100418 if (bNeedAck) {
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +0100419 if (byPktType == PK_TYPE_11B)
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100420 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
421 byPktType, 14, pDevice->byTopCCKBasicRate);
422 else
423 uAckTime = BBuGetFrameTime(pDevice->byPreambleType,
424 byPktType, 14, pDevice->byTopOFDMBasicRate);
Malcolm Priestleyd5005952013-08-21 21:58:37 +0100425 return cpu_to_le16((u16)(pDevice->uSIFS + uAckTime));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100426 }
Forest Bond92b96792009-06-13 07:38:31 -0400427
Forest Bond92b96792009-06-13 07:38:31 -0400428 return 0;
429}
430
Forest Bond92b96792009-06-13 07:38:31 -0400431//byFreqType: 0=>5GHZ 1=>2.4GHZ
Malcolm Priestley7f591a12014-03-18 19:25:05 +0000432static __le16 s_uGetRTSCTSDuration(struct vnt_private *pDevice, u8 byDurType,
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000433 u32 cbFrameLength, u8 byPktType, u16 wRate, int bNeedAck,
434 u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400435{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000436 u32 uCTSTime = 0, uDurTime = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400437
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100438 switch (byDurType) {
439 case RTSDUR_BB:
440 case RTSDUR_BA:
441 case RTSDUR_BA_F0:
442 case RTSDUR_BA_F1:
443 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType,
444 14, pDevice->byTopCCKBasicRate);
445 uDurTime = uCTSTime + 2 * pDevice->uSIFS +
446 s_uGetTxRsvTime(pDevice, byPktType,
447 cbFrameLength, wRate, bNeedAck);
448 break;
Forest Bond92b96792009-06-13 07:38:31 -0400449
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100450 case RTSDUR_AA:
451 case RTSDUR_AA_F0:
452 case RTSDUR_AA_F1:
453 uCTSTime = BBuGetFrameTime(pDevice->byPreambleType, byPktType,
454 14, pDevice->byTopOFDMBasicRate);
455 uDurTime = uCTSTime + 2 * pDevice->uSIFS +
456 s_uGetTxRsvTime(pDevice, byPktType,
457 cbFrameLength, wRate, bNeedAck);
458 break;
Forest Bond92b96792009-06-13 07:38:31 -0400459
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100460 case CTSDUR_BA:
461 case CTSDUR_BA_F0:
462 case CTSDUR_BA_F1:
463 uDurTime = pDevice->uSIFS + s_uGetTxRsvTime(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100464 byPktType, cbFrameLength, wRate, bNeedAck);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100465 break;
Forest Bond92b96792009-06-13 07:38:31 -0400466
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100467 default:
468 break;
469 }
Forest Bond92b96792009-06-13 07:38:31 -0400470
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100471 return cpu_to_le16((u16)uDurTime);
Forest Bond92b96792009-06-13 07:38:31 -0400472}
473
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100474static u16 vnt_rxtx_datahead_g(struct vnt_private *priv, u8 pkt_type, u16 rate,
475 struct vnt_tx_datahead_g *buf, u32 frame_len, int need_ack)
476{
477 /* Get SignalField,ServiceField,Length */
478 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
479 BBvCalculateParameter(priv, frame_len, priv->byTopCCKBasicRate,
480 PK_TYPE_11B, &buf->b);
481
482 /* Get Duration and TimeStamp */
Malcolm Priestley4e011172014-03-18 19:24:55 +0000483 buf->duration_a = s_uGetDataDuration(priv, pkt_type, need_ack);
484 buf->duration_b = s_uGetDataDuration(priv, PK_TYPE_11B, need_ack);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100485
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000486 buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
487 buf->time_stamp_off_b = vnt_time_stamp_off(priv,
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100488 priv->byTopCCKBasicRate);
489
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000490 return le16_to_cpu(buf->duration_a);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100491}
492
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100493static u16 vnt_rxtx_datahead_g_fb(struct vnt_private *priv, u8 pkt_type,
494 u16 rate, struct vnt_tx_datahead_g_fb *buf,
495 u32 frame_len, int need_ack)
496{
497 /* Get SignalField,ServiceField,Length */
498 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
499
500 BBvCalculateParameter(priv, frame_len, priv->byTopCCKBasicRate,
501 PK_TYPE_11B, &buf->b);
502
503 /* Get Duration and TimeStamp */
Malcolm Priestley4e011172014-03-18 19:24:55 +0000504 buf->duration_a = s_uGetDataDuration(priv, pkt_type, need_ack);
505 buf->duration_b = s_uGetDataDuration(priv, PK_TYPE_11B, need_ack);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100506
Malcolm Priestley4e011172014-03-18 19:24:55 +0000507 buf->duration_a_f0 = s_uGetDataDuration(priv, pkt_type, need_ack);
508 buf->duration_a_f1 = s_uGetDataDuration(priv, pkt_type, need_ack);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100509
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000510 buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
511 buf->time_stamp_off_b = vnt_time_stamp_off(priv,
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100512 priv->byTopCCKBasicRate);
513
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000514 return le16_to_cpu(buf->duration_a);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100515}
516
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100517static u16 vnt_rxtx_datahead_a_fb(struct vnt_private *priv, u8 pkt_type,
518 u16 rate, struct vnt_tx_datahead_a_fb *buf,
519 u32 frame_len, int need_ack)
520{
521 /* Get SignalField,ServiceField,Length */
522 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->a);
523 /* Get Duration and TimeStampOff */
Malcolm Priestley4e011172014-03-18 19:24:55 +0000524 buf->duration = s_uGetDataDuration(priv, pkt_type, need_ack);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100525
Malcolm Priestley4e011172014-03-18 19:24:55 +0000526 buf->duration_f0 = s_uGetDataDuration(priv, pkt_type, need_ack);
527 buf->duration_f1 = s_uGetDataDuration(priv, pkt_type, need_ack);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100528
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000529 buf->time_stamp_off = vnt_time_stamp_off(priv, rate);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100530
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000531 return le16_to_cpu(buf->duration);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100532}
533
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100534static u16 vnt_rxtx_datahead_ab(struct vnt_private *priv, u8 pkt_type,
535 u16 rate, struct vnt_tx_datahead_ab *buf,
536 u32 frame_len, int need_ack)
537{
538 /* Get SignalField,ServiceField,Length */
539 BBvCalculateParameter(priv, frame_len, rate, pkt_type, &buf->ab);
540 /* Get Duration and TimeStampOff */
Malcolm Priestley4e011172014-03-18 19:24:55 +0000541 buf->duration = s_uGetDataDuration(priv, pkt_type, need_ack);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100542
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000543 buf->time_stamp_off = vnt_time_stamp_off(priv, rate);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100544
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000545 return le16_to_cpu(buf->duration);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100546}
547
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100548static int vnt_fill_ieee80211_rts(struct vnt_private *priv,
549 struct ieee80211_rts *rts, struct ethhdr *eth_hdr,
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000550 __le16 duration)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100551{
552 rts->duration = duration;
Malcolm Priestleyf4554d32014-03-22 09:01:31 +0000553 rts->frame_control =
554 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100555
Malcolm Priestleya0ad2772014-02-15 21:56:20 +0000556 if (priv->op_mode == NL80211_IFTYPE_ADHOC ||
557 priv->op_mode == NL80211_IFTYPE_AP)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100558 memcpy(rts->ra, eth_hdr->h_dest, ETH_ALEN);
559 else
560 memcpy(rts->ra, priv->abyBSSID, ETH_ALEN);
561
Malcolm Priestleya0ad2772014-02-15 21:56:20 +0000562 if (priv->op_mode == NL80211_IFTYPE_AP)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100563 memcpy(rts->ta, priv->abyBSSID, ETH_ALEN);
564 else
565 memcpy(rts->ta, eth_hdr->h_source, ETH_ALEN);
566
567 return 0;
568}
569
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100570static u16 vnt_rxtx_rts_g_head(struct vnt_private *priv,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100571 struct vnt_rts_g *buf, struct ethhdr *eth_hdr,
572 u8 pkt_type, u32 frame_len, int need_ack,
573 u16 current_rate, u8 fb_option)
574{
575 u16 rts_frame_len = 20;
576
577 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
578 PK_TYPE_11B, &buf->b);
579 BBvCalculateParameter(priv, rts_frame_len,
580 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
581
Malcolm Priestley4e011172014-03-18 19:24:55 +0000582 buf->duration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100583 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
Malcolm Priestley4e011172014-03-18 19:24:55 +0000584 buf->duration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100585 pkt_type, current_rate, need_ack, fb_option);
Malcolm Priestley4e011172014-03-18 19:24:55 +0000586 buf->duration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100587 pkt_type, current_rate, need_ack, fb_option);
588
Malcolm Priestley4e011172014-03-18 19:24:55 +0000589 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->duration_aa);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100590
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100591 return vnt_rxtx_datahead_g(priv, pkt_type, current_rate,
592 &buf->data_head, frame_len, need_ack);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100593}
594
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100595static u16 vnt_rxtx_rts_g_fb_head(struct vnt_private *priv,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100596 struct vnt_rts_g_fb *buf, struct ethhdr *eth_hdr,
597 u8 pkt_type, u32 frame_len, int need_ack,
598 u16 current_rate, u8 fb_option)
599{
600 u16 rts_frame_len = 20;
601
602 BBvCalculateParameter(priv, rts_frame_len, priv->byTopCCKBasicRate,
603 PK_TYPE_11B, &buf->b);
604 BBvCalculateParameter(priv, rts_frame_len,
605 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
606
607
Malcolm Priestley4e011172014-03-18 19:24:55 +0000608 buf->duration_bb = s_uGetRTSCTSDuration(priv, RTSDUR_BB, frame_len,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100609 PK_TYPE_11B, priv->byTopCCKBasicRate, need_ack, fb_option);
Malcolm Priestley4e011172014-03-18 19:24:55 +0000610 buf->duration_aa = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100611 pkt_type, current_rate, need_ack, fb_option);
Malcolm Priestley4e011172014-03-18 19:24:55 +0000612 buf->duration_ba = s_uGetRTSCTSDuration(priv, RTSDUR_BA, frame_len,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100613 pkt_type, current_rate, need_ack, fb_option);
614
615
Malcolm Priestleyfadc3bd2014-03-18 19:24:56 +0000616 buf->rts_duration_ba_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100617 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestleyfadc3bd2014-03-18 19:24:56 +0000618 buf->rts_duration_aa_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100619 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestleyfadc3bd2014-03-18 19:24:56 +0000620 buf->rts_duration_ba_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_BA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100621 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestleyfadc3bd2014-03-18 19:24:56 +0000622 buf->rts_duration_aa_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100623 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100624
Malcolm Priestley4e011172014-03-18 19:24:55 +0000625 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->duration_aa);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100626
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100627 return vnt_rxtx_datahead_g_fb(priv, pkt_type, current_rate,
628 &buf->data_head, frame_len, need_ack);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100629}
630
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100631static u16 vnt_rxtx_rts_ab_head(struct vnt_private *priv,
Malcolm Priestley17126332013-08-26 11:09:38 +0100632 struct vnt_rts_ab *buf, struct ethhdr *eth_hdr,
633 u8 pkt_type, u32 frame_len, int need_ack,
634 u16 current_rate, u8 fb_option)
635{
636 u16 rts_frame_len = 20;
637
638 BBvCalculateParameter(priv, rts_frame_len,
639 priv->byTopOFDMBasicRate, pkt_type, &buf->ab);
640
Malcolm Priestley4e011172014-03-18 19:24:55 +0000641 buf->duration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
Malcolm Priestley17126332013-08-26 11:09:38 +0100642 pkt_type, current_rate, need_ack, fb_option);
643
Malcolm Priestley4e011172014-03-18 19:24:55 +0000644 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->duration);
Malcolm Priestley17126332013-08-26 11:09:38 +0100645
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100646 return vnt_rxtx_datahead_ab(priv, pkt_type, current_rate,
647 &buf->data_head, frame_len, need_ack);
Malcolm Priestley17126332013-08-26 11:09:38 +0100648}
649
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100650static u16 vnt_rxtx_rts_a_fb_head(struct vnt_private *priv,
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100651 struct vnt_rts_a_fb *buf, struct ethhdr *eth_hdr,
652 u8 pkt_type, u32 frame_len, int need_ack,
653 u16 current_rate, u8 fb_option)
654{
655 u16 rts_frame_len = 20;
656
657 BBvCalculateParameter(priv, rts_frame_len,
658 priv->byTopOFDMBasicRate, pkt_type, &buf->a);
659
Malcolm Priestley4e011172014-03-18 19:24:55 +0000660 buf->duration = s_uGetRTSCTSDuration(priv, RTSDUR_AA, frame_len,
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100661 pkt_type, current_rate, need_ack, fb_option);
662
Malcolm Priestleyfadc3bd2014-03-18 19:24:56 +0000663 buf->rts_duration_f0 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F0,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100664 frame_len, pkt_type, priv->tx_rate_fb0, need_ack, fb_option);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100665
Malcolm Priestleyfadc3bd2014-03-18 19:24:56 +0000666 buf->rts_duration_f1 = s_uGetRTSCTSDuration(priv, RTSDUR_AA_F1,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100667 frame_len, pkt_type, priv->tx_rate_fb1, need_ack, fb_option);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100668
Malcolm Priestley4e011172014-03-18 19:24:55 +0000669 vnt_fill_ieee80211_rts(priv, &buf->data, eth_hdr, buf->duration);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100670
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100671 return vnt_rxtx_datahead_a_fb(priv, pkt_type, current_rate,
672 &buf->data_head, frame_len, need_ack);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100673}
674
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100675static u16 s_vFillRTSHead(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100676 union vnt_tx_data_head *head, u32 cbFrameLength, int bNeedAck,
Andres Moreceb8c5d2013-03-18 20:33:49 -0500677 struct ethhdr *psEthHeader, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400678{
Forest Bond92b96792009-06-13 07:38:31 -0400679
Malcolm Priestley13fe62a2013-08-26 11:17:52 +0100680 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100681 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400682
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100683 /* Note: So far RTSHead doesn't appear in ATIM
684 * & Beacom DMA, so we don't need to take them
685 * into account.
686 * Otherwise, we need to modified codes for them.
687 */
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100688 switch (byPktType) {
689 case PK_TYPE_11GB:
690 case PK_TYPE_11GA:
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100691 if (byFBOption == AUTO_FB_NONE)
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100692 return vnt_rxtx_rts_g_head(pDevice, &head->rts_g,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100693 psEthHeader, byPktType, cbFrameLength,
694 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100695 else
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100696 return vnt_rxtx_rts_g_fb_head(pDevice, &head->rts_g_fb,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100697 psEthHeader, byPktType, cbFrameLength,
698 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100699 break;
700 case PK_TYPE_11A:
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100701 if (byFBOption) {
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100702 return vnt_rxtx_rts_a_fb_head(pDevice, &head->rts_a_fb,
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100703 psEthHeader, byPktType, cbFrameLength,
704 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley2b83ebd2013-08-27 09:58:21 +0100705 break;
706 }
Malcolm Priestley0bddd302013-08-27 09:56:50 +0100707 case PK_TYPE_11B:
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100708 return vnt_rxtx_rts_ab_head(pDevice, &head->rts_ab,
Malcolm Priestley17126332013-08-26 11:09:38 +0100709 psEthHeader, byPktType, cbFrameLength,
710 bNeedAck, wCurrentRate, byFBOption);
Malcolm Priestley9d5829b2013-08-26 11:21:11 +0100711 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100712
713 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400714}
715
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100716static u16 s_vFillCTSHead(struct vnt_private *pDevice,
Malcolm Priestley5fb8e412013-08-27 12:07:58 +0100717 u8 byPktType, union vnt_tx_data_head *head, u32 cbFrameLength,
718 int bNeedAck, u16 wCurrentRate, u8 byFBOption)
Forest Bond92b96792009-06-13 07:38:31 -0400719{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000720 u32 uCTSFrameLen = 14;
Forest Bond92b96792009-06-13 07:38:31 -0400721
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100722 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100723 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400724
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100725 if (byFBOption != AUTO_FB_NONE) {
726 /* Auto Fall back */
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100727 struct vnt_cts_fb *pBuf = &head->cts_g_fb;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100728 /* Get SignalField,ServiceField,Length */
729 BBvCalculateParameter(pDevice, uCTSFrameLen,
730 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestley4e011172014-03-18 19:24:55 +0000731 pBuf->duration_ba = s_uGetRTSCTSDuration(pDevice, CTSDUR_BA,
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100732 cbFrameLength, byPktType,
733 wCurrentRate, bNeedAck, byFBOption);
734 /* Get CTSDuration_ba_f0 */
Malcolm Priestley7fd57472014-03-18 19:24:59 +0000735 pBuf->cts_duration_ba_f0 = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100736 CTSDUR_BA_F0, cbFrameLength, byPktType,
737 pDevice->tx_rate_fb0, bNeedAck, byFBOption);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100738 /* Get CTSDuration_ba_f1 */
Malcolm Priestley7fd57472014-03-18 19:24:59 +0000739 pBuf->cts_duration_ba_f1 = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100740 CTSDUR_BA_F1, cbFrameLength, byPktType,
741 pDevice->tx_rate_fb1, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100742 /* Get CTS Frame body */
Malcolm Priestley4e011172014-03-18 19:24:55 +0000743 pBuf->data.duration = pBuf->duration_ba;
Malcolm Priestleyd9560ae2014-03-22 09:01:32 +0000744 pBuf->data.frame_control =
745 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
746
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100747 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100748
749 return vnt_rxtx_datahead_g_fb(pDevice, byPktType, wCurrentRate,
750 &pBuf->data_head, cbFrameLength, bNeedAck);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100751 } else {
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100752 struct vnt_cts *pBuf = &head->cts_g;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100753 /* Get SignalField,ServiceField,Length */
754 BBvCalculateParameter(pDevice, uCTSFrameLen,
755 pDevice->byTopCCKBasicRate, PK_TYPE_11B, &pBuf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100756 /* Get CTSDuration_ba */
Malcolm Priestley4e011172014-03-18 19:24:55 +0000757 pBuf->duration_ba = s_uGetRTSCTSDuration(pDevice,
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100758 CTSDUR_BA, cbFrameLength, byPktType,
759 wCurrentRate, bNeedAck, byFBOption);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100760 /*Get CTS Frame body*/
Malcolm Priestley4e011172014-03-18 19:24:55 +0000761 pBuf->data.duration = pBuf->duration_ba;
Malcolm Priestleyd9560ae2014-03-22 09:01:32 +0000762 pBuf->data.frame_control =
763 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
764
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100765 memcpy(pBuf->data.ra, pDevice->abyCurrentNetAddr, ETH_ALEN);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100766
767 return vnt_rxtx_datahead_g(pDevice, byPktType, wCurrentRate,
768 &pBuf->data_head, cbFrameLength, bNeedAck);
Forest Bond92b96792009-06-13 07:38:31 -0400769 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100770
771 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400772}
773
Forest Bond92b96792009-06-13 07:38:31 -0400774/*+
775 *
776 * Description:
777 * Generate FIFO control for MAC & Baseband controller
778 *
779 * Parameters:
780 * In:
781 * pDevice - Pointer to adpater
782 * pTxDataHead - Transmit Data Buffer
783 * pTxBufHead - pTxBufHead
784 * pvRrvTime - pvRrvTime
785 * pvRTS - RTS Buffer
786 * pCTS - CTS Buffer
787 * cbFrameSize - Transmit Data Length (Hdr+Payload+FCS)
788 * bNeedACK - If need ACK
Forest Bond92b96792009-06-13 07:38:31 -0400789 * Out:
790 * none
791 *
792 * Return Value: none
793 *
794-*/
Andres Morecc856e62010-05-17 21:34:01 -0300795
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100796static u16 s_vGenerateTxParameter(struct vnt_private *pDevice,
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100797 u8 byPktType, u16 wCurrentRate, struct vnt_tx_buffer *tx_buffer,
Malcolm Priestleyfa575602013-09-26 19:00:41 +0100798 struct vnt_mic_hdr **mic_hdr, u32 need_mic, u32 cbFrameSize,
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100799 int bNeedACK, struct ethhdr *psEthHeader, bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400800{
Malcolm Priestley8e344c82013-09-17 19:58:11 +0100801 struct vnt_tx_fifo_head *pFifoHead = &tx_buffer->fifo_head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100802 union vnt_tx_data_head *head = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000803 u16 wFifoCtl;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000804 u8 byFBOption = AUTO_FB_NONE;
Forest Bond92b96792009-06-13 07:38:31 -0400805
Malcolm Priestley03a9cf32014-03-22 09:01:30 +0000806 pFifoHead->current_rate = cpu_to_le16(wCurrentRate);
Malcolm Priestley92928f12013-10-07 20:14:01 +0100807 wFifoCtl = pFifoHead->wFIFOCtl;
Forest Bond92b96792009-06-13 07:38:31 -0400808
Malcolm Priestley92928f12013-10-07 20:14:01 +0100809 if (wFifoCtl & FIFOCTL_AUTO_FB_0)
810 byFBOption = AUTO_FB_0;
811 else if (wFifoCtl & FIFOCTL_AUTO_FB_1)
812 byFBOption = AUTO_FB_1;
Forest Bond92b96792009-06-13 07:38:31 -0400813
Malcolm Priestley92928f12013-10-07 20:14:01 +0100814 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
815 if (need_rts) {
816 struct vnt_rrv_time_rts *pBuf =
817 &tx_buffer->tx_head.tx_rts.rts;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100818
Malcolm Priestley85417bf2014-03-18 19:24:57 +0000819 pBuf->rts_rrv_time_aa = s_uGetRTSCTSRsvTime(pDevice, 2,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100820 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley85417bf2014-03-18 19:24:57 +0000821 pBuf->rts_rrv_time_ba = s_uGetRTSCTSRsvTime(pDevice, 1,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100822 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestley85417bf2014-03-18 19:24:57 +0000823 pBuf->rts_rrv_time_bb = s_uGetRTSCTSRsvTime(pDevice, 0,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100824 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100825
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000826 pBuf->rrv_time_a = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100827 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000828 pBuf->rrv_time_b = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100829 PK_TYPE_11B, cbFrameSize,
830 pDevice->byTopCCKBasicRate, bNeedACK);
831
832 if (need_mic) {
833 *mic_hdr = &tx_buffer->
834 tx_head.tx_rts.tx.mic.hdr;
835 head = &tx_buffer->tx_head.tx_rts.tx.mic.head;
836 } else {
837 head = &tx_buffer->tx_head.tx_rts.tx.head;
838 }
839
840 /* Fill RTS */
841 return s_vFillRTSHead(pDevice, byPktType, head,
842 cbFrameSize, bNeedACK, psEthHeader,
843 wCurrentRate, byFBOption);
844
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100845 } else {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100846 struct vnt_rrv_time_cts *pBuf = &tx_buffer->
847 tx_head.tx_cts.cts;
848
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000849 pBuf->rrv_time_a = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100850 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000851 pBuf->rrv_time_b = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100852 PK_TYPE_11B, cbFrameSize,
853 pDevice->byTopCCKBasicRate, bNeedACK);
854
Malcolm Priestley372108e2014-03-18 19:25:00 +0000855 pBuf->cts_rrv_time_ba = s_uGetRTSCTSRsvTime(pDevice, 3,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100856 byPktType, cbFrameSize, wCurrentRate);
857
858 if (need_mic) {
859 *mic_hdr = &tx_buffer->
860 tx_head.tx_cts.tx.mic.hdr;
861 head = &tx_buffer->tx_head.tx_cts.tx.mic.head;
862 } else {
863 head = &tx_buffer->tx_head.tx_cts.tx.head;
864 }
865
866 /* Fill CTS */
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100867 return s_vFillCTSHead(pDevice, byPktType,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100868 head, cbFrameSize, bNeedACK, wCurrentRate,
869 byFBOption);
870 }
871 } else if (byPktType == PK_TYPE_11A) {
872 if (need_mic) {
873 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
874 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
875 } else {
876 head = &tx_buffer->tx_head.tx_ab.tx.head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100877 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100878
Malcolm Priestley92928f12013-10-07 20:14:01 +0100879 if (need_rts) {
880 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
881 tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100882
Malcolm Priestley85417bf2014-03-18 19:24:57 +0000883 pBuf->rts_rrv_time = s_uGetRTSCTSRsvTime(pDevice, 2,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100884 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100885
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000886 pBuf->rrv_time = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100887 byPktType, cbFrameSize, wCurrentRate, bNeedACK);
888
889 /* Fill RTS */
890 return s_vFillRTSHead(pDevice, byPktType, head,
891 cbFrameSize, bNeedACK, psEthHeader,
892 wCurrentRate, byFBOption);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100893 } else {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100894 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
895 tx_head.tx_ab.ab;
896
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000897 pBuf->rrv_time = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100898 PK_TYPE_11A, cbFrameSize,
899 wCurrentRate, bNeedACK);
900
901 return vnt_rxtx_datahead_a_fb(pDevice, byPktType,
902 wCurrentRate, &head->data_head_a_fb,
903 cbFrameSize, bNeedACK);
904 }
905 } else if (byPktType == PK_TYPE_11B) {
906 if (need_mic) {
907 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
908 head = &tx_buffer->tx_head.tx_ab.tx.mic.head;
909 } else {
910 head = &tx_buffer->tx_head.tx_ab.tx.head;
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100911 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100912
Malcolm Priestley92928f12013-10-07 20:14:01 +0100913 if (need_rts) {
914 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
915 tx_head.tx_ab.ab;
Malcolm Priestleya90186e2013-10-01 15:58:54 +0100916
Malcolm Priestley85417bf2014-03-18 19:24:57 +0000917 pBuf->rts_rrv_time = s_uGetRTSCTSRsvTime(pDevice, 0,
Malcolm Priestleycfabe4b2013-08-22 21:03:40 +0100918 byPktType, cbFrameSize, wCurrentRate);
Malcolm Priestleyb9cc2fc2013-09-26 18:57:34 +0100919
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000920 pBuf->rrv_time = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100921 PK_TYPE_11B, cbFrameSize, wCurrentRate,
922 bNeedACK);
923
924 /* Fill RTS */
925 return s_vFillRTSHead(pDevice, byPktType, head,
926 cbFrameSize,
Malcolm Priestley351c7dc2013-08-27 12:02:54 +0100927 bNeedACK, psEthHeader, wCurrentRate, byFBOption);
Malcolm Priestley92928f12013-10-07 20:14:01 +0100928 } else {
929 struct vnt_rrv_time_ab *pBuf = &tx_buffer->
930 tx_head.tx_ab.ab;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100931
Malcolm Priestley5ff627a2014-03-18 19:24:58 +0000932 pBuf->rrv_time = vnt_rxtx_rsvtime_le16(pDevice,
Malcolm Priestley92928f12013-10-07 20:14:01 +0100933 PK_TYPE_11B, cbFrameSize,
934 wCurrentRate, bNeedACK);
Malcolm Priestleya90186e2013-10-01 15:58:54 +0100935
Malcolm Priestley92928f12013-10-07 20:14:01 +0100936 return vnt_rxtx_datahead_ab(pDevice, byPktType,
937 wCurrentRate, &head->data_head_ab,
938 cbFrameSize, bNeedACK);
939 }
Malcolm Priestleyc12dca02013-10-01 16:03:40 +0100940 }
941
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100942 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400943}
944/*
Andres Moreb902fbf2013-02-25 20:32:51 -0500945 u8 * pbyBuffer,//point to pTxBufHead
Andres More3eaca0d2013-02-25 20:32:52 -0500946 u16 wFragType,//00:Non-Frag, 01:Start, 02:Mid, 03:Last
Andres Morecc856e62010-05-17 21:34:01 -0300947 unsigned int cbFragmentSize,//Hdr+payoad+FCS
Forest Bond92b96792009-06-13 07:38:31 -0400948*/
949
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000950static int s_bPacketToWirelessUsb(struct vnt_private *pDevice, u8 byPktType,
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100951 struct vnt_tx_buffer *tx_buffer, int bNeedEncryption,
Malcolm Priestley05cc6172014-04-30 21:31:12 +0100952 u32 uSkbPacketLen, struct ethhdr *psEthHeader,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +0100953 u8 *pPacket, PSKeyItem pTransmitKey, u32 uNodeIndex, u16 wCurrentRate,
954 u32 *pcbHeaderLen, u32 *pcbTotalLen)
Forest Bond92b96792009-06-13 07:38:31 -0400955{
Malcolm Priestleyd66caad2013-09-17 19:54:35 +0100956 struct vnt_tx_fifo_head *pTxBufHead = &tx_buffer->fifo_head;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000957 u32 cbFrameSize, cbFrameBodySize;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000958 u32 cb802_1_H_len;
959 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbMACHdLen = 0;
960 u32 cbFCSlen = 4, cbMICHDR = 0;
Malcolm Priestleyf46142b2013-08-27 11:56:33 +0100961 int bNeedACK;
962 bool bRTS = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000963 u8 *pbyType, *pbyMacHdr, *pbyIVHead, *pbyPayloadHead, *pbyTxBufferAddr;
964 u8 abySNAP_RFC1042[ETH_ALEN] = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0x00};
965 u8 abySNAP_Bridgetunnel[ETH_ALEN]
966 = {0xAA, 0xAA, 0x03, 0x00, 0x00, 0xF8};
967 u32 uDuration;
968 u32 cbHeaderLength = 0, uPadding = 0;
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +0100969 struct vnt_mic_hdr *pMICHDR;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000970 u8 byFBOption = AUTO_FB_NONE, byFragType;
971 u16 wTxBufSize;
Malcolm Priestley4235f722013-08-24 12:42:01 +0100972 u32 dwMICKey0, dwMICKey1, dwMIC_Priority;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +0000973 u32 *pdwMIC_L, *pdwMIC_R;
Andres Moree269fc22013-02-12 20:36:29 -0500974 int bSoftWEP = false;
Malcolm Priestley9e38a5c2013-09-26 18:47:25 +0100975
Malcolm Priestleyc545e6a2013-10-01 16:07:25 +0100976 pMICHDR = NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400977
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000978 if (bNeedEncryption && pTransmitKey->pvKeyTable) {
Andres More4e9b5e22013-02-12 20:36:30 -0500979 if (((PSKeyTable)pTransmitKey->pvKeyTable)->bSoftWEP == true)
980 bSoftWEP = true; /* WEP 256 */
Malcolm Priestleye2efba72012-11-11 15:20:52 +0000981 }
Forest Bond92b96792009-06-13 07:38:31 -0400982
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +0000983 /* Get pkt type */
984 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN)
985 cb802_1_H_len = 8;
986 else
987 cb802_1_H_len = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400988
Charles Clément21ec51f2010-05-18 10:08:14 -0700989 cbFrameBodySize = uSkbPacketLen - ETH_HLEN + cb802_1_H_len;
Forest Bond92b96792009-06-13 07:38:31 -0400990
991 //Set packet type
Andres More3eaca0d2013-02-25 20:32:52 -0500992 pTxBufHead->wFIFOCtl |= (u16)(byPktType<<8);
Forest Bond92b96792009-06-13 07:38:31 -0400993
Malcolm Priestleya0ad2772014-02-15 21:56:20 +0000994 if (pDevice->op_mode == NL80211_IFTYPE_ADHOC ||
995 pDevice->op_mode == NL80211_IFTYPE_AP) {
Andres Moreceb8c5d2013-03-18 20:33:49 -0500996 if (is_multicast_ether_addr(psEthHeader->h_dest)) {
Andres Moree269fc22013-02-12 20:36:29 -0500997 bNeedACK = false;
Andres More22040bb2010-08-02 20:21:44 -0300998 pTxBufHead->wFIFOCtl =
999 pTxBufHead->wFIFOCtl & (~FIFOCTL_NEEDACK);
1000 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001001 bNeedACK = true;
Andres More22040bb2010-08-02 20:21:44 -03001002 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1003 }
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +00001004 } else {
1005 /* MSDUs in Infra mode always need ACK */
1006 bNeedACK = true;
1007 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1008 }
Forest Bond92b96792009-06-13 07:38:31 -04001009
Malcolm Priestley58462512014-03-22 09:01:27 +00001010 pTxBufHead->time_stamp = cpu_to_le16(DEFAULT_MSDU_LIFETIME_RES_64us);
Forest Bond92b96792009-06-13 07:38:31 -04001011
Forest Bond92b96792009-06-13 07:38:31 -04001012 //Set FRAGCTL_MACHDCNT
Malcolm Priestley078d0cf2013-11-25 22:14:16 +00001013 cbMACHdLen = WLAN_HDR_ADDR3_LEN;
1014
Andres More3eaca0d2013-02-25 20:32:52 -05001015 pTxBufHead->wFragCtl |= (u16)(cbMACHdLen << 10);
Forest Bond92b96792009-06-13 07:38:31 -04001016
1017 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001018 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001019 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1020 }
1021
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +01001022 /* Set Auto Fallback Ctl */
1023 if (wCurrentRate >= RATE_18M) {
1024 if (pDevice->byAutoFBCtrl == AUTO_FB_0) {
1025 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
1026
1027 pDevice->tx_rate_fb0 =
1028 wFB_Opt0[FB_RATE0][wCurrentRate - RATE_18M];
1029 pDevice->tx_rate_fb1 =
1030 wFB_Opt0[FB_RATE1][wCurrentRate - RATE_18M];
1031
1032 byFBOption = AUTO_FB_0;
1033 } else if (pDevice->byAutoFBCtrl == AUTO_FB_1) {
1034 pTxBufHead->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
1035 pDevice->tx_rate_fb0 =
1036 wFB_Opt1[FB_RATE0][wCurrentRate - RATE_18M];
1037 pDevice->tx_rate_fb1 =
1038 wFB_Opt1[FB_RATE1][wCurrentRate - RATE_18M];
1039
1040 byFBOption = AUTO_FB_1;
1041 }
1042 }
Forest Bond92b96792009-06-13 07:38:31 -04001043
Andres More4e9b5e22013-02-12 20:36:30 -05001044 if (bSoftWEP != true) {
Forest Bond92b96792009-06-13 07:38:31 -04001045 if ((bNeedEncryption) && (pTransmitKey != NULL)) { //WEP enabled
1046 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) { //WEP40 or WEP104
1047 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1048 }
1049 if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1050 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Tx Set wFragCtl == FRAGCTL_TKIP\n");
1051 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1052 }
1053 else if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) { //CCMP
1054 pTxBufHead->wFragCtl |= FRAGCTL_AES;
1055 }
1056 }
1057 }
1058
Forest Bond92b96792009-06-13 07:38:31 -04001059 if ((bNeedEncryption) && (pTransmitKey != NULL)) {
1060 if (pTransmitKey->byCipherSuite == KEY_CTL_WEP) {
1061 cbIVlen = 4;
1062 cbICVlen = 4;
1063 }
1064 else if (pTransmitKey->byCipherSuite == KEY_CTL_TKIP) {
1065 cbIVlen = 8;//IV+ExtIV
1066 cbMIClen = 8;
1067 cbICVlen = 4;
1068 }
1069 if (pTransmitKey->byCipherSuite == KEY_CTL_CCMP) {
1070 cbIVlen = 8;//RSN Header
1071 cbICVlen = 8;//MIC
Malcolm Priestley5a5d6a82013-08-23 14:33:55 +01001072 cbMICHDR = sizeof(struct vnt_mic_hdr);
Forest Bond92b96792009-06-13 07:38:31 -04001073 }
Andres Moree269fc22013-02-12 20:36:29 -05001074 if (bSoftWEP == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001075 //MAC Header should be padding 0 to DW alignment.
1076 uPadding = 4 - (cbMACHdLen%4);
1077 uPadding %= 4;
1078 }
1079 }
1080
1081 cbFrameSize = cbMACHdLen + cbIVlen + (cbFrameBodySize + cbMIClen) + cbICVlen + cbFCSlen;
1082
Andres Moree269fc22013-02-12 20:36:29 -05001083 if ( (bNeedACK == false) ||(cbFrameSize < pDevice->wRTSThreshold) ) {
1084 bRTS = false;
Forest Bond92b96792009-06-13 07:38:31 -04001085 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001086 bRTS = true;
Forest Bond92b96792009-06-13 07:38:31 -04001087 pTxBufHead->wFIFOCtl |= (FIFOCTL_RTS | FIFOCTL_LRETRY);
1088 }
1089
Andres Moreb902fbf2013-02-25 20:32:51 -05001090 pbyTxBufferAddr = (u8 *) &(pTxBufHead->adwTxKey[0]);
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001091 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
1092
Forest Bond92b96792009-06-13 07:38:31 -04001093 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
1094 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001095 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001096 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001097 cbMICHDR + sizeof(struct vnt_rts_g);
Forest Bond92b96792009-06-13 07:38:31 -04001098 }
1099 else { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001100 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001101 cbMICHDR + sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001102 }
1103 } else {
1104 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001105 if (bRTS == true) {//RTS_need
Malcolm Priestley6398a592013-08-16 21:26:55 +01001106 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_rts) +
Malcolm Priestley5b852f52013-10-01 15:54:56 +01001107 cbMICHDR + sizeof(struct vnt_rts_g_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001108 }
Andres Moree269fc22013-02-12 20:36:29 -05001109 else if (bRTS == false) { //RTS_needless
Malcolm Priestley4f990052013-08-16 23:38:57 +01001110 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley5b852f52013-10-01 15:54:56 +01001111 cbMICHDR + sizeof(struct vnt_cts_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001112 }
1113 } // Auto Fall Back
1114 }
1115 else {//802.11a/b packet
1116 if (byFBOption == AUTO_FB_NONE) {
Andres More4e9b5e22013-02-12 20:36:30 -05001117 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001118 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley5634a5a2013-10-01 16:00:20 +01001119 cbMICHDR + sizeof(struct vnt_rts_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001120 }
Andres Moree269fc22013-02-12 20:36:29 -05001121 else if (bRTS == false) { //RTS_needless, no MICHDR
Malcolm Priestley976467d2013-08-16 23:44:04 +01001122 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001123 cbMICHDR + sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001124 }
1125 } else {
1126 // Auto Fall Back
Andres More4e9b5e22013-02-12 20:36:30 -05001127 if (bRTS == true) {//RTS_need
Malcolm Priestley976467d2013-08-16 23:44:04 +01001128 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +01001129 cbMICHDR + sizeof(struct vnt_rts_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001130 }
Andres Moree269fc22013-02-12 20:36:29 -05001131 else if (bRTS == false) { //RTS_needless
Malcolm Priestley976467d2013-08-16 23:44:04 +01001132 cbHeaderLength = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley1da4ee22013-08-16 23:51:38 +01001133 cbMICHDR + sizeof(struct vnt_tx_datahead_a_fb);
Forest Bond92b96792009-06-13 07:38:31 -04001134 }
1135 } // Auto Fall Back
1136 }
1137
Andres Moreb902fbf2013-02-25 20:32:51 -05001138 pbyMacHdr = (u8 *)(pbyTxBufferAddr + cbHeaderLength);
1139 pbyIVHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding);
1140 pbyPayloadHead = (u8 *)(pbyMacHdr + cbMACHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001141
Forest Bond92b96792009-06-13 07:38:31 -04001142 //=========================
1143 // No Fragmentation
1144 //=========================
1145 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Fragmentation...\n");
1146 byFragType = FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001147 //pTxBufHead = (PSTxBufHead) &(pTxBufHead->adwTxKey[0]);
1148
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001149 /* Fill FIFO, RrvTime, RTS and CTS */
1150 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
1151 tx_buffer, &pMICHDR, cbMICHDR,
Malcolm Priestley05cc6172014-04-30 21:31:12 +01001152 cbFrameSize, bNeedACK, psEthHeader, bRTS);
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01001153
Forest Bond92b96792009-06-13 07:38:31 -04001154 // Generate TX MAC Header
Andres More3eaca0d2013-02-25 20:32:52 -05001155 s_vGenerateMACHeader(pDevice, pbyMacHdr, (u16)uDuration, psEthHeader, bNeedEncryption,
Malcolm Priestley05cc6172014-04-30 21:31:12 +01001156 byFragType, 0);
Forest Bond92b96792009-06-13 07:38:31 -04001157
Andres More4e9b5e22013-02-12 20:36:30 -05001158 if (bNeedEncryption == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001159 //Fill TXKEY
Malcolm Priestley3ba09382013-10-15 21:41:38 +01001160 s_vFillTxKey(pDevice, pTxBufHead, pbyIVHead, pTransmitKey,
Malcolm Priestleyec37d8b2013-08-23 14:37:48 +01001161 pbyMacHdr, (u16)cbFrameBodySize, pMICHDR);
Forest Bond92b96792009-06-13 07:38:31 -04001162 }
1163
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +00001164 /* 802.1H */
1165 if (ntohs(psEthHeader->h_proto) > ETH_DATA_LEN) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001166 if ((psEthHeader->h_proto == cpu_to_be16(ETH_P_IPX)) ||
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +00001167 (psEthHeader->h_proto == cpu_to_le16(0xF380)))
Andres Moreb902fbf2013-02-25 20:32:51 -05001168 memcpy((u8 *) (pbyPayloadHead),
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +00001169 abySNAP_Bridgetunnel, 6);
1170 else
1171 memcpy((u8 *) (pbyPayloadHead), &abySNAP_RFC1042[0], 6);
Forest Bond92b96792009-06-13 07:38:31 -04001172
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +00001173 pbyType = (u8 *) (pbyPayloadHead + 6);
Forest Bond92b96792009-06-13 07:38:31 -04001174
Malcolm Priestleyc47b0a32013-11-24 11:51:49 +00001175 memcpy(pbyType, &(psEthHeader->h_proto), sizeof(u16));
1176 }
Forest Bond92b96792009-06-13 07:38:31 -04001177
Forest Bond92b96792009-06-13 07:38:31 -04001178 if (pPacket != NULL) {
1179 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001180 memcpy((pbyPayloadHead + cb802_1_H_len),
Charles Clément21ec51f2010-05-18 10:08:14 -07001181 (pPacket + ETH_HLEN),
1182 uSkbPacketLen - ETH_HLEN
Forest Bond92b96792009-06-13 07:38:31 -04001183 );
1184
1185 } else {
1186 // while bRelayPacketSend psEthHeader is point to header+payload
Andres Moreb902fbf2013-02-25 20:32:51 -05001187 memcpy((pbyPayloadHead + cb802_1_H_len), ((u8 *)psEthHeader) + ETH_HLEN, uSkbPacketLen - ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001188 }
1189
Andres More4e9b5e22013-02-12 20:36:30 -05001190 if ((bNeedEncryption == true) && (pTransmitKey != NULL) && (pTransmitKey->byCipherSuite == KEY_CTL_TKIP)) {
Forest Bond92b96792009-06-13 07:38:31 -04001191
1192 ///////////////////////////////////////////////////////////////////
1193
Malcolm Priestley14c5ef52013-01-17 23:19:37 +00001194 if (pDevice->vnt_mgmt.eAuthenMode == WMAC_AUTH_WPANONE) {
1195 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1196 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
1197 }
Forest Bond92b96792009-06-13 07:38:31 -04001198 else if ((pTransmitKey->dwKeyIndex & AUTHENTICATOR_KEY) != 0) {
Andres More52a7e642013-02-25 20:32:53 -05001199 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[16]);
1200 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[20]);
Forest Bond92b96792009-06-13 07:38:31 -04001201 }
1202 else {
Andres More52a7e642013-02-25 20:32:53 -05001203 dwMICKey0 = *(u32 *)(&pTransmitKey->abyKey[24]);
1204 dwMICKey1 = *(u32 *)(&pTransmitKey->abyKey[28]);
Forest Bond92b96792009-06-13 07:38:31 -04001205 }
1206 // DO Software Michael
1207 MIC_vInit(dwMICKey0, dwMICKey1);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001208 MIC_vAppend((u8 *)&(psEthHeader->h_dest[0]), 12);
Forest Bond92b96792009-06-13 07:38:31 -04001209 dwMIC_Priority = 0;
Andres Moreb902fbf2013-02-25 20:32:51 -05001210 MIC_vAppend((u8 *)&dwMIC_Priority, 4);
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001211 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC KEY: %X, %X\n",
1212 dwMICKey0, dwMICKey1);
Forest Bond92b96792009-06-13 07:38:31 -04001213
1214 ///////////////////////////////////////////////////////////////////
1215
1216 //DBG_PRN_GRP12(("Length:%d, %d\n", cbFrameBodySize, uFromHDtoPLDLength));
1217 //for (ii = 0; ii < cbFrameBodySize; ii++) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001218 // DBG_PRN_GRP12(("%02x ", *((u8 *)((pbyPayloadHead + cb802_1_H_len) + ii))));
Forest Bond92b96792009-06-13 07:38:31 -04001219 //}
1220 //DBG_PRN_GRP12(("\n\n\n"));
1221
1222 MIC_vAppend(pbyPayloadHead, cbFrameBodySize);
1223
Andres More52a7e642013-02-25 20:32:53 -05001224 pdwMIC_L = (u32 *)(pbyPayloadHead + cbFrameBodySize);
1225 pdwMIC_R = (u32 *)(pbyPayloadHead + cbFrameBodySize + 4);
Forest Bond92b96792009-06-13 07:38:31 -04001226
1227 MIC_vGetMIC(pdwMIC_L, pdwMIC_R);
1228 MIC_vUnInit();
1229
Andres More4e9b5e22013-02-12 20:36:30 -05001230 if (pDevice->bTxMICFail == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001231 *pdwMIC_L = 0;
1232 *pdwMIC_R = 0;
Andres Moree269fc22013-02-12 20:36:29 -05001233 pDevice->bTxMICFail = false;
Forest Bond92b96792009-06-13 07:38:31 -04001234 }
1235 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"uLength: %d, %d\n", uLength, cbFrameBodySize);
1236 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"cbReqCount:%d, %d, %d, %d\n", cbReqCount, cbHeaderLength, uPadding, cbIVlen);
1237 //DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"MIC:%lX, %lX\n", *pdwMIC_L, *pdwMIC_R);
1238 }
1239
Andres More4e9b5e22013-02-12 20:36:30 -05001240 if (bSoftWEP == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001241
Andres More3eaca0d2013-02-25 20:32:52 -05001242 s_vSWencryption(pDevice, pTransmitKey, (pbyPayloadHead), (u16)(cbFrameBodySize + cbMIClen));
Forest Bond92b96792009-06-13 07:38:31 -04001243
Andres More4e9b5e22013-02-12 20:36:30 -05001244 } else if ( ((pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) && (bNeedEncryption == true)) ||
1245 ((pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) && (bNeedEncryption == true)) ||
1246 ((pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) && (bNeedEncryption == true)) ) {
Forest Bond92b96792009-06-13 07:38:31 -04001247 cbFrameSize -= cbICVlen;
1248 }
1249
Forest Bond92b96792009-06-13 07:38:31 -04001250 cbFrameSize -= cbFCSlen;
Forest Bond92b96792009-06-13 07:38:31 -04001251
1252 *pcbHeaderLen = cbHeaderLength;
1253 *pcbTotalLen = cbHeaderLength + cbFrameSize ;
1254
Forest Bond92b96792009-06-13 07:38:31 -04001255 //Set FragCtl in TxBufferHead
Andres More3eaca0d2013-02-25 20:32:52 -05001256 pTxBufHead->wFragCtl |= (u16)byFragType;
Forest Bond92b96792009-06-13 07:38:31 -04001257
Andres More4e9b5e22013-02-12 20:36:30 -05001258 return true;
Forest Bond92b96792009-06-13 07:38:31 -04001259
1260}
1261
Forest Bond92b96792009-06-13 07:38:31 -04001262/*+
1263 *
1264 * Description:
1265 * Translate 802.3 to 802.11 header
1266 *
1267 * Parameters:
1268 * In:
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001269 * pDevice - Pointer to adapter
Forest Bond92b96792009-06-13 07:38:31 -04001270 * dwTxBufferAddr - Transmit Buffer
1271 * pPacket - Packet from upper layer
1272 * cbPacketSize - Transmit Data Length
1273 * Out:
1274 * pcbHeadSize - Header size of MAC&Baseband control and 802.11 Header
1275 * pcbAppendPayload - size of append payload for 802.1H translation
1276 *
1277 * Return Value: none
1278 *
1279-*/
1280
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001281static void s_vGenerateMACHeader(struct vnt_private *pDevice,
Andres Moreceb8c5d2013-03-18 20:33:49 -05001282 u8 *pbyBufferAddr, u16 wDuration, struct ethhdr *psEthHeader,
Malcolm Priestley05cc6172014-04-30 21:31:12 +01001283 int bNeedEncrypt, u16 wFragType, u32 uFragIdx)
Forest Bond92b96792009-06-13 07:38:31 -04001284{
Andres More1cac4a42013-03-18 20:33:50 -05001285 struct ieee80211_hdr *pMACHeader = (struct ieee80211_hdr *)pbyBufferAddr;
Forest Bond92b96792009-06-13 07:38:31 -04001286
Malcolm Priestleyc921cc82013-08-20 20:47:49 +01001287 pMACHeader->frame_control = TYPE_802_11_DATA;
Forest Bond92b96792009-06-13 07:38:31 -04001288
Malcolm Priestleya0ad2772014-02-15 21:56:20 +00001289 if (pDevice->op_mode == NL80211_IFTYPE_AP) {
Andres More1cac4a42013-03-18 20:33:50 -05001290 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001291 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001292 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001293 memcpy(&(pMACHeader->addr2[0]), &(pDevice->abyBSSID[0]), ETH_ALEN);
1294 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001295 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001296 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001297 pMACHeader->frame_control |= FC_FROMDS;
Andres More9a0e7562010-04-13 21:54:48 -03001298 } else {
Malcolm Priestleya0ad2772014-02-15 21:56:20 +00001299 if (pDevice->op_mode == NL80211_IFTYPE_ADHOC) {
Andres More1cac4a42013-03-18 20:33:50 -05001300 memcpy(&(pMACHeader->addr1[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001301 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001302 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001303 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001304 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001305 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001306 memcpy(&(pMACHeader->addr3[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001307 &(pDevice->abyBSSID[0]),
1308 ETH_ALEN);
1309 } else {
Andres More1cac4a42013-03-18 20:33:50 -05001310 memcpy(&(pMACHeader->addr3[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001311 &(psEthHeader->h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001312 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001313 memcpy(&(pMACHeader->addr2[0]),
Andres Moreceb8c5d2013-03-18 20:33:49 -05001314 &(psEthHeader->h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001315 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001316 memcpy(&(pMACHeader->addr1[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001317 &(pDevice->abyBSSID[0]),
1318 ETH_ALEN);
Andres More1cac4a42013-03-18 20:33:50 -05001319 pMACHeader->frame_control |= FC_TODS;
Forest Bond92b96792009-06-13 07:38:31 -04001320 }
1321 }
1322
1323 if (bNeedEncrypt)
Andres More1cac4a42013-03-18 20:33:50 -05001324 pMACHeader->frame_control |= cpu_to_le16((u16)WLAN_SET_FC_ISWEP(1));
Forest Bond92b96792009-06-13 07:38:31 -04001325
Andres More1cac4a42013-03-18 20:33:50 -05001326 pMACHeader->duration_id = cpu_to_le16(wDuration);
Forest Bond92b96792009-06-13 07:38:31 -04001327
Andres More1cac4a42013-03-18 20:33:50 -05001328 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001329
1330 //Set FragNumber in Sequence Control
Andres More1cac4a42013-03-18 20:33:50 -05001331 pMACHeader->seq_ctrl |= cpu_to_le16((u16)uFragIdx);
Forest Bond92b96792009-06-13 07:38:31 -04001332
1333 if ((wFragType == FRAGCTL_ENDFRAG) || (wFragType == FRAGCTL_NONFRAG)) {
1334 pDevice->wSeqCounter++;
1335 if (pDevice->wSeqCounter > 0x0fff)
1336 pDevice->wSeqCounter = 0;
1337 }
1338
1339 if ((wFragType == FRAGCTL_STAFRAG) || (wFragType == FRAGCTL_MIDFRAG)) { //StartFrag or MidFrag
Andres More1cac4a42013-03-18 20:33:50 -05001340 pMACHeader->frame_control |= FC_MOREFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001341 }
1342}
1343
Forest Bond92b96792009-06-13 07:38:31 -04001344/*+
1345 *
1346 * Description:
1347 * Request instructs a MAC to transmit a 802.11 management packet through
1348 * the adapter onto the medium.
1349 *
1350 * Parameters:
1351 * In:
1352 * hDeviceContext - Pointer to the adapter
1353 * pPacket - A pointer to a descriptor for the packet to transmit
1354 * Out:
1355 * none
1356 *
Andres Moree269fc22013-02-12 20:36:29 -05001357 * Return Value: CMD_STATUS_PENDING if MAC Tx resource available; otherwise false
Forest Bond92b96792009-06-13 07:38:31 -04001358 *
1359-*/
1360
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001361CMD_STATUS csMgmt_xmit(struct vnt_private *pDevice,
1362 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001363{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001364 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001365 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001366 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001367 struct vnt_tx_fifo_head *pTxBufHead;
Andres More1cac4a42013-03-18 20:33:50 -05001368 struct ieee80211_hdr *pMACHeader;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001369 struct ethhdr sEthHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001370 u8 byPktType, *pbyTxBufferAddr;
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +01001371 struct vnt_mic_hdr *pMICHDR = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001372 u32 uDuration, cbReqCount, cbHeaderSize, cbFrameBodySize, cbFrameSize;
Andres Moree269fc22013-02-12 20:36:29 -05001373 int bNeedACK, bIsPSPOLL = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001374 u32 cbIVlen = 0, cbICVlen = 0, cbMIClen = 0, cbFCSlen = 4;
1375 u32 uPadding = 0;
1376 u16 wTxBufSize;
1377 u32 cbMacHdLen;
1378 u16 wCurrentRate = RATE_1M;
Malcolm Priestley931cb9f2014-05-15 22:49:15 +01001379 unsigned long flags;
1380
1381 if (pDevice->byBBType == BB_TYPE_11A) {
1382 wCurrentRate = RATE_6M;
1383 byPktType = PK_TYPE_11A;
1384 } else {
1385 wCurrentRate = RATE_1M;
1386 byPktType = PK_TYPE_11B;
1387 }
1388
1389 if (pMgmt->eScanState != WMAC_NO_SCANNING)
1390 RFbSetPower(pDevice, wCurrentRate, pDevice->byCurrentCh);
1391 else
1392 RFbSetPower(pDevice, wCurrentRate, pMgmt->uCurrChannel);
1393
1394 pDevice->wCurrentRate = wCurrentRate;
1395
1396 spin_lock_irqsave(&pDevice->lock, flags);
Forest Bond92b96792009-06-13 07:38:31 -04001397
Malcolm Priestleyaceaf012013-11-26 19:06:35 +00001398 pContext = s_vGetFreeContext(pDevice);
Malcolm Priestley931cb9f2014-05-15 22:49:15 +01001399 if (!pContext) {
1400 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO
1401 "ManagementSend TX...NO CONTEXT!\n");
1402 spin_unlock_irqrestore(&pDevice->lock, flags);
1403 return CMD_STATUS_RESOURCES;
1404 }
Forest Bond92b96792009-06-13 07:38:31 -04001405
Malcolm Priestley30a05b32014-05-15 22:49:11 +01001406 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->data[0];
Forest Bond92b96792009-06-13 07:38:31 -04001407 cbFrameBodySize = pPacket->cbPayloadLen;
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001408 pTxBufHead = &pTX_Buffer->fifo_head;
1409 pbyTxBufferAddr = (u8 *)&pTxBufHead->adwTxKey[0];
1410 wTxBufSize = sizeof(struct vnt_tx_fifo_head);
Forest Bond92b96792009-06-13 07:38:31 -04001411
Forest Bond92b96792009-06-13 07:38:31 -04001412
Forest Bond92b96792009-06-13 07:38:31 -04001413 //Set packet type
1414 if (byPktType == PK_TYPE_11A) {//0000 0000 0000 0000
1415 pTxBufHead->wFIFOCtl = 0;
1416 }
1417 else if (byPktType == PK_TYPE_11B) {//0000 0001 0000 0000
1418 pTxBufHead->wFIFOCtl |= FIFOCTL_11B;
1419 }
1420 else if (byPktType == PK_TYPE_11GB) {//0000 0010 0000 0000
1421 pTxBufHead->wFIFOCtl |= FIFOCTL_11GB;
1422 }
1423 else if (byPktType == PK_TYPE_11GA) {//0000 0011 0000 0000
1424 pTxBufHead->wFIFOCtl |= FIFOCTL_11GA;
1425 }
1426
1427 pTxBufHead->wFIFOCtl |= FIFOCTL_TMOEN;
Malcolm Priestley58462512014-03-22 09:01:27 +00001428 pTxBufHead->time_stamp = cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
Forest Bond92b96792009-06-13 07:38:31 -04001429
Andres More22040bb2010-08-02 20:21:44 -03001430 if (is_multicast_ether_addr(pPacket->p80211Header->sA3.abyAddr1)) {
Andres Moree269fc22013-02-12 20:36:29 -05001431 bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001432 }
1433 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001434 bNeedACK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001435 pTxBufHead->wFIFOCtl |= FIFOCTL_NEEDACK;
1436 };
1437
1438 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_AP) ||
1439 (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) ) {
1440
1441 pTxBufHead->wFIFOCtl |= FIFOCTL_LRETRY;
1442 //Set Preamble type always long
1443 //pDevice->byPreambleType = PREAMBLE_LONG;
1444 // probe-response don't retry
1445 //if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_MGMT_PROBE_RSP) {
Andres Moree269fc22013-02-12 20:36:29 -05001446 // bNeedACK = false;
Forest Bond92b96792009-06-13 07:38:31 -04001447 // pTxBufHead->wFIFOCtl &= (~FIFOCTL_NEEDACK);
1448 //}
1449 }
1450
1451 pTxBufHead->wFIFOCtl |= (FIFOCTL_GENINT | FIFOCTL_ISDMA0);
1452
1453 if ((pPacket->p80211Header->sA4.wFrameCtl & TYPE_SUBTYPE_MASK) == TYPE_CTL_PSPOLL) {
Andres More4e9b5e22013-02-12 20:36:30 -05001454 bIsPSPOLL = true;
Forest Bond92b96792009-06-13 07:38:31 -04001455 cbMacHdLen = WLAN_HDR_ADDR2_LEN;
1456 } else {
1457 cbMacHdLen = WLAN_HDR_ADDR3_LEN;
1458 }
1459
1460 //Set FRAGCTL_MACHDCNT
Andres More3eaca0d2013-02-25 20:32:52 -05001461 pTxBufHead->wFragCtl |= cpu_to_le16((u16)(cbMacHdLen << 10));
Forest Bond92b96792009-06-13 07:38:31 -04001462
1463 // Notes:
1464 // Although spec says MMPDU can be fragmented; In most case,
1465 // no one will send a MMPDU under fragmentation. With RTS may occur.
Forest Bond92b96792009-06-13 07:38:31 -04001466
1467 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
1468 if (pDevice->eEncryptionStatus == Ndis802_11Encryption1Enabled) {
1469 cbIVlen = 4;
1470 cbICVlen = 4;
1471 pTxBufHead->wFragCtl |= FRAGCTL_LEGACY;
1472 }
1473 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption2Enabled) {
1474 cbIVlen = 8;//IV+ExtIV
1475 cbMIClen = 8;
1476 cbICVlen = 4;
1477 pTxBufHead->wFragCtl |= FRAGCTL_TKIP;
1478 //We need to get seed here for filling TxKey entry.
1479 //TKIPvMixKey(pTransmitKey->abyKey, pDevice->abyCurrentNetAddr,
1480 // pTransmitKey->wTSC15_0, pTransmitKey->dwTSC47_16, pDevice->abyPRNG);
1481 }
1482 else if (pDevice->eEncryptionStatus == Ndis802_11Encryption3Enabled) {
1483 cbIVlen = 8;//RSN Header
1484 cbICVlen = 8;//MIC
1485 pTxBufHead->wFragCtl |= FRAGCTL_AES;
Forest Bond92b96792009-06-13 07:38:31 -04001486 }
1487 //MAC Header should be padding 0 to DW alignment.
1488 uPadding = 4 - (cbMacHdLen%4);
1489 uPadding %= 4;
1490 }
1491
1492 cbFrameSize = cbMacHdLen + cbFrameBodySize + cbIVlen + cbMIClen + cbICVlen + cbFCSlen;
1493
1494 //Set FIFOCTL_GrpAckPolicy
Andres More4e9b5e22013-02-12 20:36:30 -05001495 if (pDevice->bGrpAckPolicy == true) {//0000 0100 0000 0000
Forest Bond92b96792009-06-13 07:38:31 -04001496 pTxBufHead->wFIFOCtl |= FIFOCTL_GRPACK;
1497 }
1498 //the rest of pTxBufHead->wFragCtl:FragTyp will be set later in s_vFillFragParameter()
1499
1500 //Set RrvTime/RTS/CTS Buffer
1501 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {//802.11g packet
Malcolm Priestley4f990052013-08-16 23:38:57 +01001502 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_cts) +
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001503 sizeof(struct vnt_cts);
Forest Bond92b96792009-06-13 07:38:31 -04001504 }
1505 else { // 802.11a/b packet
Malcolm Priestley976467d2013-08-16 23:44:04 +01001506 cbHeaderSize = wTxBufSize + sizeof(struct vnt_rrv_time_ab) +
Malcolm Priestley558becf2013-08-16 23:50:32 +01001507 sizeof(struct vnt_tx_datahead_ab);
Forest Bond92b96792009-06-13 07:38:31 -04001508 }
1509
Andres Moreceb8c5d2013-03-18 20:33:49 -05001510 memcpy(&(sEthHeader.h_dest[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001511 &(pPacket->p80211Header->sA3.abyAddr1[0]),
1512 ETH_ALEN);
Andres Moreceb8c5d2013-03-18 20:33:49 -05001513 memcpy(&(sEthHeader.h_source[0]),
Andres More9a0e7562010-04-13 21:54:48 -03001514 &(pPacket->p80211Header->sA3.abyAddr2[0]),
1515 ETH_ALEN);
Forest Bond92b96792009-06-13 07:38:31 -04001516 //=========================
1517 // No Fragmentation
1518 //=========================
Andres More3eaca0d2013-02-25 20:32:52 -05001519 pTxBufHead->wFragCtl |= (u16)FRAGCTL_NONFRAG;
Forest Bond92b96792009-06-13 07:38:31 -04001520
Malcolm Priestley351c7dc2013-08-27 12:02:54 +01001521 /* Fill FIFO,RrvTime,RTS,and CTS */
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001522 uDuration = s_vGenerateTxParameter(pDevice, byPktType, wCurrentRate,
Malcolm Priestleyfa575602013-09-26 19:00:41 +01001523 pTX_Buffer, &pMICHDR, 0,
Malcolm Priestley05cc6172014-04-30 21:31:12 +01001524 cbFrameSize, bNeedACK, &sEthHeader, false);
Forest Bond92b96792009-06-13 07:38:31 -04001525
Andres More1cac4a42013-03-18 20:33:50 -05001526 pMACHeader = (struct ieee80211_hdr *) (pbyTxBufferAddr + cbHeaderSize);
Forest Bond92b96792009-06-13 07:38:31 -04001527
1528 cbReqCount = cbHeaderSize + cbMacHdLen + uPadding + cbIVlen + cbFrameBodySize;
1529
1530 if (WLAN_GET_FC_ISWEP(pPacket->p80211Header->sA4.wFrameCtl) != 0) {
Andres Moreb902fbf2013-02-25 20:32:51 -05001531 u8 * pbyIVHead;
1532 u8 * pbyPayloadHead;
1533 u8 * pbyBSSID;
Forest Bond92b96792009-06-13 07:38:31 -04001534 PSKeyItem pTransmitKey = NULL;
1535
Andres Moreb902fbf2013-02-25 20:32:51 -05001536 pbyIVHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding);
1537 pbyPayloadHead = (u8 *)(pbyTxBufferAddr + cbHeaderSize + cbMacHdLen + uPadding + cbIVlen);
Forest Bond92b96792009-06-13 07:38:31 -04001538 do {
Malcolm Priestleya0ad2772014-02-15 21:56:20 +00001539 if (pDevice->op_mode == NL80211_IFTYPE_STATION &&
1540 pDevice->bLinkPass == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001541 pbyBSSID = pDevice->abyBSSID;
1542 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001543 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001544 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001545 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001546 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1547 break;
1548 }
1549 } else {
1550 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get PTK.\n");
1551 break;
1552 }
1553 }
1554 // get group key
1555 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001556 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001557 pTransmitKey = NULL;
Malcolm Priestleya0ad2772014-02-15 21:56:20 +00001558 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"KEY is NULL. OP Mode[%d]\n", pDevice->op_mode);
Forest Bond92b96792009-06-13 07:38:31 -04001559 } else {
1560 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Get GTK.\n");
1561 }
Andres Moree269fc22013-02-12 20:36:29 -05001562 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001563 //Fill TXKEY
Malcolm Priestley3ba09382013-10-15 21:41:38 +01001564 s_vFillTxKey(pDevice, pTxBufHead, pbyIVHead, pTransmitKey,
Andres More3eaca0d2013-02-25 20:32:52 -05001565 (u8 *)pMACHeader, (u16)cbFrameBodySize, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001566
Jim Lieb3e362592009-08-12 14:54:11 -07001567 memcpy(pMACHeader, pPacket->p80211Header, cbMacHdLen);
Andres Moreb902fbf2013-02-25 20:32:51 -05001568 memcpy(pbyPayloadHead, ((u8 *)(pPacket->p80211Header) + cbMacHdLen),
Forest Bond92b96792009-06-13 07:38:31 -04001569 cbFrameBodySize);
1570 }
1571 else {
1572 // Copy the Packet into a tx Buffer
Jim Lieb3e362592009-08-12 14:54:11 -07001573 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
Forest Bond92b96792009-06-13 07:38:31 -04001574 }
1575
Andres More1cac4a42013-03-18 20:33:50 -05001576 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
Forest Bond92b96792009-06-13 07:38:31 -04001577 pDevice->wSeqCounter++ ;
1578 if (pDevice->wSeqCounter > 0x0fff)
1579 pDevice->wSeqCounter = 0;
1580
1581 if (bIsPSPOLL) {
1582 // The MAC will automatically replace the Duration-field of MAC header by Duration-field
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001583 // of FIFO control header.
Forest Bond92b96792009-06-13 07:38:31 -04001584 // This will cause AID-field of PS-POLL packet be incorrect (Because PS-POLL's AID field is
1585 // in the same place of other packet's Duration-field).
1586 // And it will cause Cisco-AP to issue Disassociation-packet
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001587 if (byPktType == PK_TYPE_11GB || byPktType == PK_TYPE_11GA) {
Malcolm Priestley78363fd2013-10-01 15:52:16 +01001588 struct vnt_tx_datahead_g *data_head = &pTX_Buffer->tx_head.
1589 tx_cts.tx.head.cts_g.data_head;
Malcolm Priestley4e011172014-03-18 19:24:55 +00001590 data_head->duration_a =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001591 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
Malcolm Priestley4e011172014-03-18 19:24:55 +00001592 data_head->duration_b =
Malcolm Priestley7e60a3de2013-08-16 23:48:03 +01001593 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1594 } else {
Malcolm Priestleyc12dca02013-10-01 16:03:40 +01001595 struct vnt_tx_datahead_ab *data_head = &pTX_Buffer->tx_head.
1596 tx_ab.tx.head.data_head_ab;
Malcolm Priestley4e011172014-03-18 19:24:55 +00001597 data_head->duration =
Malcolm Priestley558becf2013-08-16 23:50:32 +01001598 cpu_to_le16(pPacket->p80211Header->sA2.wDurationID);
1599 }
Forest Bond92b96792009-06-13 07:38:31 -04001600 }
1601
Malcolm Priestleyca347592014-03-22 09:01:28 +00001602 pTX_Buffer->tx_byte_count = cpu_to_le16((u16)(cbReqCount));
Andres Moreb902fbf2013-02-25 20:32:51 -05001603 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001604 pTX_Buffer->byType = 0x00;
1605
Malcolm Priestley30a05b32014-05-15 22:49:11 +01001606 pContext->skb = NULL;
1607 pContext->type = CONTEXT_MGMT_PACKET;
1608 pContext->buf_len = (u16)cbReqCount + 4; /* USB header */
Forest Bond92b96792009-06-13 07:38:31 -04001609
Andres More1cac4a42013-03-18 20:33:50 -05001610 if (WLAN_GET_FC_TODS(pMACHeader->frame_control) == 0) {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001611 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1612 &pMACHeader->addr1[0], (u16)cbFrameSize,
1613 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001614 }
1615 else {
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01001616 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
1617 &pMACHeader->addr3[0], (u16)cbFrameSize,
1618 pTxBufHead->wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04001619 }
1620
1621 PIPEnsSendBulkOut(pDevice,pContext);
Malcolm Priestley931cb9f2014-05-15 22:49:15 +01001622
1623 spin_unlock_irqrestore(&pDevice->lock, flags);
1624
Forest Bond92b96792009-06-13 07:38:31 -04001625 return CMD_STATUS_PENDING;
1626}
1627
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001628CMD_STATUS csBeacon_xmit(struct vnt_private *pDevice,
1629 struct vnt_tx_mgmt *pPacket)
Forest Bond92b96792009-06-13 07:38:31 -04001630{
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001631 struct vnt_beacon_buffer *pTX_Buffer;
Malcolm Priestleyc7c57b22013-11-24 13:25:25 +00001632 struct vnt_tx_short_buf_head *short_head;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001633 u32 cbFrameSize = pPacket->cbMPDULen + WLAN_FCS_LEN;
1634 u32 cbHeaderSize = 0;
Andres More1cac4a42013-03-18 20:33:50 -05001635 struct ieee80211_hdr *pMACHeader;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001636 u16 wCurrentRate;
1637 u32 cbFrameBodySize;
1638 u32 cbReqCount;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001639 struct vnt_usb_send_context *pContext;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001640 CMD_STATUS status;
Forest Bond92b96792009-06-13 07:38:31 -04001641
Malcolm Priestleyaceaf012013-11-26 19:06:35 +00001642 pContext = s_vGetFreeContext(pDevice);
Forest Bond92b96792009-06-13 07:38:31 -04001643 if (NULL == pContext) {
1644 status = CMD_STATUS_RESOURCES;
1645 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ManagementSend TX...NO CONTEXT!\n");
1646 return status ;
1647 }
Malcolm Priestley01f865b2013-08-15 19:40:08 +01001648
Malcolm Priestley30a05b32014-05-15 22:49:11 +01001649 pTX_Buffer = (struct vnt_beacon_buffer *)&pContext->data[0];
Malcolm Priestleyc7c57b22013-11-24 13:25:25 +00001650 short_head = &pTX_Buffer->short_head;
Forest Bond92b96792009-06-13 07:38:31 -04001651
1652 cbFrameBodySize = pPacket->cbPayloadLen;
1653
Malcolm Priestleyc7c57b22013-11-24 13:25:25 +00001654 cbHeaderSize = sizeof(struct vnt_tx_short_buf_head);
Forest Bond92b96792009-06-13 07:38:31 -04001655
Malcolm Priestleyc7c57b22013-11-24 13:25:25 +00001656 if (pDevice->byBBType == BB_TYPE_11A) {
1657 wCurrentRate = RATE_6M;
1658
1659 /* Get SignalField,ServiceField,Length */
1660 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate,
1661 PK_TYPE_11A, &short_head->ab);
1662
1663 /* Get Duration and TimeStampOff */
1664 short_head->duration = s_uGetDataDuration(pDevice,
1665 PK_TYPE_11A, false);
1666 short_head->time_stamp_off =
1667 vnt_time_stamp_off(pDevice, wCurrentRate);
1668 } else {
1669 wCurrentRate = RATE_1M;
1670 short_head->fifo_ctl |= FIFOCTL_11B;
1671
1672 /* Get SignalField,ServiceField,Length */
1673 BBvCalculateParameter(pDevice, cbFrameSize, wCurrentRate,
1674 PK_TYPE_11B, &short_head->ab);
1675
1676 /* Get Duration and TimeStampOff */
1677 short_head->duration = s_uGetDataDuration(pDevice,
Malcolm Priestley6b5ad9d2013-08-21 22:16:04 +01001678 PK_TYPE_11B, false);
Malcolm Priestleyc7c57b22013-11-24 13:25:25 +00001679 short_head->time_stamp_off =
1680 vnt_time_stamp_off(pDevice, wCurrentRate);
1681 }
1682
Forest Bond92b96792009-06-13 07:38:31 -04001683
Malcolm Priestley0b71fe32013-11-24 13:27:32 +00001684 /* Generate Beacon Header */
1685 pMACHeader = &pTX_Buffer->hdr;
Forest Bond92b96792009-06-13 07:38:31 -04001686
Malcolm Priestley0b71fe32013-11-24 13:27:32 +00001687 memcpy(pMACHeader, pPacket->p80211Header, pPacket->cbMPDULen);
1688
1689 pMACHeader->duration_id = 0;
1690 pMACHeader->seq_ctrl = cpu_to_le16(pDevice->wSeqCounter << 4);
1691 pDevice->wSeqCounter++;
1692 if (pDevice->wSeqCounter > 0x0fff)
1693 pDevice->wSeqCounter = 0;
Forest Bond92b96792009-06-13 07:38:31 -04001694
1695 cbReqCount = cbHeaderSize + WLAN_HDR_ADDR3_LEN + cbFrameBodySize;
1696
Malcolm Priestleyfad8e4a2014-03-22 09:01:29 +00001697 pTX_Buffer->tx_byte_count = cpu_to_le16((u16)cbReqCount);
Andres Moreb902fbf2013-02-25 20:32:51 -05001698 pTX_Buffer->byPKTNO = (u8) (((wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Forest Bond92b96792009-06-13 07:38:31 -04001699 pTX_Buffer->byType = 0x01;
1700
Malcolm Priestley30a05b32014-05-15 22:49:11 +01001701 pContext->skb = NULL;
1702 pContext->type = CONTEXT_MGMT_PACKET;
1703 pContext->buf_len = (u16)cbReqCount + 4; /* USB header */
Forest Bond92b96792009-06-13 07:38:31 -04001704
1705 PIPEnsSendBulkOut(pDevice,pContext);
1706 return CMD_STATUS_PENDING;
1707
1708}
1709
Forest Bond92b96792009-06-13 07:38:31 -04001710//TYPE_AC0DMA data tx
1711/*
1712 * Description:
1713 * Tx packet via AC0DMA(DMA1)
1714 *
1715 * Parameters:
1716 * In:
1717 * pDevice - Pointer to the adapter
1718 * skb - Pointer to tx skb packet
1719 * Out:
1720 * void
1721 *
1722 * Return Value: NULL
1723 */
1724
Malcolm Priestley05cc6172014-04-30 21:31:12 +01001725int nsDMA_tx_packet(struct vnt_private *pDevice, struct sk_buff *skb)
Forest Bond92b96792009-06-13 07:38:31 -04001726{
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001727 struct net_device_stats *pStats = &pDevice->stats;
1728 struct vnt_manager *pMgmt = &pDevice->vnt_mgmt;
Malcolm Priestleyf39c0d82013-08-15 19:34:37 +01001729 struct vnt_tx_buffer *pTX_Buffer;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001730 u32 BytesToWrite = 0, uHeaderLen = 0;
1731 u32 uNodeIndex = 0;
1732 u8 byMask[8] = {1, 2, 4, 8, 0x10, 0x20, 0x40, 0x80};
1733 u16 wAID;
1734 u8 byPktType;
Andres Moree269fc22013-02-12 20:36:29 -05001735 int bNeedEncryption = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001736 PSKeyItem pTransmitKey = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001737 int ii;
Andres Moree269fc22013-02-12 20:36:29 -05001738 int bTKIP_UseGTK = false;
1739 int bNeedDeAuth = false;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001740 u8 *pbyBSSID;
Andres Moree269fc22013-02-12 20:36:29 -05001741 int bNodeExist = false;
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +01001742 struct vnt_usb_send_context *pContext;
Andres Moredfdcc422013-02-12 20:36:28 -05001743 bool fConvertedPacket;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +00001744 u32 status;
1745 u16 wKeepRate = pDevice->wCurrentRate;
Andres Moree269fc22013-02-12 20:36:29 -05001746 int bTxeapol_key = false;
Forest Bond92b96792009-06-13 07:38:31 -04001747
Forest Bond92b96792009-06-13 07:38:31 -04001748 if (pMgmt->eCurrMode == WMAC_MODE_ESS_AP) {
1749
1750 if (pDevice->uAssocCount == 0) {
1751 dev_kfree_skb_irq(skb);
1752 return 0;
1753 }
1754
Andres Moreb902fbf2013-02-25 20:32:51 -05001755 if (is_multicast_ether_addr((u8 *)(skb->data))) {
Forest Bond92b96792009-06-13 07:38:31 -04001756 uNodeIndex = 0;
Andres More4e9b5e22013-02-12 20:36:30 -05001757 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04001758 if (pMgmt->sNodeDBTable[0].bPSEnable) {
1759
1760 skb_queue_tail(&(pMgmt->sNodeDBTable[0].sTxPSQueue), skb);
1761 pMgmt->sNodeDBTable[0].wEnQueueCnt++;
1762 // set tx map
1763 pMgmt->abyPSTxMap[0] |= byMask[0];
1764 return 0;
1765 }
Masanari Iida93184692012-08-13 21:21:50 +09001766 // multicast/broadcast data rate
Forest Bond92b96792009-06-13 07:38:31 -04001767
1768 if (pDevice->byBBType != BB_TYPE_11A)
1769 pDevice->wCurrentRate = RATE_2M;
1770 else
1771 pDevice->wCurrentRate = RATE_24M;
1772 // long preamble type
1773 pDevice->byPreambleType = PREAMBLE_SHORT;
1774
1775 }else {
1776
Andres Moreb902fbf2013-02-25 20:32:51 -05001777 if (BSSbIsSTAInNodeDB(pDevice, (u8 *)(skb->data), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04001778
1779 if (pMgmt->sNodeDBTable[uNodeIndex].bPSEnable) {
1780
1781 skb_queue_tail(&pMgmt->sNodeDBTable[uNodeIndex].sTxPSQueue, skb);
1782
1783 pMgmt->sNodeDBTable[uNodeIndex].wEnQueueCnt++;
1784 // set tx map
1785 wAID = pMgmt->sNodeDBTable[uNodeIndex].wAID;
1786 pMgmt->abyPSTxMap[wAID >> 3] |= byMask[wAID & 7];
1787 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "Set:pMgmt->abyPSTxMap[%d]= %d\n",
1788 (wAID >> 3), pMgmt->abyPSTxMap[wAID >> 3]);
1789
1790 return 0;
1791 }
1792 // AP rate decided from node
1793 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
1794 // tx preamble decided from node
1795
1796 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
1797 pDevice->byPreambleType = pDevice->byShortPreamble;
1798
1799 }else {
1800 pDevice->byPreambleType = PREAMBLE_LONG;
1801 }
Andres More4e9b5e22013-02-12 20:36:30 -05001802 bNodeExist = true;
Forest Bond92b96792009-06-13 07:38:31 -04001803 }
1804 }
1805
Andres Moree269fc22013-02-12 20:36:29 -05001806 if (bNodeExist == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001807 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Unknown STA not found in node DB \n");
1808 dev_kfree_skb_irq(skb);
1809 return 0;
1810 }
1811 }
1812
Tobias Klauser838c2d62014-04-25 11:53:58 +02001813 memcpy(&pDevice->sTxEthHeader, skb->data, ETH_HLEN);
Forest Bond92b96792009-06-13 07:38:31 -04001814
1815//mike add:station mode check eapol-key challenge--->
1816{
Andres Moreb902fbf2013-02-25 20:32:51 -05001817 u8 Protocol_Version; //802.1x Authentication
1818 u8 Packet_Type; //802.1x Authentication
1819 u8 Descriptor_type;
Andres More3eaca0d2013-02-25 20:32:52 -05001820 u16 Key_info;
Forest Bond92b96792009-06-13 07:38:31 -04001821
Charles Clément21ec51f2010-05-18 10:08:14 -07001822 Protocol_Version = skb->data[ETH_HLEN];
1823 Packet_Type = skb->data[ETH_HLEN+1];
1824 Descriptor_type = skb->data[ETH_HLEN+1+1+2];
1825 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 -05001826 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01001827 /* 802.1x OR eapol-key challenge frame transfer */
1828 if (((Protocol_Version == 1) || (Protocol_Version == 2)) &&
1829 (Packet_Type == 3)) {
Andres More4e9b5e22013-02-12 20:36:30 -05001830 bTxeapol_key = true;
Forest Bond92b96792009-06-13 07:38:31 -04001831 if(!(Key_info & BIT3) && //WPA or RSN group-key challenge
1832 (Key_info & BIT8) && (Key_info & BIT9)) { //send 2/2 key
1833 if(Descriptor_type==254) {
Andres More4e9b5e22013-02-12 20:36:30 -05001834 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04001835 PRINT_K("WPA ");
1836 }
1837 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001838 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04001839 PRINT_K("WPA2(re-keying) ");
1840 }
1841 PRINT_K("Authentication completed!!\n");
1842 }
Justin P. Mattocka0a1f612012-08-26 08:16:43 -07001843 else if((Key_info & BIT3) && (Descriptor_type==2) && //RSN pairwise-key challenge
Forest Bond92b96792009-06-13 07:38:31 -04001844 (Key_info & BIT8) && (Key_info & BIT9)) {
Andres More4e9b5e22013-02-12 20:36:30 -05001845 pDevice->fWPA_Authened = true;
Forest Bond92b96792009-06-13 07:38:31 -04001846 PRINT_K("WPA2 Authentication completed!!\n");
1847 }
1848 }
1849 }
1850}
1851//mike add:station mode check eapol-key challenge<---
1852
Andres More4e9b5e22013-02-12 20:36:30 -05001853 if (pDevice->bEncryptionEnable == true) {
1854 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04001855 // get Transmit key
1856 do {
1857 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) &&
1858 (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
1859 pbyBSSID = pDevice->abyBSSID;
1860 // get pairwise key
Andres Moree269fc22013-02-12 20:36:29 -05001861 if (KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001862 // get group key
Andres More4e9b5e22013-02-12 20:36:30 -05001863 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == true) {
1864 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001865 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
1866 break;
1867 }
1868 } else {
1869 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get PTK.\n");
1870 break;
1871 }
1872 }else if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001873 /* TO_DS = 0 and FROM_DS = 0 --> 802.11 MAC Address1 */
1874 pbyBSSID = pDevice->sTxEthHeader.h_dest;
Forest Bond92b96792009-06-13 07:38:31 -04001875 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS Serach Key: \n");
1876 for (ii = 0; ii< 6; ii++)
1877 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"%x \n", *(pbyBSSID+ii));
1878 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"\n");
1879
1880 // get pairwise key
Andres More4e9b5e22013-02-12 20:36:30 -05001881 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, PAIRWISE_KEY, &pTransmitKey) == true)
Forest Bond92b96792009-06-13 07:38:31 -04001882 break;
1883 }
1884 // get group key
1885 pbyBSSID = pDevice->abyBroadcastAddr;
Andres Moree269fc22013-02-12 20:36:29 -05001886 if(KeybGetTransmitKey(&(pDevice->sKey), pbyBSSID, GROUP_KEY, &pTransmitKey) == false) {
Forest Bond92b96792009-06-13 07:38:31 -04001887 pTransmitKey = NULL;
1888 if (pMgmt->eCurrMode == WMAC_MODE_IBSS_STA) {
1889 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
1890 }
1891 else
1892 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"NOT IBSS and KEY is NULL. [%d]\n", pMgmt->eCurrMode);
1893 } else {
Andres More4e9b5e22013-02-12 20:36:30 -05001894 bTKIP_UseGTK = true;
Forest Bond92b96792009-06-13 07:38:31 -04001895 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG"Get GTK.\n");
1896 }
Andres Moree269fc22013-02-12 20:36:29 -05001897 } while(false);
Forest Bond92b96792009-06-13 07:38:31 -04001898 }
1899
Andres Moreb902fbf2013-02-25 20:32:51 -05001900 byPktType = (u8)pDevice->byPacketType;
Forest Bond92b96792009-06-13 07:38:31 -04001901
1902 if (pDevice->bFixRate) {
1903 if (pDevice->byBBType == BB_TYPE_11B) {
1904 if (pDevice->uConnectionRate >= RATE_11M) {
1905 pDevice->wCurrentRate = RATE_11M;
1906 } else {
Andres More3eaca0d2013-02-25 20:32:52 -05001907 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04001908 }
1909 } else {
1910 if ((pDevice->byBBType == BB_TYPE_11A) &&
1911 (pDevice->uConnectionRate <= RATE_6M)) {
1912 pDevice->wCurrentRate = RATE_6M;
1913 } else {
1914 if (pDevice->uConnectionRate >= RATE_54M)
1915 pDevice->wCurrentRate = RATE_54M;
1916 else
Andres More3eaca0d2013-02-25 20:32:52 -05001917 pDevice->wCurrentRate = (u16)pDevice->uConnectionRate;
Forest Bond92b96792009-06-13 07:38:31 -04001918 }
1919 }
1920 }
1921 else {
Malcolm Priestleya0ad2772014-02-15 21:56:20 +00001922 if (pDevice->op_mode == NL80211_IFTYPE_ADHOC) {
Forest Bond92b96792009-06-13 07:38:31 -04001923 // Adhoc Tx rate decided from node DB
Andres Moreceb8c5d2013-03-18 20:33:49 -05001924 if (is_multicast_ether_addr(pDevice->sTxEthHeader.h_dest)) {
Forest Bond92b96792009-06-13 07:38:31 -04001925 // Multicast use highest data rate
1926 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
1927 // preamble type
1928 pDevice->byPreambleType = pDevice->byShortPreamble;
1929 }
1930 else {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001931 if (BSSbIsSTAInNodeDB(pDevice, &(pDevice->sTxEthHeader.h_dest[0]), &uNodeIndex)) {
Forest Bond92b96792009-06-13 07:38:31 -04001932 pDevice->wCurrentRate = pMgmt->sNodeDBTable[uNodeIndex].wTxDataRate;
1933 if (pMgmt->sNodeDBTable[uNodeIndex].bShortPreamble) {
1934 pDevice->byPreambleType = pDevice->byShortPreamble;
1935
1936 }
1937 else {
1938 pDevice->byPreambleType = PREAMBLE_LONG;
1939 }
1940 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Found Node Index is [%d] Tx Data Rate:[%d]\n",uNodeIndex, pDevice->wCurrentRate);
1941 }
1942 else {
1943 if (pDevice->byBBType != BB_TYPE_11A)
1944 pDevice->wCurrentRate = RATE_2M;
1945 else
1946 pDevice->wCurrentRate = RATE_24M; // refer to vMgrCreateOwnIBSS()'s
1947 // abyCurrExtSuppRates[]
1948 pDevice->byPreambleType = PREAMBLE_SHORT;
1949 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Not Found Node use highest basic Rate.....\n");
1950 }
1951 }
1952 }
Malcolm Priestleya0ad2772014-02-15 21:56:20 +00001953 if (pDevice->op_mode == NL80211_IFTYPE_STATION) {
Forest Bond92b96792009-06-13 07:38:31 -04001954 // Infra STA rate decided from AP Node, index = 0
1955 pDevice->wCurrentRate = pMgmt->sNodeDBTable[0].wTxDataRate;
1956 }
1957 }
1958
Andres Moreceb8c5d2013-03-18 20:33:49 -05001959 if (pDevice->sTxEthHeader.h_proto == cpu_to_be16(ETH_P_PAE)) {
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01001960 if (pDevice->byBBType != BB_TYPE_11A) {
1961 pDevice->wCurrentRate = RATE_1M;
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01001962 pDevice->byTopCCKBasicRate = RATE_1M;
1963 pDevice->byTopOFDMBasicRate = RATE_6M;
1964 } else {
1965 pDevice->wCurrentRate = RATE_6M;
Malcolm Priestleyaa209ee2012-08-29 23:08:21 +01001966 pDevice->byTopCCKBasicRate = RATE_1M;
1967 pDevice->byTopOFDMBasicRate = RATE_6M;
1968 }
1969 }
Forest Bond92b96792009-06-13 07:38:31 -04001970
Andres More0cbd8d92010-05-06 20:34:29 -03001971 DBG_PRT(MSG_LEVEL_DEBUG,
1972 KERN_INFO "dma_tx: pDevice->wCurrentRate = %d\n",
1973 pDevice->wCurrentRate);
Forest Bond92b96792009-06-13 07:38:31 -04001974
1975 if (wKeepRate != pDevice->wCurrentRate) {
Andres More0cbd8d92010-05-06 20:34:29 -03001976 bScheduleCommand((void *) pDevice, WLAN_CMD_SETPOWER, NULL);
Forest Bond92b96792009-06-13 07:38:31 -04001977 }
1978
1979 if (pDevice->wCurrentRate <= RATE_11M) {
1980 byPktType = PK_TYPE_11B;
1981 }
1982
Andres More4e9b5e22013-02-12 20:36:30 -05001983 if (bNeedEncryption == true) {
Andres Moreceb8c5d2013-03-18 20:33:49 -05001984 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"ntohs Pkt Type=%04x\n", ntohs(pDevice->sTxEthHeader.h_proto));
1985 if ((pDevice->sTxEthHeader.h_proto) == cpu_to_be16(ETH_P_PAE)) {
Andres Moree269fc22013-02-12 20:36:29 -05001986 bNeedEncryption = false;
Andres Moreceb8c5d2013-03-18 20:33:49 -05001987 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Pkt Type=%04x\n", (pDevice->sTxEthHeader.h_proto));
Forest Bond92b96792009-06-13 07:38:31 -04001988 if ((pMgmt->eCurrMode == WMAC_MODE_ESS_STA) && (pMgmt->eCurrState == WMAC_STATE_ASSOC)) {
1989 if (pTransmitKey == NULL) {
1990 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Don't Find TX KEY\n");
1991 }
1992 else {
Andres More4e9b5e22013-02-12 20:36:30 -05001993 if (bTKIP_UseGTK == true) {
Forest Bond92b96792009-06-13 07:38:31 -04001994 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"error: KEY is GTK!!~~\n");
1995 }
1996 else {
Malcolm Priestleyb4dc03a2012-11-11 15:45:52 +00001997 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"Find PTK [%X]\n",
1998 pTransmitKey->dwKeyIndex);
Andres More4e9b5e22013-02-12 20:36:30 -05001999 bNeedEncryption = true;
Forest Bond92b96792009-06-13 07:38:31 -04002000 }
2001 }
2002 }
Forest Bond92b96792009-06-13 07:38:31 -04002003 }
2004 else {
2005
Forest Bond92b96792009-06-13 07:38:31 -04002006 if (pTransmitKey == NULL) {
2007 DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"return no tx key\n");
2008 dev_kfree_skb_irq(skb);
2009 pStats->tx_dropped++;
2010 return STATUS_FAILURE;
2011 }
Forest Bond92b96792009-06-13 07:38:31 -04002012 }
2013 }
2014
Malcolm Priestleyb674ee12014-05-15 22:49:10 +01002015 pContext = s_vGetFreeContext(pDevice);
2016 if (!pContext) {
2017 DBG_PRT(MSG_LEVEL_DEBUG, KERN_DEBUG" pContext == NULL\n");
2018 dev_kfree_skb_irq(skb);
2019 return STATUS_RESOURCES;
2020 }
2021
Malcolm Priestley30a05b32014-05-15 22:49:11 +01002022 pTX_Buffer = (struct vnt_tx_buffer *)&pContext->data[0];
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002023
Forest Bond92b96792009-06-13 07:38:31 -04002024 fConvertedPacket = s_bPacketToWirelessUsb(pDevice, byPktType,
Malcolm Priestleyd0a2b8f2013-08-15 19:37:04 +01002025 pTX_Buffer, bNeedEncryption,
Malcolm Priestley05cc6172014-04-30 21:31:12 +01002026 skb->len, &pDevice->sTxEthHeader,
Andres Moreb902fbf2013-02-25 20:32:51 -05002027 (u8 *)skb->data, pTransmitKey, uNodeIndex,
Forest Bond92b96792009-06-13 07:38:31 -04002028 pDevice->wCurrentRate,
2029 &uHeaderLen, &BytesToWrite
2030 );
2031
Malcolm Priestley30a05b32014-05-15 22:49:11 +01002032 if (fConvertedPacket == false) {
2033 pContext->in_use = false;
2034 dev_kfree_skb_irq(skb);
2035 return STATUS_FAILURE;
2036 }
Forest Bond92b96792009-06-13 07:38:31 -04002037
Andres More4e9b5e22013-02-12 20:36:30 -05002038 if ( pDevice->bEnablePSMode == true ) {
Forest Bond92b96792009-06-13 07:38:31 -04002039 if ( !pDevice->bPSModeTxBurst ) {
Andres More0cbd8d92010-05-06 20:34:29 -03002040 bScheduleCommand((void *) pDevice,
2041 WLAN_CMD_MAC_DISPOWERSAVING,
2042 NULL);
Andres More4e9b5e22013-02-12 20:36:30 -05002043 pDevice->bPSModeTxBurst = true;
Forest Bond92b96792009-06-13 07:38:31 -04002044 }
2045 }
2046
Andres Moreb902fbf2013-02-25 20:32:51 -05002047 pTX_Buffer->byPKTNO = (u8) (((pDevice->wCurrentRate<<4) &0x00F0) | ((pDevice->wSeqCounter - 1) & 0x000F));
Malcolm Priestleyca347592014-03-22 09:01:28 +00002048 pTX_Buffer->tx_byte_count = cpu_to_le16((u16)BytesToWrite);
Forest Bond92b96792009-06-13 07:38:31 -04002049
Malcolm Priestley30a05b32014-05-15 22:49:11 +01002050 pContext->skb = skb;
2051 pContext->type = CONTEXT_DATA_PACKET;
2052 pContext->buf_len = (u16)BytesToWrite + 4 ; /* USB header */
Forest Bond92b96792009-06-13 07:38:31 -04002053
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002054 s_vSaveTxPktInfo(pDevice, (u8)(pTX_Buffer->byPKTNO & 0x0F),
Malcolm Priestley81aec602014-02-27 23:06:11 +00002055 &pDevice->sTxEthHeader.h_dest[0],
Malcolm Priestleyd66caad2013-09-17 19:54:35 +01002056 (u16)(BytesToWrite-uHeaderLen),
2057 pTX_Buffer->fifo_head.wFIFOCtl);
Forest Bond92b96792009-06-13 07:38:31 -04002058
2059 status = PIPEnsSendBulkOut(pDevice,pContext);
2060
Andres More4e9b5e22013-02-12 20:36:30 -05002061 if (bNeedDeAuth == true) {
Andres More3eaca0d2013-02-25 20:32:52 -05002062 u16 wReason = WLAN_MGMT_REASON_MIC_FAILURE;
Forest Bond92b96792009-06-13 07:38:31 -04002063
Andres Moreb902fbf2013-02-25 20:32:51 -05002064 bScheduleCommand((void *) pDevice, WLAN_CMD_DEAUTH, (u8 *) &wReason);
Forest Bond92b96792009-06-13 07:38:31 -04002065 }
2066
Malcolm Priestley30a05b32014-05-15 22:49:11 +01002067 if (status != STATUS_PENDING) {
2068 pContext->in_use = false;
2069 dev_kfree_skb_irq(skb);
2070 return STATUS_FAILURE;
2071 }
Forest Bond92b96792009-06-13 07:38:31 -04002072
Malcolm Priestley30a05b32014-05-15 22:49:11 +01002073
2074 return 0;
Forest Bond92b96792009-06-13 07:38:31 -04002075}