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