2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
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.
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.
18 * Purpose: MAC Data structure
29 #include <linux/module.h>
30 #include <linux/kernel.h>
31 #include <linux/slab.h>
32 #include <linux/delay.h>
33 #include <linux/device.h>
34 #include <linux/firmware.h>
35 #include <linux/suspend.h>
36 #include <linux/if_arp.h>
37 #include <linux/wireless.h>
38 #include <linux/timer.h>
39 #include <linux/usb.h>
40 #include <linux/crc32.h>
41 #include <net/mac80211.h>
44 #define DEVICE_ETHTOOL_IOCTL_SUPPORT
45 #include <linux/ethtool.h>
47 #undef DEVICE_ETHTOOL_IOCTL_SUPPORT
75 #define VNT_USB_VENDOR_ID 0x160a
76 #define VNT_USB_PRODUCT_ID 0x3184
78 #define DEVICE_NAME "vt6656"
79 #define DEVICE_FULL_DRV_NAM "VIA Networking Wireless LAN USB Driver"
81 #define DEVICE_VERSION "mac80211"
83 #define CONFIG_PATH "/etc/vntconfiguration.dat"
86 #define OPTION_DEFAULT { [0 ... MAX_UINTS-1] = -1}
88 #define DUPLICATE_RX_CACHE_LENGTH 5
90 #define AUTO_FB_NONE 0
100 #define ANT_DIVERSITY 2
101 #define ANT_RXD_TXA 3
102 #define ANT_RXD_TXB 4
103 #define ANT_UNKNOWN 0xFF
109 #define BB_VGA_LEVEL 4
110 #define BB_VGA_CHANGE_THRESHOLD 3
112 #define EEP_MAX_CONTEXT_SIZE 256
114 /* Contents in the EEPROM */
115 #define EEP_OFS_PAR 0x0
116 #define EEP_OFS_ANTENNA 0x17
117 #define EEP_OFS_RADIOCTL 0x18
118 #define EEP_OFS_RFTYPE 0x1b
119 #define EEP_OFS_MINCHANNEL 0x1c
120 #define EEP_OFS_MAXCHANNEL 0x1d
121 #define EEP_OFS_SIGNATURE 0x1e
122 #define EEP_OFS_ZONETYPE 0x1f
123 #define EEP_OFS_RFTABLE 0x20
124 #define EEP_OFS_PWR_CCK 0x20
125 #define EEP_OFS_SETPT_CCK 0x21
126 #define EEP_OFS_PWR_OFDMG 0x23
128 #define EEP_OFS_CALIB_TX_IQ 0x24
129 #define EEP_OFS_CALIB_TX_DC 0x25
130 #define EEP_OFS_CALIB_RX_IQ 0x26
132 #define EEP_OFS_MAJOR_VER 0x2e
133 #define EEP_OFS_MINOR_VER 0x2f
135 #define EEP_OFS_CCK_PWR_TBL 0x30
136 #define EEP_OFS_OFDM_PWR_TBL 0x40
137 #define EEP_OFS_OFDMA_PWR_TBL 0x50
139 /* Bits in EEP_OFS_ANTENNA */
140 #define EEP_ANTENNA_MAIN 0x1
141 #define EEP_ANTENNA_AUX 0x2
142 #define EEP_ANTINV 0x4
144 /* Bits in EEP_OFS_RADIOCTL */
145 #define EEP_RADIOCTL_ENABLE 0x80
147 /* control commands */
148 #define MESSAGE_TYPE_READ 0x1
149 #define MESSAGE_TYPE_WRITE 0x0
150 #define MESSAGE_TYPE_LOCK_OR 0x2
151 #define MESSAGE_TYPE_LOCK_AND 0x3
152 #define MESSAGE_TYPE_WRITE_MASK 0x4
153 #define MESSAGE_TYPE_CARDINIT 0x5
154 #define MESSAGE_TYPE_INIT_RSP 0x6
155 #define MESSAGE_TYPE_MACSHUTDOWN 0x7
156 #define MESSAGE_TYPE_SETKEY 0x8
157 #define MESSAGE_TYPE_CLRKEYENTRY 0x9
158 #define MESSAGE_TYPE_WRITE_MISCFF 0xa
159 #define MESSAGE_TYPE_SET_ANTMD 0xb
160 #define MESSAGE_TYPE_SELECT_CHANNEL 0xc
161 #define MESSAGE_TYPE_SET_TSFTBTT 0xd
162 #define MESSAGE_TYPE_SET_SSTIFS 0xe
163 #define MESSAGE_TYPE_CHANGE_BBTYPE 0xf
164 #define MESSAGE_TYPE_DISABLE_PS 0x10
165 #define MESSAGE_TYPE_WRITE_IFRF 0x11
167 /* command read/write(index) */
168 #define MESSAGE_REQUEST_MEM 0x1
169 #define MESSAGE_REQUEST_BBREG 0x2
170 #define MESSAGE_REQUEST_MACREG 0x3
171 #define MESSAGE_REQUEST_EEPROM 0x4
172 #define MESSAGE_REQUEST_TSF 0x5
173 #define MESSAGE_REQUEST_TBTT 0x6
174 #define MESSAGE_REQUEST_BBAGC 0x7
175 #define MESSAGE_REQUEST_VERSION 0x8
176 #define MESSAGE_REQUEST_RF_INIT 0x9
177 #define MESSAGE_REQUEST_RF_INIT2 0xa
178 #define MESSAGE_REQUEST_RF_CH0 0xb
179 #define MESSAGE_REQUEST_RF_CH1 0xc
180 #define MESSAGE_REQUEST_RF_CH2 0xd
183 #define USB_REG4 0x604
185 #define DEVICE_INIT_COLD 0x0 /* cold init */
186 #define DEVICE_INIT_RESET 0x1 /* reset init or Dx to D0 power remain */
187 #define DEVICE_INIT_DXPL 0x2 /* Dx to D0 power lost init */
190 struct vnt_cmd_card_init
{
192 u8 exist_sw_net_addr
;
194 u8 short_retry_limit
;
198 struct vnt_rsp_card_init
{
209 * Enum of context types for SendPacket
212 CONTEXT_DATA_PACKET
= 1,
214 CONTEXT_BEACON_PACKET
217 /* RCB (Receive Control Block) */
225 /* used to track bulk out irps */
226 struct vnt_usb_send_context
{
230 struct ieee80211_hdr
*hdr
;
231 unsigned int buf_len
;
241 unsigned char data
[MAX_TOTAL_SIZE_WITH_ALL_HEADERS
];
245 * Structure to keep track of USB interrupt packets
247 struct vnt_interrupt_buffer
{
261 /* flags for options */
262 #define DEVICE_FLAGS_UNPLUG 0
263 #define DEVICE_FLAGS_DISCONNECTED 1
267 struct ieee80211_hw
*hw
;
268 struct ieee80211_vif
*vif
;
271 struct usb_device
*usb
;
280 struct mutex usb_lock
;
285 struct urb
*interrupt_urb
;
288 /* Variables to track resources for the BULK In Pipe */
289 struct vnt_rcb
*rcb
[CB_MAX_RX_DESC
];
292 /* Variables to track resources for the BULK Out Pipe */
293 struct vnt_usb_send_context
*tx_context
[CB_MAX_TX_DESC
];
296 /* Variables to track resources for the Interrupt In Pipe */
297 struct vnt_interrupt_buffer int_buf
;
299 /* Version control */
300 u16 firmware_version
;
305 struct vnt_cmd_card_init init_command
;
306 struct vnt_rsp_card_init init_response
;
307 u8 current_net_addr
[ETH_ALEN
] __aligned(2);
308 u8 permanent_net_addr
[ETH_ALEN
] __aligned(2);
310 u8 exist_sw_net_addr
;
314 /* 802.11 MAC specific */
317 /* Antenna Diversity */
325 u32 sifs
; /* Current SIFS */
326 u32 difs
; /* Current DIFS */
327 u32 eifs
; /* Current EIFS */
328 u32 slot
; /* Current SlotTime */
331 u8 bb_type
; /* 0: 11A, 1:11B, 2:11G */
332 u8 packet_type
; /* 0:11a 1:11b 2:11gb 3:11ga */
334 u8 top_ofdm_basic_rate
;
335 u8 top_cck_basic_rate
;
337 u8 eeprom
[EEP_MAX_CONTEXT_SIZE
]; /*u32 alignment */
341 /* For RF Power table */
348 u8 ofdm_a_pwr_tbl
[42];
354 u8 short_retry_limit
;
357 enum nl80211_iftype op_mode
;
367 enum vnt_cmd_state command_state
;
369 enum vnt_cmd command
;
373 enum vnt_cmd cmd_queue
[CMD_Q_SIZE
];
379 unsigned long key_entry_inuse
;
383 /* For Update BaseBand VGA Gain Offset */
384 u8 bb_vga
[BB_VGA_LEVEL
];
392 struct delayed_work run_command_work
;
394 struct ieee80211_low_level_stats low_stats
;
397 #define ADD_ONE_WITH_WRAP_AROUND(uVar, uModulo) { \
398 if ((uVar) >= ((uModulo) - 1)) \
404 int vnt_init(struct vnt_private
*priv
);