blob: 0578bf82f557cbe9a998624f2c597146883ca984 [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: device.h
17 *
18 * Purpose: MAC Data structure
19 *
20 * Author: Tevin Chen
21 *
22 * Date: Mar 17, 1997
23 *
24 */
25
26#ifndef __DEVICE_H__
27#define __DEVICE_H__
28
Forest Bond92b96792009-06-13 07:38:31 -040029#include <linux/module.h>
Forest Bond92b96792009-06-13 07:38:31 -040030#include <linux/kernel.h>
Forest Bond92b96792009-06-13 07:38:31 -040031#include <linux/slab.h>
Malcolm Priestley11d404c2012-11-24 14:19:34 +000032#include <linux/delay.h>
33#include <linux/device.h>
Ben Hutchings31d5bbf2011-01-09 04:16:48 +000034#include <linux/firmware.h>
Malcolm Priestley11d404c2012-11-24 14:19:34 +000035#include <linux/suspend.h>
36#include <linux/if_arp.h>
37#include <linux/wireless.h>
Malcolm Priestley11d404c2012-11-24 14:19:34 +000038#include <linux/timer.h>
39#include <linux/usb.h>
Malcolm Priestleyf0fde112013-11-03 19:02:41 +000040#include <linux/crc32.h>
Malcolm Priestley63b99072014-06-25 21:14:22 +010041#include <net/mac80211.h>
Malcolm Priestley11d404c2012-11-24 14:19:34 +000042
Forest Bond92b96792009-06-13 07:38:31 -040043#ifdef SIOCETHTOOL
44#define DEVICE_ETHTOOL_IOCTL_SUPPORT
45#include <linux/ethtool.h>
46#else
47#undef DEVICE_ETHTOOL_IOCTL_SUPPORT
48#endif
Forest Bond92b96792009-06-13 07:38:31 -040049
Malcolm Priestleyf07e9fb2014-06-25 21:14:34 +010050#define RATE_1M 0
51#define RATE_2M 1
52#define RATE_5M 2
53#define RATE_11M 3
54#define RATE_6M 4
55#define RATE_9M 5
56#define RATE_12M 6
57#define RATE_18M 7
58#define RATE_24M 8
59#define RATE_36M 9
60#define RATE_48M 10
61#define RATE_54M 11
62#define RATE_AUTO 12
63
Malcolm Priestley4aeaf152014-05-17 09:50:24 +010064#define MAX_RATE 12
Malcolm Priestley11b87552020-01-08 21:40:58 +000065#define VNT_B_RATES (BIT(RATE_1M) | BIT(RATE_2M) |\
66 BIT(RATE_5M) | BIT(RATE_11M))
Malcolm Priestley4aeaf152014-05-17 09:50:24 +010067
Andres Mored3e23952013-01-31 15:57:19 -050068/*
69 * device specific
70 */
Forest Bond92b96792009-06-13 07:38:31 -040071
Forest Bond92b96792009-06-13 07:38:31 -040072#include "wcmd.h"
Forest Bond92b96792009-06-13 07:38:31 -040073#include "desc.h"
Forest Bond92b96792009-06-13 07:38:31 -040074#include "key.h"
Forest Bond92b96792009-06-13 07:38:31 -040075#include "card.h"
Forest Bond92b96792009-06-13 07:38:31 -040076
Otavio Salvador5008c452009-10-12 23:47:36 -030077#define VNT_USB_VENDOR_ID 0x160a
Forest Bond92b96792009-06-13 07:38:31 -040078#define VNT_USB_PRODUCT_ID 0x3184
79
Malcolm Priestley4aeaf152014-05-17 09:50:24 +010080#define DEVICE_NAME "vt6656"
81#define DEVICE_FULL_DRV_NAM "VIA Networking Wireless LAN USB Driver"
82
Malcolm Priestleyfeab4812014-07-25 20:51:52 +010083#define DEVICE_VERSION "mac80211"
Malcolm Priestley4aeaf152014-05-17 09:50:24 +010084
85#define CONFIG_PATH "/etc/vntconfiguration.dat"
86
87#define MAX_UINTS 8
88#define OPTION_DEFAULT { [0 ... MAX_UINTS-1] = -1}
89
Forest Bond92b96792009-06-13 07:38:31 -040090#define DUPLICATE_RX_CACHE_LENGTH 5
91
Forest Bond92b96792009-06-13 07:38:31 -040092#define AUTO_FB_NONE 0
93#define AUTO_FB_0 1
94#define AUTO_FB_1 2
95
96#define FB_RATE0 0
97#define FB_RATE1 1
98
Andres Mored3e23952013-01-31 15:57:19 -050099/* Antenna Mode */
Forest Bond92b96792009-06-13 07:38:31 -0400100#define ANT_A 0
101#define ANT_B 1
102#define ANT_DIVERSITY 2
103#define ANT_RXD_TXA 3
104#define ANT_RXD_TXB 4
105#define ANT_UNKNOWN 0xFF
106#define ANT_TXA 0
107#define ANT_TXB 1
108#define ANT_RXA 2
109#define ANT_RXB 3
110
Forest Bond92b96792009-06-13 07:38:31 -0400111#define BB_VGA_LEVEL 4
112#define BB_VGA_CHANGE_THRESHOLD 3
113
Malcolm Priestley15baf4f2014-05-17 09:50:28 +0100114#define EEP_MAX_CONTEXT_SIZE 256
115
116/* Contents in the EEPROM */
117#define EEP_OFS_PAR 0x0
118#define EEP_OFS_ANTENNA 0x17
119#define EEP_OFS_RADIOCTL 0x18
120#define EEP_OFS_RFTYPE 0x1b
121#define EEP_OFS_MINCHANNEL 0x1c
122#define EEP_OFS_MAXCHANNEL 0x1d
123#define EEP_OFS_SIGNATURE 0x1e
124#define EEP_OFS_ZONETYPE 0x1f
125#define EEP_OFS_RFTABLE 0x20
126#define EEP_OFS_PWR_CCK 0x20
127#define EEP_OFS_SETPT_CCK 0x21
128#define EEP_OFS_PWR_OFDMG 0x23
129
130#define EEP_OFS_CALIB_TX_IQ 0x24
131#define EEP_OFS_CALIB_TX_DC 0x25
132#define EEP_OFS_CALIB_RX_IQ 0x26
133
134#define EEP_OFS_MAJOR_VER 0x2e
135#define EEP_OFS_MINOR_VER 0x2f
136
137#define EEP_OFS_CCK_PWR_TBL 0x30
138#define EEP_OFS_OFDM_PWR_TBL 0x40
139#define EEP_OFS_OFDMA_PWR_TBL 0x50
140
141/* Bits in EEP_OFS_ANTENNA */
142#define EEP_ANTENNA_MAIN 0x1
143#define EEP_ANTENNA_AUX 0x2
144#define EEP_ANTINV 0x4
145
146/* Bits in EEP_OFS_RADIOCTL */
147#define EEP_RADIOCTL_ENABLE 0x80
148
Malcolm Priestley60f8ce82014-05-17 09:50:30 +0100149/* control commands */
150#define MESSAGE_TYPE_READ 0x1
151#define MESSAGE_TYPE_WRITE 0x0
152#define MESSAGE_TYPE_LOCK_OR 0x2
153#define MESSAGE_TYPE_LOCK_AND 0x3
154#define MESSAGE_TYPE_WRITE_MASK 0x4
155#define MESSAGE_TYPE_CARDINIT 0x5
156#define MESSAGE_TYPE_INIT_RSP 0x6
157#define MESSAGE_TYPE_MACSHUTDOWN 0x7
158#define MESSAGE_TYPE_SETKEY 0x8
159#define MESSAGE_TYPE_CLRKEYENTRY 0x9
160#define MESSAGE_TYPE_WRITE_MISCFF 0xa
161#define MESSAGE_TYPE_SET_ANTMD 0xb
Gustavo A. R. Silva733b3b02015-01-11 16:35:54 -0600162#define MESSAGE_TYPE_SELECT_CHANNEL 0xc
Malcolm Priestley60f8ce82014-05-17 09:50:30 +0100163#define MESSAGE_TYPE_SET_TSFTBTT 0xd
164#define MESSAGE_TYPE_SET_SSTIFS 0xe
165#define MESSAGE_TYPE_CHANGE_BBTYPE 0xf
166#define MESSAGE_TYPE_DISABLE_PS 0x10
167#define MESSAGE_TYPE_WRITE_IFRF 0x11
168
169/* command read/write(index) */
170#define MESSAGE_REQUEST_MEM 0x1
171#define MESSAGE_REQUEST_BBREG 0x2
172#define MESSAGE_REQUEST_MACREG 0x3
173#define MESSAGE_REQUEST_EEPROM 0x4
174#define MESSAGE_REQUEST_TSF 0x5
175#define MESSAGE_REQUEST_TBTT 0x6
176#define MESSAGE_REQUEST_BBAGC 0x7
177#define MESSAGE_REQUEST_VERSION 0x8
178#define MESSAGE_REQUEST_RF_INIT 0x9
179#define MESSAGE_REQUEST_RF_INIT2 0xa
180#define MESSAGE_REQUEST_RF_CH0 0xb
181#define MESSAGE_REQUEST_RF_CH1 0xc
182#define MESSAGE_REQUEST_RF_CH2 0xd
183
184/* USB registers */
185#define USB_REG4 0x604
186
Malcolm Priestley302433d2013-11-03 17:40:51 +0000187#define DEVICE_INIT_COLD 0x0 /* cold init */
188#define DEVICE_INIT_RESET 0x1 /* reset init or Dx to D0 power remain */
189#define DEVICE_INIT_DXPL 0x2 /* Dx to D0 power lost init */
Forest Bond92b96792009-06-13 07:38:31 -0400190
Malcolm Priestley60f8ce82014-05-17 09:50:30 +0100191/* Device init */
192struct vnt_cmd_card_init {
193 u8 init_class;
194 u8 exist_sw_net_addr;
195 u8 sw_net_addr[6];
196 u8 short_retry_limit;
197 u8 long_retry_limit;
198};
199
200struct vnt_rsp_card_init {
201 u8 status;
202 u8 net_addr[6];
203 u8 rf_type;
204 u8 min_channel;
205 u8 max_channel;
206};
207
Andres Mored3e23952013-01-31 15:57:19 -0500208/* USB */
Forest Bond92b96792009-06-13 07:38:31 -0400209
Andres Mored3e23952013-01-31 15:57:19 -0500210/*
211 * Enum of context types for SendPacket
212 */
Malcolm Priestley1450ba62014-02-19 21:56:33 +0000213enum {
214 CONTEXT_DATA_PACKET = 1,
Malcolm Priestleyd38b13a2014-06-25 21:14:23 +0100215 CONTEXT_MGMT_PACKET,
216 CONTEXT_BEACON_PACKET
Malcolm Priestley1450ba62014-02-19 21:56:33 +0000217};
Forest Bond92b96792009-06-13 07:38:31 -0400218
Andres Mored3e23952013-01-31 15:57:19 -0500219/* RCB (Receive Control Block) */
Malcolm Priestley115cac22013-08-28 21:12:35 +0100220struct vnt_rcb {
Malcolm Priestley325de982014-07-18 06:36:11 +0100221 void *priv;
222 struct urb *urb;
Malcolm Priestleydd0a7742012-12-10 21:59:10 +0000223 struct sk_buff *skb;
Malcolm Priestley325de982014-07-18 06:36:11 +0100224 int in_use;
Malcolm Priestley115cac22013-08-28 21:12:35 +0100225};
Forest Bond92b96792009-06-13 07:38:31 -0400226
Andres Mored3e23952013-01-31 15:57:19 -0500227/* used to track bulk out irps */
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100228struct vnt_usb_send_context {
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100229 void *priv;
230 struct sk_buff *skb;
231 struct urb *urb;
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100232 struct ieee80211_hdr *hdr;
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100233 unsigned int buf_len;
Malcolm Priestley0f5567c2014-07-20 15:33:33 +0100234 u32 frame_len;
Malcolm Priestley1622c8f2014-05-31 13:34:58 +0100235 u16 tx_hdr_size;
Malcolm Priestley798f0602014-07-20 15:33:34 +0100236 u16 tx_rate;
Malcolm Priestley1450ba62014-02-19 21:56:33 +0000237 u8 type;
Malcolm Priestley71d764a2014-07-05 19:24:27 +0100238 u8 pkt_no;
Malcolm Priestleye8c98752014-07-20 15:33:31 +0100239 u8 pkt_type;
Malcolm Priestley2eca8db2014-07-20 15:33:32 +0100240 u8 need_ack;
Malcolm Priestley71d764a2014-07-05 19:24:27 +0100241 u8 fb_option;
Malcolm Priestley30a05b32014-05-15 22:49:11 +0100242 bool in_use;
243 unsigned char data[MAX_TOTAL_SIZE_WITH_ALL_HEADERS];
Malcolm Priestleydcdf1d02013-08-27 12:41:50 +0100244};
Forest Bond92b96792009-06-13 07:38:31 -0400245
Andres Mored3e23952013-01-31 15:57:19 -0500246/*
247 * Structure to keep track of USB interrupt packets
248 */
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000249struct vnt_interrupt_buffer {
250 u8 *data_buf;
251 bool in_use;
252};
Forest Bond92b96792009-06-13 07:38:31 -0400253
Andres Mored3e23952013-01-31 15:57:19 -0500254/*++ NDIS related */
Forest Bond92b96792009-06-13 07:38:31 -0400255
Peter Senna Tschudin879be452014-07-16 18:13:43 +0200256enum {
257 STATUS_SUCCESS = 0,
258 STATUS_FAILURE,
259 STATUS_RESOURCES,
260 STATUS_PENDING,
261};
Forest Bond92b96792009-06-13 07:38:31 -0400262
Andres Mored3e23952013-01-31 15:57:19 -0500263/* flags for options */
Alexey Tuliae7bda762015-11-21 15:36:47 +0300264#define DEVICE_FLAGS_UNPLUG 0
265#define DEVICE_FLAGS_DISCONNECTED 1
Forest Bond92b96792009-06-13 07:38:31 -0400266
Malcolm Priestley14c5ef52013-01-17 23:19:37 +0000267struct vnt_private {
Malcolm Priestley63b99072014-06-25 21:14:22 +0100268 /* mac80211 */
269 struct ieee80211_hw *hw;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100270 struct ieee80211_vif *vif;
Malcolm Priestley30816f82014-06-25 21:14:27 +0100271 u8 mac_hw;
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000272 /* netdev */
273 struct usb_device *usb;
Malcolm Priestleybd1f27f2019-12-20 21:15:59 +0000274 struct usb_interface *intf;
Forest Bond92b96792009-06-13 07:38:31 -0400275
Malcolm Priestley63b99072014-06-25 21:14:22 +0100276 u64 tsf_time;
277 u8 rx_rate;
278
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000279 u32 rx_buf_sz;
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100280 int mc_list_count;
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000281
282 spinlock_t lock;
Malcolm Priestleyc91b1862014-05-15 22:49:19 +0100283 struct mutex usb_lock;
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000284
Malcolm Priestley27463212014-07-24 21:13:16 +0100285 unsigned long flags;
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000286
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000287 /* USB */
Malcolm Priestley3d582482014-07-18 06:36:14 +0100288 struct urb *interrupt_urb;
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000289 u32 int_interval;
Forest Bond92b96792009-06-13 07:38:31 -0400290
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000291 /* Variables to track resources for the BULK In Pipe */
Malcolm Priestley85770112014-07-18 06:36:15 +0100292 struct vnt_rcb *rcb[CB_MAX_RX_DESC];
Malcolm Priestley6da47382014-07-19 12:30:03 +0100293 u32 num_rcb;
Forest Bond92b96792009-06-13 07:38:31 -0400294
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000295 /* Variables to track resources for the BULK Out Pipe */
Malcolm Priestleyf7e4a8f2014-07-18 06:36:16 +0100296 struct vnt_usb_send_context *tx_context[CB_MAX_TX_DESC];
Malcolm Priestley03b7e352014-07-19 12:30:04 +0100297 u32 num_tx_context;
Forest Bond92b96792009-06-13 07:38:31 -0400298
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000299 /* Variables to track resources for the Interrupt In Pipe */
Malcolm Priestleyf764e002014-02-19 18:39:09 +0000300 struct vnt_interrupt_buffer int_buf;
Forest Bond92b96792009-06-13 07:38:31 -0400301
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000302 /* Version control */
Malcolm Priestley8a73f9d2014-07-19 12:30:05 +0100303 u16 firmware_version;
Malcolm Priestleyf1945a12014-07-19 12:30:06 +0100304 u8 local_id;
Malcolm Priestley6242eca2014-07-19 12:30:07 +0100305 u8 rf_type;
Malcolm Priestleycd5856a2014-07-19 12:30:08 +0100306 u8 bb_rx_conf;
Forest Bond92b96792009-06-13 07:38:31 -0400307
Malcolm Priestley748bf692013-11-03 17:49:32 +0000308 struct vnt_cmd_card_init init_command;
309 struct vnt_rsp_card_init init_response;
Krzysztof Adamskie2382232014-12-09 12:01:38 +0100310 u8 current_net_addr[ETH_ALEN] __aligned(2);
311 u8 permanent_net_addr[ETH_ALEN] __aligned(2);
Forest Bond92b96792009-06-13 07:38:31 -0400312
Malcolm Priestley35cc8f92014-07-19 12:30:12 +0100313 u8 exist_sw_net_addr;
Forest Bond92b96792009-06-13 07:38:31 -0400314
Malcolm Priestley113f0b92014-07-19 12:30:13 +0100315 u64 current_tsf;
Forest Bond92b96792009-06-13 07:38:31 -0400316
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000317 /* 802.11 MAC specific */
Malcolm Priestley125cfc62014-07-19 12:30:14 +0100318 u32 current_rssi;
Forest Bond92b96792009-06-13 07:38:31 -0400319
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000320 /* Antenna Diversity */
Malcolm Priestley2044dbd2014-07-19 12:30:16 +0100321 int tx_rx_ant_inv;
322 u32 rx_antenna_sel;
323 u8 rx_antenna_mode;
324 u8 tx_antenna_mode;
325 u8 radio_ctl;
Forest Bond92b96792009-06-13 07:38:31 -0400326
Andres Morecc856e62010-05-17 21:34:01 -0300327 /* IFS & Cw */
Malcolm Priestleyff5fee22014-07-19 12:30:18 +0100328 u32 sifs; /* Current SIFS */
329 u32 difs; /* Current DIFS */
330 u32 eifs; /* Current EIFS */
331 u32 slot; /* Current SlotTime */
Andres Morecc856e62010-05-17 21:34:01 -0300332
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000333 /* Rate */
Malcolm Priestley65df77e2014-07-20 15:33:11 +0100334 u8 bb_type; /* 0: 11A, 1:11B, 2:11G */
Malcolm Priestleye12471d2014-07-20 15:33:12 +0100335 u8 packet_type; /* 0:11a 1:11b 2:11gb 3:11ga */
Malcolm Priestley93a73552014-07-20 15:33:13 +0100336 u32 basic_rates;
Malcolm Priestley3c8a5b22014-07-20 15:33:14 +0100337 u8 top_ofdm_basic_rate;
Malcolm Priestleyd80bf432014-07-20 15:33:15 +0100338 u8 top_cck_basic_rate;
Forest Bond92b96792009-06-13 07:38:31 -0400339
Malcolm Priestleybbb11262014-07-20 15:33:16 +0100340 u8 eeprom[EEP_MAX_CONTEXT_SIZE]; /*u32 alignment */
Forest Bond92b96792009-06-13 07:38:31 -0400341
Malcolm Priestley98e93fe2014-07-20 15:33:17 +0100342 u8 preamble_type;
Forest Bond92b96792009-06-13 07:38:31 -0400343
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000344 /* For RF Power table */
Malcolm Priestley5a974912014-07-20 15:33:18 +0100345 u8 cck_pwr;
346 u8 ofdm_pwr_g;
347 u8 ofdm_pwr_a;
348 u8 power;
349 u8 cck_pwr_tbl[14];
350 u8 ofdm_pwr_tbl[14];
351 u8 ofdm_a_pwr_tbl[42];
Forest Bond92b96792009-06-13 07:38:31 -0400352
Malcolm Priestley8b84c1d2014-07-20 15:33:19 +0100353 u16 current_rate;
Malcolm Priestleyf84cdf62013-10-15 21:00:09 +0100354 u16 tx_rate_fb0;
355 u16 tx_rate_fb1;
356
Malcolm Priestley388e5cb2014-07-20 15:33:20 +0100357 u8 short_retry_limit;
358 u8 long_retry_limit;
Malcolm Priestleya0ad2772014-02-15 21:56:20 +0000359
360 enum nl80211_iftype op_mode;
361
Malcolm Priestleya641c9e2014-07-20 15:33:21 +0100362 int short_slot_time;
Forest Bond92b96792009-06-13 07:38:31 -0400363
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000364 /* Power save */
Malcolm Priestleydb8f37f2014-06-25 21:14:25 +0100365 u16 current_aid;
Forest Bond92b96792009-06-13 07:38:31 -0400366
Colin Cronin59082602015-05-14 23:33:34 -0700367 /* Beacon related */
Malcolm Priestley1b2bc0a2014-07-20 15:33:23 +0100368 u16 seq_counter;
Forest Bond92b96792009-06-13 07:38:31 -0400369
Malcolm Priestleyad74e912014-07-13 10:42:42 +0100370 enum vnt_cmd_state command_state;
Forest Bond92b96792009-06-13 07:38:31 -0400371
Malcolm Priestley80f0d092014-07-13 10:42:41 +0100372 enum vnt_cmd command;
Forest Bond92b96792009-06-13 07:38:31 -0400373
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000374 /* 802.11 counter */
Forest Bond92b96792009-06-13 07:38:31 -0400375
Malcolm Priestleyb595f9b2014-07-13 10:42:43 +0100376 enum vnt_cmd cmd_queue[CMD_Q_SIZE];
Malcolm Priestley33a60b82014-07-13 10:42:45 +0100377 u32 cmd_dequeue_idx;
378 u32 cmd_enqueue_idx;
379 u32 free_cmd_queue;
380 int cmd_running;
Forest Bond92b96792009-06-13 07:38:31 -0400381
Malcolm Priestleyd1eb5002014-06-25 21:14:24 +0100382 unsigned long key_entry_inuse;
Forest Bond92b96792009-06-13 07:38:31 -0400383
Malcolm Priestleya6177ae2014-07-20 15:33:24 +0100384 u8 auto_fb_ctrl;
Forest Bond92b96792009-06-13 07:38:31 -0400385
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000386 /* For Update BaseBand VGA Gain Offset */
Malcolm Priestleyc37cbd32014-07-20 15:33:25 +0100387 u8 bb_vga[BB_VGA_LEVEL];
Forest Bond92b96792009-06-13 07:38:31 -0400388
Malcolm Priestley12687222014-07-20 15:33:27 +0100389 u8 bb_pre_ed_rssi;
Malcolm Priestley43fd1922014-07-20 15:33:28 +0100390 u8 bb_pre_ed_index;
Forest Bond92b96792009-06-13 07:38:31 -0400391
Malcolm Priestley43c93d92015-09-27 09:17:41 +0100392 u16 wake_up_count;
393
Malcolm Priestley61462ab2013-01-17 23:21:50 +0000394 /* command timer */
Malcolm Priestley94488a72013-09-27 16:48:14 +0100395 struct delayed_work run_command_work;
Forest Bond92b96792009-06-13 07:38:31 -0400396
Malcolm Priestley17863842014-06-29 20:39:54 +0100397 struct ieee80211_low_level_stats low_stats;
Malcolm Priestley14c5ef52013-01-17 23:19:37 +0000398};
Forest Bond92b96792009-06-13 07:38:31 -0400399
Peter Senna Tschudindbf0a032014-07-15 23:23:24 +0200400#define ADD_ONE_WITH_WRAP_AROUND(uVar, uModulo) { \
401 if ((uVar) >= ((uModulo) - 1)) \
402 (uVar) = 0; \
403 else \
404 (uVar)++; \
Forest Bond92b96792009-06-13 07:38:31 -0400405}
406
Malcolm Priestley30816f82014-06-25 21:14:27 +0100407int vnt_init(struct vnt_private *priv);
Forest Bond92b96792009-06-13 07:38:31 -0400408
409#endif