ipw2x00: Remove extern from function prototypes
[deliverable/linux.git] / drivers / net / wireless / iwlegacy / common.h
CommitLineData
be663ab6
WYG
1/******************************************************************************
2 *
e94a4099 3 * Copyright(c) 2003 - 2011 Intel Corporation. All rights reserved.
be663ab6 4 *
e94a4099
SG
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
be663ab6
WYG
7 * published by the Free Software Foundation.
8 *
e94a4099
SG
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
be663ab6 13 *
e94a4099
SG
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
be663ab6 17 *
e94a4099
SG
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
be663ab6
WYG
20 *
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 *
e94a4099
SG
25 *****************************************************************************/
26#ifndef __il_core_h__
27#define __il_core_h__
28
29#include <linux/interrupt.h>
e7392364 30#include <linux/pci.h> /* for struct pci_device_id */
e94a4099
SG
31#include <linux/kernel.h>
32#include <linux/leds.h>
33#include <linux/wait.h>
17d4eca6 34#include <linux/io.h>
47ef694d 35#include <net/mac80211.h>
e94a4099
SG
36#include <net/ieee80211_radiotap.h>
37
99412002 38#include "commands.h"
e94a4099 39#include "csr.h"
e8c39d4e 40#include "prph.h"
e94a4099
SG
41
42struct il_host_cmd;
43struct il_cmd;
44struct il_tx_queue;
45
f02579e3
SG
46#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
e94a4099
SG
50#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 */
e7392364 63#define CT_KILL_THRESHOLD_LEGACY 110 /* in Celsius */
e94a4099
SG
64
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 */
1722f8e1
SG
116 void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
117 struct il_rx_pkt *pkt);
e94a4099
SG
118
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
e7392364
SG
123 DEFINE_DMA_UNMAP_ADDR(mapping);
124 DEFINE_DMA_UNMAP_LEN(len);
e94a4099
SG
125};
126
127/*
128 * Generic queue structure
129 *
130 * Contains common data for Rx and Tx queues
131 */
132struct il_queue {
e7392364
SG
133 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 */
e94a4099 136 /* use for monitoring and recovering the stuck queue */
e7392364
SG
137 dma_addr_t dma_addr; /* physical addr for BD's */
138 int n_win; /* safe queue win */
e94a4099 139 u32 id;
e7392364
SG
140 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 */
e94a4099
SG
144};
145
e94a4099
SG
146/**
147 * struct il_tx_queue - Tx Queue for DMA
148 * @q: generic Rx/Tx queue descriptor
149 * @bd: base of circular buffer of TFDs
150 * @cmd: array of command/TX buffer pointers
151 * @meta: array of meta data for each command/tx buffer
152 * @dma_addr_cmd: physical address of cmd/tx buffer array
00ea99e1 153 * @skbs: array of per-TFD socket buffer pointers
e94a4099
SG
154 * @time_stamp: time (in jiffies) of last read_ptr change
155 * @need_update: indicates need to update read/write idx
156 * @sched_retry: indicates queue is high-throughput aggregation (HT AGG) enabled
157 *
158 * A Tx queue consists of circular buffer of BDs (a.k.a. TFDs, transmit frame
159 * descriptors) and required locking structures.
160 */
161#define TFD_TX_CMD_SLOTS 256
162#define TFD_CMD_SLOTS 32
163
164struct il_tx_queue {
165 struct il_queue q;
166 void *tfds;
167 struct il_device_cmd **cmd;
168 struct il_cmd_meta *meta;
00ea99e1 169 struct sk_buff **skbs;
e94a4099
SG
170 unsigned long time_stamp;
171 u8 need_update;
172 u8 sched_retry;
173 u8 active;
174 u8 swq_id;
175};
176
47ef694d
SG
177/*
178 * EEPROM access time values:
179 *
180 * Driver initiates EEPROM read by writing byte address << 1 to CSR_EEPROM_REG.
181 * Driver then polls CSR_EEPROM_REG for CSR_EEPROM_REG_READ_VALID_MSK (0x1).
182 * When polling, wait 10 uSec between polling loops, up to a maximum 5000 uSec.
183 * Driver reads 16-bit value from bits 31-16 of CSR_EEPROM_REG.
184 */
e7392364 185#define IL_EEPROM_ACCESS_TIMEOUT 5000 /* uSec */
47ef694d 186
e7392364
SG
187#define IL_EEPROM_SEM_TIMEOUT 10 /* microseconds */
188#define IL_EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
47ef694d
SG
189
190/*
191 * Regulatory channel usage flags in EEPROM struct il4965_eeprom_channel.flags.
192 *
193 * IBSS and/or AP operation is allowed *only* on those channels with
194 * (VALID && IBSS && ACTIVE && !RADAR). This restriction is in place because
195 * RADAR detection is not supported by the 4965 driver, but is a
196 * requirement for establishing a new network for legal operation on channels
197 * requiring RADAR detection or restricting ACTIVE scanning.
198 *
199 * NOTE: "WIDE" flag does not indicate anything about "HT40" 40 MHz channels.
200 * It only indicates that 20 MHz channel use is supported; HT40 channel
201 * usage is indicated by a separate set of regulatory flags for each
202 * HT40 channel pair.
203 *
204 * NOTE: Using a channel inappropriately will result in a uCode error!
205 */
206#define IL_NUM_TX_CALIB_GROUPS 5
207enum {
208 EEPROM_CHANNEL_VALID = (1 << 0), /* usable for this SKU/geo */
e7392364 209 EEPROM_CHANNEL_IBSS = (1 << 1), /* usable as an IBSS channel */
47ef694d
SG
210 /* Bit 2 Reserved */
211 EEPROM_CHANNEL_ACTIVE = (1 << 3), /* active scanning allowed */
212 EEPROM_CHANNEL_RADAR = (1 << 4), /* radar detection required */
e7392364 213 EEPROM_CHANNEL_WIDE = (1 << 5), /* 20 MHz channel okay */
47ef694d
SG
214 /* Bit 6 Reserved (was Narrow Channel) */
215 EEPROM_CHANNEL_DFS = (1 << 7), /* dynamic freq selection candidate */
216};
217
218/* SKU Capabilities */
219/* 3945 only */
220#define EEPROM_SKU_CAP_SW_RF_KILL_ENABLE (1 << 0)
221#define EEPROM_SKU_CAP_HW_RF_KILL_ENABLE (1 << 1)
222
223/* *regulatory* channel data format in eeprom, one for each channel.
224 * There are separate entries for HT40 (40 MHz) vs. normal (20 MHz) channels. */
225struct il_eeprom_channel {
226 u8 flags; /* EEPROM_CHANNEL_* flags copied from EEPROM */
227 s8 max_power_avg; /* max power (dBm) on this chnl, limit 31 */
228} __packed;
229
230/* 3945 Specific */
231#define EEPROM_3945_EEPROM_VERSION (0x2f)
232
233/* 4965 has two radio transmitters (and 3 radio receivers) */
234#define EEPROM_TX_POWER_TX_CHAINS (2)
235
236/* 4965 has room for up to 8 sets of txpower calibration data */
237#define EEPROM_TX_POWER_BANDS (8)
238
239/* 4965 factory calibration measures txpower gain settings for
240 * each of 3 target output levels */
241#define EEPROM_TX_POWER_MEASUREMENTS (3)
242
243/* 4965 Specific */
244/* 4965 driver does not work with txpower calibration version < 5 */
245#define EEPROM_4965_TX_POWER_VERSION (5)
246#define EEPROM_4965_EEPROM_VERSION (0x2f)
e7392364
SG
247#define EEPROM_4965_CALIB_VERSION_OFFSET (2*0xB6) /* 2 bytes */
248#define EEPROM_4965_CALIB_TXPOWER_OFFSET (2*0xE8) /* 48 bytes */
249#define EEPROM_4965_BOARD_REVISION (2*0x4F) /* 2 bytes */
250#define EEPROM_4965_BOARD_PBA (2*0x56+1) /* 9 bytes */
47ef694d
SG
251
252/* 2.4 GHz */
253extern const u8 il_eeprom_band_1[14];
254
255/*
256 * factory calibration data for one txpower level, on one channel,
257 * measured on one of the 2 tx chains (radio transmitter and associated
258 * antenna). EEPROM contains:
259 *
260 * 1) Temperature (degrees Celsius) of device when measurement was made.
261 *
262 * 2) Gain table idx used to achieve the target measurement power.
263 * This refers to the "well-known" gain tables (see 4965.h).
264 *
265 * 3) Actual measured output power, in half-dBm ("34" = 17 dBm).
266 *
267 * 4) RF power amplifier detector level measurement (not used).
268 */
269struct il_eeprom_calib_measure {
270 u8 temperature; /* Device temperature (Celsius) */
271 u8 gain_idx; /* Index into gain table */
272 u8 actual_pow; /* Measured RF output power, half-dBm */
273 s8 pa_det; /* Power amp detector level (not used) */
274} __packed;
275
47ef694d
SG
276/*
277 * measurement set for one channel. EEPROM contains:
278 *
279 * 1) Channel number measured
280 *
281 * 2) Measurements for each of 3 power levels for each of 2 radio transmitters
282 * (a.k.a. "tx chains") (6 measurements altogether)
283 */
284struct il_eeprom_calib_ch_info {
285 u8 ch_num;
286 struct il_eeprom_calib_measure
e7392364
SG
287 measurements[EEPROM_TX_POWER_TX_CHAINS]
288 [EEPROM_TX_POWER_MEASUREMENTS];
47ef694d
SG
289} __packed;
290
291/*
292 * txpower subband info.
293 *
294 * For each frequency subband, EEPROM contains the following:
295 *
296 * 1) First and last channels within range of the subband. "0" values
297 * indicate that this sample set is not being used.
298 *
299 * 2) Sample measurement sets for 2 channels close to the range endpoints.
300 */
301struct il_eeprom_calib_subband_info {
e7392364
SG
302 u8 ch_from; /* channel number of lowest channel in subband */
303 u8 ch_to; /* channel number of highest channel in subband */
47ef694d
SG
304 struct il_eeprom_calib_ch_info ch1;
305 struct il_eeprom_calib_ch_info ch2;
306} __packed;
307
47ef694d
SG
308/*
309 * txpower calibration info. EEPROM contains:
310 *
311 * 1) Factory-measured saturation power levels (maximum levels at which
312 * tx power amplifier can output a signal without too much distortion).
313 * There is one level for 2.4 GHz band and one for 5 GHz band. These
314 * values apply to all channels within each of the bands.
315 *
316 * 2) Factory-measured power supply voltage level. This is assumed to be
317 * constant (i.e. same value applies to all channels/bands) while the
318 * factory measurements are being made.
319 *
320 * 3) Up to 8 sets of factory-measured txpower calibration values.
321 * These are for different frequency ranges, since txpower gain
322 * characteristics of the analog radio circuitry vary with frequency.
323 *
324 * Not all sets need to be filled with data;
325 * struct il_eeprom_calib_subband_info contains range of channels
326 * (0 if unused) for each set of data.
327 */
328struct il_eeprom_calib_info {
329 u8 saturation_power24; /* half-dBm (e.g. "34" = 17 dBm) */
330 u8 saturation_power52; /* half-dBm */
331 __le16 voltage; /* signed */
e7392364 332 struct il_eeprom_calib_subband_info band_info[EEPROM_TX_POWER_BANDS];
47ef694d
SG
333} __packed;
334
47ef694d
SG
335/* General */
336#define EEPROM_DEVICE_ID (2*0x08) /* 2 bytes */
337#define EEPROM_MAC_ADDRESS (2*0x15) /* 6 bytes */
338#define EEPROM_BOARD_REVISION (2*0x35) /* 2 bytes */
339#define EEPROM_BOARD_PBA_NUMBER (2*0x3B+1) /* 9 bytes */
340#define EEPROM_VERSION (2*0x44) /* 2 bytes */
341#define EEPROM_SKU_CAP (2*0x45) /* 2 bytes */
342#define EEPROM_OEM_MODE (2*0x46) /* 2 bytes */
343#define EEPROM_WOWLAN_MODE (2*0x47) /* 2 bytes */
344#define EEPROM_RADIO_CONFIG (2*0x48) /* 2 bytes */
345#define EEPROM_NUM_MAC_ADDRESS (2*0x4C) /* 2 bytes */
346
347/* The following masks are to be applied on EEPROM_RADIO_CONFIG */
e7392364
SG
348#define EEPROM_RF_CFG_TYPE_MSK(x) (x & 0x3) /* bits 0-1 */
349#define EEPROM_RF_CFG_STEP_MSK(x) ((x >> 2) & 0x3) /* bits 2-3 */
350#define EEPROM_RF_CFG_DASH_MSK(x) ((x >> 4) & 0x3) /* bits 4-5 */
351#define EEPROM_RF_CFG_PNUM_MSK(x) ((x >> 6) & 0x3) /* bits 6-7 */
352#define EEPROM_RF_CFG_TX_ANT_MSK(x) ((x >> 8) & 0xF) /* bits 8-11 */
353#define EEPROM_RF_CFG_RX_ANT_MSK(x) ((x >> 12) & 0xF) /* bits 12-15 */
47ef694d
SG
354
355#define EEPROM_3945_RF_CFG_TYPE_MAX 0x0
356#define EEPROM_4965_RF_CFG_TYPE_MAX 0x1
357
358/*
359 * Per-channel regulatory data.
360 *
361 * Each channel that *might* be supported by iwl has a fixed location
362 * in EEPROM containing EEPROM_CHANNEL_* usage flags (LSB) and max regulatory
363 * txpower (MSB).
364 *
365 * Entries immediately below are for 20 MHz channel width. HT40 (40 MHz)
366 * channels (only for 4965, not supported by 3945) appear later in the EEPROM.
367 *
368 * 2.4 GHz channels 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14
369 */
e7392364 370#define EEPROM_REGULATORY_SKU_ID (2*0x60) /* 4 bytes */
47ef694d
SG
371#define EEPROM_REGULATORY_BAND_1 (2*0x62) /* 2 bytes */
372#define EEPROM_REGULATORY_BAND_1_CHANNELS (2*0x63) /* 28 bytes */
373
374/*
375 * 4.9 GHz channels 183, 184, 185, 187, 188, 189, 192, 196,
376 * 5.0 GHz channels 7, 8, 11, 12, 16
377 * (4915-5080MHz) (none of these is ever supported)
378 */
379#define EEPROM_REGULATORY_BAND_2 (2*0x71) /* 2 bytes */
380#define EEPROM_REGULATORY_BAND_2_CHANNELS (2*0x72) /* 26 bytes */
381
382/*
383 * 5.2 GHz channels 34, 36, 38, 40, 42, 44, 46, 48, 52, 56, 60, 64
384 * (5170-5320MHz)
385 */
386#define EEPROM_REGULATORY_BAND_3 (2*0x7F) /* 2 bytes */
387#define EEPROM_REGULATORY_BAND_3_CHANNELS (2*0x80) /* 24 bytes */
388
389/*
390 * 5.5 GHz channels 100, 104, 108, 112, 116, 120, 124, 128, 132, 136, 140
391 * (5500-5700MHz)
392 */
393#define EEPROM_REGULATORY_BAND_4 (2*0x8C) /* 2 bytes */
394#define EEPROM_REGULATORY_BAND_4_CHANNELS (2*0x8D) /* 22 bytes */
395
396/*
397 * 5.7 GHz channels 145, 149, 153, 157, 161, 165
398 * (5725-5825MHz)
399 */
400#define EEPROM_REGULATORY_BAND_5 (2*0x98) /* 2 bytes */
401#define EEPROM_REGULATORY_BAND_5_CHANNELS (2*0x99) /* 12 bytes */
402
403/*
404 * 2.4 GHz HT40 channels 1 (5), 2 (6), 3 (7), 4 (8), 5 (9), 6 (10), 7 (11)
405 *
406 * The channel listed is the center of the lower 20 MHz half of the channel.
407 * The overall center frequency is actually 2 channels (10 MHz) above that,
408 * and the upper half of each HT40 channel is centered 4 channels (20 MHz) away
409 * from the lower half; e.g. the upper half of HT40 channel 1 is channel 5,
410 * and the overall HT40 channel width centers on channel 3.
411 *
412 * NOTE: The RXON command uses 20 MHz channel numbers to specify the
413 * control channel to which to tune. RXON also specifies whether the
414 * control channel is the upper or lower half of a HT40 channel.
415 *
416 * NOTE: 4965 does not support HT40 channels on 2.4 GHz.
417 */
418#define EEPROM_4965_REGULATORY_BAND_24_HT40_CHANNELS (2*0xA0) /* 14 bytes */
419
420/*
421 * 5.2 GHz HT40 channels 36 (40), 44 (48), 52 (56), 60 (64),
422 * 100 (104), 108 (112), 116 (120), 124 (128), 132 (136), 149 (153), 157 (161)
423 */
424#define EEPROM_4965_REGULATORY_BAND_52_HT40_CHANNELS (2*0xA8) /* 22 bytes */
425
426#define EEPROM_REGULATORY_BAND_NO_HT40 (0)
427
47ef694d
SG
428int il_eeprom_init(struct il_priv *il);
429void il_eeprom_free(struct il_priv *il);
e7392364 430const u8 *il_eeprom_query_addr(const struct il_priv *il, size_t offset);
47ef694d
SG
431u16 il_eeprom_query16(const struct il_priv *il, size_t offset);
432int il_init_channel_map(struct il_priv *il);
433void il_free_channel_map(struct il_priv *il);
e7392364
SG
434const struct il_channel_info *il_get_channel_info(const struct il_priv *il,
435 enum ieee80211_band band,
436 u16 channel);
47ef694d 437
e94a4099
SG
438#define IL_NUM_SCAN_RATES (2)
439
440struct il4965_channel_tgd_info {
441 u8 type;
442 s8 max_power;
443};
444
445struct il4965_channel_tgh_info {
446 s64 last_radar_time;
447};
448
449#define IL4965_MAX_RATE (33)
450
451struct il3945_clip_group {
452 /* maximum power level to prevent clipping for each rate, derived by
453 * us from this band's saturation power in EEPROM */
454 const s8 clip_powers[IL_MAX_RATES];
455};
456
457/* current Tx power values to use, one for each rate for each channel.
458 * requested power is limited by:
459 * -- regulatory EEPROM limits for this channel
460 * -- hardware capabilities (clip-powers)
461 * -- spectrum management
462 * -- user preference (e.g. iwconfig)
463 * when requested power is set, base power idx must also be set. */
464struct il3945_channel_power_info {
465 struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
466 s8 power_table_idx; /* actual (compenst'd) idx into gain table */
467 s8 base_power_idx; /* gain idx for power at factory temp. */
468 s8 requested_power; /* power (dBm) requested for this chnl/rate */
469};
470
471/* current scan Tx power values to use, one for each scan rate for each
472 * channel. */
473struct il3945_scan_power_info {
474 struct il3945_tx_power tpc; /* actual radio and DSP gain settings */
475 s8 power_table_idx; /* actual (compenst'd) idx into gain table */
476 s8 requested_power; /* scan pwr (dBm) requested for chnl/rate */
477};
478
479/*
480 * One for each channel, holds all channel setup data
481 * Some of the fields (e.g. eeprom and flags/max_power_avg) are redundant
482 * with one another!
483 */
484struct il_channel_info {
485 struct il4965_channel_tgd_info tgd;
486 struct il4965_channel_tgh_info tgh;
487 struct il_eeprom_channel eeprom; /* EEPROM regulatory limit */
488 struct il_eeprom_channel ht40_eeprom; /* EEPROM regulatory limit for
489 * HT40 channel */
490
e7392364
SG
491 u8 channel; /* channel number */
492 u8 flags; /* flags copied from EEPROM */
493 s8 max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
494 s8 curr_txpow; /* (dBm) regulatory/spectrum/user (not h/w) limit */
495 s8 min_power; /* always 0 */
496 s8 scan_power; /* (dBm) regul. eeprom, direct scans, any rate */
e94a4099 497
e7392364
SG
498 u8 group_idx; /* 0-4, maps channel to group1/2/3/4/5 */
499 u8 band_idx; /* 0-4, maps channel to band1/2/3/4/5 */
e94a4099
SG
500 enum ieee80211_band band;
501
502 /* HT40 channel info */
503 s8 ht40_max_power_avg; /* (dBm) regul. eeprom, normal Tx, any rate */
504 u8 ht40_flags; /* flags copied from EEPROM */
e7392364 505 u8 ht40_extension_channel; /* HT_IE_EXT_CHANNEL_* */
e94a4099
SG
506
507 /* Radio/DSP gain settings for each "normal" data Tx rate.
508 * These include, in addition to RF and DSP gain, a few fields for
509 * remembering/modifying gain settings (idxes). */
510 struct il3945_channel_power_info power_info[IL4965_MAX_RATE];
511
512 /* Radio/DSP gain settings for each scan rate, for directed scans. */
513 struct il3945_scan_power_info scan_pwr_info[IL_NUM_SCAN_RATES];
514};
515
516#define IL_TX_FIFO_BK 0 /* shared */
517#define IL_TX_FIFO_BE 1
518#define IL_TX_FIFO_VI 2 /* shared */
519#define IL_TX_FIFO_VO 3
520#define IL_TX_FIFO_UNUSED -1
521
522/* Minimum number of queues. MAX_NUM is defined in hw specific files.
523 * Set the minimum to accommodate the 4 standard TX queues, 1 command
524 * queue, 2 (unused) HCCA queues, and 4 HT queues (one for each AC) */
525#define IL_MIN_NUM_QUEUES 10
526
527#define IL_DEFAULT_CMD_QUEUE_NUM 4
528
529#define IEEE80211_DATA_LEN 2304
530#define IEEE80211_4ADDR_LEN 30
531#define IEEE80211_HLEN (IEEE80211_4ADDR_LEN)
532#define IEEE80211_FRAME_LEN (IEEE80211_DATA_LEN + IEEE80211_HLEN)
533
534struct il_frame {
535 union {
536 struct ieee80211_hdr frame;
537 struct il_tx_beacon_cmd beacon;
538 u8 raw[IEEE80211_FRAME_LEN];
539 u8 cmd[360];
540 } u;
541 struct list_head list;
542};
543
e94a4099
SG
544enum {
545 CMD_SYNC = 0,
546 CMD_SIZE_NORMAL = 0,
547 CMD_NO_SKB = 0,
548 CMD_SIZE_HUGE = (1 << 0),
549 CMD_ASYNC = (1 << 1),
550 CMD_WANT_SKB = (1 << 2),
551 CMD_MAPPED = (1 << 3),
552};
553
554#define DEF_CMD_PAYLOAD_SIZE 320
555
556/**
557 * struct il_device_cmd
558 *
559 * For allocation of the command and tx queues, this establishes the overall
560 * size of the largest command we send to uCode, except for a scan command
561 * (which is relatively huge; space is allocated separately).
562 */
563struct il_device_cmd {
564 struct il_cmd_header hdr; /* uCode API */
565 union {
566 u32 flags;
567 u8 val8;
568 u16 val16;
569 u32 val32;
570 struct il_tx_cmd tx;
571 u8 payload[DEF_CMD_PAYLOAD_SIZE];
572 } __packed cmd;
573} __packed;
574
575#define TFD_MAX_PAYLOAD_SIZE (sizeof(struct il_device_cmd))
576
e94a4099
SG
577struct il_host_cmd {
578 const void *data;
579 unsigned long reply_page;
1722f8e1
SG
580 void (*callback) (struct il_priv *il, struct il_device_cmd *cmd,
581 struct il_rx_pkt *pkt);
e94a4099
SG
582 u32 flags;
583 u16 len;
584 u8 id;
585};
586
587#define SUP_RATE_11A_MAX_NUM_CHANNELS 8
588#define SUP_RATE_11B_MAX_NUM_CHANNELS 4
589#define SUP_RATE_11G_MAX_NUM_CHANNELS 12
590
591/**
592 * struct il_rx_queue - Rx queue
593 * @bd: driver's pointer to buffer of receive buffer descriptors (rbd)
594 * @bd_dma: bus address of buffer of receive buffer descriptors (rbd)
595 * @read: Shared idx to newest available Rx buffer
596 * @write: Shared idx to oldest written Rx packet
597 * @free_count: Number of pre-allocated buffers in rx_free
598 * @rx_free: list of free SKBs for use
599 * @rx_used: List of Rx buffers with no SKB
600 * @need_update: flag to indicate we need to update read/write idx
601 * @rb_stts: driver's pointer to receive buffer status
602 * @rb_stts_dma: bus address of receive buffer status
603 *
604 * NOTE: rx_free and rx_used are used as a FIFO for il_rx_bufs
605 */
606struct il_rx_queue {
607 __le32 *bd;
608 dma_addr_t bd_dma;
609 struct il_rx_buf pool[RX_QUEUE_SIZE + RX_FREE_BUFFERS];
610 struct il_rx_buf *queue[RX_QUEUE_SIZE];
611 u32 read;
612 u32 write;
613 u32 free_count;
614 u32 write_actual;
615 struct list_head rx_free;
616 struct list_head rx_used;
617 int need_update;
618 struct il_rb_status *rb_stts;
619 dma_addr_t rb_stts_dma;
620 spinlock_t lock;
621};
622
623#define IL_SUPPORTED_RATES_IE_LEN 8
624
625#define MAX_TID_COUNT 9
626
627#define IL_INVALID_RATE 0xFF
628#define IL_INVALID_VALUE -1
629
630/**
631 * struct il_ht_agg -- aggregation status while waiting for block-ack
632 * @txq_id: Tx queue used for Tx attempt
633 * @frame_count: # frames attempted by Tx command
634 * @wait_for_ba: Expect block-ack before next Tx reply
635 * @start_idx: Index of 1st Transmit Frame Descriptor (TFD) in Tx win
636 * @bitmap0: Low order bitmap, one bit for each frame pending ACK in Tx win
637 * @bitmap1: High order, one bit for each frame pending ACK in Tx win
638 * @rate_n_flags: Rate at which Tx was attempted
639 *
640 * If C_TX indicates that aggregation was attempted, driver must wait
641 * for block ack (N_COMPRESSED_BA). This struct stores tx reply info
642 * until block ack arrives.
643 */
644struct il_ht_agg {
645 u16 txq_id;
646 u16 frame_count;
647 u16 wait_for_ba;
648 u16 start_idx;
649 u64 bitmap;
650 u32 rate_n_flags;
651#define IL_AGG_OFF 0
652#define IL_AGG_ON 1
653#define IL_EMPTYING_HW_QUEUE_ADDBA 2
654#define IL_EMPTYING_HW_QUEUE_DELBA 3
655 u8 state;
656};
657
e94a4099 658struct il_tid_data {
e7392364 659 u16 seq_number; /* 4965 only */
e94a4099
SG
660 u16 tfds_in_queue;
661 struct il_ht_agg agg;
662};
663
664struct il_hw_key {
665 u32 cipher;
666 int keylen;
667 u8 keyidx;
668 u8 key[32];
669};
670
671union il_ht_rate_supp {
672 u16 rates;
673 struct {
674 u8 siso_rate;
675 u8 mimo_rate;
676 };
677};
678
679#define CFG_HT_RX_AMPDU_FACTOR_8K (0x0)
680#define CFG_HT_RX_AMPDU_FACTOR_16K (0x1)
681#define CFG_HT_RX_AMPDU_FACTOR_32K (0x2)
682#define CFG_HT_RX_AMPDU_FACTOR_64K (0x3)
683#define CFG_HT_RX_AMPDU_FACTOR_DEF CFG_HT_RX_AMPDU_FACTOR_64K
684#define CFG_HT_RX_AMPDU_FACTOR_MAX CFG_HT_RX_AMPDU_FACTOR_64K
685#define CFG_HT_RX_AMPDU_FACTOR_MIN CFG_HT_RX_AMPDU_FACTOR_8K
686
687/*
688 * Maximal MPDU density for TX aggregation
689 * 4 - 2us density
690 * 5 - 4us density
691 * 6 - 8us density
692 * 7 - 16us density
693 */
694#define CFG_HT_MPDU_DENSITY_2USEC (0x4)
695#define CFG_HT_MPDU_DENSITY_4USEC (0x5)
696#define CFG_HT_MPDU_DENSITY_8USEC (0x6)
697#define CFG_HT_MPDU_DENSITY_16USEC (0x7)
698#define CFG_HT_MPDU_DENSITY_DEF CFG_HT_MPDU_DENSITY_4USEC
699#define CFG_HT_MPDU_DENSITY_MAX CFG_HT_MPDU_DENSITY_16USEC
700#define CFG_HT_MPDU_DENSITY_MIN (0x1)
701
702struct il_ht_config {
703 bool single_chain_sufficient;
e7392364 704 enum ieee80211_smps_mode smps; /* current smps mode */
e94a4099
SG
705};
706
707/* QoS structures */
708struct il_qos_info {
709 int qos_active;
710 struct il_qosparam_cmd def_qos_parm;
711};
712
713/*
714 * Structure should be accessed with sta_lock held. When station addition
715 * is in progress (IL_STA_UCODE_INPROGRESS) it is possible to access only
716 * the commands (il_addsta_cmd and il_link_quality_cmd) without
717 * sta_lock held.
718 */
719struct il_station_entry {
720 struct il_addsta_cmd sta;
721 struct il_tid_data tid[MAX_TID_COUNT];
6aa0c254 722 u8 used;
e94a4099
SG
723 struct il_hw_key keyinfo;
724 struct il_link_quality_cmd *lq;
725};
726
727struct il_station_priv_common {
e94a4099
SG
728 u8 sta_id;
729};
730
e94a4099
SG
731/**
732 * struct il_vif_priv - driver's ilate per-interface information
733 *
734 * When mac80211 allocates a virtual interface, it can allocate
735 * space for us to put data into.
736 */
737struct il_vif_priv {
e94a4099
SG
738 u8 ibss_bssid_sta_id;
739};
740
741/* one for each uCode image (inst/data, boot/init/runtime) */
742struct fw_desc {
743 void *v_addr; /* access by driver */
744 dma_addr_t p_addr; /* access by card's busmaster DMA */
745 u32 len; /* bytes */
746};
747
748/* uCode file layout */
749struct il_ucode_header {
e7392364 750 __le32 ver; /* major/minor/API/serial */
e94a4099
SG
751 struct {
752 __le32 inst_size; /* bytes of runtime code */
753 __le32 data_size; /* bytes of runtime data */
754 __le32 init_size; /* bytes of init code */
755 __le32 init_data_size; /* bytes of init data */
756 __le32 boot_size; /* bytes of bootstrap code */
e7392364 757 u8 data[0]; /* in same order as sizes */
e94a4099
SG
758 } v1;
759};
760
761struct il4965_ibss_seq {
762 u8 mac[ETH_ALEN];
763 u16 seq_num;
764 u16 frag_num;
765 unsigned long packet_time;
766 struct list_head list;
767};
768
769struct il_sensitivity_ranges {
770 u16 min_nrg_cck;
771 u16 max_nrg_cck;
772
773 u16 nrg_th_cck;
774 u16 nrg_th_ofdm;
775
776 u16 auto_corr_min_ofdm;
777 u16 auto_corr_min_ofdm_mrc;
778 u16 auto_corr_min_ofdm_x1;
779 u16 auto_corr_min_ofdm_mrc_x1;
780
781 u16 auto_corr_max_ofdm;
782 u16 auto_corr_max_ofdm_mrc;
783 u16 auto_corr_max_ofdm_x1;
784 u16 auto_corr_max_ofdm_mrc_x1;
785
786 u16 auto_corr_max_cck;
787 u16 auto_corr_max_cck_mrc;
788 u16 auto_corr_min_cck;
789 u16 auto_corr_min_cck_mrc;
790
791 u16 barker_corr_th_min;
792 u16 barker_corr_th_min_mrc;
793 u16 nrg_th_cca;
794};
795
e94a4099
SG
796#define KELVIN_TO_CELSIUS(x) ((x)-273)
797#define CELSIUS_TO_KELVIN(x) ((x)+273)
798
e94a4099
SG
799/**
800 * struct il_hw_params
b16db50a 801 * @bcast_id: f/w broadcast station ID
e94a4099
SG
802 * @max_txq_num: Max # Tx queues supported
803 * @dma_chnl_num: Number of Tx DMA/FIFO channels
804 * @scd_bc_tbls_size: size of scheduler byte count tables
805 * @tfd_size: TFD size
806 * @tx/rx_chains_num: Number of TX/RX chains
807 * @valid_tx/rx_ant: usable antennas
808 * @max_rxq_size: Max # Rx frames in Rx queue (must be power-of-2)
809 * @max_rxq_log: Log-base-2 of max_rxq_size
810 * @rx_page_order: Rx buffer page order
811 * @rx_wrt_ptr_reg: FH{39}_RSCSR_CHNL0_WPTR
812 * @max_stations:
813 * @ht40_channel: is 40MHz width possible in band 2.4
814 * BIT(IEEE80211_BAND_5GHZ) BIT(IEEE80211_BAND_5GHZ)
815 * @sw_crypto: 0 for hw, 1 for sw
816 * @max_xxx_size: for ucode uses
817 * @ct_kill_threshold: temperature threshold
818 * @beacon_time_tsf_bits: number of valid tsf bits for beacon time
819 * @struct il_sensitivity_ranges: range of sensitivity values
820 */
821struct il_hw_params {
b16db50a 822 u8 bcast_id;
e94a4099
SG
823 u8 max_txq_num;
824 u8 dma_chnl_num;
825 u16 scd_bc_tbls_size;
826 u32 tfd_size;
e7392364
SG
827 u8 tx_chains_num;
828 u8 rx_chains_num;
829 u8 valid_tx_ant;
830 u8 valid_rx_ant;
e94a4099
SG
831 u16 max_rxq_size;
832 u16 max_rxq_log;
833 u32 rx_page_order;
834 u32 rx_wrt_ptr_reg;
e7392364
SG
835 u8 max_stations;
836 u8 ht40_channel;
837 u8 max_beacon_itrvl; /* in 1024 ms */
e94a4099
SG
838 u32 max_inst_size;
839 u32 max_data_size;
840 u32 max_bsm_size;
e7392364 841 u32 ct_kill_threshold; /* value in hw-dependent units */
e94a4099
SG
842 u16 beacon_time_tsf_bits;
843 const struct il_sensitivity_ranges *sens;
844};
845
e94a4099
SG
846/******************************************************************************
847 *
848 * Functions implemented in core module which are forward declared here
849 * for use by iwl-[4-5].c
850 *
851 * NOTE: The implementation of these functions are not hardware specific
852 * which is why they are in the core module files.
853 *
854 * Naming convention --
855 * il_ <-- Is part of iwlwifi
856 * iwlXXXX_ <-- Hardware specific (implemented in iwl-XXXX.c for XXXX)
857 * il4965_bg_ <-- Called from work queue context
858 * il4965_mac_ <-- mac80211 callback
859 *
860 ****************************************************************************/
861extern void il4965_update_chain_flags(struct il_priv *il);
862extern const u8 il_bcast_addr[ETH_ALEN];
863extern int il_queue_space(const struct il_queue *q);
e7392364
SG
864static inline int
865il_queue_used(const struct il_queue *q, int i)
e94a4099 866{
e7392364
SG
867 return q->write_ptr >= q->read_ptr ? (i >= q->read_ptr &&
868 i < q->write_ptr) : !(i <
869 q->read_ptr
870 && i >=
871 q->
872 write_ptr);
e94a4099
SG
873}
874
e7392364
SG
875static inline u8
876il_get_cmd_idx(struct il_queue *q, u32 idx, int is_huge)
e94a4099
SG
877{
878 /*
879 * This is for init calibration result and scan command which
880 * required buffer > TFD_MAX_PAYLOAD_SIZE,
881 * the big buffer at end of command array
882 */
883 if (is_huge)
884 return q->n_win; /* must be power of 2 */
885
886 /* Otherwise, use normal size buffers */
887 return idx & (q->n_win - 1);
888}
889
e94a4099
SG
890struct il_dma_ptr {
891 dma_addr_t dma;
892 void *addr;
893 size_t size;
894};
895
896#define IL_OPERATION_MODE_AUTO 0
897#define IL_OPERATION_MODE_HT_ONLY 1
898#define IL_OPERATION_MODE_MIXED 2
899#define IL_OPERATION_MODE_20MHZ 3
900
901#define IL_TX_CRC_SIZE 4
902#define IL_TX_DELIMITER_SIZE 4
903
904#define TX_POWER_IL_ILLEGAL_VOLTAGE -10000
905
906/* Sensitivity and chain noise calibration */
907#define INITIALIZATION_VALUE 0xFFFF
908#define IL4965_CAL_NUM_BEACONS 20
909#define IL_CAL_NUM_BEACONS 16
910#define MAXIMUM_ALLOWED_PATHLOSS 15
911
912#define CHAIN_NOISE_MAX_DELTA_GAIN_CODE 3
913
914#define MAX_FA_OFDM 50
915#define MIN_FA_OFDM 5
916#define MAX_FA_CCK 50
917#define MIN_FA_CCK 5
918
919#define AUTO_CORR_STEP_OFDM 1
920
921#define AUTO_CORR_STEP_CCK 3
922#define AUTO_CORR_MAX_TH_CCK 160
923
924#define NRG_DIFF 2
925#define NRG_STEP_CCK 2
926#define NRG_MARGIN 8
927#define MAX_NUMBER_CCK_NO_FA 100
928
929#define AUTO_CORR_CCK_MIN_VAL_DEF (125)
930
931#define CHAIN_A 0
932#define CHAIN_B 1
933#define CHAIN_C 2
934#define CHAIN_NOISE_DELTA_GAIN_INIT_VAL 4
935#define ALL_BAND_FILTER 0xFF00
936#define IN_BAND_FILTER 0xFF
937#define MIN_AVERAGE_NOISE_MAX_VALUE 0xFFFFFFFF
938
939#define NRG_NUM_PREV_STAT_L 20
940#define NUM_RX_CHAINS 3
941
942enum il4965_false_alarm_state {
943 IL_FA_TOO_MANY = 0,
944 IL_FA_TOO_FEW = 1,
945 IL_FA_GOOD_RANGE = 2,
946};
947
948enum il4965_chain_noise_state {
e7392364 949 IL_CHAIN_NOISE_ALIVE = 0, /* must be 0 */
e94a4099
SG
950 IL_CHAIN_NOISE_ACCUMULATE,
951 IL_CHAIN_NOISE_CALIBRATED,
952 IL_CHAIN_NOISE_DONE,
953};
954
e94a4099
SG
955enum ucode_type {
956 UCODE_NONE = 0,
957 UCODE_INIT,
958 UCODE_RT
959};
960
961/* Sensitivity calib data */
962struct il_sensitivity_data {
963 u32 auto_corr_ofdm;
964 u32 auto_corr_ofdm_mrc;
965 u32 auto_corr_ofdm_x1;
966 u32 auto_corr_ofdm_mrc_x1;
967 u32 auto_corr_cck;
968 u32 auto_corr_cck_mrc;
969
970 u32 last_bad_plcp_cnt_ofdm;
971 u32 last_fa_cnt_ofdm;
972 u32 last_bad_plcp_cnt_cck;
973 u32 last_fa_cnt_cck;
974
975 u32 nrg_curr_state;
976 u32 nrg_prev_state;
977 u32 nrg_value[10];
e7392364 978 u8 nrg_silence_rssi[NRG_NUM_PREV_STAT_L];
e94a4099
SG
979 u32 nrg_silence_ref;
980 u32 nrg_energy_idx;
981 u32 nrg_silence_idx;
982 u32 nrg_th_cck;
983 s32 nrg_auto_corr_silence_diff;
984 u32 num_in_cck_no_fa;
985 u32 nrg_th_ofdm;
986
987 u16 barker_corr_th_min;
988 u16 barker_corr_th_min_mrc;
989 u16 nrg_th_cca;
990};
991
992/* Chain noise (differential Rx gain) calib data */
993struct il_chain_noise_data {
994 u32 active_chains;
995 u32 chain_noise_a;
996 u32 chain_noise_b;
997 u32 chain_noise_c;
998 u32 chain_signal_a;
999 u32 chain_signal_b;
1000 u32 chain_signal_c;
1001 u16 beacon_count;
1002 u8 disconn_array[NUM_RX_CHAINS];
1003 u8 delta_gain_code[NUM_RX_CHAINS];
1004 u8 radio_write;
1005 u8 state;
1006};
1007
e7392364 1008#define EEPROM_SEM_TIMEOUT 10 /* milliseconds */
e94a4099
SG
1009#define EEPROM_SEM_RETRY_LIMIT 1000 /* number of attempts (not time) */
1010
1011#define IL_TRAFFIC_ENTRIES (256)
1012#define IL_TRAFFIC_ENTRY_SIZE (64)
1013
1014enum {
1015 MEASUREMENT_READY = (1 << 0),
1016 MEASUREMENT_ACTIVE = (1 << 1),
1017};
1018
1019/* interrupt stats */
1020struct isr_stats {
1021 u32 hw;
1022 u32 sw;
1023 u32 err_code;
1024 u32 sch;
1025 u32 alive;
1026 u32 rfkill;
1027 u32 ctkill;
1028 u32 wakeup;
1029 u32 rx;
1030 u32 handlers[IL_CN_MAX];
1031 u32 tx;
1032 u32 unhandled;
1033};
1034
1035/* management stats */
1036enum il_mgmt_stats {
1037 MANAGEMENT_ASSOC_REQ = 0,
1038 MANAGEMENT_ASSOC_RESP,
1039 MANAGEMENT_REASSOC_REQ,
1040 MANAGEMENT_REASSOC_RESP,
1041 MANAGEMENT_PROBE_REQ,
1042 MANAGEMENT_PROBE_RESP,
1043 MANAGEMENT_BEACON,
1044 MANAGEMENT_ATIM,
1045 MANAGEMENT_DISASSOC,
1046 MANAGEMENT_AUTH,
1047 MANAGEMENT_DEAUTH,
1048 MANAGEMENT_ACTION,
1049 MANAGEMENT_MAX,
1050};
1051/* control stats */
1052enum il_ctrl_stats {
e7392364 1053 CONTROL_BACK_REQ = 0,
e94a4099
SG
1054 CONTROL_BACK,
1055 CONTROL_PSPOLL,
1056 CONTROL_RTS,
1057 CONTROL_CTS,
1058 CONTROL_ACK,
1059 CONTROL_CFEND,
1060 CONTROL_CFENDACK,
1061 CONTROL_MAX,
1062};
1063
1064struct traffic_stats {
1065#ifdef CONFIG_IWLEGACY_DEBUGFS
1066 u32 mgmt[MANAGEMENT_MAX];
1067 u32 ctrl[CONTROL_MAX];
1068 u32 data_cnt;
1069 u64 data_bytes;
1070#endif
1071};
1072
1073/*
1074 * host interrupt timeout value
1075 * used with setting interrupt coalescing timer
1076 * the CSR_INT_COALESCING is an 8 bit register in 32-usec unit
1077 *
1078 * default interrupt coalescing timer is 64 x 32 = 2048 usecs
1079 * default interrupt coalescing calibration timer is 16 x 32 = 512 usecs
1080 */
1081#define IL_HOST_INT_TIMEOUT_MAX (0xFF)
1082#define IL_HOST_INT_TIMEOUT_DEF (0x40)
1083#define IL_HOST_INT_TIMEOUT_MIN (0x0)
1084#define IL_HOST_INT_CALIB_TIMEOUT_MAX (0xFF)
1085#define IL_HOST_INT_CALIB_TIMEOUT_DEF (0x10)
1086#define IL_HOST_INT_CALIB_TIMEOUT_MIN (0x0)
1087
1088#define IL_DELAY_NEXT_FORCE_FW_RELOAD (HZ*5)
1089
1090/* TX queue watchdog timeouts in mSecs */
1091#define IL_DEF_WD_TIMEOUT (2000)
1092#define IL_LONG_WD_TIMEOUT (10000)
1093#define IL_MAX_WD_TIMEOUT (120000)
1094
1095struct il_force_reset {
1096 int reset_request_count;
1097 int reset_success_count;
1098 int reset_reject_count;
1099 unsigned long reset_duration;
1100 unsigned long last_force_reset_jiffies;
1101};
1102
1103/* extend beacon time format bit shifting */
1104/*
1105 * for _3945 devices
1106 * bits 31:24 - extended
1107 * bits 23:0 - interval
1108 */
1109#define IL3945_EXT_BEACON_TIME_POS 24
1110/*
1111 * for _4965 devices
1112 * bits 31:22 - extended
1113 * bits 21:0 - interval
1114 */
1115#define IL4965_EXT_BEACON_TIME_POS 22
1116
1117struct il_rxon_context {
1118 struct ieee80211_vif *vif;
e94a4099
SG
1119};
1120
99412002
SG
1121struct il_power_mgr {
1122 struct il_powertable_cmd sleep_cmd;
1123 struct il_powertable_cmd sleep_cmd_next;
1124 int debug_sleep_level_override;
1125 bool pci_pm;
1126};
1127
e94a4099 1128struct il_priv {
e94a4099
SG
1129 struct ieee80211_hw *hw;
1130 struct ieee80211_channel *ieee_channels;
1131 struct ieee80211_rate *ieee_rates;
93b7654e 1132
e94a4099 1133 struct il_cfg *cfg;
c39ae9fd 1134 const struct il_ops *ops;
93b7654e
SG
1135#ifdef CONFIG_IWLEGACY_DEBUGFS
1136 const struct il_debugfs_ops *debugfs_ops;
1137#endif
e94a4099
SG
1138
1139 /* temporary frame storage list */
1140 struct list_head free_frames;
1141 int frames_count;
1142
1143 enum ieee80211_band band;
1144 int alloc_rxb_page;
1145
1722f8e1
SG
1146 void (*handlers[IL_CN_MAX]) (struct il_priv *il,
1147 struct il_rx_buf *rxb);
e94a4099
SG
1148
1149 struct ieee80211_supported_band bands[IEEE80211_NUM_BANDS];
1150
1151 /* spectrum measurement report caching */
1152 struct il_spectrum_notification measure_report;
1153 u8 measurement_status;
1154
1155 /* ucode beacon time */
1156 u32 ucode_beacon_time;
1157 int missed_beacon_threshold;
1158
1159 /* track IBSS manager (last beacon) status */
1160 u32 ibss_manager;
1161
1162 /* force reset */
1163 struct il_force_reset force_reset;
1164
1165 /* we allocate array of il_channel_info for NIC's valid channels.
1166 * Access via channel # using indirect idx array */
1167 struct il_channel_info *channel_info; /* channel info array */
1168 u8 channel_count; /* # of channels */
1169
1170 /* thermal calibration */
1171 s32 temperature; /* degrees Kelvin */
1172 s32 last_temperature;
1173
e94a4099
SG
1174 /* Scan related variables */
1175 unsigned long scan_start;
1176 unsigned long scan_start_tsf;
1177 void *scan_cmd;
1178 enum ieee80211_band scan_band;
1179 struct cfg80211_scan_request *scan_request;
1180 struct ieee80211_vif *scan_vif;
1181 u8 scan_tx_ant[IEEE80211_NUM_BANDS];
1182 u8 mgmt_tx_ant;
1183
1184 /* spinlock */
1185 spinlock_t lock; /* protect general shared data */
1186 spinlock_t hcmd_lock; /* protect hcmd */
1187 spinlock_t reg_lock; /* protect hw register access */
1188 struct mutex mutex;
1189
1190 /* basic pci-network driver stuff */
1191 struct pci_dev *pci_dev;
1192
1193 /* pci hardware address support */
1194 void __iomem *hw_base;
e7392364
SG
1195 u32 hw_rev;
1196 u32 hw_wa_rev;
1197 u8 rev_id;
e94a4099
SG
1198
1199 /* command queue number */
1200 u8 cmd_queue;
1201
1202 /* max number of station keys */
1203 u8 sta_key_max_num;
1204
1205 /* EEPROM MAC addresses */
1206 struct mac_address addresses[1];
1207
1208 /* uCode images, save to reload in case of failure */
e7392364
SG
1209 int fw_idx; /* firmware we're trying to load */
1210 u32 ucode_ver; /* version of ucode, copy of
1211 il_ucode.ver */
e94a4099
SG
1212 struct fw_desc ucode_code; /* runtime inst */
1213 struct fw_desc ucode_data; /* runtime data original */
1214 struct fw_desc ucode_data_backup; /* runtime data save/restore */
1215 struct fw_desc ucode_init; /* initialization inst */
1216 struct fw_desc ucode_init_data; /* initialization data */
1217 struct fw_desc ucode_boot; /* bootstrap inst */
1218 enum ucode_type ucode_type;
1219 u8 ucode_write_complete; /* the image write is complete */
1220 char firmware_name[25];
1221
83007196 1222 struct ieee80211_vif *vif;
e94a4099 1223
8d44f2bd
SG
1224 struct il_qos_info qos_data;
1225
1c03c462
SG
1226 struct {
1227 bool enabled;
1228 bool is_40mhz;
1229 bool non_gf_sta_present;
1230 u8 protection;
1231 u8 extension_chan_offset;
1232 } ht;
1233
c8b03958
SG
1234 /*
1235 * We declare this const so it can only be
1236 * changed via explicit cast within the
1237 * routines that actually update the physical
1238 * hardware.
1239 */
1240 const struct il_rxon_cmd active;
1241 struct il_rxon_cmd staging;
1242
1243 struct il_rxon_time_cmd timing;
1244
e94a4099
SG
1245 __le16 switch_channel;
1246
1247 /* 1st responses from initialize and runtime uCode images.
1248 * _4965's initialize alive response contains some calibration data. */
1249 struct il_init_alive_resp card_alive_init;
1250 struct il_alive_resp card_alive;
1251
1252 u16 active_rate;
1253
1254 u8 start_calib;
1255 struct il_sensitivity_data sensitivity_data;
1256 struct il_chain_noise_data chain_noise_data;
1257 __le16 sensitivity_tbl[HD_TBL_SIZE];
1258
1259 struct il_ht_config current_ht_config;
1260
1261 /* Rate scaling data */
1262 u8 retry_rate;
1263
1264 wait_queue_head_t wait_command_queue;
1265
1266 int activity_timer_active;
1267
1268 /* Rx and Tx DMA processing queues */
1269 struct il_rx_queue rxq;
1270 struct il_tx_queue *txq;
1271 unsigned long txq_ctx_active_msk;
e7392364
SG
1272 struct il_dma_ptr kw; /* keep warm address */
1273 struct il_dma_ptr scd_bc_tbls;
e94a4099
SG
1274
1275 u32 scd_base_addr; /* scheduler sram base address */
1276
1277 unsigned long status;
1278
1279 /* counts mgmt, ctl, and data packets */
1280 struct traffic_stats tx_stats;
1281 struct traffic_stats rx_stats;
1282
1283 /* counts interrupts */
1284 struct isr_stats isr_stats;
1285
1286 struct il_power_mgr power_data;
1287
1288 /* context information */
e7392364 1289 u8 bssid[ETH_ALEN]; /* used only on 3945 but filled by core */
e94a4099
SG
1290
1291 /* station table variables */
1292
1293 /* Note: if lock and sta_lock are needed, lock must be acquired first */
1294 spinlock_t sta_lock;
1295 int num_stations;
1296 struct il_station_entry stations[IL_STATION_COUNT];
1297 unsigned long ucode_key_table;
1298
1299 /* queue refcounts */
1300#define IL_MAX_HW_QUEUES 32
1301 unsigned long queue_stopped[BITS_TO_LONGS(IL_MAX_HW_QUEUES)];
c6af8074
SG
1302#define IL_STOP_REASON_PASSIVE 0
1303 unsigned long stop_reason;
e94a4099
SG
1304 /* for each AC */
1305 atomic_t queue_stop_count[4];
1306
1307 /* Indication if ieee80211_ops->open has been called */
1308 u8 is_open;
1309
1310 u8 mac80211_registered;
1311
1312 /* eeprom -- this is in the card's little endian byte order */
1313 u8 *eeprom;
1314 struct il_eeprom_calib_info *calib_info;
1315
1316 enum nl80211_iftype iw_mode;
1317
1318 /* Last Rx'd beacon timestamp */
1319 u64 timestamp;
1320
1321 union {
1322#if defined(CONFIG_IWL3945) || defined(CONFIG_IWL3945_MODULE)
1323 struct {
1324 void *shared_virt;
1325 dma_addr_t shared_phys;
1326
1327 struct delayed_work thermal_periodic;
1328 struct delayed_work rfkill_poll;
1329
1330 struct il3945_notif_stats stats;
1331#ifdef CONFIG_IWLEGACY_DEBUGFS
1332 struct il3945_notif_stats accum_stats;
1333 struct il3945_notif_stats delta_stats;
1334 struct il3945_notif_stats max_delta;
1335#endif
1336
1337 u32 sta_supp_rates;
1338 int last_rx_rssi; /* From Rx packet stats */
1339
1340 /* Rx'd packet timing information */
1341 u32 last_beacon_time;
1342 u64 last_tsf;
1343
1344 /*
1345 * each calibration channel group in the
1346 * EEPROM has a derived clip setting for
1347 * each rate.
1348 */
1349 const struct il3945_clip_group clip_groups[5];
1350
1351 } _3945;
1352#endif
1353#if defined(CONFIG_IWL4965) || defined(CONFIG_IWL4965_MODULE)
1354 struct {
1355 struct il_rx_phy_res last_phy_res;
1356 bool last_phy_res_valid;
0255beda 1357 u32 ampdu_ref;
e94a4099
SG
1358
1359 struct completion firmware_loading_complete;
1360
1361 /*
1362 * chain noise reset and gain commands are the
1363 * two extra calibration commands follows the standard
1364 * phy calibration commands
1365 */
1366 u8 phy_calib_chain_noise_reset_cmd;
1367 u8 phy_calib_chain_noise_gain_cmd;
1368
d735f921
SG
1369 u8 key_mapping_keys;
1370 struct il_wep_key wep_keys[WEP_KEYS_MAX];
1371
e94a4099
SG
1372 struct il_notif_stats stats;
1373#ifdef CONFIG_IWLEGACY_DEBUGFS
1374 struct il_notif_stats accum_stats;
1375 struct il_notif_stats delta_stats;
1376 struct il_notif_stats max_delta;
1377#endif
1378
1379 } _4965;
1380#endif
1381 };
1382
1383 struct il_hw_params hw_params;
1384
1385 u32 inta_mask;
1386
1387 struct workqueue_struct *workqueue;
1388
1389 struct work_struct restart;
1390 struct work_struct scan_completed;
1391 struct work_struct rx_replenish;
1392 struct work_struct abort_scan;
1393
83007196 1394 bool beacon_enabled;
e94a4099
SG
1395 struct sk_buff *beacon_skb;
1396
1397 struct work_struct tx_flush;
1398
1399 struct tasklet_struct irq_tasklet;
1400
1401 struct delayed_work init_alive_start;
1402 struct delayed_work alive_start;
1403 struct delayed_work scan_check;
1404
1405 /* TX Power */
1406 s8 tx_power_user_lmt;
1407 s8 tx_power_device_lmt;
1408 s8 tx_power_next;
1409
e94a4099
SG
1410#ifdef CONFIG_IWLEGACY_DEBUG
1411 /* debugging info */
e7392364
SG
1412 u32 debug_level; /* per device debugging will override global
1413 il_debug_level if set */
1414#endif /* CONFIG_IWLEGACY_DEBUG */
e94a4099
SG
1415#ifdef CONFIG_IWLEGACY_DEBUGFS
1416 /* debugfs */
1417 u16 tx_traffic_idx;
1418 u16 rx_traffic_idx;
1419 u8 *tx_traffic;
1420 u8 *rx_traffic;
1421 struct dentry *debugfs_dir;
1422 u32 dbgfs_sram_offset, dbgfs_sram_len;
1423 bool disable_ht40;
e7392364 1424#endif /* CONFIG_IWLEGACY_DEBUGFS */
e94a4099
SG
1425
1426 struct work_struct txpower_work;
1427 u32 disable_sens_cal;
1428 u32 disable_chain_noise_cal;
1429 u32 disable_tx_power_cal;
1430 struct work_struct run_time_calib_work;
1431 struct timer_list stats_periodic;
1432 struct timer_list watchdog;
1433 bool hw_ready;
1434
1435 struct led_classdev led;
1436 unsigned long blink_on, blink_off;
1437 bool led_registered;
e7392364 1438}; /*il_priv */
e94a4099 1439
e7392364
SG
1440static inline void
1441il_txq_ctx_activate(struct il_priv *il, int txq_id)
e94a4099
SG
1442{
1443 set_bit(txq_id, &il->txq_ctx_active_msk);
1444}
1445
e7392364
SG
1446static inline void
1447il_txq_ctx_deactivate(struct il_priv *il, int txq_id)
e94a4099
SG
1448{
1449 clear_bit(txq_id, &il->txq_ctx_active_msk);
1450}
1451
e7392364
SG
1452static inline int
1453il_is_associated(struct il_priv *il)
e94a4099 1454{
c8b03958 1455 return (il->active.filter_flags & RXON_FILTER_ASSOC_MSK) ? 1 : 0;
e94a4099
SG
1456}
1457
e7392364
SG
1458static inline int
1459il_is_any_associated(struct il_priv *il)
e94a4099
SG
1460{
1461 return il_is_associated(il);
1462}
1463
e7392364
SG
1464static inline int
1465il_is_channel_valid(const struct il_channel_info *ch_info)
e94a4099
SG
1466{
1467 if (ch_info == NULL)
1468 return 0;
1469 return (ch_info->flags & EEPROM_CHANNEL_VALID) ? 1 : 0;
1470}
1471
e7392364
SG
1472static inline int
1473il_is_channel_radar(const struct il_channel_info *ch_info)
e94a4099
SG
1474{
1475 return (ch_info->flags & EEPROM_CHANNEL_RADAR) ? 1 : 0;
1476}
1477
e7392364
SG
1478static inline u8
1479il_is_channel_a_band(const struct il_channel_info *ch_info)
e94a4099
SG
1480{
1481 return ch_info->band == IEEE80211_BAND_5GHZ;
1482}
1483
1484static inline int
1485il_is_channel_passive(const struct il_channel_info *ch)
1486{
1487 return (!(ch->flags & EEPROM_CHANNEL_ACTIVE)) ? 1 : 0;
1488}
1489
1490static inline int
1491il_is_channel_ibss(const struct il_channel_info *ch)
1492{
1493 return (ch->flags & EEPROM_CHANNEL_IBSS) ? 1 : 0;
1494}
be663ab6 1495
e94a4099
SG
1496static inline void
1497__il_free_pages(struct il_priv *il, struct page *page)
1498{
1499 __free_pages(page, il->hw_params.rx_page_order);
1500 il->alloc_rxb_page--;
1501}
1502
e7392364
SG
1503static inline void
1504il_free_pages(struct il_priv *il, unsigned long page)
e94a4099
SG
1505{
1506 free_pages(page, il->hw_params.rx_page_order);
1507 il->alloc_rxb_page--;
1508}
be663ab6
WYG
1509
1510#define IWLWIFI_VERSION "in-tree:"
1511#define DRV_COPYRIGHT "Copyright(c) 2003-2011 Intel Corporation"
1512#define DRV_AUTHOR "<ilw@linux.intel.com>"
1513
e2ebc833 1514#define IL_PCI_DEVICE(dev, subdev, cfg) \
be663ab6
WYG
1515 .vendor = PCI_VENDOR_ID_INTEL, .device = (dev), \
1516 .subvendor = PCI_ANY_ID, .subdevice = (subdev), \
1517 .driver_data = (kernel_ulong_t)&(cfg)
1518
1519#define TIME_UNIT 1024
1520
e2ebc833
SG
1521#define IL_SKU_G 0x1
1522#define IL_SKU_A 0x2
1523#define IL_SKU_N 0x8
be663ab6 1524
e2ebc833 1525#define IL_CMD(x) case x: return #x
be663ab6 1526
e94a4099 1527/* Size of one Rx buffer in host DRAM */
e7392364 1528#define IL_RX_BUF_SIZE_3K (3 * 1000) /* 3945 only */
e94a4099
SG
1529#define IL_RX_BUF_SIZE_4K (4 * 1024)
1530#define IL_RX_BUF_SIZE_8K (8 * 1024)
1531
9b5e2f46 1532#ifdef CONFIG_IWLEGACY_DEBUGFS
e2ebc833 1533struct il_debugfs_ops {
1722f8e1
SG
1534 ssize_t(*rx_stats_read) (struct file *file, char __user *user_buf,
1535 size_t count, loff_t *ppos);
1536 ssize_t(*tx_stats_read) (struct file *file, char __user *user_buf,
1537 size_t count, loff_t *ppos);
1538 ssize_t(*general_stats_read) (struct file *file,
1539 char __user *user_buf, size_t count,
1540 loff_t *ppos);
be663ab6 1541};
9b5e2f46 1542#endif
be663ab6 1543
1600b875 1544struct il_ops {
be663ab6 1545 /* Handling TX */
1722f8e1
SG
1546 void (*txq_update_byte_cnt_tbl) (struct il_priv *il,
1547 struct il_tx_queue *txq,
e7392364 1548 u16 byte_cnt);
1722f8e1
SG
1549 int (*txq_attach_buf_to_tfd) (struct il_priv *il,
1550 struct il_tx_queue *txq, dma_addr_t addr,
e7392364 1551 u16 len, u8 reset, u8 pad);
1722f8e1
SG
1552 void (*txq_free_tfd) (struct il_priv *il, struct il_tx_queue *txq);
1553 int (*txq_init) (struct il_priv *il, struct il_tx_queue *txq);
be663ab6 1554 /* alive notification after init uCode load */
1722f8e1 1555 void (*init_alive_start) (struct il_priv *il);
be663ab6 1556 /* check validity of rtc data address */
e7392364 1557 int (*is_valid_rtc_data_addr) (u32 addr);
be663ab6 1558 /* 1st ucode load */
1722f8e1 1559 int (*load_ucode) (struct il_priv *il);
1ba2f121 1560
1722f8e1
SG
1561 void (*dump_nic_error_log) (struct il_priv *il);
1562 int (*dump_fh) (struct il_priv *il, char **buf, bool display);
1563 int (*set_channel_switch) (struct il_priv *il,
1564 struct ieee80211_channel_switch *ch_switch);
be663ab6 1565 /* power management */
f03ee2a8 1566 int (*apm_init) (struct il_priv *il);
be663ab6 1567
f03ee2a8 1568 /* tx power */
1722f8e1
SG
1569 int (*send_tx_power) (struct il_priv *il);
1570 void (*update_chain_flags) (struct il_priv *il);
be663ab6 1571
47ef694d 1572 /* eeprom operations */
a89268e8
SG
1573 int (*eeprom_acquire_semaphore) (struct il_priv *il);
1574 void (*eeprom_release_semaphore) (struct il_priv *il);
be663ab6 1575
c9363551
SG
1576 int (*rxon_assoc) (struct il_priv *il);
1577 int (*commit_rxon) (struct il_priv *il);
1578 void (*set_rxon_chain) (struct il_priv *il);
1579
1580 u16(*get_hcmd_size) (u8 cmd_id, u16 len);
1581 u16(*build_addsta_hcmd) (const struct il_addsta_cmd *cmd, u8 *data);
1582
1583 int (*request_scan) (struct il_priv *il, struct ieee80211_vif *vif);
1584 void (*post_scan) (struct il_priv *il);
1585 void (*post_associate) (struct il_priv *il);
1586 void (*config_ap) (struct il_priv *il);
1587 /* station management */
1588 int (*update_bcast_stations) (struct il_priv *il);
1589 int (*manage_ibss_station) (struct il_priv *il,
1590 struct ieee80211_vif *vif, bool add);
1591
1592 int (*send_led_cmd) (struct il_priv *il, struct il_led_cmd *led_cmd);
be663ab6
WYG
1593};
1594
e2ebc833 1595struct il_mod_params {
be663ab6
WYG
1596 int sw_crypto; /* def: 0 = using hardware encryption */
1597 int disable_hw_scan; /* def: 0 = use h/w scan */
1598 int num_of_queues; /* def: HW dependent */
1599 int disable_11n; /* def: 0 = 11n capabilities enabled */
1600 int amsdu_size_8K; /* def: 1 = enable 8K amsdu size */
e7392364 1601 int antenna; /* def: 0 = both antennas (use diversity) */
be663ab6
WYG
1602 int restart_fw; /* def: 1 = restart firmware */
1603};
1604
47ef694d
SG
1605#define IL_LED_SOLID 11
1606#define IL_DEF_LED_INTRVL cpu_to_le32(1000)
1607
1608#define IL_LED_ACTIVITY (0<<1)
1609#define IL_LED_LINK (1<<1)
1610
1611/*
1612 * LED mode
1613 * IL_LED_DEFAULT: use device default
1614 * IL_LED_RF_STATE: turn LED on/off based on RF state
1615 * LED ON = RF ON
1616 * LED OFF = RF OFF
1617 * IL_LED_BLINK: adjust led blink rate based on blink table
1618 */
1619enum il_led_mode {
1620 IL_LED_DEFAULT,
1621 IL_LED_RF_STATE,
1622 IL_LED_BLINK,
1623};
1624
1625void il_leds_init(struct il_priv *il);
1626void il_leds_exit(struct il_priv *il);
1627
be663ab6 1628/**
e2ebc833 1629 * struct il_cfg
be663ab6
WYG
1630 * @fw_name_pre: Firmware filename prefix. The api version and extension
1631 * (.ucode) will be added to filename before loading from disk. The
1632 * filename is constructed as fw_name_pre<api>.ucode.
1633 * @ucode_api_max: Highest version of uCode API supported by driver.
1634 * @ucode_api_min: Lowest version of uCode API supported by driver.
1635 * @scan_antennas: available antenna for scan operation
1636 * @led_mode: 0=blinking, 1=On(RF On)/Off(RF Off)
1637 *
1638 * We enable the driver to be backward compatible wrt API version. The
1639 * driver specifies which APIs it supports (with @ucode_api_max being the
1640 * highest and @ucode_api_min the lowest). Firmware will only be loaded if
1641 * it has a supported API version. The firmware's API version will be
e2ebc833 1642 * stored in @il_priv, enabling the driver to make runtime changes based
be663ab6
WYG
1643 * on firmware version used.
1644 *
1645 * For example,
46bc8d4b 1646 * if (IL_UCODE_API(il->ucode_ver) >= 2) {
be663ab6
WYG
1647 * Driver interacts with Firmware API version >= 2.
1648 * } else {
1649 * Driver interacts with Firmware API version 1.
1650 * }
1651 *
1652 * The ideal usage of this infrastructure is to treat a new ucode API
1653 * release as a new hardware revision. That is, through utilizing the
e2ebc833 1654 * il_hcmd_utils_ops etc. we accommodate different command structures
be663ab6
WYG
1655 * and flows between hardware versions as well as their API
1656 * versions.
1657 *
1658 */
e2ebc833 1659struct il_cfg {
be663ab6
WYG
1660 /* params specific to an individual device within a device family */
1661 const char *name;
1662 const char *fw_name_pre;
1663 const unsigned int ucode_api_max;
1664 const unsigned int ucode_api_min;
e7392364
SG
1665 u8 valid_tx_ant;
1666 u8 valid_rx_ant;
be663ab6 1667 unsigned int sku;
e7392364
SG
1668 u16 eeprom_ver;
1669 u16 eeprom_calib_ver;
be663ab6 1670 /* module based parameters which can be set from modprobe cmd */
e2ebc833 1671 const struct il_mod_params *mod_params;
be663ab6 1672 /* params not likely to change within a device family */
e2ebc833 1673 struct il_base_params *base_params;
be663ab6
WYG
1674 /* params likely to change within a device family */
1675 u8 scan_rx_antennas[IEEE80211_NUM_BANDS];
e2ebc833 1676 enum il_led_mode led_mode;
89ef1ed2
SG
1677
1678 int eeprom_size;
1679 int num_of_queues; /* def: HW dependent */
1680 int num_of_ampdu_queues; /* def: HW dependent */
1681 /* for il_apm_init() */
1682 u32 pll_cfg_val;
1683 bool set_l0s;
1684 bool use_bsm;
1685
1686 u16 led_compensation;
1687 int chain_noise_num_beacons;
1688 unsigned int wd_timeout;
1689 bool temperature_kelvin;
1690 const bool ucode_tracing;
1691 const bool sensitivity_calib_by_driver;
1692 const bool chain_noise_calib_by_driver;
93a984a4
SG
1693
1694 const u32 regulatory_bands[7];
be663ab6
WYG
1695};
1696
1697/***************************
1698 * L i b *
1699 ***************************/
1700
e7392364
SG
1701int il_mac_conf_tx(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1702 u16 queue, const struct ieee80211_tx_queue_params *params);
e2ebc833 1703int il_mac_tx_last_beacon(struct ieee80211_hw *hw);
e7392364 1704
83007196
SG
1705void il_set_rxon_hwcrypto(struct il_priv *il, int hw_decrypt);
1706int il_check_rxon_cmd(struct il_priv *il);
1707int il_full_rxon_required(struct il_priv *il);
1708int il_set_rxon_channel(struct il_priv *il, struct ieee80211_channel *ch);
1709void il_set_flags_for_band(struct il_priv *il, enum ieee80211_band band,
1710 struct ieee80211_vif *vif);
e7392364
SG
1711u8 il_get_single_channel_number(struct il_priv *il, enum ieee80211_band band);
1712void il_set_rxon_ht(struct il_priv *il, struct il_ht_config *ht_conf);
83007196 1713bool il_is_ht40_tx_allowed(struct il_priv *il,
e7392364 1714 struct ieee80211_sta_ht_cap *ht_cap);
83007196 1715void il_connection_init_rx_config(struct il_priv *il);
46bc8d4b 1716void il_set_rate(struct il_priv *il);
e7392364
SG
1717int il_set_decrypted_flag(struct il_priv *il, struct ieee80211_hdr *hdr,
1718 u32 decrypt_res, struct ieee80211_rx_status *stats);
46bc8d4b 1719void il_irq_handle_error(struct il_priv *il);
e7392364 1720int il_mac_add_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
e2ebc833 1721void il_mac_remove_interface(struct ieee80211_hw *hw,
e7392364
SG
1722 struct ieee80211_vif *vif);
1723int il_mac_change_interface(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1724 enum nl80211_iftype newtype, bool newp2p);
39ecc01d 1725void il_mac_flush(struct ieee80211_hw *hw, u32 queues, bool drop);
46bc8d4b 1726int il_alloc_txq_mem(struct il_priv *il);
6668e4eb 1727void il_free_txq_mem(struct il_priv *il);
be663ab6 1728
d3175167 1729#ifdef CONFIG_IWLEGACY_DEBUGFS
288f9954 1730extern void il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len);
be663ab6 1731#else
e7392364
SG
1732static inline void
1733il_update_stats(struct il_priv *il, bool is_tx, __le16 fc, u16 len)
be663ab6
WYG
1734{
1735}
1736#endif
288f9954 1737
be663ab6 1738/*****************************************************
288f9954
SG
1739 * Handlers
1740 ***************************************************/
e7392364
SG
1741void il_hdl_pm_sleep(struct il_priv *il, struct il_rx_buf *rxb);
1742void il_hdl_pm_debug_stats(struct il_priv *il, struct il_rx_buf *rxb);
1743void il_hdl_error(struct il_priv *il, struct il_rx_buf *rxb);
288f9954 1744void il_hdl_csa(struct il_priv *il, struct il_rx_buf *rxb);
be663ab6
WYG
1745
1746/*****************************************************
1747* RX
1748******************************************************/
46bc8d4b
SG
1749void il_cmd_queue_unmap(struct il_priv *il);
1750void il_cmd_queue_free(struct il_priv *il);
1751int il_rx_queue_alloc(struct il_priv *il);
e7392364 1752void il_rx_queue_update_write_ptr(struct il_priv *il, struct il_rx_queue *q);
e2ebc833 1753int il_rx_queue_space(const struct il_rx_queue *q);
e7392364 1754void il_tx_cmd_complete(struct il_priv *il, struct il_rx_buf *rxb);
288f9954 1755
e7392364
SG
1756void il_hdl_spectrum_measurement(struct il_priv *il, struct il_rx_buf *rxb);
1757void il_recover_from_stats(struct il_priv *il, struct il_rx_pkt *pkt);
46bc8d4b 1758void il_chswitch_done(struct il_priv *il, bool is_success);
be663ab6
WYG
1759
1760/*****************************************************
1761* TX
1762******************************************************/
d87c771f
SG
1763extern void il_txq_update_write_ptr(struct il_priv *il, struct il_tx_queue *txq);
1764extern int il_tx_queue_init(struct il_priv *il, u32 txq_id);
1765extern void il_tx_queue_reset(struct il_priv *il, u32 txq_id);
1766extern void il_tx_queue_unmap(struct il_priv *il, int txq_id);
1767extern void il_tx_queue_free(struct il_priv *il, int txq_id);
1768extern void il_setup_watchdog(struct il_priv *il);
be663ab6
WYG
1769/*****************************************************
1770 * TX power
1771 ****************************************************/
46bc8d4b 1772int il_set_tx_power(struct il_priv *il, s8 tx_power, bool force);
be663ab6
WYG
1773
1774/*******************************************************************************
1775 * Rate
1776 ******************************************************************************/
1777
83007196 1778u8 il_get_lowest_plcp(struct il_priv *il);
be663ab6
WYG
1779
1780/*******************************************************************************
1781 * Scanning
1782 ******************************************************************************/
46bc8d4b
SG
1783void il_init_scan_params(struct il_priv *il);
1784int il_scan_cancel(struct il_priv *il);
1785int il_scan_cancel_timeout(struct il_priv *il, unsigned long ms);
1786void il_force_scan_end(struct il_priv *il);
e7392364
SG
1787int il_mac_hw_scan(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1788 struct cfg80211_scan_request *req);
46bc8d4b
SG
1789void il_internal_short_hw_scan(struct il_priv *il);
1790int il_force_reset(struct il_priv *il, bool external);
e7392364 1791u16 il_fill_probe_req(struct il_priv *il, struct ieee80211_mgmt *frame,
1722f8e1 1792 const u8 *ta, const u8 *ie, int ie_len, int left);
46bc8d4b 1793void il_setup_rx_scan_handlers(struct il_priv *il);
e7392364
SG
1794u16 il_get_active_dwell_time(struct il_priv *il, enum ieee80211_band band,
1795 u8 n_probes);
1796u16 il_get_passive_dwell_time(struct il_priv *il, enum ieee80211_band band,
1797 struct ieee80211_vif *vif);
46bc8d4b
SG
1798void il_setup_scan_deferred_work(struct il_priv *il);
1799void il_cancel_scan_deferred_work(struct il_priv *il);
be663ab6
WYG
1800
1801/* For faster active scanning, scan will move to the next channel if fewer than
1802 * PLCP_QUIET_THRESH packets are heard on this channel within
1803 * ACTIVE_QUIET_TIME after sending probe request. This shortens the dwell
1804 * time if it's a quiet channel (nothing responded to our probe, and there's
1805 * no other traffic).
1806 * Disable "quiet" feature by setting PLCP_QUIET_THRESH to 0. */
e7392364
SG
1807#define IL_ACTIVE_QUIET_TIME cpu_to_le16(10) /* msec */
1808#define IL_PLCP_QUIET_THRESH cpu_to_le16(1) /* packets */
be663ab6 1809
e2ebc833 1810#define IL_SCAN_CHECK_WATCHDOG (HZ * 7)
be663ab6
WYG
1811
1812/*****************************************************
1813 * S e n d i n g H o s t C o m m a n d s *
1814 *****************************************************/
1815
e2ebc833 1816const char *il_get_cmd_string(u8 cmd);
e7392364 1817int __must_check il_send_cmd_sync(struct il_priv *il, struct il_host_cmd *cmd);
46bc8d4b 1818int il_send_cmd(struct il_priv *il, struct il_host_cmd *cmd);
e7392364
SG
1819int __must_check il_send_cmd_pdu(struct il_priv *il, u8 id, u16 len,
1820 const void *data);
1821int il_send_cmd_pdu_async(struct il_priv *il, u8 id, u16 len, const void *data,
1722f8e1
SG
1822 void (*callback) (struct il_priv *il,
1823 struct il_device_cmd *cmd,
1824 struct il_rx_pkt *pkt));
be663ab6 1825
46bc8d4b 1826int il_enqueue_hcmd(struct il_priv *il, struct il_host_cmd *cmd);
be663ab6 1827
be663ab6
WYG
1828/*****************************************************
1829 * PCI *
1830 *****************************************************/
1831
e2ebc833 1832void il_bg_watchdog(unsigned long data);
e7392364
SG
1833u32 il_usecs_to_beacons(struct il_priv *il, u32 usec, u32 beacon_interval);
1834__le32 il_add_beacon_time(struct il_priv *il, u32 base, u32 addon,
1835 u32 beacon_interval);
be663ab6 1836
71aa5bba 1837#ifdef CONFIG_PM_SLEEP
e2ebc833 1838extern const struct dev_pm_ops il_pm_ops;
be663ab6 1839
e2ebc833 1840#define IL_LEGACY_PM_OPS (&il_pm_ops)
be663ab6 1841
71aa5bba 1842#else /* !CONFIG_PM_SLEEP */
be663ab6 1843
e2ebc833 1844#define IL_LEGACY_PM_OPS NULL
be663ab6 1845
71aa5bba 1846#endif /* !CONFIG_PM_SLEEP */
be663ab6
WYG
1847
1848/*****************************************************
1849* Error Handling Debugging
1850******************************************************/
46bc8d4b 1851void il4965_dump_nic_error_log(struct il_priv *il);
d3175167 1852#ifdef CONFIG_IWLEGACY_DEBUG
83007196 1853void il_print_rx_config_cmd(struct il_priv *il);
be663ab6 1854#else
e7392364 1855static inline void
83007196 1856il_print_rx_config_cmd(struct il_priv *il)
be663ab6
WYG
1857{
1858}
1859#endif
1860
46bc8d4b 1861void il_clear_isr_stats(struct il_priv *il);
be663ab6
WYG
1862
1863/*****************************************************
1864* GEOS
1865******************************************************/
46bc8d4b
SG
1866int il_init_geos(struct il_priv *il);
1867void il_free_geos(struct il_priv *il);
be663ab6
WYG
1868
1869/*************** DRIVER STATUS FUNCTIONS *****/
1870
a6766ccd
SG
1871#define S_HCMD_ACTIVE 0 /* host command in progress */
1872/* 1 is unused (used to be S_HCMD_SYNC_ACTIVE) */
1873#define S_INT_ENABLED 2
bc269a8e 1874#define S_RFKILL 3
a6766ccd
SG
1875#define S_CT_KILL 4
1876#define S_INIT 5
1877#define S_ALIVE 6
1878#define S_READY 7
1879#define S_TEMPERATURE 8
1880#define S_GEO_CONFIGURED 9
1881#define S_EXIT_PENDING 10
db7746f7 1882#define S_STATS 12
a6766ccd
SG
1883#define S_SCANNING 13
1884#define S_SCAN_ABORTING 14
1885#define S_SCAN_HW 15
1886#define S_POWER_PMI 16
1887#define S_FW_ERROR 17
1888#define S_CHANNEL_SWITCH_PENDING 18
be663ab6 1889
e7392364
SG
1890static inline int
1891il_is_ready(struct il_priv *il)
be663ab6
WYG
1892{
1893 /* The adapter is 'ready' if READY and GEO_CONFIGURED bits are
1894 * set but EXIT_PENDING is not */
a6766ccd 1895 return test_bit(S_READY, &il->status) &&
e7392364
SG
1896 test_bit(S_GEO_CONFIGURED, &il->status) &&
1897 !test_bit(S_EXIT_PENDING, &il->status);
be663ab6
WYG
1898}
1899
e7392364
SG
1900static inline int
1901il_is_alive(struct il_priv *il)
be663ab6 1902{
a6766ccd 1903 return test_bit(S_ALIVE, &il->status);
be663ab6
WYG
1904}
1905
e7392364
SG
1906static inline int
1907il_is_init(struct il_priv *il)
be663ab6 1908{
a6766ccd 1909 return test_bit(S_INIT, &il->status);
be663ab6
WYG
1910}
1911
e7392364
SG
1912static inline int
1913il_is_rfkill(struct il_priv *il)
be663ab6 1914{
4e3bc141 1915 return test_bit(S_RFKILL, &il->status);
be663ab6
WYG
1916}
1917
e7392364
SG
1918static inline int
1919il_is_ctkill(struct il_priv *il)
be663ab6 1920{
a6766ccd 1921 return test_bit(S_CT_KILL, &il->status);
be663ab6
WYG
1922}
1923
e7392364
SG
1924static inline int
1925il_is_ready_rf(struct il_priv *il)
be663ab6
WYG
1926{
1927
46bc8d4b 1928 if (il_is_rfkill(il))
be663ab6
WYG
1929 return 0;
1930
46bc8d4b 1931 return il_is_ready(il);
be663ab6
WYG
1932}
1933
46bc8d4b 1934extern void il_send_bt_config(struct il_priv *il);
e7392364 1935extern int il_send_stats_request(struct il_priv *il, u8 flags, bool clear);
775ed8ab
SG
1936extern void il_apm_stop(struct il_priv *il);
1937extern void _il_apm_stop(struct il_priv *il);
1938
46bc8d4b 1939int il_apm_init(struct il_priv *il);
be663ab6 1940
83007196
SG
1941int il_send_rxon_timing(struct il_priv *il);
1942
e7392364 1943static inline int
83007196 1944il_send_rxon_assoc(struct il_priv *il)
be663ab6 1945{
c9363551 1946 return il->ops->rxon_assoc(il);
be663ab6 1947}
e7392364
SG
1948
1949static inline int
83007196 1950il_commit_rxon(struct il_priv *il)
be663ab6 1951{
c9363551 1952 return il->ops->commit_rxon(il);
be663ab6 1953}
e7392364
SG
1954
1955static inline const struct ieee80211_supported_band *
1956il_get_hw_mode(struct il_priv *il, enum ieee80211_band band)
be663ab6 1957{
46bc8d4b 1958 return il->hw->wiphy->bands[band];
be663ab6
WYG
1959}
1960
be663ab6 1961/* mac80211 handlers */
e2ebc833 1962int il_mac_config(struct ieee80211_hw *hw, u32 changed);
e7392364
SG
1963void il_mac_reset_tsf(struct ieee80211_hw *hw, struct ieee80211_vif *vif);
1964void il_mac_bss_info_changed(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
1965 struct ieee80211_bss_conf *bss_conf, u32 changes);
1966void il_tx_cmd_protection(struct il_priv *il, struct ieee80211_tx_info *info,
1722f8e1 1967 __le16 fc, __le32 *tx_flags);
be663ab6 1968
e2ebc833 1969irqreturn_t il_isr(int irq, void *data);
be663ab6 1970
17d4eca6
SG
1971extern void il_set_bit(struct il_priv *p, u32 r, u32 m);
1972extern void il_clear_bit(struct il_priv *p, u32 r, u32 m);
1e0f32a4 1973extern bool _il_grab_nic_access(struct il_priv *il);
17d4eca6
SG
1974extern int _il_poll_bit(struct il_priv *il, u32 addr, u32 bits, u32 mask, int timeout);
1975extern int il_poll_bit(struct il_priv *il, u32 addr, u32 mask, int timeout);
1976extern u32 il_rd_prph(struct il_priv *il, u32 reg);
1977extern void il_wr_prph(struct il_priv *il, u32 addr, u32 val);
1978extern u32 il_read_targ_mem(struct il_priv *il, u32 addr);
1979extern void il_write_targ_mem(struct il_priv *il, u32 addr, u32 val);
e94a4099 1980
e7392364
SG
1981static inline void
1982_il_write8(struct il_priv *il, u32 ofs, u8 val)
e94a4099 1983{
a5f16137 1984 writeb(val, il->hw_base + ofs);
e94a4099
SG
1985}
1986#define il_write8(il, ofs, val) _il_write8(il, ofs, val)
1987
e7392364
SG
1988static inline void
1989_il_wr(struct il_priv *il, u32 ofs, u32 val)
e94a4099 1990{
a5f16137 1991 writel(val, il->hw_base + ofs);
e94a4099
SG
1992}
1993
e7392364
SG
1994static inline u32
1995_il_rd(struct il_priv *il, u32 ofs)
e94a4099 1996{
a5f16137 1997 return readl(il->hw_base + ofs);
e94a4099
SG
1998}
1999
e94a4099
SG
2000static inline void
2001_il_clear_bit(struct il_priv *il, u32 reg, u32 mask)
2002{
2003 _il_wr(il, reg, _il_rd(il, reg) & ~mask);
2004}
2005
e7392364 2006static inline void
17d4eca6 2007_il_set_bit(struct il_priv *il, u32 reg, u32 mask)
e94a4099 2008{
17d4eca6 2009 _il_wr(il, reg, _il_rd(il, reg) | mask);
e94a4099
SG
2010}
2011
e7392364
SG
2012static inline void
2013_il_release_nic_access(struct il_priv *il)
e94a4099 2014{
e7392364 2015 _il_clear_bit(il, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_MAC_ACCESS_REQ);
4e5ea208
SG
2016 /*
2017 * In above we are reading CSR_GP_CNTRL register, what will flush any
2018 * previous writes, but still want write, which clear MAC_ACCESS_REQ
2019 * bit, be performed on PCI bus before any other writes scheduled on
2020 * different CPUs (after we drop reg_lock).
2021 */
2022 mmiowb();
e94a4099
SG
2023}
2024
e7392364
SG
2025static inline u32
2026il_rd(struct il_priv *il, u32 reg)
e94a4099
SG
2027{
2028 u32 value;
2029 unsigned long reg_flags;
2030
2031 spin_lock_irqsave(&il->reg_lock, reg_flags);
2032 _il_grab_nic_access(il);
2033 value = _il_rd(il, reg);
2034 _il_release_nic_access(il);
2035 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2036 return value;
e94a4099
SG
2037}
2038
2039static inline void
2040il_wr(struct il_priv *il, u32 reg, u32 value)
2041{
2042 unsigned long reg_flags;
2043
2044 spin_lock_irqsave(&il->reg_lock, reg_flags);
1e0f32a4 2045 if (likely(_il_grab_nic_access(il))) {
e94a4099
SG
2046 _il_wr(il, reg, value);
2047 _il_release_nic_access(il);
2048 }
2049 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2050}
2051
e7392364
SG
2052static inline u32
2053_il_rd_prph(struct il_priv *il, u32 reg)
e94a4099
SG
2054{
2055 _il_wr(il, HBUS_TARG_PRPH_RADDR, reg | (3 << 24));
e94a4099
SG
2056 return _il_rd(il, HBUS_TARG_PRPH_RDAT);
2057}
2058
e7392364
SG
2059static inline void
2060_il_wr_prph(struct il_priv *il, u32 addr, u32 val)
e94a4099 2061{
e7392364 2062 _il_wr(il, HBUS_TARG_PRPH_WADDR, ((addr & 0x0000FFFF) | (3 << 24)));
e94a4099
SG
2063 _il_wr(il, HBUS_TARG_PRPH_WDAT, val);
2064}
2065
e94a4099
SG
2066static inline void
2067il_set_bits_prph(struct il_priv *il, u32 reg, u32 mask)
2068{
2069 unsigned long reg_flags;
2070
2071 spin_lock_irqsave(&il->reg_lock, reg_flags);
1e0f32a4
SG
2072 if (likely(_il_grab_nic_access(il))) {
2073 _il_wr_prph(il, reg, (_il_rd_prph(il, reg) | mask));
2074 _il_release_nic_access(il);
2075 }
e94a4099
SG
2076 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2077}
2078
e7392364
SG
2079static inline void
2080il_set_bits_mask_prph(struct il_priv *il, u32 reg, u32 bits, u32 mask)
e94a4099
SG
2081{
2082 unsigned long reg_flags;
2083
2084 spin_lock_irqsave(&il->reg_lock, reg_flags);
1e0f32a4
SG
2085 if (likely(_il_grab_nic_access(il))) {
2086 _il_wr_prph(il, reg, ((_il_rd_prph(il, reg) & mask) | bits));
2087 _il_release_nic_access(il);
2088 }
e94a4099
SG
2089 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2090}
2091
e7392364
SG
2092static inline void
2093il_clear_bits_prph(struct il_priv *il, u32 reg, u32 mask)
e94a4099
SG
2094{
2095 unsigned long reg_flags;
2096 u32 val;
2097
2098 spin_lock_irqsave(&il->reg_lock, reg_flags);
1e0f32a4
SG
2099 if (likely(_il_grab_nic_access(il))) {
2100 val = _il_rd_prph(il, reg);
2101 _il_wr_prph(il, reg, (val & ~mask));
2102 _il_release_nic_access(il);
2103 }
e94a4099
SG
2104 spin_unlock_irqrestore(&il->reg_lock, reg_flags);
2105}
2106
e94a4099
SG
2107#define HW_KEY_DYNAMIC 0
2108#define HW_KEY_DEFAULT 1
2109
e7392364
SG
2110#define IL_STA_DRIVER_ACTIVE BIT(0) /* driver entry is active */
2111#define IL_STA_UCODE_ACTIVE BIT(1) /* ucode entry is active */
2112#define IL_STA_UCODE_INPROGRESS BIT(2) /* ucode entry is in process of
2113 being activated */
2114#define IL_STA_LOCAL BIT(3) /* station state not directed by mac80211;
2115 (this is for the IBSS BSSID stations) */
2116#define IL_STA_BCAST BIT(4) /* this station is the special bcast station */
e94a4099 2117
83007196
SG
2118void il_restore_stations(struct il_priv *il);
2119void il_clear_ucode_stations(struct il_priv *il);
e94a4099
SG
2120void il_dealloc_bcast_stations(struct il_priv *il);
2121int il_get_free_ucode_key_idx(struct il_priv *il);
e7392364 2122int il_send_add_sta(struct il_priv *il, struct il_addsta_cmd *sta, u8 flags);
83007196 2123int il_add_station_common(struct il_priv *il, const u8 *addr, bool is_ap,
1722f8e1 2124 struct ieee80211_sta *sta, u8 *sta_id_r);
e7392364
SG
2125int il_remove_station(struct il_priv *il, const u8 sta_id, const u8 * addr);
2126int il_mac_sta_remove(struct ieee80211_hw *hw, struct ieee80211_vif *vif,
2127 struct ieee80211_sta *sta);
2128
83007196
SG
2129u8 il_prep_station(struct il_priv *il, const u8 *addr, bool is_ap,
2130 struct ieee80211_sta *sta);
e7392364 2131
83007196
SG
2132int il_send_lq_cmd(struct il_priv *il, struct il_link_quality_cmd *lq,
2133 u8 flags, bool init);
e94a4099
SG
2134
2135/**
2136 * il_clear_driver_stations - clear knowledge of all stations from driver
2137 * @il: iwl il struct
2138 *
2139 * This is called during il_down() to make sure that in the case
2140 * we're coming there from a hardware restart mac80211 will be
2141 * able to reconfigure stations -- if we're getting there in the
2142 * normal down flow then the stations will already be cleared.
2143 */
e7392364
SG
2144static inline void
2145il_clear_driver_stations(struct il_priv *il)
e94a4099
SG
2146{
2147 unsigned long flags;
e94a4099
SG
2148
2149 spin_lock_irqsave(&il->sta_lock, flags);
2150 memset(il->stations, 0, sizeof(il->stations));
2151 il->num_stations = 0;
e94a4099 2152 il->ucode_key_table = 0;
e94a4099
SG
2153 spin_unlock_irqrestore(&il->sta_lock, flags);
2154}
2155
e7392364
SG
2156static inline int
2157il_sta_id(struct ieee80211_sta *sta)
e94a4099
SG
2158{
2159 if (WARN_ON(!sta))
2160 return IL_INVALID_STATION;
2161
2162 return ((struct il_station_priv_common *)sta->drv_priv)->sta_id;
2163}
2164
2165/**
2166 * il_sta_id_or_broadcast - return sta_id or broadcast sta
2167 * @il: iwl il
2168 * @context: the current context
2169 * @sta: mac80211 station
2170 *
2171 * In certain circumstances mac80211 passes a station pointer
2172 * that may be %NULL, for example during TX or key setup. In
2173 * that case, we need to use the broadcast station, so this
2174 * inline wraps that pattern.
2175 */
e7392364 2176static inline int
83007196 2177il_sta_id_or_broadcast(struct il_priv *il, struct ieee80211_sta *sta)
e94a4099
SG
2178{
2179 int sta_id;
2180
2181 if (!sta)
b16db50a 2182 return il->hw_params.bcast_id;
e94a4099
SG
2183
2184 sta_id = il_sta_id(sta);
2185
2186 /*
2187 * mac80211 should not be passing a partially
2188 * initialised station!
2189 */
2190 WARN_ON(sta_id == IL_INVALID_STATION);
2191
2192 return sta_id;
2193}
2194
2195/**
2196 * il_queue_inc_wrap - increment queue idx, wrap back to beginning
2197 * @idx -- current idx
2198 * @n_bd -- total number of entries in queue (must be power of 2)
2199 */
e7392364
SG
2200static inline int
2201il_queue_inc_wrap(int idx, int n_bd)
e94a4099
SG
2202{
2203 return ++idx & (n_bd - 1);
2204}
2205
2206/**
2207 * il_queue_dec_wrap - decrement queue idx, wrap back to end
2208 * @idx -- current idx
2209 * @n_bd -- total number of entries in queue (must be power of 2)
2210 */
e7392364
SG
2211static inline int
2212il_queue_dec_wrap(int idx, int n_bd)
e94a4099
SG
2213{
2214 return --idx & (n_bd - 1);
2215}
2216
2217/* TODO: Move fw_desc functions to iwl-pci.ko */
e7392364
SG
2218static inline void
2219il_free_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
e94a4099
SG
2220{
2221 if (desc->v_addr)
e7392364
SG
2222 dma_free_coherent(&pci_dev->dev, desc->len, desc->v_addr,
2223 desc->p_addr);
e94a4099
SG
2224 desc->v_addr = NULL;
2225 desc->len = 0;
2226}
2227
e7392364
SG
2228static inline int
2229il_alloc_fw_desc(struct pci_dev *pci_dev, struct fw_desc *desc)
e94a4099
SG
2230{
2231 if (!desc->len) {
2232 desc->v_addr = NULL;
2233 return -EINVAL;
2234 }
2235
1f9061d2
JP
2236 desc->v_addr = dma_alloc_coherent(&pci_dev->dev, desc->len,
2237 &desc->p_addr, GFP_KERNEL);
e94a4099
SG
2238 return (desc->v_addr != NULL) ? 0 : -ENOMEM;
2239}
2240
2241/*
2242 * we have 8 bits used like this:
2243 *
2244 * 7 6 5 4 3 2 1 0
2245 * | | | | | | | |
2246 * | | | | | | +-+-------- AC queue (0-3)
2247 * | | | | | |
2248 * | +-+-+-+-+------------ HW queue ID
2249 * |
2250 * +---------------------- unused
2251 */
2252static inline void
2253il_set_swq_id(struct il_tx_queue *txq, u8 ac, u8 hwq)
2254{
e7392364
SG
2255 BUG_ON(ac > 3); /* only have 2 bits */
2256 BUG_ON(hwq > 31); /* only use 5 bits */
e94a4099
SG
2257
2258 txq->swq_id = (hwq << 2) | ac;
2259}
2260
42ce8943
SG
2261static inline void
2262_il_wake_queue(struct il_priv *il, u8 ac)
2263{
2264 if (atomic_dec_return(&il->queue_stop_count[ac]) <= 0)
2265 ieee80211_wake_queue(il->hw, ac);
2266}
2267
2268static inline void
2269_il_stop_queue(struct il_priv *il, u8 ac)
2270{
2271 if (atomic_inc_return(&il->queue_stop_count[ac]) > 0)
2272 ieee80211_stop_queue(il->hw, ac);
2273}
e7392364
SG
2274static inline void
2275il_wake_queue(struct il_priv *il, struct il_tx_queue *txq)
e94a4099
SG
2276{
2277 u8 queue = txq->swq_id;
2278 u8 ac = queue & 3;
2279 u8 hwq = (queue >> 2) & 0x1f;
2280
2281 if (test_and_clear_bit(hwq, il->queue_stopped))
42ce8943 2282 _il_wake_queue(il, ac);
e94a4099
SG
2283}
2284
e7392364
SG
2285static inline void
2286il_stop_queue(struct il_priv *il, struct il_tx_queue *txq)
e94a4099
SG
2287{
2288 u8 queue = txq->swq_id;
2289 u8 ac = queue & 3;
2290 u8 hwq = (queue >> 2) & 0x1f;
2291
2292 if (!test_and_set_bit(hwq, il->queue_stopped))
42ce8943 2293 _il_stop_queue(il, ac);
e94a4099
SG
2294}
2295
c6af8074
SG
2296static inline void
2297il_wake_queues_by_reason(struct il_priv *il, int reason)
2298{
2299 u8 ac;
2300
2301 if (test_and_clear_bit(reason, &il->stop_reason))
2302 for (ac = 0; ac < 4; ac++)
2303 _il_wake_queue(il, ac);
2304}
2305
2306static inline void
2307il_stop_queues_by_reason(struct il_priv *il, int reason)
2308{
2309 u8 ac;
2310
2311 if (!test_and_set_bit(reason, &il->stop_reason))
2312 for (ac = 0; ac < 4; ac++)
2313 _il_stop_queue(il, ac);
2314}
2315
e94a4099
SG
2316#ifdef ieee80211_stop_queue
2317#undef ieee80211_stop_queue
2318#endif
2319
2320#define ieee80211_stop_queue DO_NOT_USE_ieee80211_stop_queue
2321
2322#ifdef ieee80211_wake_queue
2323#undef ieee80211_wake_queue
2324#endif
2325
2326#define ieee80211_wake_queue DO_NOT_USE_ieee80211_wake_queue
2327
e7392364
SG
2328static inline void
2329il_disable_interrupts(struct il_priv *il)
e94a4099
SG
2330{
2331 clear_bit(S_INT_ENABLED, &il->status);
2332
2333 /* disable interrupts from uCode/NIC to host */
2334 _il_wr(il, CSR_INT_MASK, 0x00000000);
2335
2336 /* acknowledge/clear/reset any interrupts still pending
2337 * from uCode or flow handler (Rx/Tx DMA) */
2338 _il_wr(il, CSR_INT, 0xffffffff);
2339 _il_wr(il, CSR_FH_INT_STATUS, 0xffffffff);
e94a4099
SG
2340}
2341
e7392364
SG
2342static inline void
2343il_enable_rfkill_int(struct il_priv *il)
e94a4099 2344{
e94a4099
SG
2345 _il_wr(il, CSR_INT_MASK, CSR_INT_BIT_RF_KILL);
2346}
2347
e7392364
SG
2348static inline void
2349il_enable_interrupts(struct il_priv *il)
e94a4099 2350{
e94a4099
SG
2351 set_bit(S_INT_ENABLED, &il->status);
2352 _il_wr(il, CSR_INT_MASK, il->inta_mask);
2353}
2354
2355/**
2356 * il_beacon_time_mask_low - mask of lower 32 bit of beacon time
2357 * @il -- pointer to il_priv data structure
2358 * @tsf_bits -- number of bits need to shift for masking)
2359 */
e7392364
SG
2360static inline u32
2361il_beacon_time_mask_low(struct il_priv *il, u16 tsf_bits)
e94a4099
SG
2362{
2363 return (1 << tsf_bits) - 1;
2364}
2365
2366/**
2367 * il_beacon_time_mask_high - mask of higher 32 bit of beacon time
2368 * @il -- pointer to il_priv data structure
2369 * @tsf_bits -- number of bits need to shift for masking)
2370 */
e7392364
SG
2371static inline u32
2372il_beacon_time_mask_high(struct il_priv *il, u16 tsf_bits)
e94a4099
SG
2373{
2374 return ((1 << (32 - tsf_bits)) - 1) << tsf_bits;
2375}
2376
2377/**
2378 * struct il_rb_status - reseve buffer status host memory mapped FH registers
2379 *
2380 * @closed_rb_num [0:11] - Indicates the idx of the RB which was closed
2381 * @closed_fr_num [0:11] - Indicates the idx of the RX Frame which was closed
2382 * @finished_rb_num [0:11] - Indicates the idx of the current RB
2383 * in which the last frame was written to
2384 * @finished_fr_num [0:11] - Indicates the idx of the RX Frame
2385 * which was transferred
2386 */
2387struct il_rb_status {
2388 __le16 closed_rb_num;
2389 __le16 closed_fr_num;
2390 __le16 finished_rb_num;
2391 __le16 finished_fr_nam;
e7392364 2392 __le32 __unused; /* 3945 only */
e94a4099
SG
2393} __packed;
2394
d87c771f
SG
2395#define TFD_QUEUE_SIZE_MAX 256
2396#define TFD_QUEUE_SIZE_BC_DUP 64
e94a4099 2397#define TFD_QUEUE_BC_SIZE (TFD_QUEUE_SIZE_MAX + TFD_QUEUE_SIZE_BC_DUP)
d87c771f 2398#define IL_TX_DMA_MASK DMA_BIT_MASK(36)
e94a4099
SG
2399#define IL_NUM_OF_TBS 20
2400
e7392364
SG
2401static inline u8
2402il_get_dma_hi_addr(dma_addr_t addr)
e94a4099
SG
2403{
2404 return (sizeof(addr) > sizeof(u32) ? (addr >> 16) >> 16 : 0) & 0xF;
2405}
e7392364 2406
e94a4099
SG
2407/**
2408 * struct il_tfd_tb transmit buffer descriptor within transmit frame descriptor
2409 *
2410 * This structure contains dma address and length of transmission address
2411 *
1722f8e1
SG
2412 * @lo: low [31:0] portion of the dma address of TX buffer every even is
2413 * unaligned on 16 bit boundary
2414 * @hi_n_len: 0-3 [35:32] portion of dma
2415 * 4-15 length of the tx buffer
e94a4099
SG
2416 */
2417struct il_tfd_tb {
2418 __le32 lo;
2419 __le16 hi_n_len;
2420} __packed;
2421
2422/**
2423 * struct il_tfd
2424 *
2425 * Transmit Frame Descriptor (TFD)
2426 *
2427 * @ __reserved1[3] reserved
2428 * @ num_tbs 0-4 number of active tbs
2429 * 5 reserved
2430 * 6-7 padding (not used)
2431 * @ tbs[20] transmit frame buffer descriptors
1722f8e1 2432 * @ __pad padding
e94a4099
SG
2433 *
2434 * Each Tx queue uses a circular buffer of 256 TFDs stored in host DRAM.
2435 * Both driver and device share these circular buffers, each of which must be
2436 * contiguous 256 TFDs x 128 bytes-per-TFD = 32 KBytes
2437 *
2438 * Driver must indicate the physical address of the base of each
9a95b370 2439 * circular buffer via the FH49_MEM_CBBC_QUEUE registers.
e94a4099
SG
2440 *
2441 * Each TFD contains pointer/size information for up to 20 data buffers
2442 * in host DRAM. These buffers collectively contain the (one) frame described
2443 * by the TFD. Each buffer must be a single contiguous block of memory within
2444 * itself, but buffers may be scattered in host DRAM. Each buffer has max size
2445 * of (4K - 4). The concatenates all of a TFD's buffers into a single
2446 * Tx frame, up to 8 KBytes in size.
2447 *
2448 * A maximum of 255 (not 256!) TFDs may be on a queue waiting for Tx.
2449 */
2450struct il_tfd {
2451 u8 __reserved1[3];
2452 u8 num_tbs;
2453 struct il_tfd_tb tbs[IL_NUM_OF_TBS];
2454 __le32 __pad;
2455} __packed;
2456/* PCI registers */
2457#define PCI_CFG_RETRY_TIMEOUT 0x041
2458
3fbbf9a8 2459struct il_rate_info {
e7392364
SG
2460 u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
2461 u8 plcp_siso; /* uCode API: RATE_SISO_6M_PLCP, etc. */
2462 u8 plcp_mimo2; /* uCode API: RATE_MIMO2_6M_PLCP, etc. */
2463 u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
2464 u8 prev_ieee; /* previous rate in IEEE speeds */
2465 u8 next_ieee; /* next rate in IEEE speeds */
2466 u8 prev_rs; /* previous rate used in rs algo */
2467 u8 next_rs; /* next rate used in rs algo */
2468 u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
2469 u8 next_rs_tgg; /* next rate used in TGG rs algo */
3fbbf9a8
SG
2470};
2471
2472struct il3945_rate_info {
2473 u8 plcp; /* uCode API: RATE_6M_PLCP, etc. */
2474 u8 ieee; /* MAC header: RATE_6M_IEEE, etc. */
2475 u8 prev_ieee; /* previous rate in IEEE speeds */
2476 u8 next_ieee; /* next rate in IEEE speeds */
2477 u8 prev_rs; /* previous rate used in rs algo */
2478 u8 next_rs; /* next rate used in rs algo */
2479 u8 prev_rs_tgg; /* previous rate used in TGG rs algo */
2480 u8 next_rs_tgg; /* next rate used in TGG rs algo */
2481 u8 table_rs_idx; /* idx in rate scale table cmd */
2482 u8 prev_table_rs; /* prev in rate table cmd */
2483};
2484
3fbbf9a8
SG
2485/*
2486 * These serve as idxes into
2487 * struct il_rate_info il_rates[RATE_COUNT];
2488 */
2489enum {
2490 RATE_1M_IDX = 0,
2491 RATE_2M_IDX,
2492 RATE_5M_IDX,
2493 RATE_11M_IDX,
2494 RATE_6M_IDX,
2495 RATE_9M_IDX,
2496 RATE_12M_IDX,
2497 RATE_18M_IDX,
2498 RATE_24M_IDX,
2499 RATE_36M_IDX,
2500 RATE_48M_IDX,
2501 RATE_54M_IDX,
2502 RATE_60M_IDX,
2503 RATE_COUNT,
2504 RATE_COUNT_LEGACY = RATE_COUNT - 1, /* Excluding 60M */
2505 RATE_COUNT_3945 = RATE_COUNT - 1,
2506 RATE_INVM_IDX = RATE_COUNT,
2507 RATE_INVALID = RATE_COUNT,
2508};
2509
2510enum {
2511 RATE_6M_IDX_TBL = 0,
2512 RATE_9M_IDX_TBL,
2513 RATE_12M_IDX_TBL,
2514 RATE_18M_IDX_TBL,
2515 RATE_24M_IDX_TBL,
2516 RATE_36M_IDX_TBL,
2517 RATE_48M_IDX_TBL,
2518 RATE_54M_IDX_TBL,
2519 RATE_1M_IDX_TBL,
2520 RATE_2M_IDX_TBL,
2521 RATE_5M_IDX_TBL,
2522 RATE_11M_IDX_TBL,
2523 RATE_INVM_IDX_TBL = RATE_INVM_IDX - 1,
2524};
2525
2526enum {
2527 IL_FIRST_OFDM_RATE = RATE_6M_IDX,
2528 IL39_LAST_OFDM_RATE = RATE_54M_IDX,
2529 IL_LAST_OFDM_RATE = RATE_60M_IDX,
2530 IL_FIRST_CCK_RATE = RATE_1M_IDX,
2531 IL_LAST_CCK_RATE = RATE_11M_IDX,
2532};
2533
2534/* #define vs. enum to keep from defaulting to 'large integer' */
2535#define RATE_6M_MASK (1 << RATE_6M_IDX)
2536#define RATE_9M_MASK (1 << RATE_9M_IDX)
2537#define RATE_12M_MASK (1 << RATE_12M_IDX)
2538#define RATE_18M_MASK (1 << RATE_18M_IDX)
2539#define RATE_24M_MASK (1 << RATE_24M_IDX)
2540#define RATE_36M_MASK (1 << RATE_36M_IDX)
2541#define RATE_48M_MASK (1 << RATE_48M_IDX)
2542#define RATE_54M_MASK (1 << RATE_54M_IDX)
2543#define RATE_60M_MASK (1 << RATE_60M_IDX)
2544#define RATE_1M_MASK (1 << RATE_1M_IDX)
2545#define RATE_2M_MASK (1 << RATE_2M_IDX)
2546#define RATE_5M_MASK (1 << RATE_5M_IDX)
2547#define RATE_11M_MASK (1 << RATE_11M_IDX)
2548
2549/* uCode API values for legacy bit rates, both OFDM and CCK */
2550enum {
e7392364
SG
2551 RATE_6M_PLCP = 13,
2552 RATE_9M_PLCP = 15,
3fbbf9a8
SG
2553 RATE_12M_PLCP = 5,
2554 RATE_18M_PLCP = 7,
2555 RATE_24M_PLCP = 9,
2556 RATE_36M_PLCP = 11,
2557 RATE_48M_PLCP = 1,
2558 RATE_54M_PLCP = 3,
e7392364
SG
2559 RATE_60M_PLCP = 3, /*FIXME:RS:should be removed */
2560 RATE_1M_PLCP = 10,
2561 RATE_2M_PLCP = 20,
2562 RATE_5M_PLCP = 55,
3fbbf9a8 2563 RATE_11M_PLCP = 110,
e7392364 2564 /*FIXME:RS:add RATE_LEGACY_INVM_PLCP = 0, */
3fbbf9a8
SG
2565};
2566
2567/* uCode API values for OFDM high-throughput (HT) bit rates */
2568enum {
2569 RATE_SISO_6M_PLCP = 0,
2570 RATE_SISO_12M_PLCP = 1,
2571 RATE_SISO_18M_PLCP = 2,
2572 RATE_SISO_24M_PLCP = 3,
2573 RATE_SISO_36M_PLCP = 4,
2574 RATE_SISO_48M_PLCP = 5,
2575 RATE_SISO_54M_PLCP = 6,
2576 RATE_SISO_60M_PLCP = 7,
e7392364 2577 RATE_MIMO2_6M_PLCP = 0x8,
3fbbf9a8
SG
2578 RATE_MIMO2_12M_PLCP = 0x9,
2579 RATE_MIMO2_18M_PLCP = 0xa,
2580 RATE_MIMO2_24M_PLCP = 0xb,
2581 RATE_MIMO2_36M_PLCP = 0xc,
2582 RATE_MIMO2_48M_PLCP = 0xd,
2583 RATE_MIMO2_54M_PLCP = 0xe,
2584 RATE_MIMO2_60M_PLCP = 0xf,
2585 RATE_SISO_INVM_PLCP,
2586 RATE_MIMO2_INVM_PLCP = RATE_SISO_INVM_PLCP,
2587};
2588
2589/* MAC header values for bit rates */
2590enum {
e7392364
SG
2591 RATE_6M_IEEE = 12,
2592 RATE_9M_IEEE = 18,
3fbbf9a8
SG
2593 RATE_12M_IEEE = 24,
2594 RATE_18M_IEEE = 36,
2595 RATE_24M_IEEE = 48,
2596 RATE_36M_IEEE = 72,
2597 RATE_48M_IEEE = 96,
2598 RATE_54M_IEEE = 108,
2599 RATE_60M_IEEE = 120,
e7392364
SG
2600 RATE_1M_IEEE = 2,
2601 RATE_2M_IEEE = 4,
2602 RATE_5M_IEEE = 11,
3fbbf9a8
SG
2603 RATE_11M_IEEE = 22,
2604};
2605
2606#define IL_CCK_BASIC_RATES_MASK \
2607 (RATE_1M_MASK | \
2608 RATE_2M_MASK)
2609
2610#define IL_CCK_RATES_MASK \
2611 (IL_CCK_BASIC_RATES_MASK | \
2612 RATE_5M_MASK | \
2613 RATE_11M_MASK)
2614
2615#define IL_OFDM_BASIC_RATES_MASK \
2616 (RATE_6M_MASK | \
2617 RATE_12M_MASK | \
2618 RATE_24M_MASK)
2619
2620#define IL_OFDM_RATES_MASK \
2621 (IL_OFDM_BASIC_RATES_MASK | \
2622 RATE_9M_MASK | \
2623 RATE_18M_MASK | \
2624 RATE_36M_MASK | \
2625 RATE_48M_MASK | \
2626 RATE_54M_MASK)
2627
2628#define IL_BASIC_RATES_MASK \
2629 (IL_OFDM_BASIC_RATES_MASK | \
2630 IL_CCK_BASIC_RATES_MASK)
2631
2632#define RATES_MASK ((1 << RATE_COUNT) - 1)
2633#define RATES_MASK_3945 ((1 << RATE_COUNT_3945) - 1)
2634
2635#define IL_INVALID_VALUE -1
2636
2637#define IL_MIN_RSSI_VAL -100
2638#define IL_MAX_RSSI_VAL 0
2639
2640/* These values specify how many Tx frame attempts before
2641 * searching for a new modulation mode */
2642#define IL_LEGACY_FAILURE_LIMIT 160
2643#define IL_LEGACY_SUCCESS_LIMIT 480
2644#define IL_LEGACY_TBL_COUNT 160
2645
2646#define IL_NONE_LEGACY_FAILURE_LIMIT 400
2647#define IL_NONE_LEGACY_SUCCESS_LIMIT 4500
2648#define IL_NONE_LEGACY_TBL_COUNT 1500
2649
2650/* Success ratio (ACKed / attempted tx frames) values (perfect is 128 * 100) */
2651#define IL_RS_GOOD_RATIO 12800 /* 100% */
2652#define RATE_SCALE_SWITCH 10880 /* 85% */
2653#define RATE_HIGH_TH 10880 /* 85% */
2654#define RATE_INCREASE_TH 6400 /* 50% */
2655#define RATE_DECREASE_TH 1920 /* 15% */
2656
2657/* possible actions when in legacy mode */
2658#define IL_LEGACY_SWITCH_ANTENNA1 0
2659#define IL_LEGACY_SWITCH_ANTENNA2 1
2660#define IL_LEGACY_SWITCH_SISO 2
2661#define IL_LEGACY_SWITCH_MIMO2_AB 3
2662#define IL_LEGACY_SWITCH_MIMO2_AC 4
2663#define IL_LEGACY_SWITCH_MIMO2_BC 5
2664
2665/* possible actions when in siso mode */
2666#define IL_SISO_SWITCH_ANTENNA1 0
2667#define IL_SISO_SWITCH_ANTENNA2 1
2668#define IL_SISO_SWITCH_MIMO2_AB 2
2669#define IL_SISO_SWITCH_MIMO2_AC 3
2670#define IL_SISO_SWITCH_MIMO2_BC 4
2671#define IL_SISO_SWITCH_GI 5
2672
2673/* possible actions when in mimo mode */
2674#define IL_MIMO2_SWITCH_ANTENNA1 0
2675#define IL_MIMO2_SWITCH_ANTENNA2 1
2676#define IL_MIMO2_SWITCH_SISO_A 2
2677#define IL_MIMO2_SWITCH_SISO_B 3
2678#define IL_MIMO2_SWITCH_SISO_C 4
2679#define IL_MIMO2_SWITCH_GI 5
2680
2681#define IL_MAX_SEARCH IL_MIMO2_SWITCH_GI
2682
2683#define IL_ACTION_LIMIT 3 /* # possible actions */
2684
2685#define LQ_SIZE 2 /* 2 mode tables: "Active" and "Search" */
2686
2687/* load per tid defines for A-MPDU activation */
2688#define IL_AGG_TPT_THREHOLD 0
2689#define IL_AGG_LOAD_THRESHOLD 10
2690#define IL_AGG_ALL_TID 0xff
2691#define TID_QUEUE_CELL_SPACING 50 /*mS */
2692#define TID_QUEUE_MAX_SIZE 20
2693#define TID_ROUND_VALUE 5 /* mS */
2694#define TID_MAX_LOAD_COUNT 8
2695
2696#define TID_MAX_TIME_DIFF ((TID_QUEUE_MAX_SIZE - 1) * TID_QUEUE_CELL_SPACING)
2697#define TIME_WRAP_AROUND(x, y) (((y) > (x)) ? (y) - (x) : (0-(x)) + (y))
2698
2699extern const struct il_rate_info il_rates[RATE_COUNT];
2700
2701enum il_table_type {
2702 LQ_NONE,
e7392364 2703 LQ_G, /* legacy types */
3fbbf9a8 2704 LQ_A,
e7392364 2705 LQ_SISO, /* high-throughput types */
3fbbf9a8
SG
2706 LQ_MIMO2,
2707 LQ_MAX,
2708};
2709
2710#define is_legacy(tbl) ((tbl) == LQ_G || (tbl) == LQ_A)
2711#define is_siso(tbl) ((tbl) == LQ_SISO)
2712#define is_mimo2(tbl) ((tbl) == LQ_MIMO2)
2713#define is_mimo(tbl) (is_mimo2(tbl))
2714#define is_Ht(tbl) (is_siso(tbl) || is_mimo(tbl))
2715#define is_a_band(tbl) ((tbl) == LQ_A)
2716#define is_g_and(tbl) ((tbl) == LQ_G)
2717
2718#define ANT_NONE 0x0
2719#define ANT_A BIT(0)
2720#define ANT_B BIT(1)
2721#define ANT_AB (ANT_A | ANT_B)
2722#define ANT_C BIT(2)
2723#define ANT_AC (ANT_A | ANT_C)
2724#define ANT_BC (ANT_B | ANT_C)
2725#define ANT_ABC (ANT_AB | ANT_C)
2726
2727#define IL_MAX_MCS_DISPLAY_SIZE 12
2728
2729struct il_rate_mcs_info {
e7392364
SG
2730 char mbps[IL_MAX_MCS_DISPLAY_SIZE];
2731 char mcs[IL_MAX_MCS_DISPLAY_SIZE];
3fbbf9a8
SG
2732};
2733
2734/**
2735 * struct il_rate_scale_data -- tx success history for one rate
2736 */
2737struct il_rate_scale_data {
2738 u64 data; /* bitmap of successful frames */
2739 s32 success_counter; /* number of frames successful */
2740 s32 success_ratio; /* per-cent * 128 */
2741 s32 counter; /* number of frames attempted */
2742 s32 average_tpt; /* success ratio * expected throughput */
2743 unsigned long stamp;
2744};
2745
2746/**
2747 * struct il_scale_tbl_info -- tx params and success history for all rates
2748 *
2749 * There are two of these in struct il_lq_sta,
2750 * one for "active", and one for "search".
2751 */
2752struct il_scale_tbl_info {
2753 enum il_table_type lq_type;
2754 u8 ant_type;
e7392364
SG
2755 u8 is_SGI; /* 1 = short guard interval */
2756 u8 is_ht40; /* 1 = 40 MHz channel width */
2757 u8 is_dup; /* 1 = duplicated data streams */
2758 u8 action; /* change modulation; IL_[LEGACY/SISO/MIMO]_SWITCH_* */
2759 u8 max_search; /* maximun number of tables we can search */
3fbbf9a8 2760 s32 *expected_tpt; /* throughput metrics; expected_tpt_G, etc. */
e7392364
SG
2761 u32 current_rate; /* rate_n_flags, uCode API format */
2762 struct il_rate_scale_data win[RATE_COUNT]; /* rate histories */
3fbbf9a8
SG
2763};
2764
2765struct il_traffic_load {
2766 unsigned long time_stamp; /* age of the oldest stats */
e7392364 2767 u32 packet_count[TID_QUEUE_MAX_SIZE]; /* packet count in this time
3fbbf9a8 2768 * slice */
e7392364
SG
2769 u32 total; /* total num of packets during the
2770 * last TID_MAX_TIME_DIFF */
2771 u8 queue_count; /* number of queues that has
2772 * been used since the last cleanup */
2773 u8 head; /* start of the circular buffer */
3fbbf9a8
SG
2774};
2775
2776/**
2777 * struct il_lq_sta -- driver's rate scaling ilate structure
2778 *
2779 * Pointer to this gets passed back and forth between driver and mac80211.
2780 */
2781struct il_lq_sta {
2782 u8 active_tbl; /* idx of active table, range 0-1 */
2783 u8 enable_counter; /* indicates HT mode */
2784 u8 stay_in_tbl; /* 1: disallow, 0: allow search for new mode */
2785 u8 search_better_tbl; /* 1: currently trying alternate mode */
2786 s32 last_tpt;
2787
2788 /* The following determine when to search for a new mode */
2789 u32 table_count_limit;
2790 u32 max_failure_limit; /* # failed frames before new search */
2791 u32 max_success_limit; /* # successful frames before new search */
2792 u32 table_count;
2793 u32 total_failed; /* total failed frames, any/all rates */
2794 u32 total_success; /* total successful frames, any/all rates */
2795 u64 flush_timer; /* time staying in mode before new search */
2796
2797 u8 action_counter; /* # mode-switch actions tried */
2798 u8 is_green;
2799 u8 is_dup;
2800 enum ieee80211_band band;
2801
2802 /* The following are bitmaps of rates; RATE_6M_MASK, etc. */
2803 u32 supp_rates;
2804 u16 active_legacy_rate;
2805 u16 active_siso_rate;
2806 u16 active_mimo2_rate;
e7392364 2807 s8 max_rate_idx; /* Max rate set by user */
3fbbf9a8
SG
2808 u8 missed_rate_counter;
2809
2810 struct il_link_quality_cmd lq;
e7392364 2811 struct il_scale_tbl_info lq_info[LQ_SIZE]; /* "active", "search" */
3fbbf9a8
SG
2812 struct il_traffic_load load[TID_MAX_LOAD_COUNT];
2813 u8 tx_agg_tid_en;
2814#ifdef CONFIG_MAC80211_DEBUGFS
2815 struct dentry *rs_sta_dbgfs_scale_table_file;
2816 struct dentry *rs_sta_dbgfs_stats_table_file;
2817 struct dentry *rs_sta_dbgfs_rate_scale_data_file;
2818 struct dentry *rs_sta_dbgfs_tx_agg_tid_en_file;
2819 u32 dbg_fixed_rate;
2820#endif
2821 struct il_priv *drv;
2822
2823 /* used to be in sta_info */
2824 int last_txrate_idx;
2825 /* last tx rate_n_flags */
2826 u32 last_rate_n_flags;
2827 /* packets destined for this STA are aggregated */
2828 u8 is_agg;
2829};
2830
2831/*
2832 * il_station_priv: Driver's ilate station information
2833 *
2834 * When mac80211 creates a station it reserves some space (hw->sta_data_size)
2835 * in the structure for use by driver. This structure is places in that
2836 * space.
2837 *
2838 * The common struct MUST be first because it is shared between
2839 * 3945 and 4965!
2840 */
2841struct il_station_priv {
2842 struct il_station_priv_common common;
2843 struct il_lq_sta lq_sta;
2844 atomic_t pending_frames;
2845 bool client;
2846 bool asleep;
2847};
2848
e7392364
SG
2849static inline u8
2850il4965_num_of_ant(u8 m)
3fbbf9a8
SG
2851{
2852 return !!(m & ANT_A) + !!(m & ANT_B) + !!(m & ANT_C);
2853}
2854
e7392364
SG
2855static inline u8
2856il4965_first_antenna(u8 mask)
3fbbf9a8
SG
2857{
2858 if (mask & ANT_A)
2859 return ANT_A;
2860 if (mask & ANT_B)
2861 return ANT_B;
2862 return ANT_C;
2863}
2864
3fbbf9a8
SG
2865/**
2866 * il3945_rate_scale_init - Initialize the rate scale table based on assoc info
2867 *
2868 * The specific throughput table used is based on the type of network
2869 * the associated with, including A, B, G, and G w/ TGG protection
2870 */
2871extern void il3945_rate_scale_init(struct ieee80211_hw *hw, s32 sta_id);
2872
2873/* Initialize station's rate scaling information after adding station */
e7392364
SG
2874extern void il4965_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
2875 u8 sta_id);
2876extern void il3945_rs_rate_init(struct il_priv *il, struct ieee80211_sta *sta,
2877 u8 sta_id);
3fbbf9a8
SG
2878
2879/**
2880 * il_rate_control_register - Register the rate control algorithm callbacks
2881 *
2882 * Since the rate control algorithm is hardware specific, there is no need
2883 * or reason to place it as a stand alone module. The driver can call
2884 * il_rate_control_register in order to register the rate control callbacks
2885 * with the mac80211 subsystem. This should be performed prior to calling
2886 * ieee80211_register_hw
2887 *
2888 */
2889extern int il4965_rate_control_register(void);
2890extern int il3945_rate_control_register(void);
2891
2892/**
2893 * il_rate_control_unregister - Unregister the rate control callbacks
2894 *
2895 * This should be called after calling ieee80211_unregister_hw, but before
2896 * the driver is unloaded.
2897 */
2898extern void il4965_rate_control_unregister(void);
2899extern void il3945_rate_control_unregister(void);
2900
99412002
SG
2901extern int il_power_update_mode(struct il_priv *il, bool force);
2902extern void il_power_initialize(struct il_priv *il);
47ef694d 2903
f02579e3
SG
2904extern u32 il_debug_level;
2905
2906#ifdef CONFIG_IWLEGACY_DEBUG
2907/*
2908 * il_get_debug_level: Return active debug level for device
2909 *
2910 * Using sysfs it is possible to set per device debug level. This debug
2911 * level will be used if set, otherwise the global debug level which can be
2912 * set via module parameter is used.
2913 */
e7392364
SG
2914static inline u32
2915il_get_debug_level(struct il_priv *il)
f02579e3
SG
2916{
2917 if (il->debug_level)
2918 return il->debug_level;
2919 else
2920 return il_debug_level;
2921}
2922#else
e7392364
SG
2923static inline u32
2924il_get_debug_level(struct il_priv *il)
f02579e3
SG
2925{
2926 return il_debug_level;
2927}
2928#endif
2929
2930#define il_print_hex_error(il, p, len) \
2931do { \
2932 print_hex_dump(KERN_ERR, "iwl data: ", \
2933 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
2934} while (0)
2935
2936#ifdef CONFIG_IWLEGACY_DEBUG
2937#define IL_DBG(level, fmt, args...) \
2938do { \
2939 if (il_get_debug_level(il) & level) \
6a4b09f8
JP
2940 dev_err(&il->hw->wiphy->dev, "%c %s " fmt, \
2941 in_interrupt() ? 'I' : 'U', __func__ , ##args); \
f02579e3
SG
2942} while (0)
2943
1722f8e1 2944#define il_print_hex_dump(il, level, p, len) \
f02579e3
SG
2945do { \
2946 if (il_get_debug_level(il) & level) \
2947 print_hex_dump(KERN_DEBUG, "iwl data: ", \
2948 DUMP_PREFIX_OFFSET, 16, 1, p, len, 1); \
2949} while (0)
2950
2951#else
2952#define IL_DBG(level, fmt, args...)
e7392364
SG
2953static inline void
2954il_print_hex_dump(struct il_priv *il, int level, const void *p, u32 len)
2955{
2956}
2957#endif /* CONFIG_IWLEGACY_DEBUG */
f02579e3
SG
2958
2959#ifdef CONFIG_IWLEGACY_DEBUGFS
2960int il_dbgfs_register(struct il_priv *il, const char *name);
2961void il_dbgfs_unregister(struct il_priv *il);
2962#else
2963static inline int
2964il_dbgfs_register(struct il_priv *il, const char *name)
2965{
2966 return 0;
2967}
e7392364
SG
2968
2969static inline void
2970il_dbgfs_unregister(struct il_priv *il)
f02579e3
SG
2971{
2972}
e7392364 2973#endif /* CONFIG_IWLEGACY_DEBUGFS */
f02579e3
SG
2974
2975/*
2976 * To use the debug system:
2977 *
2978 * If you are defining a new debug classification, simply add it to the #define
2979 * list here in the form of
2980 *
2981 * #define IL_DL_xxxx VALUE
2982 *
2983 * where xxxx should be the name of the classification (for example, WEP).
2984 *
2985 * You then need to either add a IL_xxxx_DEBUG() macro definition for your
2986 * classification, or use IL_DBG(IL_DL_xxxx, ...) whenever you want
2987 * to send output to that classification.
2988 *
2989 * The active debug levels can be accessed via files
2990 *
1722f8e1 2991 * /sys/module/iwl4965/parameters/debug
f02579e3 2992 * /sys/module/iwl3945/parameters/debug
1722f8e1 2993 * /sys/class/net/wlan0/device/debug_level
f02579e3
SG
2994 *
2995 * when CONFIG_IWLEGACY_DEBUG=y.
2996 */
2997
2998/* 0x0000000F - 0x00000001 */
2999#define IL_DL_INFO (1 << 0)
3000#define IL_DL_MAC80211 (1 << 1)
3001#define IL_DL_HCMD (1 << 2)
3002#define IL_DL_STATE (1 << 3)
3003/* 0x000000F0 - 0x00000010 */
3004#define IL_DL_MACDUMP (1 << 4)
3005#define IL_DL_HCMD_DUMP (1 << 5)
3006#define IL_DL_EEPROM (1 << 6)
3007#define IL_DL_RADIO (1 << 7)
3008/* 0x00000F00 - 0x00000100 */
3009#define IL_DL_POWER (1 << 8)
3010#define IL_DL_TEMP (1 << 9)
3011#define IL_DL_NOTIF (1 << 10)
3012#define IL_DL_SCAN (1 << 11)
3013/* 0x0000F000 - 0x00001000 */
3014#define IL_DL_ASSOC (1 << 12)
3015#define IL_DL_DROP (1 << 13)
3016#define IL_DL_TXPOWER (1 << 14)
3017#define IL_DL_AP (1 << 15)
3018/* 0x000F0000 - 0x00010000 */
3019#define IL_DL_FW (1 << 16)
3020#define IL_DL_RF_KILL (1 << 17)
3021#define IL_DL_FW_ERRORS (1 << 18)
3022#define IL_DL_LED (1 << 19)
3023/* 0x00F00000 - 0x00100000 */
3024#define IL_DL_RATE (1 << 20)
3025#define IL_DL_CALIB (1 << 21)
3026#define IL_DL_WEP (1 << 22)
3027#define IL_DL_TX (1 << 23)
3028/* 0x0F000000 - 0x01000000 */
3029#define IL_DL_RX (1 << 24)
3030#define IL_DL_ISR (1 << 25)
3031#define IL_DL_HT (1 << 26)
3032/* 0xF0000000 - 0x10000000 */
3033#define IL_DL_11H (1 << 28)
3034#define IL_DL_STATS (1 << 29)
3035#define IL_DL_TX_REPLY (1 << 30)
3036#define IL_DL_QOS (1 << 31)
3037
3038#define D_INFO(f, a...) IL_DBG(IL_DL_INFO, f, ## a)
3039#define D_MAC80211(f, a...) IL_DBG(IL_DL_MAC80211, f, ## a)
3040#define D_MACDUMP(f, a...) IL_DBG(IL_DL_MACDUMP, f, ## a)
3041#define D_TEMP(f, a...) IL_DBG(IL_DL_TEMP, f, ## a)
3042#define D_SCAN(f, a...) IL_DBG(IL_DL_SCAN, f, ## a)
3043#define D_RX(f, a...) IL_DBG(IL_DL_RX, f, ## a)
3044#define D_TX(f, a...) IL_DBG(IL_DL_TX, f, ## a)
3045#define D_ISR(f, a...) IL_DBG(IL_DL_ISR, f, ## a)
3046#define D_LED(f, a...) IL_DBG(IL_DL_LED, f, ## a)
3047#define D_WEP(f, a...) IL_DBG(IL_DL_WEP, f, ## a)
3048#define D_HC(f, a...) IL_DBG(IL_DL_HCMD, f, ## a)
3049#define D_HC_DUMP(f, a...) IL_DBG(IL_DL_HCMD_DUMP, f, ## a)
3050#define D_EEPROM(f, a...) IL_DBG(IL_DL_EEPROM, f, ## a)
3051#define D_CALIB(f, a...) IL_DBG(IL_DL_CALIB, f, ## a)
3052#define D_FW(f, a...) IL_DBG(IL_DL_FW, f, ## a)
3053#define D_RF_KILL(f, a...) IL_DBG(IL_DL_RF_KILL, f, ## a)
3054#define D_DROP(f, a...) IL_DBG(IL_DL_DROP, f, ## a)
3055#define D_AP(f, a...) IL_DBG(IL_DL_AP, f, ## a)
3056#define D_TXPOWER(f, a...) IL_DBG(IL_DL_TXPOWER, f, ## a)
3057#define D_RATE(f, a...) IL_DBG(IL_DL_RATE, f, ## a)
3058#define D_NOTIF(f, a...) IL_DBG(IL_DL_NOTIF, f, ## a)
3059#define D_ASSOC(f, a...) IL_DBG(IL_DL_ASSOC, f, ## a)
3060#define D_HT(f, a...) IL_DBG(IL_DL_HT, f, ## a)
3061#define D_STATS(f, a...) IL_DBG(IL_DL_STATS, f, ## a)
3062#define D_TX_REPLY(f, a...) IL_DBG(IL_DL_TX_REPLY, f, ## a)
3063#define D_QOS(f, a...) IL_DBG(IL_DL_QOS, f, ## a)
3064#define D_RADIO(f, a...) IL_DBG(IL_DL_RADIO, f, ## a)
3065#define D_POWER(f, a...) IL_DBG(IL_DL_POWER, f, ## a)
3066#define D_11H(f, a...) IL_DBG(IL_DL_11H, f, ## a)
3067
e2ebc833 3068#endif /* __il_core_h__ */
This page took 0.39594 seconds and 5 git commands to generate.