blob: 7c92d1b9917cf37f7ffc49532b828e2cb7325245 [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:
Malcolm Priestley9ec7f2d2014-07-10 19:56:15 +010028 * vnt_generate_tx_parameter - Generate tx dma required parameter.
Malcolm Priestley435ae3b2014-07-11 01:08:22 +010029 * vnt_get_duration_le - get tx data required duration
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +010030 * vnt_get_rtscts_duration_le- get rtx/cts required duration
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +010031 * vnt_get_rtscts_rsvtime_le- get rts/cts reserved time
Malcolm Priestley3815a272014-07-11 01:08:24 +010032 * vnt_get_rsvtime- get frame reserved time
Malcolm Priestley4f316682014-07-10 19:56:17 +010033 * vnt_fill_cts_head- fulfill CTS ctl header
Forest Bond92b96792009-06-13 07:38:31 -040034 *
35 * Revision History:
36 *
37 */
38
Forest Bond92b96792009-06-13 07:38:31 -040039#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040040#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040041#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040042#include "mac.h"
Forest Bond92b96792009-06-13 07:38:31 -040043#include "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040044#include "usbpipe.h"
Jim Lieb9d26d602009-08-12 14:54:08 -070045
Malcolm Priestley1a4d45092014-07-11 01:08:25 +010046static const u16 vnt_time_stampoff[2][MAX_RATE] = {
47 {384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23},/* Long Preamble */
48 {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23},/* Short Preamble */
49};
Forest Bond92b96792009-06-13 07:38:31 -040050
Malcolm Priestleye3f31872014-07-11 01:08:26 +010051static const u16 vnt_fb_opt0[2][5] = {
52 {RATE_12M, RATE_18M, RATE_24M, RATE_36M, RATE_48M}, /* fallback_rate0 */
53 {RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, /* fallback_rate1 */
54};
55
Malcolm Priestley2331ba42014-07-11 01:08:27 +010056static const u16 vnt_fb_opt1[2][5] = {
57 {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, /* fallback_rate0 */
58 {RATE_6M , RATE_6M, RATE_12M, RATE_12M, RATE_18M}, /* fallback_rate1 */
59};
Forest Bond92b96792009-06-13 07:38:31 -040060
Forest Bond92b96792009-06-13 07:38:31 -040061#define RTSDUR_BB 0
62#define RTSDUR_BA 1
63#define RTSDUR_AA 2
64#define CTSDUR_BA 3
65#define RTSDUR_BA_F0 4
66#define RTSDUR_AA_F0 5
67#define RTSDUR_BA_F1 6
68#define RTSDUR_AA_F1 7
69#define CTSDUR_BA_F0 8
70#define CTSDUR_BA_F1 9
71#define DATADUR_B 10
72#define DATADUR_A 11
73#define DATADUR_A_F0 12
74#define DATADUR_A_F1 13
75
Malcolm Priestleyaceaf012013-11-26 19:06:35 +000076static struct vnt_usb_send_context
Malcolm Priestleya032b162014-07-11 01:08:28 +010077 *vnt_get_free_context(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -040078{
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000079 struct vnt_usb_send_context *context = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000080 int ii;
Forest Bond92b96792009-06-13 07:38:31 -040081
Malcolm Priestley604631f2014-07-11 01:08:31 +010082 dev_dbg(&priv->usb->dev, "%s\n", __func__);
Forest Bond92b96792009-06-13 07:38:31 -040083
Malcolm Priestley03b7e352014-07-19 12:30:04 +010084 for (ii = 0; ii < priv->num_tx_context; ii++) {
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +010085 if (!priv->tx_context[ii])
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000086 return NULL;
87
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +010088 context = priv->tx_context[ii];
Malcolm Priestley30a05b32014-05-15 22:49:11 +010089 if (context->in_use == false) {
90 context->in_use = true;
91 memset(context->data, 0,
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000092 MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
Malcolm Priestley1622c8f2014-05-31 13:34:58 +010093
94 context->hdr = NULL;
95
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000096 return context;
97 }
98 }
99
Malcolm Priestley03b7e352014-07-19 12:30:04 +0100100 if (ii == priv->num_tx_context)
Malcolm Priestley604631f2014-07-11 01:08:31 +0100101 dev_dbg(&priv->usb->dev, "%s No Free Tx Context\n", __func__);
Malcolm Priestleyaceaf012013-11-26 19:06:35 +0000102
Malcolm Priestley5c851382013-11-26 19:12:38 +0000103 return NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400104}
105
Malcolm Priestleydab085b2014-03-18 19:25:03 +0000106static __le16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100107{
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100108 return cpu_to_le16(vnt_time_stampoff[priv->preamble_type % 2]
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100109 [rate % MAX_RATE]);
110}
111
Malcolm Priestley3815a272014-07-11 01:08:24 +0100112static u32 vnt_get_rsvtime(struct vnt_private *priv, u8 pkt_type,
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000113 u32 frame_length, u16 rate, int need_ack)
Forest Bond92b96792009-06-13 07:38:31 -0400114{
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000115 u32 data_time, ack_time;
Forest Bond92b96792009-06-13 07:38:31 -0400116
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100117 data_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000118 frame_length, rate);
Forest Bond92b96792009-06-13 07:38:31 -0400119
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000120 if (pkt_type == PK_TYPE_11B)
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100121 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100122 14, (u16)priv->top_cck_basic_rate);
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000123 else
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100124 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100125 14, (u16)priv->top_ofdm_basic_rate);
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000126
127 if (need_ack)
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100128 return data_time + priv->sifs + ack_time;
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000129
130 return data_time;
Forest Bond92b96792009-06-13 07:38:31 -0400131}
132
Malcolm Priestley2075f652014-03-18 19:25:07 +0000133static __le16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100134 u32 frame_length, u16 rate, int need_ack)
135{
Malcolm Priestley3815a272014-07-11 01:08:24 +0100136 return cpu_to_le16((u16)vnt_get_rsvtime(priv, pkt_type,
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100137 frame_length, rate, need_ack));
138}
139
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100140static __le16 vnt_get_rtscts_rsvtime_le(struct vnt_private *priv,
Malcolm Priestley3b6cee7be2014-05-25 21:36:27 +0100141 u8 rsv_type, u8 pkt_type, u32 frame_length, u16 current_rate)
Forest Bond92b96792009-06-13 07:38:31 -0400142{
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000143 u32 rrv_time, rts_time, cts_time, ack_time, data_time;
Forest Bond92b96792009-06-13 07:38:31 -0400144
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000145 rrv_time = rts_time = cts_time = ack_time = data_time = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400146
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100147 data_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3b6cee7be2014-05-25 21:36:27 +0100148 frame_length, current_rate);
Forest Bond92b96792009-06-13 07:38:31 -0400149
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000150 if (rsv_type == 0) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100151 rts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100152 pkt_type, 20, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100153 cts_time = ack_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100154 pkt_type, 14, priv->top_cck_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000155 } else if (rsv_type == 1) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100156 rts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100157 pkt_type, 20, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100158 cts_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100159 14, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100160 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100161 14, priv->top_ofdm_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000162 } else if (rsv_type == 2) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100163 rts_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100164 20, priv->top_ofdm_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100165 cts_time = ack_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100166 pkt_type, 14, priv->top_ofdm_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000167 } else if (rsv_type == 3) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100168 cts_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100169 14, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100170 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100171 14, priv->top_ofdm_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000172
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100173 rrv_time = cts_time + ack_time + data_time + 2 * priv->sifs;
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000174
Malcolm Priestley20338012014-03-18 19:25:08 +0000175 return cpu_to_le16((u16)rrv_time);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000176 }
177
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100178 rrv_time = rts_time + cts_time + ack_time + data_time + 3 * priv->sifs;
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000179
180 return cpu_to_le16((u16)rrv_time);
Forest Bond92b96792009-06-13 07:38:31 -0400181}
182
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100183static __le16 vnt_get_duration_le(struct vnt_private *priv,
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100184 u8 pkt_type, int need_ack)
Forest Bond92b96792009-06-13 07:38:31 -0400185{
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100186 u32 ack_time = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400187
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100188 if (need_ack) {
189 if (pkt_type == PK_TYPE_11B)
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100190 ack_time = vnt_get_frame_time(priv->preamble_type,
191 pkt_type, 14, priv->top_cck_basic_rate);
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100192 else
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100193 ack_time = vnt_get_frame_time(priv->preamble_type,
194 pkt_type, 14, priv->top_ofdm_basic_rate);
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100195
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100196 return cpu_to_le16((u16)(priv->sifs + ack_time));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100197 }
Forest Bond92b96792009-06-13 07:38:31 -0400198
Forest Bond92b96792009-06-13 07:38:31 -0400199 return 0;
200}
201
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100202static __le16 vnt_get_rtscts_duration_le(struct vnt_private *priv, u8 dur_type,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100203 u32 frame_length, u8 pkt_type, u16 rate, int need_ack)
Forest Bond92b96792009-06-13 07:38:31 -0400204{
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100205 u32 cts_time = 0, dur_time = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400206
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100207 switch (dur_type) {
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100208 case RTSDUR_BB:
209 case RTSDUR_BA:
210 case RTSDUR_BA_F0:
211 case RTSDUR_BA_F1:
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100212 cts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100213 pkt_type, 14, priv->top_cck_basic_rate);
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100214 dur_time = cts_time + 2 * priv->sifs +
Malcolm Priestley3815a272014-07-11 01:08:24 +0100215 vnt_get_rsvtime(priv, pkt_type,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100216 frame_length, rate, need_ack);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100217 break;
Forest Bond92b96792009-06-13 07:38:31 -0400218
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100219 case RTSDUR_AA:
220 case RTSDUR_AA_F0:
221 case RTSDUR_AA_F1:
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100222 cts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100223 pkt_type, 14, priv->top_ofdm_basic_rate);
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100224 dur_time = cts_time + 2 * priv->sifs +
Malcolm Priestley3815a272014-07-11 01:08:24 +0100225 vnt_get_rsvtime(priv, pkt_type,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100226 frame_length, rate, need_ack);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100227 break;
Forest Bond92b96792009-06-13 07:38:31 -0400228
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100229 case CTSDUR_BA:
230 case CTSDUR_BA_F0:
231 case CTSDUR_BA_F1:
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100232 dur_time = priv->sifs + vnt_get_rsvtime(priv,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100233 pkt_type, frame_length, rate, need_ack);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100234 break;
Forest Bond92b96792009-06-13 07:38:31 -0400235
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100236 default:
237 break;
238 }
Forest Bond92b96792009-06-13 07:38:31 -0400239
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100240 return cpu_to_le16((u16)dur_time);
Forest Bond92b96792009-06-13 07:38:31 -0400241}
242
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100243static u16 vnt_mac_hdr_pos(struct vnt_usb_send_context *tx_context,
244 struct ieee80211_hdr *hdr)
245{
246 u8 *head = tx_context->data + offsetof(struct vnt_tx_buffer, fifo_head);
247 u8 *hdr_pos = (u8 *)hdr;
248
249 tx_context->hdr = hdr;
250 if (!tx_context->hdr)
251 return 0;
252
253 return (u16)(hdr_pos - head);
254}
255
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100256static u16 vnt_rxtx_datahead_g(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100257 struct vnt_tx_datahead_g *buf)
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100258{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100259
260 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley893cc702014-06-25 21:14:38 +0100261 struct ieee80211_hdr *hdr =
262 (struct ieee80211_hdr *)tx_context->skb->data;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100263 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100264 u16 rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100265 u8 need_ack = tx_context->need_ack;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100266
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100267 /* Get SignalField,ServiceField,Length */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100268 vnt_get_phy_field(priv, frame_len, rate, tx_context->pkt_type, &buf->a);
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100269 vnt_get_phy_field(priv, frame_len, priv->top_cck_basic_rate,
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100270 PK_TYPE_11B, &buf->b);
271
272 /* Get Duration and TimeStamp */
Malcolm Priestley893cc702014-06-25 21:14:38 +0100273 if (ieee80211_is_pspoll(hdr->frame_control)) {
274 __le16 dur = cpu_to_le16(priv->current_aid | BIT(14) | BIT(15));
275
276 buf->duration_a = dur;
277 buf->duration_b = dur;
278 } else {
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100279 buf->duration_a = vnt_get_duration_le(priv,
280 tx_context->pkt_type, need_ack);
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100281 buf->duration_b = vnt_get_duration_le(priv,
Malcolm Priestley893cc702014-06-25 21:14:38 +0100282 PK_TYPE_11B, need_ack);
283 }
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100284
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000285 buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
286 buf->time_stamp_off_b = vnt_time_stamp_off(priv,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100287 priv->top_cck_basic_rate);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100288
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100289 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
290
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000291 return le16_to_cpu(buf->duration_a);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100292}
293
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100294static u16 vnt_rxtx_datahead_g_fb(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100295 struct vnt_tx_datahead_g_fb *buf)
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100296{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100297 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100298 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100299 u16 rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100300 u8 need_ack = tx_context->need_ack;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100301
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100302 /* Get SignalField,ServiceField,Length */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100303 vnt_get_phy_field(priv, frame_len, rate, tx_context->pkt_type, &buf->a);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100304
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100305 vnt_get_phy_field(priv, frame_len, priv->top_cck_basic_rate,
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100306 PK_TYPE_11B, &buf->b);
307
308 /* Get Duration and TimeStamp */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100309 buf->duration_a = vnt_get_duration_le(priv, tx_context->pkt_type,
310 need_ack);
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100311 buf->duration_b = vnt_get_duration_le(priv, PK_TYPE_11B, need_ack);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100312
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100313 buf->duration_a_f0 = vnt_get_duration_le(priv, tx_context->pkt_type,
314 need_ack);
315 buf->duration_a_f1 = vnt_get_duration_le(priv, tx_context->pkt_type,
316 need_ack);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100317
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000318 buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
319 buf->time_stamp_off_b = vnt_time_stamp_off(priv,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100320 priv->top_cck_basic_rate);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100321
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100322 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
323
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000324 return le16_to_cpu(buf->duration_a);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100325}
326
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100327static u16 vnt_rxtx_datahead_a_fb(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100328 struct vnt_tx_datahead_a_fb *buf)
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100329{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100330 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100331 u16 rate = tx_context->tx_rate;
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100332 u8 pkt_type = tx_context->pkt_type;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100333 u8 need_ack = tx_context->need_ack;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100334 u32 frame_len = tx_context->frame_len;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100335
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100336 /* Get SignalField,ServiceField,Length */
Malcolm Priestley205056f2014-06-04 18:25:34 +0100337 vnt_get_phy_field(priv, frame_len, rate, pkt_type, &buf->a);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100338 /* Get Duration and TimeStampOff */
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100339 buf->duration = vnt_get_duration_le(priv, pkt_type, need_ack);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100340
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100341 buf->duration_f0 = vnt_get_duration_le(priv, pkt_type, need_ack);
342 buf->duration_f1 = vnt_get_duration_le(priv, pkt_type, need_ack);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100343
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000344 buf->time_stamp_off = vnt_time_stamp_off(priv, rate);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100345
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100346 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
347
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000348 return le16_to_cpu(buf->duration);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100349}
350
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100351static u16 vnt_rxtx_datahead_ab(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100352 struct vnt_tx_datahead_ab *buf)
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100353{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100354 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley893cc702014-06-25 21:14:38 +0100355 struct ieee80211_hdr *hdr =
356 (struct ieee80211_hdr *)tx_context->skb->data;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100357 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100358 u16 rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100359 u8 need_ack = tx_context->need_ack;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100360
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100361 /* Get SignalField,ServiceField,Length */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100362 vnt_get_phy_field(priv, frame_len, rate,
363 tx_context->pkt_type, &buf->ab);
Malcolm Priestley893cc702014-06-25 21:14:38 +0100364
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100365 /* Get Duration and TimeStampOff */
Malcolm Priestley893cc702014-06-25 21:14:38 +0100366 if (ieee80211_is_pspoll(hdr->frame_control)) {
367 __le16 dur = cpu_to_le16(priv->current_aid | BIT(14) | BIT(15));
368
369 buf->duration = dur;
370 } else {
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100371 buf->duration = vnt_get_duration_le(priv, tx_context->pkt_type,
372 need_ack);
Malcolm Priestley893cc702014-06-25 21:14:38 +0100373 }
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100374
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000375 buf->time_stamp_off = vnt_time_stamp_off(priv, rate);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100376
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100377 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
378
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000379 return le16_to_cpu(buf->duration);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100380}
381
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100382static int vnt_fill_ieee80211_rts(struct vnt_usb_send_context *tx_context,
383 struct ieee80211_rts *rts, __le16 duration)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100384{
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100385 struct ieee80211_hdr *hdr =
386 (struct ieee80211_hdr *)tx_context->skb->data;
387
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100388 rts->duration = duration;
Malcolm Priestleyf4554d32014-03-22 09:01:31 +0000389 rts->frame_control =
390 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100391
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100392 memcpy(rts->ra, hdr->addr1, ETH_ALEN);
393 memcpy(rts->ta, hdr->addr2, ETH_ALEN);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100394
395 return 0;
396}
397
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100398static u16 vnt_rxtx_rts_g_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100399 struct vnt_rts_g *buf)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100400{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100401 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100402 u32 frame_len = tx_context->frame_len;
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100403 u16 rts_frame_len = 20;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100404 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100405 u8 need_ack = tx_context->need_ack;
406
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100407 vnt_get_phy_field(priv, rts_frame_len, priv->top_cck_basic_rate,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100408 PK_TYPE_11B, &buf->b);
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100409 vnt_get_phy_field(priv, rts_frame_len, priv->top_ofdm_basic_rate,
410 tx_context->pkt_type, &buf->a);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100411
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100412 buf->duration_bb = vnt_get_rtscts_duration_le(priv, RTSDUR_BB,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100413 frame_len, PK_TYPE_11B, priv->top_cck_basic_rate, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100414 buf->duration_aa = vnt_get_rtscts_duration_le(priv, RTSDUR_AA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100415 frame_len, tx_context->pkt_type, current_rate, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100416 buf->duration_ba = vnt_get_rtscts_duration_le(priv, RTSDUR_BA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100417 frame_len, tx_context->pkt_type, current_rate, need_ack);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100418
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100419 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration_aa);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100420
Malcolm Priestley798f0602014-07-20 15:33:34 +0100421 return vnt_rxtx_datahead_g(tx_context, &buf->data_head);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100422}
423
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100424static u16 vnt_rxtx_rts_g_fb_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100425 struct vnt_rts_g_fb *buf)
Malcolm Priestleyec917132013-08-26 11:07:46 +0100426{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100427 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100428 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100429 u16 current_rate = tx_context->tx_rate;
Malcolm Priestleyec917132013-08-26 11:07:46 +0100430 u16 rts_frame_len = 20;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100431 u8 need_ack = tx_context->need_ack;
432
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100433 vnt_get_phy_field(priv, rts_frame_len, priv->top_cck_basic_rate,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100434 PK_TYPE_11B, &buf->b);
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100435 vnt_get_phy_field(priv, rts_frame_len, priv->top_ofdm_basic_rate,
436 tx_context->pkt_type, &buf->a);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100437
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100438 buf->duration_bb = vnt_get_rtscts_duration_le(priv, RTSDUR_BB,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100439 frame_len, PK_TYPE_11B, priv->top_cck_basic_rate, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100440 buf->duration_aa = vnt_get_rtscts_duration_le(priv, RTSDUR_AA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100441 frame_len, tx_context->pkt_type, current_rate, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100442 buf->duration_ba = vnt_get_rtscts_duration_le(priv, RTSDUR_BA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100443 frame_len, tx_context->pkt_type, current_rate, need_ack);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100444
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100445 buf->rts_duration_ba_f0 = vnt_get_rtscts_duration_le(priv, RTSDUR_BA_F0,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100446 frame_len, tx_context->pkt_type, priv->tx_rate_fb0, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100447 buf->rts_duration_aa_f0 = vnt_get_rtscts_duration_le(priv, RTSDUR_AA_F0,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100448 frame_len, tx_context->pkt_type, priv->tx_rate_fb0, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100449 buf->rts_duration_ba_f1 = vnt_get_rtscts_duration_le(priv, RTSDUR_BA_F1,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100450 frame_len, tx_context->pkt_type, priv->tx_rate_fb1, need_ack);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100451 buf->rts_duration_aa_f1 = vnt_get_rtscts_duration_le(priv, RTSDUR_AA_F1,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100452 frame_len, tx_context->pkt_type, priv->tx_rate_fb1, need_ack);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100453
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100454 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration_aa);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100455
Malcolm Priestley798f0602014-07-20 15:33:34 +0100456 return vnt_rxtx_datahead_g_fb(tx_context, &buf->data_head);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100457}
458
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100459static u16 vnt_rxtx_rts_ab_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100460 struct vnt_rts_ab *buf)
Malcolm Priestley17126332013-08-26 11:09:38 +0100461{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100462 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100463 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100464 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley17126332013-08-26 11:09:38 +0100465 u16 rts_frame_len = 20;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100466 u8 need_ack = tx_context->need_ack;
467
Malcolm Priestley17126332013-08-26 11:09:38 +0100468
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100469 vnt_get_phy_field(priv, rts_frame_len, priv->top_ofdm_basic_rate,
470 tx_context->pkt_type, &buf->ab);
Malcolm Priestley17126332013-08-26 11:09:38 +0100471
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100472 buf->duration = vnt_get_rtscts_duration_le(priv, RTSDUR_AA, frame_len,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100473 tx_context->pkt_type,
474 current_rate, need_ack);
Malcolm Priestley17126332013-08-26 11:09:38 +0100475
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100476 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration);
Malcolm Priestley17126332013-08-26 11:09:38 +0100477
Malcolm Priestley798f0602014-07-20 15:33:34 +0100478 return vnt_rxtx_datahead_ab(tx_context, &buf->data_head);
Malcolm Priestley17126332013-08-26 11:09:38 +0100479}
480
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100481static u16 vnt_rxtx_rts_a_fb_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100482 struct vnt_rts_a_fb *buf)
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100483{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100484 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100485 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100486 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100487 u16 rts_frame_len = 20;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100488 u8 need_ack = tx_context->need_ack;
489
Malcolm Priestley205056f2014-06-04 18:25:34 +0100490 vnt_get_phy_field(priv, rts_frame_len,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100491 priv->top_ofdm_basic_rate, tx_context->pkt_type, &buf->a);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100492
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100493 buf->duration = vnt_get_rtscts_duration_le(priv, RTSDUR_AA, frame_len,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100494 tx_context->pkt_type,
495 current_rate, need_ack);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100496
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100497 buf->rts_duration_f0 = vnt_get_rtscts_duration_le(priv, RTSDUR_AA_F0,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100498 frame_len, tx_context->pkt_type, priv->tx_rate_fb0, need_ack);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100499
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100500 buf->rts_duration_f1 = vnt_get_rtscts_duration_le(priv, RTSDUR_AA_F1,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100501 frame_len, tx_context->pkt_type, priv->tx_rate_fb1, need_ack);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100502
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100503 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100504
Malcolm Priestley798f0602014-07-20 15:33:34 +0100505 return vnt_rxtx_datahead_a_fb(tx_context, &buf->data_head);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100506}
507
Malcolm Priestley4f316682014-07-10 19:56:17 +0100508static u16 vnt_fill_cts_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100509 union vnt_tx_data_head *head)
Forest Bond92b96792009-06-13 07:38:31 -0400510{
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100511 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100512 u32 frame_len = tx_context->frame_len;
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100513 u32 cts_frame_len = 14;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100514 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100515 u8 need_ack = tx_context->need_ack;
516
Malcolm Priestley27df3eb2013-08-27 11:48:34 +0100517 if (!head)
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100518 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400519
Malcolm Priestleyce7b0db2014-07-10 19:56:03 +0100520 if (tx_context->fb_option) {
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100521 /* Auto Fall back */
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100522 struct vnt_cts_fb *buf = &head->cts_g_fb;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100523 /* Get SignalField,ServiceField,Length */
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100524 vnt_get_phy_field(priv, cts_frame_len,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100525 priv->top_cck_basic_rate, PK_TYPE_11B, &buf->b);
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100526 buf->duration_ba = vnt_get_rtscts_duration_le(priv, CTSDUR_BA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100527 frame_len, tx_context->pkt_type,
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100528 current_rate, need_ack);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100529 /* Get CTSDuration_ba_f0 */
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100530 buf->cts_duration_ba_f0 = vnt_get_rtscts_duration_le(priv,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100531 CTSDUR_BA_F0, frame_len, tx_context->pkt_type,
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100532 priv->tx_rate_fb0, need_ack);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100533 /* Get CTSDuration_ba_f1 */
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100534 buf->cts_duration_ba_f1 = vnt_get_rtscts_duration_le(priv,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100535 CTSDUR_BA_F1, frame_len, tx_context->pkt_type,
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100536 priv->tx_rate_fb1, need_ack);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100537 /* Get CTS Frame body */
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100538 buf->data.duration = buf->duration_ba;
539 buf->data.frame_control =
Malcolm Priestleyd9560ae2014-03-22 09:01:32 +0000540 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
541
Malcolm Priestleyebf9b312014-07-19 12:30:10 +0100542 memcpy(buf->data.ra, priv->current_net_addr, ETH_ALEN);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100543
Malcolm Priestley798f0602014-07-20 15:33:34 +0100544 return vnt_rxtx_datahead_g_fb(tx_context, &buf->data_head);
Malcolm Priestleyc921cc82013-08-20 20:47:49 +0100545 } else {
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100546 struct vnt_cts *buf = &head->cts_g;
Malcolm Priestleyaed387c2013-08-20 22:52:30 +0100547 /* Get SignalField,ServiceField,Length */
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100548 vnt_get_phy_field(priv, cts_frame_len,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100549 priv->top_cck_basic_rate, PK_TYPE_11B, &buf->b);
Malcolm Priestleye34f9db2013-08-13 20:17:11 +0100550 /* Get CTSDuration_ba */
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +0100551 buf->duration_ba = vnt_get_rtscts_duration_le(priv,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100552 CTSDUR_BA, frame_len, tx_context->pkt_type,
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100553 current_rate, need_ack);
Malcolm Priestley14840cd2013-08-05 22:12:42 +0100554 /*Get CTS Frame body*/
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100555 buf->data.duration = buf->duration_ba;
556 buf->data.frame_control =
Malcolm Priestleyd9560ae2014-03-22 09:01:32 +0000557 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
558
Malcolm Priestleyebf9b312014-07-19 12:30:10 +0100559 memcpy(buf->data.ra, priv->current_net_addr, ETH_ALEN);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100560
Malcolm Priestley798f0602014-07-20 15:33:34 +0100561 return vnt_rxtx_datahead_g(tx_context, &buf->data_head);
Forest Bond92b96792009-06-13 07:38:31 -0400562 }
Malcolm Priestley0a0f4b62013-10-01 15:50:24 +0100563
564 return 0;
Forest Bond92b96792009-06-13 07:38:31 -0400565}
566
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100567static u16 vnt_rxtx_rts(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100568 union vnt_tx_head *tx_head, bool need_mic)
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100569{
570 struct vnt_private *priv = tx_context->priv;
571 struct vnt_rrv_time_rts *buf = &tx_head->tx_rts.rts;
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100572 union vnt_tx_data_head *head = &tx_head->tx_rts.tx.head;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100573 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100574 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100575 u8 need_ack = tx_context->need_ack;
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100576
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100577 buf->rts_rrv_time_aa = vnt_get_rtscts_rsvtime_le(priv, 2,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100578 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100579 buf->rts_rrv_time_ba = vnt_get_rtscts_rsvtime_le(priv, 1,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100580 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100581 buf->rts_rrv_time_bb = vnt_get_rtscts_rsvtime_le(priv, 0,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100582 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100583
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100584 buf->rrv_time_a = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100585 frame_len, current_rate,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100586 need_ack);
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100587 buf->rrv_time_b = vnt_rxtx_rsvtime_le16(priv, PK_TYPE_11B, frame_len,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100588 priv->top_cck_basic_rate, need_ack);
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100589
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100590 if (need_mic)
591 head = &tx_head->tx_rts.tx.mic.head;
592
593 if (tx_context->fb_option)
Malcolm Priestley798f0602014-07-20 15:33:34 +0100594 return vnt_rxtx_rts_g_fb_head(tx_context, &head->rts_g_fb);
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100595
Malcolm Priestley798f0602014-07-20 15:33:34 +0100596 return vnt_rxtx_rts_g_head(tx_context, &head->rts_g);
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100597}
598
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100599static u16 vnt_rxtx_cts(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100600 union vnt_tx_head *tx_head, bool need_mic)
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100601{
602 struct vnt_private *priv = tx_context->priv;
603 struct vnt_rrv_time_cts *buf = &tx_head->tx_cts.cts;
Malcolm Priestleyb00cb682014-07-10 19:56:11 +0100604 union vnt_tx_data_head *head = &tx_head->tx_cts.tx.head;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100605 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100606 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100607 u8 need_ack = tx_context->need_ack;
608
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100609 buf->rrv_time_a = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100610 frame_len, current_rate, need_ack);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100611 buf->rrv_time_b = vnt_rxtx_rsvtime_le16(priv, PK_TYPE_11B,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100612 frame_len, priv->top_cck_basic_rate, need_ack);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100613
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100614 buf->cts_rrv_time_ba = vnt_get_rtscts_rsvtime_le(priv, 3,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100615 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100616
Malcolm Priestleyb00cb682014-07-10 19:56:11 +0100617 if (need_mic)
618 head = &tx_head->tx_cts.tx.mic.head;
619
620 /* Fill CTS */
Malcolm Priestley798f0602014-07-20 15:33:34 +0100621 return vnt_fill_cts_head(tx_context, head);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100622}
623
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100624static u16 vnt_rxtx_ab(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100625 union vnt_tx_head *tx_head, bool need_rts, bool need_mic)
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100626{
627 struct vnt_private *priv = tx_context->priv;
628 struct vnt_rrv_time_ab *buf = &tx_head->tx_ab.ab;
Malcolm Priestley681acf62014-07-10 19:56:12 +0100629 union vnt_tx_data_head *head = &tx_head->tx_ab.tx.head;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100630 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100631 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100632 u8 need_ack = tx_context->need_ack;
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100633
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100634 buf->rrv_time = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100635 frame_len, current_rate, need_ack);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100636
Malcolm Priestley681acf62014-07-10 19:56:12 +0100637 if (need_mic)
638 head = &tx_head->tx_ab.tx.mic.head;
639
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100640 if (need_rts) {
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100641 if (tx_context->pkt_type == PK_TYPE_11B)
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100642 buf->rts_rrv_time = vnt_get_rtscts_rsvtime_le(priv, 0,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100643 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100644 else /* PK_TYPE_11A */
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100645 buf->rts_rrv_time = vnt_get_rtscts_rsvtime_le(priv, 2,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100646 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestley681acf62014-07-10 19:56:12 +0100647
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100648 if (tx_context->fb_option &&
649 tx_context->pkt_type == PK_TYPE_11A)
Malcolm Priestley681acf62014-07-10 19:56:12 +0100650 return vnt_rxtx_rts_a_fb_head(tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100651 &head->rts_a_fb);
Malcolm Priestley681acf62014-07-10 19:56:12 +0100652
Malcolm Priestley798f0602014-07-20 15:33:34 +0100653 return vnt_rxtx_rts_ab_head(tx_context, &head->rts_ab);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100654 }
655
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100656 if (tx_context->pkt_type == PK_TYPE_11A)
Malcolm Priestley798f0602014-07-20 15:33:34 +0100657 return vnt_rxtx_datahead_a_fb(tx_context,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100658 &head->data_head_a_fb);
Malcolm Priestley681acf62014-07-10 19:56:12 +0100659
Malcolm Priestley798f0602014-07-20 15:33:34 +0100660 return vnt_rxtx_datahead_ab(tx_context, &head->data_head_ab);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100661}
662
Malcolm Priestley9ec7f2d2014-07-10 19:56:15 +0100663static u16 vnt_generate_tx_parameter(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100664 struct vnt_tx_buffer *tx_buffer,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100665 struct vnt_mic_hdr **mic_hdr, u32 need_mic,
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100666 bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400667{
Forest Bond92b96792009-06-13 07:38:31 -0400668
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100669 if (tx_context->pkt_type == PK_TYPE_11GB ||
670 tx_context->pkt_type == PK_TYPE_11GA) {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100671 if (need_rts) {
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100672 if (need_mic)
Malcolm Priestley92928f12013-10-07 20:14:01 +0100673 *mic_hdr = &tx_buffer->
674 tx_head.tx_rts.tx.mic.hdr;
Malcolm Priestley92928f12013-10-07 20:14:01 +0100675
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100676 return vnt_rxtx_rts(tx_context, &tx_buffer->tx_head,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100677 need_mic);
Malcolm Priestley92928f12013-10-07 20:14:01 +0100678 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100679
Malcolm Priestleyda9ef9f2014-07-10 19:56:13 +0100680 if (need_mic)
681 *mic_hdr = &tx_buffer->tx_head.tx_cts.tx.mic.hdr;
682
Malcolm Priestley798f0602014-07-20 15:33:34 +0100683 return vnt_rxtx_cts(tx_context, &tx_buffer->tx_head, need_mic);
Malcolm Priestleyc12dca02013-10-01 16:03:40 +0100684 }
685
Malcolm Priestleyda9ef9f2014-07-10 19:56:13 +0100686 if (need_mic)
687 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
688
Malcolm Priestley798f0602014-07-20 15:33:34 +0100689 return vnt_rxtx_ab(tx_context, &tx_buffer->tx_head, need_rts, need_mic);
Forest Bond92b96792009-06-13 07:38:31 -0400690}
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100691
692static void vnt_fill_txkey(struct vnt_usb_send_context *tx_context,
693 u8 *key_buffer, struct ieee80211_key_conf *tx_key, struct sk_buff *skb,
694 u16 payload_len, struct vnt_mic_hdr *mic_hdr)
695{
696 struct ieee80211_hdr *hdr = tx_context->hdr;
697 struct ieee80211_key_seq seq;
698 u8 *iv = ((u8 *)hdr + ieee80211_get_hdrlen_from_skb(skb));
699
700 /* strip header and icv len from payload */
701 payload_len -= ieee80211_get_hdrlen_from_skb(skb);
702 payload_len -= tx_key->icv_len;
703
704 switch (tx_key->cipher) {
705 case WLAN_CIPHER_SUITE_WEP40:
706 case WLAN_CIPHER_SUITE_WEP104:
707 memcpy(key_buffer, iv, 3);
708 memcpy(key_buffer + 3, tx_key->key, tx_key->keylen);
709
710 if (tx_key->keylen == WLAN_KEY_LEN_WEP40) {
711 memcpy(key_buffer + 8, iv, 3);
712 memcpy(key_buffer + 11,
713 tx_key->key, WLAN_KEY_LEN_WEP40);
714 }
715
716 break;
717 case WLAN_CIPHER_SUITE_TKIP:
718 ieee80211_get_tkip_p2k(tx_key, skb, key_buffer);
719
720 break;
721 case WLAN_CIPHER_SUITE_CCMP:
722
723 if (!mic_hdr)
724 return;
725
726 mic_hdr->id = 0x59;
727 mic_hdr->payload_len = cpu_to_be16(payload_len);
728 memcpy(mic_hdr->mic_addr2, hdr->addr2, ETH_ALEN);
729
730 ieee80211_get_key_tx_seq(tx_key, &seq);
731
Malcolm Priestley79f976d2014-06-28 23:55:39 +0100732 memcpy(mic_hdr->ccmp_pn, seq.ccmp.pn, IEEE80211_CCMP_PN_LEN);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100733
734 if (ieee80211_has_a4(hdr->frame_control))
735 mic_hdr->hlen = cpu_to_be16(28);
736 else
737 mic_hdr->hlen = cpu_to_be16(22);
738
739 memcpy(mic_hdr->addr1, hdr->addr1, ETH_ALEN);
740 memcpy(mic_hdr->addr2, hdr->addr2, ETH_ALEN);
741 memcpy(mic_hdr->addr3, hdr->addr3, ETH_ALEN);
742
743 mic_hdr->frame_control = cpu_to_le16(
744 le16_to_cpu(hdr->frame_control) & 0xc78f);
745 mic_hdr->seq_ctrl = cpu_to_le16(
746 le16_to_cpu(hdr->seq_ctrl) & 0xf);
747
748 if (ieee80211_has_a4(hdr->frame_control))
749 memcpy(mic_hdr->addr4, hdr->addr4, ETH_ALEN);
750
751
752 memcpy(key_buffer, tx_key->key, WLAN_KEY_LEN_CCMP);
753
754 break;
755 default:
756 break;
757 }
758
759}
760
761int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
762{
763 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
764 struct ieee80211_tx_rate *tx_rate = &info->control.rates[0];
765 struct ieee80211_rate *rate;
766 struct ieee80211_key_conf *tx_key;
767 struct ieee80211_hdr *hdr;
768 struct vnt_mic_hdr *mic_hdr = NULL;
769 struct vnt_tx_buffer *tx_buffer;
770 struct vnt_tx_fifo_head *tx_buffer_head;
771 struct vnt_usb_send_context *tx_context;
772 unsigned long flags;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100773 u16 tx_bytes, tx_header_size, tx_body_size, current_rate, duration_id;
774 u8 pkt_type, fb_option = AUTO_FB_NONE;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100775 bool need_rts = false, is_pspoll = false;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100776 bool need_mic = false;
777
778 hdr = (struct ieee80211_hdr *)(skb->data);
779
780 rate = ieee80211_get_tx_rate(priv->hw, info);
781
782 current_rate = rate->hw_value;
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100783 if (priv->current_rate != current_rate &&
Malcolm Priestley5091d962014-07-05 19:24:23 +0100784 !(priv->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)) {
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100785 priv->current_rate = current_rate;
Malcolm Priestley57981a62014-07-13 10:42:50 +0100786 vnt_schedule_command(priv, WLAN_CMD_SETPOWER);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100787 }
788
789 if (current_rate > RATE_11M)
Malcolm Priestleye12471d2014-07-20 15:33:12 +0100790 pkt_type = priv->packet_type;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100791 else
792 pkt_type = PK_TYPE_11B;
793
794 spin_lock_irqsave(&priv->lock, flags);
795
Malcolm Priestleya032b162014-07-11 01:08:28 +0100796 tx_context = vnt_get_free_context(priv);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100797 if (!tx_context) {
798 dev_dbg(&priv->usb->dev, "%s No free context\n", __func__);
799 spin_unlock_irqrestore(&priv->lock, flags);
800 return -ENOMEM;
801 }
802
803 tx_context->skb = skb;
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100804 tx_context->pkt_type = pkt_type;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100805 tx_context->need_ack = false;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100806 tx_context->frame_len = skb->len + 4;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100807 tx_context->tx_rate = current_rate;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100808
809 spin_unlock_irqrestore(&priv->lock, flags);
810
811 tx_buffer = (struct vnt_tx_buffer *)tx_context->data;
812 tx_buffer_head = &tx_buffer->fifo_head;
813 tx_body_size = skb->len;
814
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100815 /*Set fifo controls */
816 if (pkt_type == PK_TYPE_11A)
817 tx_buffer_head->wFIFOCtl = 0;
818 else if (pkt_type == PK_TYPE_11B)
819 tx_buffer_head->wFIFOCtl = FIFOCTL_11B;
820 else if (pkt_type == PK_TYPE_11GB)
821 tx_buffer_head->wFIFOCtl = FIFOCTL_11GB;
822 else if (pkt_type == PK_TYPE_11GA)
823 tx_buffer_head->wFIFOCtl = FIFOCTL_11GA;
824
825 if (!ieee80211_is_data(hdr->frame_control)) {
826 tx_buffer_head->wFIFOCtl |= (FIFOCTL_GENINT |
827 FIFOCTL_ISDMA0);
828 tx_buffer_head->wFIFOCtl |= FIFOCTL_TMOEN;
829
830 tx_buffer_head->time_stamp =
831 cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
832 } else {
833 tx_buffer_head->time_stamp =
834 cpu_to_le16(DEFAULT_MSDU_LIFETIME_RES_64us);
835 }
836
837 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
838 tx_buffer_head->wFIFOCtl |= FIFOCTL_NEEDACK;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100839 tx_context->need_ack = true;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100840 }
841
842 if (ieee80211_has_retry(hdr->frame_control))
843 tx_buffer_head->wFIFOCtl |= FIFOCTL_LRETRY;
844
845 if (tx_rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100846 priv->preamble_type = PREAMBLE_SHORT;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100847 else
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100848 priv->preamble_type = PREAMBLE_LONG;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100849
850 if (tx_rate->flags & IEEE80211_TX_RC_USE_RTS_CTS) {
851 need_rts = true;
852 tx_buffer_head->wFIFOCtl |= FIFOCTL_RTS;
853 }
854
855 if (ieee80211_has_a4(hdr->frame_control))
856 tx_buffer_head->wFIFOCtl |= FIFOCTL_LHEAD;
857
858 if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER)
859 is_pspoll = true;
860
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100861 tx_buffer_head->frag_ctl =
862 cpu_to_le16(ieee80211_get_hdrlen_from_skb(skb) << 10);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100863
864 if (info->control.hw_key) {
865 tx_key = info->control.hw_key;
866 switch (info->control.hw_key->cipher) {
867 case WLAN_CIPHER_SUITE_WEP40:
868 case WLAN_CIPHER_SUITE_WEP104:
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100869 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_LEGACY);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100870 break;
871 case WLAN_CIPHER_SUITE_TKIP:
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100872 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_TKIP);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100873 break;
874 case WLAN_CIPHER_SUITE_CCMP:
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100875 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_AES);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100876 need_mic = true;
877 default:
878 break;
879 }
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100880 tx_context->frame_len += tx_key->icv_len;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100881 }
882
Malcolm Priestleycb8ee9de2014-07-10 19:56:05 +0100883 tx_buffer_head->current_rate = cpu_to_le16(current_rate);
884
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100885 /* legacy rates TODO use ieee80211_tx_rate */
886 if (current_rate >= RATE_18M && ieee80211_is_data(hdr->frame_control)) {
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100887 if (priv->auto_fb_ctrl == AUTO_FB_0) {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100888 tx_buffer_head->wFIFOCtl |= FIFOCTL_AUTO_FB_0;
889
890 priv->tx_rate_fb0 =
Malcolm Priestleye3f31872014-07-11 01:08:26 +0100891 vnt_fb_opt0[FB_RATE0][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100892 priv->tx_rate_fb1 =
Malcolm Priestleye3f31872014-07-11 01:08:26 +0100893 vnt_fb_opt0[FB_RATE1][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100894
895 fb_option = AUTO_FB_0;
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100896 } else if (priv->auto_fb_ctrl == AUTO_FB_1) {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100897 tx_buffer_head->wFIFOCtl |= FIFOCTL_AUTO_FB_1;
898
899 priv->tx_rate_fb0 =
Malcolm Priestley2331ba42014-07-11 01:08:27 +0100900 vnt_fb_opt1[FB_RATE0][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100901 priv->tx_rate_fb1 =
Malcolm Priestley2331ba42014-07-11 01:08:27 +0100902 vnt_fb_opt1[FB_RATE1][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100903
904 fb_option = AUTO_FB_1;
905 }
906 }
907
Malcolm Priestley71d764a2014-07-05 19:24:27 +0100908 tx_context->fb_option = fb_option;
909
Malcolm Priestley798f0602014-07-20 15:33:34 +0100910 duration_id = vnt_generate_tx_parameter(tx_context, tx_buffer, &mic_hdr,
911 need_mic, need_rts);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100912
913 tx_header_size = tx_context->tx_hdr_size;
914 if (!tx_header_size) {
915 tx_context->in_use = false;
916 return -ENOMEM;
917 }
918
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100919 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_NONFRAG);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100920
921 tx_bytes = tx_header_size + tx_body_size;
922
923 memcpy(tx_context->hdr, skb->data, tx_body_size);
924
925 hdr->duration_id = cpu_to_le16(duration_id);
926
927 if (info->control.hw_key) {
928 tx_key = info->control.hw_key;
929 if (tx_key->keylen > 0)
930 vnt_fill_txkey(tx_context, tx_buffer_head->tx_key,
931 tx_key, skb, tx_body_size, mic_hdr);
932 }
933
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +0100934 priv->seq_counter = (le16_to_cpu(hdr->seq_ctrl) &
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100935 IEEE80211_SCTL_SEQ) >> 4;
936
937 tx_buffer->tx_byte_count = cpu_to_le16(tx_bytes);
Malcolm Priestley71d764a2014-07-05 19:24:27 +0100938 tx_buffer->byPKTNO = tx_context->pkt_no;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100939 tx_buffer->byType = 0x00;
940
941 tx_bytes += 4;
942
943 tx_context->type = CONTEXT_DATA_PACKET;
944 tx_context->buf_len = tx_bytes;
945
946 spin_lock_irqsave(&priv->lock, flags);
947
Malcolm Priestley476e7d92014-07-15 19:54:39 +0100948 if (vnt_tx_context(priv, tx_context) != STATUS_PENDING) {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100949 spin_unlock_irqrestore(&priv->lock, flags);
950 return -EIO;
951 }
952
953 spin_unlock_irqrestore(&priv->lock, flags);
954
955 return 0;
956}
957
958static int vnt_beacon_xmit(struct vnt_private *priv,
959 struct sk_buff *skb)
960{
961 struct vnt_beacon_buffer *beacon_buffer;
962 struct vnt_tx_short_buf_head *short_head;
963 struct ieee80211_tx_info *info;
964 struct vnt_usb_send_context *context;
965 struct ieee80211_mgmt *mgmt_hdr;
966 unsigned long flags;
967 u32 frame_size = skb->len + 4;
968 u16 current_rate, count;
969
970 spin_lock_irqsave(&priv->lock, flags);
971
Malcolm Priestleya032b162014-07-11 01:08:28 +0100972 context = vnt_get_free_context(priv);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100973 if (!context) {
974 dev_dbg(&priv->usb->dev, "%s No free context!\n", __func__);
975 spin_unlock_irqrestore(&priv->lock, flags);
976 return -ENOMEM;
977 }
978
979 context->skb = skb;
980
981 spin_unlock_irqrestore(&priv->lock, flags);
982
983 beacon_buffer = (struct vnt_beacon_buffer *)&context->data[0];
984 short_head = &beacon_buffer->short_head;
985
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100986 if (priv->bb_type == BB_TYPE_11A) {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100987 current_rate = RATE_6M;
988
989 /* Get SignalField,ServiceField,Length */
990 vnt_get_phy_field(priv, frame_size, current_rate,
991 PK_TYPE_11A, &short_head->ab);
992
993 /* Get Duration and TimeStampOff */
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100994 short_head->duration = vnt_get_duration_le(priv,
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100995 PK_TYPE_11A, false);
996 short_head->time_stamp_off =
997 vnt_time_stamp_off(priv, current_rate);
998 } else {
999 current_rate = RATE_1M;
1000 short_head->fifo_ctl |= FIFOCTL_11B;
1001
1002 /* Get SignalField,ServiceField,Length */
1003 vnt_get_phy_field(priv, frame_size, current_rate,
1004 PK_TYPE_11B, &short_head->ab);
1005
1006 /* Get Duration and TimeStampOff */
Malcolm Priestley435ae3b2014-07-11 01:08:22 +01001007 short_head->duration = vnt_get_duration_le(priv,
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001008 PK_TYPE_11B, false);
1009 short_head->time_stamp_off =
1010 vnt_time_stamp_off(priv, current_rate);
1011 }
1012
1013 /* Generate Beacon Header */
1014 mgmt_hdr = &beacon_buffer->mgmt_hdr;
1015 memcpy(mgmt_hdr, skb->data, skb->len);
1016
1017 /* time stamp always 0 */
1018 mgmt_hdr->u.beacon.timestamp = 0;
1019
1020 info = IEEE80211_SKB_CB(skb);
1021 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1022 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)mgmt_hdr;
1023 hdr->duration_id = 0;
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +01001024 hdr->seq_ctrl = cpu_to_le16(priv->seq_counter << 4);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001025 }
1026
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +01001027 priv->seq_counter++;
1028 if (priv->seq_counter > 0x0fff)
1029 priv->seq_counter = 0;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001030
1031 count = sizeof(struct vnt_tx_short_buf_head) + skb->len;
1032
1033 beacon_buffer->tx_byte_count = cpu_to_le16(count);
Malcolm Priestley71d764a2014-07-05 19:24:27 +01001034 beacon_buffer->byPKTNO = context->pkt_no;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001035 beacon_buffer->byType = 0x01;
1036
1037 context->type = CONTEXT_BEACON_PACKET;
1038 context->buf_len = count + 4; /* USB header */
1039
1040 spin_lock_irqsave(&priv->lock, flags);
1041
Malcolm Priestley476e7d92014-07-15 19:54:39 +01001042 if (vnt_tx_context(priv, context) != STATUS_PENDING)
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001043 ieee80211_free_txskb(priv->hw, context->skb);
1044
1045 spin_unlock_irqrestore(&priv->lock, flags);
1046
1047 return 0;
1048}
1049
1050int vnt_beacon_make(struct vnt_private *priv, struct ieee80211_vif *vif)
1051{
1052 struct sk_buff *beacon;
1053
1054 beacon = ieee80211_beacon_get(priv->hw, vif);
1055 if (!beacon)
1056 return -ENOMEM;
1057
1058 if (vnt_beacon_xmit(priv, beacon)) {
1059 ieee80211_free_txskb(priv->hw, beacon);
1060 return -ENODEV;
1061 }
1062
1063 return 0;
1064}
1065
1066int vnt_beacon_enable(struct vnt_private *priv, struct ieee80211_vif *vif,
1067 struct ieee80211_bss_conf *conf)
1068{
1069 int ret;
1070
1071 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
1072
1073 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
1074
1075 vnt_mac_set_beacon_interval(priv, conf->beacon_int);
1076
1077 vnt_clear_current_tsf(priv);
1078
1079 vnt_mac_reg_bits_on(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
1080
1081 vnt_reset_next_tbtt(priv, conf->beacon_int);
1082
1083 ret = vnt_beacon_make(priv, vif);
1084
1085 return ret;
1086}