Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi
[deliverable/linux.git] / drivers / staging / vt6656 / main_usb.c
CommitLineData
92b96797
FB
1/*
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 *
92b96797
FB
15 *
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 *
26e5b65b 26 * vt6656_probe - module initial (insmod) driver entry
afc7ef64 27 * vnt_free_tx_bufs - free tx buffer function
500e1fb3 28 * vnt_init_registers- initial MAC & BBP & RF internal registers.
92b96797
FB
29 *
30 * Revision History:
31 */
32#undef __NO_VERSION__
33
e2382233 34#include <linux/etherdevice.h>
7c51d177 35#include <linux/file.h>
92b96797 36#include "device.h"
92b96797 37#include "card.h"
92b96797 38#include "baseband.h"
92b96797 39#include "mac.h"
92b96797 40#include "power.h"
92b96797 41#include "wcmd.h"
92b96797 42#include "rxtx.h"
92b96797 43#include "dpc.h"
92b96797 44#include "rf.h"
92b96797 45#include "firmware.h"
62c8526d 46#include "usbpipe.h"
92b96797 47#include "channel.h"
92b96797 48#include "int.h"
92b96797 49
ec6e0f63
AM
50/*
51 * define module options
52 */
92b96797 53
ec6e0f63
AM
54/* version information */
55#define DRIVER_AUTHOR \
56 "VIA Networking Technologies, Inc., <lyndonchen@vntek.com.tw>"
92b96797
FB
57MODULE_AUTHOR(DRIVER_AUTHOR);
58MODULE_LICENSE("GPL");
59MODULE_DESCRIPTION(DEVICE_FULL_DRV_NAM);
60
dbf0a03b 61#define RX_DESC_DEF0 64
2f020ebc
MP
62static 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");
92b96797 65
dbf0a03b 66#define TX_DESC_DEF0 64
3220e3a4 67static int vnt_tx_buffers = TX_DESC_DEF0;
1b6953dd 68module_param_named(tx_buffers, vnt_tx_buffers, int, 0644);
3220e3a4
MP
69MODULE_PARM_DESC(tx_buffers, "Number of receive usb tx buffers");
70
92b96797 71#define RTS_THRESH_DEF 2347
92b96797 72#define FRAG_THRESH_DEF 2346
92b96797 73#define SHORT_RETRY_DEF 8
92b96797 74#define LONG_RETRY_DEF 4
92b96797 75
92b96797 76/* BasebandType[] baseband type selected
d2713e51 77 * 0: indicate 802.11a type
78 * 1: indicate 802.11b type
79 * 2: indicate 802.11g type
80 */
92b96797 81
24b46f9e 82#define BBP_TYPE_DEF 2
92b96797 83
ec6e0f63
AM
84/*
85 * Static vars definitions
86 */
92b96797 87
4d088876 88static struct usb_device_id vt6656_table[] = {
92b96797
FB
89 {USB_DEVICE(VNT_USB_VENDOR_ID, VNT_USB_PRODUCT_ID)},
90 {}
91};
92
7665cf21 93static void vnt_set_options(struct vnt_private *priv)
28e067f4 94{
3220e3a4
MP
95 /* Set number of TX buffers */
96 if (vnt_tx_buffers < CB_MIN_TX_DESC || vnt_tx_buffers > CB_MAX_TX_DESC)
03b7e354 97 priv->num_tx_context = TX_DESC_DEF0;
3220e3a4 98 else
03b7e354 99 priv->num_tx_context = vnt_tx_buffers;
2f020ebc
MP
100
101 /* Set number of RX buffers */
102 if (vnt_rx_buffers < CB_MIN_RX_DESC || vnt_rx_buffers > CB_MAX_RX_DESC)
6da4738f 103 priv->num_rcb = RX_DESC_DEF0;
2f020ebc 104 else
6da4738f 105 priv->num_rcb = vnt_rx_buffers;
2f020ebc 106
388e5cb8
MP
107 priv->short_retry_limit = SHORT_RETRY_DEF;
108 priv->long_retry_limit = LONG_RETRY_DEF;
da3b67b3 109 priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
65df77e2 110 priv->bb_type = BBP_TYPE_DEF;
e12471db 111 priv->packet_type = priv->bb_type;
a6177aef 112 priv->auto_fb_ctrl = AUTO_FB_0;
98e93fe5 113 priv->preamble_type = 0;
35cc8f94 114 priv->exist_sw_net_addr = false;
92b96797
FB
115}
116
ec6e0f63
AM
117/*
118 * initialization of MAC & BBP registers
119 */
500e1fb3 120static int vnt_init_registers(struct vnt_private *priv)
92b96797 121{
3ce54934
MP
122 struct vnt_cmd_card_init *init_cmd = &priv->init_command;
123 struct vnt_rsp_card_init *init_rsp = &priv->init_response;
124 u8 antenna;
dd0a774f 125 int ii;
3ce54934
MP
126 int status = STATUS_SUCCESS;
127 u8 tmp;
128 u8 calib_tx_iq = 0, calib_tx_dc = 0, calib_rx_iq = 0;
92b96797 129
4e62dcc9 130 dev_dbg(&priv->usb->dev, "---->INIbInitAdapter. [%d][%d]\n",
e12471db 131 DEVICE_INIT_COLD, priv->packet_type);
302433da 132
3ce54934
MP
133 if (!vnt_check_firmware_version(priv)) {
134 if (vnt_download_firmware(priv) == true) {
135 if (vnt_firmware_branch_to_sram(priv) == false) {
4e62dcc9 136 dev_dbg(&priv->usb->dev,
14321461 137 " vnt_firmware_branch_to_sram fail\n");
cbc06fb1
MP
138 return false;
139 }
140 } else {
4e62dcc9 141 dev_dbg(&priv->usb->dev, "FIRMWAREbDownload fail\n");
cbc06fb1
MP
142 return false;
143 }
144 }
145
3ce54934 146 if (!vnt_vt3184_init(priv)) {
4e62dcc9 147 dev_dbg(&priv->usb->dev, "vnt_vt3184_init fail\n");
cbc06fb1
MP
148 return false;
149 }
92b96797 150
748bf69c 151 init_cmd->init_class = DEVICE_INIT_COLD;
35cc8f94 152 init_cmd->exist_sw_net_addr = priv->exist_sw_net_addr;
3d47a6fb 153 for (ii = 0; ii < 6; ii++)
ebf9b312 154 init_cmd->sw_net_addr[ii] = priv->current_net_addr[ii];
388e5cb8
MP
155 init_cmd->short_retry_limit = priv->short_retry_limit;
156 init_cmd->long_retry_limit = priv->long_retry_limit;
3d47a6fb
MP
157
158 /* issue card_init command to device */
3ce54934 159 status = vnt_control_out(priv,
3d47a6fb 160 MESSAGE_TYPE_CARDINIT, 0, 0,
748bf69c 161 sizeof(struct vnt_cmd_card_init), (u8 *)init_cmd);
3ce54934 162 if (status != STATUS_SUCCESS) {
4e62dcc9 163 dev_dbg(&priv->usb->dev, "Issue Card init fail\n");
cbc06fb1
MP
164 return false;
165 }
92b96797 166
3ce54934 167 status = vnt_control_in(priv, MESSAGE_TYPE_INIT_RSP, 0, 0,
748bf69c 168 sizeof(struct vnt_rsp_card_init), (u8 *)init_rsp);
3ce54934 169 if (status != STATUS_SUCCESS) {
4e62dcc9 170 dev_dbg(&priv->usb->dev,
302433da 171 "Cardinit request in status fail!\n");
302433da
MP
172 return false;
173 }
92b96797 174
ec6e0f63 175 /* local ID for AES functions */
3ce54934 176 status = vnt_control_in(priv, MESSAGE_TYPE_READ,
302433da 177 MAC_REG_LOCALID, MESSAGE_REQUEST_MACREG, 1,
f1945a15 178 &priv->local_id);
3ce54934 179 if (status != STATUS_SUCCESS)
302433da 180 return false;
92b96797 181
ec6e0f63
AM
182 /* do MACbSoftwareReset in MACvInitialize */
183
3c8a5b25 184 priv->top_ofdm_basic_rate = RATE_24M;
d80bf43c 185 priv->top_cck_basic_rate = RATE_1M;
2486890a 186
ec6e0f63 187 /* target to IF pin while programming to RF chip */
5a97491c 188 priv->power = 0xFF;
92b96797 189
5a97491c
MP
190 priv->cck_pwr = priv->eeprom[EEP_OFS_PWR_CCK];
191 priv->ofdm_pwr_g = priv->eeprom[EEP_OFS_PWR_OFDMG];
ec6e0f63
AM
192 /* load power table */
193 for (ii = 0; ii < 14; ii++) {
5a97491c 194 priv->cck_pwr_tbl[ii] =
bbb11263 195 priv->eeprom[ii + EEP_OFS_CCK_PWR_TBL];
5a97491c
MP
196 if (priv->cck_pwr_tbl[ii] == 0)
197 priv->cck_pwr_tbl[ii] = priv->cck_pwr;
3ce54934 198
5a97491c 199 priv->ofdm_pwr_tbl[ii] =
bbb11263 200 priv->eeprom[ii + EEP_OFS_OFDM_PWR_TBL];
5a97491c
MP
201 if (priv->ofdm_pwr_tbl[ii] == 0)
202 priv->ofdm_pwr_tbl[ii] = priv->ofdm_pwr_g;
302433da 203 }
92b96797 204
ec6e0f63
AM
205 /*
206 * original zonetype is USA, but custom zonetype is Europe,
207 * then need to recover 12, 13, 14 channels with 11 channel
208 */
9ef2184d 209 for (ii = 11; ii < 14; ii++) {
5a97491c
MP
210 priv->cck_pwr_tbl[ii] = priv->cck_pwr_tbl[10];
211 priv->ofdm_pwr_tbl[ii] = priv->ofdm_pwr_tbl[10];
302433da 212 }
92b96797 213
5a97491c 214 priv->ofdm_pwr_a = 0x34; /* same as RFbMA2829SelectChannel */
ec6e0f63 215
302433da
MP
216 /* load OFDM A power table */
217 for (ii = 0; ii < CB_MAX_CHANNEL_5G; ii++) {
5a97491c 218 priv->ofdm_a_pwr_tbl[ii] =
bbb11263 219 priv->eeprom[ii + EEP_OFS_OFDMA_PWR_TBL];
302433da 220
5a97491c
MP
221 if (priv->ofdm_a_pwr_tbl[ii] == 0)
222 priv->ofdm_a_pwr_tbl[ii] = priv->ofdm_pwr_a;
302433da 223 }
92b96797 224
bbb11263 225 antenna = priv->eeprom[EEP_OFS_ANTENNA];
92b96797 226
3ce54934 227 if (antenna & EEP_ANTINV)
2044dbdb 228 priv->tx_rx_ant_inv = true;
302433da 229 else
2044dbdb 230 priv->tx_rx_ant_inv = false;
302433da 231
3ce54934 232 antenna &= (EEP_ANTENNA_AUX | EEP_ANTENNA_MAIN);
92b96797 233
3ce54934
MP
234 if (antenna == 0) /* if not set default is both */
235 antenna = (EEP_ANTENNA_AUX | EEP_ANTENNA_MAIN);
302433da 236
3ce54934 237 if (antenna == (EEP_ANTENNA_AUX | EEP_ANTENNA_MAIN)) {
2044dbdb
MP
238 priv->tx_antenna_mode = ANT_B;
239 priv->rx_antenna_sel = 1;
302433da 240
f72ea988 241 if (priv->tx_rx_ant_inv)
2044dbdb 242 priv->rx_antenna_mode = ANT_A;
302433da 243 else
2044dbdb 244 priv->rx_antenna_mode = ANT_B;
302433da 245 } else {
2044dbdb 246 priv->rx_antenna_sel = 0;
302433da 247
3ce54934 248 if (antenna & EEP_ANTENNA_AUX) {
2044dbdb 249 priv->tx_antenna_mode = ANT_A;
302433da 250
f72ea988 251 if (priv->tx_rx_ant_inv)
2044dbdb 252 priv->rx_antenna_mode = ANT_B;
302433da 253 else
2044dbdb 254 priv->rx_antenna_mode = ANT_A;
302433da 255 } else {
2044dbdb 256 priv->tx_antenna_mode = ANT_B;
302433da 257
f72ea988 258 if (priv->tx_rx_ant_inv)
2044dbdb 259 priv->rx_antenna_mode = ANT_A;
302433da 260 else
2044dbdb 261 priv->rx_antenna_mode = ANT_B;
302433da
MP
262 }
263 }
264
ed0db513 265 /* Set initial antenna mode */
2044dbdb 266 vnt_set_antenna_mode(priv, priv->rx_antenna_mode);
ed0db513 267
ec6e0f63 268 /* get Auto Fall Back type */
a6177aef 269 priv->auto_fb_ctrl = AUTO_FB_0;
92b96797 270
ec6e0f63 271 /* default Auto Mode */
65df77e2 272 priv->bb_type = BB_TYPE_11G;
92b96797 273
ec6e0f63 274 /* get RFType */
6242ecae 275 priv->rf_type = init_rsp->rf_type;
92b96797 276
ec6e0f63 277 /* load vt3266 calibration parameters in EEPROM */
6242ecae 278 if (priv->rf_type == RF_VT3226D0) {
bbb11263
MP
279 if ((priv->eeprom[EEP_OFS_MAJOR_VER] == 0x1) &&
280 (priv->eeprom[EEP_OFS_MINOR_VER] >= 0x4)) {
3ce54934 281
bbb11263
MP
282 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];
3ce54934 285 if (calib_tx_iq || calib_tx_dc || calib_rx_iq) {
33e9ab3d 286 /* CR255, enable TX/RX IQ and
d2713e51 287 * DC compensation mode
288 */
3ce54934 289 vnt_control_out_u8(priv,
33e9ab3d
PST
290 MESSAGE_REQUEST_BBREG,
291 0xff,
292 0x03);
293 /* CR251, TX I/Q Imbalance Calibration */
3ce54934 294 vnt_control_out_u8(priv,
33e9ab3d
PST
295 MESSAGE_REQUEST_BBREG,
296 0xfb,
3ce54934 297 calib_tx_iq);
33e9ab3d 298 /* CR252, TX DC-Offset Calibration */
3ce54934 299 vnt_control_out_u8(priv,
33e9ab3d
PST
300 MESSAGE_REQUEST_BBREG,
301 0xfC,
3ce54934 302 calib_tx_dc);
33e9ab3d 303 /* CR253, RX I/Q Imbalance Calibration */
3ce54934 304 vnt_control_out_u8(priv,
33e9ab3d
PST
305 MESSAGE_REQUEST_BBREG,
306 0xfd,
3ce54934 307 calib_rx_iq);
302433da 308 } else {
33e9ab3d 309 /* CR255, turn off
d2713e51 310 * BB Calibration compensation
311 */
3ce54934 312 vnt_control_out_u8(priv,
33e9ab3d
PST
313 MESSAGE_REQUEST_BBREG,
314 0xff,
315 0x0);
302433da
MP
316 }
317 }
318 }
cbc06fb1 319
ec6e0f63 320 /* get permanent network address */
41e8321a 321 memcpy(priv->permanent_net_addr, init_rsp->net_addr, 6);
e2382233 322 ether_addr_copy(priv->current_net_addr, priv->permanent_net_addr);
92b96797 323
ec6e0f63 324 /* if exist SW network address, use it */
4e62dcc9 325 dev_dbg(&priv->usb->dev, "Network address = %pM\n",
ebf9b312 326 priv->current_net_addr);
92b96797 327
cbc06fb1
MP
328 /*
329 * set BB and packet type at the same time
330 * set Short Slot Time, xIFS, and RSPINF
331 */
65df77e2 332 if (priv->bb_type == BB_TYPE_11A)
a641c9ec 333 priv->short_slot_time = true;
d35d5fbb 334 else
a641c9ec 335 priv->short_slot_time = false;
cbc06fb1 336
3ce54934 337 vnt_set_short_slot_time(priv);
cbc06fb1 338
bbb11263 339 priv->radio_ctl = priv->eeprom[EEP_OFS_RADIOCTL];
cbc06fb1 340
2044dbdb 341 if ((priv->radio_ctl & EEP_RADIOCTL_ENABLE) != 0) {
3ce54934
MP
342 status = vnt_control_in(priv, MESSAGE_TYPE_READ,
343 MAC_REG_GPIOCTL1, MESSAGE_REQUEST_MACREG, 1, &tmp);
cbc06fb1 344
3ce54934 345 if (status != STATUS_SUCCESS)
cbc06fb1 346 return false;
cbc06fb1 347
d7f2d8f6 348 if ((tmp & GPIO3_DATA) == 0)
3ce54934 349 vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL1,
36957537 350 GPIO3_INTMD);
d7f2d8f6 351 else
3ce54934 352 vnt_mac_reg_bits_off(priv, MAC_REG_GPIOCTL1,
a9bed1df 353 GPIO3_INTMD);
cbc06fb1
MP
354 }
355
3ce54934 356 vnt_mac_set_led(priv, LEDSTS_TMLEN, 0x38);
cbc06fb1 357
3ce54934 358 vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_SLOW);
cbc06fb1 359
3ce54934 360 vnt_mac_reg_bits_on(priv, MAC_REG_GPIOCTL0, 0x01);
cbc06fb1 361
d7f2d8f6 362 vnt_radio_power_on(priv);
cbc06fb1 363
4e62dcc9 364 dev_dbg(&priv->usb->dev, "<----INIbInitAdapter Exit\n");
cbc06fb1
MP
365
366 return true;
92b96797
FB
367}
368
afc7ef64 369static void vnt_free_tx_bufs(struct vnt_private *priv)
8611a29a 370{
f2625c24
MP
371 struct vnt_usb_send_context *tx_context;
372 int ii;
373
03b7e354 374 for (ii = 0; ii < priv->num_tx_context; ii++) {
f7e4a8f4 375 tx_context = priv->tx_context[ii];
f2625c24 376 /* deallocate URBs */
30a05b39
MP
377 if (tx_context->urb) {
378 usb_kill_urb(tx_context->urb);
379 usb_free_urb(tx_context->urb);
f2625c24
MP
380 }
381
382 kfree(tx_context);
383 }
92b96797
FB
384}
385
0dd6e68a 386static void vnt_free_rx_bufs(struct vnt_private *priv)
8611a29a 387{
afc5eeb8 388 struct vnt_rcb *rcb;
115cac2e 389 int ii;
92b96797 390
6da4738f 391 for (ii = 0; ii < priv->num_rcb; ii++) {
8577011c 392 rcb = priv->rcb[ii];
8cffb3cf
MP
393 if (!rcb)
394 continue;
92b96797 395
afc5eeb8 396 /* deallocate URBs */
325de984
MP
397 if (rcb->urb) {
398 usb_kill_urb(rcb->urb);
399 usb_free_urb(rcb->urb);
afc5eeb8 400 }
92b96797 401
afc5eeb8
MP
402 /* deallocate skb */
403 if (rcb->skb)
404 dev_kfree_skb(rcb->skb);
afc5eeb8 405
8cffb3cf
MP
406 kfree(rcb);
407 }
92b96797
FB
408}
409
76d382fc 410static void usb_device_reset(struct vnt_private *priv)
92b96797 411{
42b138d9
PST
412 int status;
413
76d382fc 414 status = usb_reset_device(priv->usb);
92b96797 415 if (status)
76d382fc 416 dev_warn(&priv->usb->dev,
d9cf2f9e 417 "usb_device_reset fail status=%d\n", status);
92b96797 418}
92b96797 419
1c2fd56b 420static void vnt_free_int_bufs(struct vnt_private *priv)
8611a29a 421{
1506bf37 422 kfree(priv->int_buf.data_buf);
92b96797
FB
423}
424
ef484423 425static bool vnt_alloc_bufs(struct vnt_private *priv)
dd0a774f 426{
35491de7
MP
427 struct vnt_usb_send_context *tx_context;
428 struct vnt_rcb *rcb;
115cac2e 429 int ii;
92b96797 430
03b7e354 431 for (ii = 0; ii < priv->num_tx_context; ii++) {
35491de7
MP
432 tx_context = kmalloc(sizeof(struct vnt_usb_send_context),
433 GFP_KERNEL);
27f31cf9 434 if (!tx_context)
35491de7 435 goto free_tx;
92b96797 436
f7e4a8f4 437 priv->tx_context[ii] = tx_context;
30a05b39 438 tx_context->priv = priv;
71d764ae 439 tx_context->pkt_no = ii;
35491de7
MP
440
441 /* allocate URBs */
3e0f86b3 442 tx_context->urb = usb_alloc_urb(0, GFP_KERNEL);
30a05b39 443 if (!tx_context->urb) {
b4ae135e 444 dev_err(&priv->usb->dev, "alloc tx urb failed\n");
35491de7
MP
445 goto free_tx;
446 }
92b96797 447
30a05b39 448 tx_context->in_use = false;
35491de7
MP
449 }
450
6da4738f 451 for (ii = 0; ii < priv->num_rcb; ii++) {
8577011c
MP
452 priv->rcb[ii] = kzalloc(sizeof(struct vnt_rcb), GFP_KERNEL);
453 if (!priv->rcb[ii]) {
8cffb3cf
MP
454 dev_err(&priv->usb->dev,
455 "failed to allocate rcb no %d\n", ii);
456 goto free_rx_tx;
457 }
115cac2e 458
8577011c 459 rcb = priv->rcb[ii];
92b96797 460
325de984 461 rcb->priv = priv;
92b96797 462
35491de7 463 /* allocate URBs */
3e0f86b3 464 rcb->urb = usb_alloc_urb(0, GFP_KERNEL);
27f31cf9 465 if (!rcb->urb) {
b4ae135e 466 dev_err(&priv->usb->dev, "Failed to alloc rx urb\n");
35491de7
MP
467 goto free_rx_tx;
468 }
92b96797 469
63b9907f 470 rcb->skb = dev_alloc_skb(priv->rx_buf_sz);
27f31cf9 471 if (!rcb->skb)
35491de7 472 goto free_rx_tx;
92b96797 473
325de984 474 rcb->in_use = false;
35491de7 475
8cffb3cf 476 /* submit rx urb */
2dc37af0 477 if (vnt_submit_rx_urb(priv, rcb))
8cffb3cf 478 goto free_rx_tx;
92b96797
FB
479 }
480
3e0f86b3 481 priv->interrupt_urb = usb_alloc_urb(0, GFP_KERNEL);
27f31cf9 482 if (!priv->interrupt_urb) {
b4ae135e 483 dev_err(&priv->usb->dev, "Failed to alloc int urb\n");
35491de7 484 goto free_rx_tx;
92b96797
FB
485 }
486
35491de7 487 priv->int_buf.data_buf = kmalloc(MAX_INTERRUPT_SIZE, GFP_KERNEL);
27f31cf9 488 if (!priv->int_buf.data_buf) {
3d582487 489 usb_free_urb(priv->interrupt_urb);
35491de7
MP
490 goto free_rx_tx;
491 }
492
493 return true;
92b96797
FB
494
495free_rx_tx:
0dd6e68a 496 vnt_free_rx_bufs(priv);
92b96797
FB
497
498free_tx:
afc7ef64 499 vnt_free_tx_bufs(priv);
92b96797 500
e269fc2d 501 return false;
92b96797
FB
502}
503
db8f37fa
MP
504static void vnt_tx_80211(struct ieee80211_hw *hw,
505 struct ieee80211_tx_control *control, struct sk_buff *skb)
506{
507 struct vnt_private *priv = hw->priv;
508
b914b494 509 if (vnt_tx_packet(priv, skb))
db8f37fa 510 ieee80211_free_txskb(hw, skb);
db8f37fa
MP
511}
512
513static int vnt_start(struct ieee80211_hw *hw)
514{
515 struct vnt_private *priv = hw->priv;
516
517 priv->rx_buf_sz = MAX_TOTAL_SIZE_WITH_ALL_HEADERS;
518
5699c0f4 519 if (!vnt_alloc_bufs(priv)) {
ef484423 520 dev_dbg(&priv->usb->dev, "vnt_alloc_bufs fail...\n");
db8f37fa
MP
521 return -ENOMEM;
522 }
523
2ab3d46d 524 clear_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
db8f37fa 525
500e1fb3 526 if (vnt_init_registers(priv) == false) {
db8f37fa
MP
527 dev_dbg(&priv->usb->dev, " init register fail\n");
528 goto free_all;
529 }
530
531 priv->int_interval = 1; /* bInterval is set to 1 */
532
62001939 533 vnt_int_start_interrupt(priv);
db8f37fa 534
db8f37fa
MP
535 ieee80211_wake_queues(hw);
536
537 return 0;
538
539free_all:
0dd6e68a 540 vnt_free_rx_bufs(priv);
afc7ef64 541 vnt_free_tx_bufs(priv);
1c2fd56b 542 vnt_free_int_bufs(priv);
db8f37fa 543
3d582487
MP
544 usb_kill_urb(priv->interrupt_urb);
545 usb_free_urb(priv->interrupt_urb);
db8f37fa
MP
546
547 return -ENOMEM;
548}
549
550static void vnt_stop(struct ieee80211_hw *hw)
551{
552 struct vnt_private *priv = hw->priv;
553 int i;
554
555 if (!priv)
556 return;
557
558 for (i = 0; i < MAX_KEY_TABLE; i++)
559 vnt_mac_disable_keyentry(priv, i);
560
561 /* clear all keys */
562 priv->key_entry_inuse = 0;
563
cbcc9a36 564 if (!test_bit(DEVICE_FLAGS_UNPLUG, &priv->flags))
db8f37fa
MP
565 vnt_mac_shutdown(priv);
566
567 ieee80211_stop_queues(hw);
568
4c3b0d45 569 set_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
db8f37fa
MP
570
571 cancel_delayed_work_sync(&priv->run_command_work);
db8f37fa 572
33a60b87 573 priv->cmd_running = false;
db8f37fa 574
afc7ef64 575 vnt_free_tx_bufs(priv);
0dd6e68a 576 vnt_free_rx_bufs(priv);
1c2fd56b 577 vnt_free_int_bufs(priv);
db8f37fa 578
3d582487
MP
579 usb_kill_urb(priv->interrupt_urb);
580 usb_free_urb(priv->interrupt_urb);
db8f37fa
MP
581}
582
583static int vnt_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
584{
585 struct vnt_private *priv = hw->priv;
586
587 priv->vif = vif;
588
589 switch (vif->type) {
590 case NL80211_IFTYPE_STATION:
591 break;
592 case NL80211_IFTYPE_ADHOC:
593 vnt_mac_reg_bits_off(priv, MAC_REG_RCR, RCR_UNICAST);
594
595 vnt_mac_reg_bits_on(priv, MAC_REG_HOSTCR, HOSTCR_ADHOC);
596
597 break;
598 case NL80211_IFTYPE_AP:
599 vnt_mac_reg_bits_off(priv, MAC_REG_RCR, RCR_UNICAST);
600
601 vnt_mac_reg_bits_on(priv, MAC_REG_HOSTCR, HOSTCR_AP);
602
603 break;
604 default:
605 return -EOPNOTSUPP;
606 }
607
608 priv->op_mode = vif->type;
609
1ecd083e
MP
610 vnt_set_bss_mode(priv);
611
db8f37fa
MP
612 /* LED blink on TX */
613 vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_INTER);
614
615 return 0;
616}
617
618static void vnt_remove_interface(struct ieee80211_hw *hw,
619 struct ieee80211_vif *vif)
620{
621 struct vnt_private *priv = hw->priv;
622
623 switch (vif->type) {
624 case NL80211_IFTYPE_STATION:
625 break;
626 case NL80211_IFTYPE_ADHOC:
627 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
628 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
629 vnt_mac_reg_bits_off(priv, MAC_REG_HOSTCR, HOSTCR_ADHOC);
630 break;
631 case NL80211_IFTYPE_AP:
632 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
633 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
634 vnt_mac_reg_bits_off(priv, MAC_REG_HOSTCR, HOSTCR_AP);
635 break;
636 default:
637 break;
638 }
639
640 vnt_radio_power_off(priv);
641
642 priv->op_mode = NL80211_IFTYPE_UNSPECIFIED;
643
644 /* LED slow blink */
645 vnt_mac_set_led(priv, LEDSTS_STS, LEDSTS_SLOW);
db8f37fa
MP
646}
647
648static int vnt_config(struct ieee80211_hw *hw, u32 changed)
649{
650 struct vnt_private *priv = hw->priv;
651 struct ieee80211_conf *conf = &hw->conf;
652 u8 bb_type;
653
654 if (changed & IEEE80211_CONF_CHANGE_PS) {
655 if (conf->flags & IEEE80211_CONF_PS)
656 vnt_enable_power_saving(priv, conf->listen_interval);
657 else
658 vnt_disable_power_saving(priv);
659 }
660
661 if ((changed & IEEE80211_CONF_CHANGE_CHANNEL) ||
662 (conf->flags & IEEE80211_CONF_OFFCHANNEL)) {
663 vnt_set_channel(priv, conf->chandef.chan->hw_value);
664
57fbcce3 665 if (conf->chandef.chan->band == NL80211_BAND_5GHZ)
db8f37fa
MP
666 bb_type = BB_TYPE_11A;
667 else
668 bb_type = BB_TYPE_11G;
669
65df77e2
MP
670 if (priv->bb_type != bb_type) {
671 priv->bb_type = bb_type;
db8f37fa
MP
672
673 vnt_set_bss_mode(priv);
674 }
675 }
676
677 if (changed & IEEE80211_CONF_CHANGE_POWER) {
65df77e2 678 if (priv->bb_type == BB_TYPE_11B)
8b84c1da 679 priv->current_rate = RATE_1M;
db8f37fa 680 else
8b84c1da 681 priv->current_rate = RATE_54M;
db8f37fa 682
8b84c1da 683 vnt_rf_setpower(priv, priv->current_rate,
db8f37fa
MP
684 conf->chandef.chan->hw_value);
685 }
686
687 return 0;
688}
689
690static void vnt_bss_info_changed(struct ieee80211_hw *hw,
691 struct ieee80211_vif *vif, struct ieee80211_bss_conf *conf,
692 u32 changed)
693{
694 struct vnt_private *priv = hw->priv;
14c5e41f 695
db8f37fa
MP
696 priv->current_aid = conf->aid;
697
d309509f 698 if (changed & BSS_CHANGED_BSSID && conf->bssid)
db8f37fa
MP
699 vnt_mac_set_bssid_addr(priv, (u8 *)conf->bssid);
700
701
702 if (changed & BSS_CHANGED_BASIC_RATES) {
93a73558 703 priv->basic_rates = conf->basic_rates;
db8f37fa
MP
704
705 vnt_update_top_rates(priv);
706
707 dev_dbg(&priv->usb->dev, "basic rates %x\n", conf->basic_rates);
708 }
709
710 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
711 if (conf->use_short_preamble) {
712 vnt_mac_enable_barker_preamble_mode(priv);
98e93fe5 713 priv->preamble_type = true;
db8f37fa
MP
714 } else {
715 vnt_mac_disable_barker_preamble_mode(priv);
98e93fe5 716 priv->preamble_type = false;
db8f37fa
MP
717 }
718 }
719
720 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
721 if (conf->use_cts_prot)
722 vnt_mac_enable_protect_mode(priv);
723 else
724 vnt_mac_disable_protect_mode(priv);
725 }
726
727 if (changed & BSS_CHANGED_ERP_SLOT) {
728 if (conf->use_short_slot)
a641c9ec 729 priv->short_slot_time = true;
db8f37fa 730 else
a641c9ec 731 priv->short_slot_time = false;
db8f37fa 732
3c956cc0 733 vnt_set_short_slot_time(priv);
c37cbd37 734 vnt_set_vga_gain_offset(priv, priv->bb_vga[0]);
80dcc0ae 735 vnt_update_pre_ed_threshold(priv, false);
db8f37fa
MP
736 }
737
738 if (changed & BSS_CHANGED_TXPOWER)
8b84c1da 739 vnt_rf_setpower(priv, priv->current_rate,
db8f37fa
MP
740 conf->chandef.chan->hw_value);
741
742 if (changed & BSS_CHANGED_BEACON_ENABLED) {
743 dev_dbg(&priv->usb->dev,
744 "Beacon enable %d\n", conf->enable_beacon);
745
746 if (conf->enable_beacon) {
747 vnt_beacon_enable(priv, vif, conf);
748
749 vnt_mac_reg_bits_on(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
750 } else {
751 vnt_mac_reg_bits_off(priv, MAC_REG_TCR, TCR_AUTOBCNTX);
752 }
753 }
c1515879
MP
754
755 if (changed & (BSS_CHANGED_ASSOC | BSS_CHANGED_BEACON_INFO) &&
756 priv->op_mode != NL80211_IFTYPE_AP) {
757 if (conf->assoc && conf->beacon_rate) {
758 vnt_mac_reg_bits_on(priv, MAC_REG_TFTCTL,
759 TFTCTL_TSFCNTREN);
760
761 vnt_adjust_tsf(priv, conf->beacon_rate->hw_value,
762 conf->sync_tsf, priv->current_tsf);
763
764 vnt_mac_set_beacon_interval(priv, conf->beacon_int);
765
766 vnt_reset_next_tbtt(priv, conf->beacon_int);
767 } else {
768 vnt_clear_current_tsf(priv);
769
770 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL,
771 TFTCTL_TSFCNTREN);
772 }
773 }
db8f37fa
MP
774}
775
776static u64 vnt_prepare_multicast(struct ieee80211_hw *hw,
777 struct netdev_hw_addr_list *mc_list)
778{
779 struct vnt_private *priv = hw->priv;
780 struct netdev_hw_addr *ha;
781 u64 mc_filter = 0;
782 u32 bit_nr = 0;
783
784 netdev_hw_addr_list_for_each(ha, mc_list) {
785 bit_nr = ether_crc(ETH_ALEN, ha->addr) >> 26;
786
787 mc_filter |= 1ULL << (bit_nr & 0x3f);
788 }
789
790 priv->mc_list_count = mc_list->count;
791
792 return mc_filter;
793}
794
795static void vnt_configure(struct ieee80211_hw *hw,
796 unsigned int changed_flags, unsigned int *total_flags, u64 multicast)
797{
798 struct vnt_private *priv = hw->priv;
799 u8 rx_mode = 0;
800 int rc;
801
df140465 802 *total_flags &= FIF_ALLMULTI | FIF_OTHER_BSS | FIF_BCN_PRBRESP_PROMISC;
db8f37fa
MP
803
804 rc = vnt_control_in(priv, MESSAGE_TYPE_READ, MAC_REG_RCR,
805 MESSAGE_REQUEST_MACREG, sizeof(u8), &rx_mode);
806
807 if (!rc)
808 rx_mode = RCR_MULTICAST | RCR_BROADCAST;
809
810 dev_dbg(&priv->usb->dev, "rx mode in = %x\n", rx_mode);
811
db8f37fa
MP
812 if (changed_flags & FIF_ALLMULTI) {
813 if (*total_flags & FIF_ALLMULTI) {
814 if (priv->mc_list_count > 2)
815 vnt_mac_set_filter(priv, ~0);
816 else
817 vnt_mac_set_filter(priv, multicast);
818
819 rx_mode |= RCR_MULTICAST | RCR_BROADCAST;
820 } else {
821 rx_mode &= ~(RCR_MULTICAST | RCR_BROADCAST);
822 }
823
824 }
825
826 if (changed_flags & (FIF_OTHER_BSS | FIF_BCN_PRBRESP_PROMISC)) {
827 if (*total_flags & (FIF_OTHER_BSS | FIF_BCN_PRBRESP_PROMISC))
828 rx_mode &= ~RCR_BSSID;
829 else
830 rx_mode |= RCR_BSSID;
831 }
832
833 vnt_control_out_u8(priv, MESSAGE_REQUEST_MACREG, MAC_REG_RCR, rx_mode);
834
835 dev_dbg(&priv->usb->dev, "rx mode out= %x\n", rx_mode);
db8f37fa
MP
836}
837
838static int vnt_set_key(struct ieee80211_hw *hw, enum set_key_cmd cmd,
839 struct ieee80211_vif *vif, struct ieee80211_sta *sta,
840 struct ieee80211_key_conf *key)
841{
842 struct vnt_private *priv = hw->priv;
843
844 switch (cmd) {
845 case SET_KEY:
846 if (vnt_set_keys(hw, sta, vif, key))
847 return -EOPNOTSUPP;
848 break;
849 case DISABLE_KEY:
850 if (test_bit(key->hw_key_idx, &priv->key_entry_inuse))
851 clear_bit(key->hw_key_idx, &priv->key_entry_inuse);
852 default:
853 break;
854 }
855
856 return 0;
857}
858
a344d677
JB
859static void vnt_sw_scan_start(struct ieee80211_hw *hw,
860 struct ieee80211_vif *vif,
861 const u8 *addr)
db8f37fa
MP
862{
863 struct vnt_private *priv = hw->priv;
864
1ecd083e 865 vnt_set_bss_mode(priv);
db8f37fa 866 /* Set max sensitivity*/
80dcc0ae 867 vnt_update_pre_ed_threshold(priv, true);
db8f37fa
MP
868}
869
a344d677
JB
870static void vnt_sw_scan_complete(struct ieee80211_hw *hw,
871 struct ieee80211_vif *vif)
db8f37fa
MP
872{
873 struct vnt_private *priv = hw->priv;
874
875 /* Return sensitivity to channel level*/
80dcc0ae 876 vnt_update_pre_ed_threshold(priv, false);
db8f37fa
MP
877}
878
1786384e
MP
879static int vnt_get_stats(struct ieee80211_hw *hw,
880 struct ieee80211_low_level_stats *stats)
881{
882 struct vnt_private *priv = hw->priv;
883
884 memcpy(stats, &priv->low_stats, sizeof(*stats));
885
886 return 0;
887}
888
db8f37fa
MP
889static u64 vnt_get_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
890{
891 struct vnt_private *priv = hw->priv;
892
113f0b91 893 return priv->current_tsf;
db8f37fa
MP
894}
895
896static void vnt_set_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
897 u64 tsf)
898{
899 struct vnt_private *priv = hw->priv;
900
901 vnt_update_next_tbtt(priv, tsf, vif->bss_conf.beacon_int);
902}
903
904static void vnt_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif)
905{
906 struct vnt_private *priv = hw->priv;
907
908 vnt_mac_reg_bits_off(priv, MAC_REG_TFTCTL, TFTCTL_TSFCNTREN);
909
910 vnt_clear_current_tsf(priv);
911}
912
913static const struct ieee80211_ops vnt_mac_ops = {
914 .tx = vnt_tx_80211,
915 .start = vnt_start,
916 .stop = vnt_stop,
917 .add_interface = vnt_add_interface,
918 .remove_interface = vnt_remove_interface,
919 .config = vnt_config,
920 .bss_info_changed = vnt_bss_info_changed,
921 .prepare_multicast = vnt_prepare_multicast,
922 .configure_filter = vnt_configure,
923 .set_key = vnt_set_key,
924 .sw_scan_start = vnt_sw_scan_start,
925 .sw_scan_complete = vnt_sw_scan_complete,
1786384e 926 .get_stats = vnt_get_stats,
db8f37fa
MP
927 .get_tsf = vnt_get_tsf,
928 .set_tsf = vnt_set_tsf,
929 .reset_tsf = vnt_reset_tsf,
930};
931
932int vnt_init(struct vnt_private *priv)
933{
934
500e1fb3 935 if (!(vnt_init_registers(priv)))
db8f37fa
MP
936 return -EAGAIN;
937
41e8321a 938 SET_IEEE80211_PERM_ADDR(priv->hw, priv->permanent_net_addr);
db8f37fa 939
110f97e9
MP
940 vnt_init_bands(priv);
941
db8f37fa
MP
942 if (ieee80211_register_hw(priv->hw))
943 return -ENODEV;
944
30816f83
MP
945 priv->mac_hw = true;
946
ba911c9b
MP
947 vnt_radio_power_off(priv);
948
db8f37fa
MP
949 return 0;
950}
951
952static int
953vt6656_probe(struct usb_interface *intf, const struct usb_device_id *id)
954{
955 struct usb_device *udev;
956 struct vnt_private *priv;
957 struct ieee80211_hw *hw;
958 struct wiphy *wiphy;
959 int rc = 0;
960
961 udev = usb_get_dev(interface_to_usbdev(intf));
962
963 dev_notice(&udev->dev, "%s Ver. %s\n",
964 DEVICE_FULL_DRV_NAM, DEVICE_VERSION);
965 dev_notice(&udev->dev,
966 "Copyright (c) 2004 VIA Networking Technologies, Inc.\n");
967
968 hw = ieee80211_alloc_hw(sizeof(struct vnt_private), &vnt_mac_ops);
969 if (!hw) {
970 dev_err(&udev->dev, "could not register ieee80211_hw\n");
20ff1418 971 rc = -ENOMEM;
db8f37fa
MP
972 goto err_nomem;
973 }
974
975 priv = hw->priv;
976 priv->hw = hw;
977 priv->usb = udev;
978
7665cf21 979 vnt_set_options(priv);
db8f37fa
MP
980
981 spin_lock_init(&priv->lock);
982 mutex_init(&priv->usb_lock);
983
592365ae 984 INIT_DELAYED_WORK(&priv->run_command_work, vnt_run_command);
db8f37fa 985
db8f37fa
MP
986 usb_set_intfdata(intf, priv);
987
988 wiphy = priv->hw->wiphy;
989
990 wiphy->frag_threshold = FRAG_THRESH_DEF;
991 wiphy->rts_threshold = RTS_THRESH_DEF;
992 wiphy->interface_modes = BIT(NL80211_IFTYPE_STATION) |
993 BIT(NL80211_IFTYPE_ADHOC) | BIT(NL80211_IFTYPE_AP);
994
30686bf7
JB
995 ieee80211_hw_set(priv->hw, TIMING_BEACON_ONLY);
996 ieee80211_hw_set(priv->hw, SIGNAL_DBM);
997 ieee80211_hw_set(priv->hw, RX_INCLUDES_FCS);
998 ieee80211_hw_set(priv->hw, REPORTS_TX_ACK_STATUS);
49a315bf 999 ieee80211_hw_set(priv->hw, SUPPORTS_PS);
db8f37fa 1000
db8f37fa
MP
1001 priv->hw->max_signal = 100;
1002
1003 SET_IEEE80211_DEV(priv->hw, &intf->dev);
1004
1005 usb_device_reset(priv);
1006
2ab3d46d 1007 clear_bit(DEVICE_FLAGS_DISCONNECTED, &priv->flags);
68cc161e 1008 vnt_reset_command_timer(priv);
30816f83 1009
57981a65 1010 vnt_schedule_command(priv, WLAN_CMD_INIT_MAC80211);
30816f83 1011
db8f37fa
MP
1012 return 0;
1013
1014err_nomem:
1015 usb_put_dev(udev);
1016
1017 return rc;
1018}
1019
0d7fe14f 1020static void vt6656_disconnect(struct usb_interface *intf)
92b96797 1021{
db8f37fa 1022 struct vnt_private *priv = usb_get_intfdata(intf);
92b96797 1023
db8f37fa 1024 if (!priv)
6cda24f5 1025 return;
92b96797 1026
30816f83
MP
1027 if (priv->mac_hw)
1028 ieee80211_unregister_hw(priv->hw);
db8f37fa 1029
92b96797 1030 usb_set_intfdata(intf, NULL);
6cda24f5 1031 usb_put_dev(interface_to_usbdev(intf));
92b96797 1032
4c3b0d45 1033 set_bit(DEVICE_FLAGS_UNPLUG, &priv->flags);
92b96797 1034
db8f37fa 1035 ieee80211_free_hw(priv->hw);
92b96797
FB
1036}
1037
db8f37fa
MP
1038#ifdef CONFIG_PM
1039
1040static int vt6656_suspend(struct usb_interface *intf, pm_message_t message)
1041{
1042 return 0;
1043}
1044
1045static int vt6656_resume(struct usb_interface *intf)
1046{
1047 return 0;
1048}
1049
1050#endif /* CONFIG_PM */
1051
26e5b65b 1052MODULE_DEVICE_TABLE(usb, vt6656_table);
92b96797 1053
26e5b65b
AM
1054static struct usb_driver vt6656_driver = {
1055 .name = DEVICE_NAME,
1056 .probe = vt6656_probe,
1057 .disconnect = vt6656_disconnect,
1058 .id_table = vt6656_table,
92b96797 1059#ifdef CONFIG_PM
26e5b65b
AM
1060 .suspend = vt6656_suspend,
1061 .resume = vt6656_resume,
1062#endif /* CONFIG_PM */
92b96797
FB
1063};
1064
bac2c126 1065module_usb_driver(vt6656_driver);
This page took 0.882085 seconds and 5 git commands to generate.