blob: 0594828bdabf92feca8736a7b777c5d6b7b07763 [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: main_usb.c
17 *
18 * Purpose: driver entry for initial, open, close, tx and rx.
19 *
20 * Author: Lyndon Chen
21 *
22 * Date: Dec 8, 2005
23 *
24 * Functions:
25 *
Andres More26e5b652010-04-13 19:43:07 -030026 * vt6656_probe - module initial (insmod) driver entry
Malcolm Priestleyafc7ef62014-07-25 20:51:47 +010027 * vnt_free_tx_bufs - free tx buffer function
Malcolm Priestley500e1fb2014-07-25 20:51:46 +010028 * vnt_init_registers- initial MAC & BBP & RF internal registers.
Forest Bond92b96792009-06-13 07:38:31 -040029 *
30 * Revision History:
31 */
32#undef __NO_VERSION__
33
Krzysztof Adamskie2382232014-12-09 12:01:38 +010034#include <linux/etherdevice.h>
Al Viro7c51d172013-04-06 18:00:07 -040035#include <linux/file.h>
Forest Bond92b96792009-06-13 07:38:31 -040036#include "device.h"
Forest Bond92b96792009-06-13 07:38:31 -040037#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040038#include "baseband.h"
Forest Bond92b96792009-06-13 07:38:31 -040039#include "mac.h"
Forest Bond92b96792009-06-13 07:38:31 -040040#include "power.h"
Forest Bond92b96792009-06-13 07:38:31 -040041#include "wcmd.h"
Forest Bond92b96792009-06-13 07:38:31 -040042#include "rxtx.h"
Forest Bond92b96792009-06-13 07:38:31 -040043#include "dpc.h"
Forest Bond92b96792009-06-13 07:38:31 -040044#include "rf.h"
Forest Bond92b96792009-06-13 07:38:31 -040045#include "firmware.h"
Malcolm Priestley62c85262014-05-26 13:59:07 +010046#include "usbpipe.h"
Forest Bond92b96792009-06-13 07:38:31 -040047#include "channel.h"
Forest Bond92b96792009-06-13 07:38:31 -040048#include "int.h"
Forest Bond92b96792009-06-13 07:38:31 -040049
Andres Moreec6e0f62013-01-31 18:23:07 -050050/*
51 * define module options
52 */
Forest Bond92b96792009-06-13 07:38:31 -040053
Andres Moreec6e0f62013-01-31 18:23:07 -050054/* version information */
55#define DRIVER_AUTHOR \
56 "VIA Networking Technologies, Inc., <lyndonchen@vntek.com.tw>"
Forest Bond92b96792009-06-13 07:38:31 -040057MODULE_AUTHOR(DRIVER_AUTHOR);
58MODULE_LICENSE("GPL");
59MODULE_DESCRIPTION(DEVICE_FULL_DRV_NAM);
60
Peter Senna Tschudindbf0a032014-07-15 23:23:24 +020061#define RX_DESC_DEF0 64
Malcolm Priestley2f020eb2014-07-16 22:22:06 +010062static int vnt_rx_buffers = RX_DESC_DEF0;
63module_param_named(rx_buffers, vnt_rx_buffers, int, 0644);
64MODULE_PARM_DESC(rx_buffers, "Number of receive usb rx buffers");
Forest Bond92b96792009-06-13 07:38:31 -040065
Peter Senna Tschudindbf0a032014-07-15 23:23:24 +020066#define TX_DESC_DEF0 64
Malcolm Priestley3220e3a2014-07-16 22:22:07 +010067static int vnt_tx_buffers = TX_DESC_DEF0;
Malcolm Priestley1b6953d2014-07-18 06:36:09 +010068module_param_named(tx_buffers, vnt_tx_buffers, int, 0644);
Malcolm Priestley3220e3a2014-07-16 22:22:07 +010069MODULE_PARM_DESC(tx_buffers, "Number of receive usb tx buffers");
70
Forest Bond92b96792009-06-13 07:38:31 -040071#define RTS_THRESH_DEF 2347
Forest Bond92b96792009-06-13 07:38:31 -040072#define FRAG_THRESH_DEF 2346
Forest Bond92b96792009-06-13 07:38:31 -040073#define SHORT_RETRY_DEF 8
Forest Bond92b96792009-06-13 07:38:31 -040074#define LONG_RETRY_DEF 4
Forest Bond92b96792009-06-13 07:38:31 -040075
Forest Bond92b96792009-06-13 07:38:31 -040076/* BasebandType[] baseband type selected
maomao xud2713e52015-12-31 15:20:53 +080077 * 0: indicate 802.11a type
78 * 1: indicate 802.11b type
79 * 2: indicate 802.11g type
80 */
Forest Bond92b96792009-06-13 07:38:31 -040081
Marcos Paulo de Souza24b46f92012-07-02 23:59:30 -030082#define BBP_TYPE_DEF 2
Forest Bond92b96792009-06-13 07:38:31 -040083
Andres Moreec6e0f62013-01-31 18:23:07 -050084/*
85 * Static vars definitions
86 */
Forest Bond92b96792009-06-13 07:38:31 -040087
Greg Kroah-Hartman4d088872012-08-17 17:48:33 -070088static struct usb_device_id vt6656_table[] = {
Forest Bond92b96792009-06-13 07:38:31 -040089 {USB_DEVICE(VNT_USB_VENDOR_ID, VNT_USB_PRODUCT_ID)},
90 {}
91};
92
Malcolm Priestley7665cf22014-07-25 20:51:45 +010093static void vnt_set_options(struct vnt_private *priv)
Malcolm Priestley28e067f2014-07-16 22:21:59 +010094{
Malcolm Priestley3220e3a2014-07-16 22:22:07 +010095 /* Set number of TX buffers */
96 if (vnt_tx_buffers < CB_MIN_TX_DESC || vnt_tx_buffers > CB_MAX_TX_DESC)
Malcolm Priestley03b7e352014-07-19 12:30:04 +010097 priv->num_tx_context = TX_DESC_DEF0;
Malcolm Priestley3220e3a2014-07-16 22:22:07 +010098 else
Malcolm Priestley03b7e352014-07-19 12:30:04 +010099 priv->num_tx_context = vnt_tx_buffers;
Malcolm Priestley2f020eb2014-07-16 22:22:06 +0100100
101 /* Set number of RX buffers */
102 if (vnt_rx_buffers < CB_MIN_RX_DESC || vnt_rx_buffers > CB_MAX_RX_DESC)
Malcolm Priestley6da47382014-07-19 12:30:03 +0100103 priv->num_rcb = RX_DESC_DEF0;
Malcolm Priestley2f020eb2014-07-16 22:22:06 +0100104 else
Malcolm Priestley6da47382014-07-19 12:30:03 +0100105 priv->num_rcb = vnt_rx_buffers;
Malcolm Priestley2f020eb2014-07-16 22:22:06 +0100106
Malcolm Priestley388e5cb2014-07-20 15:33:20 +0100107 priv->short_retry_limit = SHORT_RETRY_DEF;
108 priv->long_retry_limit = LONG_RETRY_DEF;
Malcolm Priestleyda3b67b2014-07-16 22:22:00 +0100109 priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100110 priv->bb_type = BBP_TYPE_DEF;
Malcolm Priestleye12471d2014-07-20 15:33:12 +0100111 priv->packet_type = priv->bb_type;
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100112 priv->auto_fb_ctrl = AUTO_FB_0;
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100113 priv->preamble_type = 0;
Malcolm Priestley35cc8f92014-07-19 12:30:12 +0100114 priv->exist_sw_net_addr = false;
Forest Bond92b96792009-06-13 07:38:31 -0400115}
116
Andres Moreec6e0f62013-01-31 18:23:07 -0500117/*
118 * initialization of MAC & BBP registers
119 */
Malcolm Priestley500e1fb2014-07-25 20:51:46 +0100120static int vnt_init_registers(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -0400121{
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100122 struct vnt_cmd_card_init *init_cmd = &priv->init_command;
123 struct vnt_rsp_card_init *init_rsp = &priv->init_response;
124 u8 antenna;
Malcolm Priestleydd0a7742012-12-10 21:59:10 +0000125 int ii;
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100126 int status = STATUS_SUCCESS;
127 u8 tmp;
128 u8 calib_tx_iq = 0, calib_tx_dc = 0, calib_rx_iq = 0;
Forest Bond92b96792009-06-13 07:38:31 -0400129
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100130 dev_dbg(&priv->usb->dev, "---->INIbInitAdapter. [%d][%d]\n",
Malcolm Priestleye12471d2014-07-20 15:33:12 +0100131 DEVICE_INIT_COLD, priv->packet_type);
Malcolm Priestley302433d2013-11-03 17:40:51 +0000132
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100133 if (!vnt_check_firmware_version(priv)) {
134 if (vnt_download_firmware(priv) == true) {
135 if (vnt_firmware_branch_to_sram(priv) == false) {
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100136 dev_dbg(&priv->usb->dev,
Malcolm Priestley14321462014-06-04 18:25:32 +0100137 " vnt_firmware_branch_to_sram fail\n");
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000138 return false;
139 }
140 } else {
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100141 dev_dbg(&priv->usb->dev, "FIRMWAREbDownload fail\n");
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000142 return false;
143 }
144 }
Forest Bond92b96792009-06-13 07:38:31 -0400145
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100146 if (!vnt_vt3184_init(priv)) {
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100147 dev_dbg(&priv->usb->dev, "vnt_vt3184_init fail\n");
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000148 return false;
149 }
Forest Bond92b96792009-06-13 07:38:31 -0400150
Malcolm Priestley748bf692013-11-03 17:49:32 +0000151 init_cmd->init_class = DEVICE_INIT_COLD;
Malcolm Priestley35cc8f92014-07-19 12:30:12 +0100152 init_cmd->exist_sw_net_addr = priv->exist_sw_net_addr;
Malcolm Priestley3d47a6f2013-11-03 17:43:23 +0000153 for (ii = 0; ii < 6; ii++)
Malcolm Priestleyebf9b312014-07-19 12:30:10 +0100154 init_cmd->sw_net_addr[ii] = priv->current_net_addr[ii];
Malcolm Priestley388e5cb2014-07-20 15:33:20 +0100155 init_cmd->short_retry_limit = priv->short_retry_limit;
156 init_cmd->long_retry_limit = priv->long_retry_limit;
Forest Bond92b96792009-06-13 07:38:31 -0400157
Malcolm Priestley3d47a6f2013-11-03 17:43:23 +0000158 /* issue card_init command to device */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100159 status = vnt_control_out(priv,
Malcolm Priestley3d47a6f2013-11-03 17:43:23 +0000160 MESSAGE_TYPE_CARDINIT, 0, 0,
Malcolm Priestley748bf692013-11-03 17:49:32 +0000161 sizeof(struct vnt_cmd_card_init), (u8 *)init_cmd);
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100162 if (status != STATUS_SUCCESS) {
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100163 dev_dbg(&priv->usb->dev, "Issue Card init fail\n");
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000164 return false;
165 }
Forest Bond92b96792009-06-13 07:38:31 -0400166
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100167 status = vnt_control_in(priv, MESSAGE_TYPE_INIT_RSP, 0, 0,
Malcolm Priestley748bf692013-11-03 17:49:32 +0000168 sizeof(struct vnt_rsp_card_init), (u8 *)init_rsp);
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100169 if (status != STATUS_SUCCESS) {
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100170 dev_dbg(&priv->usb->dev,
Malcolm Priestley302433d2013-11-03 17:40:51 +0000171 "Cardinit request in status fail!\n");
Malcolm Priestley302433d2013-11-03 17:40:51 +0000172 return false;
173 }
Forest Bond92b96792009-06-13 07:38:31 -0400174
Andres Moreec6e0f62013-01-31 18:23:07 -0500175 /* local ID for AES functions */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100176 status = vnt_control_in(priv, MESSAGE_TYPE_READ,
Malcolm Priestley302433d2013-11-03 17:40:51 +0000177 MAC_REG_LOCALID, MESSAGE_REQUEST_MACREG, 1,
Malcolm Priestleyf1945a12014-07-19 12:30:06 +0100178 &priv->local_id);
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100179 if (status != STATUS_SUCCESS)
Malcolm Priestley302433d2013-11-03 17:40:51 +0000180 return false;
Forest Bond92b96792009-06-13 07:38:31 -0400181
Andres Moreec6e0f62013-01-31 18:23:07 -0500182 /* do MACbSoftwareReset in MACvInitialize */
183
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100184 priv->top_ofdm_basic_rate = RATE_24M;
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100185 priv->top_cck_basic_rate = RATE_1M;
Malcolm Priestley24868902014-05-17 09:50:31 +0100186
Andres Moreec6e0f62013-01-31 18:23:07 -0500187 /* target to IF pin while programming to RF chip */
Malcolm Priestley5a974912014-07-20 15:33:18 +0100188 priv->power = 0xFF;
Forest Bond92b96792009-06-13 07:38:31 -0400189
Malcolm Priestley5a974912014-07-20 15:33:18 +0100190 priv->cck_pwr = priv->eeprom[EEP_OFS_PWR_CCK];
191 priv->ofdm_pwr_g = priv->eeprom[EEP_OFS_PWR_OFDMG];
Andres Moreec6e0f62013-01-31 18:23:07 -0500192 /* load power table */
193 for (ii = 0; ii < 14; ii++) {
Malcolm Priestley5a974912014-07-20 15:33:18 +0100194 priv->cck_pwr_tbl[ii] =
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100195 priv->eeprom[ii + EEP_OFS_CCK_PWR_TBL];
Malcolm Priestley5a974912014-07-20 15:33:18 +0100196 if (priv->cck_pwr_tbl[ii] == 0)
197 priv->cck_pwr_tbl[ii] = priv->cck_pwr;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000198
Malcolm Priestley5a974912014-07-20 15:33:18 +0100199 priv->ofdm_pwr_tbl[ii] =
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100200 priv->eeprom[ii + EEP_OFS_OFDM_PWR_TBL];
Malcolm Priestley5a974912014-07-20 15:33:18 +0100201 if (priv->ofdm_pwr_tbl[ii] == 0)
202 priv->ofdm_pwr_tbl[ii] = priv->ofdm_pwr_g;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000203 }
Forest Bond92b96792009-06-13 07:38:31 -0400204
Andres Moreec6e0f62013-01-31 18:23:07 -0500205 /*
206 * original zonetype is USA, but custom zonetype is Europe,
207 * then need to recover 12, 13, 14 channels with 11 channel
208 */
Malcolm Priestley9ef21842014-06-25 21:19:38 +0100209 for (ii = 11; ii < 14; ii++) {
Malcolm Priestley5a974912014-07-20 15:33:18 +0100210 priv->cck_pwr_tbl[ii] = priv->cck_pwr_tbl[10];
211 priv->ofdm_pwr_tbl[ii] = priv->ofdm_pwr_tbl[10];
Malcolm Priestley302433d2013-11-03 17:40:51 +0000212 }
Forest Bond92b96792009-06-13 07:38:31 -0400213
Malcolm Priestley5a974912014-07-20 15:33:18 +0100214 priv->ofdm_pwr_a = 0x34; /* same as RFbMA2829SelectChannel */
Andres Moreec6e0f62013-01-31 18:23:07 -0500215
Malcolm Priestley302433d2013-11-03 17:40:51 +0000216 /* load OFDM A power table */
217 for (ii = 0; ii < CB_MAX_CHANNEL_5G; ii++) {
Malcolm Priestley5a974912014-07-20 15:33:18 +0100218 priv->ofdm_a_pwr_tbl[ii] =
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100219 priv->eeprom[ii + EEP_OFS_OFDMA_PWR_TBL];
Forest Bond92b96792009-06-13 07:38:31 -0400220
Malcolm Priestley5a974912014-07-20 15:33:18 +0100221 if (priv->ofdm_a_pwr_tbl[ii] == 0)
222 priv->ofdm_a_pwr_tbl[ii] = priv->ofdm_pwr_a;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000223 }
Forest Bond92b96792009-06-13 07:38:31 -0400224
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100225 antenna = priv->eeprom[EEP_OFS_ANTENNA];
Malcolm Priestley302433d2013-11-03 17:40:51 +0000226
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100227 if (antenna & EEP_ANTINV)
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100228 priv->tx_rx_ant_inv = true;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000229 else
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100230 priv->tx_rx_ant_inv = false;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000231
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100232 antenna &= (EEP_ANTENNA_AUX | EEP_ANTENNA_MAIN);
Forest Bond92b96792009-06-13 07:38:31 -0400233
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100234 if (antenna == 0) /* if not set default is both */
235 antenna = (EEP_ANTENNA_AUX | EEP_ANTENNA_MAIN);
Forest Bond92b96792009-06-13 07:38:31 -0400236
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100237 if (antenna == (EEP_ANTENNA_AUX | EEP_ANTENNA_MAIN)) {
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100238 priv->tx_antenna_mode = ANT_B;
239 priv->rx_antenna_sel = 1;
Forest Bond92b96792009-06-13 07:38:31 -0400240
Parth Sanef72ea982016-03-24 01:08:29 +0530241 if (priv->tx_rx_ant_inv)
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100242 priv->rx_antenna_mode = ANT_A;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000243 else
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100244 priv->rx_antenna_mode = ANT_B;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000245 } else {
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100246 priv->rx_antenna_sel = 0;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000247
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100248 if (antenna & EEP_ANTENNA_AUX) {
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100249 priv->tx_antenna_mode = ANT_A;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000250
Parth Sanef72ea982016-03-24 01:08:29 +0530251 if (priv->tx_rx_ant_inv)
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100252 priv->rx_antenna_mode = ANT_B;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000253 else
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100254 priv->rx_antenna_mode = ANT_A;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000255 } else {
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100256 priv->tx_antenna_mode = ANT_B;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000257
Parth Sanef72ea982016-03-24 01:08:29 +0530258 if (priv->tx_rx_ant_inv)
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100259 priv->rx_antenna_mode = ANT_A;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000260 else
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100261 priv->rx_antenna_mode = ANT_B;
Malcolm Priestley302433d2013-11-03 17:40:51 +0000262 }
263 }
264
Malcolm Priestleyed0db512014-07-14 19:43:06 +0100265 /* Set initial antenna mode */
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100266 vnt_set_antenna_mode(priv, priv->rx_antenna_mode);
Malcolm Priestleyed0db512014-07-14 19:43:06 +0100267
Andres Moreec6e0f62013-01-31 18:23:07 -0500268 /* get Auto Fall Back type */
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100269 priv->auto_fb_ctrl = AUTO_FB_0;
Forest Bond92b96792009-06-13 07:38:31 -0400270
Andres Moreec6e0f62013-01-31 18:23:07 -0500271 /* default Auto Mode */
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100272 priv->bb_type = BB_TYPE_11G;
Forest Bond92b96792009-06-13 07:38:31 -0400273
Andres Moreec6e0f62013-01-31 18:23:07 -0500274 /* get RFType */
Malcolm Priestley6242eca2014-07-19 12:30:07 +0100275 priv->rf_type = init_rsp->rf_type;
Forest Bond92b96792009-06-13 07:38:31 -0400276
Andres Moreec6e0f62013-01-31 18:23:07 -0500277 /* load vt3266 calibration parameters in EEPROM */
Malcolm Priestley6242eca2014-07-19 12:30:07 +0100278 if (priv->rf_type == RF_VT3226D0) {
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100279 if ((priv->eeprom[EEP_OFS_MAJOR_VER] == 0x1) &&
280 (priv->eeprom[EEP_OFS_MINOR_VER] >= 0x4)) {
Malcolm Priestley302433d2013-11-03 17:40:51 +0000281
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100282 calib_tx_iq = priv->eeprom[EEP_OFS_CALIB_TX_IQ];
283 calib_tx_dc = priv->eeprom[EEP_OFS_CALIB_TX_DC];
284 calib_rx_iq = priv->eeprom[EEP_OFS_CALIB_RX_IQ];
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100285 if (calib_tx_iq || calib_tx_dc || calib_rx_iq) {
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200286 /* CR255, enable TX/RX IQ and
maomao xud2713e52015-12-31 15:20:53 +0800287 * DC compensation mode
288 */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100289 vnt_control_out_u8(priv,
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200290 MESSAGE_REQUEST_BBREG,
291 0xff,
292 0x03);
293 /* CR251, TX I/Q Imbalance Calibration */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100294 vnt_control_out_u8(priv,
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200295 MESSAGE_REQUEST_BBREG,
296 0xfb,
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100297 calib_tx_iq);
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200298 /* CR252, TX DC-Offset Calibration */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100299 vnt_control_out_u8(priv,
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200300 MESSAGE_REQUEST_BBREG,
301 0xfC,
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100302 calib_tx_dc);
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200303 /* CR253, RX I/Q Imbalance Calibration */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100304 vnt_control_out_u8(priv,
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200305 MESSAGE_REQUEST_BBREG,
306 0xfd,
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100307 calib_rx_iq);
Malcolm Priestley302433d2013-11-03 17:40:51 +0000308 } else {
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200309 /* CR255, turn off
maomao xud2713e52015-12-31 15:20:53 +0800310 * BB Calibration compensation
311 */
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100312 vnt_control_out_u8(priv,
Peter Senna Tschudin33e9ab32014-07-15 22:46:48 +0200313 MESSAGE_REQUEST_BBREG,
314 0xff,
315 0x0);
Malcolm Priestley302433d2013-11-03 17:40:51 +0000316 }
317 }
318 }
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000319
Andres Moreec6e0f62013-01-31 18:23:07 -0500320 /* get permanent network address */
Malcolm Priestley41e83212014-07-19 12:30:11 +0100321 memcpy(priv->permanent_net_addr, init_rsp->net_addr, 6);
Krzysztof Adamskie2382232014-12-09 12:01:38 +0100322 ether_addr_copy(priv->current_net_addr, priv->permanent_net_addr);
Forest Bond92b96792009-06-13 07:38:31 -0400323
Andres Moreec6e0f62013-01-31 18:23:07 -0500324 /* if exist SW network address, use it */
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100325 dev_dbg(&priv->usb->dev, "Network address = %pM\n",
Malcolm Priestleyebf9b312014-07-19 12:30:10 +0100326 priv->current_net_addr);
Forest Bond92b96792009-06-13 07:38:31 -0400327
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000328 /*
329 * set BB and packet type at the same time
330 * set Short Slot Time, xIFS, and RSPINF
331 */
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100332 if (priv->bb_type == BB_TYPE_11A)
Malcolm Priestleya641c9e2014-07-20 15:33:21 +0100333 priv->short_slot_time = true;
Malcolm Priestleyd35d5fb2014-06-28 23:55:44 +0100334 else
Malcolm Priestleya641c9e2014-07-20 15:33:21 +0100335 priv->short_slot_time = false;
Forest Bond92b96792009-06-13 07:38:31 -0400336
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100337 vnt_set_short_slot_time(priv);
Forest Bond92b96792009-06-13 07:38:31 -0400338
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100339 priv->radio_ctl = priv->eeprom[EEP_OFS_RADIOCTL];
Forest Bond92b96792009-06-13 07:38:31 -0400340
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100341 if ((priv->radio_ctl & EEP_RADIOCTL_ENABLE) != 0) {
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100342 status = vnt_control_in(priv, MESSAGE_TYPE_READ,
343 MAC_REG_GPIOCTL1, MESSAGE_REQUEST_MACREG, 1, &tmp);
Forest Bond92b96792009-06-13 07:38:31 -0400344
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100345 if (status != STATUS_SUCCESS)
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000346 return false;
Forest Bond92b96792009-06-13 07:38:31 -0400347
Malcolm Priestleyd7f2d8f2014-07-18 23:00:54 +0100348 if ((tmp & GPIO3_DATA) == 0)
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100349 vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL1,
Malcolm Priestley36957532014-05-31 11:50:42 +0100350 GPIO3_INTMD);
Malcolm Priestleyd7f2d8f2014-07-18 23:00:54 +0100351 else
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100352 vnt_mac_reg_bits_off(priv, MAC_REG_GPIOCTL1,
Malcolm Priestleya9bed1d2014-05-31 11:50:41 +0100353 GPIO3_INTMD);
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000354 }
355
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100356 vnt_mac_set_led(priv, LEDSTS_TMLEN, 0x38);
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000357
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100358 vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_SLOW);
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000359
Malcolm Priestley3ce54932014-07-16 22:22:01 +0100360 vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL0, 0x01);
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000361
Malcolm Priestleyd7f2d8f2014-07-18 23:00:54 +0100362 vnt_radio_power_on(priv);
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000363
Malcolm Priestley4e62dcc92014-07-16 22:22:02 +0100364 dev_dbg(&priv->usb->dev, "<----INIbInitAdapter Exit\n");
Malcolm Priestleycbc06fb2013-11-03 17:52:15 +0000365
366 return true;
Forest Bond92b96792009-06-13 07:38:31 -0400367}
368
Malcolm Priestleyafc7ef62014-07-25 20:51:47 +0100369static void vnt_free_tx_bufs(struct vnt_private *priv)
Andres More8611a292010-05-01 14:25:00 -0300370{
Malcolm Priestleyf2625c22014-02-28 23:58:36 +0000371 struct vnt_usb_send_context *tx_context;
372 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400373
Malcolm Priestley03b7e352014-07-19 12:30:04 +0100374 for (ii = 0; ii < priv->num_tx_context; ii++) {
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +0100375 tx_context = priv->tx_context[ii];
Malcolm Priestleyf2625c22014-02-28 23:58:36 +0000376 /* deallocate URBs */
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100377 if (tx_context->urb) {
378 usb_kill_urb(tx_context->urb);
379 usb_free_urb(tx_context->urb);
Malcolm Priestleyf2625c22014-02-28 23:58:36 +0000380 }
Forest Bond92b96792009-06-13 07:38:31 -0400381
Malcolm Priestleyf2625c22014-02-28 23:58:36 +0000382 kfree(tx_context);
383 }
Forest Bond92b96792009-06-13 07:38:31 -0400384}
385
Malcolm Priestley0dd6e682014-07-25 20:51:48 +0100386static void vnt_free_rx_bufs(struct vnt_private *priv)
Andres More8611a292010-05-01 14:25:00 -0300387{
Malcolm Priestleyafc5eeb2014-02-28 23:58:35 +0000388 struct vnt_rcb *rcb;
Malcolm Priestley115cac22013-08-28 21:12:35 +0100389 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400390
Malcolm Priestley6da47382014-07-19 12:30:03 +0100391 for (ii = 0; ii < priv->num_rcb; ii++) {
Malcolm Priestley85770112014-07-18 06:36:15 +0100392 rcb = priv->rcb[ii];
Malcolm Priestley8cffb3c2014-06-28 23:55:42 +0100393 if (!rcb)
394 continue;
Forest Bond92b96792009-06-13 07:38:31 -0400395
Malcolm Priestleyafc5eeb2014-02-28 23:58:35 +0000396 /* deallocate URBs */
Malcolm Priestley325de982014-07-18 06:36:11 +0100397 if (rcb->urb) {
398 usb_kill_urb(rcb->urb);
399 usb_free_urb(rcb->urb);
Malcolm Priestleyafc5eeb2014-02-28 23:58:35 +0000400 }
Forest Bond92b96792009-06-13 07:38:31 -0400401
Malcolm Priestleyafc5eeb2014-02-28 23:58:35 +0000402 /* deallocate skb */
403 if (rcb->skb)
404 dev_kfree_skb(rcb->skb);
Malcolm Priestleyafc5eeb2014-02-28 23:58:35 +0000405
Malcolm Priestley8cffb3c2014-06-28 23:55:42 +0100406 kfree(rcb);
407 }
Forest Bond92b96792009-06-13 07:38:31 -0400408}
409
Malcolm Priestley76d382f2014-07-18 06:36:08 +0100410static void usb_device_reset(struct vnt_private *priv)
Forest Bond92b96792009-06-13 07:38:31 -0400411{
Peter Senna Tschudin42b138d2014-07-15 23:23:26 +0200412 int status;
413
Malcolm Priestley76d382f2014-07-18 06:36:08 +0100414 status = usb_reset_device(priv->usb);
Forest Bond92b96792009-06-13 07:38:31 -0400415 if (status)
Malcolm Priestley76d382f2014-07-18 06:36:08 +0100416 dev_warn(&priv->usb->dev,
Peter Senna Tschudind9cf2f92014-07-16 18:08:02 +0200417 "usb_device_reset fail status=%d\n", status);
Forest Bond92b96792009-06-13 07:38:31 -0400418}
Forest Bond92b96792009-06-13 07:38:31 -0400419
Malcolm Priestley1c2fd562014-07-25 20:51:49 +0100420static void vnt_free_int_bufs(struct vnt_private *priv)
Andres More8611a292010-05-01 14:25:00 -0300421{
Malcolm Priestley1506bf32014-02-28 23:58:37 +0000422 kfree(priv->int_buf.data_buf);
Forest Bond92b96792009-06-13 07:38:31 -0400423}
424
Malcolm Priestleyef484422014-07-25 20:51:50 +0100425static bool vnt_alloc_bufs(struct vnt_private *priv)
Malcolm Priestleydd0a7742012-12-10 21:59:10 +0000426{
Malcolm Priestley35491de2014-02-28 23:58:34 +0000427 struct vnt_usb_send_context *tx_context;
428 struct vnt_rcb *rcb;
Malcolm Priestley115cac22013-08-28 21:12:35 +0100429 int ii;
Forest Bond92b96792009-06-13 07:38:31 -0400430
Malcolm Priestley03b7e352014-07-19 12:30:04 +0100431 for (ii = 0; ii < priv->num_tx_context; ii++) {
Malcolm Priestley35491de2014-02-28 23:58:34 +0000432 tx_context = kmalloc(sizeof(struct vnt_usb_send_context),
Malcolm Priestley115cac22013-08-28 21:12:35 +0100433 GFP_KERNEL);
Alison Schofield27f31cf92016-02-10 23:06:45 -0800434 if (!tx_context)
Malcolm Priestley35491de2014-02-28 23:58:34 +0000435 goto free_tx;
Forest Bond92b96792009-06-13 07:38:31 -0400436
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +0100437 priv->tx_context[ii] = tx_context;
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100438 tx_context->priv = priv;
Malcolm Priestley71d764a2014-07-05 19:24:27 +0100439 tx_context->pkt_no = ii;
Malcolm Priestley115cac22013-08-28 21:12:35 +0100440
Malcolm Priestley35491de2014-02-28 23:58:34 +0000441 /* allocate URBs */
Alison Schofield3e0f86b2016-02-12 10:05:01 -0800442 tx_context->urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang68d81de2016-08-11 23:23:43 +0200443 if (!tx_context->urb)
Malcolm Priestley35491de2014-02-28 23:58:34 +0000444 goto free_tx;
Forest Bond92b96792009-06-13 07:38:31 -0400445
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100446 tx_context->in_use = false;
Forest Bond92b96792009-06-13 07:38:31 -0400447 }
448
Malcolm Priestley6da47382014-07-19 12:30:03 +0100449 for (ii = 0; ii < priv->num_rcb; ii++) {
Malcolm Priestley85770112014-07-18 06:36:15 +0100450 priv->rcb[ii] = kzalloc(sizeof(struct vnt_rcb), GFP_KERNEL);
451 if (!priv->rcb[ii]) {
Malcolm Priestley8cffb3c2014-06-28 23:55:42 +0100452 dev_err(&priv->usb->dev,
453 "failed to allocate rcb no %d\n", ii);
454 goto free_rx_tx;
455 }
456
Malcolm Priestley85770112014-07-18 06:36:15 +0100457 rcb = priv->rcb[ii];
Malcolm Priestley8cffb3c2014-06-28 23:55:42 +0100458
Malcolm Priestley325de982014-07-18 06:36:11 +0100459 rcb->priv = priv;
Malcolm Priestley35491de2014-02-28 23:58:34 +0000460
461 /* allocate URBs */
Alison Schofield3e0f86b2016-02-12 10:05:01 -0800462 rcb->urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang68d81de2016-08-11 23:23:43 +0200463 if (!rcb->urb)
Malcolm Priestley35491de2014-02-28 23:58:34 +0000464 goto free_rx_tx;
Malcolm Priestley35491de2014-02-28 23:58:34 +0000465
Malcolm Priestley63b99072014-06-25 21:14:22 +0100466 rcb->skb = dev_alloc_skb(priv->rx_buf_sz);
Alison Schofield27f31cf92016-02-10 23:06:45 -0800467 if (!rcb->skb)
Malcolm Priestley35491de2014-02-28 23:58:34 +0000468 goto free_rx_tx;
Malcolm Priestley35491de2014-02-28 23:58:34 +0000469
Malcolm Priestley325de982014-07-18 06:36:11 +0100470 rcb->in_use = false;
Malcolm Priestley35491de2014-02-28 23:58:34 +0000471
Malcolm Priestley8cffb3c2014-06-28 23:55:42 +0100472 /* submit rx urb */
Malcolm Priestley2dc37af2014-07-15 19:54:41 +0100473 if (vnt_submit_rx_urb(priv, rcb))
Malcolm Priestley8cffb3c2014-06-28 23:55:42 +0100474 goto free_rx_tx;
Malcolm Priestley35491de2014-02-28 23:58:34 +0000475 }
476
Alison Schofield3e0f86b2016-02-12 10:05:01 -0800477 priv->interrupt_urb = usb_alloc_urb(0, GFP_KERNEL);
Wolfram Sang68d81de2016-08-11 23:23:43 +0200478 if (!priv->interrupt_urb)
Malcolm Priestley35491de2014-02-28 23:58:34 +0000479 goto free_rx_tx;
Malcolm Priestley35491de2014-02-28 23:58:34 +0000480
481 priv->int_buf.data_buf = kmalloc(MAX_INTERRUPT_SIZE, GFP_KERNEL);
Alison Schofield27f31cf92016-02-10 23:06:45 -0800482 if (!priv->int_buf.data_buf) {
Malcolm Priestley3d582482014-07-18 06:36:14 +0100483 usb_free_urb(priv->interrupt_urb);
Malcolm Priestley35491de2014-02-28 23:58:34 +0000484 goto free_rx_tx;
485 }
486
487 return true;
Forest Bond92b96792009-06-13 07:38:31 -0400488
489free_rx_tx:
Malcolm Priestley0dd6e682014-07-25 20:51:48 +0100490 vnt_free_rx_bufs(priv);
Forest Bond92b96792009-06-13 07:38:31 -0400491
492free_tx:
Malcolm Priestleyafc7ef62014-07-25 20:51:47 +0100493 vnt_free_tx_bufs(priv);
Forest Bond92b96792009-06-13 07:38:31 -0400494
Andres Moree269fc22013-02-12 20:36:29 -0500495 return false;
Forest Bond92b96792009-06-13 07:38:31 -0400496}
497
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100498static void vnt_tx_80211(struct ieee80211_hw *hw,
499 struct ieee80211_tx_control *control, struct sk_buff *skb)
500{
501 struct vnt_private *priv = hw->priv;
502
Malcolm Priestleyb914b492015-09-27 09:17:43 +0100503 if (vnt_tx_packet(priv, skb))
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100504 ieee80211_free_txskb(hw, skb);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100505}
506
507static int vnt_start(struct ieee80211_hw *hw)
508{
509 struct vnt_private *priv = hw->priv;
510
511 priv->rx_buf_sz = MAX_TOTAL_SIZE_WITH_ALL_HEADERS;
512
Abdul Hussain5699c0f2015-06-16 05:43:16 +0000513 if (!vnt_alloc_bufs(priv)) {
Malcolm Priestleyef484422014-07-25 20:51:50 +0100514 dev_dbg(&priv->usb->dev, "vnt_alloc_bufs fail...\n");
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100515 return -ENOMEM;
516 }
517
Malcolm Priestley2ab3d462014-07-24 21:13:18 +0100518 clear_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100519
Malcolm Priestley500e1fb2014-07-25 20:51:46 +0100520 if (vnt_init_registers(priv) == false) {
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100521 dev_dbg(&priv->usb->dev, " init register fail\n");
522 goto free_all;
523 }
524
525 priv->int_interval = 1; /* bInterval is set to 1 */
526
Malcolm Priestley62001932014-07-15 19:54:35 +0100527 vnt_int_start_interrupt(priv);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100528
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100529 ieee80211_wake_queues(hw);
530
531 return 0;
532
533free_all:
Malcolm Priestley0dd6e682014-07-25 20:51:48 +0100534 vnt_free_rx_bufs(priv);
Malcolm Priestleyafc7ef62014-07-25 20:51:47 +0100535 vnt_free_tx_bufs(priv);
Malcolm Priestley1c2fd562014-07-25 20:51:49 +0100536 vnt_free_int_bufs(priv);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100537
Malcolm Priestley3d582482014-07-18 06:36:14 +0100538 usb_kill_urb(priv->interrupt_urb);
539 usb_free_urb(priv->interrupt_urb);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100540
541 return -ENOMEM;
542}
543
544static void vnt_stop(struct ieee80211_hw *hw)
545{
546 struct vnt_private *priv = hw->priv;
547 int i;
548
549 if (!priv)
550 return;
551
552 for (i = 0; i < MAX_KEY_TABLE; i++)
553 vnt_mac_disable_keyentry(priv, i);
554
555 /* clear all keys */
556 priv->key_entry_inuse = 0;
557
Malcolm Priestleycbcc9a32014-07-24 21:13:20 +0100558 if (!test_bit(DEVICE_FLAGS_UNPLUG, &priv->flags))
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100559 vnt_mac_shutdown(priv);
560
561 ieee80211_stop_queues(hw);
562
Malcolm Priestley4c3b0d42014-07-24 21:13:17 +0100563 set_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100564
565 cancel_delayed_work_sync(&priv->run_command_work);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100566
Malcolm Priestley33a60b82014-07-13 10:42:45 +0100567 priv->cmd_running = false;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100568
Malcolm Priestleyafc7ef62014-07-25 20:51:47 +0100569 vnt_free_tx_bufs(priv);
Malcolm Priestley0dd6e682014-07-25 20:51:48 +0100570 vnt_free_rx_bufs(priv);
Malcolm Priestley1c2fd562014-07-25 20:51:49 +0100571 vnt_free_int_bufs(priv);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100572
Malcolm Priestley3d582482014-07-18 06:36:14 +0100573 usb_kill_urb(priv->interrupt_urb);
574 usb_free_urb(priv->interrupt_urb);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100575}
576
577static int vnt_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
578{
579 struct vnt_private *priv = hw->priv;
580
581 priv->vif = vif;
582
583 switch (vif->type) {
584 case NL80211_IFTYPE_STATION:
585 break;
586 case NL80211_IFTYPE_ADHOC:
587 vnt_mac_reg_bits_off(priv, MAC_REG_RCR, RCR_UNICAST);
588
589 vnt_mac_reg_bits_on(priv, MAC_REG_HOSTCR, HOSTCR_ADHOC);
590
591 break;
592 case NL80211_IFTYPE_AP:
593 vnt_mac_reg_bits_off(priv, MAC_REG_RCR, RCR_UNICAST);
594
595 vnt_mac_reg_bits_on(priv, MAC_REG_HOSTCR, HOSTCR_AP);
596
597 break;
598 default:
599 return -EOPNOTSUPP;
600 }
601
602 priv->op_mode = vif->type;
603
Malcolm Priestley1ecd0832014-06-28 23:55:46 +0100604 vnt_set_bss_mode(priv);
605
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100606 /* LED blink on TX */
607 vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_INTER);
608
609 return 0;
610}
611
612static void vnt_remove_interface(struct ieee80211_hw *hw,
613 struct ieee80211_vif *vif)
614{
615 struct vnt_private *priv = hw->priv;
616
617 switch (vif->type) {
618 case NL80211_IFTYPE_STATION:
619 break;
620 case NL80211_IFTYPE_ADHOC:
621 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
622 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
623 vnt_mac_reg_bits_off(priv, MAC_REG_HOSTCR, HOSTCR_ADHOC);
624 break;
625 case NL80211_IFTYPE_AP:
626 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
627 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
628 vnt_mac_reg_bits_off(priv, MAC_REG_HOSTCR, HOSTCR_AP);
629 break;
630 default:
631 break;
632 }
633
634 vnt_radio_power_off(priv);
635
636 priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
637
638 /* LED slow blink */
639 vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_SLOW);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100640}
641
642static int vnt_config(struct ieee80211_hw *hw, u32 changed)
643{
644 struct vnt_private *priv = hw->priv;
645 struct ieee80211_conf *conf = &hw->conf;
646 u8 bb_type;
647
648 if (changed & IEEE80211_CONF_CHANGE_PS) {
649 if (conf->flags & IEEE80211_CONF_PS)
650 vnt_enable_power_saving(priv, conf->listen_interval);
651 else
652 vnt_disable_power_saving(priv);
653 }
654
655 if ((changed & IEEE80211_CONF_CHANGE_CHANNEL) ||
656 (conf->flags & IEEE80211_CONF_OFFCHANNEL)) {
657 vnt_set_channel(priv, conf->chandef.chan->hw_value);
658
Johannes Berg57fbcce2016-04-12 15:56:15 +0200659 if (conf->chandef.chan->band == NL80211_BAND_5GHZ)
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100660 bb_type = BB_TYPE_11A;
661 else
662 bb_type = BB_TYPE_11G;
663
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100664 if (priv->bb_type != bb_type) {
665 priv->bb_type = bb_type;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100666
667 vnt_set_bss_mode(priv);
668 }
669 }
670
671 if (changed & IEEE80211_CONF_CHANGE_POWER) {
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100672 if (priv->bb_type == BB_TYPE_11B)
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100673 priv->current_rate = RATE_1M;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100674 else
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100675 priv->current_rate = RATE_54M;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100676
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100677 vnt_rf_setpower(priv, priv->current_rate,
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100678 conf->chandef.chan->hw_value);
679 }
680
681 return 0;
682}
683
684static void vnt_bss_info_changed(struct ieee80211_hw *hw,
685 struct ieee80211_vif *vif, struct ieee80211_bss_conf *conf,
686 u32 changed)
687{
688 struct vnt_private *priv = hw->priv;
Peter Senna Tschudin14c5e412014-07-15 23:23:27 +0200689
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100690 priv->current_aid = conf->aid;
691
Malcolm Priestleyd3095092015-07-09 17:03:57 +0100692 if (changed & BSS_CHANGED_BSSID && conf->bssid)
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100693 vnt_mac_set_bssid_addr(priv, (u8 *)conf->bssid);
694
695
696 if (changed & BSS_CHANGED_BASIC_RATES) {
Malcolm Priestley93a73552014-07-20 15:33:13 +0100697 priv->basic_rates = conf->basic_rates;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100698
699 vnt_update_top_rates(priv);
700
701 dev_dbg(&priv->usb->dev, "basic rates %x\n", conf->basic_rates);
702 }
703
704 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
705 if (conf->use_short_preamble) {
706 vnt_mac_enable_barker_preamble_mode(priv);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100707 priv->preamble_type = true;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100708 } else {
709 vnt_mac_disable_barker_preamble_mode(priv);
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100710 priv->preamble_type = false;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100711 }
712 }
713
714 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
715 if (conf->use_cts_prot)
716 vnt_mac_enable_protect_mode(priv);
717 else
718 vnt_mac_disable_protect_mode(priv);
719 }
720
721 if (changed & BSS_CHANGED_ERP_SLOT) {
722 if (conf->use_short_slot)
Malcolm Priestleya641c9e2014-07-20 15:33:21 +0100723 priv->short_slot_time = true;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100724 else
Malcolm Priestleya641c9e2014-07-20 15:33:21 +0100725 priv->short_slot_time = false;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100726
Malcolm Priestley3c956cc2014-07-16 22:21:54 +0100727 vnt_set_short_slot_time(priv);
Malcolm Priestleyc37cbd32014-07-20 15:33:25 +0100728 vnt_set_vga_gain_offset(priv, priv->bb_vga[0]);
Malcolm Priestley80dcc0a2014-07-16 22:21:58 +0100729 vnt_update_pre_ed_threshold(priv, false);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100730 }
731
732 if (changed & BSS_CHANGED_TXPOWER)
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100733 vnt_rf_setpower(priv, priv->current_rate,
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100734 conf->chandef.chan->hw_value);
735
736 if (changed & BSS_CHANGED_BEACON_ENABLED) {
737 dev_dbg(&priv->usb->dev,
738 "Beacon enable %d\n", conf->enable_beacon);
739
740 if (conf->enable_beacon) {
741 vnt_beacon_enable(priv, vif, conf);
742
743 vnt_mac_reg_bits_on(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
744 } else {
745 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
746 }
747 }
Malcolm Priestleyc1515872015-09-27 09:17:40 +0100748
749 if (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INFO) &&
750 priv->op_mode != NL80211_IFTYPE_AP) {
751 if (conf->assoc && conf->beacon_rate) {
752 vnt_mac_reg_bits_on(priv, MAC_REG_TFTCTL,
753 TFTCTL_TSFCNTREN);
754
755 vnt_adjust_tsf(priv, conf->beacon_rate->hw_value,
756 conf->sync_tsf, priv->current_tsf);
757
758 vnt_mac_set_beacon_interval(priv, conf->beacon_int);
759
760 vnt_reset_next_tbtt(priv, conf->beacon_int);
761 } else {
762 vnt_clear_current_tsf(priv);
763
764 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL,
765 TFTCTL_TSFCNTREN);
766 }
767 }
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100768}
769
770static u64 vnt_prepare_multicast(struct ieee80211_hw *hw,
771 struct netdev_hw_addr_list *mc_list)
772{
773 struct vnt_private *priv = hw->priv;
774 struct netdev_hw_addr *ha;
775 u64 mc_filter = 0;
776 u32 bit_nr = 0;
777
778 netdev_hw_addr_list_for_each(ha, mc_list) {
779 bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
780
781 mc_filter |= 1ULL << (bit_nr & 0x3f);
782 }
783
784 priv->mc_list_count = mc_list->count;
785
786 return mc_filter;
787}
788
789static void vnt_configure(struct ieee80211_hw *hw,
790 unsigned int changed_flags, unsigned int *total_flags, u64 multicast)
791{
792 struct vnt_private *priv = hw->priv;
793 u8 rx_mode = 0;
794 int rc;
795
Johannes Bergdf140462015-04-22 14:40:58 +0200796 *total_flags &= FIF_ALLMULTI | FIF_OTHER_BSS | FIF_BCN_PRBRESP_PROMISC;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100797
798 rc = vnt_control_in(priv, MESSAGE_TYPE_READ, MAC_REG_RCR,
799 MESSAGE_REQUEST_MACREG, sizeof(u8), &rx_mode);
800
801 if (!rc)
802 rx_mode = RCR_MULTICAST | RCR_BROADCAST;
803
804 dev_dbg(&priv->usb->dev, "rx mode in = %x\n", rx_mode);
805
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100806 if (changed_flags & FIF_ALLMULTI) {
807 if (*total_flags & FIF_ALLMULTI) {
808 if (priv->mc_list_count > 2)
809 vnt_mac_set_filter(priv, ~0);
810 else
811 vnt_mac_set_filter(priv, multicast);
812
813 rx_mode |= RCR_MULTICAST | RCR_BROADCAST;
814 } else {
815 rx_mode &= ~(RCR_MULTICAST | RCR_BROADCAST);
816 }
817
818 }
819
820 if (changed_flags & (FIF_OTHER_BSS | FIF_BCN_PRBRESP_PROMISC)) {
821 if (*total_flags & (FIF_OTHER_BSS | FIF_BCN_PRBRESP_PROMISC))
822 rx_mode &= ~RCR_BSSID;
823 else
824 rx_mode |= RCR_BSSID;
825 }
826
827 vnt_control_out_u8(priv, MESSAGE_REQUEST_MACREG, MAC_REG_RCR, rx_mode);
828
829 dev_dbg(&priv->usb->dev, "rx mode out= %x\n", rx_mode);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100830}
831
832static int vnt_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
833 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
834 struct ieee80211_key_conf *key)
835{
836 struct vnt_private *priv = hw->priv;
837
838 switch (cmd) {
839 case SET_KEY:
840 if (vnt_set_keys(hw, sta, vif, key))
841 return -EOPNOTSUPP;
842 break;
843 case DISABLE_KEY:
844 if (test_bit(key->hw_key_idx, &priv->key_entry_inuse))
845 clear_bit(key->hw_key_idx, &priv->key_entry_inuse);
846 default:
847 break;
848 }
849
850 return 0;
851}
852
Johannes Berga344d672014-06-12 22:24:31 +0200853static void vnt_sw_scan_start(struct ieee80211_hw *hw,
854 struct ieee80211_vif *vif,
855 const u8 *addr)
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100856{
857 struct vnt_private *priv = hw->priv;
858
Malcolm Priestley1ecd0832014-06-28 23:55:46 +0100859 vnt_set_bss_mode(priv);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100860 /* Set max sensitivity*/
Malcolm Priestley80dcc0a2014-07-16 22:21:58 +0100861 vnt_update_pre_ed_threshold(priv, true);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100862}
863
Johannes Berga344d672014-06-12 22:24:31 +0200864static void vnt_sw_scan_complete(struct ieee80211_hw *hw,
865 struct ieee80211_vif *vif)
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100866{
867 struct vnt_private *priv = hw->priv;
868
869 /* Return sensitivity to channel level*/
Malcolm Priestley80dcc0a2014-07-16 22:21:58 +0100870 vnt_update_pre_ed_threshold(priv, false);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100871}
872
Malcolm Priestley17863842014-06-29 20:39:54 +0100873static int vnt_get_stats(struct ieee80211_hw *hw,
874 struct ieee80211_low_level_stats *stats)
875{
876 struct vnt_private *priv = hw->priv;
877
878 memcpy(stats, &priv->low_stats, sizeof(*stats));
879
880 return 0;
881}
882
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100883static u64 vnt_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
884{
885 struct vnt_private *priv = hw->priv;
886
Malcolm Priestley113f0b92014-07-19 12:30:13 +0100887 return priv->current_tsf;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100888}
889
890static void vnt_set_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
891 u64 tsf)
892{
893 struct vnt_private *priv = hw->priv;
894
895 vnt_update_next_tbtt(priv, tsf, vif->bss_conf.beacon_int);
896}
897
898static void vnt_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
899{
900 struct vnt_private *priv = hw->priv;
901
902 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
903
904 vnt_clear_current_tsf(priv);
905}
906
907static const struct ieee80211_ops vnt_mac_ops = {
908 .tx = vnt_tx_80211,
909 .start = vnt_start,
910 .stop = vnt_stop,
911 .add_interface = vnt_add_interface,
912 .remove_interface = vnt_remove_interface,
913 .config = vnt_config,
914 .bss_info_changed = vnt_bss_info_changed,
915 .prepare_multicast = vnt_prepare_multicast,
916 .configure_filter = vnt_configure,
917 .set_key = vnt_set_key,
918 .sw_scan_start = vnt_sw_scan_start,
919 .sw_scan_complete = vnt_sw_scan_complete,
Malcolm Priestley17863842014-06-29 20:39:54 +0100920 .get_stats = vnt_get_stats,
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100921 .get_tsf = vnt_get_tsf,
922 .set_tsf = vnt_set_tsf,
923 .reset_tsf = vnt_reset_tsf,
924};
925
926int vnt_init(struct vnt_private *priv)
927{
928
Malcolm Priestley500e1fb2014-07-25 20:51:46 +0100929 if (!(vnt_init_registers(priv)))
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100930 return -EAGAIN;
931
Malcolm Priestley41e83212014-07-19 12:30:11 +0100932 SET_IEEE80211_PERM_ADDR(priv->hw, priv->permanent_net_addr);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100933
Malcolm Priestley110f97e2014-06-25 21:14:26 +0100934 vnt_init_bands(priv);
935
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100936 if (ieee80211_register_hw(priv->hw))
937 return -ENODEV;
938
Malcolm Priestley30816f82014-06-25 21:14:27 +0100939 priv->mac_hw = true;
940
Malcolm Priestleyba911c92014-07-05 19:24:20 +0100941 vnt_radio_power_off(priv);
942
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100943 return 0;
944}
945
946static int
947vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
948{
949 struct usb_device *udev;
950 struct vnt_private *priv;
951 struct ieee80211_hw *hw;
952 struct wiphy *wiphy;
953 int rc = 0;
954
955 udev = usb_get_dev(interface_to_usbdev(intf));
956
957 dev_notice(&udev->dev, "%s Ver. %s\n",
958 DEVICE_FULL_DRV_NAM, DEVICE_VERSION);
959 dev_notice(&udev->dev,
960 "Copyright (c) 2004 VIA Networking Technologies, Inc.\n");
961
962 hw = ieee80211_alloc_hw(sizeof(struct vnt_private), &vnt_mac_ops);
963 if (!hw) {
964 dev_err(&udev->dev, "could not register ieee80211_hw\n");
Alexey Khoroshilov20ff1412015-03-14 01:34:41 +0300965 rc = -ENOMEM;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100966 goto err_nomem;
967 }
968
969 priv = hw->priv;
970 priv->hw = hw;
971 priv->usb = udev;
972
Malcolm Priestley7665cf22014-07-25 20:51:45 +0100973 vnt_set_options(priv);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100974
975 spin_lock_init(&priv->lock);
976 mutex_init(&priv->usb_lock);
977
Malcolm Priestley592365ae4a2014-07-13 10:42:49 +0100978 INIT_DELAYED_WORK(&priv->run_command_work, vnt_run_command);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100979
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100980 usb_set_intfdata(intf, priv);
981
982 wiphy = priv->hw->wiphy;
983
984 wiphy->frag_threshold = FRAG_THRESH_DEF;
985 wiphy->rts_threshold = RTS_THRESH_DEF;
986 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
987 BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP);
988
Johannes Berg30686bf2015-06-02 21:39:54 +0200989 ieee80211_hw_set(priv->hw, TIMING_BEACON_ONLY);
990 ieee80211_hw_set(priv->hw, SIGNAL_DBM);
991 ieee80211_hw_set(priv->hw, RX_INCLUDES_FCS);
992 ieee80211_hw_set(priv->hw, REPORTS_TX_ACK_STATUS);
Malcolm Priestley49a315b2015-09-27 09:17:42 +0100993 ieee80211_hw_set(priv->hw, SUPPORTS_PS);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100994
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100995 priv->hw->max_signal = 100;
996
997 SET_IEEE80211_DEV(priv->hw, &intf->dev);
998
999 usb_device_reset(priv);
1000
Malcolm Priestley2ab3d462014-07-24 21:13:18 +01001001 clear_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
Malcolm Priestley68cc1612014-07-13 10:42:51 +01001002 vnt_reset_command_timer(priv);
Malcolm Priestley30816f82014-06-25 21:14:27 +01001003
Malcolm Priestley57981a62014-07-13 10:42:50 +01001004 vnt_schedule_command(priv, WLAN_CMD_INIT_MAC80211);
Malcolm Priestley30816f82014-06-25 21:14:27 +01001005
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +01001006 return 0;
1007
1008err_nomem:
1009 usb_put_dev(udev);
1010
1011 return rc;
1012}
1013
Bill Pemberton0d7fe142012-11-19 13:26:58 -05001014static void vt6656_disconnect(struct usb_interface *intf)
Forest Bond92b96792009-06-13 07:38:31 -04001015{
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +01001016 struct vnt_private *priv = usb_get_intfdata(intf);
Forest Bond92b96792009-06-13 07:38:31 -04001017
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +01001018 if (!priv)
Andres More6cda24f2010-06-22 20:43:39 -03001019 return;
Forest Bond92b96792009-06-13 07:38:31 -04001020
Malcolm Priestley30816f82014-06-25 21:14:27 +01001021 if (priv->mac_hw)
1022 ieee80211_unregister_hw(priv->hw);
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +01001023
Forest Bond92b96792009-06-13 07:38:31 -04001024 usb_set_intfdata(intf, NULL);
Andres More6cda24f2010-06-22 20:43:39 -03001025 usb_put_dev(interface_to_usbdev(intf));
Forest Bond92b96792009-06-13 07:38:31 -04001026
Malcolm Priestley4c3b0d42014-07-24 21:13:17 +01001027 set_bit(DEVICE_FLAGS_UNPLUG, &priv->flags);
Forest Bond92b96792009-06-13 07:38:31 -04001028
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +01001029 ieee80211_free_hw(priv->hw);
Forest Bond92b96792009-06-13 07:38:31 -04001030}
1031
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +01001032#ifdef CONFIG_PM
1033
1034static int vt6656_suspend(struct usb_interface *intf, pm_message_t message)
1035{
1036 return 0;
1037}
1038
1039static int vt6656_resume(struct usb_interface *intf)
1040{
1041 return 0;
1042}
1043
1044#endif /* CONFIG_PM */
1045
Andres More26e5b652010-04-13 19:43:07 -03001046MODULE_DEVICE_TABLE(usb, vt6656_table);
Forest Bond92b96792009-06-13 07:38:31 -04001047
Andres More26e5b652010-04-13 19:43:07 -03001048static struct usb_driver vt6656_driver = {
1049 .name = DEVICE_NAME,
1050 .probe = vt6656_probe,
1051 .disconnect = vt6656_disconnect,
1052 .id_table = vt6656_table,
Forest Bond92b96792009-06-13 07:38:31 -04001053#ifdef CONFIG_PM
Andres More26e5b652010-04-13 19:43:07 -03001054 .suspend = vt6656_suspend,
1055 .resume = vt6656_resume,
1056#endif /* CONFIG_PM */
Forest Bond92b96792009-06-13 07:38:31 -04001057};
1058
Greg Kroah-Hartmanbac2c122011-11-18 09:42:11 -08001059module_usb_driver(vt6656_driver);