blob: aa59e7f14ab30c74a68c862b6b260d28b19c8949 [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 *
Forest Bond92b96792009-06-13 07:38:31 -040015 *
16 * File: rxtx.c
17 *
18 * Purpose: handle WMAC/802.3/802.11 rx & tx functions
19 *
20 * Author: Lyndon Chen
21 *
22 * Date: May 20, 2003
23 *
24 * Functions:
Malcolm Priestley9ec7f2d2014-07-10 19:56:15 +010025 * vnt_generate_tx_parameter - Generate tx dma required parameter.
Malcolm Priestley435ae3b2014-07-11 01:08:22 +010026 * vnt_get_duration_le - get tx data required duration
Malcolm Priestleyf2aabee2014-07-11 01:08:20 +010027 * vnt_get_rtscts_duration_le- get rtx/cts required duration
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +010028 * vnt_get_rtscts_rsvtime_le- get rts/cts reserved time
Malcolm Priestley3815a272014-07-11 01:08:24 +010029 * vnt_get_rsvtime- get frame reserved time
Malcolm Priestley4f316682014-07-10 19:56:17 +010030 * vnt_fill_cts_head- fulfill CTS ctl header
Forest Bond92b96792009-06-13 07:38:31 -040031 *
32 * Revision History:
33 *
34 */
35
Krzysztof Adamskiccc103f2014-12-08 12:13:41 +010036#include <linux/etherdevice.h>
Forest Bond92b96792009-06-13 07:38:31 -040037#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040038#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040039#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040040#include "mac.h"
Forest Bond92b96792009-06-13 07:38:31 -040041#include "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040042#include "usbpipe.h"
Jim Lieb9d26d602009-08-12 14:54:08 -070043
Malcolm Priestley1a4d45092014-07-11 01:08:25 +010044static const u16 vnt_time_stampoff[2][MAX_RATE] = {
Arjun Krishna Babu943304b2015-06-20 12:46:50 +080045 /* Long Preamble */
46 {384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23},
47
48 /* Short Preamble */
49 {384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23},
Malcolm Priestley1a4d45092014-07-11 01:08:25 +010050};
Forest Bond92b96792009-06-13 07:38:31 -040051
Malcolm Priestleye3f31872014-07-11 01:08:26 +010052static const u16 vnt_fb_opt0[2][5] = {
53 {RATE_12M, RATE_18M, RATE_24M, RATE_36M, RATE_48M}, /* fallback_rate0 */
54 {RATE_12M, RATE_12M, RATE_18M, RATE_24M, RATE_36M}, /* fallback_rate1 */
55};
56
Malcolm Priestley2331ba42014-07-11 01:08:27 +010057static const u16 vnt_fb_opt1[2][5] = {
58 {RATE_12M, RATE_18M, RATE_24M, RATE_24M, RATE_36M}, /* fallback_rate0 */
Krzysztof Adamski73c4c6e2014-12-10 18:05:31 +010059 {RATE_6M, RATE_6M, RATE_12M, RATE_12M, RATE_18M}, /* fallback_rate1 */
Malcolm Priestley2331ba42014-07-11 01:08:27 +010060};
Forest Bond92b96792009-06-13 07:38:31 -040061
Forest Bond92b96792009-06-13 07:38:31 -040062#define RTSDUR_BB 0
63#define RTSDUR_BA 1
64#define RTSDUR_AA 2
65#define CTSDUR_BA 3
66#define RTSDUR_BA_F0 4
67#define RTSDUR_AA_F0 5
68#define RTSDUR_BA_F1 6
69#define RTSDUR_AA_F1 7
70#define CTSDUR_BA_F0 8
71#define CTSDUR_BA_F1 9
72#define DATADUR_B 10
73#define DATADUR_A 11
74#define DATADUR_A_F0 12
75#define DATADUR_A_F1 13
76
Malcolm Priestleyaceaf012013-11-26 19:06:35 +000077static struct vnt_usb_send_context
Malcolm Priestleya032b162014-07-11 01:08:28 +010078 *vnt_get_free_context(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -040079{
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000080 struct vnt_usb_send_context *context = NULL;
Malcolm Priestleyd56131d2013-01-17 23:15:22 +000081 int ii;
Forest Bond92b96792009-06-13 07:38:31 -040082
Malcolm Priestley604631f2014-07-11 01:08:31 +010083 dev_dbg(&priv->usb->dev, "%s\n", __func__);
Forest Bond92b96792009-06-13 07:38:31 -040084
Malcolm Priestley03b7e352014-07-19 12:30:04 +010085 for (ii = 0; ii < priv->num_tx_context; ii++) {
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +010086 if (!priv->tx_context[ii])
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000087 return NULL;
88
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +010089 context = priv->tx_context[ii];
Abdul Hussain5699c0f2015-06-16 05:43:16 +000090 if (!context->in_use) {
Malcolm Priestley30a05b32014-05-15 22:49:11 +010091 context->in_use = true;
92 memset(context->data, 0,
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000093 MAX_TOTAL_SIZE_WITH_ALL_HEADERS);
Malcolm Priestley1622c8f2014-05-31 13:34:58 +010094
95 context->hdr = NULL;
96
Malcolm Priestleyb89f3b92013-11-26 19:16:59 +000097 return context;
98 }
99 }
100
Malcolm Priestleyb914b492015-09-27 09:17:43 +0100101 if (ii == priv->num_tx_context) {
Malcolm Priestley604631f2014-07-11 01:08:31 +0100102 dev_dbg(&priv->usb->dev, "%s No Free Tx Context\n", __func__);
Malcolm Priestleyaceaf012013-11-26 19:06:35 +0000103
Malcolm Priestleyb914b492015-09-27 09:17:43 +0100104 ieee80211_stop_queues(priv->hw);
105 }
106
Malcolm Priestley5c851382013-11-26 19:12:38 +0000107 return NULL;
Forest Bond92b96792009-06-13 07:38:31 -0400108}
109
Malcolm Priestleydab085b2014-03-18 19:25:03 +0000110static __le16 vnt_time_stamp_off(struct vnt_private *priv, u16 rate)
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100111{
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100112 return cpu_to_le16(vnt_time_stampoff[priv->preamble_type % 2]
Malcolm Priestleyf115e762013-08-23 11:48:46 +0100113 [rate % MAX_RATE]);
114}
115
Malcolm Priestley3815a272014-07-11 01:08:24 +0100116static u32 vnt_get_rsvtime(struct vnt_private *priv, u8 pkt_type,
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000117 u32 frame_length, u16 rate, int need_ack)
Forest Bond92b96792009-06-13 07:38:31 -0400118{
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000119 u32 data_time, ack_time;
Forest Bond92b96792009-06-13 07:38:31 -0400120
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100121 data_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000122 frame_length, rate);
Forest Bond92b96792009-06-13 07:38:31 -0400123
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000124 if (pkt_type == PK_TYPE_11B)
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100125 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100126 14, (u16)priv->top_cck_basic_rate);
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000127 else
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100128 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100129 14, (u16)priv->top_ofdm_basic_rate);
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000130
131 if (need_ack)
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100132 return data_time + priv->sifs + ack_time;
Malcolm Priestley3fd56202014-01-08 20:08:42 +0000133
134 return data_time;
Forest Bond92b96792009-06-13 07:38:31 -0400135}
136
Malcolm Priestley2075f652014-03-18 19:25:07 +0000137static __le16 vnt_rxtx_rsvtime_le16(struct vnt_private *priv, u8 pkt_type,
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100138 u32 frame_length, u16 rate, int need_ack)
139{
Malcolm Priestley3815a272014-07-11 01:08:24 +0100140 return cpu_to_le16((u16)vnt_get_rsvtime(priv, pkt_type,
Malcolm Priestley9c3806d2013-08-23 11:32:26 +0100141 frame_length, rate, need_ack));
142}
143
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100144static __le16 vnt_get_rtscts_rsvtime_le(struct vnt_private *priv,
Malcolm Priestley3b6cee7be2014-05-25 21:36:27 +0100145 u8 rsv_type, u8 pkt_type, u32 frame_length, u16 current_rate)
Forest Bond92b96792009-06-13 07:38:31 -0400146{
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000147 u32 rrv_time, rts_time, cts_time, ack_time, data_time;
Forest Bond92b96792009-06-13 07:38:31 -0400148
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000149 rrv_time = rts_time = cts_time = ack_time = data_time = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400150
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100151 data_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3b6cee7be2014-05-25 21:36:27 +0100152 frame_length, current_rate);
Forest Bond92b96792009-06-13 07:38:31 -0400153
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000154 if (rsv_type == 0) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100155 rts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100156 pkt_type, 20, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100157 cts_time = ack_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100158 pkt_type, 14, priv->top_cck_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000159 } else if (rsv_type == 1) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100160 rts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100161 pkt_type, 20, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100162 cts_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100163 14, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100164 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100165 14, priv->top_ofdm_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000166 } else if (rsv_type == 2) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100167 rts_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100168 20, priv->top_ofdm_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100169 cts_time = ack_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100170 pkt_type, 14, priv->top_ofdm_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000171 } else if (rsv_type == 3) {
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100172 cts_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100173 14, priv->top_cck_basic_rate);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100174 ack_time = vnt_get_frame_time(priv->preamble_type, pkt_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100175 14, priv->top_ofdm_basic_rate);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000176
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100177 rrv_time = cts_time + ack_time + data_time + 2 * priv->sifs;
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000178
Malcolm Priestley20338012014-03-18 19:25:08 +0000179 return cpu_to_le16((u16)rrv_time);
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000180 }
181
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100182 rrv_time = rts_time + cts_time + ack_time + data_time + 3 * priv->sifs;
Malcolm Priestley342e2e22014-01-08 20:13:29 +0000183
184 return cpu_to_le16((u16)rrv_time);
Forest Bond92b96792009-06-13 07:38:31 -0400185}
186
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100187static __le16 vnt_get_duration_le(struct vnt_private *priv,
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100188 u8 pkt_type, int need_ack)
Forest Bond92b96792009-06-13 07:38:31 -0400189{
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100190 u32 ack_time = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400191
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100192 if (need_ack) {
193 if (pkt_type == PK_TYPE_11B)
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100194 ack_time = vnt_get_frame_time(priv->preamble_type,
195 pkt_type, 14, priv->top_cck_basic_rate);
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100196 else
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100197 ack_time = vnt_get_frame_time(priv->preamble_type,
198 pkt_type, 14, priv->top_ofdm_basic_rate);
Malcolm Priestleya4c2a8a2014-07-11 01:08:21 +0100199
Malcolm Priestley0871dc62014-07-20 15:33:30 +0100200 return cpu_to_le16((u16)(priv->sifs + ack_time));
Malcolm Priestleyb02ccd52013-08-13 19:59:31 +0100201 }
Forest Bond92b96792009-06-13 07:38:31 -0400202
Forest Bond92b96792009-06-13 07:38:31 -0400203 return 0;
204}
205
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100206static __le16 vnt_get_rtscts_duration_le(struct vnt_usb_send_context *context,
207 u8 dur_type, u8 pkt_type, u16 rate)
Forest Bond92b96792009-06-13 07:38:31 -0400208{
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100209 struct vnt_private *priv = context->priv;
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100210 u32 cts_time = 0, dur_time = 0;
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100211 u32 frame_length = context->frame_len;
212 u8 need_ack = context->need_ack;
Forest Bond92b96792009-06-13 07:38:31 -0400213
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100214 switch (dur_type) {
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100215 case RTSDUR_BB:
216 case RTSDUR_BA:
217 case RTSDUR_BA_F0:
218 case RTSDUR_BA_F1:
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100219 cts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100220 pkt_type, 14, priv->top_cck_basic_rate);
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100221 dur_time = cts_time + 2 * priv->sifs +
Malcolm Priestley3815a272014-07-11 01:08:24 +0100222 vnt_get_rsvtime(priv, pkt_type,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100223 frame_length, rate, need_ack);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100224 break;
Forest Bond92b96792009-06-13 07:38:31 -0400225
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100226 case RTSDUR_AA:
227 case RTSDUR_AA_F0:
228 case RTSDUR_AA_F1:
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100229 cts_time = vnt_get_frame_time(priv->preamble_type,
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100230 pkt_type, 14, priv->top_ofdm_basic_rate);
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100231 dur_time = cts_time + 2 * priv->sifs +
Malcolm Priestley3815a272014-07-11 01:08:24 +0100232 vnt_get_rsvtime(priv, pkt_type,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100233 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 case CTSDUR_BA:
237 case CTSDUR_BA_F0:
238 case CTSDUR_BA_F1:
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100239 dur_time = priv->sifs + vnt_get_rsvtime(priv,
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100240 pkt_type, frame_length, rate, need_ack);
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100241 break;
Forest Bond92b96792009-06-13 07:38:31 -0400242
Malcolm Priestleyecd80242013-10-15 21:05:02 +0100243 default:
244 break;
245 }
Forest Bond92b96792009-06-13 07:38:31 -0400246
Malcolm Priestley7beae9a22014-07-11 01:08:19 +0100247 return cpu_to_le16((u16)dur_time);
Forest Bond92b96792009-06-13 07:38:31 -0400248}
249
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100250static u16 vnt_mac_hdr_pos(struct vnt_usb_send_context *tx_context,
251 struct ieee80211_hdr *hdr)
252{
253 u8 *head = tx_context->data + offsetof(struct vnt_tx_buffer, fifo_head);
254 u8 *hdr_pos = (u8 *)hdr;
255
256 tx_context->hdr = hdr;
257 if (!tx_context->hdr)
258 return 0;
259
260 return (u16)(hdr_pos - head);
261}
262
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100263static u16 vnt_rxtx_datahead_g(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100264 struct vnt_tx_datahead_g *buf)
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100265{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100266
267 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley893cc702014-06-25 21:14:38 +0100268 struct ieee80211_hdr *hdr =
269 (struct ieee80211_hdr *)tx_context->skb->data;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100270 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100271 u16 rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100272 u8 need_ack = tx_context->need_ack;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100273
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100274 /* Get SignalField,ServiceField,Length */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100275 vnt_get_phy_field(priv, frame_len, rate, tx_context->pkt_type, &buf->a);
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100276 vnt_get_phy_field(priv, frame_len, priv->top_cck_basic_rate,
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100277 PK_TYPE_11B, &buf->b);
278
279 /* Get Duration and TimeStamp */
Malcolm Priestley893cc702014-06-25 21:14:38 +0100280 if (ieee80211_is_pspoll(hdr->frame_control)) {
281 __le16 dur = cpu_to_le16(priv->current_aid | BIT(14) | BIT(15));
282
283 buf->duration_a = dur;
284 buf->duration_b = dur;
285 } else {
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100286 buf->duration_a = vnt_get_duration_le(priv,
287 tx_context->pkt_type, need_ack);
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100288 buf->duration_b = vnt_get_duration_le(priv,
Malcolm Priestley893cc702014-06-25 21:14:38 +0100289 PK_TYPE_11B, need_ack);
290 }
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100291
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000292 buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
293 buf->time_stamp_off_b = vnt_time_stamp_off(priv,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100294 priv->top_cck_basic_rate);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100295
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100296 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
297
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000298 return le16_to_cpu(buf->duration_a);
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100299}
300
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100301static u16 vnt_rxtx_datahead_g_fb(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100302 struct vnt_tx_datahead_g_fb *buf)
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100303{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100304 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100305 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100306 u16 rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100307 u8 need_ack = tx_context->need_ack;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100308
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100309 /* Get SignalField,ServiceField,Length */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100310 vnt_get_phy_field(priv, frame_len, rate, tx_context->pkt_type, &buf->a);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100311
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100312 vnt_get_phy_field(priv, frame_len, priv->top_cck_basic_rate,
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100313 PK_TYPE_11B, &buf->b);
314
315 /* Get Duration and TimeStamp */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100316 buf->duration_a = vnt_get_duration_le(priv, tx_context->pkt_type,
317 need_ack);
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100318 buf->duration_b = vnt_get_duration_le(priv, PK_TYPE_11B, need_ack);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100319
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100320 buf->duration_a_f0 = vnt_get_duration_le(priv, tx_context->pkt_type,
321 need_ack);
322 buf->duration_a_f1 = vnt_get_duration_le(priv, tx_context->pkt_type,
323 need_ack);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100324
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000325 buf->time_stamp_off_a = vnt_time_stamp_off(priv, rate);
326 buf->time_stamp_off_b = vnt_time_stamp_off(priv,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100327 priv->top_cck_basic_rate);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100328
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100329 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
330
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000331 return le16_to_cpu(buf->duration_a);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100332}
333
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100334static u16 vnt_rxtx_datahead_a_fb(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100335 struct vnt_tx_datahead_a_fb *buf)
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100336{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100337 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100338 u16 rate = tx_context->tx_rate;
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100339 u8 pkt_type = tx_context->pkt_type;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100340 u8 need_ack = tx_context->need_ack;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100341 u32 frame_len = tx_context->frame_len;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100342
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100343 /* Get SignalField,ServiceField,Length */
Malcolm Priestley205056f2014-06-04 18:25:34 +0100344 vnt_get_phy_field(priv, frame_len, rate, pkt_type, &buf->a);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100345 /* Get Duration and TimeStampOff */
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100346 buf->duration = vnt_get_duration_le(priv, pkt_type, need_ack);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100347
Malcolm Priestley435ae3b2014-07-11 01:08:22 +0100348 buf->duration_f0 = vnt_get_duration_le(priv, pkt_type, need_ack);
349 buf->duration_f1 = vnt_get_duration_le(priv, pkt_type, need_ack);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100350
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000351 buf->time_stamp_off = vnt_time_stamp_off(priv, rate);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100352
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100353 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
354
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000355 return le16_to_cpu(buf->duration);
Malcolm Priestleybd3f51f2013-10-01 15:56:48 +0100356}
357
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100358static u16 vnt_rxtx_datahead_ab(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100359 struct vnt_tx_datahead_ab *buf)
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100360{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100361 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley893cc702014-06-25 21:14:38 +0100362 struct ieee80211_hdr *hdr =
363 (struct ieee80211_hdr *)tx_context->skb->data;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100364 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100365 u16 rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100366 u8 need_ack = tx_context->need_ack;
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100367
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100368 /* Get SignalField,ServiceField,Length */
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100369 vnt_get_phy_field(priv, frame_len, rate,
370 tx_context->pkt_type, &buf->ab);
Malcolm Priestley893cc702014-06-25 21:14:38 +0100371
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100372 /* Get Duration and TimeStampOff */
Malcolm Priestley893cc702014-06-25 21:14:38 +0100373 if (ieee80211_is_pspoll(hdr->frame_control)) {
374 __le16 dur = cpu_to_le16(priv->current_aid | BIT(14) | BIT(15));
375
376 buf->duration = dur;
377 } else {
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100378 buf->duration = vnt_get_duration_le(priv, tx_context->pkt_type,
379 need_ack);
Malcolm Priestley893cc702014-06-25 21:14:38 +0100380 }
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100381
Malcolm Priestley10bb39a2014-03-18 19:25:01 +0000382 buf->time_stamp_off = vnt_time_stamp_off(priv, rate);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100383
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100384 tx_context->tx_hdr_size = vnt_mac_hdr_pos(tx_context, &buf->hdr);
385
Malcolm Priestleyc4cf6df2014-03-18 19:25:04 +0000386 return le16_to_cpu(buf->duration);
Malcolm Priestley5634a5a2013-10-01 16:00:20 +0100387}
388
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100389static int vnt_fill_ieee80211_rts(struct vnt_usb_send_context *tx_context,
390 struct ieee80211_rts *rts, __le16 duration)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100391{
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100392 struct ieee80211_hdr *hdr =
393 (struct ieee80211_hdr *)tx_context->skb->data;
394
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100395 rts->duration = duration;
Malcolm Priestleyf4554d32014-03-22 09:01:31 +0000396 rts->frame_control =
397 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_RTS);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100398
Krzysztof Adamskiccc103f2014-12-08 12:13:41 +0100399 ether_addr_copy(rts->ra, hdr->addr1);
400 ether_addr_copy(rts->ta, hdr->addr2);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100401
402 return 0;
403}
404
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100405static u16 vnt_rxtx_rts_g_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100406 struct vnt_rts_g *buf)
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100407{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100408 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100409 u16 rts_frame_len = 20;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100410 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100411
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100412 vnt_get_phy_field(priv, rts_frame_len, priv->top_cck_basic_rate,
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100413 PK_TYPE_11B, &buf->b);
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100414 vnt_get_phy_field(priv, rts_frame_len, priv->top_ofdm_basic_rate,
415 tx_context->pkt_type, &buf->a);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100416
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100417 buf->duration_bb = vnt_get_rtscts_duration_le(tx_context, RTSDUR_BB,
418 PK_TYPE_11B,
419 priv->top_cck_basic_rate);
420 buf->duration_aa = vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA,
421 tx_context->pkt_type,
422 current_rate);
423 buf->duration_ba = vnt_get_rtscts_duration_le(tx_context, RTSDUR_BA,
424 tx_context->pkt_type,
425 current_rate);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100426
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100427 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration_aa);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100428
Malcolm Priestley798f0602014-07-20 15:33:34 +0100429 return vnt_rxtx_datahead_g(tx_context, &buf->data_head);
Malcolm Priestley5e67ee42013-08-26 11:04:50 +0100430}
431
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100432static u16 vnt_rxtx_rts_g_fb_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100433 struct vnt_rts_g_fb *buf)
Malcolm Priestleyec917132013-08-26 11:07:46 +0100434{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100435 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100436 u16 current_rate = tx_context->tx_rate;
Malcolm Priestleyec917132013-08-26 11:07:46 +0100437 u16 rts_frame_len = 20;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100438
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100439 vnt_get_phy_field(priv, rts_frame_len, priv->top_cck_basic_rate,
Malcolm Priestleyec917132013-08-26 11:07:46 +0100440 PK_TYPE_11B, &buf->b);
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100441 vnt_get_phy_field(priv, rts_frame_len, priv->top_ofdm_basic_rate,
442 tx_context->pkt_type, &buf->a);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100443
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100444 buf->duration_bb = vnt_get_rtscts_duration_le(tx_context, RTSDUR_BB,
445 PK_TYPE_11B,
446 priv->top_cck_basic_rate);
447 buf->duration_aa = vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA,
448 tx_context->pkt_type,
449 current_rate);
450 buf->duration_ba = vnt_get_rtscts_duration_le(tx_context, RTSDUR_BA,
451 tx_context->pkt_type,
452 current_rate);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100453
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100454 buf->rts_duration_ba_f0 =
455 vnt_get_rtscts_duration_le(tx_context, RTSDUR_BA_F0,
456 tx_context->pkt_type,
457 priv->tx_rate_fb0);
458 buf->rts_duration_aa_f0 =
459 vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA_F0,
460 tx_context->pkt_type,
461 priv->tx_rate_fb0);
462 buf->rts_duration_ba_f1 =
463 vnt_get_rtscts_duration_le(tx_context, RTSDUR_BA_F1,
464 tx_context->pkt_type,
465 priv->tx_rate_fb1);
466 buf->rts_duration_aa_f1 =
467 vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA_F1,
468 tx_context->pkt_type,
469 priv->tx_rate_fb1);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100470
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100471 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration_aa);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100472
Malcolm Priestley798f0602014-07-20 15:33:34 +0100473 return vnt_rxtx_datahead_g_fb(tx_context, &buf->data_head);
Malcolm Priestleyec917132013-08-26 11:07:46 +0100474}
475
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100476static u16 vnt_rxtx_rts_ab_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100477 struct vnt_rts_ab *buf)
Malcolm Priestley17126332013-08-26 11:09:38 +0100478{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100479 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100480 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley17126332013-08-26 11:09:38 +0100481 u16 rts_frame_len = 20;
482
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100483 vnt_get_phy_field(priv, rts_frame_len, priv->top_ofdm_basic_rate,
484 tx_context->pkt_type, &buf->ab);
Malcolm Priestley17126332013-08-26 11:09:38 +0100485
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100486 buf->duration = vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100487 tx_context->pkt_type,
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100488 current_rate);
Malcolm Priestley17126332013-08-26 11:09:38 +0100489
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100490 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration);
Malcolm Priestley17126332013-08-26 11:09:38 +0100491
Malcolm Priestley798f0602014-07-20 15:33:34 +0100492 return vnt_rxtx_datahead_ab(tx_context, &buf->data_head);
Malcolm Priestley17126332013-08-26 11:09:38 +0100493}
494
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100495static u16 vnt_rxtx_rts_a_fb_head(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100496 struct vnt_rts_a_fb *buf)
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100497{
Malcolm Priestleyc2c32da2014-05-31 13:34:57 +0100498 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100499 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100500 u16 rts_frame_len = 20;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100501
Malcolm Priestley205056f2014-06-04 18:25:34 +0100502 vnt_get_phy_field(priv, rts_frame_len,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100503 priv->top_ofdm_basic_rate, tx_context->pkt_type, &buf->a);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100504
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100505 buf->duration = vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100506 tx_context->pkt_type,
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100507 current_rate);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100508
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100509 buf->rts_duration_f0 =
510 vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA_F0,
511 tx_context->pkt_type,
512 priv->tx_rate_fb0);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100513
Malcolm Priestleycca48e32014-07-20 15:33:35 +0100514 buf->rts_duration_f1 =
515 vnt_get_rtscts_duration_le(tx_context, RTSDUR_AA_F1,
516 tx_context->pkt_type,
517 priv->tx_rate_fb1);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100518
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100519 vnt_fill_ieee80211_rts(tx_context, &buf->data, buf->duration);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100520
Malcolm Priestley798f0602014-07-20 15:33:34 +0100521 return vnt_rxtx_datahead_a_fb(tx_context, &buf->data_head);
Malcolm Priestley9d2578c2013-08-26 11:12:00 +0100522}
523
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000524static u16 vnt_fill_cts_fb_head(struct vnt_usb_send_context *tx_context,
525 union vnt_tx_data_head *head)
Forest Bond92b96792009-06-13 07:38:31 -0400526{
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100527 struct vnt_private *priv = tx_context->priv;
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000528 struct vnt_cts_fb *buf = &head->cts_g_fb;
Malcolm Priestleyee16de82014-07-10 19:56:16 +0100529 u32 cts_frame_len = 14;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100530 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100531
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000532 /* Get SignalField,ServiceField,Length */
533 vnt_get_phy_field(priv, cts_frame_len, priv->top_cck_basic_rate,
534 PK_TYPE_11B, &buf->b);
Malcolm Priestleyd9560ae2014-03-22 09:01:32 +0000535
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000536 buf->duration_ba =
537 vnt_get_rtscts_duration_le(tx_context, CTSDUR_BA,
538 tx_context->pkt_type,
539 current_rate);
540 /* Get CTSDuration_ba_f0 */
541 buf->cts_duration_ba_f0 =
542 vnt_get_rtscts_duration_le(tx_context, CTSDUR_BA_F0,
543 tx_context->pkt_type,
544 priv->tx_rate_fb0);
545 /* Get CTSDuration_ba_f1 */
546 buf->cts_duration_ba_f1 =
547 vnt_get_rtscts_duration_le(tx_context, CTSDUR_BA_F1,
548 tx_context->pkt_type,
549 priv->tx_rate_fb1);
550 /* Get CTS Frame body */
551 buf->data.duration = buf->duration_ba;
552 buf->data.frame_control =
553 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
Malcolm Priestley5b852f52013-10-01 15:54:56 +0100554
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000555 ether_addr_copy(buf->data.ra, priv->current_net_addr);
Malcolm Priestleyd9560ae2014-03-22 09:01:32 +0000556
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000557 return vnt_rxtx_datahead_g_fb(tx_context, &buf->data_head);
558}
Malcolm Priestley78363fd2013-10-01 15:52:16 +0100559
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000560static u16 vnt_fill_cts_head(struct vnt_usb_send_context *tx_context,
561 union vnt_tx_data_head *head)
562{
563 struct vnt_private *priv = tx_context->priv;
564 struct vnt_cts *buf = &head->cts_g;
565 u32 cts_frame_len = 14;
566 u16 current_rate = tx_context->tx_rate;
567
568 /* Get SignalField,ServiceField,Length */
569 vnt_get_phy_field(priv, cts_frame_len, priv->top_cck_basic_rate,
570 PK_TYPE_11B, &buf->b);
571 /* Get CTSDuration_ba */
572 buf->duration_ba =
573 vnt_get_rtscts_duration_le(tx_context, CTSDUR_BA,
574 tx_context->pkt_type,
575 current_rate);
576 /*Get CTS Frame body*/
577 buf->data.duration = buf->duration_ba;
578 buf->data.frame_control =
579 cpu_to_le16(IEEE80211_FTYPE_CTL | IEEE80211_STYPE_CTS);
580
581 ether_addr_copy(buf->data.ra, priv->current_net_addr);
582
583 return vnt_rxtx_datahead_g(tx_context, &buf->data_head);
Forest Bond92b96792009-06-13 07:38:31 -0400584}
585
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100586static u16 vnt_rxtx_rts(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100587 union vnt_tx_head *tx_head, bool need_mic)
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100588{
589 struct vnt_private *priv = tx_context->priv;
590 struct vnt_rrv_time_rts *buf = &tx_head->tx_rts.rts;
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100591 union vnt_tx_data_head *head = &tx_head->tx_rts.tx.head;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100592 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100593 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100594 u8 need_ack = tx_context->need_ack;
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100595
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100596 buf->rts_rrv_time_aa = vnt_get_rtscts_rsvtime_le(priv, 2,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100597 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100598 buf->rts_rrv_time_ba = vnt_get_rtscts_rsvtime_le(priv, 1,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100599 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100600 buf->rts_rrv_time_bb = vnt_get_rtscts_rsvtime_le(priv, 0,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100601 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100602
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100603 buf->rrv_time_a = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100604 frame_len, current_rate,
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100605 need_ack);
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100606 buf->rrv_time_b = vnt_rxtx_rsvtime_le16(priv, PK_TYPE_11B, frame_len,
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100607 priv->top_cck_basic_rate, need_ack);
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100608
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100609 if (need_mic)
610 head = &tx_head->tx_rts.tx.mic.head;
611
612 if (tx_context->fb_option)
Malcolm Priestley798f0602014-07-20 15:33:34 +0100613 return vnt_rxtx_rts_g_fb_head(tx_context, &head->rts_g_fb);
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100614
Malcolm Priestley798f0602014-07-20 15:33:34 +0100615 return vnt_rxtx_rts_g_head(tx_context, &head->rts_g);
Malcolm Priestley24cdd902014-07-10 19:56:06 +0100616}
617
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100618static u16 vnt_rxtx_cts(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100619 union vnt_tx_head *tx_head, bool need_mic)
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100620{
621 struct vnt_private *priv = tx_context->priv;
622 struct vnt_rrv_time_cts *buf = &tx_head->tx_cts.cts;
Malcolm Priestleyb00cb682014-07-10 19:56:11 +0100623 union vnt_tx_data_head *head = &tx_head->tx_cts.tx.head;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100624 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100625 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100626 u8 need_ack = tx_context->need_ack;
627
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100628 buf->rrv_time_a = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100629 frame_len, current_rate, need_ack);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100630 buf->rrv_time_b = vnt_rxtx_rsvtime_le16(priv, PK_TYPE_11B,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100631 frame_len, priv->top_cck_basic_rate, need_ack);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100632
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100633 buf->cts_rrv_time_ba = vnt_get_rtscts_rsvtime_le(priv, 3,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100634 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100635
Malcolm Priestleyb00cb682014-07-10 19:56:11 +0100636 if (need_mic)
637 head = &tx_head->tx_cts.tx.mic.head;
638
639 /* Fill CTS */
Malcolm Priestley1bdee702015-02-01 11:59:43 +0000640 if (tx_context->fb_option)
641 return vnt_fill_cts_fb_head(tx_context, head);
642
Malcolm Priestley798f0602014-07-20 15:33:34 +0100643 return vnt_fill_cts_head(tx_context, head);
Malcolm Priestleybf9c0112014-07-10 19:56:07 +0100644}
645
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100646static u16 vnt_rxtx_ab(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100647 union vnt_tx_head *tx_head, bool need_rts, bool need_mic)
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100648{
649 struct vnt_private *priv = tx_context->priv;
650 struct vnt_rrv_time_ab *buf = &tx_head->tx_ab.ab;
Malcolm Priestley681acf62014-07-10 19:56:12 +0100651 union vnt_tx_data_head *head = &tx_head->tx_ab.tx.head;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100652 u32 frame_len = tx_context->frame_len;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100653 u16 current_rate = tx_context->tx_rate;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100654 u8 need_ack = tx_context->need_ack;
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100655
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100656 buf->rrv_time = vnt_rxtx_rsvtime_le16(priv, tx_context->pkt_type,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100657 frame_len, current_rate, need_ack);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100658
Malcolm Priestley681acf62014-07-10 19:56:12 +0100659 if (need_mic)
660 head = &tx_head->tx_ab.tx.mic.head;
661
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100662 if (need_rts) {
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100663 if (tx_context->pkt_type == PK_TYPE_11B)
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100664 buf->rts_rrv_time = vnt_get_rtscts_rsvtime_le(priv, 0,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100665 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100666 else /* PK_TYPE_11A */
Malcolm Priestleyaadf7d12014-07-11 01:08:23 +0100667 buf->rts_rrv_time = vnt_get_rtscts_rsvtime_le(priv, 2,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100668 tx_context->pkt_type, frame_len, current_rate);
Malcolm Priestley681acf62014-07-10 19:56:12 +0100669
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100670 if (tx_context->fb_option &&
671 tx_context->pkt_type == PK_TYPE_11A)
Malcolm Priestley681acf62014-07-10 19:56:12 +0100672 return vnt_rxtx_rts_a_fb_head(tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100673 &head->rts_a_fb);
Malcolm Priestley681acf62014-07-10 19:56:12 +0100674
Malcolm Priestley798f0602014-07-20 15:33:34 +0100675 return vnt_rxtx_rts_ab_head(tx_context, &head->rts_ab);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100676 }
677
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100678 if (tx_context->pkt_type == PK_TYPE_11A)
Malcolm Priestley798f0602014-07-20 15:33:34 +0100679 return vnt_rxtx_datahead_a_fb(tx_context,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100680 &head->data_head_a_fb);
Malcolm Priestley681acf62014-07-10 19:56:12 +0100681
Malcolm Priestley798f0602014-07-20 15:33:34 +0100682 return vnt_rxtx_datahead_ab(tx_context, &head->data_head_ab);
Malcolm Priestley3b03fea2014-07-10 19:56:09 +0100683}
684
Malcolm Priestley9ec7f2d2014-07-10 19:56:15 +0100685static u16 vnt_generate_tx_parameter(struct vnt_usb_send_context *tx_context,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100686 struct vnt_tx_buffer *tx_buffer,
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100687 struct vnt_mic_hdr **mic_hdr, u32 need_mic,
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100688 bool need_rts)
Forest Bond92b96792009-06-13 07:38:31 -0400689{
Forest Bond92b96792009-06-13 07:38:31 -0400690
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100691 if (tx_context->pkt_type == PK_TYPE_11GB ||
692 tx_context->pkt_type == PK_TYPE_11GA) {
Malcolm Priestley92928f12013-10-07 20:14:01 +0100693 if (need_rts) {
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100694 if (need_mic)
Malcolm Priestley92928f12013-10-07 20:14:01 +0100695 *mic_hdr = &tx_buffer->
696 tx_head.tx_rts.tx.mic.hdr;
Malcolm Priestley92928f12013-10-07 20:14:01 +0100697
Malcolm Priestley4f06c0d2014-07-10 19:56:10 +0100698 return vnt_rxtx_rts(tx_context, &tx_buffer->tx_head,
Malcolm Priestley798f0602014-07-20 15:33:34 +0100699 need_mic);
Malcolm Priestley92928f12013-10-07 20:14:01 +0100700 }
Malcolm Priestleyf0e0d502013-09-26 18:52:10 +0100701
Malcolm Priestleyda9ef9f2014-07-10 19:56:13 +0100702 if (need_mic)
703 *mic_hdr = &tx_buffer->tx_head.tx_cts.tx.mic.hdr;
704
Malcolm Priestley798f0602014-07-20 15:33:34 +0100705 return vnt_rxtx_cts(tx_context, &tx_buffer->tx_head, need_mic);
Malcolm Priestleyc12dca02013-10-01 16:03:40 +0100706 }
707
Malcolm Priestleyda9ef9f2014-07-10 19:56:13 +0100708 if (need_mic)
709 *mic_hdr = &tx_buffer->tx_head.tx_ab.tx.mic.hdr;
710
Malcolm Priestley798f0602014-07-20 15:33:34 +0100711 return vnt_rxtx_ab(tx_context, &tx_buffer->tx_head, need_rts, need_mic);
Forest Bond92b96792009-06-13 07:38:31 -0400712}
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100713
714static void vnt_fill_txkey(struct vnt_usb_send_context *tx_context,
715 u8 *key_buffer, struct ieee80211_key_conf *tx_key, struct sk_buff *skb,
716 u16 payload_len, struct vnt_mic_hdr *mic_hdr)
717{
718 struct ieee80211_hdr *hdr = tx_context->hdr;
Eliad Pellerca48ebb2016-02-15 12:34:10 +0200719 u64 pn64;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100720 u8 *iv = ((u8 *)hdr + ieee80211_get_hdrlen_from_skb(skb));
721
722 /* strip header and icv len from payload */
723 payload_len -= ieee80211_get_hdrlen_from_skb(skb);
724 payload_len -= tx_key->icv_len;
725
726 switch (tx_key->cipher) {
727 case WLAN_CIPHER_SUITE_WEP40:
728 case WLAN_CIPHER_SUITE_WEP104:
729 memcpy(key_buffer, iv, 3);
730 memcpy(key_buffer + 3, tx_key->key, tx_key->keylen);
731
732 if (tx_key->keylen == WLAN_KEY_LEN_WEP40) {
733 memcpy(key_buffer + 8, iv, 3);
734 memcpy(key_buffer + 11,
735 tx_key->key, WLAN_KEY_LEN_WEP40);
736 }
737
738 break;
739 case WLAN_CIPHER_SUITE_TKIP:
740 ieee80211_get_tkip_p2k(tx_key, skb, key_buffer);
741
742 break;
743 case WLAN_CIPHER_SUITE_CCMP:
744
745 if (!mic_hdr)
746 return;
747
748 mic_hdr->id = 0x59;
749 mic_hdr->payload_len = cpu_to_be16(payload_len);
Heba Aamer48eaa7f2015-01-21 13:08:48 +0200750 ether_addr_copy(mic_hdr->mic_addr2, hdr->addr2);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100751
Eliad Pellerca48ebb2016-02-15 12:34:10 +0200752 pn64 = atomic64_read(&tx_key->tx_pn);
753 mic_hdr->ccmp_pn[5] = pn64;
754 mic_hdr->ccmp_pn[4] = pn64 >> 8;
755 mic_hdr->ccmp_pn[3] = pn64 >> 16;
756 mic_hdr->ccmp_pn[2] = pn64 >> 24;
757 mic_hdr->ccmp_pn[1] = pn64 >> 32;
758 mic_hdr->ccmp_pn[0] = pn64 >> 40;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100759
760 if (ieee80211_has_a4(hdr->frame_control))
761 mic_hdr->hlen = cpu_to_be16(28);
762 else
763 mic_hdr->hlen = cpu_to_be16(22);
764
aybuke ozdemir1aba0122015-02-22 15:27:56 +0200765 ether_addr_copy(mic_hdr->addr1, hdr->addr1);
766 ether_addr_copy(mic_hdr->addr2, hdr->addr2);
767 ether_addr_copy(mic_hdr->addr3, hdr->addr3);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100768
769 mic_hdr->frame_control = cpu_to_le16(
770 le16_to_cpu(hdr->frame_control) & 0xc78f);
771 mic_hdr->seq_ctrl = cpu_to_le16(
772 le16_to_cpu(hdr->seq_ctrl) & 0xf);
773
774 if (ieee80211_has_a4(hdr->frame_control))
aybuke ozdemir1aba0122015-02-22 15:27:56 +0200775 ether_addr_copy(mic_hdr->addr4, hdr->addr4);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100776
777
778 memcpy(key_buffer, tx_key->key, WLAN_KEY_LEN_CCMP);
779
780 break;
781 default:
782 break;
783 }
784
785}
786
787int vnt_tx_packet(struct vnt_private *priv, struct sk_buff *skb)
788{
789 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
790 struct ieee80211_tx_rate *tx_rate = &info->control.rates[0];
791 struct ieee80211_rate *rate;
792 struct ieee80211_key_conf *tx_key;
793 struct ieee80211_hdr *hdr;
794 struct vnt_mic_hdr *mic_hdr = NULL;
795 struct vnt_tx_buffer *tx_buffer;
796 struct vnt_tx_fifo_head *tx_buffer_head;
797 struct vnt_usb_send_context *tx_context;
798 unsigned long flags;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100799 u16 tx_bytes, tx_header_size, tx_body_size, current_rate, duration_id;
800 u8 pkt_type, fb_option = AUTO_FB_NONE;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100801 bool need_rts = false, is_pspoll = false;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100802 bool need_mic = false;
803
804 hdr = (struct ieee80211_hdr *)(skb->data);
805
806 rate = ieee80211_get_tx_rate(priv->hw, info);
807
808 current_rate = rate->hw_value;
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100809 if (priv->current_rate != current_rate &&
Malcolm Priestley5091d962014-07-05 19:24:23 +0100810 !(priv->hw->conf.flags & IEEE80211_CONF_OFFCHANNEL)) {
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100811 priv->current_rate = current_rate;
Malcolm Priestley57981a62014-07-13 10:42:50 +0100812 vnt_schedule_command(priv, WLAN_CMD_SETPOWER);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100813 }
814
Malcolm Priestleyb23f1432015-04-04 20:49:10 +0100815 if (current_rate > RATE_11M) {
Johannes Berg57fbcce2016-04-12 15:56:15 +0200816 if (info->band == NL80211_BAND_5GHZ) {
Malcolm Priestleyb23f1432015-04-04 20:49:10 +0100817 pkt_type = PK_TYPE_11A;
818 } else {
819 if (tx_rate->flags & IEEE80211_TX_RC_USE_CTS_PROTECT)
820 pkt_type = PK_TYPE_11GB;
821 else
822 pkt_type = PK_TYPE_11GA;
823 }
824 } else {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100825 pkt_type = PK_TYPE_11B;
Malcolm Priestleyb23f1432015-04-04 20:49:10 +0100826 }
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100827
828 spin_lock_irqsave(&priv->lock, flags);
829
Malcolm Priestleya032b162014-07-11 01:08:28 +0100830 tx_context = vnt_get_free_context(priv);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100831 if (!tx_context) {
832 dev_dbg(&priv->usb->dev, "%s No free context\n", __func__);
833 spin_unlock_irqrestore(&priv->lock, flags);
834 return -ENOMEM;
835 }
836
837 tx_context->skb = skb;
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100838 tx_context->pkt_type = pkt_type;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100839 tx_context->need_ack = false;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100840 tx_context->frame_len = skb->len + 4;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100841 tx_context->tx_rate = current_rate;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100842
843 spin_unlock_irqrestore(&priv->lock, flags);
844
845 tx_buffer = (struct vnt_tx_buffer *)tx_context->data;
846 tx_buffer_head = &tx_buffer->fifo_head;
847 tx_body_size = skb->len;
848
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100849 /*Set fifo controls */
850 if (pkt_type == PK_TYPE_11A)
Malcolm Priestleyf0ff3fd2014-07-22 22:49:43 +0100851 tx_buffer_head->fifo_ctl = 0;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100852 else if (pkt_type == PK_TYPE_11B)
Malcolm Priestley47e08892014-07-22 22:49:48 +0100853 tx_buffer_head->fifo_ctl = cpu_to_le16(FIFOCTL_11B);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100854 else if (pkt_type == PK_TYPE_11GB)
Malcolm Priestley47e08892014-07-22 22:49:48 +0100855 tx_buffer_head->fifo_ctl = cpu_to_le16(FIFOCTL_11GB);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100856 else if (pkt_type == PK_TYPE_11GA)
Malcolm Priestley47e08892014-07-22 22:49:48 +0100857 tx_buffer_head->fifo_ctl = cpu_to_le16(FIFOCTL_11GA);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100858
859 if (!ieee80211_is_data(hdr->frame_control)) {
Malcolm Priestley47e08892014-07-22 22:49:48 +0100860 tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_GENINT |
861 FIFOCTL_ISDMA0);
862 tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_TMOEN);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100863
864 tx_buffer_head->time_stamp =
865 cpu_to_le16(DEFAULT_MGN_LIFETIME_RES_64us);
866 } else {
867 tx_buffer_head->time_stamp =
868 cpu_to_le16(DEFAULT_MSDU_LIFETIME_RES_64us);
869 }
870
871 if (!(info->flags & IEEE80211_TX_CTL_NO_ACK)) {
Malcolm Priestley47e08892014-07-22 22:49:48 +0100872 tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_NEEDACK);
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100873 tx_context->need_ack = true;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100874 }
875
876 if (ieee80211_has_retry(hdr->frame_control))
Malcolm Priestley47e08892014-07-22 22:49:48 +0100877 tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_LRETRY);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100878
879 if (tx_rate->flags & IEEE80211_TX_RC_USE_SHORT_PREAMBLE)
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100880 priv->preamble_type = PREAMBLE_SHORT;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100881 else
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100882 priv->preamble_type = PREAMBLE_LONG;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100883
884 if (tx_rate->flags & IEEE80211_TX_RC_USE_RTS_CTS) {
885 need_rts = true;
Malcolm Priestley47e08892014-07-22 22:49:48 +0100886 tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_RTS);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100887 }
888
889 if (ieee80211_has_a4(hdr->frame_control))
Malcolm Priestley47e08892014-07-22 22:49:48 +0100890 tx_buffer_head->fifo_ctl |= cpu_to_le16(FIFOCTL_LHEAD);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100891
892 if (info->flags & IEEE80211_TX_CTL_NO_PS_BUFFER)
893 is_pspoll = true;
894
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100895 tx_buffer_head->frag_ctl =
896 cpu_to_le16(ieee80211_get_hdrlen_from_skb(skb) << 10);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100897
898 if (info->control.hw_key) {
899 tx_key = info->control.hw_key;
900 switch (info->control.hw_key->cipher) {
901 case WLAN_CIPHER_SUITE_WEP40:
902 case WLAN_CIPHER_SUITE_WEP104:
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100903 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_LEGACY);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100904 break;
905 case WLAN_CIPHER_SUITE_TKIP:
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100906 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_TKIP);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100907 break;
908 case WLAN_CIPHER_SUITE_CCMP:
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100909 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_AES);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100910 need_mic = true;
911 default:
912 break;
913 }
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100914 tx_context->frame_len += tx_key->icv_len;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100915 }
916
Malcolm Priestleycb8ee9de2014-07-10 19:56:05 +0100917 tx_buffer_head->current_rate = cpu_to_le16(current_rate);
918
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100919 /* legacy rates TODO use ieee80211_tx_rate */
920 if (current_rate >= RATE_18M && ieee80211_is_data(hdr->frame_control)) {
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100921 if (priv->auto_fb_ctrl == AUTO_FB_0) {
Malcolm Priestley47e08892014-07-22 22:49:48 +0100922 tx_buffer_head->fifo_ctl |=
923 cpu_to_le16(FIFOCTL_AUTO_FB_0);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100924
925 priv->tx_rate_fb0 =
Malcolm Priestleye3f31872014-07-11 01:08:26 +0100926 vnt_fb_opt0[FB_RATE0][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100927 priv->tx_rate_fb1 =
Malcolm Priestleye3f31872014-07-11 01:08:26 +0100928 vnt_fb_opt0[FB_RATE1][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100929
930 fb_option = AUTO_FB_0;
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100931 } else if (priv->auto_fb_ctrl == AUTO_FB_1) {
Malcolm Priestley47e08892014-07-22 22:49:48 +0100932 tx_buffer_head->fifo_ctl |=
933 cpu_to_le16(FIFOCTL_AUTO_FB_1);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100934
935 priv->tx_rate_fb0 =
Malcolm Priestley2331ba42014-07-11 01:08:27 +0100936 vnt_fb_opt1[FB_RATE0][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100937 priv->tx_rate_fb1 =
Malcolm Priestley2331ba42014-07-11 01:08:27 +0100938 vnt_fb_opt1[FB_RATE1][current_rate - RATE_18M];
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100939
940 fb_option = AUTO_FB_1;
941 }
942 }
943
Malcolm Priestley71d764a2014-07-05 19:24:27 +0100944 tx_context->fb_option = fb_option;
945
Malcolm Priestley798f0602014-07-20 15:33:34 +0100946 duration_id = vnt_generate_tx_parameter(tx_context, tx_buffer, &mic_hdr,
947 need_mic, need_rts);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100948
949 tx_header_size = tx_context->tx_hdr_size;
950 if (!tx_header_size) {
951 tx_context->in_use = false;
952 return -ENOMEM;
953 }
954
Malcolm Priestley5deb1cf2014-06-28 23:55:40 +0100955 tx_buffer_head->frag_ctl |= cpu_to_le16(FRAGCTL_NONFRAG);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100956
957 tx_bytes = tx_header_size + tx_body_size;
958
959 memcpy(tx_context->hdr, skb->data, tx_body_size);
960
961 hdr->duration_id = cpu_to_le16(duration_id);
962
963 if (info->control.hw_key) {
964 tx_key = info->control.hw_key;
965 if (tx_key->keylen > 0)
966 vnt_fill_txkey(tx_context, tx_buffer_head->tx_key,
967 tx_key, skb, tx_body_size, mic_hdr);
968 }
969
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +0100970 priv->seq_counter = (le16_to_cpu(hdr->seq_ctrl) &
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100971 IEEE80211_SCTL_SEQ) >> 4;
972
973 tx_buffer->tx_byte_count = cpu_to_le16(tx_bytes);
Malcolm Priestleyd0335a02014-07-22 22:49:44 +0100974 tx_buffer->pkt_no = tx_context->pkt_no;
Malcolm Priestleyc8a3a4c2014-07-22 22:49:46 +0100975 tx_buffer->type = 0x00;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100976
977 tx_bytes += 4;
978
979 tx_context->type = CONTEXT_DATA_PACKET;
980 tx_context->buf_len = tx_bytes;
981
982 spin_lock_irqsave(&priv->lock, flags);
983
Malcolm Priestley476e7d92014-07-15 19:54:39 +0100984 if (vnt_tx_context(priv, tx_context) != STATUS_PENDING) {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100985 spin_unlock_irqrestore(&priv->lock, flags);
986 return -EIO;
987 }
988
989 spin_unlock_irqrestore(&priv->lock, flags);
990
991 return 0;
992}
993
994static int vnt_beacon_xmit(struct vnt_private *priv,
995 struct sk_buff *skb)
996{
997 struct vnt_beacon_buffer *beacon_buffer;
998 struct vnt_tx_short_buf_head *short_head;
999 struct ieee80211_tx_info *info;
1000 struct vnt_usb_send_context *context;
1001 struct ieee80211_mgmt *mgmt_hdr;
1002 unsigned long flags;
1003 u32 frame_size = skb->len + 4;
1004 u16 current_rate, count;
1005
1006 spin_lock_irqsave(&priv->lock, flags);
1007
Malcolm Priestleya032b162014-07-11 01:08:28 +01001008 context = vnt_get_free_context(priv);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001009 if (!context) {
1010 dev_dbg(&priv->usb->dev, "%s No free context!\n", __func__);
1011 spin_unlock_irqrestore(&priv->lock, flags);
1012 return -ENOMEM;
1013 }
1014
1015 context->skb = skb;
1016
1017 spin_unlock_irqrestore(&priv->lock, flags);
1018
1019 beacon_buffer = (struct vnt_beacon_buffer *)&context->data[0];
1020 short_head = &beacon_buffer->short_head;
1021
Malcolm Priestley65df77e2014-07-20 15:33:11 +01001022 if (priv->bb_type == BB_TYPE_11A) {
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001023 current_rate = RATE_6M;
1024
1025 /* Get SignalField,ServiceField,Length */
1026 vnt_get_phy_field(priv, frame_size, current_rate,
1027 PK_TYPE_11A, &short_head->ab);
1028
1029 /* Get Duration and TimeStampOff */
Malcolm Priestley435ae3b2014-07-11 01:08:22 +01001030 short_head->duration = vnt_get_duration_le(priv,
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001031 PK_TYPE_11A, false);
1032 short_head->time_stamp_off =
1033 vnt_time_stamp_off(priv, current_rate);
1034 } else {
1035 current_rate = RATE_1M;
Malcolm Priestley14fb6ce2014-07-22 22:49:49 +01001036 short_head->fifo_ctl |= cpu_to_le16(FIFOCTL_11B);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001037
1038 /* Get SignalField,ServiceField,Length */
1039 vnt_get_phy_field(priv, frame_size, current_rate,
1040 PK_TYPE_11B, &short_head->ab);
1041
1042 /* Get Duration and TimeStampOff */
Malcolm Priestley435ae3b2014-07-11 01:08:22 +01001043 short_head->duration = vnt_get_duration_le(priv,
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001044 PK_TYPE_11B, false);
1045 short_head->time_stamp_off =
1046 vnt_time_stamp_off(priv, current_rate);
1047 }
1048
1049 /* Generate Beacon Header */
1050 mgmt_hdr = &beacon_buffer->mgmt_hdr;
1051 memcpy(mgmt_hdr, skb->data, skb->len);
1052
1053 /* time stamp always 0 */
1054 mgmt_hdr->u.beacon.timestamp = 0;
1055
1056 info = IEEE80211_SKB_CB(skb);
1057 if (info->flags & IEEE80211_TX_CTL_ASSIGN_SEQ) {
1058 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *)mgmt_hdr;
Ragnar B. Johannsson76be25b2014-08-10 22:23:50 +00001059
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001060 hdr->duration_id = 0;
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +01001061 hdr->seq_ctrl = cpu_to_le16(priv->seq_counter << 4);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001062 }
1063
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +01001064 priv->seq_counter++;
1065 if (priv->seq_counter > 0x0fff)
1066 priv->seq_counter = 0;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001067
1068 count = sizeof(struct vnt_tx_short_buf_head) + skb->len;
1069
1070 beacon_buffer->tx_byte_count = cpu_to_le16(count);
Malcolm Priestleyaf90ab32014-07-22 22:49:45 +01001071 beacon_buffer->pkt_no = context->pkt_no;
Malcolm Priestley1e00b442014-07-22 22:49:47 +01001072 beacon_buffer->type = 0x01;
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001073
1074 context->type = CONTEXT_BEACON_PACKET;
1075 context->buf_len = count + 4; /* USB header */
1076
1077 spin_lock_irqsave(&priv->lock, flags);
1078
Malcolm Priestley476e7d92014-07-15 19:54:39 +01001079 if (vnt_tx_context(priv, context) != STATUS_PENDING)
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001080 ieee80211_free_txskb(priv->hw, context->skb);
1081
1082 spin_unlock_irqrestore(&priv->lock, flags);
1083
1084 return 0;
1085}
1086
1087int vnt_beacon_make(struct vnt_private *priv, struct ieee80211_vif *vif)
1088{
1089 struct sk_buff *beacon;
1090
1091 beacon = ieee80211_beacon_get(priv->hw, vif);
1092 if (!beacon)
1093 return -ENOMEM;
1094
1095 if (vnt_beacon_xmit(priv, beacon)) {
1096 ieee80211_free_txskb(priv->hw, beacon);
1097 return -ENODEV;
1098 }
1099
1100 return 0;
1101}
1102
1103int vnt_beacon_enable(struct vnt_private *priv, struct ieee80211_vif *vif,
1104 struct ieee80211_bss_conf *conf)
1105{
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001106 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
1107
1108 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
1109
1110 vnt_mac_set_beacon_interval(priv, conf->beacon_int);
1111
1112 vnt_clear_current_tsf(priv);
1113
1114 vnt_mac_reg_bits_on(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
1115
1116 vnt_reset_next_tbtt(priv, conf->beacon_int);
1117
Mahati Chamarthyeab4e782014-09-21 20:54:52 +05301118 return vnt_beacon_make(priv, vif);
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +01001119}