blob: 37bc40636c1e32d182a0e0e16b8f78c2cd860ca7 [file] [log] [blame]
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001/******************************************************************************
2 *
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02003 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08004 *
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02005 * 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
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08007 * published by the Free Software Foundation.
8 *
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02009 * 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.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080013 *
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020014 * 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
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080017 *
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020018 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080020 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080025 *****************************************************************************/
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020026#ifndef __il_core_h__
27#define __il_core_h__
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080028
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020029#include <linux/interrupt.h>
Stanislaw Gruszkae7392362011-11-15 14:45:59 +010030#include <linux/pci.h> /* for struct pci_device_id */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020031#include <linux/kernel.h>
32#include <linux/leds.h>
33#include <linux/wait.h>
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +010034#include <linux/io.h>
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +020035#include <net/mac80211.h>
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020036#include <net/ieee80211_radiotap.h>
37
Stanislaw Gruszka99412002011-08-31 13:53:04 +020038#include "commands.h"
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020039#include "csr.h"
Stanislaw Gruszkae8c39d42011-08-31 14:09:39 +020040#include "prph.h"
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020041
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +020042struct il_host_cmd;
43struct il_cmd;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020044struct il_tx_queue;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -080045
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +020046#define IL_ERR(f, a...) dev_err(&il->pci_dev->dev, f, ## a)
47#define IL_WARN(f, a...) dev_warn(&il->pci_dev->dev, f, ## a)
48#define IL_INFO(f, a...) dev_info(&il->pci_dev->dev, f, ## a)
49
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020050#define RX_QUEUE_SIZE 256
51#define RX_QUEUE_MASK 255
52#define RX_QUEUE_SIZE_LOG 8
53
54/*
55 * RX related structures and functions
56 */
57#define RX_FREE_BUFFERS 64
58#define RX_LOW_WATERMARK 8
59
60#define U32_PAD(n) ((4-(n))&0x3)
61
62/* CT-KILL constants */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +010063#define CT_KILL_THRESHOLD_LEGACY 110 /* in Celsius */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +020064
65/* Default noise level to report when noise measurement is not available.
66 * This may be because we're:
67 * 1) Not associated (4965, no beacon stats being sent to driver)
68 * 2) Scanning (noise measurement does not apply to associated channel)
69 * 3) Receiving CCK (3945 delivers noise info only for OFDM frames)
70 * Use default noise value of -127 ... this is below the range of measurable
71 * Rx dBm for either 3945 or 4965, so it can indicate "unmeasurable" to user.
72 * Also, -127 works better than 0 when averaging frames with/without
73 * noise info (e.g. averaging might be done in app); measured dBm values are
74 * always negative ... using a negative value as the default keeps all
75 * averages within an s8's (used in some apps) range of negative values. */
76#define IL_NOISE_MEAS_NOT_AVAILABLE (-127)
77
78/*
79 * RTS threshold here is total size [2347] minus 4 FCS bytes
80 * Per spec:
81 * a value of 0 means RTS on all data/management packets
82 * a value > max MSDU size means no RTS
83 * else RTS for data/management frames where MPDU is larger
84 * than RTS value.
85 */
86#define DEFAULT_RTS_THRESHOLD 2347U
87#define MIN_RTS_THRESHOLD 0U
88#define MAX_RTS_THRESHOLD 2347U
89#define MAX_MSDU_SIZE 2304U
90#define MAX_MPDU_SIZE 2346U
91#define DEFAULT_BEACON_INTERVAL 100U
92#define DEFAULT_SHORT_RETRY_LIMIT 7U
93#define DEFAULT_LONG_RETRY_LIMIT 4U
94
95struct il_rx_buf {
96 dma_addr_t page_dma;
97 struct page *page;
98 struct list_head list;
99};
100
101#define rxb_addr(r) page_address(r->page)
102
103/* defined below */
104struct il_device_cmd;
105
106struct il_cmd_meta {
107 /* only for SYNC commands, iff the reply skb is wanted */
108 struct il_host_cmd *source;
109 /*
110 * only for ASYNC commands
111 * (which is somewhat stupid -- look at common.c for instance
112 * which duplicates a bunch of code because the callback isn't
113 * invoked for SYNC commands, if it were and its result passed
114 * through it would be simpler...)
115 */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100116 void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
117 struct il_rx_pkt *pkt);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200118
119 /* The CMD_SIZE_HUGE flag bit indicates that the command
120 * structure is stored at the end of the shared queue memory. */
121 u32 flags;
122
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100123 DEFINE_DMA_UNMAP_ADDR(mapping);
124 DEFINE_DMA_UNMAP_LEN(len);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200125};
126
127/*
128 * Generic queue structure
129 *
130 * Contains common data for Rx and Tx queues
131 */
132struct il_queue {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100133 int n_bd; /* number of BDs in this queue */
134 int write_ptr; /* 1-st empty entry (idx) host_w */
135 int read_ptr; /* last used entry (idx) host_r */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200136 /* use for monitoring and recovering the stuck queue */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100137 dma_addr_t dma_addr; /* physical addr for BD's */
138 int n_win; /* safe queue win */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200139 u32 id;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100140 int low_mark; /* low watermark, resume queue if free
141 * space more than this */
142 int high_mark; /* high watermark, stop queue if free
143 * space less than this */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200144};
145
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200146/**
147 * struct il_tx_queue - Tx Queue for DMA
148 * @q: generic Rx/Tx queue descriptor
149 * @bd: base of circular buffer of TFDs
150 * @cmd: array of command/TX buffer pointers
151 * @meta: array of meta data for each command/tx buffer
152 * @dma_addr_cmd: physical address of cmd/tx buffer array
Stanislaw Gruszka00ea99e2012-02-03 17:32:00 +0100153 * @skbs: array of per-TFD socket buffer pointers
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200154 * @time_stamp: time (in jiffies) of last read_ptr change
155 * @need_update: indicates need to update read/write idx
156 * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
157 *
158 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
159 * descriptors) and required locking structures.
160 */
161#define TFD_TX_CMD_SLOTS 256
162#define TFD_CMD_SLOTS 32
163
164struct il_tx_queue {
165 struct il_queue q;
166 void *tfds;
167 struct il_device_cmd **cmd;
168 struct il_cmd_meta *meta;
Stanislaw Gruszka00ea99e2012-02-03 17:32:00 +0100169 struct sk_buff **skbs;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200170 unsigned long time_stamp;
171 u8 need_update;
172 u8 sched_retry;
173 u8 active;
174 u8 swq_id;
175};
176
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200177/*
178 * EEPROM access time values:
179 *
180 * Driver initiates EEPROM read by writing byte address << 1 to CSR_EEPROM_REG.
181 * Driver then polls CSR_EEPROM_REG for CSR_EEPROM_REG_READ_VALID_MSK (0x1).
182 * When polling, wait 10 uSec between polling loops, up to a maximum 5000 uSec.
183 * Driver reads 16-bit value from bits 31-16 of CSR_EEPROM_REG.
184 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100185#define IL_EEPROM_ACCESS_TIMEOUT 5000 /* uSec */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200186
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100187#define IL_EEPROM_SEM_TIMEOUT 10 /* microseconds */
188#define IL_EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200189
190/*
191 * Regulatory channel usage flags in EEPROM struct il4965_eeprom_channel.flags.
192 *
193 * IBSS and/or AP operation is allowed *only* on those channels with
194 * (VALID && IBSS && ACTIVE && !RADAR). This restriction is in place because
195 * RADAR detection is not supported by the 4965 driver, but is a
196 * requirement for establishing a new network for legal operation on channels
197 * requiring RADAR detection or restricting ACTIVE scanning.
198 *
199 * NOTE: "WIDE" flag does not indicate anything about "HT40" 40 MHz channels.
200 * It only indicates that 20 MHz channel use is supported; HT40 channel
201 * usage is indicated by a separate set of regulatory flags for each
202 * HT40 channel pair.
203 *
204 * NOTE: Using a channel inappropriately will result in a uCode error!
205 */
206#define IL_NUM_TX_CALIB_GROUPS 5
207enum {
208 EEPROM_CHANNEL_VALID = (1 << 0), /* usable for this SKU/geo */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100209 EEPROM_CHANNEL_IBSS = (1 << 1), /* usable as an IBSS channel */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200210 /* Bit 2 Reserved */
211 EEPROM_CHANNEL_ACTIVE = (1 << 3), /* active scanning allowed */
212 EEPROM_CHANNEL_RADAR = (1 << 4), /* radar detection required */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100213 EEPROM_CHANNEL_WIDE = (1 << 5), /* 20 MHz channel okay */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200214 /* Bit 6 Reserved (was Narrow Channel) */
215 EEPROM_CHANNEL_DFS = (1 << 7), /* dynamic freq selection candidate */
216};
217
218/* SKU Capabilities */
219/* 3945 only */
220#define EEPROM_SKU_CAP_SW_RF_KILL_ENABLE (1 << 0)
221#define EEPROM_SKU_CAP_HW_RF_KILL_ENABLE (1 << 1)
222
223/* *regulatory* channel data format in eeprom, one for each channel.
224 * There are separate entries for HT40 (40 MHz) vs. normal (20 MHz) channels. */
225struct il_eeprom_channel {
226 u8 flags; /* EEPROM_CHANNEL_* flags copied from EEPROM */
227 s8 max_power_avg; /* max power (dBm) on this chnl, limit 31 */
228} __packed;
229
230/* 3945 Specific */
231#define EEPROM_3945_EEPROM_VERSION (0x2f)
232
233/* 4965 has two radio transmitters (and 3 radio receivers) */
234#define EEPROM_TX_POWER_TX_CHAINS (2)
235
236/* 4965 has room for up to 8 sets of txpower calibration data */
237#define EEPROM_TX_POWER_BANDS (8)
238
239/* 4965 factory calibration measures txpower gain settings for
240 * each of 3 target output levels */
241#define EEPROM_TX_POWER_MEASUREMENTS (3)
242
243/* 4965 Specific */
244/* 4965 driver does not work with txpower calibration version < 5 */
245#define EEPROM_4965_TX_POWER_VERSION (5)
246#define EEPROM_4965_EEPROM_VERSION (0x2f)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100247#define EEPROM_4965_CALIB_VERSION_OFFSET (2*0xB6) /* 2 bytes */
248#define EEPROM_4965_CALIB_TXPOWER_OFFSET (2*0xE8) /* 48 bytes */
249#define EEPROM_4965_BOARD_REVISION (2*0x4F) /* 2 bytes */
250#define EEPROM_4965_BOARD_PBA (2*0x56+1) /* 9 bytes */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200251
252/* 2.4 GHz */
253extern const u8 il_eeprom_band_1[14];
254
255/*
256 * factory calibration data for one txpower level, on one channel,
257 * measured on one of the 2 tx chains (radio transmitter and associated
258 * antenna). EEPROM contains:
259 *
260 * 1) Temperature (degrees Celsius) of device when measurement was made.
261 *
262 * 2) Gain table idx used to achieve the target measurement power.
263 * This refers to the "well-known" gain tables (see 4965.h).
264 *
265 * 3) Actual measured output power, in half-dBm ("34" = 17 dBm).
266 *
267 * 4) RF power amplifier detector level measurement (not used).
268 */
269struct il_eeprom_calib_measure {
270 u8 temperature; /* Device temperature (Celsius) */
271 u8 gain_idx; /* Index into gain table */
272 u8 actual_pow; /* Measured RF output power, half-dBm */
273 s8 pa_det; /* Power amp detector level (not used) */
274} __packed;
275
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200276/*
277 * measurement set for one channel. EEPROM contains:
278 *
279 * 1) Channel number measured
280 *
281 * 2) Measurements for each of 3 power levels for each of 2 radio transmitters
282 * (a.k.a. "tx chains") (6 measurements altogether)
283 */
284struct il_eeprom_calib_ch_info {
285 u8 ch_num;
286 struct il_eeprom_calib_measure
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100287 measurements[EEPROM_TX_POWER_TX_CHAINS]
288 [EEPROM_TX_POWER_MEASUREMENTS];
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200289} __packed;
290
291/*
292 * txpower subband info.
293 *
294 * For each frequency subband, EEPROM contains the following:
295 *
296 * 1) First and last channels within range of the subband. "0" values
297 * indicate that this sample set is not being used.
298 *
299 * 2) Sample measurement sets for 2 channels close to the range endpoints.
300 */
301struct il_eeprom_calib_subband_info {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100302 u8 ch_from; /* channel number of lowest channel in subband */
303 u8 ch_to; /* channel number of highest channel in subband */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200304 struct il_eeprom_calib_ch_info ch1;
305 struct il_eeprom_calib_ch_info ch2;
306} __packed;
307
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200308/*
309 * txpower calibration info. EEPROM contains:
310 *
311 * 1) Factory-measured saturation power levels (maximum levels at which
312 * tx power amplifier can output a signal without too much distortion).
313 * There is one level for 2.4 GHz band and one for 5 GHz band. These
314 * values apply to all channels within each of the bands.
315 *
316 * 2) Factory-measured power supply voltage level. This is assumed to be
317 * constant (i.e. same value applies to all channels/bands) while the
318 * factory measurements are being made.
319 *
320 * 3) Up to 8 sets of factory-measured txpower calibration values.
321 * These are for different frequency ranges, since txpower gain
322 * characteristics of the analog radio circuitry vary with frequency.
323 *
324 * Not all sets need to be filled with data;
325 * struct il_eeprom_calib_subband_info contains range of channels
326 * (0 if unused) for each set of data.
327 */
328struct il_eeprom_calib_info {
329 u8 saturation_power24; /* half-dBm (e.g. "34" = 17 dBm) */
330 u8 saturation_power52; /* half-dBm */
331 __le16 voltage; /* signed */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100332 struct il_eeprom_calib_subband_info band_info[EEPROM_TX_POWER_BANDS];
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200333} __packed;
334
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200335/* General */
336#define EEPROM_DEVICE_ID (2*0x08) /* 2 bytes */
337#define EEPROM_MAC_ADDRESS (2*0x15) /* 6 bytes */
338#define EEPROM_BOARD_REVISION (2*0x35) /* 2 bytes */
339#define EEPROM_BOARD_PBA_NUMBER (2*0x3B+1) /* 9 bytes */
340#define EEPROM_VERSION (2*0x44) /* 2 bytes */
341#define EEPROM_SKU_CAP (2*0x45) /* 2 bytes */
342#define EEPROM_OEM_MODE (2*0x46) /* 2 bytes */
343#define EEPROM_WOWLAN_MODE (2*0x47) /* 2 bytes */
344#define EEPROM_RADIO_CONFIG (2*0x48) /* 2 bytes */
345#define EEPROM_NUM_MAC_ADDRESS (2*0x4C) /* 2 bytes */
346
347/* The following masks are to be applied on EEPROM_RADIO_CONFIG */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100348#define EEPROM_RF_CFG_TYPE_MSK(x) (x & 0x3) /* bits 0-1 */
349#define EEPROM_RF_CFG_STEP_MSK(x) ((x >> 2) & 0x3) /* bits 2-3 */
350#define EEPROM_RF_CFG_DASH_MSK(x) ((x >> 4) & 0x3) /* bits 4-5 */
351#define EEPROM_RF_CFG_PNUM_MSK(x) ((x >> 6) & 0x3) /* bits 6-7 */
352#define EEPROM_RF_CFG_TX_ANT_MSK(x) ((x >> 8) & 0xF) /* bits 8-11 */
353#define EEPROM_RF_CFG_RX_ANT_MSK(x) ((x >> 12) & 0xF) /* bits 12-15 */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200354
355#define EEPROM_3945_RF_CFG_TYPE_MAX 0x0
356#define EEPROM_4965_RF_CFG_TYPE_MAX 0x1
357
358/*
359 * Per-channel regulatory data.
360 *
361 * Each channel that *might* be supported by iwl has a fixed location
362 * in EEPROM containing EEPROM_CHANNEL_* usage flags (LSB) and max regulatory
363 * txpower (MSB).
364 *
365 * Entries immediately below are for 20 MHz channel width. HT40 (40 MHz)
366 * channels (only for 4965, not supported by 3945) appear later in the EEPROM.
367 *
368 * 2.4 GHz channels 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
369 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100370#define EEPROM_REGULATORY_SKU_ID (2*0x60) /* 4 bytes */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200371#define EEPROM_REGULATORY_BAND_1 (2*0x62) /* 2 bytes */
372#define EEPROM_REGULATORY_BAND_1_CHANNELS (2*0x63) /* 28 bytes */
373
374/*
375 * 4.9 GHz channels 183, 184, 185, 187, 188, 189, 192, 196,
376 * 5.0 GHz channels 7, 8, 11, 12, 16
377 * (4915-5080MHz) (none of these is ever supported)
378 */
379#define EEPROM_REGULATORY_BAND_2 (2*0x71) /* 2 bytes */
380#define EEPROM_REGULATORY_BAND_2_CHANNELS (2*0x72) /* 26 bytes */
381
382/*
383 * 5.2 GHz channels 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
384 * (5170-5320MHz)
385 */
386#define EEPROM_REGULATORY_BAND_3 (2*0x7F) /* 2 bytes */
387#define EEPROM_REGULATORY_BAND_3_CHANNELS (2*0x80) /* 24 bytes */
388
389/*
390 * 5.5 GHz channels 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
391 * (5500-5700MHz)
392 */
393#define EEPROM_REGULATORY_BAND_4 (2*0x8C) /* 2 bytes */
394#define EEPROM_REGULATORY_BAND_4_CHANNELS (2*0x8D) /* 22 bytes */
395
396/*
397 * 5.7 GHz channels 145, 149, 153, 157, 161, 165
398 * (5725-5825MHz)
399 */
400#define EEPROM_REGULATORY_BAND_5 (2*0x98) /* 2 bytes */
401#define EEPROM_REGULATORY_BAND_5_CHANNELS (2*0x99) /* 12 bytes */
402
403/*
404 * 2.4 GHz HT40 channels 1 (5), 2 (6), 3 (7), 4 (8), 5 (9), 6 (10), 7 (11)
405 *
406 * The channel listed is the center of the lower 20 MHz half of the channel.
407 * The overall center frequency is actually 2 channels (10 MHz) above that,
408 * and the upper half of each HT40 channel is centered 4 channels (20 MHz) away
409 * from the lower half; e.g. the upper half of HT40 channel 1 is channel 5,
410 * and the overall HT40 channel width centers on channel 3.
411 *
412 * NOTE: The RXON command uses 20 MHz channel numbers to specify the
413 * control channel to which to tune. RXON also specifies whether the
414 * control channel is the upper or lower half of a HT40 channel.
415 *
416 * NOTE: 4965 does not support HT40 channels on 2.4 GHz.
417 */
418#define EEPROM_4965_REGULATORY_BAND_24_HT40_CHANNELS (2*0xA0) /* 14 bytes */
419
420/*
421 * 5.2 GHz HT40 channels 36 (40), 44 (48), 52 (56), 60 (64),
422 * 100 (104), 108 (112), 116 (120), 124 (128), 132 (136), 149 (153), 157 (161)
423 */
424#define EEPROM_4965_REGULATORY_BAND_52_HT40_CHANNELS (2*0xA8) /* 22 bytes */
425
426#define EEPROM_REGULATORY_BAND_NO_HT40 (0)
427
428struct il_eeprom_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100429 int (*acquire_semaphore) (struct il_priv *il);
430 void (*release_semaphore) (struct il_priv *il);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200431};
432
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200433int il_eeprom_init(struct il_priv *il);
434void il_eeprom_free(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100435const u8 *il_eeprom_query_addr(const struct il_priv *il, size_t offset);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200436u16 il_eeprom_query16(const struct il_priv *il, size_t offset);
437int il_init_channel_map(struct il_priv *il);
438void il_free_channel_map(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100439const struct il_channel_info *il_get_channel_info(const struct il_priv *il,
440 enum ieee80211_band band,
441 u16 channel);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200442
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200443#define IL_NUM_SCAN_RATES (2)
444
445struct il4965_channel_tgd_info {
446 u8 type;
447 s8 max_power;
448};
449
450struct il4965_channel_tgh_info {
451 s64 last_radar_time;
452};
453
454#define IL4965_MAX_RATE (33)
455
456struct il3945_clip_group {
457 /* maximum power level to prevent clipping for each rate, derived by
458 * us from this band's saturation power in EEPROM */
459 const s8 clip_powers[IL_MAX_RATES];
460};
461
462/* current Tx power values to use, one for each rate for each channel.
463 * requested power is limited by:
464 * -- regulatory EEPROM limits for this channel
465 * -- hardware capabilities (clip-powers)
466 * -- spectrum management
467 * -- user preference (e.g. iwconfig)
468 * when requested power is set, base power idx must also be set. */
469struct il3945_channel_power_info {
470 struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
471 s8 power_table_idx; /* actual (compenst'd) idx into gain table */
472 s8 base_power_idx; /* gain idx for power at factory temp. */
473 s8 requested_power; /* power (dBm) requested for this chnl/rate */
474};
475
476/* current scan Tx power values to use, one for each scan rate for each
477 * channel. */
478struct il3945_scan_power_info {
479 struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
480 s8 power_table_idx; /* actual (compenst'd) idx into gain table */
481 s8 requested_power; /* scan pwr (dBm) requested for chnl/rate */
482};
483
484/*
485 * One for each channel, holds all channel setup data
486 * Some of the fields (e.g. eeprom and flags/max_power_avg) are redundant
487 * with one another!
488 */
489struct il_channel_info {
490 struct il4965_channel_tgd_info tgd;
491 struct il4965_channel_tgh_info tgh;
492 struct il_eeprom_channel eeprom; /* EEPROM regulatory limit */
493 struct il_eeprom_channel ht40_eeprom; /* EEPROM regulatory limit for
494 * HT40 channel */
495
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100496 u8 channel; /* channel number */
497 u8 flags; /* flags copied from EEPROM */
498 s8 max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
499 s8 curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) limit */
500 s8 min_power; /* always 0 */
501 s8 scan_power; /* (dBm) regul. eeprom, direct scans, any rate */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200502
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100503 u8 group_idx; /* 0-4, maps channel to group1/2/3/4/5 */
504 u8 band_idx; /* 0-4, maps channel to band1/2/3/4/5 */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200505 enum ieee80211_band band;
506
507 /* HT40 channel info */
508 s8 ht40_max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
509 u8 ht40_flags; /* flags copied from EEPROM */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100510 u8 ht40_extension_channel; /* HT_IE_EXT_CHANNEL_* */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200511
512 /* Radio/DSP gain settings for each "normal" data Tx rate.
513 * These include, in addition to RF and DSP gain, a few fields for
514 * remembering/modifying gain settings (idxes). */
515 struct il3945_channel_power_info power_info[IL4965_MAX_RATE];
516
517 /* Radio/DSP gain settings for each scan rate, for directed scans. */
518 struct il3945_scan_power_info scan_pwr_info[IL_NUM_SCAN_RATES];
519};
520
521#define IL_TX_FIFO_BK 0 /* shared */
522#define IL_TX_FIFO_BE 1
523#define IL_TX_FIFO_VI 2 /* shared */
524#define IL_TX_FIFO_VO 3
525#define IL_TX_FIFO_UNUSED -1
526
527/* Minimum number of queues. MAX_NUM is defined in hw specific files.
528 * Set the minimum to accommodate the 4 standard TX queues, 1 command
529 * queue, 2 (unused) HCCA queues, and 4 HT queues (one for each AC) */
530#define IL_MIN_NUM_QUEUES 10
531
532#define IL_DEFAULT_CMD_QUEUE_NUM 4
533
534#define IEEE80211_DATA_LEN 2304
535#define IEEE80211_4ADDR_LEN 30
536#define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
537#define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
538
539struct il_frame {
540 union {
541 struct ieee80211_hdr frame;
542 struct il_tx_beacon_cmd beacon;
543 u8 raw[IEEE80211_FRAME_LEN];
544 u8 cmd[360];
545 } u;
546 struct list_head list;
547};
548
549#define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
550#define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
551#define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
552
553enum {
554 CMD_SYNC = 0,
555 CMD_SIZE_NORMAL = 0,
556 CMD_NO_SKB = 0,
557 CMD_SIZE_HUGE = (1 << 0),
558 CMD_ASYNC = (1 << 1),
559 CMD_WANT_SKB = (1 << 2),
560 CMD_MAPPED = (1 << 3),
561};
562
563#define DEF_CMD_PAYLOAD_SIZE 320
564
565/**
566 * struct il_device_cmd
567 *
568 * For allocation of the command and tx queues, this establishes the overall
569 * size of the largest command we send to uCode, except for a scan command
570 * (which is relatively huge; space is allocated separately).
571 */
572struct il_device_cmd {
573 struct il_cmd_header hdr; /* uCode API */
574 union {
575 u32 flags;
576 u8 val8;
577 u16 val16;
578 u32 val32;
579 struct il_tx_cmd tx;
580 u8 payload[DEF_CMD_PAYLOAD_SIZE];
581 } __packed cmd;
582} __packed;
583
584#define TFD_MAX_PAYLOAD_SIZE (sizeof(struct il_device_cmd))
585
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200586struct il_host_cmd {
587 const void *data;
588 unsigned long reply_page;
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100589 void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
590 struct il_rx_pkt *pkt);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200591 u32 flags;
592 u16 len;
593 u8 id;
594};
595
596#define SUP_RATE_11A_MAX_NUM_CHANNELS 8
597#define SUP_RATE_11B_MAX_NUM_CHANNELS 4
598#define SUP_RATE_11G_MAX_NUM_CHANNELS 12
599
600/**
601 * struct il_rx_queue - Rx queue
602 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
603 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
604 * @read: Shared idx to newest available Rx buffer
605 * @write: Shared idx to oldest written Rx packet
606 * @free_count: Number of pre-allocated buffers in rx_free
607 * @rx_free: list of free SKBs for use
608 * @rx_used: List of Rx buffers with no SKB
609 * @need_update: flag to indicate we need to update read/write idx
610 * @rb_stts: driver's pointer to receive buffer status
611 * @rb_stts_dma: bus address of receive buffer status
612 *
613 * NOTE: rx_free and rx_used are used as a FIFO for il_rx_bufs
614 */
615struct il_rx_queue {
616 __le32 *bd;
617 dma_addr_t bd_dma;
618 struct il_rx_buf pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
619 struct il_rx_buf *queue[RX_QUEUE_SIZE];
620 u32 read;
621 u32 write;
622 u32 free_count;
623 u32 write_actual;
624 struct list_head rx_free;
625 struct list_head rx_used;
626 int need_update;
627 struct il_rb_status *rb_stts;
628 dma_addr_t rb_stts_dma;
629 spinlock_t lock;
630};
631
632#define IL_SUPPORTED_RATES_IE_LEN 8
633
634#define MAX_TID_COUNT 9
635
636#define IL_INVALID_RATE 0xFF
637#define IL_INVALID_VALUE -1
638
639/**
640 * struct il_ht_agg -- aggregation status while waiting for block-ack
641 * @txq_id: Tx queue used for Tx attempt
642 * @frame_count: # frames attempted by Tx command
643 * @wait_for_ba: Expect block-ack before next Tx reply
644 * @start_idx: Index of 1st Transmit Frame Descriptor (TFD) in Tx win
645 * @bitmap0: Low order bitmap, one bit for each frame pending ACK in Tx win
646 * @bitmap1: High order, one bit for each frame pending ACK in Tx win
647 * @rate_n_flags: Rate at which Tx was attempted
648 *
649 * If C_TX indicates that aggregation was attempted, driver must wait
650 * for block ack (N_COMPRESSED_BA). This struct stores tx reply info
651 * until block ack arrives.
652 */
653struct il_ht_agg {
654 u16 txq_id;
655 u16 frame_count;
656 u16 wait_for_ba;
657 u16 start_idx;
658 u64 bitmap;
659 u32 rate_n_flags;
660#define IL_AGG_OFF 0
661#define IL_AGG_ON 1
662#define IL_EMPTYING_HW_QUEUE_ADDBA 2
663#define IL_EMPTYING_HW_QUEUE_DELBA 3
664 u8 state;
665};
666
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200667struct il_tid_data {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100668 u16 seq_number; /* 4965 only */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200669 u16 tfds_in_queue;
670 struct il_ht_agg agg;
671};
672
673struct il_hw_key {
674 u32 cipher;
675 int keylen;
676 u8 keyidx;
677 u8 key[32];
678};
679
680union il_ht_rate_supp {
681 u16 rates;
682 struct {
683 u8 siso_rate;
684 u8 mimo_rate;
685 };
686};
687
688#define CFG_HT_RX_AMPDU_FACTOR_8K (0x0)
689#define CFG_HT_RX_AMPDU_FACTOR_16K (0x1)
690#define CFG_HT_RX_AMPDU_FACTOR_32K (0x2)
691#define CFG_HT_RX_AMPDU_FACTOR_64K (0x3)
692#define CFG_HT_RX_AMPDU_FACTOR_DEF CFG_HT_RX_AMPDU_FACTOR_64K
693#define CFG_HT_RX_AMPDU_FACTOR_MAX CFG_HT_RX_AMPDU_FACTOR_64K
694#define CFG_HT_RX_AMPDU_FACTOR_MIN CFG_HT_RX_AMPDU_FACTOR_8K
695
696/*
697 * Maximal MPDU density for TX aggregation
698 * 4 - 2us density
699 * 5 - 4us density
700 * 6 - 8us density
701 * 7 - 16us density
702 */
703#define CFG_HT_MPDU_DENSITY_2USEC (0x4)
704#define CFG_HT_MPDU_DENSITY_4USEC (0x5)
705#define CFG_HT_MPDU_DENSITY_8USEC (0x6)
706#define CFG_HT_MPDU_DENSITY_16USEC (0x7)
707#define CFG_HT_MPDU_DENSITY_DEF CFG_HT_MPDU_DENSITY_4USEC
708#define CFG_HT_MPDU_DENSITY_MAX CFG_HT_MPDU_DENSITY_16USEC
709#define CFG_HT_MPDU_DENSITY_MIN (0x1)
710
711struct il_ht_config {
712 bool single_chain_sufficient;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100713 enum ieee80211_smps_mode smps; /* current smps mode */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200714};
715
716/* QoS structures */
717struct il_qos_info {
718 int qos_active;
719 struct il_qosparam_cmd def_qos_parm;
720};
721
722/*
723 * Structure should be accessed with sta_lock held. When station addition
724 * is in progress (IL_STA_UCODE_INPROGRESS) it is possible to access only
725 * the commands (il_addsta_cmd and il_link_quality_cmd) without
726 * sta_lock held.
727 */
728struct il_station_entry {
729 struct il_addsta_cmd sta;
730 struct il_tid_data tid[MAX_TID_COUNT];
Stanislaw Gruszka6aa0c252012-02-03 17:31:46 +0100731 u8 used;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200732 struct il_hw_key keyinfo;
733 struct il_link_quality_cmd *lq;
734};
735
736struct il_station_priv_common {
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200737 u8 sta_id;
738};
739
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200740/**
741 * struct il_vif_priv - driver's ilate per-interface information
742 *
743 * When mac80211 allocates a virtual interface, it can allocate
744 * space for us to put data into.
745 */
746struct il_vif_priv {
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200747 u8 ibss_bssid_sta_id;
748};
749
750/* one for each uCode image (inst/data, boot/init/runtime) */
751struct fw_desc {
752 void *v_addr; /* access by driver */
753 dma_addr_t p_addr; /* access by card's busmaster DMA */
754 u32 len; /* bytes */
755};
756
757/* uCode file layout */
758struct il_ucode_header {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100759 __le32 ver; /* major/minor/API/serial */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200760 struct {
761 __le32 inst_size; /* bytes of runtime code */
762 __le32 data_size; /* bytes of runtime data */
763 __le32 init_size; /* bytes of init code */
764 __le32 init_data_size; /* bytes of init data */
765 __le32 boot_size; /* bytes of bootstrap code */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100766 u8 data[0]; /* in same order as sizes */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200767 } v1;
768};
769
770struct il4965_ibss_seq {
771 u8 mac[ETH_ALEN];
772 u16 seq_num;
773 u16 frag_num;
774 unsigned long packet_time;
775 struct list_head list;
776};
777
778struct il_sensitivity_ranges {
779 u16 min_nrg_cck;
780 u16 max_nrg_cck;
781
782 u16 nrg_th_cck;
783 u16 nrg_th_ofdm;
784
785 u16 auto_corr_min_ofdm;
786 u16 auto_corr_min_ofdm_mrc;
787 u16 auto_corr_min_ofdm_x1;
788 u16 auto_corr_min_ofdm_mrc_x1;
789
790 u16 auto_corr_max_ofdm;
791 u16 auto_corr_max_ofdm_mrc;
792 u16 auto_corr_max_ofdm_x1;
793 u16 auto_corr_max_ofdm_mrc_x1;
794
795 u16 auto_corr_max_cck;
796 u16 auto_corr_max_cck_mrc;
797 u16 auto_corr_min_cck;
798 u16 auto_corr_min_cck_mrc;
799
800 u16 barker_corr_th_min;
801 u16 barker_corr_th_min_mrc;
802 u16 nrg_th_cca;
803};
804
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200805#define KELVIN_TO_CELSIUS(x) ((x)-273)
806#define CELSIUS_TO_KELVIN(x) ((x)+273)
807
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200808/**
809 * struct il_hw_params
Stanislaw Gruszkab16db502012-02-03 17:31:44 +0100810 * @bcast_id: f/w broadcast station ID
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200811 * @max_txq_num: Max # Tx queues supported
812 * @dma_chnl_num: Number of Tx DMA/FIFO channels
813 * @scd_bc_tbls_size: size of scheduler byte count tables
814 * @tfd_size: TFD size
815 * @tx/rx_chains_num: Number of TX/RX chains
816 * @valid_tx/rx_ant: usable antennas
817 * @max_rxq_size: Max # Rx frames in Rx queue (must be power-of-2)
818 * @max_rxq_log: Log-base-2 of max_rxq_size
819 * @rx_page_order: Rx buffer page order
820 * @rx_wrt_ptr_reg: FH{39}_RSCSR_CHNL0_WPTR
821 * @max_stations:
822 * @ht40_channel: is 40MHz width possible in band 2.4
823 * BIT(IEEE80211_BAND_5GHZ) BIT(IEEE80211_BAND_5GHZ)
824 * @sw_crypto: 0 for hw, 1 for sw
825 * @max_xxx_size: for ucode uses
826 * @ct_kill_threshold: temperature threshold
827 * @beacon_time_tsf_bits: number of valid tsf bits for beacon time
828 * @struct il_sensitivity_ranges: range of sensitivity values
829 */
830struct il_hw_params {
Stanislaw Gruszkab16db502012-02-03 17:31:44 +0100831 u8 bcast_id;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200832 u8 max_txq_num;
833 u8 dma_chnl_num;
834 u16 scd_bc_tbls_size;
835 u32 tfd_size;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100836 u8 tx_chains_num;
837 u8 rx_chains_num;
838 u8 valid_tx_ant;
839 u8 valid_rx_ant;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200840 u16 max_rxq_size;
841 u16 max_rxq_log;
842 u32 rx_page_order;
843 u32 rx_wrt_ptr_reg;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100844 u8 max_stations;
845 u8 ht40_channel;
846 u8 max_beacon_itrvl; /* in 1024 ms */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200847 u32 max_inst_size;
848 u32 max_data_size;
849 u32 max_bsm_size;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100850 u32 ct_kill_threshold; /* value in hw-dependent units */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200851 u16 beacon_time_tsf_bits;
852 const struct il_sensitivity_ranges *sens;
853};
854
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200855/******************************************************************************
856 *
857 * Functions implemented in core module which are forward declared here
858 * for use by iwl-[4-5].c
859 *
860 * NOTE: The implementation of these functions are not hardware specific
861 * which is why they are in the core module files.
862 *
863 * Naming convention --
864 * il_ <-- Is part of iwlwifi
865 * iwlXXXX_ <-- Hardware specific (implemented in iwl-XXXX.c for XXXX)
866 * il4965_bg_ <-- Called from work queue context
867 * il4965_mac_ <-- mac80211 callback
868 *
869 ****************************************************************************/
870extern void il4965_update_chain_flags(struct il_priv *il);
871extern const u8 il_bcast_addr[ETH_ALEN];
872extern int il_queue_space(const struct il_queue *q);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100873static inline int
874il_queue_used(const struct il_queue *q, int i)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200875{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100876 return q->write_ptr >= q->read_ptr ? (i >= q->read_ptr &&
877 i < q->write_ptr) : !(i <
878 q->read_ptr
879 && i >=
880 q->
881 write_ptr);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200882}
883
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100884static inline u8
885il_get_cmd_idx(struct il_queue *q, u32 idx, int is_huge)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200886{
887 /*
888 * This is for init calibration result and scan command which
889 * required buffer > TFD_MAX_PAYLOAD_SIZE,
890 * the big buffer at end of command array
891 */
892 if (is_huge)
893 return q->n_win; /* must be power of 2 */
894
895 /* Otherwise, use normal size buffers */
896 return idx & (q->n_win - 1);
897}
898
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200899struct il_dma_ptr {
900 dma_addr_t dma;
901 void *addr;
902 size_t size;
903};
904
905#define IL_OPERATION_MODE_AUTO 0
906#define IL_OPERATION_MODE_HT_ONLY 1
907#define IL_OPERATION_MODE_MIXED 2
908#define IL_OPERATION_MODE_20MHZ 3
909
910#define IL_TX_CRC_SIZE 4
911#define IL_TX_DELIMITER_SIZE 4
912
913#define TX_POWER_IL_ILLEGAL_VOLTAGE -10000
914
915/* Sensitivity and chain noise calibration */
916#define INITIALIZATION_VALUE 0xFFFF
917#define IL4965_CAL_NUM_BEACONS 20
918#define IL_CAL_NUM_BEACONS 16
919#define MAXIMUM_ALLOWED_PATHLOSS 15
920
921#define CHAIN_NOISE_MAX_DELTA_GAIN_CODE 3
922
923#define MAX_FA_OFDM 50
924#define MIN_FA_OFDM 5
925#define MAX_FA_CCK 50
926#define MIN_FA_CCK 5
927
928#define AUTO_CORR_STEP_OFDM 1
929
930#define AUTO_CORR_STEP_CCK 3
931#define AUTO_CORR_MAX_TH_CCK 160
932
933#define NRG_DIFF 2
934#define NRG_STEP_CCK 2
935#define NRG_MARGIN 8
936#define MAX_NUMBER_CCK_NO_FA 100
937
938#define AUTO_CORR_CCK_MIN_VAL_DEF (125)
939
940#define CHAIN_A 0
941#define CHAIN_B 1
942#define CHAIN_C 2
943#define CHAIN_NOISE_DELTA_GAIN_INIT_VAL 4
944#define ALL_BAND_FILTER 0xFF00
945#define IN_BAND_FILTER 0xFF
946#define MIN_AVERAGE_NOISE_MAX_VALUE 0xFFFFFFFF
947
948#define NRG_NUM_PREV_STAT_L 20
949#define NUM_RX_CHAINS 3
950
951enum il4965_false_alarm_state {
952 IL_FA_TOO_MANY = 0,
953 IL_FA_TOO_FEW = 1,
954 IL_FA_GOOD_RANGE = 2,
955};
956
957enum il4965_chain_noise_state {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100958 IL_CHAIN_NOISE_ALIVE = 0, /* must be 0 */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200959 IL_CHAIN_NOISE_ACCUMULATE,
960 IL_CHAIN_NOISE_CALIBRATED,
961 IL_CHAIN_NOISE_DONE,
962};
963
964enum il4965_calib_enabled_state {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100965 IL_CALIB_DISABLED = 0, /* must be 0 */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200966 IL_CALIB_ENABLED = 1,
967};
968
969/*
970 * enum il_calib
971 * defines the order in which results of initial calibrations
972 * should be sent to the runtime uCode
973 */
974enum il_calib {
975 IL_CALIB_MAX,
976};
977
978/* Opaque calibration results */
979struct il_calib_result {
980 void *buf;
981 size_t buf_len;
982};
983
984enum ucode_type {
985 UCODE_NONE = 0,
986 UCODE_INIT,
987 UCODE_RT
988};
989
990/* Sensitivity calib data */
991struct il_sensitivity_data {
992 u32 auto_corr_ofdm;
993 u32 auto_corr_ofdm_mrc;
994 u32 auto_corr_ofdm_x1;
995 u32 auto_corr_ofdm_mrc_x1;
996 u32 auto_corr_cck;
997 u32 auto_corr_cck_mrc;
998
999 u32 last_bad_plcp_cnt_ofdm;
1000 u32 last_fa_cnt_ofdm;
1001 u32 last_bad_plcp_cnt_cck;
1002 u32 last_fa_cnt_cck;
1003
1004 u32 nrg_curr_state;
1005 u32 nrg_prev_state;
1006 u32 nrg_value[10];
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001007 u8 nrg_silence_rssi[NRG_NUM_PREV_STAT_L];
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001008 u32 nrg_silence_ref;
1009 u32 nrg_energy_idx;
1010 u32 nrg_silence_idx;
1011 u32 nrg_th_cck;
1012 s32 nrg_auto_corr_silence_diff;
1013 u32 num_in_cck_no_fa;
1014 u32 nrg_th_ofdm;
1015
1016 u16 barker_corr_th_min;
1017 u16 barker_corr_th_min_mrc;
1018 u16 nrg_th_cca;
1019};
1020
1021/* Chain noise (differential Rx gain) calib data */
1022struct il_chain_noise_data {
1023 u32 active_chains;
1024 u32 chain_noise_a;
1025 u32 chain_noise_b;
1026 u32 chain_noise_c;
1027 u32 chain_signal_a;
1028 u32 chain_signal_b;
1029 u32 chain_signal_c;
1030 u16 beacon_count;
1031 u8 disconn_array[NUM_RX_CHAINS];
1032 u8 delta_gain_code[NUM_RX_CHAINS];
1033 u8 radio_write;
1034 u8 state;
1035};
1036
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001037#define EEPROM_SEM_TIMEOUT 10 /* milliseconds */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001038#define EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
1039
1040#define IL_TRAFFIC_ENTRIES (256)
1041#define IL_TRAFFIC_ENTRY_SIZE (64)
1042
1043enum {
1044 MEASUREMENT_READY = (1 << 0),
1045 MEASUREMENT_ACTIVE = (1 << 1),
1046};
1047
1048/* interrupt stats */
1049struct isr_stats {
1050 u32 hw;
1051 u32 sw;
1052 u32 err_code;
1053 u32 sch;
1054 u32 alive;
1055 u32 rfkill;
1056 u32 ctkill;
1057 u32 wakeup;
1058 u32 rx;
1059 u32 handlers[IL_CN_MAX];
1060 u32 tx;
1061 u32 unhandled;
1062};
1063
1064/* management stats */
1065enum il_mgmt_stats {
1066 MANAGEMENT_ASSOC_REQ = 0,
1067 MANAGEMENT_ASSOC_RESP,
1068 MANAGEMENT_REASSOC_REQ,
1069 MANAGEMENT_REASSOC_RESP,
1070 MANAGEMENT_PROBE_REQ,
1071 MANAGEMENT_PROBE_RESP,
1072 MANAGEMENT_BEACON,
1073 MANAGEMENT_ATIM,
1074 MANAGEMENT_DISASSOC,
1075 MANAGEMENT_AUTH,
1076 MANAGEMENT_DEAUTH,
1077 MANAGEMENT_ACTION,
1078 MANAGEMENT_MAX,
1079};
1080/* control stats */
1081enum il_ctrl_stats {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001082 CONTROL_BACK_REQ = 0,
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001083 CONTROL_BACK,
1084 CONTROL_PSPOLL,
1085 CONTROL_RTS,
1086 CONTROL_CTS,
1087 CONTROL_ACK,
1088 CONTROL_CFEND,
1089 CONTROL_CFENDACK,
1090 CONTROL_MAX,
1091};
1092
1093struct traffic_stats {
1094#ifdef CONFIG_IWLEGACY_DEBUGFS
1095 u32 mgmt[MANAGEMENT_MAX];
1096 u32 ctrl[CONTROL_MAX];
1097 u32 data_cnt;
1098 u64 data_bytes;
1099#endif
1100};
1101
1102/*
1103 * host interrupt timeout value
1104 * used with setting interrupt coalescing timer
1105 * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit
1106 *
1107 * default interrupt coalescing timer is 64 x 32 = 2048 usecs
1108 * default interrupt coalescing calibration timer is 16 x 32 = 512 usecs
1109 */
1110#define IL_HOST_INT_TIMEOUT_MAX (0xFF)
1111#define IL_HOST_INT_TIMEOUT_DEF (0x40)
1112#define IL_HOST_INT_TIMEOUT_MIN (0x0)
1113#define IL_HOST_INT_CALIB_TIMEOUT_MAX (0xFF)
1114#define IL_HOST_INT_CALIB_TIMEOUT_DEF (0x10)
1115#define IL_HOST_INT_CALIB_TIMEOUT_MIN (0x0)
1116
1117#define IL_DELAY_NEXT_FORCE_FW_RELOAD (HZ*5)
1118
1119/* TX queue watchdog timeouts in mSecs */
1120#define IL_DEF_WD_TIMEOUT (2000)
1121#define IL_LONG_WD_TIMEOUT (10000)
1122#define IL_MAX_WD_TIMEOUT (120000)
1123
1124struct il_force_reset {
1125 int reset_request_count;
1126 int reset_success_count;
1127 int reset_reject_count;
1128 unsigned long reset_duration;
1129 unsigned long last_force_reset_jiffies;
1130};
1131
1132/* extend beacon time format bit shifting */
1133/*
1134 * for _3945 devices
1135 * bits 31:24 - extended
1136 * bits 23:0 - interval
1137 */
1138#define IL3945_EXT_BEACON_TIME_POS 24
1139/*
1140 * for _4965 devices
1141 * bits 31:22 - extended
1142 * bits 21:0 - interval
1143 */
1144#define IL4965_EXT_BEACON_TIME_POS 22
1145
1146struct il_rxon_context {
1147 struct ieee80211_vif *vif;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001148};
1149
Stanislaw Gruszka99412002011-08-31 13:53:04 +02001150struct il_power_mgr {
1151 struct il_powertable_cmd sleep_cmd;
1152 struct il_powertable_cmd sleep_cmd_next;
1153 int debug_sleep_level_override;
1154 bool pci_pm;
1155};
1156
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001157struct il_priv {
1158
1159 /* ieee device used by generic ieee processing code */
1160 struct ieee80211_hw *hw;
1161 struct ieee80211_channel *ieee_channels;
1162 struct ieee80211_rate *ieee_rates;
1163 struct il_cfg *cfg;
Stanislaw Gruszkac39ae9f2012-02-03 17:31:58 +01001164 const struct il_ops *ops;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001165
1166 /* temporary frame storage list */
1167 struct list_head free_frames;
1168 int frames_count;
1169
1170 enum ieee80211_band band;
1171 int alloc_rxb_page;
1172
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001173 void (*handlers[IL_CN_MAX]) (struct il_priv *il,
1174 struct il_rx_buf *rxb);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001175
1176 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
1177
1178 /* spectrum measurement report caching */
1179 struct il_spectrum_notification measure_report;
1180 u8 measurement_status;
1181
1182 /* ucode beacon time */
1183 u32 ucode_beacon_time;
1184 int missed_beacon_threshold;
1185
1186 /* track IBSS manager (last beacon) status */
1187 u32 ibss_manager;
1188
1189 /* force reset */
1190 struct il_force_reset force_reset;
1191
1192 /* we allocate array of il_channel_info for NIC's valid channels.
1193 * Access via channel # using indirect idx array */
1194 struct il_channel_info *channel_info; /* channel info array */
1195 u8 channel_count; /* # of channels */
1196
1197 /* thermal calibration */
1198 s32 temperature; /* degrees Kelvin */
1199 s32 last_temperature;
1200
1201 /* init calibration results */
1202 struct il_calib_result calib_results[IL_CALIB_MAX];
1203
1204 /* Scan related variables */
1205 unsigned long scan_start;
1206 unsigned long scan_start_tsf;
1207 void *scan_cmd;
1208 enum ieee80211_band scan_band;
1209 struct cfg80211_scan_request *scan_request;
1210 struct ieee80211_vif *scan_vif;
1211 u8 scan_tx_ant[IEEE80211_NUM_BANDS];
1212 u8 mgmt_tx_ant;
1213
1214 /* spinlock */
1215 spinlock_t lock; /* protect general shared data */
1216 spinlock_t hcmd_lock; /* protect hcmd */
1217 spinlock_t reg_lock; /* protect hw register access */
1218 struct mutex mutex;
1219
1220 /* basic pci-network driver stuff */
1221 struct pci_dev *pci_dev;
1222
1223 /* pci hardware address support */
1224 void __iomem *hw_base;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001225 u32 hw_rev;
1226 u32 hw_wa_rev;
1227 u8 rev_id;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001228
1229 /* command queue number */
1230 u8 cmd_queue;
1231
1232 /* max number of station keys */
1233 u8 sta_key_max_num;
1234
1235 /* EEPROM MAC addresses */
1236 struct mac_address addresses[1];
1237
1238 /* uCode images, save to reload in case of failure */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001239 int fw_idx; /* firmware we're trying to load */
1240 u32 ucode_ver; /* version of ucode, copy of
1241 il_ucode.ver */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001242 struct fw_desc ucode_code; /* runtime inst */
1243 struct fw_desc ucode_data; /* runtime data original */
1244 struct fw_desc ucode_data_backup; /* runtime data save/restore */
1245 struct fw_desc ucode_init; /* initialization inst */
1246 struct fw_desc ucode_init_data; /* initialization data */
1247 struct fw_desc ucode_boot; /* bootstrap inst */
1248 enum ucode_type ucode_type;
1249 u8 ucode_write_complete; /* the image write is complete */
1250 char firmware_name[25];
1251
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001252 struct ieee80211_vif *vif;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001253
Stanislaw Gruszka8d44f2b2012-02-03 17:31:51 +01001254 struct il_qos_info qos_data;
1255
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +01001256 struct {
1257 bool enabled;
1258 bool is_40mhz;
1259 bool non_gf_sta_present;
1260 u8 protection;
1261 u8 extension_chan_offset;
1262 } ht;
1263
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001264 /*
1265 * We declare this const so it can only be
1266 * changed via explicit cast within the
1267 * routines that actually update the physical
1268 * hardware.
1269 */
1270 const struct il_rxon_cmd active;
1271 struct il_rxon_cmd staging;
1272
1273 struct il_rxon_time_cmd timing;
1274
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001275 __le16 switch_channel;
1276
1277 /* 1st responses from initialize and runtime uCode images.
1278 * _4965's initialize alive response contains some calibration data. */
1279 struct il_init_alive_resp card_alive_init;
1280 struct il_alive_resp card_alive;
1281
1282 u16 active_rate;
1283
1284 u8 start_calib;
1285 struct il_sensitivity_data sensitivity_data;
1286 struct il_chain_noise_data chain_noise_data;
1287 __le16 sensitivity_tbl[HD_TBL_SIZE];
1288
1289 struct il_ht_config current_ht_config;
1290
1291 /* Rate scaling data */
1292 u8 retry_rate;
1293
1294 wait_queue_head_t wait_command_queue;
1295
1296 int activity_timer_active;
1297
1298 /* Rx and Tx DMA processing queues */
1299 struct il_rx_queue rxq;
1300 struct il_tx_queue *txq;
1301 unsigned long txq_ctx_active_msk;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001302 struct il_dma_ptr kw; /* keep warm address */
1303 struct il_dma_ptr scd_bc_tbls;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001304
1305 u32 scd_base_addr; /* scheduler sram base address */
1306
1307 unsigned long status;
1308
1309 /* counts mgmt, ctl, and data packets */
1310 struct traffic_stats tx_stats;
1311 struct traffic_stats rx_stats;
1312
1313 /* counts interrupts */
1314 struct isr_stats isr_stats;
1315
1316 struct il_power_mgr power_data;
1317
1318 /* context information */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001319 u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001320
1321 /* station table variables */
1322
1323 /* Note: if lock and sta_lock are needed, lock must be acquired first */
1324 spinlock_t sta_lock;
1325 int num_stations;
1326 struct il_station_entry stations[IL_STATION_COUNT];
1327 unsigned long ucode_key_table;
1328
1329 /* queue refcounts */
1330#define IL_MAX_HW_QUEUES 32
1331 unsigned long queue_stopped[BITS_TO_LONGS(IL_MAX_HW_QUEUES)];
1332 /* for each AC */
1333 atomic_t queue_stop_count[4];
1334
1335 /* Indication if ieee80211_ops->open has been called */
1336 u8 is_open;
1337
1338 u8 mac80211_registered;
1339
1340 /* eeprom -- this is in the card's little endian byte order */
1341 u8 *eeprom;
1342 struct il_eeprom_calib_info *calib_info;
1343
1344 enum nl80211_iftype iw_mode;
1345
1346 /* Last Rx'd beacon timestamp */
1347 u64 timestamp;
1348
1349 union {
1350#if defined(CONFIG_IWL3945) || defined(CONFIG_IWL3945_MODULE)
1351 struct {
1352 void *shared_virt;
1353 dma_addr_t shared_phys;
1354
1355 struct delayed_work thermal_periodic;
1356 struct delayed_work rfkill_poll;
1357
1358 struct il3945_notif_stats stats;
1359#ifdef CONFIG_IWLEGACY_DEBUGFS
1360 struct il3945_notif_stats accum_stats;
1361 struct il3945_notif_stats delta_stats;
1362 struct il3945_notif_stats max_delta;
1363#endif
1364
1365 u32 sta_supp_rates;
1366 int last_rx_rssi; /* From Rx packet stats */
1367
1368 /* Rx'd packet timing information */
1369 u32 last_beacon_time;
1370 u64 last_tsf;
1371
1372 /*
1373 * each calibration channel group in the
1374 * EEPROM has a derived clip setting for
1375 * each rate.
1376 */
1377 const struct il3945_clip_group clip_groups[5];
1378
1379 } _3945;
1380#endif
1381#if defined(CONFIG_IWL4965) || defined(CONFIG_IWL4965_MODULE)
1382 struct {
1383 struct il_rx_phy_res last_phy_res;
1384 bool last_phy_res_valid;
1385
1386 struct completion firmware_loading_complete;
1387
1388 /*
1389 * chain noise reset and gain commands are the
1390 * two extra calibration commands follows the standard
1391 * phy calibration commands
1392 */
1393 u8 phy_calib_chain_noise_reset_cmd;
1394 u8 phy_calib_chain_noise_gain_cmd;
1395
Stanislaw Gruszkad735f922012-02-03 17:31:48 +01001396 u8 key_mapping_keys;
1397 struct il_wep_key wep_keys[WEP_KEYS_MAX];
1398
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001399 struct il_notif_stats stats;
1400#ifdef CONFIG_IWLEGACY_DEBUGFS
1401 struct il_notif_stats accum_stats;
1402 struct il_notif_stats delta_stats;
1403 struct il_notif_stats max_delta;
1404#endif
1405
1406 } _4965;
1407#endif
1408 };
1409
1410 struct il_hw_params hw_params;
1411
1412 u32 inta_mask;
1413
1414 struct workqueue_struct *workqueue;
1415
1416 struct work_struct restart;
1417 struct work_struct scan_completed;
1418 struct work_struct rx_replenish;
1419 struct work_struct abort_scan;
1420
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001421 bool beacon_enabled;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001422 struct sk_buff *beacon_skb;
1423
1424 struct work_struct tx_flush;
1425
1426 struct tasklet_struct irq_tasklet;
1427
1428 struct delayed_work init_alive_start;
1429 struct delayed_work alive_start;
1430 struct delayed_work scan_check;
1431
1432 /* TX Power */
1433 s8 tx_power_user_lmt;
1434 s8 tx_power_device_lmt;
1435 s8 tx_power_next;
1436
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001437#ifdef CONFIG_IWLEGACY_DEBUG
1438 /* debugging info */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001439 u32 debug_level; /* per device debugging will override global
1440 il_debug_level if set */
1441#endif /* CONFIG_IWLEGACY_DEBUG */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001442#ifdef CONFIG_IWLEGACY_DEBUGFS
1443 /* debugfs */
1444 u16 tx_traffic_idx;
1445 u16 rx_traffic_idx;
1446 u8 *tx_traffic;
1447 u8 *rx_traffic;
1448 struct dentry *debugfs_dir;
1449 u32 dbgfs_sram_offset, dbgfs_sram_len;
1450 bool disable_ht40;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001451#endif /* CONFIG_IWLEGACY_DEBUGFS */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001452
1453 struct work_struct txpower_work;
1454 u32 disable_sens_cal;
1455 u32 disable_chain_noise_cal;
1456 u32 disable_tx_power_cal;
1457 struct work_struct run_time_calib_work;
1458 struct timer_list stats_periodic;
1459 struct timer_list watchdog;
1460 bool hw_ready;
1461
1462 struct led_classdev led;
1463 unsigned long blink_on, blink_off;
1464 bool led_registered;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001465}; /*il_priv */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001466
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001467static inline void
1468il_txq_ctx_activate(struct il_priv *il, int txq_id)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001469{
1470 set_bit(txq_id, &il->txq_ctx_active_msk);
1471}
1472
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001473static inline void
1474il_txq_ctx_deactivate(struct il_priv *il, int txq_id)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001475{
1476 clear_bit(txq_id, &il->txq_ctx_active_msk);
1477}
1478
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001479static inline int
1480il_is_associated(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001481{
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001482 return (il->active.filter_flags & RXON_FILTER_ASSOC_MSK) ? 1 : 0;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001483}
1484
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001485static inline int
1486il_is_any_associated(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001487{
1488 return il_is_associated(il);
1489}
1490
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001491static inline int
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001492il_is_channel_valid(const struct il_channel_info *ch_info)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001493{
1494 if (ch_info == NULL)
1495 return 0;
1496 return (ch_info->flags & EEPROM_CHANNEL_VALID) ? 1 : 0;
1497}
1498
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001499static inline int
1500il_is_channel_radar(const struct il_channel_info *ch_info)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001501{
1502 return (ch_info->flags & EEPROM_CHANNEL_RADAR) ? 1 : 0;
1503}
1504
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001505static inline u8
1506il_is_channel_a_band(const struct il_channel_info *ch_info)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001507{
1508 return ch_info->band == IEEE80211_BAND_5GHZ;
1509}
1510
1511static inline int
1512il_is_channel_passive(const struct il_channel_info *ch)
1513{
1514 return (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) ? 1 : 0;
1515}
1516
1517static inline int
1518il_is_channel_ibss(const struct il_channel_info *ch)
1519{
1520 return (ch->flags & EEPROM_CHANNEL_IBSS) ? 1 : 0;
1521}
1522
1523static inline void
1524__il_free_pages(struct il_priv *il, struct page *page)
1525{
1526 __free_pages(page, il->hw_params.rx_page_order);
1527 il->alloc_rxb_page--;
1528}
1529
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001530static inline void
1531il_free_pages(struct il_priv *il, unsigned long page)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001532{
1533 free_pages(page, il->hw_params.rx_page_order);
1534 il->alloc_rxb_page--;
1535}
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001536
1537#define IWLWIFI_VERSION "in-tree:"
1538#define DRV_COPYRIGHT "Copyright(c) 2003-2011 Intel Corporation"
1539#define DRV_AUTHOR "<ilw@linux.intel.com>"
1540
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001541#define IL_PCI_DEVICE(dev, subdev, cfg) \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001542 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
1543 .subvendor = PCI_ANY_ID, .subdevice = (subdev), \
1544 .driver_data = (kernel_ulong_t)&(cfg)
1545
1546#define TIME_UNIT 1024
1547
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001548#define IL_SKU_G 0x1
1549#define IL_SKU_A 0x2
1550#define IL_SKU_N 0x8
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001551
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001552#define IL_CMD(x) case x: return #x
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001553
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001554/* Size of one Rx buffer in host DRAM */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001555#define IL_RX_BUF_SIZE_3K (3 * 1000) /* 3945 only */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001556#define IL_RX_BUF_SIZE_4K (4 * 1024)
1557#define IL_RX_BUF_SIZE_8K (8 * 1024)
1558
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001559struct il_hcmd_ops {
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001560 int (*rxon_assoc) (struct il_priv *il);
1561 int (*commit_rxon) (struct il_priv *il);
1562 void (*set_rxon_chain) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001563};
1564
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001565struct il_hcmd_utils_ops {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001566 u16(*get_hcmd_size) (u8 cmd_id, u16 len);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001567 u16(*build_addsta_hcmd) (const struct il_addsta_cmd *cmd, u8 *data);
1568 int (*request_scan) (struct il_priv *il, struct ieee80211_vif *vif);
1569 void (*post_scan) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001570};
1571
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001572struct il_apm_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001573 int (*init) (struct il_priv *il);
1574 void (*config) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001575};
1576
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001577#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001578struct il_debugfs_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001579 ssize_t(*rx_stats_read) (struct file *file, char __user *user_buf,
1580 size_t count, loff_t *ppos);
1581 ssize_t(*tx_stats_read) (struct file *file, char __user *user_buf,
1582 size_t count, loff_t *ppos);
1583 ssize_t(*general_stats_read) (struct file *file,
1584 char __user *user_buf, size_t count,
1585 loff_t *ppos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001586};
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001587#endif
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001588
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001589struct il_temp_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001590 void (*temperature) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001591};
1592
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001593struct il_lib_ops {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001594 /* Handling TX */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001595 void (*txq_update_byte_cnt_tbl) (struct il_priv *il,
1596 struct il_tx_queue *txq,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001597 u16 byte_cnt);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001598 int (*txq_attach_buf_to_tfd) (struct il_priv *il,
1599 struct il_tx_queue *txq, dma_addr_t addr,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001600 u16 len, u8 reset, u8 pad);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001601 void (*txq_free_tfd) (struct il_priv *il, struct il_tx_queue *txq);
1602 int (*txq_init) (struct il_priv *il, struct il_tx_queue *txq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001603 /* setup Rx handler */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001604 void (*handler_setup) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001605 /* alive notification after init uCode load */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001606 void (*init_alive_start) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001607 /* check validity of rtc data address */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001608 int (*is_valid_rtc_data_addr) (u32 addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001609 /* 1st ucode load */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001610 int (*load_ucode) (struct il_priv *il);
Stanislaw Gruszka1ba2f122011-06-08 15:28:27 +02001611
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001612 void (*dump_nic_error_log) (struct il_priv *il);
1613 int (*dump_fh) (struct il_priv *il, char **buf, bool display);
1614 int (*set_channel_switch) (struct il_priv *il,
1615 struct ieee80211_channel_switch *ch_switch);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001616 /* power management */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001617 struct il_apm_ops apm_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001618
1619 /* power */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001620 int (*send_tx_power) (struct il_priv *il);
1621 void (*update_chain_flags) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001622
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02001623 /* eeprom operations */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001624 struct il_eeprom_ops eeprom_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001625
1626 /* temperature */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001627 struct il_temp_ops temp_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001628
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001629#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001630 struct il_debugfs_ops debugfs_ops;
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001631#endif
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001632
1633};
1634
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001635struct il_led_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001636 int (*cmd) (struct il_priv *il, struct il_led_cmd *led_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001637};
1638
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001639struct il_legacy_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001640 void (*post_associate) (struct il_priv *il);
1641 void (*config_ap) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001642 /* station management */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001643 int (*update_bcast_stations) (struct il_priv *il);
1644 int (*manage_ibss_station) (struct il_priv *il,
1645 struct ieee80211_vif *vif, bool add);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001646};
1647
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001648struct il_ops {
1649 const struct il_lib_ops *lib;
1650 const struct il_hcmd_ops *hcmd;
1651 const struct il_hcmd_utils_ops *utils;
1652 const struct il_led_ops *led;
1653 const struct il_nic_ops *nic;
1654 const struct il_legacy_ops *legacy;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001655};
1656
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001657struct il_mod_params {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001658 int sw_crypto; /* def: 0 = using hardware encryption */
1659 int disable_hw_scan; /* def: 0 = use h/w scan */
1660 int num_of_queues; /* def: HW dependent */
1661 int disable_11n; /* def: 0 = 11n capabilities enabled */
1662 int amsdu_size_8K; /* def: 1 = enable 8K amsdu size */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001663 int antenna; /* def: 0 = both antennas (use diversity) */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001664 int restart_fw; /* def: 1 = restart firmware */
1665};
1666
1667/*
1668 * @led_compensation: compensate on the led on/off time per HW according
1669 * to the deviation to achieve the desired led frequency.
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02001670 * The detail algorithm is described in common.c
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001671 * @chain_noise_num_beacons: number of beacons used to compute chain noise
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001672 * @wd_timeout: TX queues watchdog timeout
1673 * @temperature_kelvin: temperature report by uCode in kelvin
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001674 * @ucode_tracing: support ucode continuous tracing
1675 * @sensitivity_calib_by_driver: driver has the capability to perform
1676 * sensitivity calibration operation
1677 * @chain_noise_calib_by_driver: driver has the capability to perform
1678 * chain noise calibration operation
1679 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001680struct il_base_params {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001681};
1682
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02001683#define IL_LED_SOLID 11
1684#define IL_DEF_LED_INTRVL cpu_to_le32(1000)
1685
1686#define IL_LED_ACTIVITY (0<<1)
1687#define IL_LED_LINK (1<<1)
1688
1689/*
1690 * LED mode
1691 * IL_LED_DEFAULT: use device default
1692 * IL_LED_RF_STATE: turn LED on/off based on RF state
1693 * LED ON = RF ON
1694 * LED OFF = RF OFF
1695 * IL_LED_BLINK: adjust led blink rate based on blink table
1696 */
1697enum il_led_mode {
1698 IL_LED_DEFAULT,
1699 IL_LED_RF_STATE,
1700 IL_LED_BLINK,
1701};
1702
1703void il_leds_init(struct il_priv *il);
1704void il_leds_exit(struct il_priv *il);
1705
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001706/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001707 * struct il_cfg
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001708 * @fw_name_pre: Firmware filename prefix. The api version and extension
1709 * (.ucode) will be added to filename before loading from disk. The
1710 * filename is constructed as fw_name_pre<api>.ucode.
1711 * @ucode_api_max: Highest version of uCode API supported by driver.
1712 * @ucode_api_min: Lowest version of uCode API supported by driver.
1713 * @scan_antennas: available antenna for scan operation
1714 * @led_mode: 0=blinking, 1=On(RF On)/Off(RF Off)
1715 *
1716 * We enable the driver to be backward compatible wrt API version. The
1717 * driver specifies which APIs it supports (with @ucode_api_max being the
1718 * highest and @ucode_api_min the lowest). Firmware will only be loaded if
1719 * it has a supported API version. The firmware's API version will be
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001720 * stored in @il_priv, enabling the driver to make runtime changes based
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001721 * on firmware version used.
1722 *
1723 * For example,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001724 * if (IL_UCODE_API(il->ucode_ver) >= 2) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001725 * Driver interacts with Firmware API version >= 2.
1726 * } else {
1727 * Driver interacts with Firmware API version 1.
1728 * }
1729 *
1730 * The ideal usage of this infrastructure is to treat a new ucode API
1731 * release as a new hardware revision. That is, through utilizing the
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001732 * il_hcmd_utils_ops etc. we accommodate different command structures
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001733 * and flows between hardware versions as well as their API
1734 * versions.
1735 *
1736 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001737struct il_cfg {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001738 /* params specific to an individual device within a device family */
1739 const char *name;
1740 const char *fw_name_pre;
1741 const unsigned int ucode_api_max;
1742 const unsigned int ucode_api_min;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001743 u8 valid_tx_ant;
1744 u8 valid_rx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001745 unsigned int sku;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001746 u16 eeprom_ver;
1747 u16 eeprom_calib_ver;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001748 /* module based parameters which can be set from modprobe cmd */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001749 const struct il_mod_params *mod_params;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001750 /* params not likely to change within a device family */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001751 struct il_base_params *base_params;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001752 /* params likely to change within a device family */
1753 u8 scan_rx_antennas[IEEE80211_NUM_BANDS];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001754 enum il_led_mode led_mode;
Stanislaw Gruszka89ef1ed2012-02-03 17:31:59 +01001755
1756 int eeprom_size;
1757 int num_of_queues; /* def: HW dependent */
1758 int num_of_ampdu_queues; /* def: HW dependent */
1759 /* for il_apm_init() */
1760 u32 pll_cfg_val;
1761 bool set_l0s;
1762 bool use_bsm;
1763
1764 u16 led_compensation;
1765 int chain_noise_num_beacons;
1766 unsigned int wd_timeout;
1767 bool temperature_kelvin;
1768 const bool ucode_tracing;
1769 const bool sensitivity_calib_by_driver;
1770 const bool chain_noise_calib_by_driver;
Stanislaw Gruszka93a984a2012-02-13 11:23:12 +01001771
1772 const u32 regulatory_bands[7];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001773};
1774
1775/***************************
1776 * L i b *
1777 ***************************/
1778
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001779int il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1780 u16 queue, const struct ieee80211_tx_queue_params *params);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001781int il_mac_tx_last_beacon(struct ieee80211_hw *hw);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001782
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001783void il_set_rxon_hwcrypto(struct il_priv *il, int hw_decrypt);
1784int il_check_rxon_cmd(struct il_priv *il);
1785int il_full_rxon_required(struct il_priv *il);
1786int il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch);
1787void il_set_flags_for_band(struct il_priv *il, enum ieee80211_band band,
1788 struct ieee80211_vif *vif);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001789u8 il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band);
1790void il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001791bool il_is_ht40_tx_allowed(struct il_priv *il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001792 struct ieee80211_sta_ht_cap *ht_cap);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001793void il_connection_init_rx_config(struct il_priv *il);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001794void il_set_rate(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001795int il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr,
1796 u32 decrypt_res, struct ieee80211_rx_status *stats);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001797void il_irq_handle_error(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001798int il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001799void il_mac_remove_interface(struct ieee80211_hw *hw,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001800 struct ieee80211_vif *vif);
1801int il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1802 enum nl80211_iftype newtype, bool newp2p);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001803int il_alloc_txq_mem(struct il_priv *il);
1804void il_txq_mem(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001805
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001806#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001807int il_alloc_traffic_mem(struct il_priv *il);
1808void il_free_traffic_mem(struct il_priv *il);
1809void il_reset_traffic_log(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001810void il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
1811 struct ieee80211_hdr *header);
1812void il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
1813 struct ieee80211_hdr *header);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001814const char *il_get_mgmt_string(int cmd);
1815const char *il_get_ctrl_string(int cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001816void il_clear_traffic_stats(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001817void il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001818#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001819static inline int
1820il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001821{
1822 return 0;
1823}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001824
1825static inline void
1826il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001827{
1828}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001829
1830static inline void
1831il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001832{
1833}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001834
1835static inline void
1836il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
1837 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001838{
1839}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001840
1841static inline void
1842il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
1843 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001844{
1845}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001846
1847static inline void
1848il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001849{
1850}
1851#endif
1852/*****************************************************
1853 * RX handlers.
1854 * **************************************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001855void il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb);
1856void il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb);
1857void il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001858
1859/*****************************************************
1860* RX
1861******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001862void il_cmd_queue_unmap(struct il_priv *il);
1863void il_cmd_queue_free(struct il_priv *il);
1864int il_rx_queue_alloc(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001865void il_rx_queue_update_write_ptr(struct il_priv *il, struct il_rx_queue *q);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001866int il_rx_queue_space(const struct il_rx_queue *q);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001867void il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001868/* Handlers */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001869void il_hdl_spectrum_measurement(struct il_priv *il, struct il_rx_buf *rxb);
1870void il_recover_from_stats(struct il_priv *il, struct il_rx_pkt *pkt);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001871void il_chswitch_done(struct il_priv *il, bool is_success);
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001872void il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001873
1874/* TX helpers */
1875
1876/*****************************************************
1877* TX
1878******************************************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001879void il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq);
1880int il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
1881 u32 txq_id);
1882void il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq,
1883 int slots_num, u32 txq_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001884void il_tx_queue_unmap(struct il_priv *il, int txq_id);
1885void il_tx_queue_free(struct il_priv *il, int txq_id);
1886void il_setup_watchdog(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001887/*****************************************************
1888 * TX power
1889 ****************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001890int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001891
1892/*******************************************************************************
1893 * Rate
1894 ******************************************************************************/
1895
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001896u8 il_get_lowest_plcp(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001897
1898/*******************************************************************************
1899 * Scanning
1900 ******************************************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001901void il_init_scan_params(struct il_priv *il);
1902int il_scan_cancel(struct il_priv *il);
1903int il_scan_cancel_timeout(struct il_priv *il, unsigned long ms);
1904void il_force_scan_end(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001905int il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1906 struct cfg80211_scan_request *req);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001907void il_internal_short_hw_scan(struct il_priv *il);
1908int il_force_reset(struct il_priv *il, bool external);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001909u16 il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001910 const u8 *ta, const u8 *ie, int ie_len, int left);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001911void il_setup_rx_scan_handlers(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001912u16 il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band,
1913 u8 n_probes);
1914u16 il_get_passive_dwell_time(struct il_priv *il, enum ieee80211_band band,
1915 struct ieee80211_vif *vif);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001916void il_setup_scan_deferred_work(struct il_priv *il);
1917void il_cancel_scan_deferred_work(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001918
1919/* For faster active scanning, scan will move to the next channel if fewer than
1920 * PLCP_QUIET_THRESH packets are heard on this channel within
1921 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
1922 * time if it's a quiet channel (nothing responded to our probe, and there's
1923 * no other traffic).
1924 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001925#define IL_ACTIVE_QUIET_TIME cpu_to_le16(10) /* msec */
1926#define IL_PLCP_QUIET_THRESH cpu_to_le16(1) /* packets */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001927
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001928#define IL_SCAN_CHECK_WATCHDOG (HZ * 7)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001929
1930/*****************************************************
1931 * S e n d i n g H o s t C o m m a n d s *
1932 *****************************************************/
1933
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001934const char *il_get_cmd_string(u8 cmd);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001935int __must_check il_send_cmd_sync(struct il_priv *il, struct il_host_cmd *cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001936int il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001937int __must_check il_send_cmd_pdu(struct il_priv *il, u8 id, u16 len,
1938 const void *data);
1939int il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len, const void *data,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001940 void (*callback) (struct il_priv *il,
1941 struct il_device_cmd *cmd,
1942 struct il_rx_pkt *pkt));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001943
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001944int il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001945
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001946/*****************************************************
1947 * PCI *
1948 *****************************************************/
1949
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001950static inline u16
1951il_pcie_link_ctl(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001952{
1953 int pos;
1954 u16 pci_lnk_ctl;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001955 pos = pci_pcie_cap(il->pci_dev);
1956 pci_read_config_word(il->pci_dev, pos + PCI_EXP_LNKCTL, &pci_lnk_ctl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001957 return pci_lnk_ctl;
1958}
1959
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001960void il_bg_watchdog(unsigned long data);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001961u32 il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval);
1962__le32 il_add_beacon_time(struct il_priv *il, u32 base, u32 addon,
1963 u32 beacon_interval);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001964
1965#ifdef CONFIG_PM
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001966int il_pci_suspend(struct device *device);
1967int il_pci_resume(struct device *device);
1968extern const struct dev_pm_ops il_pm_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001969
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001970#define IL_LEGACY_PM_OPS (&il_pm_ops)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001971
1972#else /* !CONFIG_PM */
1973
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001974#define IL_LEGACY_PM_OPS NULL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001975
1976#endif /* !CONFIG_PM */
1977
1978/*****************************************************
1979* Error Handling Debugging
1980******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001981void il4965_dump_nic_error_log(struct il_priv *il);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001982#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001983void il_print_rx_config_cmd(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001984#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001985static inline void
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001986il_print_rx_config_cmd(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001987{
1988}
1989#endif
1990
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001991void il_clear_isr_stats(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001992
1993/*****************************************************
1994* GEOS
1995******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001996int il_init_geos(struct il_priv *il);
1997void il_free_geos(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001998
1999/*************** DRIVER STATUS FUNCTIONS *****/
2000
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002001#define S_HCMD_ACTIVE 0 /* host command in progress */
2002/* 1 is unused (used to be S_HCMD_SYNC_ACTIVE) */
2003#define S_INT_ENABLED 2
2004#define S_RF_KILL_HW 3
2005#define S_CT_KILL 4
2006#define S_INIT 5
2007#define S_ALIVE 6
2008#define S_READY 7
2009#define S_TEMPERATURE 8
2010#define S_GEO_CONFIGURED 9
2011#define S_EXIT_PENDING 10
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01002012#define S_STATS 12
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002013#define S_SCANNING 13
2014#define S_SCAN_ABORTING 14
2015#define S_SCAN_HW 15
2016#define S_POWER_PMI 16
2017#define S_FW_ERROR 17
2018#define S_CHANNEL_SWITCH_PENDING 18
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002019
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002020static inline int
2021il_is_ready(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002022{
2023 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
2024 * set but EXIT_PENDING is not */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002025 return test_bit(S_READY, &il->status) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002026 test_bit(S_GEO_CONFIGURED, &il->status) &&
2027 !test_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002028}
2029
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002030static inline int
2031il_is_alive(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002032{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002033 return test_bit(S_ALIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002034}
2035
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002036static inline int
2037il_is_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002038{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002039 return test_bit(S_INIT, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002040}
2041
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002042static inline int
2043il_is_rfkill_hw(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002044{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002045 return test_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002046}
2047
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002048static inline int
2049il_is_rfkill(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002050{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002051 return il_is_rfkill_hw(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002052}
2053
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002054static inline int
2055il_is_ctkill(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002056{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002057 return test_bit(S_CT_KILL, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002058}
2059
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002060static inline int
2061il_is_ready_rf(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002062{
2063
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002064 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002065 return 0;
2066
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002067 return il_is_ready(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002068}
2069
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002070extern void il_send_bt_config(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002071extern int il_send_stats_request(struct il_priv *il, u8 flags, bool clear);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002072void il_apm_stop(struct il_priv *il);
2073int il_apm_init(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002074
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002075int il_send_rxon_timing(struct il_priv *il);
2076
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002077static inline int
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002078il_send_rxon_assoc(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002079{
Stanislaw Gruszkac39ae9f2012-02-03 17:31:58 +01002080 return il->ops->hcmd->rxon_assoc(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002081}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002082
2083static inline int
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002084il_commit_rxon(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002085{
Stanislaw Gruszkac39ae9f2012-02-03 17:31:58 +01002086 return il->ops->hcmd->commit_rxon(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002087}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002088
2089static inline const struct ieee80211_supported_band *
2090il_get_hw_mode(struct il_priv *il, enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002091{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002092 return il->hw->wiphy->bands[band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002093}
2094
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002095/* mac80211 handlers */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002096int il_mac_config(struct ieee80211_hw *hw, u32 changed);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002097void il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
2098void il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2099 struct ieee80211_bss_conf *bss_conf, u32 changes);
2100void il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002101 __le16 fc, __le32 *tx_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002102
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002103irqreturn_t il_isr(int irq, void *data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002104
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002105extern void il_set_bit(struct il_priv *p, u32 r, u32 m);
2106extern void il_clear_bit(struct il_priv *p, u32 r, u32 m);
Stanislaw Gruszka1e0f32a2012-02-13 11:23:09 +01002107extern bool _il_grab_nic_access(struct il_priv *il);
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002108extern int _il_poll_bit(struct il_priv *il, u32 addr, u32 bits, u32 mask, int timeout);
2109extern int il_poll_bit(struct il_priv *il, u32 addr, u32 mask, int timeout);
2110extern u32 il_rd_prph(struct il_priv *il, u32 reg);
2111extern void il_wr_prph(struct il_priv *il, u32 addr, u32 val);
2112extern u32 il_read_targ_mem(struct il_priv *il, u32 addr);
2113extern void il_write_targ_mem(struct il_priv *il, u32 addr, u32 val);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002114
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002115static inline void
2116_il_write8(struct il_priv *il, u32 ofs, u8 val)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002117{
Stanislaw Gruszkaa5f16132012-02-13 11:23:11 +01002118 writeb(val, il->hw_base + ofs);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002119}
2120#define il_write8(il, ofs, val) _il_write8(il, ofs, val)
2121
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002122static inline void
2123_il_wr(struct il_priv *il, u32 ofs, u32 val)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002124{
Stanislaw Gruszkaa5f16132012-02-13 11:23:11 +01002125 writel(val, il->hw_base + ofs);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002126}
2127
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002128static inline u32
2129_il_rd(struct il_priv *il, u32 ofs)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002130{
Stanislaw Gruszkaa5f16132012-02-13 11:23:11 +01002131 return readl(il->hw_base + ofs);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002132}
2133
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002134static inline void
2135_il_clear_bit(struct il_priv *il, u32 reg, u32 mask)
2136{
2137 _il_wr(il, reg, _il_rd(il, reg) & ~mask);
2138}
2139
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002140static inline void
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002141_il_set_bit(struct il_priv *il, u32 reg, u32 mask)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002142{
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002143 _il_wr(il, reg, _il_rd(il, reg) | mask);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002144}
2145
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002146static inline void
2147_il_release_nic_access(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002148{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002149 _il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Stanislaw Gruszka4e5ea202012-02-13 11:23:10 +01002150 /*
2151 * In above we are reading CSR_GP_CNTRL register, what will flush any
2152 * previous writes, but still want write, which clear MAC_ACCESS_REQ
2153 * bit, be performed on PCI bus before any other writes scheduled on
2154 * different CPUs (after we drop reg_lock).
2155 */
2156 mmiowb();
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002157}
2158
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002159static inline u32
2160il_rd(struct il_priv *il, u32 reg)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002161{
2162 u32 value;
2163 unsigned long reg_flags;
2164
2165 spin_lock_irqsave(&il->reg_lock, reg_flags);
2166 _il_grab_nic_access(il);
2167 value = _il_rd(il, reg);
2168 _il_release_nic_access(il);
2169 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2170 return value;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002171}
2172
2173static inline void
2174il_wr(struct il_priv *il, u32 reg, u32 value)
2175{
2176 unsigned long reg_flags;
2177
2178 spin_lock_irqsave(&il->reg_lock, reg_flags);
Stanislaw Gruszka1e0f32a2012-02-13 11:23:09 +01002179 if (likely(_il_grab_nic_access(il))) {
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002180 _il_wr(il, reg, value);
2181 _il_release_nic_access(il);
2182 }
2183 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2184}
2185
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002186static inline u32
2187_il_rd_prph(struct il_priv *il, u32 reg)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002188{
2189 _il_wr(il, HBUS_TARG_PRPH_RADDR, reg | (3 << 24));
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002190 return _il_rd(il, HBUS_TARG_PRPH_RDAT);
2191}
2192
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002193static inline void
2194_il_wr_prph(struct il_priv *il, u32 addr, u32 val)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002195{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002196 _il_wr(il, HBUS_TARG_PRPH_WADDR, ((addr & 0x0000FFFF) | (3 << 24)));
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002197 _il_wr(il, HBUS_TARG_PRPH_WDAT, val);
2198}
2199
2200static inline void
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002201il_set_bits_prph(struct il_priv *il, u32 reg, u32 mask)
2202{
2203 unsigned long reg_flags;
2204
2205 spin_lock_irqsave(&il->reg_lock, reg_flags);
Stanislaw Gruszka1e0f32a2012-02-13 11:23:09 +01002206 if (likely(_il_grab_nic_access(il))) {
2207 _il_wr_prph(il, reg, (_il_rd_prph(il, reg) | mask));
2208 _il_release_nic_access(il);
2209 }
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002210 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2211}
2212
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002213static inline void
2214il_set_bits_mask_prph(struct il_priv *il, u32 reg, u32 bits, u32 mask)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002215{
2216 unsigned long reg_flags;
2217
2218 spin_lock_irqsave(&il->reg_lock, reg_flags);
Stanislaw Gruszka1e0f32a2012-02-13 11:23:09 +01002219 if (likely(_il_grab_nic_access(il))) {
2220 _il_wr_prph(il, reg, ((_il_rd_prph(il, reg) & mask) | bits));
2221 _il_release_nic_access(il);
2222 }
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002223 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2224}
2225
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002226static inline void
2227il_clear_bits_prph(struct il_priv *il, u32 reg, u32 mask)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002228{
2229 unsigned long reg_flags;
2230 u32 val;
2231
2232 spin_lock_irqsave(&il->reg_lock, reg_flags);
Stanislaw Gruszka1e0f32a2012-02-13 11:23:09 +01002233 if (likely(_il_grab_nic_access(il))) {
2234 val = _il_rd_prph(il, reg);
2235 _il_wr_prph(il, reg, (val & ~mask));
2236 _il_release_nic_access(il);
2237 }
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002238 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2239}
2240
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002241#define HW_KEY_DYNAMIC 0
2242#define HW_KEY_DEFAULT 1
2243
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002244#define IL_STA_DRIVER_ACTIVE BIT(0) /* driver entry is active */
2245#define IL_STA_UCODE_ACTIVE BIT(1) /* ucode entry is active */
2246#define IL_STA_UCODE_INPROGRESS BIT(2) /* ucode entry is in process of
2247 being activated */
2248#define IL_STA_LOCAL BIT(3) /* station state not directed by mac80211;
2249 (this is for the IBSS BSSID stations) */
2250#define IL_STA_BCAST BIT(4) /* this station is the special bcast station */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002251
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002252void il_restore_stations(struct il_priv *il);
2253void il_clear_ucode_stations(struct il_priv *il);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002254void il_dealloc_bcast_stations(struct il_priv *il);
2255int il_get_free_ucode_key_idx(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002256int il_send_add_sta(struct il_priv *il, struct il_addsta_cmd *sta, u8 flags);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002257int il_add_station_common(struct il_priv *il, const u8 *addr, bool is_ap,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002258 struct ieee80211_sta *sta, u8 *sta_id_r);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002259int il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr);
2260int il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2261 struct ieee80211_sta *sta);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002262
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002263u8 il_prep_station(struct il_priv *il, const u8 *addr, bool is_ap,
2264 struct ieee80211_sta *sta);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002265
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002266int il_send_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq,
2267 u8 flags, bool init);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002268
2269/**
2270 * il_clear_driver_stations - clear knowledge of all stations from driver
2271 * @il: iwl il struct
2272 *
2273 * This is called during il_down() to make sure that in the case
2274 * we're coming there from a hardware restart mac80211 will be
2275 * able to reconfigure stations -- if we're getting there in the
2276 * normal down flow then the stations will already be cleared.
2277 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002278static inline void
2279il_clear_driver_stations(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002280{
2281 unsigned long flags;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002282
2283 spin_lock_irqsave(&il->sta_lock, flags);
2284 memset(il->stations, 0, sizeof(il->stations));
2285 il->num_stations = 0;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002286 il->ucode_key_table = 0;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002287 spin_unlock_irqrestore(&il->sta_lock, flags);
2288}
2289
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002290static inline int
2291il_sta_id(struct ieee80211_sta *sta)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002292{
2293 if (WARN_ON(!sta))
2294 return IL_INVALID_STATION;
2295
2296 return ((struct il_station_priv_common *)sta->drv_priv)->sta_id;
2297}
2298
2299/**
2300 * il_sta_id_or_broadcast - return sta_id or broadcast sta
2301 * @il: iwl il
2302 * @context: the current context
2303 * @sta: mac80211 station
2304 *
2305 * In certain circumstances mac80211 passes a station pointer
2306 * that may be %NULL, for example during TX or key setup. In
2307 * that case, we need to use the broadcast station, so this
2308 * inline wraps that pattern.
2309 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002310static inline int
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002311il_sta_id_or_broadcast(struct il_priv *il, struct ieee80211_sta *sta)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002312{
2313 int sta_id;
2314
2315 if (!sta)
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01002316 return il->hw_params.bcast_id;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002317
2318 sta_id = il_sta_id(sta);
2319
2320 /*
2321 * mac80211 should not be passing a partially
2322 * initialised station!
2323 */
2324 WARN_ON(sta_id == IL_INVALID_STATION);
2325
2326 return sta_id;
2327}
2328
2329/**
2330 * il_queue_inc_wrap - increment queue idx, wrap back to beginning
2331 * @idx -- current idx
2332 * @n_bd -- total number of entries in queue (must be power of 2)
2333 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002334static inline int
2335il_queue_inc_wrap(int idx, int n_bd)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002336{
2337 return ++idx & (n_bd - 1);
2338}
2339
2340/**
2341 * il_queue_dec_wrap - decrement queue idx, wrap back to end
2342 * @idx -- current idx
2343 * @n_bd -- total number of entries in queue (must be power of 2)
2344 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002345static inline int
2346il_queue_dec_wrap(int idx, int n_bd)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002347{
2348 return --idx & (n_bd - 1);
2349}
2350
2351/* TODO: Move fw_desc functions to iwl-pci.ko */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002352static inline void
2353il_free_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002354{
2355 if (desc->v_addr)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002356 dma_free_coherent(&pci_dev->dev, desc->len, desc->v_addr,
2357 desc->p_addr);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002358 desc->v_addr = NULL;
2359 desc->len = 0;
2360}
2361
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002362static inline int
2363il_alloc_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002364{
2365 if (!desc->len) {
2366 desc->v_addr = NULL;
2367 return -EINVAL;
2368 }
2369
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002370 desc->v_addr =
2371 dma_alloc_coherent(&pci_dev->dev, desc->len, &desc->p_addr,
2372 GFP_KERNEL);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002373 return (desc->v_addr != NULL) ? 0 : -ENOMEM;
2374}
2375
2376/*
2377 * we have 8 bits used like this:
2378 *
2379 * 7 6 5 4 3 2 1 0
2380 * | | | | | | | |
2381 * | | | | | | +-+-------- AC queue (0-3)
2382 * | | | | | |
2383 * | +-+-+-+-+------------ HW queue ID
2384 * |
2385 * +---------------------- unused
2386 */
2387static inline void
2388il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq)
2389{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002390 BUG_ON(ac > 3); /* only have 2 bits */
2391 BUG_ON(hwq > 31); /* only use 5 bits */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002392
2393 txq->swq_id = (hwq << 2) | ac;
2394}
2395
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002396static inline void
2397il_wake_queue(struct il_priv *il, struct il_tx_queue *txq)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002398{
2399 u8 queue = txq->swq_id;
2400 u8 ac = queue & 3;
2401 u8 hwq = (queue >> 2) & 0x1f;
2402
2403 if (test_and_clear_bit(hwq, il->queue_stopped))
2404 if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0)
2405 ieee80211_wake_queue(il->hw, ac);
2406}
2407
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002408static inline void
2409il_stop_queue(struct il_priv *il, struct il_tx_queue *txq)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002410{
2411 u8 queue = txq->swq_id;
2412 u8 ac = queue & 3;
2413 u8 hwq = (queue >> 2) & 0x1f;
2414
2415 if (!test_and_set_bit(hwq, il->queue_stopped))
2416 if (atomic_inc_return(&il->queue_stop_count[ac]) > 0)
2417 ieee80211_stop_queue(il->hw, ac);
2418}
2419
2420#ifdef ieee80211_stop_queue
2421#undef ieee80211_stop_queue
2422#endif
2423
2424#define ieee80211_stop_queue DO_NOT_USE_ieee80211_stop_queue
2425
2426#ifdef ieee80211_wake_queue
2427#undef ieee80211_wake_queue
2428#endif
2429
2430#define ieee80211_wake_queue DO_NOT_USE_ieee80211_wake_queue
2431
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002432static inline void
2433il_disable_interrupts(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002434{
2435 clear_bit(S_INT_ENABLED, &il->status);
2436
2437 /* disable interrupts from uCode/NIC to host */
2438 _il_wr(il, CSR_INT_MASK, 0x00000000);
2439
2440 /* acknowledge/clear/reset any interrupts still pending
2441 * from uCode or flow handler (Rx/Tx DMA) */
2442 _il_wr(il, CSR_INT, 0xffffffff);
2443 _il_wr(il, CSR_FH_INT_STATUS, 0xffffffff);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002444}
2445
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002446static inline void
2447il_enable_rfkill_int(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002448{
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002449 _il_wr(il, CSR_INT_MASK, CSR_INT_BIT_RF_KILL);
2450}
2451
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002452static inline void
2453il_enable_interrupts(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002454{
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002455 set_bit(S_INT_ENABLED, &il->status);
2456 _il_wr(il, CSR_INT_MASK, il->inta_mask);
2457}
2458
2459/**
2460 * il_beacon_time_mask_low - mask of lower 32 bit of beacon time
2461 * @il -- pointer to il_priv data structure
2462 * @tsf_bits -- number of bits need to shift for masking)
2463 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002464static inline u32
2465il_beacon_time_mask_low(struct il_priv *il, u16 tsf_bits)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002466{
2467 return (1 << tsf_bits) - 1;
2468}
2469
2470/**
2471 * il_beacon_time_mask_high - mask of higher 32 bit of beacon time
2472 * @il -- pointer to il_priv data structure
2473 * @tsf_bits -- number of bits need to shift for masking)
2474 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002475static inline u32
2476il_beacon_time_mask_high(struct il_priv *il, u16 tsf_bits)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002477{
2478 return ((1 << (32 - tsf_bits)) - 1) << tsf_bits;
2479}
2480
2481/**
2482 * struct il_rb_status - reseve buffer status host memory mapped FH registers
2483 *
2484 * @closed_rb_num [0:11] - Indicates the idx of the RB which was closed
2485 * @closed_fr_num [0:11] - Indicates the idx of the RX Frame which was closed
2486 * @finished_rb_num [0:11] - Indicates the idx of the current RB
2487 * in which the last frame was written to
2488 * @finished_fr_num [0:11] - Indicates the idx of the RX Frame
2489 * which was transferred
2490 */
2491struct il_rb_status {
2492 __le16 closed_rb_num;
2493 __le16 closed_fr_num;
2494 __le16 finished_rb_num;
2495 __le16 finished_fr_nam;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002496 __le32 __unused; /* 3945 only */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002497} __packed;
2498
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002499#define TFD_QUEUE_SIZE_MAX (256)
2500#define TFD_QUEUE_SIZE_BC_DUP (64)
2501#define TFD_QUEUE_BC_SIZE (TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP)
2502#define IL_TX_DMA_MASK DMA_BIT_MASK(36)
2503#define IL_NUM_OF_TBS 20
2504
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002505static inline u8
2506il_get_dma_hi_addr(dma_addr_t addr)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002507{
2508 return (sizeof(addr) > sizeof(u32) ? (addr >> 16) >> 16 : 0) & 0xF;
2509}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002510
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002511/**
2512 * struct il_tfd_tb transmit buffer descriptor within transmit frame descriptor
2513 *
2514 * This structure contains dma address and length of transmission address
2515 *
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002516 * @lo: low [31:0] portion of the dma address of TX buffer every even is
2517 * unaligned on 16 bit boundary
2518 * @hi_n_len: 0-3 [35:32] portion of dma
2519 * 4-15 length of the tx buffer
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002520 */
2521struct il_tfd_tb {
2522 __le32 lo;
2523 __le16 hi_n_len;
2524} __packed;
2525
2526/**
2527 * struct il_tfd
2528 *
2529 * Transmit Frame Descriptor (TFD)
2530 *
2531 * @ __reserved1[3] reserved
2532 * @ num_tbs 0-4 number of active tbs
2533 * 5 reserved
2534 * 6-7 padding (not used)
2535 * @ tbs[20] transmit frame buffer descriptors
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002536 * @ __pad padding
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002537 *
2538 * Each Tx queue uses a circular buffer of 256 TFDs stored in host DRAM.
2539 * Both driver and device share these circular buffers, each of which must be
2540 * contiguous 256 TFDs x 128 bytes-per-TFD = 32 KBytes
2541 *
2542 * Driver must indicate the physical address of the base of each
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002543 * circular buffer via the FH49_MEM_CBBC_QUEUE registers.
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002544 *
2545 * Each TFD contains pointer/size information for up to 20 data buffers
2546 * in host DRAM. These buffers collectively contain the (one) frame described
2547 * by the TFD. Each buffer must be a single contiguous block of memory within
2548 * itself, but buffers may be scattered in host DRAM. Each buffer has max size
2549 * of (4K - 4). The concatenates all of a TFD's buffers into a single
2550 * Tx frame, up to 8 KBytes in size.
2551 *
2552 * A maximum of 255 (not 256!) TFDs may be on a queue waiting for Tx.
2553 */
2554struct il_tfd {
2555 u8 __reserved1[3];
2556 u8 num_tbs;
2557 struct il_tfd_tb tbs[IL_NUM_OF_TBS];
2558 __le32 __pad;
2559} __packed;
2560/* PCI registers */
2561#define PCI_CFG_RETRY_TIMEOUT 0x041
2562
2563/* PCI register values */
2564#define PCI_CFG_LINK_CTRL_VAL_L0S_EN 0x01
2565#define PCI_CFG_LINK_CTRL_VAL_L1_EN 0x02
2566
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002567struct il_rate_info {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002568 u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
2569 u8 plcp_siso; /* uCode API: RATE_SISO_6M_PLCP, etc. */
2570 u8 plcp_mimo2; /* uCode API: RATE_MIMO2_6M_PLCP, etc. */
2571 u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
2572 u8 prev_ieee; /* previous rate in IEEE speeds */
2573 u8 next_ieee; /* next rate in IEEE speeds */
2574 u8 prev_rs; /* previous rate used in rs algo */
2575 u8 next_rs; /* next rate used in rs algo */
2576 u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
2577 u8 next_rs_tgg; /* next rate used in TGG rs algo */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002578};
2579
2580struct il3945_rate_info {
2581 u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
2582 u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
2583 u8 prev_ieee; /* previous rate in IEEE speeds */
2584 u8 next_ieee; /* next rate in IEEE speeds */
2585 u8 prev_rs; /* previous rate used in rs algo */
2586 u8 next_rs; /* next rate used in rs algo */
2587 u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
2588 u8 next_rs_tgg; /* next rate used in TGG rs algo */
2589 u8 table_rs_idx; /* idx in rate scale table cmd */
2590 u8 prev_table_rs; /* prev in rate table cmd */
2591};
2592
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002593/*
2594 * These serve as idxes into
2595 * struct il_rate_info il_rates[RATE_COUNT];
2596 */
2597enum {
2598 RATE_1M_IDX = 0,
2599 RATE_2M_IDX,
2600 RATE_5M_IDX,
2601 RATE_11M_IDX,
2602 RATE_6M_IDX,
2603 RATE_9M_IDX,
2604 RATE_12M_IDX,
2605 RATE_18M_IDX,
2606 RATE_24M_IDX,
2607 RATE_36M_IDX,
2608 RATE_48M_IDX,
2609 RATE_54M_IDX,
2610 RATE_60M_IDX,
2611 RATE_COUNT,
2612 RATE_COUNT_LEGACY = RATE_COUNT - 1, /* Excluding 60M */
2613 RATE_COUNT_3945 = RATE_COUNT - 1,
2614 RATE_INVM_IDX = RATE_COUNT,
2615 RATE_INVALID = RATE_COUNT,
2616};
2617
2618enum {
2619 RATE_6M_IDX_TBL = 0,
2620 RATE_9M_IDX_TBL,
2621 RATE_12M_IDX_TBL,
2622 RATE_18M_IDX_TBL,
2623 RATE_24M_IDX_TBL,
2624 RATE_36M_IDX_TBL,
2625 RATE_48M_IDX_TBL,
2626 RATE_54M_IDX_TBL,
2627 RATE_1M_IDX_TBL,
2628 RATE_2M_IDX_TBL,
2629 RATE_5M_IDX_TBL,
2630 RATE_11M_IDX_TBL,
2631 RATE_INVM_IDX_TBL = RATE_INVM_IDX - 1,
2632};
2633
2634enum {
2635 IL_FIRST_OFDM_RATE = RATE_6M_IDX,
2636 IL39_LAST_OFDM_RATE = RATE_54M_IDX,
2637 IL_LAST_OFDM_RATE = RATE_60M_IDX,
2638 IL_FIRST_CCK_RATE = RATE_1M_IDX,
2639 IL_LAST_CCK_RATE = RATE_11M_IDX,
2640};
2641
2642/* #define vs. enum to keep from defaulting to 'large integer' */
2643#define RATE_6M_MASK (1 << RATE_6M_IDX)
2644#define RATE_9M_MASK (1 << RATE_9M_IDX)
2645#define RATE_12M_MASK (1 << RATE_12M_IDX)
2646#define RATE_18M_MASK (1 << RATE_18M_IDX)
2647#define RATE_24M_MASK (1 << RATE_24M_IDX)
2648#define RATE_36M_MASK (1 << RATE_36M_IDX)
2649#define RATE_48M_MASK (1 << RATE_48M_IDX)
2650#define RATE_54M_MASK (1 << RATE_54M_IDX)
2651#define RATE_60M_MASK (1 << RATE_60M_IDX)
2652#define RATE_1M_MASK (1 << RATE_1M_IDX)
2653#define RATE_2M_MASK (1 << RATE_2M_IDX)
2654#define RATE_5M_MASK (1 << RATE_5M_IDX)
2655#define RATE_11M_MASK (1 << RATE_11M_IDX)
2656
2657/* uCode API values for legacy bit rates, both OFDM and CCK */
2658enum {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002659 RATE_6M_PLCP = 13,
2660 RATE_9M_PLCP = 15,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002661 RATE_12M_PLCP = 5,
2662 RATE_18M_PLCP = 7,
2663 RATE_24M_PLCP = 9,
2664 RATE_36M_PLCP = 11,
2665 RATE_48M_PLCP = 1,
2666 RATE_54M_PLCP = 3,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002667 RATE_60M_PLCP = 3, /*FIXME:RS:should be removed */
2668 RATE_1M_PLCP = 10,
2669 RATE_2M_PLCP = 20,
2670 RATE_5M_PLCP = 55,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002671 RATE_11M_PLCP = 110,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002672 /*FIXME:RS:add RATE_LEGACY_INVM_PLCP = 0, */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002673};
2674
2675/* uCode API values for OFDM high-throughput (HT) bit rates */
2676enum {
2677 RATE_SISO_6M_PLCP = 0,
2678 RATE_SISO_12M_PLCP = 1,
2679 RATE_SISO_18M_PLCP = 2,
2680 RATE_SISO_24M_PLCP = 3,
2681 RATE_SISO_36M_PLCP = 4,
2682 RATE_SISO_48M_PLCP = 5,
2683 RATE_SISO_54M_PLCP = 6,
2684 RATE_SISO_60M_PLCP = 7,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002685 RATE_MIMO2_6M_PLCP = 0x8,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002686 RATE_MIMO2_12M_PLCP = 0x9,
2687 RATE_MIMO2_18M_PLCP = 0xa,
2688 RATE_MIMO2_24M_PLCP = 0xb,
2689 RATE_MIMO2_36M_PLCP = 0xc,
2690 RATE_MIMO2_48M_PLCP = 0xd,
2691 RATE_MIMO2_54M_PLCP = 0xe,
2692 RATE_MIMO2_60M_PLCP = 0xf,
2693 RATE_SISO_INVM_PLCP,
2694 RATE_MIMO2_INVM_PLCP = RATE_SISO_INVM_PLCP,
2695};
2696
2697/* MAC header values for bit rates */
2698enum {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002699 RATE_6M_IEEE = 12,
2700 RATE_9M_IEEE = 18,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002701 RATE_12M_IEEE = 24,
2702 RATE_18M_IEEE = 36,
2703 RATE_24M_IEEE = 48,
2704 RATE_36M_IEEE = 72,
2705 RATE_48M_IEEE = 96,
2706 RATE_54M_IEEE = 108,
2707 RATE_60M_IEEE = 120,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002708 RATE_1M_IEEE = 2,
2709 RATE_2M_IEEE = 4,
2710 RATE_5M_IEEE = 11,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002711 RATE_11M_IEEE = 22,
2712};
2713
2714#define IL_CCK_BASIC_RATES_MASK \
2715 (RATE_1M_MASK | \
2716 RATE_2M_MASK)
2717
2718#define IL_CCK_RATES_MASK \
2719 (IL_CCK_BASIC_RATES_MASK | \
2720 RATE_5M_MASK | \
2721 RATE_11M_MASK)
2722
2723#define IL_OFDM_BASIC_RATES_MASK \
2724 (RATE_6M_MASK | \
2725 RATE_12M_MASK | \
2726 RATE_24M_MASK)
2727
2728#define IL_OFDM_RATES_MASK \
2729 (IL_OFDM_BASIC_RATES_MASK | \
2730 RATE_9M_MASK | \
2731 RATE_18M_MASK | \
2732 RATE_36M_MASK | \
2733 RATE_48M_MASK | \
2734 RATE_54M_MASK)
2735
2736#define IL_BASIC_RATES_MASK \
2737 (IL_OFDM_BASIC_RATES_MASK | \
2738 IL_CCK_BASIC_RATES_MASK)
2739
2740#define RATES_MASK ((1 << RATE_COUNT) - 1)
2741#define RATES_MASK_3945 ((1 << RATE_COUNT_3945) - 1)
2742
2743#define IL_INVALID_VALUE -1
2744
2745#define IL_MIN_RSSI_VAL -100
2746#define IL_MAX_RSSI_VAL 0
2747
2748/* These values specify how many Tx frame attempts before
2749 * searching for a new modulation mode */
2750#define IL_LEGACY_FAILURE_LIMIT 160
2751#define IL_LEGACY_SUCCESS_LIMIT 480
2752#define IL_LEGACY_TBL_COUNT 160
2753
2754#define IL_NONE_LEGACY_FAILURE_LIMIT 400
2755#define IL_NONE_LEGACY_SUCCESS_LIMIT 4500
2756#define IL_NONE_LEGACY_TBL_COUNT 1500
2757
2758/* Success ratio (ACKed / attempted tx frames) values (perfect is 128 * 100) */
2759#define IL_RS_GOOD_RATIO 12800 /* 100% */
2760#define RATE_SCALE_SWITCH 10880 /* 85% */
2761#define RATE_HIGH_TH 10880 /* 85% */
2762#define RATE_INCREASE_TH 6400 /* 50% */
2763#define RATE_DECREASE_TH 1920 /* 15% */
2764
2765/* possible actions when in legacy mode */
2766#define IL_LEGACY_SWITCH_ANTENNA1 0
2767#define IL_LEGACY_SWITCH_ANTENNA2 1
2768#define IL_LEGACY_SWITCH_SISO 2
2769#define IL_LEGACY_SWITCH_MIMO2_AB 3
2770#define IL_LEGACY_SWITCH_MIMO2_AC 4
2771#define IL_LEGACY_SWITCH_MIMO2_BC 5
2772
2773/* possible actions when in siso mode */
2774#define IL_SISO_SWITCH_ANTENNA1 0
2775#define IL_SISO_SWITCH_ANTENNA2 1
2776#define IL_SISO_SWITCH_MIMO2_AB 2
2777#define IL_SISO_SWITCH_MIMO2_AC 3
2778#define IL_SISO_SWITCH_MIMO2_BC 4
2779#define IL_SISO_SWITCH_GI 5
2780
2781/* possible actions when in mimo mode */
2782#define IL_MIMO2_SWITCH_ANTENNA1 0
2783#define IL_MIMO2_SWITCH_ANTENNA2 1
2784#define IL_MIMO2_SWITCH_SISO_A 2
2785#define IL_MIMO2_SWITCH_SISO_B 3
2786#define IL_MIMO2_SWITCH_SISO_C 4
2787#define IL_MIMO2_SWITCH_GI 5
2788
2789#define IL_MAX_SEARCH IL_MIMO2_SWITCH_GI
2790
2791#define IL_ACTION_LIMIT 3 /* # possible actions */
2792
2793#define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
2794
2795/* load per tid defines for A-MPDU activation */
2796#define IL_AGG_TPT_THREHOLD 0
2797#define IL_AGG_LOAD_THRESHOLD 10
2798#define IL_AGG_ALL_TID 0xff
2799#define TID_QUEUE_CELL_SPACING 50 /*mS */
2800#define TID_QUEUE_MAX_SIZE 20
2801#define TID_ROUND_VALUE 5 /* mS */
2802#define TID_MAX_LOAD_COUNT 8
2803
2804#define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
2805#define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
2806
2807extern const struct il_rate_info il_rates[RATE_COUNT];
2808
2809enum il_table_type {
2810 LQ_NONE,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002811 LQ_G, /* legacy types */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002812 LQ_A,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002813 LQ_SISO, /* high-throughput types */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002814 LQ_MIMO2,
2815 LQ_MAX,
2816};
2817
2818#define is_legacy(tbl) ((tbl) == LQ_G || (tbl) == LQ_A)
2819#define is_siso(tbl) ((tbl) == LQ_SISO)
2820#define is_mimo2(tbl) ((tbl) == LQ_MIMO2)
2821#define is_mimo(tbl) (is_mimo2(tbl))
2822#define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl))
2823#define is_a_band(tbl) ((tbl) == LQ_A)
2824#define is_g_and(tbl) ((tbl) == LQ_G)
2825
2826#define ANT_NONE 0x0
2827#define ANT_A BIT(0)
2828#define ANT_B BIT(1)
2829#define ANT_AB (ANT_A | ANT_B)
2830#define ANT_C BIT(2)
2831#define ANT_AC (ANT_A | ANT_C)
2832#define ANT_BC (ANT_B | ANT_C)
2833#define ANT_ABC (ANT_AB | ANT_C)
2834
2835#define IL_MAX_MCS_DISPLAY_SIZE 12
2836
2837struct il_rate_mcs_info {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002838 char mbps[IL_MAX_MCS_DISPLAY_SIZE];
2839 char mcs[IL_MAX_MCS_DISPLAY_SIZE];
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002840};
2841
2842/**
2843 * struct il_rate_scale_data -- tx success history for one rate
2844 */
2845struct il_rate_scale_data {
2846 u64 data; /* bitmap of successful frames */
2847 s32 success_counter; /* number of frames successful */
2848 s32 success_ratio; /* per-cent * 128 */
2849 s32 counter; /* number of frames attempted */
2850 s32 average_tpt; /* success ratio * expected throughput */
2851 unsigned long stamp;
2852};
2853
2854/**
2855 * struct il_scale_tbl_info -- tx params and success history for all rates
2856 *
2857 * There are two of these in struct il_lq_sta,
2858 * one for "active", and one for "search".
2859 */
2860struct il_scale_tbl_info {
2861 enum il_table_type lq_type;
2862 u8 ant_type;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002863 u8 is_SGI; /* 1 = short guard interval */
2864 u8 is_ht40; /* 1 = 40 MHz channel width */
2865 u8 is_dup; /* 1 = duplicated data streams */
2866 u8 action; /* change modulation; IL_[LEGACY/SISO/MIMO]_SWITCH_* */
2867 u8 max_search; /* maximun number of tables we can search */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002868 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002869 u32 current_rate; /* rate_n_flags, uCode API format */
2870 struct il_rate_scale_data win[RATE_COUNT]; /* rate histories */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002871};
2872
2873struct il_traffic_load {
2874 unsigned long time_stamp; /* age of the oldest stats */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002875 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002876 * slice */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002877 u32 total; /* total num of packets during the
2878 * last TID_MAX_TIME_DIFF */
2879 u8 queue_count; /* number of queues that has
2880 * been used since the last cleanup */
2881 u8 head; /* start of the circular buffer */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002882};
2883
2884/**
2885 * struct il_lq_sta -- driver's rate scaling ilate structure
2886 *
2887 * Pointer to this gets passed back and forth between driver and mac80211.
2888 */
2889struct il_lq_sta {
2890 u8 active_tbl; /* idx of active table, range 0-1 */
2891 u8 enable_counter; /* indicates HT mode */
2892 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
2893 u8 search_better_tbl; /* 1: currently trying alternate mode */
2894 s32 last_tpt;
2895
2896 /* The following determine when to search for a new mode */
2897 u32 table_count_limit;
2898 u32 max_failure_limit; /* # failed frames before new search */
2899 u32 max_success_limit; /* # successful frames before new search */
2900 u32 table_count;
2901 u32 total_failed; /* total failed frames, any/all rates */
2902 u32 total_success; /* total successful frames, any/all rates */
2903 u64 flush_timer; /* time staying in mode before new search */
2904
2905 u8 action_counter; /* # mode-switch actions tried */
2906 u8 is_green;
2907 u8 is_dup;
2908 enum ieee80211_band band;
2909
2910 /* The following are bitmaps of rates; RATE_6M_MASK, etc. */
2911 u32 supp_rates;
2912 u16 active_legacy_rate;
2913 u16 active_siso_rate;
2914 u16 active_mimo2_rate;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002915 s8 max_rate_idx; /* Max rate set by user */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002916 u8 missed_rate_counter;
2917
2918 struct il_link_quality_cmd lq;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002919 struct il_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002920 struct il_traffic_load load[TID_MAX_LOAD_COUNT];
2921 u8 tx_agg_tid_en;
2922#ifdef CONFIG_MAC80211_DEBUGFS
2923 struct dentry *rs_sta_dbgfs_scale_table_file;
2924 struct dentry *rs_sta_dbgfs_stats_table_file;
2925 struct dentry *rs_sta_dbgfs_rate_scale_data_file;
2926 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
2927 u32 dbg_fixed_rate;
2928#endif
2929 struct il_priv *drv;
2930
2931 /* used to be in sta_info */
2932 int last_txrate_idx;
2933 /* last tx rate_n_flags */
2934 u32 last_rate_n_flags;
2935 /* packets destined for this STA are aggregated */
2936 u8 is_agg;
2937};
2938
2939/*
2940 * il_station_priv: Driver's ilate station information
2941 *
2942 * When mac80211 creates a station it reserves some space (hw->sta_data_size)
2943 * in the structure for use by driver. This structure is places in that
2944 * space.
2945 *
2946 * The common struct MUST be first because it is shared between
2947 * 3945 and 4965!
2948 */
2949struct il_station_priv {
2950 struct il_station_priv_common common;
2951 struct il_lq_sta lq_sta;
2952 atomic_t pending_frames;
2953 bool client;
2954 bool asleep;
2955};
2956
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002957static inline u8
2958il4965_num_of_ant(u8 m)
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002959{
2960 return !!(m & ANT_A) + !!(m & ANT_B) + !!(m & ANT_C);
2961}
2962
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002963static inline u8
2964il4965_first_antenna(u8 mask)
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002965{
2966 if (mask & ANT_A)
2967 return ANT_A;
2968 if (mask & ANT_B)
2969 return ANT_B;
2970 return ANT_C;
2971}
2972
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002973/**
2974 * il3945_rate_scale_init - Initialize the rate scale table based on assoc info
2975 *
2976 * The specific throughput table used is based on the type of network
2977 * the associated with, including A, B, G, and G w/ TGG protection
2978 */
2979extern void il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id);
2980
2981/* Initialize station's rate scaling information after adding station */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002982extern void il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
2983 u8 sta_id);
2984extern void il3945_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
2985 u8 sta_id);
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002986
2987/**
2988 * il_rate_control_register - Register the rate control algorithm callbacks
2989 *
2990 * Since the rate control algorithm is hardware specific, there is no need
2991 * or reason to place it as a stand alone module. The driver can call
2992 * il_rate_control_register in order to register the rate control callbacks
2993 * with the mac80211 subsystem. This should be performed prior to calling
2994 * ieee80211_register_hw
2995 *
2996 */
2997extern int il4965_rate_control_register(void);
2998extern int il3945_rate_control_register(void);
2999
3000/**
3001 * il_rate_control_unregister - Unregister the rate control callbacks
3002 *
3003 * This should be called after calling ieee80211_unregister_hw, but before
3004 * the driver is unloaded.
3005 */
3006extern void il4965_rate_control_unregister(void);
3007extern void il3945_rate_control_unregister(void);
3008
Stanislaw Gruszka99412002011-08-31 13:53:04 +02003009extern int il_power_update_mode(struct il_priv *il, bool force);
3010extern void il_power_initialize(struct il_priv *il);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02003011
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003012extern u32 il_debug_level;
3013
3014#ifdef CONFIG_IWLEGACY_DEBUG
3015/*
3016 * il_get_debug_level: Return active debug level for device
3017 *
3018 * Using sysfs it is possible to set per device debug level. This debug
3019 * level will be used if set, otherwise the global debug level which can be
3020 * set via module parameter is used.
3021 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003022static inline u32
3023il_get_debug_level(struct il_priv *il)
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003024{
3025 if (il->debug_level)
3026 return il->debug_level;
3027 else
3028 return il_debug_level;
3029}
3030#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003031static inline u32
3032il_get_debug_level(struct il_priv *il)
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003033{
3034 return il_debug_level;
3035}
3036#endif
3037
3038#define il_print_hex_error(il, p, len) \
3039do { \
3040 print_hex_dump(KERN_ERR, "iwl data: ", \
3041 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
3042} while (0)
3043
3044#ifdef CONFIG_IWLEGACY_DEBUG
3045#define IL_DBG(level, fmt, args...) \
3046do { \
3047 if (il_get_debug_level(il) & level) \
3048 dev_printk(KERN_ERR, &il->hw->wiphy->dev, \
3049 "%c %s " fmt, in_interrupt() ? 'I' : 'U', \
3050 __func__ , ## args); \
3051} while (0)
3052
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003053#define il_print_hex_dump(il, level, p, len) \
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003054do { \
3055 if (il_get_debug_level(il) & level) \
3056 print_hex_dump(KERN_DEBUG, "iwl data: ", \
3057 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
3058} while (0)
3059
3060#else
3061#define IL_DBG(level, fmt, args...)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003062static inline void
3063il_print_hex_dump(struct il_priv *il, int level, const void *p, u32 len)
3064{
3065}
3066#endif /* CONFIG_IWLEGACY_DEBUG */
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003067
3068#ifdef CONFIG_IWLEGACY_DEBUGFS
3069int il_dbgfs_register(struct il_priv *il, const char *name);
3070void il_dbgfs_unregister(struct il_priv *il);
3071#else
3072static inline int
3073il_dbgfs_register(struct il_priv *il, const char *name)
3074{
3075 return 0;
3076}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003077
3078static inline void
3079il_dbgfs_unregister(struct il_priv *il)
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003080{
3081}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003082#endif /* CONFIG_IWLEGACY_DEBUGFS */
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003083
3084/*
3085 * To use the debug system:
3086 *
3087 * If you are defining a new debug classification, simply add it to the #define
3088 * list here in the form of
3089 *
3090 * #define IL_DL_xxxx VALUE
3091 *
3092 * where xxxx should be the name of the classification (for example, WEP).
3093 *
3094 * You then need to either add a IL_xxxx_DEBUG() macro definition for your
3095 * classification, or use IL_DBG(IL_DL_xxxx, ...) whenever you want
3096 * to send output to that classification.
3097 *
3098 * The active debug levels can be accessed via files
3099 *
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003100 * /sys/module/iwl4965/parameters/debug
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003101 * /sys/module/iwl3945/parameters/debug
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003102 * /sys/class/net/wlan0/device/debug_level
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003103 *
3104 * when CONFIG_IWLEGACY_DEBUG=y.
3105 */
3106
3107/* 0x0000000F - 0x00000001 */
3108#define IL_DL_INFO (1 << 0)
3109#define IL_DL_MAC80211 (1 << 1)
3110#define IL_DL_HCMD (1 << 2)
3111#define IL_DL_STATE (1 << 3)
3112/* 0x000000F0 - 0x00000010 */
3113#define IL_DL_MACDUMP (1 << 4)
3114#define IL_DL_HCMD_DUMP (1 << 5)
3115#define IL_DL_EEPROM (1 << 6)
3116#define IL_DL_RADIO (1 << 7)
3117/* 0x00000F00 - 0x00000100 */
3118#define IL_DL_POWER (1 << 8)
3119#define IL_DL_TEMP (1 << 9)
3120#define IL_DL_NOTIF (1 << 10)
3121#define IL_DL_SCAN (1 << 11)
3122/* 0x0000F000 - 0x00001000 */
3123#define IL_DL_ASSOC (1 << 12)
3124#define IL_DL_DROP (1 << 13)
3125#define IL_DL_TXPOWER (1 << 14)
3126#define IL_DL_AP (1 << 15)
3127/* 0x000F0000 - 0x00010000 */
3128#define IL_DL_FW (1 << 16)
3129#define IL_DL_RF_KILL (1 << 17)
3130#define IL_DL_FW_ERRORS (1 << 18)
3131#define IL_DL_LED (1 << 19)
3132/* 0x00F00000 - 0x00100000 */
3133#define IL_DL_RATE (1 << 20)
3134#define IL_DL_CALIB (1 << 21)
3135#define IL_DL_WEP (1 << 22)
3136#define IL_DL_TX (1 << 23)
3137/* 0x0F000000 - 0x01000000 */
3138#define IL_DL_RX (1 << 24)
3139#define IL_DL_ISR (1 << 25)
3140#define IL_DL_HT (1 << 26)
3141/* 0xF0000000 - 0x10000000 */
3142#define IL_DL_11H (1 << 28)
3143#define IL_DL_STATS (1 << 29)
3144#define IL_DL_TX_REPLY (1 << 30)
3145#define IL_DL_QOS (1 << 31)
3146
3147#define D_INFO(f, a...) IL_DBG(IL_DL_INFO, f, ## a)
3148#define D_MAC80211(f, a...) IL_DBG(IL_DL_MAC80211, f, ## a)
3149#define D_MACDUMP(f, a...) IL_DBG(IL_DL_MACDUMP, f, ## a)
3150#define D_TEMP(f, a...) IL_DBG(IL_DL_TEMP, f, ## a)
3151#define D_SCAN(f, a...) IL_DBG(IL_DL_SCAN, f, ## a)
3152#define D_RX(f, a...) IL_DBG(IL_DL_RX, f, ## a)
3153#define D_TX(f, a...) IL_DBG(IL_DL_TX, f, ## a)
3154#define D_ISR(f, a...) IL_DBG(IL_DL_ISR, f, ## a)
3155#define D_LED(f, a...) IL_DBG(IL_DL_LED, f, ## a)
3156#define D_WEP(f, a...) IL_DBG(IL_DL_WEP, f, ## a)
3157#define D_HC(f, a...) IL_DBG(IL_DL_HCMD, f, ## a)
3158#define D_HC_DUMP(f, a...) IL_DBG(IL_DL_HCMD_DUMP, f, ## a)
3159#define D_EEPROM(f, a...) IL_DBG(IL_DL_EEPROM, f, ## a)
3160#define D_CALIB(f, a...) IL_DBG(IL_DL_CALIB, f, ## a)
3161#define D_FW(f, a...) IL_DBG(IL_DL_FW, f, ## a)
3162#define D_RF_KILL(f, a...) IL_DBG(IL_DL_RF_KILL, f, ## a)
3163#define D_DROP(f, a...) IL_DBG(IL_DL_DROP, f, ## a)
3164#define D_AP(f, a...) IL_DBG(IL_DL_AP, f, ## a)
3165#define D_TXPOWER(f, a...) IL_DBG(IL_DL_TXPOWER, f, ## a)
3166#define D_RATE(f, a...) IL_DBG(IL_DL_RATE, f, ## a)
3167#define D_NOTIF(f, a...) IL_DBG(IL_DL_NOTIF, f, ## a)
3168#define D_ASSOC(f, a...) IL_DBG(IL_DL_ASSOC, f, ## a)
3169#define D_HT(f, a...) IL_DBG(IL_DL_HT, f, ## a)
3170#define D_STATS(f, a...) IL_DBG(IL_DL_STATS, f, ## a)
3171#define D_TX_REPLY(f, a...) IL_DBG(IL_DL_TX_REPLY, f, ## a)
3172#define D_QOS(f, a...) IL_DBG(IL_DL_QOS, f, ## a)
3173#define D_RADIO(f, a...) IL_DBG(IL_DL_RADIO, f, ## a)
3174#define D_POWER(f, a...) IL_DBG(IL_DL_POWER, f, ## a)
3175#define D_11H(f, a...) IL_DBG(IL_DL_11H, f, ## a)
3176
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003177#endif /* __il_core_h__ */