blob: 21ed70a7f68c6b5d4591f424d02622fe919a080e [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
146/* One for each TFD */
147struct il_tx_info {
148 struct sk_buff *skb;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200149};
150
151/**
152 * struct il_tx_queue - Tx Queue for DMA
153 * @q: generic Rx/Tx queue descriptor
154 * @bd: base of circular buffer of TFDs
155 * @cmd: array of command/TX buffer pointers
156 * @meta: array of meta data for each command/tx buffer
157 * @dma_addr_cmd: physical address of cmd/tx buffer array
158 * @txb: array of per-TFD driver data
159 * @time_stamp: time (in jiffies) of last read_ptr change
160 * @need_update: indicates need to update read/write idx
161 * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
162 *
163 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
164 * descriptors) and required locking structures.
165 */
166#define TFD_TX_CMD_SLOTS 256
167#define TFD_CMD_SLOTS 32
168
169struct il_tx_queue {
170 struct il_queue q;
171 void *tfds;
172 struct il_device_cmd **cmd;
173 struct il_cmd_meta *meta;
174 struct il_tx_info *txb;
175 unsigned long time_stamp;
176 u8 need_update;
177 u8 sched_retry;
178 u8 active;
179 u8 swq_id;
180};
181
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200182/*
183 * EEPROM access time values:
184 *
185 * Driver initiates EEPROM read by writing byte address << 1 to CSR_EEPROM_REG.
186 * Driver then polls CSR_EEPROM_REG for CSR_EEPROM_REG_READ_VALID_MSK (0x1).
187 * When polling, wait 10 uSec between polling loops, up to a maximum 5000 uSec.
188 * Driver reads 16-bit value from bits 31-16 of CSR_EEPROM_REG.
189 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100190#define IL_EEPROM_ACCESS_TIMEOUT 5000 /* uSec */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200191
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100192#define IL_EEPROM_SEM_TIMEOUT 10 /* microseconds */
193#define IL_EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200194
195/*
196 * Regulatory channel usage flags in EEPROM struct il4965_eeprom_channel.flags.
197 *
198 * IBSS and/or AP operation is allowed *only* on those channels with
199 * (VALID && IBSS && ACTIVE && !RADAR). This restriction is in place because
200 * RADAR detection is not supported by the 4965 driver, but is a
201 * requirement for establishing a new network for legal operation on channels
202 * requiring RADAR detection or restricting ACTIVE scanning.
203 *
204 * NOTE: "WIDE" flag does not indicate anything about "HT40" 40 MHz channels.
205 * It only indicates that 20 MHz channel use is supported; HT40 channel
206 * usage is indicated by a separate set of regulatory flags for each
207 * HT40 channel pair.
208 *
209 * NOTE: Using a channel inappropriately will result in a uCode error!
210 */
211#define IL_NUM_TX_CALIB_GROUPS 5
212enum {
213 EEPROM_CHANNEL_VALID = (1 << 0), /* usable for this SKU/geo */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100214 EEPROM_CHANNEL_IBSS = (1 << 1), /* usable as an IBSS channel */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200215 /* Bit 2 Reserved */
216 EEPROM_CHANNEL_ACTIVE = (1 << 3), /* active scanning allowed */
217 EEPROM_CHANNEL_RADAR = (1 << 4), /* radar detection required */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100218 EEPROM_CHANNEL_WIDE = (1 << 5), /* 20 MHz channel okay */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200219 /* Bit 6 Reserved (was Narrow Channel) */
220 EEPROM_CHANNEL_DFS = (1 << 7), /* dynamic freq selection candidate */
221};
222
223/* SKU Capabilities */
224/* 3945 only */
225#define EEPROM_SKU_CAP_SW_RF_KILL_ENABLE (1 << 0)
226#define EEPROM_SKU_CAP_HW_RF_KILL_ENABLE (1 << 1)
227
228/* *regulatory* channel data format in eeprom, one for each channel.
229 * There are separate entries for HT40 (40 MHz) vs. normal (20 MHz) channels. */
230struct il_eeprom_channel {
231 u8 flags; /* EEPROM_CHANNEL_* flags copied from EEPROM */
232 s8 max_power_avg; /* max power (dBm) on this chnl, limit 31 */
233} __packed;
234
235/* 3945 Specific */
236#define EEPROM_3945_EEPROM_VERSION (0x2f)
237
238/* 4965 has two radio transmitters (and 3 radio receivers) */
239#define EEPROM_TX_POWER_TX_CHAINS (2)
240
241/* 4965 has room for up to 8 sets of txpower calibration data */
242#define EEPROM_TX_POWER_BANDS (8)
243
244/* 4965 factory calibration measures txpower gain settings for
245 * each of 3 target output levels */
246#define EEPROM_TX_POWER_MEASUREMENTS (3)
247
248/* 4965 Specific */
249/* 4965 driver does not work with txpower calibration version < 5 */
250#define EEPROM_4965_TX_POWER_VERSION (5)
251#define EEPROM_4965_EEPROM_VERSION (0x2f)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100252#define EEPROM_4965_CALIB_VERSION_OFFSET (2*0xB6) /* 2 bytes */
253#define EEPROM_4965_CALIB_TXPOWER_OFFSET (2*0xE8) /* 48 bytes */
254#define EEPROM_4965_BOARD_REVISION (2*0x4F) /* 2 bytes */
255#define EEPROM_4965_BOARD_PBA (2*0x56+1) /* 9 bytes */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200256
257/* 2.4 GHz */
258extern const u8 il_eeprom_band_1[14];
259
260/*
261 * factory calibration data for one txpower level, on one channel,
262 * measured on one of the 2 tx chains (radio transmitter and associated
263 * antenna). EEPROM contains:
264 *
265 * 1) Temperature (degrees Celsius) of device when measurement was made.
266 *
267 * 2) Gain table idx used to achieve the target measurement power.
268 * This refers to the "well-known" gain tables (see 4965.h).
269 *
270 * 3) Actual measured output power, in half-dBm ("34" = 17 dBm).
271 *
272 * 4) RF power amplifier detector level measurement (not used).
273 */
274struct il_eeprom_calib_measure {
275 u8 temperature; /* Device temperature (Celsius) */
276 u8 gain_idx; /* Index into gain table */
277 u8 actual_pow; /* Measured RF output power, half-dBm */
278 s8 pa_det; /* Power amp detector level (not used) */
279} __packed;
280
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200281/*
282 * measurement set for one channel. EEPROM contains:
283 *
284 * 1) Channel number measured
285 *
286 * 2) Measurements for each of 3 power levels for each of 2 radio transmitters
287 * (a.k.a. "tx chains") (6 measurements altogether)
288 */
289struct il_eeprom_calib_ch_info {
290 u8 ch_num;
291 struct il_eeprom_calib_measure
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100292 measurements[EEPROM_TX_POWER_TX_CHAINS]
293 [EEPROM_TX_POWER_MEASUREMENTS];
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200294} __packed;
295
296/*
297 * txpower subband info.
298 *
299 * For each frequency subband, EEPROM contains the following:
300 *
301 * 1) First and last channels within range of the subband. "0" values
302 * indicate that this sample set is not being used.
303 *
304 * 2) Sample measurement sets for 2 channels close to the range endpoints.
305 */
306struct il_eeprom_calib_subband_info {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100307 u8 ch_from; /* channel number of lowest channel in subband */
308 u8 ch_to; /* channel number of highest channel in subband */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200309 struct il_eeprom_calib_ch_info ch1;
310 struct il_eeprom_calib_ch_info ch2;
311} __packed;
312
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200313/*
314 * txpower calibration info. EEPROM contains:
315 *
316 * 1) Factory-measured saturation power levels (maximum levels at which
317 * tx power amplifier can output a signal without too much distortion).
318 * There is one level for 2.4 GHz band and one for 5 GHz band. These
319 * values apply to all channels within each of the bands.
320 *
321 * 2) Factory-measured power supply voltage level. This is assumed to be
322 * constant (i.e. same value applies to all channels/bands) while the
323 * factory measurements are being made.
324 *
325 * 3) Up to 8 sets of factory-measured txpower calibration values.
326 * These are for different frequency ranges, since txpower gain
327 * characteristics of the analog radio circuitry vary with frequency.
328 *
329 * Not all sets need to be filled with data;
330 * struct il_eeprom_calib_subband_info contains range of channels
331 * (0 if unused) for each set of data.
332 */
333struct il_eeprom_calib_info {
334 u8 saturation_power24; /* half-dBm (e.g. "34" = 17 dBm) */
335 u8 saturation_power52; /* half-dBm */
336 __le16 voltage; /* signed */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100337 struct il_eeprom_calib_subband_info band_info[EEPROM_TX_POWER_BANDS];
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200338} __packed;
339
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200340/* General */
341#define EEPROM_DEVICE_ID (2*0x08) /* 2 bytes */
342#define EEPROM_MAC_ADDRESS (2*0x15) /* 6 bytes */
343#define EEPROM_BOARD_REVISION (2*0x35) /* 2 bytes */
344#define EEPROM_BOARD_PBA_NUMBER (2*0x3B+1) /* 9 bytes */
345#define EEPROM_VERSION (2*0x44) /* 2 bytes */
346#define EEPROM_SKU_CAP (2*0x45) /* 2 bytes */
347#define EEPROM_OEM_MODE (2*0x46) /* 2 bytes */
348#define EEPROM_WOWLAN_MODE (2*0x47) /* 2 bytes */
349#define EEPROM_RADIO_CONFIG (2*0x48) /* 2 bytes */
350#define EEPROM_NUM_MAC_ADDRESS (2*0x4C) /* 2 bytes */
351
352/* The following masks are to be applied on EEPROM_RADIO_CONFIG */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100353#define EEPROM_RF_CFG_TYPE_MSK(x) (x & 0x3) /* bits 0-1 */
354#define EEPROM_RF_CFG_STEP_MSK(x) ((x >> 2) & 0x3) /* bits 2-3 */
355#define EEPROM_RF_CFG_DASH_MSK(x) ((x >> 4) & 0x3) /* bits 4-5 */
356#define EEPROM_RF_CFG_PNUM_MSK(x) ((x >> 6) & 0x3) /* bits 6-7 */
357#define EEPROM_RF_CFG_TX_ANT_MSK(x) ((x >> 8) & 0xF) /* bits 8-11 */
358#define EEPROM_RF_CFG_RX_ANT_MSK(x) ((x >> 12) & 0xF) /* bits 12-15 */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200359
360#define EEPROM_3945_RF_CFG_TYPE_MAX 0x0
361#define EEPROM_4965_RF_CFG_TYPE_MAX 0x1
362
363/*
364 * Per-channel regulatory data.
365 *
366 * Each channel that *might* be supported by iwl has a fixed location
367 * in EEPROM containing EEPROM_CHANNEL_* usage flags (LSB) and max regulatory
368 * txpower (MSB).
369 *
370 * Entries immediately below are for 20 MHz channel width. HT40 (40 MHz)
371 * channels (only for 4965, not supported by 3945) appear later in the EEPROM.
372 *
373 * 2.4 GHz channels 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
374 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100375#define EEPROM_REGULATORY_SKU_ID (2*0x60) /* 4 bytes */
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200376#define EEPROM_REGULATORY_BAND_1 (2*0x62) /* 2 bytes */
377#define EEPROM_REGULATORY_BAND_1_CHANNELS (2*0x63) /* 28 bytes */
378
379/*
380 * 4.9 GHz channels 183, 184, 185, 187, 188, 189, 192, 196,
381 * 5.0 GHz channels 7, 8, 11, 12, 16
382 * (4915-5080MHz) (none of these is ever supported)
383 */
384#define EEPROM_REGULATORY_BAND_2 (2*0x71) /* 2 bytes */
385#define EEPROM_REGULATORY_BAND_2_CHANNELS (2*0x72) /* 26 bytes */
386
387/*
388 * 5.2 GHz channels 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
389 * (5170-5320MHz)
390 */
391#define EEPROM_REGULATORY_BAND_3 (2*0x7F) /* 2 bytes */
392#define EEPROM_REGULATORY_BAND_3_CHANNELS (2*0x80) /* 24 bytes */
393
394/*
395 * 5.5 GHz channels 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
396 * (5500-5700MHz)
397 */
398#define EEPROM_REGULATORY_BAND_4 (2*0x8C) /* 2 bytes */
399#define EEPROM_REGULATORY_BAND_4_CHANNELS (2*0x8D) /* 22 bytes */
400
401/*
402 * 5.7 GHz channels 145, 149, 153, 157, 161, 165
403 * (5725-5825MHz)
404 */
405#define EEPROM_REGULATORY_BAND_5 (2*0x98) /* 2 bytes */
406#define EEPROM_REGULATORY_BAND_5_CHANNELS (2*0x99) /* 12 bytes */
407
408/*
409 * 2.4 GHz HT40 channels 1 (5), 2 (6), 3 (7), 4 (8), 5 (9), 6 (10), 7 (11)
410 *
411 * The channel listed is the center of the lower 20 MHz half of the channel.
412 * The overall center frequency is actually 2 channels (10 MHz) above that,
413 * and the upper half of each HT40 channel is centered 4 channels (20 MHz) away
414 * from the lower half; e.g. the upper half of HT40 channel 1 is channel 5,
415 * and the overall HT40 channel width centers on channel 3.
416 *
417 * NOTE: The RXON command uses 20 MHz channel numbers to specify the
418 * control channel to which to tune. RXON also specifies whether the
419 * control channel is the upper or lower half of a HT40 channel.
420 *
421 * NOTE: 4965 does not support HT40 channels on 2.4 GHz.
422 */
423#define EEPROM_4965_REGULATORY_BAND_24_HT40_CHANNELS (2*0xA0) /* 14 bytes */
424
425/*
426 * 5.2 GHz HT40 channels 36 (40), 44 (48), 52 (56), 60 (64),
427 * 100 (104), 108 (112), 116 (120), 124 (128), 132 (136), 149 (153), 157 (161)
428 */
429#define EEPROM_4965_REGULATORY_BAND_52_HT40_CHANNELS (2*0xA8) /* 22 bytes */
430
431#define EEPROM_REGULATORY_BAND_NO_HT40 (0)
432
433struct il_eeprom_ops {
434 const u32 regulatory_bands[7];
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100435 int (*acquire_semaphore) (struct il_priv *il);
436 void (*release_semaphore) (struct il_priv *il);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200437};
438
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200439int il_eeprom_init(struct il_priv *il);
440void il_eeprom_free(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100441const u8 *il_eeprom_query_addr(const struct il_priv *il, size_t offset);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200442u16 il_eeprom_query16(const struct il_priv *il, size_t offset);
443int il_init_channel_map(struct il_priv *il);
444void il_free_channel_map(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100445const struct il_channel_info *il_get_channel_info(const struct il_priv *il,
446 enum ieee80211_band band,
447 u16 channel);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +0200448
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200449#define IL_NUM_SCAN_RATES (2)
450
451struct il4965_channel_tgd_info {
452 u8 type;
453 s8 max_power;
454};
455
456struct il4965_channel_tgh_info {
457 s64 last_radar_time;
458};
459
460#define IL4965_MAX_RATE (33)
461
462struct il3945_clip_group {
463 /* maximum power level to prevent clipping for each rate, derived by
464 * us from this band's saturation power in EEPROM */
465 const s8 clip_powers[IL_MAX_RATES];
466};
467
468/* current Tx power values to use, one for each rate for each channel.
469 * requested power is limited by:
470 * -- regulatory EEPROM limits for this channel
471 * -- hardware capabilities (clip-powers)
472 * -- spectrum management
473 * -- user preference (e.g. iwconfig)
474 * when requested power is set, base power idx must also be set. */
475struct il3945_channel_power_info {
476 struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
477 s8 power_table_idx; /* actual (compenst'd) idx into gain table */
478 s8 base_power_idx; /* gain idx for power at factory temp. */
479 s8 requested_power; /* power (dBm) requested for this chnl/rate */
480};
481
482/* current scan Tx power values to use, one for each scan rate for each
483 * channel. */
484struct il3945_scan_power_info {
485 struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
486 s8 power_table_idx; /* actual (compenst'd) idx into gain table */
487 s8 requested_power; /* scan pwr (dBm) requested for chnl/rate */
488};
489
490/*
491 * One for each channel, holds all channel setup data
492 * Some of the fields (e.g. eeprom and flags/max_power_avg) are redundant
493 * with one another!
494 */
495struct il_channel_info {
496 struct il4965_channel_tgd_info tgd;
497 struct il4965_channel_tgh_info tgh;
498 struct il_eeprom_channel eeprom; /* EEPROM regulatory limit */
499 struct il_eeprom_channel ht40_eeprom; /* EEPROM regulatory limit for
500 * HT40 channel */
501
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100502 u8 channel; /* channel number */
503 u8 flags; /* flags copied from EEPROM */
504 s8 max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
505 s8 curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) limit */
506 s8 min_power; /* always 0 */
507 s8 scan_power; /* (dBm) regul. eeprom, direct scans, any rate */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200508
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100509 u8 group_idx; /* 0-4, maps channel to group1/2/3/4/5 */
510 u8 band_idx; /* 0-4, maps channel to band1/2/3/4/5 */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200511 enum ieee80211_band band;
512
513 /* HT40 channel info */
514 s8 ht40_max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
515 u8 ht40_flags; /* flags copied from EEPROM */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100516 u8 ht40_extension_channel; /* HT_IE_EXT_CHANNEL_* */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200517
518 /* Radio/DSP gain settings for each "normal" data Tx rate.
519 * These include, in addition to RF and DSP gain, a few fields for
520 * remembering/modifying gain settings (idxes). */
521 struct il3945_channel_power_info power_info[IL4965_MAX_RATE];
522
523 /* Radio/DSP gain settings for each scan rate, for directed scans. */
524 struct il3945_scan_power_info scan_pwr_info[IL_NUM_SCAN_RATES];
525};
526
527#define IL_TX_FIFO_BK 0 /* shared */
528#define IL_TX_FIFO_BE 1
529#define IL_TX_FIFO_VI 2 /* shared */
530#define IL_TX_FIFO_VO 3
531#define IL_TX_FIFO_UNUSED -1
532
533/* Minimum number of queues. MAX_NUM is defined in hw specific files.
534 * Set the minimum to accommodate the 4 standard TX queues, 1 command
535 * queue, 2 (unused) HCCA queues, and 4 HT queues (one for each AC) */
536#define IL_MIN_NUM_QUEUES 10
537
538#define IL_DEFAULT_CMD_QUEUE_NUM 4
539
540#define IEEE80211_DATA_LEN 2304
541#define IEEE80211_4ADDR_LEN 30
542#define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
543#define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
544
545struct il_frame {
546 union {
547 struct ieee80211_hdr frame;
548 struct il_tx_beacon_cmd beacon;
549 u8 raw[IEEE80211_FRAME_LEN];
550 u8 cmd[360];
551 } u;
552 struct list_head list;
553};
554
555#define SEQ_TO_SN(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
556#define SN_TO_SEQ(ssn) (((ssn) << 4) & IEEE80211_SCTL_SEQ)
557#define MAX_SN ((IEEE80211_SCTL_SEQ) >> 4)
558
559enum {
560 CMD_SYNC = 0,
561 CMD_SIZE_NORMAL = 0,
562 CMD_NO_SKB = 0,
563 CMD_SIZE_HUGE = (1 << 0),
564 CMD_ASYNC = (1 << 1),
565 CMD_WANT_SKB = (1 << 2),
566 CMD_MAPPED = (1 << 3),
567};
568
569#define DEF_CMD_PAYLOAD_SIZE 320
570
571/**
572 * struct il_device_cmd
573 *
574 * For allocation of the command and tx queues, this establishes the overall
575 * size of the largest command we send to uCode, except for a scan command
576 * (which is relatively huge; space is allocated separately).
577 */
578struct il_device_cmd {
579 struct il_cmd_header hdr; /* uCode API */
580 union {
581 u32 flags;
582 u8 val8;
583 u16 val16;
584 u32 val32;
585 struct il_tx_cmd tx;
586 u8 payload[DEF_CMD_PAYLOAD_SIZE];
587 } __packed cmd;
588} __packed;
589
590#define TFD_MAX_PAYLOAD_SIZE (sizeof(struct il_device_cmd))
591
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200592struct il_host_cmd {
593 const void *data;
594 unsigned long reply_page;
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +0100595 void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
596 struct il_rx_pkt *pkt);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200597 u32 flags;
598 u16 len;
599 u8 id;
600};
601
602#define SUP_RATE_11A_MAX_NUM_CHANNELS 8
603#define SUP_RATE_11B_MAX_NUM_CHANNELS 4
604#define SUP_RATE_11G_MAX_NUM_CHANNELS 12
605
606/**
607 * struct il_rx_queue - Rx queue
608 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
609 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
610 * @read: Shared idx to newest available Rx buffer
611 * @write: Shared idx to oldest written Rx packet
612 * @free_count: Number of pre-allocated buffers in rx_free
613 * @rx_free: list of free SKBs for use
614 * @rx_used: List of Rx buffers with no SKB
615 * @need_update: flag to indicate we need to update read/write idx
616 * @rb_stts: driver's pointer to receive buffer status
617 * @rb_stts_dma: bus address of receive buffer status
618 *
619 * NOTE: rx_free and rx_used are used as a FIFO for il_rx_bufs
620 */
621struct il_rx_queue {
622 __le32 *bd;
623 dma_addr_t bd_dma;
624 struct il_rx_buf pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
625 struct il_rx_buf *queue[RX_QUEUE_SIZE];
626 u32 read;
627 u32 write;
628 u32 free_count;
629 u32 write_actual;
630 struct list_head rx_free;
631 struct list_head rx_used;
632 int need_update;
633 struct il_rb_status *rb_stts;
634 dma_addr_t rb_stts_dma;
635 spinlock_t lock;
636};
637
638#define IL_SUPPORTED_RATES_IE_LEN 8
639
640#define MAX_TID_COUNT 9
641
642#define IL_INVALID_RATE 0xFF
643#define IL_INVALID_VALUE -1
644
645/**
646 * struct il_ht_agg -- aggregation status while waiting for block-ack
647 * @txq_id: Tx queue used for Tx attempt
648 * @frame_count: # frames attempted by Tx command
649 * @wait_for_ba: Expect block-ack before next Tx reply
650 * @start_idx: Index of 1st Transmit Frame Descriptor (TFD) in Tx win
651 * @bitmap0: Low order bitmap, one bit for each frame pending ACK in Tx win
652 * @bitmap1: High order, one bit for each frame pending ACK in Tx win
653 * @rate_n_flags: Rate at which Tx was attempted
654 *
655 * If C_TX indicates that aggregation was attempted, driver must wait
656 * for block ack (N_COMPRESSED_BA). This struct stores tx reply info
657 * until block ack arrives.
658 */
659struct il_ht_agg {
660 u16 txq_id;
661 u16 frame_count;
662 u16 wait_for_ba;
663 u16 start_idx;
664 u64 bitmap;
665 u32 rate_n_flags;
666#define IL_AGG_OFF 0
667#define IL_AGG_ON 1
668#define IL_EMPTYING_HW_QUEUE_ADDBA 2
669#define IL_EMPTYING_HW_QUEUE_DELBA 3
670 u8 state;
671};
672
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200673struct il_tid_data {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100674 u16 seq_number; /* 4965 only */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200675 u16 tfds_in_queue;
676 struct il_ht_agg agg;
677};
678
679struct il_hw_key {
680 u32 cipher;
681 int keylen;
682 u8 keyidx;
683 u8 key[32];
684};
685
686union il_ht_rate_supp {
687 u16 rates;
688 struct {
689 u8 siso_rate;
690 u8 mimo_rate;
691 };
692};
693
694#define CFG_HT_RX_AMPDU_FACTOR_8K (0x0)
695#define CFG_HT_RX_AMPDU_FACTOR_16K (0x1)
696#define CFG_HT_RX_AMPDU_FACTOR_32K (0x2)
697#define CFG_HT_RX_AMPDU_FACTOR_64K (0x3)
698#define CFG_HT_RX_AMPDU_FACTOR_DEF CFG_HT_RX_AMPDU_FACTOR_64K
699#define CFG_HT_RX_AMPDU_FACTOR_MAX CFG_HT_RX_AMPDU_FACTOR_64K
700#define CFG_HT_RX_AMPDU_FACTOR_MIN CFG_HT_RX_AMPDU_FACTOR_8K
701
702/*
703 * Maximal MPDU density for TX aggregation
704 * 4 - 2us density
705 * 5 - 4us density
706 * 6 - 8us density
707 * 7 - 16us density
708 */
709#define CFG_HT_MPDU_DENSITY_2USEC (0x4)
710#define CFG_HT_MPDU_DENSITY_4USEC (0x5)
711#define CFG_HT_MPDU_DENSITY_8USEC (0x6)
712#define CFG_HT_MPDU_DENSITY_16USEC (0x7)
713#define CFG_HT_MPDU_DENSITY_DEF CFG_HT_MPDU_DENSITY_4USEC
714#define CFG_HT_MPDU_DENSITY_MAX CFG_HT_MPDU_DENSITY_16USEC
715#define CFG_HT_MPDU_DENSITY_MIN (0x1)
716
717struct il_ht_config {
718 bool single_chain_sufficient;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100719 enum ieee80211_smps_mode smps; /* current smps mode */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200720};
721
722/* QoS structures */
723struct il_qos_info {
724 int qos_active;
725 struct il_qosparam_cmd def_qos_parm;
726};
727
728/*
729 * Structure should be accessed with sta_lock held. When station addition
730 * is in progress (IL_STA_UCODE_INPROGRESS) it is possible to access only
731 * the commands (il_addsta_cmd and il_link_quality_cmd) without
732 * sta_lock held.
733 */
734struct il_station_entry {
735 struct il_addsta_cmd sta;
736 struct il_tid_data tid[MAX_TID_COUNT];
Stanislaw Gruszka6aa0c252012-02-03 17:31:46 +0100737 u8 used;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200738 struct il_hw_key keyinfo;
739 struct il_link_quality_cmd *lq;
740};
741
742struct il_station_priv_common {
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200743 u8 sta_id;
744};
745
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200746/**
747 * struct il_vif_priv - driver's ilate per-interface information
748 *
749 * When mac80211 allocates a virtual interface, it can allocate
750 * space for us to put data into.
751 */
752struct il_vif_priv {
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200753 u8 ibss_bssid_sta_id;
754};
755
756/* one for each uCode image (inst/data, boot/init/runtime) */
757struct fw_desc {
758 void *v_addr; /* access by driver */
759 dma_addr_t p_addr; /* access by card's busmaster DMA */
760 u32 len; /* bytes */
761};
762
763/* uCode file layout */
764struct il_ucode_header {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100765 __le32 ver; /* major/minor/API/serial */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200766 struct {
767 __le32 inst_size; /* bytes of runtime code */
768 __le32 data_size; /* bytes of runtime data */
769 __le32 init_size; /* bytes of init code */
770 __le32 init_data_size; /* bytes of init data */
771 __le32 boot_size; /* bytes of bootstrap code */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100772 u8 data[0]; /* in same order as sizes */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200773 } v1;
774};
775
776struct il4965_ibss_seq {
777 u8 mac[ETH_ALEN];
778 u16 seq_num;
779 u16 frag_num;
780 unsigned long packet_time;
781 struct list_head list;
782};
783
784struct il_sensitivity_ranges {
785 u16 min_nrg_cck;
786 u16 max_nrg_cck;
787
788 u16 nrg_th_cck;
789 u16 nrg_th_ofdm;
790
791 u16 auto_corr_min_ofdm;
792 u16 auto_corr_min_ofdm_mrc;
793 u16 auto_corr_min_ofdm_x1;
794 u16 auto_corr_min_ofdm_mrc_x1;
795
796 u16 auto_corr_max_ofdm;
797 u16 auto_corr_max_ofdm_mrc;
798 u16 auto_corr_max_ofdm_x1;
799 u16 auto_corr_max_ofdm_mrc_x1;
800
801 u16 auto_corr_max_cck;
802 u16 auto_corr_max_cck_mrc;
803 u16 auto_corr_min_cck;
804 u16 auto_corr_min_cck_mrc;
805
806 u16 barker_corr_th_min;
807 u16 barker_corr_th_min_mrc;
808 u16 nrg_th_cca;
809};
810
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200811#define KELVIN_TO_CELSIUS(x) ((x)-273)
812#define CELSIUS_TO_KELVIN(x) ((x)+273)
813
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200814/**
815 * struct il_hw_params
Stanislaw Gruszkab16db502012-02-03 17:31:44 +0100816 * @bcast_id: f/w broadcast station ID
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200817 * @max_txq_num: Max # Tx queues supported
818 * @dma_chnl_num: Number of Tx DMA/FIFO channels
819 * @scd_bc_tbls_size: size of scheduler byte count tables
820 * @tfd_size: TFD size
821 * @tx/rx_chains_num: Number of TX/RX chains
822 * @valid_tx/rx_ant: usable antennas
823 * @max_rxq_size: Max # Rx frames in Rx queue (must be power-of-2)
824 * @max_rxq_log: Log-base-2 of max_rxq_size
825 * @rx_page_order: Rx buffer page order
826 * @rx_wrt_ptr_reg: FH{39}_RSCSR_CHNL0_WPTR
827 * @max_stations:
828 * @ht40_channel: is 40MHz width possible in band 2.4
829 * BIT(IEEE80211_BAND_5GHZ) BIT(IEEE80211_BAND_5GHZ)
830 * @sw_crypto: 0 for hw, 1 for sw
831 * @max_xxx_size: for ucode uses
832 * @ct_kill_threshold: temperature threshold
833 * @beacon_time_tsf_bits: number of valid tsf bits for beacon time
834 * @struct il_sensitivity_ranges: range of sensitivity values
835 */
836struct il_hw_params {
Stanislaw Gruszkab16db502012-02-03 17:31:44 +0100837 u8 bcast_id;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200838 u8 max_txq_num;
839 u8 dma_chnl_num;
840 u16 scd_bc_tbls_size;
841 u32 tfd_size;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100842 u8 tx_chains_num;
843 u8 rx_chains_num;
844 u8 valid_tx_ant;
845 u8 valid_rx_ant;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200846 u16 max_rxq_size;
847 u16 max_rxq_log;
848 u32 rx_page_order;
849 u32 rx_wrt_ptr_reg;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100850 u8 max_stations;
851 u8 ht40_channel;
852 u8 max_beacon_itrvl; /* in 1024 ms */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200853 u32 max_inst_size;
854 u32 max_data_size;
855 u32 max_bsm_size;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100856 u32 ct_kill_threshold; /* value in hw-dependent units */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200857 u16 beacon_time_tsf_bits;
858 const struct il_sensitivity_ranges *sens;
859};
860
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200861/******************************************************************************
862 *
863 * Functions implemented in core module which are forward declared here
864 * for use by iwl-[4-5].c
865 *
866 * NOTE: The implementation of these functions are not hardware specific
867 * which is why they are in the core module files.
868 *
869 * Naming convention --
870 * il_ <-- Is part of iwlwifi
871 * iwlXXXX_ <-- Hardware specific (implemented in iwl-XXXX.c for XXXX)
872 * il4965_bg_ <-- Called from work queue context
873 * il4965_mac_ <-- mac80211 callback
874 *
875 ****************************************************************************/
876extern void il4965_update_chain_flags(struct il_priv *il);
877extern const u8 il_bcast_addr[ETH_ALEN];
878extern int il_queue_space(const struct il_queue *q);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100879static inline int
880il_queue_used(const struct il_queue *q, int i)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200881{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100882 return q->write_ptr >= q->read_ptr ? (i >= q->read_ptr &&
883 i < q->write_ptr) : !(i <
884 q->read_ptr
885 && i >=
886 q->
887 write_ptr);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200888}
889
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100890static inline u8
891il_get_cmd_idx(struct il_queue *q, u32 idx, int is_huge)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200892{
893 /*
894 * This is for init calibration result and scan command which
895 * required buffer > TFD_MAX_PAYLOAD_SIZE,
896 * the big buffer at end of command array
897 */
898 if (is_huge)
899 return q->n_win; /* must be power of 2 */
900
901 /* Otherwise, use normal size buffers */
902 return idx & (q->n_win - 1);
903}
904
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200905struct il_dma_ptr {
906 dma_addr_t dma;
907 void *addr;
908 size_t size;
909};
910
911#define IL_OPERATION_MODE_AUTO 0
912#define IL_OPERATION_MODE_HT_ONLY 1
913#define IL_OPERATION_MODE_MIXED 2
914#define IL_OPERATION_MODE_20MHZ 3
915
916#define IL_TX_CRC_SIZE 4
917#define IL_TX_DELIMITER_SIZE 4
918
919#define TX_POWER_IL_ILLEGAL_VOLTAGE -10000
920
921/* Sensitivity and chain noise calibration */
922#define INITIALIZATION_VALUE 0xFFFF
923#define IL4965_CAL_NUM_BEACONS 20
924#define IL_CAL_NUM_BEACONS 16
925#define MAXIMUM_ALLOWED_PATHLOSS 15
926
927#define CHAIN_NOISE_MAX_DELTA_GAIN_CODE 3
928
929#define MAX_FA_OFDM 50
930#define MIN_FA_OFDM 5
931#define MAX_FA_CCK 50
932#define MIN_FA_CCK 5
933
934#define AUTO_CORR_STEP_OFDM 1
935
936#define AUTO_CORR_STEP_CCK 3
937#define AUTO_CORR_MAX_TH_CCK 160
938
939#define NRG_DIFF 2
940#define NRG_STEP_CCK 2
941#define NRG_MARGIN 8
942#define MAX_NUMBER_CCK_NO_FA 100
943
944#define AUTO_CORR_CCK_MIN_VAL_DEF (125)
945
946#define CHAIN_A 0
947#define CHAIN_B 1
948#define CHAIN_C 2
949#define CHAIN_NOISE_DELTA_GAIN_INIT_VAL 4
950#define ALL_BAND_FILTER 0xFF00
951#define IN_BAND_FILTER 0xFF
952#define MIN_AVERAGE_NOISE_MAX_VALUE 0xFFFFFFFF
953
954#define NRG_NUM_PREV_STAT_L 20
955#define NUM_RX_CHAINS 3
956
957enum il4965_false_alarm_state {
958 IL_FA_TOO_MANY = 0,
959 IL_FA_TOO_FEW = 1,
960 IL_FA_GOOD_RANGE = 2,
961};
962
963enum il4965_chain_noise_state {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100964 IL_CHAIN_NOISE_ALIVE = 0, /* must be 0 */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200965 IL_CHAIN_NOISE_ACCUMULATE,
966 IL_CHAIN_NOISE_CALIBRATED,
967 IL_CHAIN_NOISE_DONE,
968};
969
970enum il4965_calib_enabled_state {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +0100971 IL_CALIB_DISABLED = 0, /* must be 0 */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +0200972 IL_CALIB_ENABLED = 1,
973};
974
975/*
976 * enum il_calib
977 * defines the order in which results of initial calibrations
978 * should be sent to the runtime uCode
979 */
980enum il_calib {
981 IL_CALIB_MAX,
982};
983
984/* Opaque calibration results */
985struct il_calib_result {
986 void *buf;
987 size_t buf_len;
988};
989
990enum ucode_type {
991 UCODE_NONE = 0,
992 UCODE_INIT,
993 UCODE_RT
994};
995
996/* Sensitivity calib data */
997struct il_sensitivity_data {
998 u32 auto_corr_ofdm;
999 u32 auto_corr_ofdm_mrc;
1000 u32 auto_corr_ofdm_x1;
1001 u32 auto_corr_ofdm_mrc_x1;
1002 u32 auto_corr_cck;
1003 u32 auto_corr_cck_mrc;
1004
1005 u32 last_bad_plcp_cnt_ofdm;
1006 u32 last_fa_cnt_ofdm;
1007 u32 last_bad_plcp_cnt_cck;
1008 u32 last_fa_cnt_cck;
1009
1010 u32 nrg_curr_state;
1011 u32 nrg_prev_state;
1012 u32 nrg_value[10];
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001013 u8 nrg_silence_rssi[NRG_NUM_PREV_STAT_L];
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001014 u32 nrg_silence_ref;
1015 u32 nrg_energy_idx;
1016 u32 nrg_silence_idx;
1017 u32 nrg_th_cck;
1018 s32 nrg_auto_corr_silence_diff;
1019 u32 num_in_cck_no_fa;
1020 u32 nrg_th_ofdm;
1021
1022 u16 barker_corr_th_min;
1023 u16 barker_corr_th_min_mrc;
1024 u16 nrg_th_cca;
1025};
1026
1027/* Chain noise (differential Rx gain) calib data */
1028struct il_chain_noise_data {
1029 u32 active_chains;
1030 u32 chain_noise_a;
1031 u32 chain_noise_b;
1032 u32 chain_noise_c;
1033 u32 chain_signal_a;
1034 u32 chain_signal_b;
1035 u32 chain_signal_c;
1036 u16 beacon_count;
1037 u8 disconn_array[NUM_RX_CHAINS];
1038 u8 delta_gain_code[NUM_RX_CHAINS];
1039 u8 radio_write;
1040 u8 state;
1041};
1042
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001043#define EEPROM_SEM_TIMEOUT 10 /* milliseconds */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001044#define EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
1045
1046#define IL_TRAFFIC_ENTRIES (256)
1047#define IL_TRAFFIC_ENTRY_SIZE (64)
1048
1049enum {
1050 MEASUREMENT_READY = (1 << 0),
1051 MEASUREMENT_ACTIVE = (1 << 1),
1052};
1053
1054/* interrupt stats */
1055struct isr_stats {
1056 u32 hw;
1057 u32 sw;
1058 u32 err_code;
1059 u32 sch;
1060 u32 alive;
1061 u32 rfkill;
1062 u32 ctkill;
1063 u32 wakeup;
1064 u32 rx;
1065 u32 handlers[IL_CN_MAX];
1066 u32 tx;
1067 u32 unhandled;
1068};
1069
1070/* management stats */
1071enum il_mgmt_stats {
1072 MANAGEMENT_ASSOC_REQ = 0,
1073 MANAGEMENT_ASSOC_RESP,
1074 MANAGEMENT_REASSOC_REQ,
1075 MANAGEMENT_REASSOC_RESP,
1076 MANAGEMENT_PROBE_REQ,
1077 MANAGEMENT_PROBE_RESP,
1078 MANAGEMENT_BEACON,
1079 MANAGEMENT_ATIM,
1080 MANAGEMENT_DISASSOC,
1081 MANAGEMENT_AUTH,
1082 MANAGEMENT_DEAUTH,
1083 MANAGEMENT_ACTION,
1084 MANAGEMENT_MAX,
1085};
1086/* control stats */
1087enum il_ctrl_stats {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001088 CONTROL_BACK_REQ = 0,
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001089 CONTROL_BACK,
1090 CONTROL_PSPOLL,
1091 CONTROL_RTS,
1092 CONTROL_CTS,
1093 CONTROL_ACK,
1094 CONTROL_CFEND,
1095 CONTROL_CFENDACK,
1096 CONTROL_MAX,
1097};
1098
1099struct traffic_stats {
1100#ifdef CONFIG_IWLEGACY_DEBUGFS
1101 u32 mgmt[MANAGEMENT_MAX];
1102 u32 ctrl[CONTROL_MAX];
1103 u32 data_cnt;
1104 u64 data_bytes;
1105#endif
1106};
1107
1108/*
1109 * host interrupt timeout value
1110 * used with setting interrupt coalescing timer
1111 * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit
1112 *
1113 * default interrupt coalescing timer is 64 x 32 = 2048 usecs
1114 * default interrupt coalescing calibration timer is 16 x 32 = 512 usecs
1115 */
1116#define IL_HOST_INT_TIMEOUT_MAX (0xFF)
1117#define IL_HOST_INT_TIMEOUT_DEF (0x40)
1118#define IL_HOST_INT_TIMEOUT_MIN (0x0)
1119#define IL_HOST_INT_CALIB_TIMEOUT_MAX (0xFF)
1120#define IL_HOST_INT_CALIB_TIMEOUT_DEF (0x10)
1121#define IL_HOST_INT_CALIB_TIMEOUT_MIN (0x0)
1122
1123#define IL_DELAY_NEXT_FORCE_FW_RELOAD (HZ*5)
1124
1125/* TX queue watchdog timeouts in mSecs */
1126#define IL_DEF_WD_TIMEOUT (2000)
1127#define IL_LONG_WD_TIMEOUT (10000)
1128#define IL_MAX_WD_TIMEOUT (120000)
1129
1130struct il_force_reset {
1131 int reset_request_count;
1132 int reset_success_count;
1133 int reset_reject_count;
1134 unsigned long reset_duration;
1135 unsigned long last_force_reset_jiffies;
1136};
1137
1138/* extend beacon time format bit shifting */
1139/*
1140 * for _3945 devices
1141 * bits 31:24 - extended
1142 * bits 23:0 - interval
1143 */
1144#define IL3945_EXT_BEACON_TIME_POS 24
1145/*
1146 * for _4965 devices
1147 * bits 31:22 - extended
1148 * bits 21:0 - interval
1149 */
1150#define IL4965_EXT_BEACON_TIME_POS 22
1151
1152struct il_rxon_context {
1153 struct ieee80211_vif *vif;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001154};
1155
Stanislaw Gruszka99412002011-08-31 13:53:04 +02001156struct il_power_mgr {
1157 struct il_powertable_cmd sleep_cmd;
1158 struct il_powertable_cmd sleep_cmd_next;
1159 int debug_sleep_level_override;
1160 bool pci_pm;
1161};
1162
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001163struct il_priv {
1164
1165 /* ieee device used by generic ieee processing code */
1166 struct ieee80211_hw *hw;
1167 struct ieee80211_channel *ieee_channels;
1168 struct ieee80211_rate *ieee_rates;
1169 struct il_cfg *cfg;
Stanislaw Gruszkac39ae9f2012-02-03 17:31:58 +01001170 const struct il_ops *ops;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001171
1172 /* temporary frame storage list */
1173 struct list_head free_frames;
1174 int frames_count;
1175
1176 enum ieee80211_band band;
1177 int alloc_rxb_page;
1178
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001179 void (*handlers[IL_CN_MAX]) (struct il_priv *il,
1180 struct il_rx_buf *rxb);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001181
1182 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
1183
1184 /* spectrum measurement report caching */
1185 struct il_spectrum_notification measure_report;
1186 u8 measurement_status;
1187
1188 /* ucode beacon time */
1189 u32 ucode_beacon_time;
1190 int missed_beacon_threshold;
1191
1192 /* track IBSS manager (last beacon) status */
1193 u32 ibss_manager;
1194
1195 /* force reset */
1196 struct il_force_reset force_reset;
1197
1198 /* we allocate array of il_channel_info for NIC's valid channels.
1199 * Access via channel # using indirect idx array */
1200 struct il_channel_info *channel_info; /* channel info array */
1201 u8 channel_count; /* # of channels */
1202
1203 /* thermal calibration */
1204 s32 temperature; /* degrees Kelvin */
1205 s32 last_temperature;
1206
1207 /* init calibration results */
1208 struct il_calib_result calib_results[IL_CALIB_MAX];
1209
1210 /* Scan related variables */
1211 unsigned long scan_start;
1212 unsigned long scan_start_tsf;
1213 void *scan_cmd;
1214 enum ieee80211_band scan_band;
1215 struct cfg80211_scan_request *scan_request;
1216 struct ieee80211_vif *scan_vif;
1217 u8 scan_tx_ant[IEEE80211_NUM_BANDS];
1218 u8 mgmt_tx_ant;
1219
1220 /* spinlock */
1221 spinlock_t lock; /* protect general shared data */
1222 spinlock_t hcmd_lock; /* protect hcmd */
1223 spinlock_t reg_lock; /* protect hw register access */
1224 struct mutex mutex;
1225
1226 /* basic pci-network driver stuff */
1227 struct pci_dev *pci_dev;
1228
1229 /* pci hardware address support */
1230 void __iomem *hw_base;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001231 u32 hw_rev;
1232 u32 hw_wa_rev;
1233 u8 rev_id;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001234
1235 /* command queue number */
1236 u8 cmd_queue;
1237
1238 /* max number of station keys */
1239 u8 sta_key_max_num;
1240
1241 /* EEPROM MAC addresses */
1242 struct mac_address addresses[1];
1243
1244 /* uCode images, save to reload in case of failure */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001245 int fw_idx; /* firmware we're trying to load */
1246 u32 ucode_ver; /* version of ucode, copy of
1247 il_ucode.ver */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001248 struct fw_desc ucode_code; /* runtime inst */
1249 struct fw_desc ucode_data; /* runtime data original */
1250 struct fw_desc ucode_data_backup; /* runtime data save/restore */
1251 struct fw_desc ucode_init; /* initialization inst */
1252 struct fw_desc ucode_init_data; /* initialization data */
1253 struct fw_desc ucode_boot; /* bootstrap inst */
1254 enum ucode_type ucode_type;
1255 u8 ucode_write_complete; /* the image write is complete */
1256 char firmware_name[25];
1257
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001258 struct ieee80211_vif *vif;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001259
Stanislaw Gruszka8d44f2b2012-02-03 17:31:51 +01001260 struct il_qos_info qos_data;
1261
Stanislaw Gruszka1c03c462012-02-03 17:31:52 +01001262 struct {
1263 bool enabled;
1264 bool is_40mhz;
1265 bool non_gf_sta_present;
1266 u8 protection;
1267 u8 extension_chan_offset;
1268 } ht;
1269
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001270 /*
1271 * We declare this const so it can only be
1272 * changed via explicit cast within the
1273 * routines that actually update the physical
1274 * hardware.
1275 */
1276 const struct il_rxon_cmd active;
1277 struct il_rxon_cmd staging;
1278
1279 struct il_rxon_time_cmd timing;
1280
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001281 __le16 switch_channel;
1282
1283 /* 1st responses from initialize and runtime uCode images.
1284 * _4965's initialize alive response contains some calibration data. */
1285 struct il_init_alive_resp card_alive_init;
1286 struct il_alive_resp card_alive;
1287
1288 u16 active_rate;
1289
1290 u8 start_calib;
1291 struct il_sensitivity_data sensitivity_data;
1292 struct il_chain_noise_data chain_noise_data;
1293 __le16 sensitivity_tbl[HD_TBL_SIZE];
1294
1295 struct il_ht_config current_ht_config;
1296
1297 /* Rate scaling data */
1298 u8 retry_rate;
1299
1300 wait_queue_head_t wait_command_queue;
1301
1302 int activity_timer_active;
1303
1304 /* Rx and Tx DMA processing queues */
1305 struct il_rx_queue rxq;
1306 struct il_tx_queue *txq;
1307 unsigned long txq_ctx_active_msk;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001308 struct il_dma_ptr kw; /* keep warm address */
1309 struct il_dma_ptr scd_bc_tbls;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001310
1311 u32 scd_base_addr; /* scheduler sram base address */
1312
1313 unsigned long status;
1314
1315 /* counts mgmt, ctl, and data packets */
1316 struct traffic_stats tx_stats;
1317 struct traffic_stats rx_stats;
1318
1319 /* counts interrupts */
1320 struct isr_stats isr_stats;
1321
1322 struct il_power_mgr power_data;
1323
1324 /* context information */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001325 u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001326
1327 /* station table variables */
1328
1329 /* Note: if lock and sta_lock are needed, lock must be acquired first */
1330 spinlock_t sta_lock;
1331 int num_stations;
1332 struct il_station_entry stations[IL_STATION_COUNT];
1333 unsigned long ucode_key_table;
1334
1335 /* queue refcounts */
1336#define IL_MAX_HW_QUEUES 32
1337 unsigned long queue_stopped[BITS_TO_LONGS(IL_MAX_HW_QUEUES)];
1338 /* for each AC */
1339 atomic_t queue_stop_count[4];
1340
1341 /* Indication if ieee80211_ops->open has been called */
1342 u8 is_open;
1343
1344 u8 mac80211_registered;
1345
1346 /* eeprom -- this is in the card's little endian byte order */
1347 u8 *eeprom;
1348 struct il_eeprom_calib_info *calib_info;
1349
1350 enum nl80211_iftype iw_mode;
1351
1352 /* Last Rx'd beacon timestamp */
1353 u64 timestamp;
1354
1355 union {
1356#if defined(CONFIG_IWL3945) || defined(CONFIG_IWL3945_MODULE)
1357 struct {
1358 void *shared_virt;
1359 dma_addr_t shared_phys;
1360
1361 struct delayed_work thermal_periodic;
1362 struct delayed_work rfkill_poll;
1363
1364 struct il3945_notif_stats stats;
1365#ifdef CONFIG_IWLEGACY_DEBUGFS
1366 struct il3945_notif_stats accum_stats;
1367 struct il3945_notif_stats delta_stats;
1368 struct il3945_notif_stats max_delta;
1369#endif
1370
1371 u32 sta_supp_rates;
1372 int last_rx_rssi; /* From Rx packet stats */
1373
1374 /* Rx'd packet timing information */
1375 u32 last_beacon_time;
1376 u64 last_tsf;
1377
1378 /*
1379 * each calibration channel group in the
1380 * EEPROM has a derived clip setting for
1381 * each rate.
1382 */
1383 const struct il3945_clip_group clip_groups[5];
1384
1385 } _3945;
1386#endif
1387#if defined(CONFIG_IWL4965) || defined(CONFIG_IWL4965_MODULE)
1388 struct {
1389 struct il_rx_phy_res last_phy_res;
1390 bool last_phy_res_valid;
1391
1392 struct completion firmware_loading_complete;
1393
1394 /*
1395 * chain noise reset and gain commands are the
1396 * two extra calibration commands follows the standard
1397 * phy calibration commands
1398 */
1399 u8 phy_calib_chain_noise_reset_cmd;
1400 u8 phy_calib_chain_noise_gain_cmd;
1401
Stanislaw Gruszkad735f922012-02-03 17:31:48 +01001402 u8 key_mapping_keys;
1403 struct il_wep_key wep_keys[WEP_KEYS_MAX];
1404
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001405 struct il_notif_stats stats;
1406#ifdef CONFIG_IWLEGACY_DEBUGFS
1407 struct il_notif_stats accum_stats;
1408 struct il_notif_stats delta_stats;
1409 struct il_notif_stats max_delta;
1410#endif
1411
1412 } _4965;
1413#endif
1414 };
1415
1416 struct il_hw_params hw_params;
1417
1418 u32 inta_mask;
1419
1420 struct workqueue_struct *workqueue;
1421
1422 struct work_struct restart;
1423 struct work_struct scan_completed;
1424 struct work_struct rx_replenish;
1425 struct work_struct abort_scan;
1426
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001427 bool beacon_enabled;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001428 struct sk_buff *beacon_skb;
1429
1430 struct work_struct tx_flush;
1431
1432 struct tasklet_struct irq_tasklet;
1433
1434 struct delayed_work init_alive_start;
1435 struct delayed_work alive_start;
1436 struct delayed_work scan_check;
1437
1438 /* TX Power */
1439 s8 tx_power_user_lmt;
1440 s8 tx_power_device_lmt;
1441 s8 tx_power_next;
1442
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001443#ifdef CONFIG_IWLEGACY_DEBUG
1444 /* debugging info */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001445 u32 debug_level; /* per device debugging will override global
1446 il_debug_level if set */
1447#endif /* CONFIG_IWLEGACY_DEBUG */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001448#ifdef CONFIG_IWLEGACY_DEBUGFS
1449 /* debugfs */
1450 u16 tx_traffic_idx;
1451 u16 rx_traffic_idx;
1452 u8 *tx_traffic;
1453 u8 *rx_traffic;
1454 struct dentry *debugfs_dir;
1455 u32 dbgfs_sram_offset, dbgfs_sram_len;
1456 bool disable_ht40;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001457#endif /* CONFIG_IWLEGACY_DEBUGFS */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001458
1459 struct work_struct txpower_work;
1460 u32 disable_sens_cal;
1461 u32 disable_chain_noise_cal;
1462 u32 disable_tx_power_cal;
1463 struct work_struct run_time_calib_work;
1464 struct timer_list stats_periodic;
1465 struct timer_list watchdog;
1466 bool hw_ready;
1467
1468 struct led_classdev led;
1469 unsigned long blink_on, blink_off;
1470 bool led_registered;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001471}; /*il_priv */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001472
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001473static inline void
1474il_txq_ctx_activate(struct il_priv *il, int txq_id)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001475{
1476 set_bit(txq_id, &il->txq_ctx_active_msk);
1477}
1478
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001479static inline void
1480il_txq_ctx_deactivate(struct il_priv *il, int txq_id)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001481{
1482 clear_bit(txq_id, &il->txq_ctx_active_msk);
1483}
1484
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001485static inline struct ieee80211_hdr *
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001486il_tx_queue_get_hdr(struct il_priv *il, int txq_id, int idx)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001487{
1488 if (il->txq[txq_id].txb[idx].skb)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001489 return (struct ieee80211_hdr *)il->txq[txq_id].txb[idx].skb->
1490 data;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001491 return NULL;
1492}
1493
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001494static inline int
1495il_is_associated(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001496{
Stanislaw Gruszkac8b03952012-02-03 17:31:37 +01001497 return (il->active.filter_flags & RXON_FILTER_ASSOC_MSK) ? 1 : 0;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001498}
1499
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001500static inline int
1501il_is_any_associated(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001502{
1503 return il_is_associated(il);
1504}
1505
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001506static inline int
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001507il_is_channel_valid(const struct il_channel_info *ch_info)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001508{
1509 if (ch_info == NULL)
1510 return 0;
1511 return (ch_info->flags & EEPROM_CHANNEL_VALID) ? 1 : 0;
1512}
1513
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001514static inline int
1515il_is_channel_radar(const struct il_channel_info *ch_info)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001516{
1517 return (ch_info->flags & EEPROM_CHANNEL_RADAR) ? 1 : 0;
1518}
1519
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001520static inline u8
1521il_is_channel_a_band(const struct il_channel_info *ch_info)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001522{
1523 return ch_info->band == IEEE80211_BAND_5GHZ;
1524}
1525
1526static inline int
1527il_is_channel_passive(const struct il_channel_info *ch)
1528{
1529 return (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) ? 1 : 0;
1530}
1531
1532static inline int
1533il_is_channel_ibss(const struct il_channel_info *ch)
1534{
1535 return (ch->flags & EEPROM_CHANNEL_IBSS) ? 1 : 0;
1536}
1537
1538static inline void
1539__il_free_pages(struct il_priv *il, struct page *page)
1540{
1541 __free_pages(page, il->hw_params.rx_page_order);
1542 il->alloc_rxb_page--;
1543}
1544
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001545static inline void
1546il_free_pages(struct il_priv *il, unsigned long page)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001547{
1548 free_pages(page, il->hw_params.rx_page_order);
1549 il->alloc_rxb_page--;
1550}
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001551
1552#define IWLWIFI_VERSION "in-tree:"
1553#define DRV_COPYRIGHT "Copyright(c) 2003-2011 Intel Corporation"
1554#define DRV_AUTHOR "<ilw@linux.intel.com>"
1555
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001556#define IL_PCI_DEVICE(dev, subdev, cfg) \
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001557 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
1558 .subvendor = PCI_ANY_ID, .subdevice = (subdev), \
1559 .driver_data = (kernel_ulong_t)&(cfg)
1560
1561#define TIME_UNIT 1024
1562
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001563#define IL_SKU_G 0x1
1564#define IL_SKU_A 0x2
1565#define IL_SKU_N 0x8
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001566
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001567#define IL_CMD(x) case x: return #x
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001568
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001569/* Size of one Rx buffer in host DRAM */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001570#define IL_RX_BUF_SIZE_3K (3 * 1000) /* 3945 only */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02001571#define IL_RX_BUF_SIZE_4K (4 * 1024)
1572#define IL_RX_BUF_SIZE_8K (8 * 1024)
1573
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001574struct il_hcmd_ops {
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001575 int (*rxon_assoc) (struct il_priv *il);
1576 int (*commit_rxon) (struct il_priv *il);
1577 void (*set_rxon_chain) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001578};
1579
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001580struct il_hcmd_utils_ops {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001581 u16(*get_hcmd_size) (u8 cmd_id, u16 len);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001582 u16(*build_addsta_hcmd) (const struct il_addsta_cmd *cmd, u8 *data);
1583 int (*request_scan) (struct il_priv *il, struct ieee80211_vif *vif);
1584 void (*post_scan) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001585};
1586
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001587struct il_apm_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001588 int (*init) (struct il_priv *il);
1589 void (*config) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001590};
1591
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001592#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001593struct il_debugfs_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001594 ssize_t(*rx_stats_read) (struct file *file, char __user *user_buf,
1595 size_t count, loff_t *ppos);
1596 ssize_t(*tx_stats_read) (struct file *file, char __user *user_buf,
1597 size_t count, loff_t *ppos);
1598 ssize_t(*general_stats_read) (struct file *file,
1599 char __user *user_buf, size_t count,
1600 loff_t *ppos);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001601};
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001602#endif
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001603
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001604struct il_temp_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001605 void (*temperature) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001606};
1607
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001608struct il_lib_ops {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001609 /* set hw dependent parameters */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001610 int (*set_hw_params) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001611 /* Handling TX */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001612 void (*txq_update_byte_cnt_tbl) (struct il_priv *il,
1613 struct il_tx_queue *txq,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001614 u16 byte_cnt);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001615 int (*txq_attach_buf_to_tfd) (struct il_priv *il,
1616 struct il_tx_queue *txq, dma_addr_t addr,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001617 u16 len, u8 reset, u8 pad);
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001618 void (*txq_free_tfd) (struct il_priv *il, struct il_tx_queue *txq);
1619 int (*txq_init) (struct il_priv *il, struct il_tx_queue *txq);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001620 /* setup Rx handler */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001621 void (*handler_setup) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001622 /* alive notification after init uCode load */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001623 void (*init_alive_start) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001624 /* check validity of rtc data address */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001625 int (*is_valid_rtc_data_addr) (u32 addr);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001626 /* 1st ucode load */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001627 int (*load_ucode) (struct il_priv *il);
Stanislaw Gruszka1ba2f122011-06-08 15:28:27 +02001628
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001629 void (*dump_nic_error_log) (struct il_priv *il);
1630 int (*dump_fh) (struct il_priv *il, char **buf, bool display);
1631 int (*set_channel_switch) (struct il_priv *il,
1632 struct ieee80211_channel_switch *ch_switch);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001633 /* power management */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001634 struct il_apm_ops apm_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001635
1636 /* power */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001637 int (*send_tx_power) (struct il_priv *il);
1638 void (*update_chain_flags) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001639
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02001640 /* eeprom operations */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001641 struct il_eeprom_ops eeprom_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001642
1643 /* temperature */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001644 struct il_temp_ops temp_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001645
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001646#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001647 struct il_debugfs_ops debugfs_ops;
Greg Dietsche9b5e2f42011-09-06 19:11:35 -05001648#endif
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001649
1650};
1651
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001652struct il_led_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001653 int (*cmd) (struct il_priv *il, struct il_led_cmd *led_cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001654};
1655
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001656struct il_legacy_ops {
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001657 void (*post_associate) (struct il_priv *il);
1658 void (*config_ap) (struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001659 /* station management */
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001660 int (*update_bcast_stations) (struct il_priv *il);
1661 int (*manage_ibss_station) (struct il_priv *il,
1662 struct ieee80211_vif *vif, bool add);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001663};
1664
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001665struct il_ops {
1666 const struct il_lib_ops *lib;
1667 const struct il_hcmd_ops *hcmd;
1668 const struct il_hcmd_utils_ops *utils;
1669 const struct il_led_ops *led;
1670 const struct il_nic_ops *nic;
1671 const struct il_legacy_ops *legacy;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001672};
1673
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001674struct il_mod_params {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001675 int sw_crypto; /* def: 0 = using hardware encryption */
1676 int disable_hw_scan; /* def: 0 = use h/w scan */
1677 int num_of_queues; /* def: HW dependent */
1678 int disable_11n; /* def: 0 = 11n capabilities enabled */
1679 int amsdu_size_8K; /* def: 1 = enable 8K amsdu size */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001680 int antenna; /* def: 0 = both antennas (use diversity) */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001681 int restart_fw; /* def: 1 = restart firmware */
1682};
1683
1684/*
1685 * @led_compensation: compensate on the led on/off time per HW according
1686 * to the deviation to achieve the desired led frequency.
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02001687 * The detail algorithm is described in common.c
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001688 * @chain_noise_num_beacons: number of beacons used to compute chain noise
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001689 * @wd_timeout: TX queues watchdog timeout
1690 * @temperature_kelvin: temperature report by uCode in kelvin
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001691 * @ucode_tracing: support ucode continuous tracing
1692 * @sensitivity_calib_by_driver: driver has the capability to perform
1693 * sensitivity calibration operation
1694 * @chain_noise_calib_by_driver: driver has the capability to perform
1695 * chain noise calibration operation
1696 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001697struct il_base_params {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001698};
1699
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02001700#define IL_LED_SOLID 11
1701#define IL_DEF_LED_INTRVL cpu_to_le32(1000)
1702
1703#define IL_LED_ACTIVITY (0<<1)
1704#define IL_LED_LINK (1<<1)
1705
1706/*
1707 * LED mode
1708 * IL_LED_DEFAULT: use device default
1709 * IL_LED_RF_STATE: turn LED on/off based on RF state
1710 * LED ON = RF ON
1711 * LED OFF = RF OFF
1712 * IL_LED_BLINK: adjust led blink rate based on blink table
1713 */
1714enum il_led_mode {
1715 IL_LED_DEFAULT,
1716 IL_LED_RF_STATE,
1717 IL_LED_BLINK,
1718};
1719
1720void il_leds_init(struct il_priv *il);
1721void il_leds_exit(struct il_priv *il);
1722
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001723/**
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001724 * struct il_cfg
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001725 * @fw_name_pre: Firmware filename prefix. The api version and extension
1726 * (.ucode) will be added to filename before loading from disk. The
1727 * filename is constructed as fw_name_pre<api>.ucode.
1728 * @ucode_api_max: Highest version of uCode API supported by driver.
1729 * @ucode_api_min: Lowest version of uCode API supported by driver.
1730 * @scan_antennas: available antenna for scan operation
1731 * @led_mode: 0=blinking, 1=On(RF On)/Off(RF Off)
1732 *
1733 * We enable the driver to be backward compatible wrt API version. The
1734 * driver specifies which APIs it supports (with @ucode_api_max being the
1735 * highest and @ucode_api_min the lowest). Firmware will only be loaded if
1736 * it has a supported API version. The firmware's API version will be
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001737 * stored in @il_priv, enabling the driver to make runtime changes based
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001738 * on firmware version used.
1739 *
1740 * For example,
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001741 * if (IL_UCODE_API(il->ucode_ver) >= 2) {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001742 * Driver interacts with Firmware API version >= 2.
1743 * } else {
1744 * Driver interacts with Firmware API version 1.
1745 * }
1746 *
1747 * The ideal usage of this infrastructure is to treat a new ucode API
1748 * release as a new hardware revision. That is, through utilizing the
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001749 * il_hcmd_utils_ops etc. we accommodate different command structures
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001750 * and flows between hardware versions as well as their API
1751 * versions.
1752 *
1753 */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001754struct il_cfg {
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001755 /* params specific to an individual device within a device family */
1756 const char *name;
1757 const char *fw_name_pre;
1758 const unsigned int ucode_api_max;
1759 const unsigned int ucode_api_min;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001760 u8 valid_tx_ant;
1761 u8 valid_rx_ant;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001762 unsigned int sku;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001763 u16 eeprom_ver;
1764 u16 eeprom_calib_ver;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001765 /* module based parameters which can be set from modprobe cmd */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001766 const struct il_mod_params *mod_params;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001767 /* params not likely to change within a device family */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001768 struct il_base_params *base_params;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001769 /* params likely to change within a device family */
1770 u8 scan_rx_antennas[IEEE80211_NUM_BANDS];
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001771 enum il_led_mode led_mode;
Stanislaw Gruszka89ef1ed2012-02-03 17:31:59 +01001772
1773 int eeprom_size;
1774 int num_of_queues; /* def: HW dependent */
1775 int num_of_ampdu_queues; /* def: HW dependent */
1776 /* for il_apm_init() */
1777 u32 pll_cfg_val;
1778 bool set_l0s;
1779 bool use_bsm;
1780
1781 u16 led_compensation;
1782 int chain_noise_num_beacons;
1783 unsigned int wd_timeout;
1784 bool temperature_kelvin;
1785 const bool ucode_tracing;
1786 const bool sensitivity_calib_by_driver;
1787 const bool chain_noise_calib_by_driver;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001788};
1789
1790/***************************
1791 * L i b *
1792 ***************************/
1793
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001794int il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1795 u16 queue, const struct ieee80211_tx_queue_params *params);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001796int il_mac_tx_last_beacon(struct ieee80211_hw *hw);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001797
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001798void il_set_rxon_hwcrypto(struct il_priv *il, int hw_decrypt);
1799int il_check_rxon_cmd(struct il_priv *il);
1800int il_full_rxon_required(struct il_priv *il);
1801int il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch);
1802void il_set_flags_for_band(struct il_priv *il, enum ieee80211_band band,
1803 struct ieee80211_vif *vif);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001804u8 il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band);
1805void il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001806bool il_is_ht40_tx_allowed(struct il_priv *il,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001807 struct ieee80211_sta_ht_cap *ht_cap);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001808void il_connection_init_rx_config(struct il_priv *il);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001809void il_set_rate(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001810int il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr,
1811 u32 decrypt_res, struct ieee80211_rx_status *stats);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001812void il_irq_handle_error(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001813int il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001814void il_mac_remove_interface(struct ieee80211_hw *hw,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001815 struct ieee80211_vif *vif);
1816int il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1817 enum nl80211_iftype newtype, bool newp2p);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001818int il_alloc_txq_mem(struct il_priv *il);
1819void il_txq_mem(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001820
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001821#ifdef CONFIG_IWLEGACY_DEBUGFS
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001822int il_alloc_traffic_mem(struct il_priv *il);
1823void il_free_traffic_mem(struct il_priv *il);
1824void il_reset_traffic_log(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001825void il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
1826 struct ieee80211_hdr *header);
1827void il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
1828 struct ieee80211_hdr *header);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001829const char *il_get_mgmt_string(int cmd);
1830const char *il_get_ctrl_string(int cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001831void il_clear_traffic_stats(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001832void il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001833#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001834static inline int
1835il_alloc_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001836{
1837 return 0;
1838}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001839
1840static inline void
1841il_free_traffic_mem(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001842{
1843}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001844
1845static inline void
1846il_reset_traffic_log(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001847{
1848}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001849
1850static inline void
1851il_dbg_log_tx_data_frame(struct il_priv *il, u16 length,
1852 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001853{
1854}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001855
1856static inline void
1857il_dbg_log_rx_data_frame(struct il_priv *il, u16 length,
1858 struct ieee80211_hdr *header)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001859{
1860}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001861
1862static inline void
1863il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001864{
1865}
1866#endif
1867/*****************************************************
1868 * RX handlers.
1869 * **************************************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001870void il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb);
1871void il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb);
1872void il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001873
1874/*****************************************************
1875* RX
1876******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001877void il_cmd_queue_unmap(struct il_priv *il);
1878void il_cmd_queue_free(struct il_priv *il);
1879int il_rx_queue_alloc(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001880void il_rx_queue_update_write_ptr(struct il_priv *il, struct il_rx_queue *q);
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001881int il_rx_queue_space(const struct il_rx_queue *q);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001882void il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001883/* Handlers */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001884void il_hdl_spectrum_measurement(struct il_priv *il, struct il_rx_buf *rxb);
1885void il_recover_from_stats(struct il_priv *il, struct il_rx_pkt *pkt);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001886void il_chswitch_done(struct il_priv *il, bool is_success);
Stanislaw Gruszkad2dfb332011-11-15 13:16:38 +01001887void il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001888
1889/* TX helpers */
1890
1891/*****************************************************
1892* TX
1893******************************************************/
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001894void il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq);
1895int il_tx_queue_init(struct il_priv *il, struct il_tx_queue *txq, int slots_num,
1896 u32 txq_id);
1897void il_tx_queue_reset(struct il_priv *il, struct il_tx_queue *txq,
1898 int slots_num, u32 txq_id);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001899void il_tx_queue_unmap(struct il_priv *il, int txq_id);
1900void il_tx_queue_free(struct il_priv *il, int txq_id);
1901void il_setup_watchdog(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001902/*****************************************************
1903 * TX power
1904 ****************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001905int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001906
1907/*******************************************************************************
1908 * Rate
1909 ******************************************************************************/
1910
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001911u8 il_get_lowest_plcp(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001912
1913/*******************************************************************************
1914 * Scanning
1915 ******************************************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001916void il_init_scan_params(struct il_priv *il);
1917int il_scan_cancel(struct il_priv *il);
1918int il_scan_cancel_timeout(struct il_priv *il, unsigned long ms);
1919void il_force_scan_end(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001920int il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1921 struct cfg80211_scan_request *req);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001922void il_internal_short_hw_scan(struct il_priv *il);
1923int il_force_reset(struct il_priv *il, bool external);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001924u16 il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001925 const u8 *ta, const u8 *ie, int ie_len, int left);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001926void il_setup_rx_scan_handlers(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001927u16 il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band,
1928 u8 n_probes);
1929u16 il_get_passive_dwell_time(struct il_priv *il, enum ieee80211_band band,
1930 struct ieee80211_vif *vif);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001931void il_setup_scan_deferred_work(struct il_priv *il);
1932void il_cancel_scan_deferred_work(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001933
1934/* For faster active scanning, scan will move to the next channel if fewer than
1935 * PLCP_QUIET_THRESH packets are heard on this channel within
1936 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
1937 * time if it's a quiet channel (nothing responded to our probe, and there's
1938 * no other traffic).
1939 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001940#define IL_ACTIVE_QUIET_TIME cpu_to_le16(10) /* msec */
1941#define IL_PLCP_QUIET_THRESH cpu_to_le16(1) /* packets */
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001942
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001943#define IL_SCAN_CHECK_WATCHDOG (HZ * 7)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001944
1945/*****************************************************
1946 * S e n d i n g H o s t C o m m a n d s *
1947 *****************************************************/
1948
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001949const char *il_get_cmd_string(u8 cmd);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001950int __must_check il_send_cmd_sync(struct il_priv *il, struct il_host_cmd *cmd);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001951int il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001952int __must_check il_send_cmd_pdu(struct il_priv *il, u8 id, u16 len,
1953 const void *data);
1954int il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len, const void *data,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01001955 void (*callback) (struct il_priv *il,
1956 struct il_device_cmd *cmd,
1957 struct il_rx_pkt *pkt));
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001958
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001959int il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001960
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001961/*****************************************************
1962 * PCI *
1963 *****************************************************/
1964
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001965static inline u16
1966il_pcie_link_ctl(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001967{
1968 int pos;
1969 u16 pci_lnk_ctl;
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001970 pos = pci_pcie_cap(il->pci_dev);
1971 pci_read_config_word(il->pci_dev, pos + PCI_EXP_LNKCTL, &pci_lnk_ctl);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001972 return pci_lnk_ctl;
1973}
1974
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001975void il_bg_watchdog(unsigned long data);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01001976u32 il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval);
1977__le32 il_add_beacon_time(struct il_priv *il, u32 base, u32 addon,
1978 u32 beacon_interval);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001979
1980#ifdef CONFIG_PM
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001981int il_pci_suspend(struct device *device);
1982int il_pci_resume(struct device *device);
1983extern const struct dev_pm_ops il_pm_ops;
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001984
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001985#define IL_LEGACY_PM_OPS (&il_pm_ops)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001986
1987#else /* !CONFIG_PM */
1988
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02001989#define IL_LEGACY_PM_OPS NULL
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001990
1991#endif /* !CONFIG_PM */
1992
1993/*****************************************************
1994* Error Handling Debugging
1995******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02001996void il4965_dump_nic_error_log(struct il_priv *il);
Stanislaw Gruszkad3175162011-11-15 11:25:42 +01001997#ifdef CONFIG_IWLEGACY_DEBUG
Stanislaw Gruszka83007192012-02-03 17:31:57 +01001998void il_print_rx_config_cmd(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08001999#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002000static inline void
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002001il_print_rx_config_cmd(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002002{
2003}
2004#endif
2005
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002006void il_clear_isr_stats(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002007
2008/*****************************************************
2009* GEOS
2010******************************************************/
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002011int il_init_geos(struct il_priv *il);
2012void il_free_geos(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002013
2014/*************** DRIVER STATUS FUNCTIONS *****/
2015
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002016#define S_HCMD_ACTIVE 0 /* host command in progress */
2017/* 1 is unused (used to be S_HCMD_SYNC_ACTIVE) */
2018#define S_INT_ENABLED 2
2019#define S_RF_KILL_HW 3
2020#define S_CT_KILL 4
2021#define S_INIT 5
2022#define S_ALIVE 6
2023#define S_READY 7
2024#define S_TEMPERATURE 8
2025#define S_GEO_CONFIGURED 9
2026#define S_EXIT_PENDING 10
Stanislaw Gruszkadb7746f2011-11-15 13:11:50 +01002027#define S_STATS 12
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002028#define S_SCANNING 13
2029#define S_SCAN_ABORTING 14
2030#define S_SCAN_HW 15
2031#define S_POWER_PMI 16
2032#define S_FW_ERROR 17
2033#define S_CHANNEL_SWITCH_PENDING 18
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002034
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002035static inline int
2036il_is_ready(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002037{
2038 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
2039 * set but EXIT_PENDING is not */
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002040 return test_bit(S_READY, &il->status) &&
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002041 test_bit(S_GEO_CONFIGURED, &il->status) &&
2042 !test_bit(S_EXIT_PENDING, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002043}
2044
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002045static inline int
2046il_is_alive(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002047{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002048 return test_bit(S_ALIVE, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002049}
2050
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002051static inline int
2052il_is_init(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002053{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002054 return test_bit(S_INIT, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002055}
2056
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002057static inline int
2058il_is_rfkill_hw(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002059{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002060 return test_bit(S_RF_KILL_HW, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002061}
2062
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002063static inline int
2064il_is_rfkill(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002065{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002066 return il_is_rfkill_hw(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002067}
2068
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002069static inline int
2070il_is_ctkill(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002071{
Stanislaw Gruszkaa6766cc2011-11-15 13:09:01 +01002072 return test_bit(S_CT_KILL, &il->status);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002073}
2074
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002075static inline int
2076il_is_ready_rf(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002077{
2078
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002079 if (il_is_rfkill(il))
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002080 return 0;
2081
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002082 return il_is_ready(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002083}
2084
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002085extern void il_send_bt_config(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002086extern int il_send_stats_request(struct il_priv *il, u8 flags, bool clear);
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002087void il_apm_stop(struct il_priv *il);
2088int il_apm_init(struct il_priv *il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002089
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002090int il_send_rxon_timing(struct il_priv *il);
2091
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002092static inline int
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002093il_send_rxon_assoc(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002094{
Stanislaw Gruszkac39ae9f2012-02-03 17:31:58 +01002095 return il->ops->hcmd->rxon_assoc(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002096}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002097
2098static inline int
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002099il_commit_rxon(struct il_priv *il)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002100{
Stanislaw Gruszkac39ae9f2012-02-03 17:31:58 +01002101 return il->ops->hcmd->commit_rxon(il);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002102}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002103
2104static inline const struct ieee80211_supported_band *
2105il_get_hw_mode(struct il_priv *il, enum ieee80211_band band)
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002106{
Stanislaw Gruszka46bc8d42011-10-24 16:49:25 +02002107 return il->hw->wiphy->bands[band];
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002108}
2109
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002110/* mac80211 handlers */
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002111int il_mac_config(struct ieee80211_hw *hw, u32 changed);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002112void il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
2113void il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2114 struct ieee80211_bss_conf *bss_conf, u32 changes);
2115void il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002116 __le16 fc, __le32 *tx_flags);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002117
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02002118irqreturn_t il_isr(int irq, void *data);
Wey-Yi Guybe663ab2011-02-21 11:27:26 -08002119
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002120extern void il_set_bit(struct il_priv *p, u32 r, u32 m);
2121extern void il_clear_bit(struct il_priv *p, u32 r, u32 m);
2122extern int _il_grab_nic_access(struct il_priv *il);
2123extern int _il_poll_bit(struct il_priv *il, u32 addr, u32 bits, u32 mask, int timeout);
2124extern int il_poll_bit(struct il_priv *il, u32 addr, u32 mask, int timeout);
2125extern u32 il_rd_prph(struct il_priv *il, u32 reg);
2126extern void il_wr_prph(struct il_priv *il, u32 addr, u32 val);
2127extern u32 il_read_targ_mem(struct il_priv *il, u32 addr);
2128extern void il_write_targ_mem(struct il_priv *il, u32 addr, u32 val);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002129
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002130static inline void
2131_il_write8(struct il_priv *il, u32 ofs, u8 val)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002132{
2133 iowrite8(val, il->hw_base + ofs);
2134}
2135#define il_write8(il, ofs, val) _il_write8(il, ofs, val)
2136
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002137static inline void
2138_il_wr(struct il_priv *il, u32 ofs, u32 val)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002139{
2140 iowrite32(val, il->hw_base + ofs);
2141}
2142
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002143static inline u32
2144_il_rd(struct il_priv *il, u32 ofs)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002145{
2146 return ioread32(il->hw_base + ofs);
2147}
2148
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002149static inline void
2150_il_clear_bit(struct il_priv *il, u32 reg, u32 mask)
2151{
2152 _il_wr(il, reg, _il_rd(il, reg) & ~mask);
2153}
2154
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002155static inline void
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002156_il_set_bit(struct il_priv *il, u32 reg, u32 mask)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002157{
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002158 _il_wr(il, reg, _il_rd(il, reg) | mask);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002159}
2160
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002161static inline void
2162_il_release_nic_access(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002163{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002164 _il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002165}
2166
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002167static inline u32
2168il_rd(struct il_priv *il, u32 reg)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002169{
2170 u32 value;
2171 unsigned long reg_flags;
2172
2173 spin_lock_irqsave(&il->reg_lock, reg_flags);
2174 _il_grab_nic_access(il);
2175 value = _il_rd(il, reg);
2176 _il_release_nic_access(il);
2177 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2178 return value;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002179}
2180
2181static inline void
2182il_wr(struct il_priv *il, u32 reg, u32 value)
2183{
2184 unsigned long reg_flags;
2185
2186 spin_lock_irqsave(&il->reg_lock, reg_flags);
2187 if (!_il_grab_nic_access(il)) {
2188 _il_wr(il, reg, value);
2189 _il_release_nic_access(il);
2190 }
2191 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2192}
2193
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002194static inline u32
2195_il_rd_prph(struct il_priv *il, u32 reg)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002196{
2197 _il_wr(il, HBUS_TARG_PRPH_RADDR, reg | (3 << 24));
2198 rmb();
2199 return _il_rd(il, HBUS_TARG_PRPH_RDAT);
2200}
2201
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002202static inline void
2203_il_wr_prph(struct il_priv *il, u32 addr, u32 val)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002204{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002205 _il_wr(il, HBUS_TARG_PRPH_WADDR, ((addr & 0x0000FFFF) | (3 << 24)));
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002206 wmb();
2207 _il_wr(il, HBUS_TARG_PRPH_WDAT, val);
2208}
2209
2210static inline void
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002211il_set_bits_prph(struct il_priv *il, u32 reg, u32 mask)
2212{
2213 unsigned long reg_flags;
2214
2215 spin_lock_irqsave(&il->reg_lock, reg_flags);
2216 _il_grab_nic_access(il);
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002217 _il_wr_prph(il, reg, (_il_rd_prph(il, reg) | mask));
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002218 _il_release_nic_access(il);
2219 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2220}
2221
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002222static inline void
2223il_set_bits_mask_prph(struct il_priv *il, u32 reg, u32 bits, u32 mask)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002224{
2225 unsigned long reg_flags;
2226
2227 spin_lock_irqsave(&il->reg_lock, reg_flags);
2228 _il_grab_nic_access(il);
Stanislaw Gruszka17d4eca2011-12-23 08:13:43 +01002229 _il_wr_prph(il, reg, ((_il_rd_prph(il, reg) & mask) | bits));
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002230 _il_release_nic_access(il);
2231 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2232}
2233
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002234static inline void
2235il_clear_bits_prph(struct il_priv *il, u32 reg, u32 mask)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002236{
2237 unsigned long reg_flags;
2238 u32 val;
2239
2240 spin_lock_irqsave(&il->reg_lock, reg_flags);
2241 _il_grab_nic_access(il);
2242 val = _il_rd_prph(il, reg);
2243 _il_wr_prph(il, reg, (val & ~mask));
2244 _il_release_nic_access(il);
2245 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2246}
2247
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002248#define HW_KEY_DYNAMIC 0
2249#define HW_KEY_DEFAULT 1
2250
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002251#define IL_STA_DRIVER_ACTIVE BIT(0) /* driver entry is active */
2252#define IL_STA_UCODE_ACTIVE BIT(1) /* ucode entry is active */
2253#define IL_STA_UCODE_INPROGRESS BIT(2) /* ucode entry is in process of
2254 being activated */
2255#define IL_STA_LOCAL BIT(3) /* station state not directed by mac80211;
2256 (this is for the IBSS BSSID stations) */
2257#define IL_STA_BCAST BIT(4) /* this station is the special bcast station */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002258
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002259void il_restore_stations(struct il_priv *il);
2260void il_clear_ucode_stations(struct il_priv *il);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002261void il_dealloc_bcast_stations(struct il_priv *il);
2262int il_get_free_ucode_key_idx(struct il_priv *il);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002263int il_send_add_sta(struct il_priv *il, struct il_addsta_cmd *sta, u8 flags);
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002264int il_add_station_common(struct il_priv *il, const u8 *addr, bool is_ap,
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002265 struct ieee80211_sta *sta, u8 *sta_id_r);
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002266int il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr);
2267int il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2268 struct ieee80211_sta *sta);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002269
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002270u8 il_prep_station(struct il_priv *il, const u8 *addr, bool is_ap,
2271 struct ieee80211_sta *sta);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002272
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002273int il_send_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq,
2274 u8 flags, bool init);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002275
2276/**
2277 * il_clear_driver_stations - clear knowledge of all stations from driver
2278 * @il: iwl il struct
2279 *
2280 * This is called during il_down() to make sure that in the case
2281 * we're coming there from a hardware restart mac80211 will be
2282 * able to reconfigure stations -- if we're getting there in the
2283 * normal down flow then the stations will already be cleared.
2284 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002285static inline void
2286il_clear_driver_stations(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002287{
2288 unsigned long flags;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002289
2290 spin_lock_irqsave(&il->sta_lock, flags);
2291 memset(il->stations, 0, sizeof(il->stations));
2292 il->num_stations = 0;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002293 il->ucode_key_table = 0;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002294 spin_unlock_irqrestore(&il->sta_lock, flags);
2295}
2296
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002297static inline int
2298il_sta_id(struct ieee80211_sta *sta)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002299{
2300 if (WARN_ON(!sta))
2301 return IL_INVALID_STATION;
2302
2303 return ((struct il_station_priv_common *)sta->drv_priv)->sta_id;
2304}
2305
2306/**
2307 * il_sta_id_or_broadcast - return sta_id or broadcast sta
2308 * @il: iwl il
2309 * @context: the current context
2310 * @sta: mac80211 station
2311 *
2312 * In certain circumstances mac80211 passes a station pointer
2313 * that may be %NULL, for example during TX or key setup. In
2314 * that case, we need to use the broadcast station, so this
2315 * inline wraps that pattern.
2316 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002317static inline int
Stanislaw Gruszka83007192012-02-03 17:31:57 +01002318il_sta_id_or_broadcast(struct il_priv *il, struct ieee80211_sta *sta)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002319{
2320 int sta_id;
2321
2322 if (!sta)
Stanislaw Gruszkab16db502012-02-03 17:31:44 +01002323 return il->hw_params.bcast_id;
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002324
2325 sta_id = il_sta_id(sta);
2326
2327 /*
2328 * mac80211 should not be passing a partially
2329 * initialised station!
2330 */
2331 WARN_ON(sta_id == IL_INVALID_STATION);
2332
2333 return sta_id;
2334}
2335
2336/**
2337 * il_queue_inc_wrap - increment queue idx, wrap back to beginning
2338 * @idx -- current idx
2339 * @n_bd -- total number of entries in queue (must be power of 2)
2340 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002341static inline int
2342il_queue_inc_wrap(int idx, int n_bd)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002343{
2344 return ++idx & (n_bd - 1);
2345}
2346
2347/**
2348 * il_queue_dec_wrap - decrement queue idx, wrap back to end
2349 * @idx -- current idx
2350 * @n_bd -- total number of entries in queue (must be power of 2)
2351 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002352static inline int
2353il_queue_dec_wrap(int idx, int n_bd)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002354{
2355 return --idx & (n_bd - 1);
2356}
2357
2358/* TODO: Move fw_desc functions to iwl-pci.ko */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002359static inline void
2360il_free_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002361{
2362 if (desc->v_addr)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002363 dma_free_coherent(&pci_dev->dev, desc->len, desc->v_addr,
2364 desc->p_addr);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002365 desc->v_addr = NULL;
2366 desc->len = 0;
2367}
2368
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002369static inline int
2370il_alloc_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002371{
2372 if (!desc->len) {
2373 desc->v_addr = NULL;
2374 return -EINVAL;
2375 }
2376
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002377 desc->v_addr =
2378 dma_alloc_coherent(&pci_dev->dev, desc->len, &desc->p_addr,
2379 GFP_KERNEL);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002380 return (desc->v_addr != NULL) ? 0 : -ENOMEM;
2381}
2382
2383/*
2384 * we have 8 bits used like this:
2385 *
2386 * 7 6 5 4 3 2 1 0
2387 * | | | | | | | |
2388 * | | | | | | +-+-------- AC queue (0-3)
2389 * | | | | | |
2390 * | +-+-+-+-+------------ HW queue ID
2391 * |
2392 * +---------------------- unused
2393 */
2394static inline void
2395il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq)
2396{
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002397 BUG_ON(ac > 3); /* only have 2 bits */
2398 BUG_ON(hwq > 31); /* only use 5 bits */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002399
2400 txq->swq_id = (hwq << 2) | ac;
2401}
2402
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002403static inline void
2404il_wake_queue(struct il_priv *il, struct il_tx_queue *txq)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002405{
2406 u8 queue = txq->swq_id;
2407 u8 ac = queue & 3;
2408 u8 hwq = (queue >> 2) & 0x1f;
2409
2410 if (test_and_clear_bit(hwq, il->queue_stopped))
2411 if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0)
2412 ieee80211_wake_queue(il->hw, ac);
2413}
2414
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002415static inline void
2416il_stop_queue(struct il_priv *il, struct il_tx_queue *txq)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002417{
2418 u8 queue = txq->swq_id;
2419 u8 ac = queue & 3;
2420 u8 hwq = (queue >> 2) & 0x1f;
2421
2422 if (!test_and_set_bit(hwq, il->queue_stopped))
2423 if (atomic_inc_return(&il->queue_stop_count[ac]) > 0)
2424 ieee80211_stop_queue(il->hw, ac);
2425}
2426
2427#ifdef ieee80211_stop_queue
2428#undef ieee80211_stop_queue
2429#endif
2430
2431#define ieee80211_stop_queue DO_NOT_USE_ieee80211_stop_queue
2432
2433#ifdef ieee80211_wake_queue
2434#undef ieee80211_wake_queue
2435#endif
2436
2437#define ieee80211_wake_queue DO_NOT_USE_ieee80211_wake_queue
2438
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002439static inline void
2440il_disable_interrupts(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002441{
2442 clear_bit(S_INT_ENABLED, &il->status);
2443
2444 /* disable interrupts from uCode/NIC to host */
2445 _il_wr(il, CSR_INT_MASK, 0x00000000);
2446
2447 /* acknowledge/clear/reset any interrupts still pending
2448 * from uCode or flow handler (Rx/Tx DMA) */
2449 _il_wr(il, CSR_INT, 0xffffffff);
2450 _il_wr(il, CSR_FH_INT_STATUS, 0xffffffff);
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002451}
2452
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002453static inline void
2454il_enable_rfkill_int(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002455{
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002456 _il_wr(il, CSR_INT_MASK, CSR_INT_BIT_RF_KILL);
2457}
2458
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002459static inline void
2460il_enable_interrupts(struct il_priv *il)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002461{
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002462 set_bit(S_INT_ENABLED, &il->status);
2463 _il_wr(il, CSR_INT_MASK, il->inta_mask);
2464}
2465
2466/**
2467 * il_beacon_time_mask_low - mask of lower 32 bit of beacon time
2468 * @il -- pointer to il_priv data structure
2469 * @tsf_bits -- number of bits need to shift for masking)
2470 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002471static inline u32
2472il_beacon_time_mask_low(struct il_priv *il, u16 tsf_bits)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002473{
2474 return (1 << tsf_bits) - 1;
2475}
2476
2477/**
2478 * il_beacon_time_mask_high - mask of higher 32 bit of beacon time
2479 * @il -- pointer to il_priv data structure
2480 * @tsf_bits -- number of bits need to shift for masking)
2481 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002482static inline u32
2483il_beacon_time_mask_high(struct il_priv *il, u16 tsf_bits)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002484{
2485 return ((1 << (32 - tsf_bits)) - 1) << tsf_bits;
2486}
2487
2488/**
2489 * struct il_rb_status - reseve buffer status host memory mapped FH registers
2490 *
2491 * @closed_rb_num [0:11] - Indicates the idx of the RB which was closed
2492 * @closed_fr_num [0:11] - Indicates the idx of the RX Frame which was closed
2493 * @finished_rb_num [0:11] - Indicates the idx of the current RB
2494 * in which the last frame was written to
2495 * @finished_fr_num [0:11] - Indicates the idx of the RX Frame
2496 * which was transferred
2497 */
2498struct il_rb_status {
2499 __le16 closed_rb_num;
2500 __le16 closed_fr_num;
2501 __le16 finished_rb_num;
2502 __le16 finished_fr_nam;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002503 __le32 __unused; /* 3945 only */
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002504} __packed;
2505
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002506#define TFD_QUEUE_SIZE_MAX (256)
2507#define TFD_QUEUE_SIZE_BC_DUP (64)
2508#define TFD_QUEUE_BC_SIZE (TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP)
2509#define IL_TX_DMA_MASK DMA_BIT_MASK(36)
2510#define IL_NUM_OF_TBS 20
2511
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002512static inline u8
2513il_get_dma_hi_addr(dma_addr_t addr)
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002514{
2515 return (sizeof(addr) > sizeof(u32) ? (addr >> 16) >> 16 : 0) & 0xF;
2516}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002517
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002518/**
2519 * struct il_tfd_tb transmit buffer descriptor within transmit frame descriptor
2520 *
2521 * This structure contains dma address and length of transmission address
2522 *
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002523 * @lo: low [31:0] portion of the dma address of TX buffer every even is
2524 * unaligned on 16 bit boundary
2525 * @hi_n_len: 0-3 [35:32] portion of dma
2526 * 4-15 length of the tx buffer
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002527 */
2528struct il_tfd_tb {
2529 __le32 lo;
2530 __le16 hi_n_len;
2531} __packed;
2532
2533/**
2534 * struct il_tfd
2535 *
2536 * Transmit Frame Descriptor (TFD)
2537 *
2538 * @ __reserved1[3] reserved
2539 * @ num_tbs 0-4 number of active tbs
2540 * 5 reserved
2541 * 6-7 padding (not used)
2542 * @ tbs[20] transmit frame buffer descriptors
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01002543 * @ __pad padding
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002544 *
2545 * Each Tx queue uses a circular buffer of 256 TFDs stored in host DRAM.
2546 * Both driver and device share these circular buffers, each of which must be
2547 * contiguous 256 TFDs x 128 bytes-per-TFD = 32 KBytes
2548 *
2549 * Driver must indicate the physical address of the base of each
Stanislaw Gruszka9a95b372011-08-31 14:20:23 +02002550 * circular buffer via the FH49_MEM_CBBC_QUEUE registers.
Stanislaw Gruszkae94a4092011-08-31 13:23:20 +02002551 *
2552 * Each TFD contains pointer/size information for up to 20 data buffers
2553 * in host DRAM. These buffers collectively contain the (one) frame described
2554 * by the TFD. Each buffer must be a single contiguous block of memory within
2555 * itself, but buffers may be scattered in host DRAM. Each buffer has max size
2556 * of (4K - 4). The concatenates all of a TFD's buffers into a single
2557 * Tx frame, up to 8 KBytes in size.
2558 *
2559 * A maximum of 255 (not 256!) TFDs may be on a queue waiting for Tx.
2560 */
2561struct il_tfd {
2562 u8 __reserved1[3];
2563 u8 num_tbs;
2564 struct il_tfd_tb tbs[IL_NUM_OF_TBS];
2565 __le32 __pad;
2566} __packed;
2567/* PCI registers */
2568#define PCI_CFG_RETRY_TIMEOUT 0x041
2569
2570/* PCI register values */
2571#define PCI_CFG_LINK_CTRL_VAL_L0S_EN 0x01
2572#define PCI_CFG_LINK_CTRL_VAL_L1_EN 0x02
2573
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002574struct il_rate_info {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002575 u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
2576 u8 plcp_siso; /* uCode API: RATE_SISO_6M_PLCP, etc. */
2577 u8 plcp_mimo2; /* uCode API: RATE_MIMO2_6M_PLCP, etc. */
2578 u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
2579 u8 prev_ieee; /* previous rate in IEEE speeds */
2580 u8 next_ieee; /* next rate in IEEE speeds */
2581 u8 prev_rs; /* previous rate used in rs algo */
2582 u8 next_rs; /* next rate used in rs algo */
2583 u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
2584 u8 next_rs_tgg; /* next rate used in TGG rs algo */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002585};
2586
2587struct il3945_rate_info {
2588 u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
2589 u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
2590 u8 prev_ieee; /* previous rate in IEEE speeds */
2591 u8 next_ieee; /* next rate in IEEE speeds */
2592 u8 prev_rs; /* previous rate used in rs algo */
2593 u8 next_rs; /* next rate used in rs algo */
2594 u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
2595 u8 next_rs_tgg; /* next rate used in TGG rs algo */
2596 u8 table_rs_idx; /* idx in rate scale table cmd */
2597 u8 prev_table_rs; /* prev in rate table cmd */
2598};
2599
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002600/*
2601 * These serve as idxes into
2602 * struct il_rate_info il_rates[RATE_COUNT];
2603 */
2604enum {
2605 RATE_1M_IDX = 0,
2606 RATE_2M_IDX,
2607 RATE_5M_IDX,
2608 RATE_11M_IDX,
2609 RATE_6M_IDX,
2610 RATE_9M_IDX,
2611 RATE_12M_IDX,
2612 RATE_18M_IDX,
2613 RATE_24M_IDX,
2614 RATE_36M_IDX,
2615 RATE_48M_IDX,
2616 RATE_54M_IDX,
2617 RATE_60M_IDX,
2618 RATE_COUNT,
2619 RATE_COUNT_LEGACY = RATE_COUNT - 1, /* Excluding 60M */
2620 RATE_COUNT_3945 = RATE_COUNT - 1,
2621 RATE_INVM_IDX = RATE_COUNT,
2622 RATE_INVALID = RATE_COUNT,
2623};
2624
2625enum {
2626 RATE_6M_IDX_TBL = 0,
2627 RATE_9M_IDX_TBL,
2628 RATE_12M_IDX_TBL,
2629 RATE_18M_IDX_TBL,
2630 RATE_24M_IDX_TBL,
2631 RATE_36M_IDX_TBL,
2632 RATE_48M_IDX_TBL,
2633 RATE_54M_IDX_TBL,
2634 RATE_1M_IDX_TBL,
2635 RATE_2M_IDX_TBL,
2636 RATE_5M_IDX_TBL,
2637 RATE_11M_IDX_TBL,
2638 RATE_INVM_IDX_TBL = RATE_INVM_IDX - 1,
2639};
2640
2641enum {
2642 IL_FIRST_OFDM_RATE = RATE_6M_IDX,
2643 IL39_LAST_OFDM_RATE = RATE_54M_IDX,
2644 IL_LAST_OFDM_RATE = RATE_60M_IDX,
2645 IL_FIRST_CCK_RATE = RATE_1M_IDX,
2646 IL_LAST_CCK_RATE = RATE_11M_IDX,
2647};
2648
2649/* #define vs. enum to keep from defaulting to 'large integer' */
2650#define RATE_6M_MASK (1 << RATE_6M_IDX)
2651#define RATE_9M_MASK (1 << RATE_9M_IDX)
2652#define RATE_12M_MASK (1 << RATE_12M_IDX)
2653#define RATE_18M_MASK (1 << RATE_18M_IDX)
2654#define RATE_24M_MASK (1 << RATE_24M_IDX)
2655#define RATE_36M_MASK (1 << RATE_36M_IDX)
2656#define RATE_48M_MASK (1 << RATE_48M_IDX)
2657#define RATE_54M_MASK (1 << RATE_54M_IDX)
2658#define RATE_60M_MASK (1 << RATE_60M_IDX)
2659#define RATE_1M_MASK (1 << RATE_1M_IDX)
2660#define RATE_2M_MASK (1 << RATE_2M_IDX)
2661#define RATE_5M_MASK (1 << RATE_5M_IDX)
2662#define RATE_11M_MASK (1 << RATE_11M_IDX)
2663
2664/* uCode API values for legacy bit rates, both OFDM and CCK */
2665enum {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002666 RATE_6M_PLCP = 13,
2667 RATE_9M_PLCP = 15,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002668 RATE_12M_PLCP = 5,
2669 RATE_18M_PLCP = 7,
2670 RATE_24M_PLCP = 9,
2671 RATE_36M_PLCP = 11,
2672 RATE_48M_PLCP = 1,
2673 RATE_54M_PLCP = 3,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002674 RATE_60M_PLCP = 3, /*FIXME:RS:should be removed */
2675 RATE_1M_PLCP = 10,
2676 RATE_2M_PLCP = 20,
2677 RATE_5M_PLCP = 55,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002678 RATE_11M_PLCP = 110,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002679 /*FIXME:RS:add RATE_LEGACY_INVM_PLCP = 0, */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002680};
2681
2682/* uCode API values for OFDM high-throughput (HT) bit rates */
2683enum {
2684 RATE_SISO_6M_PLCP = 0,
2685 RATE_SISO_12M_PLCP = 1,
2686 RATE_SISO_18M_PLCP = 2,
2687 RATE_SISO_24M_PLCP = 3,
2688 RATE_SISO_36M_PLCP = 4,
2689 RATE_SISO_48M_PLCP = 5,
2690 RATE_SISO_54M_PLCP = 6,
2691 RATE_SISO_60M_PLCP = 7,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002692 RATE_MIMO2_6M_PLCP = 0x8,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002693 RATE_MIMO2_12M_PLCP = 0x9,
2694 RATE_MIMO2_18M_PLCP = 0xa,
2695 RATE_MIMO2_24M_PLCP = 0xb,
2696 RATE_MIMO2_36M_PLCP = 0xc,
2697 RATE_MIMO2_48M_PLCP = 0xd,
2698 RATE_MIMO2_54M_PLCP = 0xe,
2699 RATE_MIMO2_60M_PLCP = 0xf,
2700 RATE_SISO_INVM_PLCP,
2701 RATE_MIMO2_INVM_PLCP = RATE_SISO_INVM_PLCP,
2702};
2703
2704/* MAC header values for bit rates */
2705enum {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002706 RATE_6M_IEEE = 12,
2707 RATE_9M_IEEE = 18,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002708 RATE_12M_IEEE = 24,
2709 RATE_18M_IEEE = 36,
2710 RATE_24M_IEEE = 48,
2711 RATE_36M_IEEE = 72,
2712 RATE_48M_IEEE = 96,
2713 RATE_54M_IEEE = 108,
2714 RATE_60M_IEEE = 120,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002715 RATE_1M_IEEE = 2,
2716 RATE_2M_IEEE = 4,
2717 RATE_5M_IEEE = 11,
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002718 RATE_11M_IEEE = 22,
2719};
2720
2721#define IL_CCK_BASIC_RATES_MASK \
2722 (RATE_1M_MASK | \
2723 RATE_2M_MASK)
2724
2725#define IL_CCK_RATES_MASK \
2726 (IL_CCK_BASIC_RATES_MASK | \
2727 RATE_5M_MASK | \
2728 RATE_11M_MASK)
2729
2730#define IL_OFDM_BASIC_RATES_MASK \
2731 (RATE_6M_MASK | \
2732 RATE_12M_MASK | \
2733 RATE_24M_MASK)
2734
2735#define IL_OFDM_RATES_MASK \
2736 (IL_OFDM_BASIC_RATES_MASK | \
2737 RATE_9M_MASK | \
2738 RATE_18M_MASK | \
2739 RATE_36M_MASK | \
2740 RATE_48M_MASK | \
2741 RATE_54M_MASK)
2742
2743#define IL_BASIC_RATES_MASK \
2744 (IL_OFDM_BASIC_RATES_MASK | \
2745 IL_CCK_BASIC_RATES_MASK)
2746
2747#define RATES_MASK ((1 << RATE_COUNT) - 1)
2748#define RATES_MASK_3945 ((1 << RATE_COUNT_3945) - 1)
2749
2750#define IL_INVALID_VALUE -1
2751
2752#define IL_MIN_RSSI_VAL -100
2753#define IL_MAX_RSSI_VAL 0
2754
2755/* These values specify how many Tx frame attempts before
2756 * searching for a new modulation mode */
2757#define IL_LEGACY_FAILURE_LIMIT 160
2758#define IL_LEGACY_SUCCESS_LIMIT 480
2759#define IL_LEGACY_TBL_COUNT 160
2760
2761#define IL_NONE_LEGACY_FAILURE_LIMIT 400
2762#define IL_NONE_LEGACY_SUCCESS_LIMIT 4500
2763#define IL_NONE_LEGACY_TBL_COUNT 1500
2764
2765/* Success ratio (ACKed / attempted tx frames) values (perfect is 128 * 100) */
2766#define IL_RS_GOOD_RATIO 12800 /* 100% */
2767#define RATE_SCALE_SWITCH 10880 /* 85% */
2768#define RATE_HIGH_TH 10880 /* 85% */
2769#define RATE_INCREASE_TH 6400 /* 50% */
2770#define RATE_DECREASE_TH 1920 /* 15% */
2771
2772/* possible actions when in legacy mode */
2773#define IL_LEGACY_SWITCH_ANTENNA1 0
2774#define IL_LEGACY_SWITCH_ANTENNA2 1
2775#define IL_LEGACY_SWITCH_SISO 2
2776#define IL_LEGACY_SWITCH_MIMO2_AB 3
2777#define IL_LEGACY_SWITCH_MIMO2_AC 4
2778#define IL_LEGACY_SWITCH_MIMO2_BC 5
2779
2780/* possible actions when in siso mode */
2781#define IL_SISO_SWITCH_ANTENNA1 0
2782#define IL_SISO_SWITCH_ANTENNA2 1
2783#define IL_SISO_SWITCH_MIMO2_AB 2
2784#define IL_SISO_SWITCH_MIMO2_AC 3
2785#define IL_SISO_SWITCH_MIMO2_BC 4
2786#define IL_SISO_SWITCH_GI 5
2787
2788/* possible actions when in mimo mode */
2789#define IL_MIMO2_SWITCH_ANTENNA1 0
2790#define IL_MIMO2_SWITCH_ANTENNA2 1
2791#define IL_MIMO2_SWITCH_SISO_A 2
2792#define IL_MIMO2_SWITCH_SISO_B 3
2793#define IL_MIMO2_SWITCH_SISO_C 4
2794#define IL_MIMO2_SWITCH_GI 5
2795
2796#define IL_MAX_SEARCH IL_MIMO2_SWITCH_GI
2797
2798#define IL_ACTION_LIMIT 3 /* # possible actions */
2799
2800#define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
2801
2802/* load per tid defines for A-MPDU activation */
2803#define IL_AGG_TPT_THREHOLD 0
2804#define IL_AGG_LOAD_THRESHOLD 10
2805#define IL_AGG_ALL_TID 0xff
2806#define TID_QUEUE_CELL_SPACING 50 /*mS */
2807#define TID_QUEUE_MAX_SIZE 20
2808#define TID_ROUND_VALUE 5 /* mS */
2809#define TID_MAX_LOAD_COUNT 8
2810
2811#define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
2812#define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
2813
2814extern const struct il_rate_info il_rates[RATE_COUNT];
2815
2816enum il_table_type {
2817 LQ_NONE,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002818 LQ_G, /* legacy types */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002819 LQ_A,
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002820 LQ_SISO, /* high-throughput types */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002821 LQ_MIMO2,
2822 LQ_MAX,
2823};
2824
2825#define is_legacy(tbl) ((tbl) == LQ_G || (tbl) == LQ_A)
2826#define is_siso(tbl) ((tbl) == LQ_SISO)
2827#define is_mimo2(tbl) ((tbl) == LQ_MIMO2)
2828#define is_mimo(tbl) (is_mimo2(tbl))
2829#define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl))
2830#define is_a_band(tbl) ((tbl) == LQ_A)
2831#define is_g_and(tbl) ((tbl) == LQ_G)
2832
2833#define ANT_NONE 0x0
2834#define ANT_A BIT(0)
2835#define ANT_B BIT(1)
2836#define ANT_AB (ANT_A | ANT_B)
2837#define ANT_C BIT(2)
2838#define ANT_AC (ANT_A | ANT_C)
2839#define ANT_BC (ANT_B | ANT_C)
2840#define ANT_ABC (ANT_AB | ANT_C)
2841
2842#define IL_MAX_MCS_DISPLAY_SIZE 12
2843
2844struct il_rate_mcs_info {
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002845 char mbps[IL_MAX_MCS_DISPLAY_SIZE];
2846 char mcs[IL_MAX_MCS_DISPLAY_SIZE];
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002847};
2848
2849/**
2850 * struct il_rate_scale_data -- tx success history for one rate
2851 */
2852struct il_rate_scale_data {
2853 u64 data; /* bitmap of successful frames */
2854 s32 success_counter; /* number of frames successful */
2855 s32 success_ratio; /* per-cent * 128 */
2856 s32 counter; /* number of frames attempted */
2857 s32 average_tpt; /* success ratio * expected throughput */
2858 unsigned long stamp;
2859};
2860
2861/**
2862 * struct il_scale_tbl_info -- tx params and success history for all rates
2863 *
2864 * There are two of these in struct il_lq_sta,
2865 * one for "active", and one for "search".
2866 */
2867struct il_scale_tbl_info {
2868 enum il_table_type lq_type;
2869 u8 ant_type;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002870 u8 is_SGI; /* 1 = short guard interval */
2871 u8 is_ht40; /* 1 = 40 MHz channel width */
2872 u8 is_dup; /* 1 = duplicated data streams */
2873 u8 action; /* change modulation; IL_[LEGACY/SISO/MIMO]_SWITCH_* */
2874 u8 max_search; /* maximun number of tables we can search */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002875 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002876 u32 current_rate; /* rate_n_flags, uCode API format */
2877 struct il_rate_scale_data win[RATE_COUNT]; /* rate histories */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002878};
2879
2880struct il_traffic_load {
2881 unsigned long time_stamp; /* age of the oldest stats */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002882 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002883 * slice */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002884 u32 total; /* total num of packets during the
2885 * last TID_MAX_TIME_DIFF */
2886 u8 queue_count; /* number of queues that has
2887 * been used since the last cleanup */
2888 u8 head; /* start of the circular buffer */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002889};
2890
2891/**
2892 * struct il_lq_sta -- driver's rate scaling ilate structure
2893 *
2894 * Pointer to this gets passed back and forth between driver and mac80211.
2895 */
2896struct il_lq_sta {
2897 u8 active_tbl; /* idx of active table, range 0-1 */
2898 u8 enable_counter; /* indicates HT mode */
2899 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
2900 u8 search_better_tbl; /* 1: currently trying alternate mode */
2901 s32 last_tpt;
2902
2903 /* The following determine when to search for a new mode */
2904 u32 table_count_limit;
2905 u32 max_failure_limit; /* # failed frames before new search */
2906 u32 max_success_limit; /* # successful frames before new search */
2907 u32 table_count;
2908 u32 total_failed; /* total failed frames, any/all rates */
2909 u32 total_success; /* total successful frames, any/all rates */
2910 u64 flush_timer; /* time staying in mode before new search */
2911
2912 u8 action_counter; /* # mode-switch actions tried */
2913 u8 is_green;
2914 u8 is_dup;
2915 enum ieee80211_band band;
2916
2917 /* The following are bitmaps of rates; RATE_6M_MASK, etc. */
2918 u32 supp_rates;
2919 u16 active_legacy_rate;
2920 u16 active_siso_rate;
2921 u16 active_mimo2_rate;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002922 s8 max_rate_idx; /* Max rate set by user */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002923 u8 missed_rate_counter;
2924
2925 struct il_link_quality_cmd lq;
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002926 struct il_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002927 struct il_traffic_load load[TID_MAX_LOAD_COUNT];
2928 u8 tx_agg_tid_en;
2929#ifdef CONFIG_MAC80211_DEBUGFS
2930 struct dentry *rs_sta_dbgfs_scale_table_file;
2931 struct dentry *rs_sta_dbgfs_stats_table_file;
2932 struct dentry *rs_sta_dbgfs_rate_scale_data_file;
2933 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
2934 u32 dbg_fixed_rate;
2935#endif
2936 struct il_priv *drv;
2937
2938 /* used to be in sta_info */
2939 int last_txrate_idx;
2940 /* last tx rate_n_flags */
2941 u32 last_rate_n_flags;
2942 /* packets destined for this STA are aggregated */
2943 u8 is_agg;
2944};
2945
2946/*
2947 * il_station_priv: Driver's ilate station information
2948 *
2949 * When mac80211 creates a station it reserves some space (hw->sta_data_size)
2950 * in the structure for use by driver. This structure is places in that
2951 * space.
2952 *
2953 * The common struct MUST be first because it is shared between
2954 * 3945 and 4965!
2955 */
2956struct il_station_priv {
2957 struct il_station_priv_common common;
2958 struct il_lq_sta lq_sta;
2959 atomic_t pending_frames;
2960 bool client;
2961 bool asleep;
2962};
2963
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002964static inline u8
2965il4965_num_of_ant(u8 m)
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002966{
2967 return !!(m & ANT_A) + !!(m & ANT_B) + !!(m & ANT_C);
2968}
2969
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002970static inline u8
2971il4965_first_antenna(u8 mask)
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002972{
2973 if (mask & ANT_A)
2974 return ANT_A;
2975 if (mask & ANT_B)
2976 return ANT_B;
2977 return ANT_C;
2978}
2979
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002980/**
2981 * il3945_rate_scale_init - Initialize the rate scale table based on assoc info
2982 *
2983 * The specific throughput table used is based on the type of network
2984 * the associated with, including A, B, G, and G w/ TGG protection
2985 */
2986extern void il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id);
2987
2988/* Initialize station's rate scaling information after adding station */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01002989extern void il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
2990 u8 sta_id);
2991extern void il3945_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
2992 u8 sta_id);
Stanislaw Gruszka3fbbf9a2011-08-31 13:39:29 +02002993
2994/**
2995 * il_rate_control_register - Register the rate control algorithm callbacks
2996 *
2997 * Since the rate control algorithm is hardware specific, there is no need
2998 * or reason to place it as a stand alone module. The driver can call
2999 * il_rate_control_register in order to register the rate control callbacks
3000 * with the mac80211 subsystem. This should be performed prior to calling
3001 * ieee80211_register_hw
3002 *
3003 */
3004extern int il4965_rate_control_register(void);
3005extern int il3945_rate_control_register(void);
3006
3007/**
3008 * il_rate_control_unregister - Unregister the rate control callbacks
3009 *
3010 * This should be called after calling ieee80211_unregister_hw, but before
3011 * the driver is unloaded.
3012 */
3013extern void il4965_rate_control_unregister(void);
3014extern void il3945_rate_control_unregister(void);
3015
Stanislaw Gruszka99412002011-08-31 13:53:04 +02003016extern int il_power_update_mode(struct il_priv *il, bool force);
3017extern void il_power_initialize(struct il_priv *il);
Stanislaw Gruszka47ef6942011-08-31 14:04:45 +02003018
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003019extern u32 il_debug_level;
3020
3021#ifdef CONFIG_IWLEGACY_DEBUG
3022/*
3023 * il_get_debug_level: Return active debug level for device
3024 *
3025 * Using sysfs it is possible to set per device debug level. This debug
3026 * level will be used if set, otherwise the global debug level which can be
3027 * set via module parameter is used.
3028 */
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003029static inline u32
3030il_get_debug_level(struct il_priv *il)
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003031{
3032 if (il->debug_level)
3033 return il->debug_level;
3034 else
3035 return il_debug_level;
3036}
3037#else
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003038static inline u32
3039il_get_debug_level(struct il_priv *il)
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003040{
3041 return il_debug_level;
3042}
3043#endif
3044
3045#define il_print_hex_error(il, p, len) \
3046do { \
3047 print_hex_dump(KERN_ERR, "iwl data: ", \
3048 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
3049} while (0)
3050
3051#ifdef CONFIG_IWLEGACY_DEBUG
3052#define IL_DBG(level, fmt, args...) \
3053do { \
3054 if (il_get_debug_level(il) & level) \
3055 dev_printk(KERN_ERR, &il->hw->wiphy->dev, \
3056 "%c %s " fmt, in_interrupt() ? 'I' : 'U', \
3057 __func__ , ## args); \
3058} while (0)
3059
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003060#define il_print_hex_dump(il, level, p, len) \
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003061do { \
3062 if (il_get_debug_level(il) & level) \
3063 print_hex_dump(KERN_DEBUG, "iwl data: ", \
3064 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
3065} while (0)
3066
3067#else
3068#define IL_DBG(level, fmt, args...)
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003069static inline void
3070il_print_hex_dump(struct il_priv *il, int level, const void *p, u32 len)
3071{
3072}
3073#endif /* CONFIG_IWLEGACY_DEBUG */
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003074
3075#ifdef CONFIG_IWLEGACY_DEBUGFS
3076int il_dbgfs_register(struct il_priv *il, const char *name);
3077void il_dbgfs_unregister(struct il_priv *il);
3078#else
3079static inline int
3080il_dbgfs_register(struct il_priv *il, const char *name)
3081{
3082 return 0;
3083}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003084
3085static inline void
3086il_dbgfs_unregister(struct il_priv *il)
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003087{
3088}
Stanislaw Gruszkae7392362011-11-15 14:45:59 +01003089#endif /* CONFIG_IWLEGACY_DEBUGFS */
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003090
3091/*
3092 * To use the debug system:
3093 *
3094 * If you are defining a new debug classification, simply add it to the #define
3095 * list here in the form of
3096 *
3097 * #define IL_DL_xxxx VALUE
3098 *
3099 * where xxxx should be the name of the classification (for example, WEP).
3100 *
3101 * You then need to either add a IL_xxxx_DEBUG() macro definition for your
3102 * classification, or use IL_DBG(IL_DL_xxxx, ...) whenever you want
3103 * to send output to that classification.
3104 *
3105 * The active debug levels can be accessed via files
3106 *
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003107 * /sys/module/iwl4965/parameters/debug
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003108 * /sys/module/iwl3945/parameters/debug
Stanislaw Gruszka1722f8e2011-11-15 14:51:01 +01003109 * /sys/class/net/wlan0/device/debug_level
Stanislaw Gruszkaf02579e2011-08-31 14:49:56 +02003110 *
3111 * when CONFIG_IWLEGACY_DEBUG=y.
3112 */
3113
3114/* 0x0000000F - 0x00000001 */
3115#define IL_DL_INFO (1 << 0)
3116#define IL_DL_MAC80211 (1 << 1)
3117#define IL_DL_HCMD (1 << 2)
3118#define IL_DL_STATE (1 << 3)
3119/* 0x000000F0 - 0x00000010 */
3120#define IL_DL_MACDUMP (1 << 4)
3121#define IL_DL_HCMD_DUMP (1 << 5)
3122#define IL_DL_EEPROM (1 << 6)
3123#define IL_DL_RADIO (1 << 7)
3124/* 0x00000F00 - 0x00000100 */
3125#define IL_DL_POWER (1 << 8)
3126#define IL_DL_TEMP (1 << 9)
3127#define IL_DL_NOTIF (1 << 10)
3128#define IL_DL_SCAN (1 << 11)
3129/* 0x0000F000 - 0x00001000 */
3130#define IL_DL_ASSOC (1 << 12)
3131#define IL_DL_DROP (1 << 13)
3132#define IL_DL_TXPOWER (1 << 14)
3133#define IL_DL_AP (1 << 15)
3134/* 0x000F0000 - 0x00010000 */
3135#define IL_DL_FW (1 << 16)
3136#define IL_DL_RF_KILL (1 << 17)
3137#define IL_DL_FW_ERRORS (1 << 18)
3138#define IL_DL_LED (1 << 19)
3139/* 0x00F00000 - 0x00100000 */
3140#define IL_DL_RATE (1 << 20)
3141#define IL_DL_CALIB (1 << 21)
3142#define IL_DL_WEP (1 << 22)
3143#define IL_DL_TX (1 << 23)
3144/* 0x0F000000 - 0x01000000 */
3145#define IL_DL_RX (1 << 24)
3146#define IL_DL_ISR (1 << 25)
3147#define IL_DL_HT (1 << 26)
3148/* 0xF0000000 - 0x10000000 */
3149#define IL_DL_11H (1 << 28)
3150#define IL_DL_STATS (1 << 29)
3151#define IL_DL_TX_REPLY (1 << 30)
3152#define IL_DL_QOS (1 << 31)
3153
3154#define D_INFO(f, a...) IL_DBG(IL_DL_INFO, f, ## a)
3155#define D_MAC80211(f, a...) IL_DBG(IL_DL_MAC80211, f, ## a)
3156#define D_MACDUMP(f, a...) IL_DBG(IL_DL_MACDUMP, f, ## a)
3157#define D_TEMP(f, a...) IL_DBG(IL_DL_TEMP, f, ## a)
3158#define D_SCAN(f, a...) IL_DBG(IL_DL_SCAN, f, ## a)
3159#define D_RX(f, a...) IL_DBG(IL_DL_RX, f, ## a)
3160#define D_TX(f, a...) IL_DBG(IL_DL_TX, f, ## a)
3161#define D_ISR(f, a...) IL_DBG(IL_DL_ISR, f, ## a)
3162#define D_LED(f, a...) IL_DBG(IL_DL_LED, f, ## a)
3163#define D_WEP(f, a...) IL_DBG(IL_DL_WEP, f, ## a)
3164#define D_HC(f, a...) IL_DBG(IL_DL_HCMD, f, ## a)
3165#define D_HC_DUMP(f, a...) IL_DBG(IL_DL_HCMD_DUMP, f, ## a)
3166#define D_EEPROM(f, a...) IL_DBG(IL_DL_EEPROM, f, ## a)
3167#define D_CALIB(f, a...) IL_DBG(IL_DL_CALIB, f, ## a)
3168#define D_FW(f, a...) IL_DBG(IL_DL_FW, f, ## a)
3169#define D_RF_KILL(f, a...) IL_DBG(IL_DL_RF_KILL, f, ## a)
3170#define D_DROP(f, a...) IL_DBG(IL_DL_DROP, f, ## a)
3171#define D_AP(f, a...) IL_DBG(IL_DL_AP, f, ## a)
3172#define D_TXPOWER(f, a...) IL_DBG(IL_DL_TXPOWER, f, ## a)
3173#define D_RATE(f, a...) IL_DBG(IL_DL_RATE, f, ## a)
3174#define D_NOTIF(f, a...) IL_DBG(IL_DL_NOTIF, f, ## a)
3175#define D_ASSOC(f, a...) IL_DBG(IL_DL_ASSOC, f, ## a)
3176#define D_HT(f, a...) IL_DBG(IL_DL_HT, f, ## a)
3177#define D_STATS(f, a...) IL_DBG(IL_DL_STATS, f, ## a)
3178#define D_TX_REPLY(f, a...) IL_DBG(IL_DL_TX_REPLY, f, ## a)
3179#define D_QOS(f, a...) IL_DBG(IL_DL_QOS, f, ## a)
3180#define D_RADIO(f, a...) IL_DBG(IL_DL_RADIO, f, ## a)
3181#define D_POWER(f, a...) IL_DBG(IL_DL_POWER, f, ## a)
3182#define D_11H(f, a...) IL_DBG(IL_DL_11H, f, ## a)
3183
Stanislaw Gruszkae2ebc832011-10-24 15:41:30 +02003184#endif /* __il_core_h__ */