blob: 30001482c485ea5a7b1178071557525228aa6ab4 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
3 * Copyright(c) 2003 - 2007 Intel Corporation. All rights reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26#ifndef __iwl_4965_h__
27#define __iwl_4965_h__
28
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080029#include <linux/pci.h> /* for struct pci_device_id */
30#include <linux/kernel.h>
31#include <net/ieee80211_radiotap.h>
32
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080033struct iwl4965_priv;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080034
35/* Hardware specific file defines the PCI IDs table for that hardware module */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080036extern struct pci_device_id iwl4965_hw_card_ids[];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080037
38#define DRV_NAME "iwl4965"
39#include "iwl-4965-hw.h"
40#include "iwl-prph.h"
41#include "iwl-4965-debug.h"
42
43/* Default noise level to report when noise measurement is not available.
44 * This may be because we're:
45 * 1) Not associated (4965, no beacon statistics being sent to driver)
46 * 2) Scanning (noise measurement does not apply to associated channel)
47 * 3) Receiving CCK (3945 delivers noise info only for OFDM frames)
48 * Use default noise value of -127 ... this is below the range of measurable
49 * Rx dBm for either 3945 or 4965, so it can indicate "unmeasurable" to user.
50 * Also, -127 works better than 0 when averaging frames with/without
51 * noise info (e.g. averaging might be done in app); measured dBm values are
52 * always negative ... using a negative value as the default keeps all
53 * averages within an s8's (used in some apps) range of negative values. */
54#define IWL_NOISE_MEAS_NOT_AVAILABLE (-127)
55
56/* Module parameters accessible from iwl-*.c */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080057extern int iwl4965_param_hwcrypto;
58extern int iwl4965_param_queues_num;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080059
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080060enum iwl4965_antenna {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080061 IWL_ANTENNA_DIVERSITY,
62 IWL_ANTENNA_MAIN,
63 IWL_ANTENNA_AUX
64};
65
66/*
67 * RTS threshold here is total size [2347] minus 4 FCS bytes
68 * Per spec:
69 * a value of 0 means RTS on all data/management packets
70 * a value > max MSDU size means no RTS
71 * else RTS for data/management frames where MPDU is larger
72 * than RTS value.
73 */
74#define DEFAULT_RTS_THRESHOLD 2347U
75#define MIN_RTS_THRESHOLD 0U
76#define MAX_RTS_THRESHOLD 2347U
77#define MAX_MSDU_SIZE 2304U
78#define MAX_MPDU_SIZE 2346U
79#define DEFAULT_BEACON_INTERVAL 100U
80#define DEFAULT_SHORT_RETRY_LIMIT 7U
81#define DEFAULT_LONG_RETRY_LIMIT 4U
82
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080083struct iwl4965_rx_mem_buffer {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080084 dma_addr_t dma_addr;
85 struct sk_buff *skb;
86 struct list_head list;
87};
88
Christoph Hellwigbb8c0932008-01-27 16:41:47 -080089struct iwl4965_rt_rx_hdr {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +080090 struct ieee80211_radiotap_header rt_hdr;
91 __le64 rt_tsf; /* TSF */
92 u8 rt_flags; /* radiotap packet flags */
93 u8 rt_rate; /* rate in 500kb/s */
94 __le16 rt_channelMHz; /* channel in MHz */
95 __le16 rt_chbitmask; /* channel bitfield */
96 s8 rt_dbmsignal; /* signal in dBm, kluged to signed */
97 s8 rt_dbmnoise;
98 u8 rt_antenna; /* antenna number */
99 u8 payload[0]; /* payload... */
100} __attribute__ ((packed));
101
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800102struct iwl4965_rt_tx_hdr {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800103 struct ieee80211_radiotap_header rt_hdr;
104 u8 rt_rate; /* rate in 500kb/s */
105 __le16 rt_channel; /* channel in mHz */
106 __le16 rt_chbitmask; /* channel bitfield */
107 s8 rt_dbmsignal; /* signal in dBm, kluged to signed */
108 u8 rt_antenna; /* antenna number */
109 u8 payload[0]; /* payload... */
110} __attribute__ ((packed));
111
112/*
113 * Generic queue structure
114 *
115 * Contains common data for Rx and Tx queues
116 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800117struct iwl4965_queue {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800118 int n_bd; /* number of BDs in this queue */
119 int write_ptr; /* 1-st empty entry (index) host_w*/
120 int read_ptr; /* last used entry (index) host_r*/
121 dma_addr_t dma_addr; /* physical addr for BD's */
122 int n_window; /* safe queue window */
123 u32 id;
124 int low_mark; /* low watermark, resume queue if free
125 * space more than this */
126 int high_mark; /* high watermark, stop queue if free
127 * space less than this */
128} __attribute__ ((packed));
129
130#define MAX_NUM_OF_TBS (20)
131
Ben Cahillbc472792007-11-29 11:09:49 +0800132/* One for each TFD */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800133struct iwl4965_tx_info {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800134 struct ieee80211_tx_status status;
135 struct sk_buff *skb[MAX_NUM_OF_TBS];
136};
137
138/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800139 * struct iwl4965_tx_queue - Tx Queue for DMA
Ben Cahillbc472792007-11-29 11:09:49 +0800140 * @q: generic Rx/Tx queue descriptor
141 * @bd: base of circular buffer of TFDs
142 * @cmd: array of command/Tx buffers
143 * @dma_addr_cmd: physical address of cmd/tx buffer array
144 * @txb: array of per-TFD driver data
145 * @need_update: indicates need to update read/write index
146 * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800147 *
Ben Cahillbc472792007-11-29 11:09:49 +0800148 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
149 * descriptors) and required locking structures.
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800150 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800151struct iwl4965_tx_queue {
152 struct iwl4965_queue q;
153 struct iwl4965_tfd_frame *bd;
154 struct iwl4965_cmd *cmd;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800155 dma_addr_t dma_addr_cmd;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800156 struct iwl4965_tx_info *txb;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800157 int need_update;
158 int sched_retry;
159 int active;
160};
161
162#define IWL_NUM_SCAN_RATES (2)
163
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800164struct iwl4965_channel_tgd_info {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800165 u8 type;
166 s8 max_power;
167};
168
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800169struct iwl4965_channel_tgh_info {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800170 s64 last_radar_time;
171};
172
173/* current Tx power values to use, one for each rate for each channel.
174 * requested power is limited by:
175 * -- regulatory EEPROM limits for this channel
176 * -- hardware capabilities (clip-powers)
177 * -- spectrum management
178 * -- user preference (e.g. iwconfig)
179 * when requested power is set, base power index must also be set. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800180struct iwl4965_channel_power_info {
181 struct iwl4965_tx_power tpc; /* actual radio and DSP gain settings */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800182 s8 power_table_index; /* actual (compenst'd) index into gain table */
183 s8 base_power_index; /* gain index for power at factory temp. */
184 s8 requested_power; /* power (dBm) requested for this chnl/rate */
185};
186
187/* current scan Tx power values to use, one for each scan rate for each
188 * channel. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800189struct iwl4965_scan_power_info {
190 struct iwl4965_tx_power tpc; /* actual radio and DSP gain settings */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800191 s8 power_table_index; /* actual (compenst'd) index into gain table */
192 s8 requested_power; /* scan pwr (dBm) requested for chnl/rate */
193};
194
195/* Channel unlock period is 15 seconds. If no beacon or probe response
196 * has been received within 15 seconds on a locked channel then the channel
197 * remains locked. */
198#define TX_UNLOCK_PERIOD 15
199
200/* CSA lock period is 15 seconds. If a CSA has been received on a channel in
201 * the last 15 seconds, the channel is locked */
202#define CSA_LOCK_PERIOD 15
203/*
204 * One for each channel, holds all channel setup data
205 * Some of the fields (e.g. eeprom and flags/max_power_avg) are redundant
206 * with one another!
207 */
208#define IWL4965_MAX_RATE (33)
209
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800210struct iwl4965_channel_info {
211 struct iwl4965_channel_tgd_info tgd;
212 struct iwl4965_channel_tgh_info tgh;
213 struct iwl4965_eeprom_channel eeprom; /* EEPROM regulatory limit */
214 struct iwl4965_eeprom_channel fat_eeprom; /* EEPROM regulatory limit for
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800215 * FAT channel */
216
217 u8 channel; /* channel number */
218 u8 flags; /* flags copied from EEPROM */
219 s8 max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
220 s8 curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) */
221 s8 min_power; /* always 0 */
222 s8 scan_power; /* (dBm) regul. eeprom, direct scans, any rate */
223
224 u8 group_index; /* 0-4, maps channel to group1/2/3/4/5 */
225 u8 band_index; /* 0-4, maps channel to band1/2/3/4/5 */
226 u8 phymode; /* MODE_IEEE80211{A,B,G} */
227
228 /* Radio/DSP gain settings for each "normal" data Tx rate.
229 * These include, in addition to RF and DSP gain, a few fields for
230 * remembering/modifying gain settings (indexes). */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800231 struct iwl4965_channel_power_info power_info[IWL4965_MAX_RATE];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800232
233 /* FAT channel info */
234 s8 fat_max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
235 s8 fat_curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) */
236 s8 fat_min_power; /* always 0 */
237 s8 fat_scan_power; /* (dBm) eeprom, direct scans, any rate */
238 u8 fat_flags; /* flags copied from EEPROM */
239 u8 fat_extension_channel;
240
241 /* Radio/DSP gain settings for each scan rate, for directed scans. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800242 struct iwl4965_scan_power_info scan_pwr_info[IWL_NUM_SCAN_RATES];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800243};
244
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800245struct iwl4965_clip_group {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800246 /* maximum power level to prevent clipping for each rate, derived by
247 * us from this band's saturation power in EEPROM */
248 const s8 clip_powers[IWL_MAX_RATES];
249};
250
251#include "iwl-4965-rs.h"
252
253#define IWL_TX_FIFO_AC0 0
254#define IWL_TX_FIFO_AC1 1
255#define IWL_TX_FIFO_AC2 2
256#define IWL_TX_FIFO_AC3 3
257#define IWL_TX_FIFO_HCCA_1 5
258#define IWL_TX_FIFO_HCCA_2 6
259#define IWL_TX_FIFO_NONE 7
260
261/* Minimum number of queues. MAX_NUM is defined in hw specific files */
262#define IWL_MIN_NUM_QUEUES 4
263
264/* Power management (not Tx power) structures */
265
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800266struct iwl4965_power_vec_entry {
267 struct iwl4965_powertable_cmd cmd;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800268 u8 no_dtim;
269};
270#define IWL_POWER_RANGE_0 (0)
271#define IWL_POWER_RANGE_1 (1)
272
273#define IWL_POWER_MODE_CAM 0x00 /* Continuously Aware Mode, always on */
274#define IWL_POWER_INDEX_3 0x03
275#define IWL_POWER_INDEX_5 0x05
276#define IWL_POWER_AC 0x06
277#define IWL_POWER_BATTERY 0x07
278#define IWL_POWER_LIMIT 0x07
279#define IWL_POWER_MASK 0x0F
280#define IWL_POWER_ENABLED 0x10
281#define IWL_POWER_LEVEL(x) ((x) & IWL_POWER_MASK)
282
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800283struct iwl4965_power_mgr {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800284 spinlock_t lock;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800285 struct iwl4965_power_vec_entry pwr_range_0[IWL_POWER_AC];
286 struct iwl4965_power_vec_entry pwr_range_1[IWL_POWER_AC];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800287 u8 active_index;
288 u32 dtim_val;
289};
290
291#define IEEE80211_DATA_LEN 2304
292#define IEEE80211_4ADDR_LEN 30
293#define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
294#define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
295
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800296struct iwl4965_frame {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800297 union {
298 struct ieee80211_hdr frame;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800299 struct iwl4965_tx_beacon_cmd beacon;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800300 u8 raw[IEEE80211_FRAME_LEN];
301 u8 cmd[360];
302 } u;
303 struct list_head list;
304};
305
306#define SEQ_TO_QUEUE(x) ((x >> 8) & 0xbf)
307#define QUEUE_TO_SEQ(x) ((x & 0xbf) << 8)
308#define SEQ_TO_INDEX(x) (x & 0xff)
309#define INDEX_TO_SEQ(x) (x & 0xff)
310#define SEQ_HUGE_FRAME (0x4000)
311#define SEQ_RX_FRAME __constant_cpu_to_le16(0x8000)
312#define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
313#define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
314#define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
315
316enum {
317 /* CMD_SIZE_NORMAL = 0, */
318 CMD_SIZE_HUGE = (1 << 0),
319 /* CMD_SYNC = 0, */
320 CMD_ASYNC = (1 << 1),
321 /* CMD_NO_SKB = 0, */
322 CMD_WANT_SKB = (1 << 2),
323};
324
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800325struct iwl4965_cmd;
326struct iwl4965_priv;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800327
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800328struct iwl4965_cmd_meta {
329 struct iwl4965_cmd_meta *source;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800330 union {
331 struct sk_buff *skb;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800332 int (*callback)(struct iwl4965_priv *priv,
333 struct iwl4965_cmd *cmd, struct sk_buff *skb);
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800334 } __attribute__ ((packed)) u;
335
336 /* The CMD_SIZE_HUGE flag bit indicates that the command
337 * structure is stored at the end of the shared queue memory. */
338 u32 flags;
339
340} __attribute__ ((packed));
341
Ben Cahillbc472792007-11-29 11:09:49 +0800342/**
343 * struct iwl4965_cmd
344 *
345 * For allocation of the command and tx queues, this establishes the overall
346 * size of the largest command we send to uCode, except for a scan command
347 * (which is relatively huge; space is allocated separately).
348 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800349struct iwl4965_cmd {
Ben Cahillbc472792007-11-29 11:09:49 +0800350 struct iwl4965_cmd_meta meta; /* driver data */
351 struct iwl4965_cmd_header hdr; /* uCode API */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800352 union {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800353 struct iwl4965_addsta_cmd addsta;
354 struct iwl4965_led_cmd led;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800355 u32 flags;
356 u8 val8;
357 u16 val16;
358 u32 val32;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800359 struct iwl4965_bt_cmd bt;
360 struct iwl4965_rxon_time_cmd rxon_time;
361 struct iwl4965_powertable_cmd powertable;
362 struct iwl4965_qosparam_cmd qosparam;
363 struct iwl4965_tx_cmd tx;
364 struct iwl4965_tx_beacon_cmd tx_beacon;
365 struct iwl4965_rxon_assoc_cmd rxon_assoc;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800366 u8 *indirect;
367 u8 payload[360];
368 } __attribute__ ((packed)) cmd;
369} __attribute__ ((packed));
370
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800371struct iwl4965_host_cmd {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800372 u8 id;
373 u16 len;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800374 struct iwl4965_cmd_meta meta;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800375 const void *data;
376};
377
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800378#define TFD_MAX_PAYLOAD_SIZE (sizeof(struct iwl4965_cmd) - \
379 sizeof(struct iwl4965_cmd_meta))
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800380
381/*
382 * RX related structures and functions
383 */
384#define RX_FREE_BUFFERS 64
385#define RX_LOW_WATERMARK 8
386
387#define SUP_RATE_11A_MAX_NUM_CHANNELS 8
388#define SUP_RATE_11B_MAX_NUM_CHANNELS 4
389#define SUP_RATE_11G_MAX_NUM_CHANNELS 12
390
391/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800392 * struct iwl4965_rx_queue - Rx queue
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800393 * @processed: Internal index to last handled Rx packet
394 * @read: Shared index to newest available Rx buffer
395 * @write: Shared index to oldest written Rx packet
396 * @free_count: Number of pre-allocated buffers in rx_free
397 * @rx_free: list of free SKBs for use
398 * @rx_used: List of Rx buffers with no SKB
399 * @need_update: flag to indicate we need to update read/write index
400 *
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800401 * NOTE: rx_free and rx_used are used as a FIFO for iwl4965_rx_mem_buffers
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800402 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800403struct iwl4965_rx_queue {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800404 __le32 *bd;
405 dma_addr_t dma_addr;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800406 struct iwl4965_rx_mem_buffer pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
407 struct iwl4965_rx_mem_buffer *queue[RX_QUEUE_SIZE];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800408 u32 processed;
409 u32 read;
410 u32 write;
411 u32 free_count;
412 struct list_head rx_free;
413 struct list_head rx_used;
414 int need_update;
415 spinlock_t lock;
416};
417
418#define IWL_SUPPORTED_RATES_IE_LEN 8
419
420#define SCAN_INTERVAL 100
421
422#define MAX_A_CHANNELS 252
423#define MIN_A_CHANNELS 7
424
425#define MAX_B_CHANNELS 14
426#define MIN_B_CHANNELS 1
427
428#define STATUS_HCMD_ACTIVE 0 /* host command in progress */
429#define STATUS_INT_ENABLED 1
430#define STATUS_RF_KILL_HW 2
431#define STATUS_RF_KILL_SW 3
432#define STATUS_INIT 4
433#define STATUS_ALIVE 5
434#define STATUS_READY 6
435#define STATUS_TEMPERATURE 7
436#define STATUS_GEO_CONFIGURED 8
437#define STATUS_EXIT_PENDING 9
438#define STATUS_IN_SUSPEND 10
439#define STATUS_STATISTICS 11
440#define STATUS_SCANNING 12
441#define STATUS_SCAN_ABORTING 13
442#define STATUS_SCAN_HW 14
443#define STATUS_POWER_PMI 15
444#define STATUS_FW_ERROR 16
445
446#define MAX_TID_COUNT 9
447
448#define IWL_INVALID_RATE 0xFF
449#define IWL_INVALID_VALUE -1
450
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800451#ifdef CONFIG_IWL4965_HT
452#ifdef CONFIG_IWL4965_HT_AGG
Ben Cahillbc472792007-11-29 11:09:49 +0800453/**
454 * struct iwl4965_ht_agg -- aggregation status while waiting for block-ack
455 * @txq_id: Tx queue used for Tx attempt
456 * @frame_count: # frames attempted by Tx command
457 * @wait_for_ba: Expect block-ack before next Tx reply
458 * @start_idx: Index of 1st Transmit Frame Descriptor (TFD) in Tx window
459 * @bitmap0: Low order bitmap, one bit for each frame pending ACK in Tx window
460 * @bitmap1: High order, one bit for each frame pending ACK in Tx window
461 * @rate_n_flags: Rate at which Tx was attempted
462 *
463 * If REPLY_TX indicates that aggregation was attempted, driver must wait
464 * for block ack (REPLY_COMPRESSED_BA). This struct stores tx reply info
465 * until block ack arrives.
466 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800467struct iwl4965_ht_agg {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800468 u16 txq_id;
469 u16 frame_count;
470 u16 wait_for_ba;
471 u16 start_idx;
472 u32 bitmap0;
473 u32 bitmap1;
474 u32 rate_n_flags;
475};
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800476#endif /* CONFIG_IWL4965_HT_AGG */
477#endif /* CONFIG_IWL4965_HT */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800478
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800479struct iwl4965_tid_data {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800480 u16 seq_number;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800481#ifdef CONFIG_IWL4965_HT
482#ifdef CONFIG_IWL4965_HT_AGG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800483 struct iwl4965_ht_agg agg;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800484#endif /* CONFIG_IWL4965_HT_AGG */
485#endif /* CONFIG_IWL4965_HT */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800486};
487
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800488struct iwl4965_hw_key {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800489 enum ieee80211_key_alg alg;
490 int keylen;
491 u8 key[32];
492};
493
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800494union iwl4965_ht_rate_supp {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800495 u16 rates;
496 struct {
497 u8 siso_rate;
498 u8 mimo_rate;
499 };
500};
501
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800502#ifdef CONFIG_IWL4965_HT
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800503#define CFG_HT_RX_AMPDU_FACTOR_DEF (0x3)
504#define HT_IE_MAX_AMSDU_SIZE_4K (0)
505#define CFG_HT_MPDU_DENSITY_2USEC (0x5)
506#define CFG_HT_MPDU_DENSITY_DEF CFG_HT_MPDU_DENSITY_2USEC
507
508struct sta_ht_info {
509 u8 is_ht;
510 u16 rx_mimo_ps_mode;
511 u16 tx_mimo_ps_mode;
512 u16 control_channel;
513 u8 max_amsdu_size;
514 u8 ampdu_factor;
515 u8 mpdu_density;
516 u8 operating_mode;
517 u8 supported_chan_width;
518 u8 extension_chan_offset;
519 u8 is_green_field;
Ben Cahill77626352007-11-29 11:09:44 +0800520 u8 sgf; /* HT_SHORT_GI_* short guard interval */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800521 u8 supp_rates[16];
522 u8 tx_chan_width;
523 u8 chan_width_cap;
524};
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800525#endif /*CONFIG_IWL4965_HT */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800526
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800527#ifdef CONFIG_IWL4965_QOS
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800528
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800529union iwl4965_qos_capabity {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800530 struct {
531 u8 edca_count:4; /* bit 0-3 */
532 u8 q_ack:1; /* bit 4 */
533 u8 queue_request:1; /* bit 5 */
534 u8 txop_request:1; /* bit 6 */
535 u8 reserved:1; /* bit 7 */
536 } q_AP;
537 struct {
538 u8 acvo_APSD:1; /* bit 0 */
539 u8 acvi_APSD:1; /* bit 1 */
540 u8 ac_bk_APSD:1; /* bit 2 */
541 u8 ac_be_APSD:1; /* bit 3 */
542 u8 q_ack:1; /* bit 4 */
543 u8 max_len:2; /* bit 5-6 */
544 u8 more_data_ack:1; /* bit 7 */
545 } q_STA;
546 u8 val;
547};
548
549/* QoS structures */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800550struct iwl4965_qos_info {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800551 int qos_enable;
552 int qos_active;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800553 union iwl4965_qos_capabity qos_cap;
554 struct iwl4965_qosparam_cmd def_qos_parm;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800555};
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800556#endif /*CONFIG_IWL4965_QOS */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800557
558#define STA_PS_STATUS_WAKE 0
559#define STA_PS_STATUS_SLEEP 1
560
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800561struct iwl4965_station_entry {
562 struct iwl4965_addsta_cmd sta;
563 struct iwl4965_tid_data tid[MAX_TID_COUNT];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800564 u8 used;
565 u8 ps_status;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800566 struct iwl4965_hw_key keyinfo;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800567};
568
569/* one for each uCode image (inst/data, boot/init/runtime) */
570struct fw_desc {
571 void *v_addr; /* access by driver */
572 dma_addr_t p_addr; /* access by card's busmaster DMA */
573 u32 len; /* bytes */
574};
575
576/* uCode file layout */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800577struct iwl4965_ucode {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800578 __le32 ver; /* major/minor/subminor */
579 __le32 inst_size; /* bytes of runtime instructions */
580 __le32 data_size; /* bytes of runtime data */
581 __le32 init_size; /* bytes of initialization instructions */
582 __le32 init_data_size; /* bytes of initialization data */
583 __le32 boot_size; /* bytes of bootstrap instructions */
584 u8 data[0]; /* data in same order as "size" elements */
585};
586
587#define IWL_IBSS_MAC_HASH_SIZE 32
588
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800589struct iwl4965_ibss_seq {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800590 u8 mac[ETH_ALEN];
591 u16 seq_num;
592 u16 frag_num;
593 unsigned long packet_time;
594 struct list_head list;
595};
596
Ben Cahillbc472792007-11-29 11:09:49 +0800597/**
598 * struct iwl4965_driver_hw_info
599 * @max_txq_num: Max # Tx queues supported
600 * @ac_queue_count: # Tx queues for EDCA Access Categories (AC)
601 * @tx_cmd_len: Size of Tx command (but not including frame itself)
602 * @max_rxq_size: Max # Rx frames in Rx queue (must be power-of-2)
603 * @rx_buffer_size:
604 * @max_rxq_log: Log-base-2 of max_rxq_size
605 * @max_stations:
606 * @bcast_sta_id:
607 * @shared_virt: Pointer to driver/uCode shared Tx Byte Counts and Rx status
608 * @shared_phys: Physical Pointer to Tx Byte Counts and Rx status
609 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800610struct iwl4965_driver_hw_info {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800611 u16 max_txq_num;
612 u16 ac_queue_count;
613 u16 tx_cmd_len;
614 u16 max_rxq_size;
615 u32 rx_buffer_size;
616 u16 max_rxq_log;
617 u8 max_stations;
618 u8 bcast_sta_id;
619 void *shared_virt;
620 dma_addr_t shared_phys;
621};
622
623
624#define STA_FLG_RTS_MIMO_PROT_MSK __constant_cpu_to_le32(1 << 17)
625#define STA_FLG_AGG_MPDU_8US_MSK __constant_cpu_to_le32(1 << 18)
626#define STA_FLG_MAX_AGG_SIZE_POS (19)
627#define STA_FLG_MAX_AGG_SIZE_MSK __constant_cpu_to_le32(3 << 19)
628#define STA_FLG_FAT_EN_MSK __constant_cpu_to_le32(1 << 21)
629#define STA_FLG_MIMO_DIS_MSK __constant_cpu_to_le32(1 << 22)
630#define STA_FLG_AGG_MPDU_DENSITY_POS (23)
631#define STA_FLG_AGG_MPDU_DENSITY_MSK __constant_cpu_to_le32(7 << 23)
632#define HT_SHORT_GI_20MHZ_ONLY (1 << 0)
633#define HT_SHORT_GI_40MHZ_ONLY (1 << 1)
634
635
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800636#define IWL_RX_HDR(x) ((struct iwl4965_rx_frame_hdr *)(\
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800637 x->u.rx_frame.stats.payload + \
638 x->u.rx_frame.stats.phy_count))
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800639#define IWL_RX_END(x) ((struct iwl4965_rx_frame_end *)(\
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800640 IWL_RX_HDR(x)->payload + \
641 le16_to_cpu(IWL_RX_HDR(x)->len)))
642#define IWL_RX_STATS(x) (&x->u.rx_frame.stats)
643#define IWL_RX_DATA(x) (IWL_RX_HDR(x)->payload)
644
645
646/******************************************************************************
647 *
648 * Functions implemented in iwl-base.c which are forward declared here
649 * for use by iwl-*.c
650 *
651 *****************************************************************************/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800652struct iwl4965_addsta_cmd;
653extern int iwl4965_send_add_station(struct iwl4965_priv *priv,
654 struct iwl4965_addsta_cmd *sta, u8 flags);
655extern u8 iwl4965_add_station_flags(struct iwl4965_priv *priv, const u8 *bssid,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800656 int is_ap, u8 flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800657extern int iwl4965_is_network_packet(struct iwl4965_priv *priv,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800658 struct ieee80211_hdr *header);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800659extern int iwl4965_power_init_handle(struct iwl4965_priv *priv);
660extern int iwl4965_eeprom_init(struct iwl4965_priv *priv);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800661#ifdef CONFIG_IWL4965_DEBUG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800662extern void iwl4965_report_frame(struct iwl4965_priv *priv,
663 struct iwl4965_rx_packet *pkt,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800664 struct ieee80211_hdr *header, int group100);
665#else
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800666static inline void iwl4965_report_frame(struct iwl4965_priv *priv,
667 struct iwl4965_rx_packet *pkt,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800668 struct ieee80211_hdr *header,
669 int group100) {}
670#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800671extern void iwl4965_handle_data_packet_monitor(struct iwl4965_priv *priv,
672 struct iwl4965_rx_mem_buffer *rxb,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800673 void *data, short len,
674 struct ieee80211_rx_status *stats,
675 u16 phy_flags);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800676extern int iwl4965_is_duplicate_packet(struct iwl4965_priv *priv,
677 struct ieee80211_hdr *header);
678extern int iwl4965_rx_queue_alloc(struct iwl4965_priv *priv);
679extern void iwl4965_rx_queue_reset(struct iwl4965_priv *priv,
680 struct iwl4965_rx_queue *rxq);
681extern int iwl4965_calc_db_from_ratio(int sig_ratio);
682extern int iwl4965_calc_sig_qual(int rssi_dbm, int noise_dbm);
683extern int iwl4965_tx_queue_init(struct iwl4965_priv *priv,
684 struct iwl4965_tx_queue *txq, int count, u32 id);
685extern void iwl4965_rx_replenish(void *data);
686extern void iwl4965_tx_queue_free(struct iwl4965_priv *priv, struct iwl4965_tx_queue *txq);
687extern int iwl4965_send_cmd_pdu(struct iwl4965_priv *priv, u8 id, u16 len,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800688 const void *data);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800689extern int __must_check iwl4965_send_cmd(struct iwl4965_priv *priv,
690 struct iwl4965_host_cmd *cmd);
691extern unsigned int iwl4965_fill_beacon_frame(struct iwl4965_priv *priv,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800692 struct ieee80211_hdr *hdr,
693 const u8 *dest, int left);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800694extern int iwl4965_rx_queue_update_write_ptr(struct iwl4965_priv *priv,
695 struct iwl4965_rx_queue *q);
696extern int iwl4965_send_statistics_request(struct iwl4965_priv *priv);
697extern void iwl4965_set_decrypted_flag(struct iwl4965_priv *priv, struct sk_buff *skb,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800698 u32 decrypt_res,
699 struct ieee80211_rx_status *stats);
700extern __le16 *ieee80211_get_qos_ctrl(struct ieee80211_hdr *hdr);
701
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800702extern const u8 iwl4965_broadcast_addr[ETH_ALEN];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800703
704/*
705 * Currently used by iwl-3945-rs... look at restructuring so that it doesn't
706 * call this... todo... fix that.
707*/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800708extern u8 iwl4965_sync_station(struct iwl4965_priv *priv, int sta_id,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800709 u16 tx_rate, u8 flags);
710
711/******************************************************************************
712 *
713 * Functions implemented in iwl-[34]*.c which are forward declared here
714 * for use by iwl-base.c
715 *
716 * NOTE: The implementation of these functions are hardware specific
717 * which is why they are in the hardware specific files (vs. iwl-base.c)
718 *
719 * Naming convention --
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800720 * iwl4965_ <-- Its part of iwlwifi (should be changed to iwl4965_)
721 * iwl4965_hw_ <-- Hardware specific (implemented in iwl-XXXX.c by all HW)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800722 * iwlXXXX_ <-- Hardware specific (implemented in iwl-XXXX.c for XXXX)
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800723 * iwl4965_bg_ <-- Called from work queue context
724 * iwl4965_mac_ <-- mac80211 callback
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800725 *
726 ****************************************************************************/
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800727extern void iwl4965_hw_rx_handler_setup(struct iwl4965_priv *priv);
728extern void iwl4965_hw_setup_deferred_work(struct iwl4965_priv *priv);
729extern void iwl4965_hw_cancel_deferred_work(struct iwl4965_priv *priv);
730extern int iwl4965_hw_rxq_stop(struct iwl4965_priv *priv);
731extern int iwl4965_hw_set_hw_setting(struct iwl4965_priv *priv);
732extern int iwl4965_hw_nic_init(struct iwl4965_priv *priv);
733extern int iwl4965_hw_nic_stop_master(struct iwl4965_priv *priv);
734extern void iwl4965_hw_txq_ctx_free(struct iwl4965_priv *priv);
735extern void iwl4965_hw_txq_ctx_stop(struct iwl4965_priv *priv);
736extern int iwl4965_hw_nic_reset(struct iwl4965_priv *priv);
737extern int iwl4965_hw_txq_attach_buf_to_tfd(struct iwl4965_priv *priv, void *tfd,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800738 dma_addr_t addr, u16 len);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800739extern int iwl4965_hw_txq_free_tfd(struct iwl4965_priv *priv, struct iwl4965_tx_queue *txq);
740extern int iwl4965_hw_get_temperature(struct iwl4965_priv *priv);
741extern int iwl4965_hw_tx_queue_init(struct iwl4965_priv *priv,
742 struct iwl4965_tx_queue *txq);
743extern unsigned int iwl4965_hw_get_beacon_cmd(struct iwl4965_priv *priv,
744 struct iwl4965_frame *frame, u8 rate);
745extern int iwl4965_hw_get_rx_read(struct iwl4965_priv *priv);
746extern void iwl4965_hw_build_tx_cmd_rate(struct iwl4965_priv *priv,
747 struct iwl4965_cmd *cmd,
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800748 struct ieee80211_tx_control *ctrl,
749 struct ieee80211_hdr *hdr,
750 int sta_id, int tx_id);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800751extern int iwl4965_hw_reg_send_txpower(struct iwl4965_priv *priv);
752extern int iwl4965_hw_reg_set_txpower(struct iwl4965_priv *priv, s8 power);
753extern void iwl4965_hw_rx_statistics(struct iwl4965_priv *priv,
754 struct iwl4965_rx_mem_buffer *rxb);
755extern void iwl4965_disable_events(struct iwl4965_priv *priv);
756extern int iwl4965_get_temperature(const struct iwl4965_priv *priv);
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800757
758/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800759 * iwl4965_hw_find_station - Find station id for a given BSSID
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800760 * @bssid: MAC address of station ID to find
761 *
762 * NOTE: This should not be hardware specific but the code has
763 * not yet been merged into a single common layer for managing the
764 * station tables.
765 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800766extern u8 iwl4965_hw_find_station(struct iwl4965_priv *priv, const u8 *bssid);
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800767
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800768extern int iwl4965_hw_channel_switch(struct iwl4965_priv *priv, u16 channel);
769extern int iwl4965_tx_queue_reclaim(struct iwl4965_priv *priv, int txq_id, int index);
Christoph Hellwig5d08cd12007-10-25 17:15:50 +0800770
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800771struct iwl4965_priv;
Zhu Yib481de92007-09-25 17:54:57 -0700772struct sta_ht_info;
773
774/*
775 * Forward declare iwl-4965.c functions for iwl-base.c
776 */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800777extern int iwl4965_eeprom_acquire_semaphore(struct iwl4965_priv *priv);
778extern void iwl4965_eeprom_release_semaphore(struct iwl4965_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -0700779
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800780extern int iwl4965_tx_queue_update_wr_ptr(struct iwl4965_priv *priv,
781 struct iwl4965_tx_queue *txq,
Zhu Yib481de92007-09-25 17:54:57 -0700782 u16 byte_cnt);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800783extern void iwl4965_add_station(struct iwl4965_priv *priv, const u8 *addr,
Zhu Yib481de92007-09-25 17:54:57 -0700784 int is_ap);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800785extern void iwl4965_set_rxon_ht(struct iwl4965_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -0700786 struct sta_ht_info *ht_info);
787
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800788extern void iwl4965_set_rxon_chain(struct iwl4965_priv *priv);
789extern int iwl4965_tx_cmd(struct iwl4965_priv *priv, struct iwl4965_cmd *out_cmd,
Zhu Yib481de92007-09-25 17:54:57 -0700790 u8 sta_id, dma_addr_t txcmd_phys,
791 struct ieee80211_hdr *hdr, u8 hdr_len,
792 struct ieee80211_tx_control *ctrl, void *sta_in);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800793extern int iwl4965_alive_notify(struct iwl4965_priv *priv);
794extern void iwl4965_update_rate_scaling(struct iwl4965_priv *priv, u8 mode);
795extern void iwl4965_set_ht_add_station(struct iwl4965_priv *priv, u8 index);
Zhu Yib481de92007-09-25 17:54:57 -0700796
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800797extern void iwl4965_chain_noise_reset(struct iwl4965_priv *priv);
798extern void iwl4965_init_sensitivity(struct iwl4965_priv *priv, u8 flags,
Zhu Yib481de92007-09-25 17:54:57 -0700799 u8 force);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800800extern int iwl4965_set_fat_chan_info(struct iwl4965_priv *priv, int phymode,
Zhu Yib481de92007-09-25 17:54:57 -0700801 u16 channel,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800802 const struct iwl4965_eeprom_channel *eeprom_ch,
Zhu Yib481de92007-09-25 17:54:57 -0700803 u8 fat_extension_channel);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800804extern void iwl4965_rf_kill_ct_config(struct iwl4965_priv *priv);
Zhu Yib481de92007-09-25 17:54:57 -0700805
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800806#ifdef CONFIG_IWL4965_HT
807#ifdef CONFIG_IWL4965_HT_AGG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800808extern int iwl4965_mac_ht_tx_agg_start(struct ieee80211_hw *hw, u8 *da,
Zhu Yib481de92007-09-25 17:54:57 -0700809 u16 tid, u16 *start_seq_num);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800810extern int iwl4965_mac_ht_rx_agg_start(struct ieee80211_hw *hw, u8 *da,
Zhu Yib481de92007-09-25 17:54:57 -0700811 u16 tid, u16 start_seq_num);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800812extern int iwl4965_mac_ht_rx_agg_stop(struct ieee80211_hw *hw, u8 *da,
Zhu Yib481de92007-09-25 17:54:57 -0700813 u16 tid, int generator);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800814extern int iwl4965_mac_ht_tx_agg_stop(struct ieee80211_hw *hw, u8 *da,
Zhu Yib481de92007-09-25 17:54:57 -0700815 u16 tid, int generator);
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800816extern void iwl4965_turn_off_agg(struct iwl4965_priv *priv, u8 tid);
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800817#endif /* CONFIG_IWL4965_HT_AGG */
818#endif /*CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -0700819/* Structures, enum, and defines specific to the 4965 */
820
821#define IWL4965_KW_SIZE 0x1000 /*4k */
822
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800823struct iwl4965_kw {
Zhu Yib481de92007-09-25 17:54:57 -0700824 dma_addr_t dma_addr;
825 void *v_addr;
826 size_t size;
827};
828
829#define TID_QUEUE_CELL_SPACING 50 /*mS */
830#define TID_QUEUE_MAX_SIZE 20
831#define TID_ROUND_VALUE 5 /* mS */
832#define TID_MAX_LOAD_COUNT 8
833
834#define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
835#define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
836
837#define TID_ALL_ENABLED 0x7f
838#define TID_ALL_SPECIFIED 0xff
839#define TID_AGG_TPT_THREHOLD 0x0
840
841#define IWL_CHANNEL_WIDTH_20MHZ 0
842#define IWL_CHANNEL_WIDTH_40MHZ 1
843
844#define IWL_MIMO_PS_STATIC 0
845#define IWL_MIMO_PS_NONE 3
846#define IWL_MIMO_PS_DYNAMIC 1
847#define IWL_MIMO_PS_INVALID 2
848
849#define IWL_OPERATION_MODE_AUTO 0
850#define IWL_OPERATION_MODE_HT_ONLY 1
851#define IWL_OPERATION_MODE_MIXED 2
852#define IWL_OPERATION_MODE_20MHZ 3
853
854#define IWL_EXT_CHANNEL_OFFSET_AUTO 0
855#define IWL_EXT_CHANNEL_OFFSET_ABOVE 1
856#define IWL_EXT_CHANNEL_OFFSET_ 2
857#define IWL_EXT_CHANNEL_OFFSET_BELOW 3
858#define IWL_EXT_CHANNEL_OFFSET_MAX 4
859
860#define NRG_NUM_PREV_STAT_L 20
861#define NUM_RX_CHAINS (3)
862
863#define TX_POWER_IWL_ILLEGAL_VDET -100000
864#define TX_POWER_IWL_ILLEGAL_VOLTAGE -10000
865#define TX_POWER_IWL_CLOSED_LOOP_MIN_POWER 18
866#define TX_POWER_IWL_CLOSED_LOOP_MAX_POWER 34
867#define TX_POWER_IWL_VDET_SLOPE_BELOW_NOMINAL 17
868#define TX_POWER_IWL_VDET_SLOPE_ABOVE_NOMINAL 20
869#define TX_POWER_IWL_NOMINAL_POWER 26
870#define TX_POWER_IWL_CLOSED_LOOP_ITERATION_LIMIT 1
871#define TX_POWER_IWL_VOLTAGE_CODES_PER_03V 7
872#define TX_POWER_IWL_DEGREES_PER_VDET_CODE 11
873#define IWL_TX_POWER_MAX_NUM_PA_MEASUREMENTS 1
874#define IWL_TX_POWER_CCK_COMPENSATION_B_STEP (9)
875#define IWL_TX_POWER_CCK_COMPENSATION_C_STEP (5)
876
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800877struct iwl4965_traffic_load {
Zhu Yib481de92007-09-25 17:54:57 -0700878 unsigned long time_stamp;
879 u32 packet_count[TID_QUEUE_MAX_SIZE];
880 u8 queue_count;
881 u8 head;
882 u32 total;
883};
884
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800885#ifdef CONFIG_IWL4965_HT_AGG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800886struct iwl4965_agg_control {
Zhu Yib481de92007-09-25 17:54:57 -0700887 unsigned long next_retry;
888 u32 wait_for_agg_status;
889 u32 tid_retry;
890 u32 requested_ba;
891 u32 granted_ba;
892 u8 auto_agg;
893 u32 tid_traffic_load_threshold;
894 u32 ba_timeout;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800895 struct iwl4965_traffic_load traffic_load[TID_MAX_LOAD_COUNT];
Zhu Yib481de92007-09-25 17:54:57 -0700896};
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800897#endif /*CONFIG_IWL4965_HT_AGG */
Zhu Yib481de92007-09-25 17:54:57 -0700898
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800899struct iwl4965_lq_mngr {
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +0800900#ifdef CONFIG_IWL4965_HT_AGG
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800901 struct iwl4965_agg_control agg_ctrl;
Zhu Yib481de92007-09-25 17:54:57 -0700902#endif
903 spinlock_t lock;
904 s32 max_window_size;
905 s32 *expected_tpt;
906 u8 *next_higher_rate;
907 u8 *next_lower_rate;
908 unsigned long stamp;
909 unsigned long stamp_last;
910 u32 flush_time;
911 u32 tx_packets;
912 u8 lq_ready;
913};
914
915
916/* Sensitivity and chain noise calibration */
917#define INTERFERENCE_DATA_AVAILABLE __constant_cpu_to_le32(1)
918#define INITIALIZATION_VALUE 0xFFFF
919#define CAL_NUM_OF_BEACONS 20
920#define MAXIMUM_ALLOWED_PATHLOSS 15
921
922/* Param table within SENSITIVITY_CMD */
923#define HD_MIN_ENERGY_CCK_DET_INDEX (0)
924#define HD_MIN_ENERGY_OFDM_DET_INDEX (1)
925#define HD_AUTO_CORR32_X1_TH_ADD_MIN_INDEX (2)
926#define HD_AUTO_CORR32_X1_TH_ADD_MIN_MRC_INDEX (3)
927#define HD_AUTO_CORR40_X4_TH_ADD_MIN_MRC_INDEX (4)
928#define HD_AUTO_CORR32_X4_TH_ADD_MIN_INDEX (5)
929#define HD_AUTO_CORR32_X4_TH_ADD_MIN_MRC_INDEX (6)
930#define HD_BARKER_CORR_TH_ADD_MIN_INDEX (7)
931#define HD_BARKER_CORR_TH_ADD_MIN_MRC_INDEX (8)
932#define HD_AUTO_CORR40_X4_TH_ADD_MIN_INDEX (9)
933#define HD_OFDM_ENERGY_TH_IN_INDEX (10)
934
935#define SENSITIVITY_CMD_CONTROL_DEFAULT_TABLE __constant_cpu_to_le16(0)
936#define SENSITIVITY_CMD_CONTROL_WORK_TABLE __constant_cpu_to_le16(1)
937
938#define CHAIN_NOISE_MAX_DELTA_GAIN_CODE 3
939
940#define MAX_FA_OFDM 50
941#define MIN_FA_OFDM 5
942#define MAX_FA_CCK 50
943#define MIN_FA_CCK 5
944
945#define NRG_MIN_CCK 97
946#define NRG_MAX_CCK 0
947
948#define AUTO_CORR_MIN_OFDM 85
949#define AUTO_CORR_MIN_OFDM_MRC 170
950#define AUTO_CORR_MIN_OFDM_X1 105
951#define AUTO_CORR_MIN_OFDM_MRC_X1 220
952#define AUTO_CORR_MAX_OFDM 120
953#define AUTO_CORR_MAX_OFDM_MRC 210
954#define AUTO_CORR_MAX_OFDM_X1 140
955#define AUTO_CORR_MAX_OFDM_MRC_X1 270
956#define AUTO_CORR_STEP_OFDM 1
957
958#define AUTO_CORR_MIN_CCK (125)
959#define AUTO_CORR_MAX_CCK (200)
960#define AUTO_CORR_MIN_CCK_MRC 200
961#define AUTO_CORR_MAX_CCK_MRC 400
962#define AUTO_CORR_STEP_CCK 3
963#define AUTO_CORR_MAX_TH_CCK 160
964
965#define NRG_ALG 0
966#define AUTO_CORR_ALG 1
967#define NRG_DIFF 2
968#define NRG_STEP_CCK 2
969#define NRG_MARGIN 8
970#define MAX_NUMBER_CCK_NO_FA 100
971
972#define AUTO_CORR_CCK_MIN_VAL_DEF (125)
973
974#define CHAIN_A 0
975#define CHAIN_B 1
976#define CHAIN_C 2
977#define CHAIN_NOISE_DELTA_GAIN_INIT_VAL 4
978#define ALL_BAND_FILTER 0xFF00
979#define IN_BAND_FILTER 0xFF
980#define MIN_AVERAGE_NOISE_MAX_VALUE 0xFFFFFFFF
981
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800982enum iwl4965_false_alarm_state {
Zhu Yib481de92007-09-25 17:54:57 -0700983 IWL_FA_TOO_MANY = 0,
984 IWL_FA_TOO_FEW = 1,
985 IWL_FA_GOOD_RANGE = 2,
986};
987
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800988enum iwl4965_chain_noise_state {
Zhu Yib481de92007-09-25 17:54:57 -0700989 IWL_CHAIN_NOISE_ALIVE = 0, /* must be 0 */
990 IWL_CHAIN_NOISE_ACCUMULATE = 1,
991 IWL_CHAIN_NOISE_CALIBRATED = 2,
992};
993
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800994enum iwl4965_sensitivity_state {
Zhu Yib481de92007-09-25 17:54:57 -0700995 IWL_SENS_CALIB_ALLOWED = 0,
996 IWL_SENS_CALIB_NEED_REINIT = 1,
997};
998
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800999enum iwl4965_calib_enabled_state {
Zhu Yib481de92007-09-25 17:54:57 -07001000 IWL_CALIB_DISABLED = 0, /* must be 0 */
1001 IWL_CALIB_ENABLED = 1,
1002};
1003
1004struct statistics_general_data {
1005 u32 beacon_silence_rssi_a;
1006 u32 beacon_silence_rssi_b;
1007 u32 beacon_silence_rssi_c;
1008 u32 beacon_energy_a;
1009 u32 beacon_energy_b;
1010 u32 beacon_energy_c;
1011};
1012
1013/* Sensitivity calib data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001014struct iwl4965_sensitivity_data {
Zhu Yib481de92007-09-25 17:54:57 -07001015 u32 auto_corr_ofdm;
1016 u32 auto_corr_ofdm_mrc;
1017 u32 auto_corr_ofdm_x1;
1018 u32 auto_corr_ofdm_mrc_x1;
1019 u32 auto_corr_cck;
1020 u32 auto_corr_cck_mrc;
1021
1022 u32 last_bad_plcp_cnt_ofdm;
1023 u32 last_fa_cnt_ofdm;
1024 u32 last_bad_plcp_cnt_cck;
1025 u32 last_fa_cnt_cck;
1026
1027 u32 nrg_curr_state;
1028 u32 nrg_prev_state;
1029 u32 nrg_value[10];
1030 u8 nrg_silence_rssi[NRG_NUM_PREV_STAT_L];
1031 u32 nrg_silence_ref;
1032 u32 nrg_energy_idx;
1033 u32 nrg_silence_idx;
1034 u32 nrg_th_cck;
1035 s32 nrg_auto_corr_silence_diff;
1036 u32 num_in_cck_no_fa;
1037 u32 nrg_th_ofdm;
1038
1039 u8 state;
1040};
1041
1042/* Chain noise (differential Rx gain) calib data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001043struct iwl4965_chain_noise_data {
Zhu Yib481de92007-09-25 17:54:57 -07001044 u8 state;
1045 u16 beacon_count;
1046 u32 chain_noise_a;
1047 u32 chain_noise_b;
1048 u32 chain_noise_c;
1049 u32 chain_signal_a;
1050 u32 chain_signal_b;
1051 u32 chain_signal_c;
1052 u8 disconn_array[NUM_RX_CHAINS];
1053 u8 delta_gain_code[NUM_RX_CHAINS];
1054 u8 radio_write;
1055};
1056
1057/* IWL4965 */
1058#define RATE_MCS_CODE_MSK 0x7
1059#define RATE_MCS_MIMO_POS 3
1060#define RATE_MCS_MIMO_MSK 0x8
1061#define RATE_MCS_HT_DUP_POS 5
1062#define RATE_MCS_HT_DUP_MSK 0x20
1063#define RATE_MCS_FLAGS_POS 8
1064#define RATE_MCS_HT_POS 8
1065#define RATE_MCS_HT_MSK 0x100
1066#define RATE_MCS_CCK_POS 9
1067#define RATE_MCS_CCK_MSK 0x200
1068#define RATE_MCS_GF_POS 10
1069#define RATE_MCS_GF_MSK 0x400
1070
1071#define RATE_MCS_FAT_POS 11
1072#define RATE_MCS_FAT_MSK 0x800
1073#define RATE_MCS_DUP_POS 12
1074#define RATE_MCS_DUP_MSK 0x1000
1075#define RATE_MCS_SGI_POS 13
1076#define RATE_MCS_SGI_MSK 0x2000
1077
1078#define EEPROM_SEM_TIMEOUT 10
1079#define EEPROM_SEM_RETRY_LIMIT 1000
1080
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001081
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001082#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001083
1084enum {
1085 MEASUREMENT_READY = (1 << 0),
1086 MEASUREMENT_ACTIVE = (1 << 1),
1087};
1088
1089#endif
1090
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001091struct iwl4965_priv {
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001092
1093 /* ieee device used by generic ieee processing code */
1094 struct ieee80211_hw *hw;
1095 struct ieee80211_channel *ieee_channels;
1096 struct ieee80211_rate *ieee_rates;
1097
1098 /* temporary frame storage list */
1099 struct list_head free_frames;
1100 int frames_count;
1101
1102 u8 phymode;
1103 int alloc_rxb_skb;
1104
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001105 void (*rx_handlers[REPLY_MAX])(struct iwl4965_priv *priv,
1106 struct iwl4965_rx_mem_buffer *rxb);
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001107
1108 const struct ieee80211_hw_mode *modes;
1109
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001110#ifdef CONFIG_IWL4965_SPECTRUM_MEASUREMENT
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001111 /* spectrum measurement report caching */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001112 struct iwl4965_spectrum_notification measure_report;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001113 u8 measurement_status;
1114#endif
1115 /* ucode beacon time */
1116 u32 ucode_beacon_time;
1117
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001118 /* we allocate array of iwl4965_channel_info for NIC's valid channels.
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001119 * Access via channel # using indirect index array */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001120 struct iwl4965_channel_info *channel_info; /* channel info array */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001121 u8 channel_count; /* # of channels */
1122
1123 /* each calibration channel group in the EEPROM has a derived
1124 * clip setting for each rate. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001125 const struct iwl4965_clip_group clip_groups[5];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001126
1127 /* thermal calibration */
1128 s32 temperature; /* degrees Kelvin */
1129 s32 last_temperature;
1130
1131 /* Scan related variables */
1132 unsigned long last_scan_jiffies;
1133 unsigned long scan_start;
1134 unsigned long scan_pass_start;
1135 unsigned long scan_start_tsf;
1136 int scan_bands;
1137 int one_direct_scan;
1138 u8 direct_ssid_len;
1139 u8 direct_ssid[IW_ESSID_MAX_SIZE];
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001140 struct iwl4965_scan_cmd *scan;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001141 u8 only_active_channel;
1142
1143 /* spinlock */
1144 spinlock_t lock; /* protect general shared data */
1145 spinlock_t hcmd_lock; /* protect hcmd */
1146 struct mutex mutex;
1147
1148 /* basic pci-network driver stuff */
1149 struct pci_dev *pci_dev;
1150
1151 /* pci hardware address support */
1152 void __iomem *hw_base;
1153
1154 /* uCode images, save to reload in case of failure */
1155 struct fw_desc ucode_code; /* runtime inst */
1156 struct fw_desc ucode_data; /* runtime data original */
1157 struct fw_desc ucode_data_backup; /* runtime data save/restore */
1158 struct fw_desc ucode_init; /* initialization inst */
1159 struct fw_desc ucode_init_data; /* initialization data */
1160 struct fw_desc ucode_boot; /* bootstrap inst */
1161
1162
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001163 struct iwl4965_rxon_time_cmd rxon_timing;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001164
1165 /* We declare this const so it can only be
1166 * changed via explicit cast within the
1167 * routines that actually update the physical
1168 * hardware */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001169 const struct iwl4965_rxon_cmd active_rxon;
1170 struct iwl4965_rxon_cmd staging_rxon;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001171
1172 int error_recovering;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001173 struct iwl4965_rxon_cmd recovery_rxon;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001174
1175 /* 1st responses from initialize and runtime uCode images.
1176 * 4965's initialize alive response contains some calibration data. */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001177 struct iwl4965_init_alive_resp card_alive_init;
1178 struct iwl4965_alive_resp card_alive;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001179
1180#ifdef LED
1181 /* LED related variables */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001182 struct iwl4965_activity_blink activity;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001183 unsigned long led_packets;
1184 int led_state;
1185#endif
1186
1187 u16 active_rate;
1188 u16 active_rate_basic;
1189
1190 u8 call_post_assoc_from_beacon;
1191 u8 assoc_station_added;
1192 u8 use_ant_b_for_management_frame; /* Tx antenna selection */
Ben Cahillbc472792007-11-29 11:09:49 +08001193
1194 /* High Throughput (HT) variables */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001195 u8 is_dup;
1196 u8 is_ht_enabled;
Ben Cahillbc472792007-11-29 11:09:49 +08001197 u8 channel_width; /* 0=20MHZ, 1=40MHZ supported */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001198 u8 current_channel_width;
1199 u8 valid_antenna; /* Bit mask of antennas actually connected */
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001200#ifdef CONFIG_IWL4965_SENSITIVITY
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001201 struct iwl4965_sensitivity_data sensitivity_data;
1202 struct iwl4965_chain_noise_data chain_noise_data;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001203 u8 start_calib;
1204 __le16 sensitivity_tbl[HD_TABLE_SIZE];
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001205#endif /*CONFIG_IWL4965_SENSITIVITY*/
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001206
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001207#ifdef CONFIG_IWL4965_HT
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001208 struct sta_ht_info current_assoc_ht;
1209#endif
1210 u8 active_rate_ht[2];
1211 u8 last_phy_res[100];
1212
1213 /* Rate scaling data */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001214 struct iwl4965_lq_mngr lq_mngr;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001215
1216 /* Rate scaling data */
1217 s8 data_retry_limit;
1218 u8 retry_rate;
1219
1220 wait_queue_head_t wait_command_queue;
1221
1222 int activity_timer_active;
1223
1224 /* Rx and Tx DMA processing queues */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001225 struct iwl4965_rx_queue rxq;
1226 struct iwl4965_tx_queue txq[IWL_MAX_NUM_QUEUES];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001227 unsigned long txq_ctx_active_msk;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001228 struct iwl4965_kw kw; /* keep warm address */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001229 u32 scd_base_addr; /* scheduler sram base address */
1230
1231 unsigned long status;
1232 u32 config;
1233
1234 int last_rx_rssi; /* From Rx packet statisitics */
1235 int last_rx_noise; /* From beacon statistics */
1236
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001237 struct iwl4965_power_mgr power_data;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001238
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001239 struct iwl4965_notif_statistics statistics;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001240 unsigned long last_statistics_time;
1241
1242 /* context information */
1243 u8 essid[IW_ESSID_MAX_SIZE];
1244 u8 essid_len;
1245 u16 rates_mask;
1246
1247 u32 power_mode;
1248 u32 antenna;
1249 u8 bssid[ETH_ALEN];
1250 u16 rts_threshold;
1251 u8 mac_addr[ETH_ALEN];
1252
1253 /*station table variables */
1254 spinlock_t sta_lock;
1255 int num_stations;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001256 struct iwl4965_station_entry stations[IWL_STATION_COUNT];
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001257
1258 /* Indication if ieee80211_ops->open has been called */
1259 int is_open;
1260
1261 u8 mac80211_registered;
1262 int is_abg;
1263
1264 u32 notif_missed_beacons;
1265
1266 /* Rx'd packet timing information */
1267 u32 last_beacon_time;
1268 u64 last_tsf;
1269
1270 /* Duplicate packet detection */
1271 u16 last_seq_num;
1272 u16 last_frag_num;
1273 unsigned long last_packet_time;
Ben Cahillbc472792007-11-29 11:09:49 +08001274
1275 /* Hash table for finding stations in IBSS network */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001276 struct list_head ibss_mac_hash[IWL_IBSS_MAC_HASH_SIZE];
1277
1278 /* eeprom */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001279 struct iwl4965_eeprom eeprom;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001280
1281 int iw_mode;
1282
1283 struct sk_buff *ibss_beacon;
1284
1285 /* Last Rx'd beacon timestamp */
1286 u32 timestamp0;
1287 u32 timestamp1;
1288 u16 beacon_int;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001289 struct iwl4965_driver_hw_info hw_setting;
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001290 int interface_id;
1291
1292 /* Current association information needed to configure the
1293 * hardware */
1294 u16 assoc_id;
1295 u16 assoc_capability;
1296 u8 ps_mode;
1297
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001298#ifdef CONFIG_IWL4965_QOS
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001299 struct iwl4965_qos_info qos_data;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001300#endif /*CONFIG_IWL4965_QOS */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001301
1302 struct workqueue_struct *workqueue;
1303
1304 struct work_struct up;
1305 struct work_struct restart;
1306 struct work_struct calibrated_work;
1307 struct work_struct scan_completed;
1308 struct work_struct rx_replenish;
1309 struct work_struct rf_kill;
1310 struct work_struct abort_scan;
1311 struct work_struct update_link_led;
1312 struct work_struct auth_work;
1313 struct work_struct report_work;
1314 struct work_struct request_scan;
1315 struct work_struct beacon_update;
1316
1317 struct tasklet_struct irq_tasklet;
1318
1319 struct delayed_work init_alive_start;
1320 struct delayed_work alive_start;
1321 struct delayed_work activity_timer;
1322 struct delayed_work thermal_periodic;
1323 struct delayed_work gather_stats;
1324 struct delayed_work scan_check;
1325 struct delayed_work post_associate;
1326
1327#define IWL_DEFAULT_TX_POWER 0x0F
1328 s8 user_txpower_limit;
1329 s8 max_channel_txpower_limit;
1330
1331#ifdef CONFIG_PM
1332 u32 pm_state[16];
1333#endif
1334
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001335#ifdef CONFIG_IWL4965_DEBUG
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001336 /* debugging info */
1337 u32 framecnt_to_us;
1338 atomic_t restrict_refcnt;
1339#endif
1340
1341 struct work_struct txpower_work;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001342#ifdef CONFIG_IWL4965_SENSITIVITY
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001343 struct work_struct sensitivity_work;
1344#endif
1345 struct work_struct statistics_work;
1346 struct timer_list statistics_periodic;
1347
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08001348#ifdef CONFIG_IWL4965_HT_AGG
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001349 struct work_struct agg_work;
1350#endif
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001351}; /*iwl4965_priv */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001352
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001353static inline int iwl4965_is_associated(struct iwl4965_priv *priv)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001354{
1355 return (priv->active_rxon.filter_flags & RXON_FILTER_ASSOC_MSK) ? 1 : 0;
1356}
1357
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001358static inline int is_channel_valid(const struct iwl4965_channel_info *ch_info)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001359{
1360 if (ch_info == NULL)
1361 return 0;
1362 return (ch_info->flags & EEPROM_CHANNEL_VALID) ? 1 : 0;
1363}
1364
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001365static inline int is_channel_narrow(const struct iwl4965_channel_info *ch_info)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001366{
1367 return (ch_info->flags & EEPROM_CHANNEL_NARROW) ? 1 : 0;
1368}
1369
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001370static inline int is_channel_radar(const struct iwl4965_channel_info *ch_info)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001371{
1372 return (ch_info->flags & EEPROM_CHANNEL_RADAR) ? 1 : 0;
1373}
1374
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001375static inline u8 is_channel_a_band(const struct iwl4965_channel_info *ch_info)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001376{
1377 return ch_info->phymode == MODE_IEEE80211A;
1378}
1379
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001380static inline u8 is_channel_bg_band(const struct iwl4965_channel_info *ch_info)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001381{
1382 return ((ch_info->phymode == MODE_IEEE80211B) ||
1383 (ch_info->phymode == MODE_IEEE80211G));
1384}
1385
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001386static inline int is_channel_passive(const struct iwl4965_channel_info *ch)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001387{
1388 return (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) ? 1 : 0;
1389}
1390
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001391static inline int is_channel_ibss(const struct iwl4965_channel_info *ch)
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001392{
1393 return ((ch->flags & EEPROM_CHANNEL_IBSS)) ? 1 : 0;
1394}
1395
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001396extern const struct iwl4965_channel_info *iwl4965_get_channel_info(
1397 const struct iwl4965_priv *priv, int phymode, u16 channel);
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001398
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001399/* Requires full declaration of iwl4965_priv before including */
Christoph Hellwig5d08cd12007-10-25 17:15:50 +08001400#include "iwl-4965-io.h"
1401
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001402#endif /* __iwl4965_4965_h__ */