blob: c5864903f5ef30096a6c1474608f4945d6a3cc28 [file] [log] [blame]
Zhu Yib481de92007-09-25 17:54:57 -07001/******************************************************************************
2 *
Reinette Chatreeb7ae892008-03-11 16:17:17 -07003 * Copyright(c) 2003 - 2008 Intel Corporation. All rights reserved.
Zhu Yib481de92007-09-25 17:54:57 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * James P. Ketrenos <ipw2100-admin@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/version.h>
30#include <linux/init.h>
31#include <linux/pci.h>
32#include <linux/dma-mapping.h>
33#include <linux/delay.h>
34#include <linux/skbuff.h>
35#include <linux/netdevice.h>
36#include <linux/wireless.h>
37#include <net/mac80211.h>
Zhu Yib481de92007-09-25 17:54:57 -070038#include <linux/etherdevice.h>
Zhu Yi12342c42007-12-20 11:27:32 +080039#include <asm/unaligned.h>
Zhu Yib481de92007-09-25 17:54:57 -070040
Assaf Krauss6bc913b2008-03-11 16:17:18 -070041#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070042#include "iwl-dev.h"
Tomas Winklerfee12472008-04-03 16:05:21 -070043#include "iwl-core.h"
Tomas Winkler3395f6e2008-03-25 16:33:37 -070044#include "iwl-io.h"
Zhu Yib481de92007-09-25 17:54:57 -070045#include "iwl-helpers.h"
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -070046#include "iwl-calib.h"
Zhu Yib481de92007-09-25 17:54:57 -070047
Assaf Krauss1ea87392008-03-18 14:57:50 -070048/* module parameters */
49static struct iwl_mod_params iwl4965_mod_params = {
Emmanuel Grumbach038669e2008-04-23 17:15:04 -070050 .num_of_queues = IWL49_NUM_QUEUES,
Assaf Krauss1ea87392008-03-18 14:57:50 -070051 .enable_qos = 1,
52 .amsdu_size_8K = 1,
Ester Kummer3a1081e2008-05-06 11:05:14 +080053 .restart_fw = 1,
Assaf Krauss1ea87392008-03-18 14:57:50 -070054 /* the rest are 0 by default */
55};
56
Ron Rindjunskyfe01b472008-01-28 14:07:24 +020057#ifdef CONFIG_IWL4965_HT
58
59static const u16 default_tid_to_tx_fifo[] = {
60 IWL_TX_FIFO_AC1,
61 IWL_TX_FIFO_AC0,
62 IWL_TX_FIFO_AC0,
63 IWL_TX_FIFO_AC1,
64 IWL_TX_FIFO_AC2,
65 IWL_TX_FIFO_AC2,
66 IWL_TX_FIFO_AC3,
67 IWL_TX_FIFO_AC3,
68 IWL_TX_FIFO_NONE,
69 IWL_TX_FIFO_NONE,
70 IWL_TX_FIFO_NONE,
71 IWL_TX_FIFO_NONE,
72 IWL_TX_FIFO_NONE,
73 IWL_TX_FIFO_NONE,
74 IWL_TX_FIFO_NONE,
75 IWL_TX_FIFO_NONE,
76 IWL_TX_FIFO_AC3
77};
78
79#endif /*CONFIG_IWL4965_HT */
80
Tomas Winkler57aab752008-04-14 21:16:03 -070081/* check contents of special bootstrap uCode SRAM */
82static int iwl4965_verify_bsm(struct iwl_priv *priv)
83{
84 __le32 *image = priv->ucode_boot.v_addr;
85 u32 len = priv->ucode_boot.len;
86 u32 reg;
87 u32 val;
88
89 IWL_DEBUG_INFO("Begin verify bsm\n");
90
91 /* verify BSM SRAM contents */
92 val = iwl_read_prph(priv, BSM_WR_DWCOUNT_REG);
93 for (reg = BSM_SRAM_LOWER_BOUND;
94 reg < BSM_SRAM_LOWER_BOUND + len;
95 reg += sizeof(u32), image++) {
96 val = iwl_read_prph(priv, reg);
97 if (val != le32_to_cpu(*image)) {
98 IWL_ERROR("BSM uCode verification failed at "
99 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
100 BSM_SRAM_LOWER_BOUND,
101 reg - BSM_SRAM_LOWER_BOUND, len,
102 val, le32_to_cpu(*image));
103 return -EIO;
104 }
105 }
106
107 IWL_DEBUG_INFO("BSM bootstrap uCode image OK\n");
108
109 return 0;
110}
111
112/**
113 * iwl4965_load_bsm - Load bootstrap instructions
114 *
115 * BSM operation:
116 *
117 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
118 * in special SRAM that does not power down during RFKILL. When powering back
119 * up after power-saving sleeps (or during initial uCode load), the BSM loads
120 * the bootstrap program into the on-board processor, and starts it.
121 *
122 * The bootstrap program loads (via DMA) instructions and data for a new
123 * program from host DRAM locations indicated by the host driver in the
124 * BSM_DRAM_* registers. Once the new program is loaded, it starts
125 * automatically.
126 *
127 * When initializing the NIC, the host driver points the BSM to the
128 * "initialize" uCode image. This uCode sets up some internal data, then
129 * notifies host via "initialize alive" that it is complete.
130 *
131 * The host then replaces the BSM_DRAM_* pointer values to point to the
132 * normal runtime uCode instructions and a backup uCode data cache buffer
133 * (filled initially with starting data values for the on-board processor),
134 * then triggers the "initialize" uCode to load and launch the runtime uCode,
135 * which begins normal operation.
136 *
137 * When doing a power-save shutdown, runtime uCode saves data SRAM into
138 * the backup data cache in DRAM before SRAM is powered down.
139 *
140 * When powering back up, the BSM loads the bootstrap program. This reloads
141 * the runtime uCode instructions and the backup data cache into SRAM,
142 * and re-launches the runtime uCode from where it left off.
143 */
144static int iwl4965_load_bsm(struct iwl_priv *priv)
145{
146 __le32 *image = priv->ucode_boot.v_addr;
147 u32 len = priv->ucode_boot.len;
148 dma_addr_t pinst;
149 dma_addr_t pdata;
150 u32 inst_len;
151 u32 data_len;
152 int i;
153 u32 done;
154 u32 reg_offset;
155 int ret;
156
157 IWL_DEBUG_INFO("Begin load bsm\n");
158
159 /* make sure bootstrap program is no larger than BSM's SRAM size */
160 if (len > IWL_MAX_BSM_SIZE)
161 return -EINVAL;
162
163 /* Tell bootstrap uCode where to find the "Initialize" uCode
164 * in host DRAM ... host DRAM physical address bits 35:4 for 4965.
Tomas Winkler2d878892008-05-29 16:34:51 +0800165 * NOTE: iwl_init_alive_start() will replace these values,
Tomas Winkler57aab752008-04-14 21:16:03 -0700166 * after the "initialize" uCode has run, to point to
Tomas Winkler2d878892008-05-29 16:34:51 +0800167 * runtime/protocol instructions and backup data cache.
168 */
Tomas Winkler57aab752008-04-14 21:16:03 -0700169 pinst = priv->ucode_init.p_addr >> 4;
170 pdata = priv->ucode_init_data.p_addr >> 4;
171 inst_len = priv->ucode_init.len;
172 data_len = priv->ucode_init_data.len;
173
174 ret = iwl_grab_nic_access(priv);
175 if (ret)
176 return ret;
177
178 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
179 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
180 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
181 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
182
183 /* Fill BSM memory with bootstrap instructions */
184 for (reg_offset = BSM_SRAM_LOWER_BOUND;
185 reg_offset < BSM_SRAM_LOWER_BOUND + len;
186 reg_offset += sizeof(u32), image++)
187 _iwl_write_prph(priv, reg_offset, le32_to_cpu(*image));
188
189 ret = iwl4965_verify_bsm(priv);
190 if (ret) {
191 iwl_release_nic_access(priv);
192 return ret;
193 }
194
195 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
196 iwl_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
197 iwl_write_prph(priv, BSM_WR_MEM_DST_REG, RTC_INST_LOWER_BOUND);
198 iwl_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
199
200 /* Load bootstrap code into instruction SRAM now,
201 * to prepare to load "initialize" uCode */
202 iwl_write_prph(priv, BSM_WR_CTRL_REG, BSM_WR_CTRL_REG_BIT_START);
203
204 /* Wait for load of bootstrap uCode to finish */
205 for (i = 0; i < 100; i++) {
206 done = iwl_read_prph(priv, BSM_WR_CTRL_REG);
207 if (!(done & BSM_WR_CTRL_REG_BIT_START))
208 break;
209 udelay(10);
210 }
211 if (i < 100)
212 IWL_DEBUG_INFO("BSM write complete, poll %d iterations\n", i);
213 else {
214 IWL_ERROR("BSM write did not complete!\n");
215 return -EIO;
216 }
217
218 /* Enable future boot loads whenever power management unit triggers it
219 * (e.g. when powering back up after power-save shutdown) */
220 iwl_write_prph(priv, BSM_WR_CTRL_REG, BSM_WR_CTRL_REG_BIT_START_EN);
221
222 iwl_release_nic_access(priv);
223
Tomas Winkler2d878892008-05-29 16:34:51 +0800224 priv->ucode_type = UCODE_INIT;
225
Tomas Winkler57aab752008-04-14 21:16:03 -0700226 return 0;
227}
228
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +0800229/**
230 * iwl4965_set_ucode_ptrs - Set uCode address location
231 *
232 * Tell initialization uCode where to find runtime uCode.
233 *
234 * BSM registers initially contain pointers to initialization uCode.
235 * We need to replace them to load runtime uCode inst and data,
236 * and to save runtime data when powering down.
237 */
238static int iwl4965_set_ucode_ptrs(struct iwl_priv *priv)
239{
240 dma_addr_t pinst;
241 dma_addr_t pdata;
242 unsigned long flags;
243 int ret = 0;
244
245 /* bits 35:4 for 4965 */
246 pinst = priv->ucode_code.p_addr >> 4;
247 pdata = priv->ucode_data_backup.p_addr >> 4;
248
249 spin_lock_irqsave(&priv->lock, flags);
250 ret = iwl_grab_nic_access(priv);
251 if (ret) {
252 spin_unlock_irqrestore(&priv->lock, flags);
253 return ret;
254 }
255
256 /* Tell bootstrap uCode where to find image to load */
257 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
258 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
259 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
260 priv->ucode_data.len);
261
262 /* Inst bytecount must be last to set up, bit 31 signals uCode
263 * that all new ptr/size info is in place */
264 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
265 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
266 iwl_release_nic_access(priv);
267
268 spin_unlock_irqrestore(&priv->lock, flags);
269
270 IWL_DEBUG_INFO("Runtime uCode pointers are set.\n");
271
Tomas Winkler2d878892008-05-29 16:34:51 +0800272 priv->ucode_type = UCODE_RT;
273
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +0800274 return ret;
275}
276
277/**
278 * iwl4965_init_alive_start - Called after REPLY_ALIVE notification received
279 *
280 * Called after REPLY_ALIVE notification received from "initialize" uCode.
281 *
282 * The 4965 "initialize" ALIVE reply contains calibration data for:
283 * Voltage, temperature, and MIMO tx gain correction, now stored in priv
284 * (3945 does not contain this data).
285 *
286 * Tell "initialize" uCode to go ahead and load the runtime uCode.
287*/
288static void iwl4965_init_alive_start(struct iwl_priv *priv)
289{
290 /* Check alive response for "valid" sign from uCode */
291 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
292 /* We had an error bringing up the hardware, so take it
293 * all the way back down so we can try again */
294 IWL_DEBUG_INFO("Initialize Alive failed.\n");
295 goto restart;
296 }
297
298 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
299 * This is a paranoid check, because we would not have gotten the
300 * "initialize" alive if code weren't properly loaded. */
301 if (iwl_verify_ucode(priv)) {
302 /* Runtime instruction load was bad;
303 * take it all the way back down so we can try again */
304 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
305 goto restart;
306 }
307
308 /* Calculate temperature */
309 priv->temperature = iwl4965_get_temperature(priv);
310
311 /* Send pointers to protocol/runtime uCode image ... init code will
312 * load and launch runtime uCode, which will send us another "Alive"
313 * notification. */
314 IWL_DEBUG_INFO("Initialization Alive received.\n");
315 if (iwl4965_set_ucode_ptrs(priv)) {
316 /* Runtime instruction load won't happen;
317 * take it all the way back down so we can try again */
318 IWL_DEBUG_INFO("Couldn't set up uCode pointers.\n");
319 goto restart;
320 }
321 return;
322
323restart:
324 queue_work(priv->workqueue, &priv->restart);
325}
326
Zhu Yib481de92007-09-25 17:54:57 -0700327static int is_fat_channel(__le32 rxon_flags)
328{
329 return (rxon_flags & RXON_FLG_CHANNEL_MODE_PURE_40_MSK) ||
330 (rxon_flags & RXON_FLG_CHANNEL_MODE_MIXED_MSK);
331}
332
Tomas Winkler17744ff2008-03-02 01:52:00 +0200333int iwl4965_hwrate_to_plcp_idx(u32 rate_n_flags)
334{
335 int idx = 0;
336
337 /* 4965 HT rate format */
338 if (rate_n_flags & RATE_MCS_HT_MSK) {
339 idx = (rate_n_flags & 0xff);
340
Guy Cohenfde0db32008-04-21 15:42:01 -0700341 if (idx >= IWL_RATE_MIMO2_6M_PLCP)
342 idx = idx - IWL_RATE_MIMO2_6M_PLCP;
Tomas Winkler17744ff2008-03-02 01:52:00 +0200343
344 idx += IWL_FIRST_OFDM_RATE;
345 /* skip 9M not supported in ht*/
346 if (idx >= IWL_RATE_9M_INDEX)
347 idx += 1;
348 if ((idx >= IWL_FIRST_OFDM_RATE) && (idx <= IWL_LAST_OFDM_RATE))
349 return idx;
350
351 /* 4965 legacy rate format, search for match in table */
352 } else {
Tomas Winkler1826dcc2008-05-15 13:54:02 +0800353 for (idx = 0; idx < ARRAY_SIZE(iwl_rates); idx++)
354 if (iwl_rates[idx].plcp == (rate_n_flags & 0xFF))
Tomas Winkler17744ff2008-03-02 01:52:00 +0200355 return idx;
356 }
357
358 return -1;
359}
360
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800361/**
362 * translate ucode response to mac80211 tx status control values
363 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700364void iwl4965_hwrate_to_tx_control(struct iwl_priv *priv, u32 rate_n_flags,
Johannes Berge039fa42008-05-15 12:55:29 +0200365 struct ieee80211_tx_info *control)
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800366{
367 int rate_index;
368
369 control->antenna_sel_tx =
Guy Cohenfde0db32008-04-21 15:42:01 -0700370 ((rate_n_flags & RATE_MCS_ANT_ABC_MSK) >> RATE_MCS_ANT_POS);
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800371 if (rate_n_flags & RATE_MCS_HT_MSK)
Johannes Berge039fa42008-05-15 12:55:29 +0200372 control->flags |= IEEE80211_TX_CTL_OFDM_HT;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800373 if (rate_n_flags & RATE_MCS_GF_MSK)
Johannes Berge039fa42008-05-15 12:55:29 +0200374 control->flags |= IEEE80211_TX_CTL_GREEN_FIELD;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800375 if (rate_n_flags & RATE_MCS_FAT_MSK)
Johannes Berge039fa42008-05-15 12:55:29 +0200376 control->flags |= IEEE80211_TX_CTL_40_MHZ_WIDTH;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800377 if (rate_n_flags & RATE_MCS_DUP_MSK)
Johannes Berge039fa42008-05-15 12:55:29 +0200378 control->flags |= IEEE80211_TX_CTL_DUP_DATA;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800379 if (rate_n_flags & RATE_MCS_SGI_MSK)
Johannes Berge039fa42008-05-15 12:55:29 +0200380 control->flags |= IEEE80211_TX_CTL_SHORT_GI;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800381 rate_index = iwl4965_hwrate_to_plcp_idx(rate_n_flags);
Johannes Berg2e92e6f2008-05-15 12:55:27 +0200382 if (control->band == IEEE80211_BAND_5GHZ)
383 rate_index -= IWL_FIRST_OFDM_RATE;
384 control->tx_rate_idx = rate_index;
Ron Rindjunsky4c424e42008-03-04 18:09:27 -0800385}
Tomas Winkler17744ff2008-03-02 01:52:00 +0200386
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700387int iwl4965_hw_rxq_stop(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700388{
389 int rc;
390 unsigned long flags;
391
392 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700393 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700394 if (rc) {
395 spin_unlock_irqrestore(&priv->lock, flags);
396 return rc;
397 }
398
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800399 /* stop Rx DMA */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700400 iwl_write_direct32(priv, FH_MEM_RCSR_CHNL0_CONFIG_REG, 0);
401 rc = iwl_poll_direct_bit(priv, FH_MEM_RSSR_RX_STATUS_REG,
Zhu Yib481de92007-09-25 17:54:57 -0700402 (1 << 24), 1000);
403 if (rc < 0)
404 IWL_ERROR("Can't stop Rx DMA.\n");
405
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700406 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700407 spin_unlock_irqrestore(&priv->lock, flags);
408
409 return 0;
410}
411
Tomas Winkler8614f362008-04-23 17:14:55 -0700412/*
413 * EEPROM handlers
414 */
415
416static int iwl4965_eeprom_check_version(struct iwl_priv *priv)
417{
418 u16 eeprom_ver;
419 u16 calib_ver;
420
421 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
422
423 calib_ver = iwl_eeprom_query16(priv, EEPROM_4965_CALIB_VERSION_OFFSET);
424
425 if (eeprom_ver < EEPROM_4965_EEPROM_VERSION ||
426 calib_ver < EEPROM_4965_TX_POWER_VERSION)
427 goto err;
428
429 return 0;
430err:
431 IWL_ERROR("Unsuported EEPROM VER=0x%x < 0x%x CALIB=0x%x < 0x%x\n",
432 eeprom_ver, EEPROM_4965_EEPROM_VERSION,
433 calib_ver, EEPROM_4965_TX_POWER_VERSION);
434 return -EINVAL;
435
436}
Tomas Winkler079a2532008-04-17 16:03:39 -0700437int iwl4965_set_pwr_src(struct iwl_priv *priv, enum iwl_pwr_src src)
Zhu Yib481de92007-09-25 17:54:57 -0700438{
Tomas Winklerd8609652007-10-25 17:15:35 +0800439 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700440 unsigned long flags;
441
442 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700443 ret = iwl_grab_nic_access(priv);
Tomas Winklerd8609652007-10-25 17:15:35 +0800444 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700445 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklerd8609652007-10-25 17:15:35 +0800446 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700447 }
448
Tomas Winkler6f4083a2008-04-16 16:34:49 -0700449 if (src == IWL_PWR_SRC_VAUX) {
Zhu Yib481de92007-09-25 17:54:57 -0700450 u32 val;
Tomas Winklerd8609652007-10-25 17:15:35 +0800451 ret = pci_read_config_dword(priv->pci_dev, PCI_POWER_SOURCE,
Tomas Winkler6f4083a2008-04-16 16:34:49 -0700452 &val);
Zhu Yib481de92007-09-25 17:54:57 -0700453
Tomas Winkler6f4083a2008-04-16 16:34:49 -0700454 if (val & PCI_CFG_PMC_PME_FROM_D3COLD_SUPPORT) {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700455 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
Tomas Winkler6f4083a2008-04-16 16:34:49 -0700456 APMG_PS_CTRL_VAL_PWR_SRC_VAUX,
457 ~APMG_PS_CTRL_MSK_PWR_SRC);
458 }
459 } else {
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700460 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
Tomas Winkler6f4083a2008-04-16 16:34:49 -0700461 APMG_PS_CTRL_VAL_PWR_SRC_VMAIN,
462 ~APMG_PS_CTRL_MSK_PWR_SRC);
463 }
Zhu Yib481de92007-09-25 17:54:57 -0700464
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700465 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700466 spin_unlock_irqrestore(&priv->lock, flags);
467
Tomas Winklerd8609652007-10-25 17:15:35 +0800468 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700469}
470
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +0800471static int iwl4965_disable_tx_fifo(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700472{
Zhu Yib481de92007-09-25 17:54:57 -0700473 unsigned long flags;
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +0800474 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700475
476 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +0800477
Tomas Winkler059ff822008-04-14 21:16:14 -0700478 ret = iwl_grab_nic_access(priv);
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +0800479 if (unlikely(ret)) {
480 IWL_ERROR("Tx fifo reset failed");
Zhu Yib481de92007-09-25 17:54:57 -0700481 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler059ff822008-04-14 21:16:14 -0700482 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700483 }
484
Tomas Winkler12a81f62008-04-03 16:05:20 -0700485 iwl_write_prph(priv, IWL49_SCD_TXFACT, 0);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700486 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700487 spin_unlock_irqrestore(&priv->lock, flags);
488
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +0800489 return 0;
Zhu Yib481de92007-09-25 17:54:57 -0700490}
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +0800491
Tomas Winkler91238712008-04-23 17:14:53 -0700492static int iwl4965_apm_init(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700493{
Tomas Winkler91238712008-04-23 17:14:53 -0700494 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700495
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700496 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
Tomas Winkler91238712008-04-23 17:14:53 -0700497 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
Zhu Yib481de92007-09-25 17:54:57 -0700498
Tomas Winkler8f061892008-05-29 16:34:56 +0800499 /* disable L0s without affecting L1 :don't wait for ICH L0s bug W/A) */
500 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
501 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
502
Tomas Winkler91238712008-04-23 17:14:53 -0700503 /* set "initialization complete" bit to move adapter
504 * D0U* --> D0A* state */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700505 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Tomas Winkler91238712008-04-23 17:14:53 -0700506
507 /* wait for clock stabilization */
508 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
509 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
510 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
511 if (ret < 0) {
Zhu Yib481de92007-09-25 17:54:57 -0700512 IWL_DEBUG_INFO("Failed to init the card\n");
Tomas Winkler91238712008-04-23 17:14:53 -0700513 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700514 }
515
Tomas Winkler91238712008-04-23 17:14:53 -0700516 ret = iwl_grab_nic_access(priv);
517 if (ret)
518 goto out;
Zhu Yib481de92007-09-25 17:54:57 -0700519
Tomas Winkler91238712008-04-23 17:14:53 -0700520 /* enable DMA */
Tomas Winkler8f061892008-05-29 16:34:56 +0800521 iwl_write_prph(priv, APMG_CLK_CTRL_REG, APMG_CLK_VAL_DMA_CLK_RQT |
522 APMG_CLK_VAL_BSM_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -0700523
524 udelay(20);
525
Tomas Winkler8f061892008-05-29 16:34:56 +0800526 /* disable L1-Active */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700527 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
Tomas Winkler91238712008-04-23 17:14:53 -0700528 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Zhu Yib481de92007-09-25 17:54:57 -0700529
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700530 iwl_release_nic_access(priv);
Tomas Winkler91238712008-04-23 17:14:53 -0700531out:
Tomas Winkler91238712008-04-23 17:14:53 -0700532 return ret;
533}
534
Tomas Winkler694cc562008-04-24 11:55:22 -0700535
536static void iwl4965_nic_config(struct iwl_priv *priv)
537{
538 unsigned long flags;
539 u32 val;
540 u16 radio_cfg;
541 u8 val_link;
542
543 spin_lock_irqsave(&priv->lock, flags);
544
545 if ((priv->rev_id & 0x80) == 0x80 && (priv->rev_id & 0x7f) < 8) {
546 pci_read_config_dword(priv->pci_dev, PCI_REG_WUM8, &val);
547 /* Enable No Snoop field */
548 pci_write_config_dword(priv->pci_dev, PCI_REG_WUM8,
549 val & ~(1 << 11));
550 }
551
552 pci_read_config_byte(priv->pci_dev, PCI_LINK_CTRL, &val_link);
553
Tomas Winkler8f061892008-05-29 16:34:56 +0800554 /* L1 is enabled by BIOS */
555 if ((val_link & PCI_LINK_VAL_L1_EN) == PCI_LINK_VAL_L1_EN)
556 /* diable L0S disabled L1A enabled */
557 iwl_set_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
558 else
559 /* L0S enabled L1A disabled */
560 iwl_clear_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
Tomas Winkler694cc562008-04-24 11:55:22 -0700561
562 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
563
564 /* write radio config values to register */
565 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) == EEPROM_4965_RF_CFG_TYPE_MAX)
566 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
567 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
568 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
569 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
570
571 /* set CSR_HW_CONFIG_REG for uCode use */
572 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
573 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
574 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
575
576 priv->calib_info = (struct iwl_eeprom_calib_info *)
577 iwl_eeprom_query_addr(priv, EEPROM_4965_CALIB_TXPOWER_OFFSET);
578
579 spin_unlock_irqrestore(&priv->lock, flags);
580}
581
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800582/**
583 * iwl4965_hw_txq_ctx_stop - Stop all Tx DMA channels, free Tx queue memory
584 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700585void iwl4965_hw_txq_ctx_stop(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700586{
587
588 int txq_id;
589 unsigned long flags;
590
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800591 /* Stop each Tx DMA channel, and wait for it to be idle */
Tomas Winkler5425e492008-04-15 16:01:38 -0700592 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++) {
Zhu Yib481de92007-09-25 17:54:57 -0700593 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700594 if (iwl_grab_nic_access(priv)) {
Zhu Yib481de92007-09-25 17:54:57 -0700595 spin_unlock_irqrestore(&priv->lock, flags);
596 continue;
597 }
598
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700599 iwl_write_direct32(priv,
Emmanuel Grumbach4b52c392008-04-23 17:15:07 -0700600 FH_TCSR_CHNL_TX_CONFIG_REG(txq_id), 0x0);
601 iwl_poll_direct_bit(priv, FH_TSSR_TX_STATUS_REG,
602 FH_TSSR_TX_STATUS_REG_MSK_CHNL_IDLE
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700603 (txq_id), 200);
604 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700605 spin_unlock_irqrestore(&priv->lock, flags);
606 }
607
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800608 /* Deallocate memory for all Tx queues */
Ron Rindjunsky1053d352008-05-05 10:22:43 +0800609 iwl_hw_txq_ctx_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700610}
611
Tomas Winkler46315e02008-05-29 16:34:59 +0800612static int iwl4965_apm_stop_master(struct iwl_priv *priv)
613{
614 int ret = 0;
615 unsigned long flags;
616
617 spin_lock_irqsave(&priv->lock, flags);
618
619 /* set stop master bit */
620 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
621
622 ret = iwl_poll_bit(priv, CSR_RESET,
623 CSR_RESET_REG_FLAG_MASTER_DISABLED,
624 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
625 if (ret < 0)
626 goto out;
627
628out:
629 spin_unlock_irqrestore(&priv->lock, flags);
630 IWL_DEBUG_INFO("stop master\n");
631
632 return ret;
633}
634
Tomas Winklerf118a912008-05-29 16:34:58 +0800635static void iwl4965_apm_stop(struct iwl_priv *priv)
636{
637 unsigned long flags;
638
Tomas Winkler46315e02008-05-29 16:34:59 +0800639 iwl4965_apm_stop_master(priv);
Tomas Winklerf118a912008-05-29 16:34:58 +0800640
641 spin_lock_irqsave(&priv->lock, flags);
642
643 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
644
645 udelay(10);
646
647 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
648 spin_unlock_irqrestore(&priv->lock, flags);
649}
650
Tomas Winkler7f066102008-05-29 16:34:57 +0800651static int iwl4965_apm_reset(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700652{
Tomas Winkler7f066102008-05-29 16:34:57 +0800653 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700654 unsigned long flags;
655
Tomas Winkler46315e02008-05-29 16:34:59 +0800656 iwl4965_apm_stop_master(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700657
658 spin_lock_irqsave(&priv->lock, flags);
659
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700660 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
Zhu Yib481de92007-09-25 17:54:57 -0700661
662 udelay(10);
663
Tomas Winkler7f066102008-05-29 16:34:57 +0800664 /* FIXME: put here L1A -L0S w/a */
665
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700666 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Tomas Winklerf118a912008-05-29 16:34:58 +0800667
Tomas Winkler7f066102008-05-29 16:34:57 +0800668 ret = iwl_poll_bit(priv, CSR_RESET,
Zhu Yib481de92007-09-25 17:54:57 -0700669 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
670 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25);
671
Tomas Winkler7f066102008-05-29 16:34:57 +0800672 if (ret)
673 goto out;
674
Zhu Yib481de92007-09-25 17:54:57 -0700675 udelay(10);
676
Tomas Winkler7f066102008-05-29 16:34:57 +0800677 ret = iwl_grab_nic_access(priv);
678 if (ret)
679 goto out;
680 /* Enable DMA and BSM Clock */
681 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT |
682 APMG_CLK_VAL_BSM_CLK_RQT);
Zhu Yib481de92007-09-25 17:54:57 -0700683
Tomas Winkler7f066102008-05-29 16:34:57 +0800684 udelay(10);
Zhu Yib481de92007-09-25 17:54:57 -0700685
Tomas Winkler7f066102008-05-29 16:34:57 +0800686 /* disable L1A */
687 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
688 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Zhu Yib481de92007-09-25 17:54:57 -0700689
Tomas Winkler7f066102008-05-29 16:34:57 +0800690 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700691
692 clear_bit(STATUS_HCMD_ACTIVE, &priv->status);
693 wake_up_interruptible(&priv->wait_command_queue);
694
Tomas Winkler7f066102008-05-29 16:34:57 +0800695out:
Zhu Yib481de92007-09-25 17:54:57 -0700696 spin_unlock_irqrestore(&priv->lock, flags);
697
Tomas Winkler7f066102008-05-29 16:34:57 +0800698 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700699}
700
701#define REG_RECALIB_PERIOD (60)
702
703/**
704 * iwl4965_bg_statistics_periodic - Timer callback to queue statistics
705 *
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -0700706 * This callback is provided in order to send a statistics request.
Zhu Yib481de92007-09-25 17:54:57 -0700707 *
708 * This timer function is continually reset to execute within
709 * REG_RECALIB_PERIOD seconds since the last STATISTICS_NOTIFICATION
710 * was received. We need to ensure we receive the statistics in order
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -0700711 * to update the temperature used for calibrating the TXPOWER.
Zhu Yib481de92007-09-25 17:54:57 -0700712 */
713static void iwl4965_bg_statistics_periodic(unsigned long data)
714{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700715 struct iwl_priv *priv = (struct iwl_priv *)data;
Zhu Yib481de92007-09-25 17:54:57 -0700716
Zhu Yib481de92007-09-25 17:54:57 -0700717 if (test_bit(STATUS_EXIT_PENDING, &priv->status))
718 return;
719
Emmanuel Grumbach49ea8592008-04-15 16:01:37 -0700720 iwl_send_statistics_request(priv, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -0700721}
722
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700723void iwl4965_rf_kill_ct_config(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700724{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800725 struct iwl4965_ct_kill_config cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700726 unsigned long flags;
Tomas Winkler857485c2008-03-21 13:53:44 -0700727 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700728
729 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700730 iwl_write32(priv, CSR_UCODE_DRV_GP1_CLR,
Zhu Yib481de92007-09-25 17:54:57 -0700731 CSR_UCODE_DRV_GP1_REG_BIT_CT_KILL_EXIT);
732 spin_unlock_irqrestore(&priv->lock, flags);
733
Ron Rindjunsky099b40b2008-04-21 15:41:53 -0700734 cmd.critical_temperature_R =
Emmanuel Grumbachb73cdf22008-04-21 15:41:58 -0700735 cpu_to_le32(priv->hw_params.ct_kill_threshold);
736
Tomas Winkler857485c2008-03-21 13:53:44 -0700737 ret = iwl_send_cmd_pdu(priv, REPLY_CT_KILL_CONFIG_CMD,
738 sizeof(cmd), &cmd);
739 if (ret)
Zhu Yib481de92007-09-25 17:54:57 -0700740 IWL_ERROR("REPLY_CT_KILL_CONFIG_CMD failed\n");
741 else
Emmanuel Grumbachb73cdf22008-04-21 15:41:58 -0700742 IWL_DEBUG_INFO("REPLY_CT_KILL_CONFIG_CMD succeeded, "
743 "critical temperature is %d\n",
744 cmd.critical_temperature_R);
Zhu Yib481de92007-09-25 17:54:57 -0700745}
746
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700747#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
Zhu Yib481de92007-09-25 17:54:57 -0700748
749/* Reset differential Rx gains in NIC to prepare for chain noise calibration.
750 * Called after every association, but this runs only once!
751 * ... once chain noise is calibrated the first time, it's good forever. */
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700752static void iwl4965_chain_noise_reset(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700753{
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700754 struct iwl_chain_noise_data *data = &(priv->chain_noise_data);
Zhu Yib481de92007-09-25 17:54:57 -0700755
Tomas Winkler3109ece2008-03-28 16:33:35 -0700756 if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) {
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800757 struct iwl4965_calibration_cmd cmd;
Zhu Yib481de92007-09-25 17:54:57 -0700758
759 memset(&cmd, 0, sizeof(cmd));
760 cmd.opCode = PHY_CALIBRATE_DIFF_GAIN_CMD;
761 cmd.diff_gain_a = 0;
762 cmd.diff_gain_b = 0;
763 cmd.diff_gain_c = 0;
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700764 if (iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
765 sizeof(cmd), &cmd))
766 IWL_ERROR("Could not send REPLY_PHY_CALIBRATION_CMD\n");
Zhu Yib481de92007-09-25 17:54:57 -0700767 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
768 IWL_DEBUG_CALIB("Run chain_noise_calibrate\n");
769 }
Zhu Yib481de92007-09-25 17:54:57 -0700770}
771
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700772static void iwl4965_gain_computation(struct iwl_priv *priv,
773 u32 *average_noise,
774 u16 min_average_noise_antenna_i,
775 u32 min_average_noise)
Zhu Yib481de92007-09-25 17:54:57 -0700776{
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700777 int i, ret;
778 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
Zhu Yib481de92007-09-25 17:54:57 -0700779
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700780 data->delta_gain_code[min_average_noise_antenna_i] = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700781
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700782 for (i = 0; i < NUM_RX_CHAINS; i++) {
783 s32 delta_g = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700784
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700785 if (!(data->disconn_array[i]) &&
786 (data->delta_gain_code[i] ==
Zhu Yib481de92007-09-25 17:54:57 -0700787 CHAIN_NOISE_DELTA_GAIN_INIT_VAL)) {
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700788 delta_g = average_noise[i] - min_average_noise;
789 data->delta_gain_code[i] = (u8)((delta_g * 10) / 15);
790 data->delta_gain_code[i] =
791 min(data->delta_gain_code[i],
792 (u8) CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
Zhu Yib481de92007-09-25 17:54:57 -0700793
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700794 data->delta_gain_code[i] =
795 (data->delta_gain_code[i] | (1 << 2));
796 } else {
797 data->delta_gain_code[i] = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700798 }
Zhu Yib481de92007-09-25 17:54:57 -0700799 }
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700800 IWL_DEBUG_CALIB("delta_gain_codes: a %d b %d c %d\n",
801 data->delta_gain_code[0],
802 data->delta_gain_code[1],
803 data->delta_gain_code[2]);
Zhu Yib481de92007-09-25 17:54:57 -0700804
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700805 /* Differential gain gets sent to uCode only once */
806 if (!data->radio_write) {
807 struct iwl4965_calibration_cmd cmd;
808 data->radio_write = 1;
Zhu Yib481de92007-09-25 17:54:57 -0700809
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700810 memset(&cmd, 0, sizeof(cmd));
811 cmd.opCode = PHY_CALIBRATE_DIFF_GAIN_CMD;
812 cmd.diff_gain_a = data->delta_gain_code[0];
813 cmd.diff_gain_b = data->delta_gain_code[1];
814 cmd.diff_gain_c = data->delta_gain_code[2];
815 ret = iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
816 sizeof(cmd), &cmd);
817 if (ret)
818 IWL_DEBUG_CALIB("fail sending cmd "
819 "REPLY_PHY_CALIBRATION_CMD \n");
Zhu Yib481de92007-09-25 17:54:57 -0700820
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700821 /* TODO we might want recalculate
822 * rx_chain in rxon cmd */
823
824 /* Mark so we run this algo only once! */
825 data->state = IWL_CHAIN_NOISE_CALIBRATED;
Zhu Yib481de92007-09-25 17:54:57 -0700826 }
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700827 data->chain_noise_a = 0;
828 data->chain_noise_b = 0;
829 data->chain_noise_c = 0;
830 data->chain_signal_a = 0;
831 data->chain_signal_b = 0;
832 data->chain_signal_c = 0;
833 data->beacon_count = 0;
Zhu Yib481de92007-09-25 17:54:57 -0700834}
835
836static void iwl4965_bg_sensitivity_work(struct work_struct *work)
837{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700838 struct iwl_priv *priv = container_of(work, struct iwl_priv,
Zhu Yib481de92007-09-25 17:54:57 -0700839 sensitivity_work);
840
841 mutex_lock(&priv->mutex);
842
843 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
844 test_bit(STATUS_SCANNING, &priv->status)) {
845 mutex_unlock(&priv->mutex);
846 return;
847 }
848
849 if (priv->start_calib) {
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700850 iwl_chain_noise_calibration(priv, &priv->statistics);
Zhu Yib481de92007-09-25 17:54:57 -0700851
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700852 iwl_sensitivity_calibration(priv, &priv->statistics);
Zhu Yib481de92007-09-25 17:54:57 -0700853 }
854
855 mutex_unlock(&priv->mutex);
856 return;
857}
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -0700858#endif /*CONFIG_IWL4965_RUN_TIME_CALIB*/
Zhu Yib481de92007-09-25 17:54:57 -0700859
860static void iwl4965_bg_txpower_work(struct work_struct *work)
861{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700862 struct iwl_priv *priv = container_of(work, struct iwl_priv,
Zhu Yib481de92007-09-25 17:54:57 -0700863 txpower_work);
864
865 /* If a scan happened to start before we got here
866 * then just return; the statistics notification will
867 * kick off another scheduled work to compensate for
868 * any temperature delta we missed here. */
869 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
870 test_bit(STATUS_SCANNING, &priv->status))
871 return;
872
873 mutex_lock(&priv->mutex);
874
875 /* Regardless of if we are assocaited, we must reconfigure the
876 * TX power since frames can be sent on non-radar channels while
877 * not associated */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800878 iwl4965_hw_reg_send_txpower(priv);
Zhu Yib481de92007-09-25 17:54:57 -0700879
880 /* Update last_temperature to keep is_calib_needed from running
881 * when it isn't needed... */
882 priv->last_temperature = priv->temperature;
883
884 mutex_unlock(&priv->mutex);
885}
886
887/*
888 * Acquire priv->lock before calling this function !
889 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700890static void iwl4965_set_wr_ptrs(struct iwl_priv *priv, int txq_id, u32 index)
Zhu Yib481de92007-09-25 17:54:57 -0700891{
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700892 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
Zhu Yib481de92007-09-25 17:54:57 -0700893 (index & 0xff) | (txq_id << 8));
Tomas Winkler12a81f62008-04-03 16:05:20 -0700894 iwl_write_prph(priv, IWL49_SCD_QUEUE_RDPTR(txq_id), index);
Zhu Yib481de92007-09-25 17:54:57 -0700895}
896
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800897/**
898 * iwl4965_tx_queue_set_status - (optionally) start Tx/Cmd queue
899 * @tx_fifo_id: Tx DMA/FIFO channel (range 0-7) that the queue will feed
900 * @scd_retry: (1) Indicates queue will be used in aggregation mode
901 *
902 * NOTE: Acquire priv->lock before calling this function !
Zhu Yib481de92007-09-25 17:54:57 -0700903 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700904static void iwl4965_tx_queue_set_status(struct iwl_priv *priv,
Ron Rindjunsky16466902008-05-05 10:22:50 +0800905 struct iwl_tx_queue *txq,
Zhu Yib481de92007-09-25 17:54:57 -0700906 int tx_fifo_id, int scd_retry)
907{
908 int txq_id = txq->q.id;
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800909
910 /* Find out whether to activate Tx queue */
Zhu Yib481de92007-09-25 17:54:57 -0700911 int active = test_bit(txq_id, &priv->txq_ctx_active_msk)?1:0;
912
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800913 /* Set up and activate */
Tomas Winkler12a81f62008-04-03 16:05:20 -0700914 iwl_write_prph(priv, IWL49_SCD_QUEUE_STATUS_BITS(txq_id),
Emmanuel Grumbach038669e2008-04-23 17:15:04 -0700915 (active << IWL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
916 (tx_fifo_id << IWL49_SCD_QUEUE_STTS_REG_POS_TXF) |
917 (scd_retry << IWL49_SCD_QUEUE_STTS_REG_POS_WSL) |
918 (scd_retry << IWL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
919 IWL49_SCD_QUEUE_STTS_REG_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700920
921 txq->sched_retry = scd_retry;
922
923 IWL_DEBUG_INFO("%s %s Queue %d on AC %d\n",
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800924 active ? "Activate" : "Deactivate",
Zhu Yib481de92007-09-25 17:54:57 -0700925 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
926}
927
928static const u16 default_queue_to_tx_fifo[] = {
929 IWL_TX_FIFO_AC3,
930 IWL_TX_FIFO_AC2,
931 IWL_TX_FIFO_AC1,
932 IWL_TX_FIFO_AC0,
Emmanuel Grumbach038669e2008-04-23 17:15:04 -0700933 IWL49_CMD_FIFO_NUM,
Zhu Yib481de92007-09-25 17:54:57 -0700934 IWL_TX_FIFO_HCCA_1,
935 IWL_TX_FIFO_HCCA_2
936};
937
Tomas Winklerc79dd5b2008-03-12 16:58:50 -0700938int iwl4965_alive_notify(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -0700939{
940 u32 a;
941 int i = 0;
942 unsigned long flags;
Tomas Winkler857485c2008-03-21 13:53:44 -0700943 int ret;
Zhu Yib481de92007-09-25 17:54:57 -0700944
945 spin_lock_irqsave(&priv->lock, flags);
946
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700947 ret = iwl_grab_nic_access(priv);
Tomas Winkler857485c2008-03-21 13:53:44 -0700948 if (ret) {
Zhu Yib481de92007-09-25 17:54:57 -0700949 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winkler857485c2008-03-21 13:53:44 -0700950 return ret;
Zhu Yib481de92007-09-25 17:54:57 -0700951 }
952
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800953 /* Clear 4965's internal Tx Scheduler data base */
Tomas Winkler12a81f62008-04-03 16:05:20 -0700954 priv->scd_base_addr = iwl_read_prph(priv, IWL49_SCD_SRAM_BASE_ADDR);
Emmanuel Grumbach038669e2008-04-23 17:15:04 -0700955 a = priv->scd_base_addr + IWL49_SCD_CONTEXT_DATA_OFFSET;
956 for (; a < priv->scd_base_addr + IWL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700957 iwl_write_targ_mem(priv, a, 0);
Emmanuel Grumbach038669e2008-04-23 17:15:04 -0700958 for (; a < priv->scd_base_addr + IWL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700959 iwl_write_targ_mem(priv, a, 0);
Tomas Winkler5425e492008-04-15 16:01:38 -0700960 for (; a < sizeof(u16) * priv->hw_params.max_txq_num; a += 4)
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700961 iwl_write_targ_mem(priv, a, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700962
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800963 /* Tel 4965 where to find Tx byte count tables */
Tomas Winkler12a81f62008-04-03 16:05:20 -0700964 iwl_write_prph(priv, IWL49_SCD_DRAM_BASE_ADDR,
Tomas Winkler059ff822008-04-14 21:16:14 -0700965 (priv->shared_phys +
Christoph Hellwigbb8c0932008-01-27 16:41:47 -0800966 offsetof(struct iwl4965_shared, queues_byte_cnt_tbls)) >> 10);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800967
968 /* Disable chain mode for all queues */
Tomas Winkler12a81f62008-04-03 16:05:20 -0700969 iwl_write_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, 0);
Zhu Yib481de92007-09-25 17:54:57 -0700970
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800971 /* Initialize each Tx queue (including the command queue) */
Tomas Winkler5425e492008-04-15 16:01:38 -0700972 for (i = 0; i < priv->hw_params.max_txq_num; i++) {
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800973
974 /* TFD circular buffer read/write indexes */
Tomas Winkler12a81f62008-04-03 16:05:20 -0700975 iwl_write_prph(priv, IWL49_SCD_QUEUE_RDPTR(i), 0);
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700976 iwl_write_direct32(priv, HBUS_TARG_WRPTR, 0 | (i << 8));
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800977
978 /* Max Tx Window size for Scheduler-ACK mode */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700979 iwl_write_targ_mem(priv, priv->scd_base_addr +
Emmanuel Grumbach038669e2008-04-23 17:15:04 -0700980 IWL49_SCD_CONTEXT_QUEUE_OFFSET(i),
981 (SCD_WIN_SIZE <<
982 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
983 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800984
985 /* Frame limit */
Tomas Winkler3395f6e2008-03-25 16:33:37 -0700986 iwl_write_targ_mem(priv, priv->scd_base_addr +
Emmanuel Grumbach038669e2008-04-23 17:15:04 -0700987 IWL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
988 sizeof(u32),
989 (SCD_FRAME_LIMIT <<
990 IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
991 IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Zhu Yib481de92007-09-25 17:54:57 -0700992
993 }
Tomas Winkler12a81f62008-04-03 16:05:20 -0700994 iwl_write_prph(priv, IWL49_SCD_INTERRUPT_MASK,
Tomas Winkler5425e492008-04-15 16:01:38 -0700995 (1 << priv->hw_params.max_txq_num) - 1);
Zhu Yib481de92007-09-25 17:54:57 -0700996
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +0800997 /* Activate all Tx DMA/FIFO channels */
Tomas Winkler12a81f62008-04-03 16:05:20 -0700998 iwl_write_prph(priv, IWL49_SCD_TXFACT,
Zhu Yib481de92007-09-25 17:54:57 -0700999 SCD_TXFACT_REG_TXFIFO_MASK(0, 7));
1000
1001 iwl4965_set_wr_ptrs(priv, IWL_CMD_QUEUE_NUM, 0);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08001002
1003 /* Map each Tx/cmd queue to its corresponding fifo */
Zhu Yib481de92007-09-25 17:54:57 -07001004 for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
1005 int ac = default_queue_to_tx_fifo[i];
Ron Rindjunsky36470742008-05-15 13:54:10 +08001006 iwl_txq_ctx_activate(priv, i);
Zhu Yib481de92007-09-25 17:54:57 -07001007 iwl4965_tx_queue_set_status(priv, &priv->txq[i], ac, 0);
1008 }
1009
Tomas Winkler3395f6e2008-03-25 16:33:37 -07001010 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07001011 spin_unlock_irqrestore(&priv->lock, flags);
1012
Tomas Winkler857485c2008-03-21 13:53:44 -07001013 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001014}
1015
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07001016#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
1017static struct iwl_sensitivity_ranges iwl4965_sensitivity = {
1018 .min_nrg_cck = 97,
1019 .max_nrg_cck = 0,
1020
1021 .auto_corr_min_ofdm = 85,
1022 .auto_corr_min_ofdm_mrc = 170,
1023 .auto_corr_min_ofdm_x1 = 105,
1024 .auto_corr_min_ofdm_mrc_x1 = 220,
1025
1026 .auto_corr_max_ofdm = 120,
1027 .auto_corr_max_ofdm_mrc = 210,
1028 .auto_corr_max_ofdm_x1 = 140,
1029 .auto_corr_max_ofdm_mrc_x1 = 270,
1030
1031 .auto_corr_min_cck = 125,
1032 .auto_corr_max_cck = 200,
1033 .auto_corr_min_cck_mrc = 200,
1034 .auto_corr_max_cck_mrc = 400,
1035
1036 .nrg_th_cck = 100,
1037 .nrg_th_ofdm = 100,
1038};
1039#endif
1040
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08001041/**
Tomas Winkler5425e492008-04-15 16:01:38 -07001042 * iwl4965_hw_set_hw_params
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08001043 *
1044 * Called when initializing driver
1045 */
Tomas Winkler5425e492008-04-15 16:01:38 -07001046int iwl4965_hw_set_hw_params(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001047{
Assaf Krauss316c30d2008-03-14 10:38:46 -07001048
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07001049 if ((priv->cfg->mod_params->num_of_queues > IWL49_NUM_QUEUES) ||
Assaf Krauss1ea87392008-03-18 14:57:50 -07001050 (priv->cfg->mod_params->num_of_queues < IWL_MIN_NUM_QUEUES)) {
Assaf Krauss316c30d2008-03-14 10:38:46 -07001051 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07001052 IWL_MIN_NUM_QUEUES, IWL49_NUM_QUEUES);
Tomas Winkler059ff822008-04-14 21:16:14 -07001053 return -EINVAL;
Assaf Krauss316c30d2008-03-14 10:38:46 -07001054 }
1055
Tomas Winkler5425e492008-04-15 16:01:38 -07001056 priv->hw_params.max_txq_num = priv->cfg->mod_params->num_of_queues;
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001057 priv->hw_params.sw_crypto = priv->cfg->mod_params->sw_crypto;
Tomas Winkler5425e492008-04-15 16:01:38 -07001058 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
1059 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
Assaf Krauss1ea87392008-03-18 14:57:50 -07001060 if (priv->cfg->mod_params->amsdu_size_8K)
Tomas Winkler5425e492008-04-15 16:01:38 -07001061 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_8K;
Ron Rindjunsky9ee1ba42007-11-26 16:14:42 +02001062 else
Tomas Winkler5425e492008-04-15 16:01:38 -07001063 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_4K;
1064 priv->hw_params.max_pkt_size = priv->hw_params.rx_buf_size - 256;
1065 priv->hw_params.max_stations = IWL4965_STATION_COUNT;
1066 priv->hw_params.bcast_sta_id = IWL4965_BROADCAST_ID;
Tomas Winkler3e82a822008-02-13 11:32:31 -08001067
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001068 priv->hw_params.max_data_size = IWL49_RTC_DATA_SIZE;
1069 priv->hw_params.max_inst_size = IWL49_RTC_INST_SIZE;
1070 priv->hw_params.max_bsm_size = BSM_SRAM_SIZE;
1071 priv->hw_params.fat_channel = BIT(IEEE80211_BAND_5GHZ);
1072
Tomas Winklerec35cf22008-04-15 16:01:39 -07001073 priv->hw_params.tx_chains_num = 2;
1074 priv->hw_params.rx_chains_num = 2;
Guy Cohenfde0db32008-04-21 15:42:01 -07001075 priv->hw_params.valid_tx_ant = ANT_A | ANT_B;
1076 priv->hw_params.valid_rx_ant = ANT_A | ANT_B;
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07001077 priv->hw_params.ct_kill_threshold = CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD);
1078
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07001079#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
1080 priv->hw_params.sens = &iwl4965_sensitivity;
1081#endif
Tomas Winkler3e82a822008-02-13 11:32:31 -08001082
Tomas Winkler059ff822008-04-14 21:16:14 -07001083 return 0;
Zhu Yib481de92007-09-25 17:54:57 -07001084}
1085
Mohamed Abbas5da4b552008-04-21 15:41:51 -07001086/* set card power command */
1087static int iwl4965_set_power(struct iwl_priv *priv,
1088 void *cmd)
1089{
1090 int ret = 0;
1091
1092 ret = iwl_send_cmd_pdu_async(priv, POWER_TABLE_CMD,
1093 sizeof(struct iwl4965_powertable_cmd),
1094 cmd, NULL);
1095 return ret;
1096}
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001097int iwl4965_hw_reg_set_txpower(struct iwl_priv *priv, s8 power)
Zhu Yib481de92007-09-25 17:54:57 -07001098{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001099 IWL_ERROR("TODO: Implement iwl4965_hw_reg_set_txpower!\n");
Zhu Yib481de92007-09-25 17:54:57 -07001100 return -EINVAL;
1101}
1102
1103static s32 iwl4965_math_div_round(s32 num, s32 denom, s32 *res)
1104{
1105 s32 sign = 1;
1106
1107 if (num < 0) {
1108 sign = -sign;
1109 num = -num;
1110 }
1111 if (denom < 0) {
1112 sign = -sign;
1113 denom = -denom;
1114 }
1115 *res = 1;
1116 *res = ((num * 2 + denom) / (denom * 2)) * sign;
1117
1118 return 1;
1119}
1120
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08001121/**
1122 * iwl4965_get_voltage_compensation - Power supply voltage comp for txpower
1123 *
1124 * Determines power supply voltage compensation for txpower calculations.
1125 * Returns number of 1/2-dB steps to subtract from gain table index,
1126 * to compensate for difference between power supply voltage during
1127 * factory measurements, vs. current power supply voltage.
1128 *
1129 * Voltage indication is higher for lower voltage.
1130 * Lower voltage requires more gain (lower gain table index).
1131 */
Zhu Yib481de92007-09-25 17:54:57 -07001132static s32 iwl4965_get_voltage_compensation(s32 eeprom_voltage,
1133 s32 current_voltage)
1134{
1135 s32 comp = 0;
1136
1137 if ((TX_POWER_IWL_ILLEGAL_VOLTAGE == eeprom_voltage) ||
1138 (TX_POWER_IWL_ILLEGAL_VOLTAGE == current_voltage))
1139 return 0;
1140
1141 iwl4965_math_div_round(current_voltage - eeprom_voltage,
1142 TX_POWER_IWL_VOLTAGE_CODES_PER_03V, &comp);
1143
1144 if (current_voltage > eeprom_voltage)
1145 comp *= 2;
1146 if ((comp < -2) || (comp > 2))
1147 comp = 0;
1148
1149 return comp;
1150}
1151
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001152static const struct iwl_channel_info *
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001153iwl4965_get_channel_txpower_info(struct iwl_priv *priv,
Johannes Berg8318d782008-01-24 19:38:38 +01001154 enum ieee80211_band band, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07001155{
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001156 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001157
Assaf Krauss8622e702008-03-21 13:53:43 -07001158 ch_info = iwl_get_channel_info(priv, band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07001159
1160 if (!is_channel_valid(ch_info))
1161 return NULL;
1162
1163 return ch_info;
1164}
1165
1166static s32 iwl4965_get_tx_atten_grp(u16 channel)
1167{
1168 if (channel >= CALIB_IWL_TX_ATTEN_GR5_FCH &&
1169 channel <= CALIB_IWL_TX_ATTEN_GR5_LCH)
1170 return CALIB_CH_GROUP_5;
1171
1172 if (channel >= CALIB_IWL_TX_ATTEN_GR1_FCH &&
1173 channel <= CALIB_IWL_TX_ATTEN_GR1_LCH)
1174 return CALIB_CH_GROUP_1;
1175
1176 if (channel >= CALIB_IWL_TX_ATTEN_GR2_FCH &&
1177 channel <= CALIB_IWL_TX_ATTEN_GR2_LCH)
1178 return CALIB_CH_GROUP_2;
1179
1180 if (channel >= CALIB_IWL_TX_ATTEN_GR3_FCH &&
1181 channel <= CALIB_IWL_TX_ATTEN_GR3_LCH)
1182 return CALIB_CH_GROUP_3;
1183
1184 if (channel >= CALIB_IWL_TX_ATTEN_GR4_FCH &&
1185 channel <= CALIB_IWL_TX_ATTEN_GR4_LCH)
1186 return CALIB_CH_GROUP_4;
1187
1188 IWL_ERROR("Can't find txatten group for channel %d.\n", channel);
1189 return -1;
1190}
1191
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001192static u32 iwl4965_get_sub_band(const struct iwl_priv *priv, u32 channel)
Zhu Yib481de92007-09-25 17:54:57 -07001193{
1194 s32 b = -1;
1195
1196 for (b = 0; b < EEPROM_TX_POWER_BANDS; b++) {
Tomas Winkler073d3f52008-04-21 15:41:52 -07001197 if (priv->calib_info->band_info[b].ch_from == 0)
Zhu Yib481de92007-09-25 17:54:57 -07001198 continue;
1199
Tomas Winkler073d3f52008-04-21 15:41:52 -07001200 if ((channel >= priv->calib_info->band_info[b].ch_from)
1201 && (channel <= priv->calib_info->band_info[b].ch_to))
Zhu Yib481de92007-09-25 17:54:57 -07001202 break;
1203 }
1204
1205 return b;
1206}
1207
1208static s32 iwl4965_interpolate_value(s32 x, s32 x1, s32 y1, s32 x2, s32 y2)
1209{
1210 s32 val;
1211
1212 if (x2 == x1)
1213 return y1;
1214 else {
1215 iwl4965_math_div_round((x2 - x) * (y1 - y2), (x2 - x1), &val);
1216 return val + y2;
1217 }
1218}
1219
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08001220/**
1221 * iwl4965_interpolate_chan - Interpolate factory measurements for one channel
1222 *
1223 * Interpolates factory measurements from the two sample channels within a
1224 * sub-band, to apply to channel of interest. Interpolation is proportional to
1225 * differences in channel frequencies, which is proportional to differences
1226 * in channel number.
1227 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001228static int iwl4965_interpolate_chan(struct iwl_priv *priv, u32 channel,
Tomas Winkler073d3f52008-04-21 15:41:52 -07001229 struct iwl_eeprom_calib_ch_info *chan_info)
Zhu Yib481de92007-09-25 17:54:57 -07001230{
1231 s32 s = -1;
1232 u32 c;
1233 u32 m;
Tomas Winkler073d3f52008-04-21 15:41:52 -07001234 const struct iwl_eeprom_calib_measure *m1;
1235 const struct iwl_eeprom_calib_measure *m2;
1236 struct iwl_eeprom_calib_measure *omeas;
Zhu Yib481de92007-09-25 17:54:57 -07001237 u32 ch_i1;
1238 u32 ch_i2;
1239
1240 s = iwl4965_get_sub_band(priv, channel);
1241 if (s >= EEPROM_TX_POWER_BANDS) {
1242 IWL_ERROR("Tx Power can not find channel %d ", channel);
1243 return -1;
1244 }
1245
Tomas Winkler073d3f52008-04-21 15:41:52 -07001246 ch_i1 = priv->calib_info->band_info[s].ch1.ch_num;
1247 ch_i2 = priv->calib_info->band_info[s].ch2.ch_num;
Zhu Yib481de92007-09-25 17:54:57 -07001248 chan_info->ch_num = (u8) channel;
1249
1250 IWL_DEBUG_TXPOWER("channel %d subband %d factory cal ch %d & %d\n",
1251 channel, s, ch_i1, ch_i2);
1252
1253 for (c = 0; c < EEPROM_TX_POWER_TX_CHAINS; c++) {
1254 for (m = 0; m < EEPROM_TX_POWER_MEASUREMENTS; m++) {
Tomas Winkler073d3f52008-04-21 15:41:52 -07001255 m1 = &(priv->calib_info->band_info[s].ch1.
Zhu Yib481de92007-09-25 17:54:57 -07001256 measurements[c][m]);
Tomas Winkler073d3f52008-04-21 15:41:52 -07001257 m2 = &(priv->calib_info->band_info[s].ch2.
Zhu Yib481de92007-09-25 17:54:57 -07001258 measurements[c][m]);
1259 omeas = &(chan_info->measurements[c][m]);
1260
1261 omeas->actual_pow =
1262 (u8) iwl4965_interpolate_value(channel, ch_i1,
1263 m1->actual_pow,
1264 ch_i2,
1265 m2->actual_pow);
1266 omeas->gain_idx =
1267 (u8) iwl4965_interpolate_value(channel, ch_i1,
1268 m1->gain_idx, ch_i2,
1269 m2->gain_idx);
1270 omeas->temperature =
1271 (u8) iwl4965_interpolate_value(channel, ch_i1,
1272 m1->temperature,
1273 ch_i2,
1274 m2->temperature);
1275 omeas->pa_det =
1276 (s8) iwl4965_interpolate_value(channel, ch_i1,
1277 m1->pa_det, ch_i2,
1278 m2->pa_det);
1279
1280 IWL_DEBUG_TXPOWER
1281 ("chain %d meas %d AP1=%d AP2=%d AP=%d\n", c, m,
1282 m1->actual_pow, m2->actual_pow, omeas->actual_pow);
1283 IWL_DEBUG_TXPOWER
1284 ("chain %d meas %d NI1=%d NI2=%d NI=%d\n", c, m,
1285 m1->gain_idx, m2->gain_idx, omeas->gain_idx);
1286 IWL_DEBUG_TXPOWER
1287 ("chain %d meas %d PA1=%d PA2=%d PA=%d\n", c, m,
1288 m1->pa_det, m2->pa_det, omeas->pa_det);
1289 IWL_DEBUG_TXPOWER
1290 ("chain %d meas %d T1=%d T2=%d T=%d\n", c, m,
1291 m1->temperature, m2->temperature,
1292 omeas->temperature);
1293 }
1294 }
1295
1296 return 0;
1297}
1298
1299/* bit-rate-dependent table to prevent Tx distortion, in half-dB units,
1300 * for OFDM 6, 12, 18, 24, 36, 48, 54, 60 MBit, and CCK all rates. */
1301static s32 back_off_table[] = {
1302 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM SISO 20 MHz */
1303 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM MIMO 20 MHz */
1304 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM SISO 40 MHz */
1305 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM MIMO 40 MHz */
1306 10 /* CCK */
1307};
1308
1309/* Thermal compensation values for txpower for various frequency ranges ...
1310 * ratios from 3:1 to 4.5:1 of degrees (Celsius) per half-dB gain adjust */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001311static struct iwl4965_txpower_comp_entry {
Zhu Yib481de92007-09-25 17:54:57 -07001312 s32 degrees_per_05db_a;
1313 s32 degrees_per_05db_a_denom;
1314} tx_power_cmp_tble[CALIB_CH_GROUP_MAX] = {
1315 {9, 2}, /* group 0 5.2, ch 34-43 */
1316 {4, 1}, /* group 1 5.2, ch 44-70 */
1317 {4, 1}, /* group 2 5.2, ch 71-124 */
1318 {4, 1}, /* group 3 5.2, ch 125-200 */
1319 {3, 1} /* group 4 2.4, ch all */
1320};
1321
1322static s32 get_min_power_index(s32 rate_power_index, u32 band)
1323{
1324 if (!band) {
1325 if ((rate_power_index & 7) <= 4)
1326 return MIN_TX_GAIN_INDEX_52GHZ_EXT;
1327 }
1328 return MIN_TX_GAIN_INDEX;
1329}
1330
1331struct gain_entry {
1332 u8 dsp;
1333 u8 radio;
1334};
1335
1336static const struct gain_entry gain_table[2][108] = {
1337 /* 5.2GHz power gain index table */
1338 {
1339 {123, 0x3F}, /* highest txpower */
1340 {117, 0x3F},
1341 {110, 0x3F},
1342 {104, 0x3F},
1343 {98, 0x3F},
1344 {110, 0x3E},
1345 {104, 0x3E},
1346 {98, 0x3E},
1347 {110, 0x3D},
1348 {104, 0x3D},
1349 {98, 0x3D},
1350 {110, 0x3C},
1351 {104, 0x3C},
1352 {98, 0x3C},
1353 {110, 0x3B},
1354 {104, 0x3B},
1355 {98, 0x3B},
1356 {110, 0x3A},
1357 {104, 0x3A},
1358 {98, 0x3A},
1359 {110, 0x39},
1360 {104, 0x39},
1361 {98, 0x39},
1362 {110, 0x38},
1363 {104, 0x38},
1364 {98, 0x38},
1365 {110, 0x37},
1366 {104, 0x37},
1367 {98, 0x37},
1368 {110, 0x36},
1369 {104, 0x36},
1370 {98, 0x36},
1371 {110, 0x35},
1372 {104, 0x35},
1373 {98, 0x35},
1374 {110, 0x34},
1375 {104, 0x34},
1376 {98, 0x34},
1377 {110, 0x33},
1378 {104, 0x33},
1379 {98, 0x33},
1380 {110, 0x32},
1381 {104, 0x32},
1382 {98, 0x32},
1383 {110, 0x31},
1384 {104, 0x31},
1385 {98, 0x31},
1386 {110, 0x30},
1387 {104, 0x30},
1388 {98, 0x30},
1389 {110, 0x25},
1390 {104, 0x25},
1391 {98, 0x25},
1392 {110, 0x24},
1393 {104, 0x24},
1394 {98, 0x24},
1395 {110, 0x23},
1396 {104, 0x23},
1397 {98, 0x23},
1398 {110, 0x22},
1399 {104, 0x18},
1400 {98, 0x18},
1401 {110, 0x17},
1402 {104, 0x17},
1403 {98, 0x17},
1404 {110, 0x16},
1405 {104, 0x16},
1406 {98, 0x16},
1407 {110, 0x15},
1408 {104, 0x15},
1409 {98, 0x15},
1410 {110, 0x14},
1411 {104, 0x14},
1412 {98, 0x14},
1413 {110, 0x13},
1414 {104, 0x13},
1415 {98, 0x13},
1416 {110, 0x12},
1417 {104, 0x08},
1418 {98, 0x08},
1419 {110, 0x07},
1420 {104, 0x07},
1421 {98, 0x07},
1422 {110, 0x06},
1423 {104, 0x06},
1424 {98, 0x06},
1425 {110, 0x05},
1426 {104, 0x05},
1427 {98, 0x05},
1428 {110, 0x04},
1429 {104, 0x04},
1430 {98, 0x04},
1431 {110, 0x03},
1432 {104, 0x03},
1433 {98, 0x03},
1434 {110, 0x02},
1435 {104, 0x02},
1436 {98, 0x02},
1437 {110, 0x01},
1438 {104, 0x01},
1439 {98, 0x01},
1440 {110, 0x00},
1441 {104, 0x00},
1442 {98, 0x00},
1443 {93, 0x00},
1444 {88, 0x00},
1445 {83, 0x00},
1446 {78, 0x00},
1447 },
1448 /* 2.4GHz power gain index table */
1449 {
1450 {110, 0x3f}, /* highest txpower */
1451 {104, 0x3f},
1452 {98, 0x3f},
1453 {110, 0x3e},
1454 {104, 0x3e},
1455 {98, 0x3e},
1456 {110, 0x3d},
1457 {104, 0x3d},
1458 {98, 0x3d},
1459 {110, 0x3c},
1460 {104, 0x3c},
1461 {98, 0x3c},
1462 {110, 0x3b},
1463 {104, 0x3b},
1464 {98, 0x3b},
1465 {110, 0x3a},
1466 {104, 0x3a},
1467 {98, 0x3a},
1468 {110, 0x39},
1469 {104, 0x39},
1470 {98, 0x39},
1471 {110, 0x38},
1472 {104, 0x38},
1473 {98, 0x38},
1474 {110, 0x37},
1475 {104, 0x37},
1476 {98, 0x37},
1477 {110, 0x36},
1478 {104, 0x36},
1479 {98, 0x36},
1480 {110, 0x35},
1481 {104, 0x35},
1482 {98, 0x35},
1483 {110, 0x34},
1484 {104, 0x34},
1485 {98, 0x34},
1486 {110, 0x33},
1487 {104, 0x33},
1488 {98, 0x33},
1489 {110, 0x32},
1490 {104, 0x32},
1491 {98, 0x32},
1492 {110, 0x31},
1493 {104, 0x31},
1494 {98, 0x31},
1495 {110, 0x30},
1496 {104, 0x30},
1497 {98, 0x30},
1498 {110, 0x6},
1499 {104, 0x6},
1500 {98, 0x6},
1501 {110, 0x5},
1502 {104, 0x5},
1503 {98, 0x5},
1504 {110, 0x4},
1505 {104, 0x4},
1506 {98, 0x4},
1507 {110, 0x3},
1508 {104, 0x3},
1509 {98, 0x3},
1510 {110, 0x2},
1511 {104, 0x2},
1512 {98, 0x2},
1513 {110, 0x1},
1514 {104, 0x1},
1515 {98, 0x1},
1516 {110, 0x0},
1517 {104, 0x0},
1518 {98, 0x0},
1519 {97, 0},
1520 {96, 0},
1521 {95, 0},
1522 {94, 0},
1523 {93, 0},
1524 {92, 0},
1525 {91, 0},
1526 {90, 0},
1527 {89, 0},
1528 {88, 0},
1529 {87, 0},
1530 {86, 0},
1531 {85, 0},
1532 {84, 0},
1533 {83, 0},
1534 {82, 0},
1535 {81, 0},
1536 {80, 0},
1537 {79, 0},
1538 {78, 0},
1539 {77, 0},
1540 {76, 0},
1541 {75, 0},
1542 {74, 0},
1543 {73, 0},
1544 {72, 0},
1545 {71, 0},
1546 {70, 0},
1547 {69, 0},
1548 {68, 0},
1549 {67, 0},
1550 {66, 0},
1551 {65, 0},
1552 {64, 0},
1553 {63, 0},
1554 {62, 0},
1555 {61, 0},
1556 {60, 0},
1557 {59, 0},
1558 }
1559};
1560
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001561static int iwl4965_fill_txpower_tbl(struct iwl_priv *priv, u8 band, u16 channel,
Zhu Yib481de92007-09-25 17:54:57 -07001562 u8 is_fat, u8 ctrl_chan_high,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001563 struct iwl4965_tx_power_db *tx_power_tbl)
Zhu Yib481de92007-09-25 17:54:57 -07001564{
1565 u8 saturation_power;
1566 s32 target_power;
1567 s32 user_target_power;
1568 s32 power_limit;
1569 s32 current_temp;
1570 s32 reg_limit;
1571 s32 current_regulatory;
1572 s32 txatten_grp = CALIB_CH_GROUP_MAX;
1573 int i;
1574 int c;
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001575 const struct iwl_channel_info *ch_info = NULL;
Tomas Winkler073d3f52008-04-21 15:41:52 -07001576 struct iwl_eeprom_calib_ch_info ch_eeprom_info;
1577 const struct iwl_eeprom_calib_measure *measurement;
Zhu Yib481de92007-09-25 17:54:57 -07001578 s16 voltage;
1579 s32 init_voltage;
1580 s32 voltage_compensation;
1581 s32 degrees_per_05db_num;
1582 s32 degrees_per_05db_denom;
1583 s32 factory_temp;
1584 s32 temperature_comp[2];
1585 s32 factory_gain_index[2];
1586 s32 factory_actual_pwr[2];
1587 s32 power_index;
1588
1589 /* Sanity check requested level (dBm) */
1590 if (priv->user_txpower_limit < IWL_TX_POWER_TARGET_POWER_MIN) {
1591 IWL_WARNING("Requested user TXPOWER %d below limit.\n",
1592 priv->user_txpower_limit);
1593 return -EINVAL;
1594 }
1595 if (priv->user_txpower_limit > IWL_TX_POWER_TARGET_POWER_MAX) {
1596 IWL_WARNING("Requested user TXPOWER %d above limit.\n",
1597 priv->user_txpower_limit);
1598 return -EINVAL;
1599 }
1600
1601 /* user_txpower_limit is in dBm, convert to half-dBm (half-dB units
1602 * are used for indexing into txpower table) */
1603 user_target_power = 2 * priv->user_txpower_limit;
1604
1605 /* Get current (RXON) channel, band, width */
1606 ch_info =
Johannes Berg8318d782008-01-24 19:38:38 +01001607 iwl4965_get_channel_txpower_info(priv, priv->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07001608
1609 IWL_DEBUG_TXPOWER("chan %d band %d is_fat %d\n", channel, band,
1610 is_fat);
1611
1612 if (!ch_info)
1613 return -EINVAL;
1614
1615 /* get txatten group, used to select 1) thermal txpower adjustment
1616 * and 2) mimo txpower balance between Tx chains. */
1617 txatten_grp = iwl4965_get_tx_atten_grp(channel);
1618 if (txatten_grp < 0)
1619 return -EINVAL;
1620
1621 IWL_DEBUG_TXPOWER("channel %d belongs to txatten group %d\n",
1622 channel, txatten_grp);
1623
1624 if (is_fat) {
1625 if (ctrl_chan_high)
1626 channel -= 2;
1627 else
1628 channel += 2;
1629 }
1630
1631 /* hardware txpower limits ...
1632 * saturation (clipping distortion) txpowers are in half-dBm */
1633 if (band)
Tomas Winkler073d3f52008-04-21 15:41:52 -07001634 saturation_power = priv->calib_info->saturation_power24;
Zhu Yib481de92007-09-25 17:54:57 -07001635 else
Tomas Winkler073d3f52008-04-21 15:41:52 -07001636 saturation_power = priv->calib_info->saturation_power52;
Zhu Yib481de92007-09-25 17:54:57 -07001637
1638 if (saturation_power < IWL_TX_POWER_SATURATION_MIN ||
1639 saturation_power > IWL_TX_POWER_SATURATION_MAX) {
1640 if (band)
1641 saturation_power = IWL_TX_POWER_DEFAULT_SATURATION_24;
1642 else
1643 saturation_power = IWL_TX_POWER_DEFAULT_SATURATION_52;
1644 }
1645
1646 /* regulatory txpower limits ... reg_limit values are in half-dBm,
1647 * max_power_avg values are in dBm, convert * 2 */
1648 if (is_fat)
1649 reg_limit = ch_info->fat_max_power_avg * 2;
1650 else
1651 reg_limit = ch_info->max_power_avg * 2;
1652
1653 if ((reg_limit < IWL_TX_POWER_REGULATORY_MIN) ||
1654 (reg_limit > IWL_TX_POWER_REGULATORY_MAX)) {
1655 if (band)
1656 reg_limit = IWL_TX_POWER_DEFAULT_REGULATORY_24;
1657 else
1658 reg_limit = IWL_TX_POWER_DEFAULT_REGULATORY_52;
1659 }
1660
1661 /* Interpolate txpower calibration values for this channel,
1662 * based on factory calibration tests on spaced channels. */
1663 iwl4965_interpolate_chan(priv, channel, &ch_eeprom_info);
1664
1665 /* calculate tx gain adjustment based on power supply voltage */
Tomas Winkler073d3f52008-04-21 15:41:52 -07001666 voltage = priv->calib_info->voltage;
Zhu Yib481de92007-09-25 17:54:57 -07001667 init_voltage = (s32)le32_to_cpu(priv->card_alive_init.voltage);
1668 voltage_compensation =
1669 iwl4965_get_voltage_compensation(voltage, init_voltage);
1670
1671 IWL_DEBUG_TXPOWER("curr volt %d eeprom volt %d volt comp %d\n",
1672 init_voltage,
1673 voltage, voltage_compensation);
1674
1675 /* get current temperature (Celsius) */
1676 current_temp = max(priv->temperature, IWL_TX_POWER_TEMPERATURE_MIN);
1677 current_temp = min(priv->temperature, IWL_TX_POWER_TEMPERATURE_MAX);
1678 current_temp = KELVIN_TO_CELSIUS(current_temp);
1679
1680 /* select thermal txpower adjustment params, based on channel group
1681 * (same frequency group used for mimo txatten adjustment) */
1682 degrees_per_05db_num =
1683 tx_power_cmp_tble[txatten_grp].degrees_per_05db_a;
1684 degrees_per_05db_denom =
1685 tx_power_cmp_tble[txatten_grp].degrees_per_05db_a_denom;
1686
1687 /* get per-chain txpower values from factory measurements */
1688 for (c = 0; c < 2; c++) {
1689 measurement = &ch_eeprom_info.measurements[c][1];
1690
1691 /* txgain adjustment (in half-dB steps) based on difference
1692 * between factory and current temperature */
1693 factory_temp = measurement->temperature;
1694 iwl4965_math_div_round((current_temp - factory_temp) *
1695 degrees_per_05db_denom,
1696 degrees_per_05db_num,
1697 &temperature_comp[c]);
1698
1699 factory_gain_index[c] = measurement->gain_idx;
1700 factory_actual_pwr[c] = measurement->actual_pow;
1701
1702 IWL_DEBUG_TXPOWER("chain = %d\n", c);
1703 IWL_DEBUG_TXPOWER("fctry tmp %d, "
1704 "curr tmp %d, comp %d steps\n",
1705 factory_temp, current_temp,
1706 temperature_comp[c]);
1707
1708 IWL_DEBUG_TXPOWER("fctry idx %d, fctry pwr %d\n",
1709 factory_gain_index[c],
1710 factory_actual_pwr[c]);
1711 }
1712
1713 /* for each of 33 bit-rates (including 1 for CCK) */
1714 for (i = 0; i < POWER_TABLE_NUM_ENTRIES; i++) {
1715 u8 is_mimo_rate;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001716 union iwl4965_tx_power_dual_stream tx_power;
Zhu Yib481de92007-09-25 17:54:57 -07001717
1718 /* for mimo, reduce each chain's txpower by half
1719 * (3dB, 6 steps), so total output power is regulatory
1720 * compliant. */
1721 if (i & 0x8) {
1722 current_regulatory = reg_limit -
1723 IWL_TX_POWER_MIMO_REGULATORY_COMPENSATION;
1724 is_mimo_rate = 1;
1725 } else {
1726 current_regulatory = reg_limit;
1727 is_mimo_rate = 0;
1728 }
1729
1730 /* find txpower limit, either hardware or regulatory */
1731 power_limit = saturation_power - back_off_table[i];
1732 if (power_limit > current_regulatory)
1733 power_limit = current_regulatory;
1734
1735 /* reduce user's txpower request if necessary
1736 * for this rate on this channel */
1737 target_power = user_target_power;
1738 if (target_power > power_limit)
1739 target_power = power_limit;
1740
1741 IWL_DEBUG_TXPOWER("rate %d sat %d reg %d usr %d tgt %d\n",
1742 i, saturation_power - back_off_table[i],
1743 current_regulatory, user_target_power,
1744 target_power);
1745
1746 /* for each of 2 Tx chains (radio transmitters) */
1747 for (c = 0; c < 2; c++) {
1748 s32 atten_value;
1749
1750 if (is_mimo_rate)
1751 atten_value =
1752 (s32)le32_to_cpu(priv->card_alive_init.
1753 tx_atten[txatten_grp][c]);
1754 else
1755 atten_value = 0;
1756
1757 /* calculate index; higher index means lower txpower */
1758 power_index = (u8) (factory_gain_index[c] -
1759 (target_power -
1760 factory_actual_pwr[c]) -
1761 temperature_comp[c] -
1762 voltage_compensation +
1763 atten_value);
1764
1765/* IWL_DEBUG_TXPOWER("calculated txpower index %d\n",
1766 power_index); */
1767
1768 if (power_index < get_min_power_index(i, band))
1769 power_index = get_min_power_index(i, band);
1770
1771 /* adjust 5 GHz index to support negative indexes */
1772 if (!band)
1773 power_index += 9;
1774
1775 /* CCK, rate 32, reduce txpower for CCK */
1776 if (i == POWER_TABLE_CCK_ENTRY)
1777 power_index +=
1778 IWL_TX_POWER_CCK_COMPENSATION_C_STEP;
1779
1780 /* stay within the table! */
1781 if (power_index > 107) {
1782 IWL_WARNING("txpower index %d > 107\n",
1783 power_index);
1784 power_index = 107;
1785 }
1786 if (power_index < 0) {
1787 IWL_WARNING("txpower index %d < 0\n",
1788 power_index);
1789 power_index = 0;
1790 }
1791
1792 /* fill txpower command for this rate/chain */
1793 tx_power.s.radio_tx_gain[c] =
1794 gain_table[band][power_index].radio;
1795 tx_power.s.dsp_predis_atten[c] =
1796 gain_table[band][power_index].dsp;
1797
1798 IWL_DEBUG_TXPOWER("chain %d mimo %d index %d "
1799 "gain 0x%02x dsp %d\n",
1800 c, atten_value, power_index,
1801 tx_power.s.radio_tx_gain[c],
1802 tx_power.s.dsp_predis_atten[c]);
1803 }/* for each chain */
1804
1805 tx_power_tbl->power_tbl[i].dw = cpu_to_le32(tx_power.dw);
1806
1807 }/* for each rate */
1808
1809 return 0;
1810}
1811
1812/**
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001813 * iwl4965_hw_reg_send_txpower - Configure the TXPOWER level user limit
Zhu Yib481de92007-09-25 17:54:57 -07001814 *
1815 * Uses the active RXON for channel, band, and characteristics (fat, high)
1816 * The power limit is taken from priv->user_txpower_limit.
1817 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001818int iwl4965_hw_reg_send_txpower(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001819{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001820 struct iwl4965_txpowertable_cmd cmd = { 0 };
Tomas Winkler857485c2008-03-21 13:53:44 -07001821 int ret;
Zhu Yib481de92007-09-25 17:54:57 -07001822 u8 band = 0;
1823 u8 is_fat = 0;
1824 u8 ctrl_chan_high = 0;
1825
1826 if (test_bit(STATUS_SCANNING, &priv->status)) {
1827 /* If this gets hit a lot, switch it to a BUG() and catch
1828 * the stack trace to find out who is calling this during
1829 * a scan. */
1830 IWL_WARNING("TX Power requested while scanning!\n");
1831 return -EAGAIN;
1832 }
1833
Johannes Berg8318d782008-01-24 19:38:38 +01001834 band = priv->band == IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07001835
1836 is_fat = is_fat_channel(priv->active_rxon.flags);
1837
1838 if (is_fat &&
1839 (priv->active_rxon.flags & RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK))
1840 ctrl_chan_high = 1;
1841
1842 cmd.band = band;
1843 cmd.channel = priv->active_rxon.channel;
1844
Tomas Winkler857485c2008-03-21 13:53:44 -07001845 ret = iwl4965_fill_txpower_tbl(priv, band,
Zhu Yib481de92007-09-25 17:54:57 -07001846 le16_to_cpu(priv->active_rxon.channel),
1847 is_fat, ctrl_chan_high, &cmd.tx_power);
Tomas Winkler857485c2008-03-21 13:53:44 -07001848 if (ret)
1849 goto out;
Zhu Yib481de92007-09-25 17:54:57 -07001850
Tomas Winkler857485c2008-03-21 13:53:44 -07001851 ret = iwl_send_cmd_pdu(priv, REPLY_TX_PWR_TABLE_CMD, sizeof(cmd), &cmd);
1852
1853out:
1854 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07001855}
1856
Tomas Winkler7e8c5192008-04-15 16:01:43 -07001857static int iwl4965_send_rxon_assoc(struct iwl_priv *priv)
1858{
1859 int ret = 0;
1860 struct iwl4965_rxon_assoc_cmd rxon_assoc;
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001861 const struct iwl_rxon_cmd *rxon1 = &priv->staging_rxon;
1862 const struct iwl_rxon_cmd *rxon2 = &priv->active_rxon;
Tomas Winkler7e8c5192008-04-15 16:01:43 -07001863
1864 if ((rxon1->flags == rxon2->flags) &&
1865 (rxon1->filter_flags == rxon2->filter_flags) &&
1866 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1867 (rxon1->ofdm_ht_single_stream_basic_rates ==
1868 rxon2->ofdm_ht_single_stream_basic_rates) &&
1869 (rxon1->ofdm_ht_dual_stream_basic_rates ==
1870 rxon2->ofdm_ht_dual_stream_basic_rates) &&
1871 (rxon1->rx_chain == rxon2->rx_chain) &&
1872 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
1873 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
1874 return 0;
1875 }
1876
1877 rxon_assoc.flags = priv->staging_rxon.flags;
1878 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1879 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1880 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1881 rxon_assoc.reserved = 0;
1882 rxon_assoc.ofdm_ht_single_stream_basic_rates =
1883 priv->staging_rxon.ofdm_ht_single_stream_basic_rates;
1884 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
1885 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates;
1886 rxon_assoc.rx_chain_select_flags = priv->staging_rxon.rx_chain;
1887
1888 ret = iwl_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
1889 sizeof(rxon_assoc), &rxon_assoc, NULL);
1890 if (ret)
1891 return ret;
1892
1893 return ret;
1894}
1895
1896
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001897int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel)
Zhu Yib481de92007-09-25 17:54:57 -07001898{
1899 int rc;
1900 u8 band = 0;
1901 u8 is_fat = 0;
1902 u8 ctrl_chan_high = 0;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001903 struct iwl4965_channel_switch_cmd cmd = { 0 };
Assaf Kraussbf85ea42008-03-14 10:38:49 -07001904 const struct iwl_channel_info *ch_info;
Zhu Yib481de92007-09-25 17:54:57 -07001905
Johannes Berg8318d782008-01-24 19:38:38 +01001906 band = priv->band == IEEE80211_BAND_2GHZ;
Zhu Yib481de92007-09-25 17:54:57 -07001907
Assaf Krauss8622e702008-03-21 13:53:43 -07001908 ch_info = iwl_get_channel_info(priv, priv->band, channel);
Zhu Yib481de92007-09-25 17:54:57 -07001909
1910 is_fat = is_fat_channel(priv->staging_rxon.flags);
1911
1912 if (is_fat &&
1913 (priv->active_rxon.flags & RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK))
1914 ctrl_chan_high = 1;
1915
1916 cmd.band = band;
1917 cmd.expect_beacon = 0;
1918 cmd.channel = cpu_to_le16(channel);
1919 cmd.rxon_flags = priv->active_rxon.flags;
1920 cmd.rxon_filter_flags = priv->active_rxon.filter_flags;
1921 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
1922 if (ch_info)
1923 cmd.expect_beacon = is_channel_radar(ch_info);
1924 else
1925 cmd.expect_beacon = 1;
1926
1927 rc = iwl4965_fill_txpower_tbl(priv, band, channel, is_fat,
1928 ctrl_chan_high, &cmd.tx_power);
1929 if (rc) {
1930 IWL_DEBUG_11H("error:%d fill txpower_tbl\n", rc);
1931 return rc;
1932 }
1933
Tomas Winkler857485c2008-03-21 13:53:44 -07001934 rc = iwl_send_cmd_pdu(priv, REPLY_CHANNEL_SWITCH, sizeof(cmd), &cmd);
Zhu Yib481de92007-09-25 17:54:57 -07001935 return rc;
1936}
1937
Ron Rindjunskyd67f5482008-05-05 10:22:49 +08001938static int iwl4965_shared_mem_rx_idx(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001939{
Tomas Winkler059ff822008-04-14 21:16:14 -07001940 struct iwl4965_shared *s = priv->shared_virt;
1941 return le32_to_cpu(s->rb_closed) & 0xFFF;
Zhu Yib481de92007-09-25 17:54:57 -07001942}
1943
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001944int iwl4965_hw_get_temperature(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07001945{
1946 return priv->temperature;
1947}
1948
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07001949unsigned int iwl4965_hw_get_beacon_cmd(struct iwl_priv *priv,
Tomas Winklerfcab4232008-05-15 13:54:01 +08001950 struct iwl_frame *frame, u8 rate)
Zhu Yib481de92007-09-25 17:54:57 -07001951{
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001952 struct iwl4965_tx_beacon_cmd *tx_beacon_cmd;
Zhu Yib481de92007-09-25 17:54:57 -07001953 unsigned int frame_size;
1954
1955 tx_beacon_cmd = &frame->u.beacon;
1956 memset(tx_beacon_cmd, 0, sizeof(*tx_beacon_cmd));
1957
Tomas Winkler5425e492008-04-15 16:01:38 -07001958 tx_beacon_cmd->tx.sta_id = priv->hw_params.bcast_sta_id;
Zhu Yib481de92007-09-25 17:54:57 -07001959 tx_beacon_cmd->tx.stop_time.life_time = TX_CMD_LIFE_TIME_INFINITE;
1960
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001961 frame_size = iwl4965_fill_beacon_frame(priv,
Zhu Yib481de92007-09-25 17:54:57 -07001962 tx_beacon_cmd->frame,
Tomas Winkler57bd1be2008-05-15 13:54:03 +08001963 iwl_bcast_addr,
Zhu Yib481de92007-09-25 17:54:57 -07001964 sizeof(frame->u) - sizeof(*tx_beacon_cmd));
1965
1966 BUG_ON(frame_size > MAX_MPDU_SIZE);
1967 tx_beacon_cmd->tx.len = cpu_to_le16((u16)frame_size);
1968
1969 if ((rate == IWL_RATE_1M_PLCP) || (rate >= IWL_RATE_2M_PLCP))
1970 tx_beacon_cmd->tx.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001971 iwl4965_hw_set_rate_n_flags(rate, RATE_MCS_CCK_MSK);
Zhu Yib481de92007-09-25 17:54:57 -07001972 else
1973 tx_beacon_cmd->tx.rate_n_flags =
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08001974 iwl4965_hw_set_rate_n_flags(rate, 0);
Zhu Yib481de92007-09-25 17:54:57 -07001975
1976 tx_beacon_cmd->tx.tx_flags = (TX_CMD_FLG_SEQ_CTL_MSK |
1977 TX_CMD_FLG_TSF_MSK | TX_CMD_FLG_STA_RATE_MSK);
1978 return (sizeof(*tx_beacon_cmd) + frame_size);
1979}
1980
Ron Rindjunsky399f4902008-04-23 17:14:56 -07001981static int iwl4965_alloc_shared_mem(struct iwl_priv *priv)
1982{
1983 priv->shared_virt = pci_alloc_consistent(priv->pci_dev,
1984 sizeof(struct iwl4965_shared),
1985 &priv->shared_phys);
1986 if (!priv->shared_virt)
1987 return -ENOMEM;
1988
1989 memset(priv->shared_virt, 0, sizeof(struct iwl4965_shared));
1990
Ron Rindjunskyd67f5482008-05-05 10:22:49 +08001991 priv->rb_closed_offset = offsetof(struct iwl4965_shared, rb_closed);
1992
Ron Rindjunsky399f4902008-04-23 17:14:56 -07001993 return 0;
1994}
1995
1996static void iwl4965_free_shared_mem(struct iwl_priv *priv)
1997{
1998 if (priv->shared_virt)
1999 pci_free_consistent(priv->pci_dev,
2000 sizeof(struct iwl4965_shared),
2001 priv->shared_virt,
2002 priv->shared_phys);
2003}
2004
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002005/**
Tomas Winklere2a722e2008-04-14 21:16:10 -07002006 * iwl4965_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002007 */
Tomas Winklere2a722e2008-04-14 21:16:10 -07002008static void iwl4965_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
Ron Rindjunsky16466902008-05-05 10:22:50 +08002009 struct iwl_tx_queue *txq,
Tomas Winklere2a722e2008-04-14 21:16:10 -07002010 u16 byte_cnt)
Zhu Yib481de92007-09-25 17:54:57 -07002011{
2012 int len;
2013 int txq_id = txq->q.id;
Tomas Winkler059ff822008-04-14 21:16:14 -07002014 struct iwl4965_shared *shared_data = priv->shared_virt;
Zhu Yib481de92007-09-25 17:54:57 -07002015
Zhu Yib481de92007-09-25 17:54:57 -07002016 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
2017
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002018 /* Set up byte count within first 256 entries */
Zhu Yib481de92007-09-25 17:54:57 -07002019 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
Tomas Winklerfc4b6852007-10-25 17:15:24 +08002020 tfd_offset[txq->q.write_ptr], byte_cnt, len);
Zhu Yib481de92007-09-25 17:54:57 -07002021
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002022 /* If within first 64 entries, duplicate at end */
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07002023 if (txq->q.write_ptr < IWL49_MAX_WIN_SIZE)
Zhu Yib481de92007-09-25 17:54:57 -07002024 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07002025 tfd_offset[IWL49_QUEUE_SIZE + txq->q.write_ptr],
Zhu Yib481de92007-09-25 17:54:57 -07002026 byte_cnt, len);
Zhu Yib481de92007-09-25 17:54:57 -07002027}
2028
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002029/**
Zhu Yib481de92007-09-25 17:54:57 -07002030 * sign_extend - Sign extend a value using specified bit as sign-bit
2031 *
2032 * Example: sign_extend(9, 3) would return -7 as bit3 of 1001b is 1
2033 * and bit0..2 is 001b which when sign extended to 1111111111111001b is -7.
2034 *
2035 * @param oper value to sign extend
2036 * @param index 0 based bit index (0<=index<32) to sign bit
2037 */
2038static s32 sign_extend(u32 oper, int index)
2039{
2040 u8 shift = 31 - index;
2041
2042 return (s32)(oper << shift) >> shift;
2043}
2044
2045/**
2046 * iwl4965_get_temperature - return the calibrated temperature (in Kelvin)
2047 * @statistics: Provides the temperature reading from the uCode
2048 *
2049 * A return of <0 indicates bogus data in the statistics
2050 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002051int iwl4965_get_temperature(const struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002052{
2053 s32 temperature;
2054 s32 vt;
2055 s32 R1, R2, R3;
2056 u32 R4;
2057
2058 if (test_bit(STATUS_TEMPERATURE, &priv->status) &&
2059 (priv->statistics.flag & STATISTICS_REPLY_FLG_FAT_MODE_MSK)) {
2060 IWL_DEBUG_TEMP("Running FAT temperature calibration\n");
2061 R1 = (s32)le32_to_cpu(priv->card_alive_init.therm_r1[1]);
2062 R2 = (s32)le32_to_cpu(priv->card_alive_init.therm_r2[1]);
2063 R3 = (s32)le32_to_cpu(priv->card_alive_init.therm_r3[1]);
2064 R4 = le32_to_cpu(priv->card_alive_init.therm_r4[1]);
2065 } else {
2066 IWL_DEBUG_TEMP("Running temperature calibration\n");
2067 R1 = (s32)le32_to_cpu(priv->card_alive_init.therm_r1[0]);
2068 R2 = (s32)le32_to_cpu(priv->card_alive_init.therm_r2[0]);
2069 R3 = (s32)le32_to_cpu(priv->card_alive_init.therm_r3[0]);
2070 R4 = le32_to_cpu(priv->card_alive_init.therm_r4[0]);
2071 }
2072
2073 /*
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002074 * Temperature is only 23 bits, so sign extend out to 32.
Zhu Yib481de92007-09-25 17:54:57 -07002075 *
2076 * NOTE If we haven't received a statistics notification yet
2077 * with an updated temperature, use R4 provided to us in the
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002078 * "initialize" ALIVE response.
2079 */
Zhu Yib481de92007-09-25 17:54:57 -07002080 if (!test_bit(STATUS_TEMPERATURE, &priv->status))
2081 vt = sign_extend(R4, 23);
2082 else
2083 vt = sign_extend(
2084 le32_to_cpu(priv->statistics.general.temperature), 23);
2085
2086 IWL_DEBUG_TEMP("Calib values R[1-3]: %d %d %d R4: %d\n",
2087 R1, R2, R3, vt);
2088
2089 if (R3 == R1) {
2090 IWL_ERROR("Calibration conflict R1 == R3\n");
2091 return -1;
2092 }
2093
2094 /* Calculate temperature in degrees Kelvin, adjust by 97%.
2095 * Add offset to center the adjustment around 0 degrees Centigrade. */
2096 temperature = TEMPERATURE_CALIB_A_VAL * (vt - R2);
2097 temperature /= (R3 - R1);
2098 temperature = (temperature * 97) / 100 +
2099 TEMPERATURE_CALIB_KELVIN_OFFSET;
2100
2101 IWL_DEBUG_TEMP("Calibrated temperature: %dK, %dC\n", temperature,
2102 KELVIN_TO_CELSIUS(temperature));
2103
2104 return temperature;
2105}
2106
2107/* Adjust Txpower only if temperature variance is greater than threshold. */
2108#define IWL_TEMPERATURE_THRESHOLD 3
2109
2110/**
2111 * iwl4965_is_temp_calib_needed - determines if new calibration is needed
2112 *
2113 * If the temperature changed has changed sufficiently, then a recalibration
2114 * is needed.
2115 *
2116 * Assumes caller will replace priv->last_temperature once calibration
2117 * executed.
2118 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002119static int iwl4965_is_temp_calib_needed(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002120{
2121 int temp_diff;
2122
2123 if (!test_bit(STATUS_STATISTICS, &priv->status)) {
2124 IWL_DEBUG_TEMP("Temperature not updated -- no statistics.\n");
2125 return 0;
2126 }
2127
2128 temp_diff = priv->temperature - priv->last_temperature;
2129
2130 /* get absolute value */
2131 if (temp_diff < 0) {
2132 IWL_DEBUG_POWER("Getting cooler, delta %d, \n", temp_diff);
2133 temp_diff = -temp_diff;
2134 } else if (temp_diff == 0)
2135 IWL_DEBUG_POWER("Same temp, \n");
2136 else
2137 IWL_DEBUG_POWER("Getting warmer, delta %d, \n", temp_diff);
2138
2139 if (temp_diff < IWL_TEMPERATURE_THRESHOLD) {
2140 IWL_DEBUG_POWER("Thermal txpower calib not needed\n");
2141 return 0;
2142 }
2143
2144 IWL_DEBUG_POWER("Thermal txpower calib needed\n");
2145
2146 return 1;
2147}
2148
2149/* Calculate noise level, based on measurements during network silence just
2150 * before arriving beacon. This measurement can be done only if we know
2151 * exactly when to expect beacons, therefore only when we're associated. */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002152static void iwl4965_rx_calc_noise(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07002153{
2154 struct statistics_rx_non_phy *rx_info
2155 = &(priv->statistics.rx.general);
2156 int num_active_rx = 0;
2157 int total_silence = 0;
2158 int bcn_silence_a =
2159 le32_to_cpu(rx_info->beacon_silence_rssi_a) & IN_BAND_FILTER;
2160 int bcn_silence_b =
2161 le32_to_cpu(rx_info->beacon_silence_rssi_b) & IN_BAND_FILTER;
2162 int bcn_silence_c =
2163 le32_to_cpu(rx_info->beacon_silence_rssi_c) & IN_BAND_FILTER;
2164
2165 if (bcn_silence_a) {
2166 total_silence += bcn_silence_a;
2167 num_active_rx++;
2168 }
2169 if (bcn_silence_b) {
2170 total_silence += bcn_silence_b;
2171 num_active_rx++;
2172 }
2173 if (bcn_silence_c) {
2174 total_silence += bcn_silence_c;
2175 num_active_rx++;
2176 }
2177
2178 /* Average among active antennas */
2179 if (num_active_rx)
2180 priv->last_rx_noise = (total_silence / num_active_rx) - 107;
2181 else
2182 priv->last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
2183
2184 IWL_DEBUG_CALIB("inband silence a %u, b %u, c %u, dBm %d\n",
2185 bcn_silence_a, bcn_silence_b, bcn_silence_c,
2186 priv->last_rx_noise);
2187}
2188
Tomas Winklera55360e2008-05-05 10:22:28 +08002189void iwl4965_hw_rx_statistics(struct iwl_priv *priv,
2190 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002191{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002192 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002193 int change;
2194 s32 temp;
2195
2196 IWL_DEBUG_RX("Statistics notification received (%d vs %d).\n",
2197 (int)sizeof(priv->statistics), pkt->len);
2198
2199 change = ((priv->statistics.general.temperature !=
2200 pkt->u.stats.general.temperature) ||
2201 ((priv->statistics.flag &
2202 STATISTICS_REPLY_FLG_FAT_MODE_MSK) !=
2203 (pkt->u.stats.flag & STATISTICS_REPLY_FLG_FAT_MODE_MSK)));
2204
2205 memcpy(&priv->statistics, &pkt->u.stats, sizeof(priv->statistics));
2206
2207 set_bit(STATUS_STATISTICS, &priv->status);
2208
2209 /* Reschedule the statistics timer to occur in
2210 * REG_RECALIB_PERIOD seconds to ensure we get a
2211 * thermal update even if the uCode doesn't give
2212 * us one */
2213 mod_timer(&priv->statistics_periodic, jiffies +
2214 msecs_to_jiffies(REG_RECALIB_PERIOD * 1000));
2215
2216 if (unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
2217 (pkt->hdr.cmd == STATISTICS_NOTIFICATION)) {
2218 iwl4965_rx_calc_noise(priv);
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07002219#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
Zhu Yib481de92007-09-25 17:54:57 -07002220 queue_work(priv->workqueue, &priv->sensitivity_work);
2221#endif
2222 }
2223
Mohamed Abbasab53d8a2008-03-25 16:33:36 -07002224 iwl_leds_background(priv);
2225
Zhu Yib481de92007-09-25 17:54:57 -07002226 /* If the hardware hasn't reported a change in
2227 * temperature then don't bother computing a
2228 * calibrated temperature value */
2229 if (!change)
2230 return;
2231
2232 temp = iwl4965_get_temperature(priv);
2233 if (temp < 0)
2234 return;
2235
2236 if (priv->temperature != temp) {
2237 if (priv->temperature)
2238 IWL_DEBUG_TEMP("Temperature changed "
2239 "from %dC to %dC\n",
2240 KELVIN_TO_CELSIUS(priv->temperature),
2241 KELVIN_TO_CELSIUS(temp));
2242 else
2243 IWL_DEBUG_TEMP("Temperature "
2244 "initialized to %dC\n",
2245 KELVIN_TO_CELSIUS(temp));
2246 }
2247
2248 priv->temperature = temp;
2249 set_bit(STATUS_TEMPERATURE, &priv->status);
2250
2251 if (unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
2252 iwl4965_is_temp_calib_needed(priv))
2253 queue_work(priv->workqueue, &priv->txpower_work);
2254}
2255
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002256static void iwl4965_add_radiotap(struct iwl_priv *priv,
Zhu Yi12342c42007-12-20 11:27:32 +08002257 struct sk_buff *skb,
2258 struct iwl4965_rx_phy_res *rx_start,
2259 struct ieee80211_rx_status *stats,
2260 u32 ampdu_status)
2261{
Bruno Randolf566bfe52008-05-08 19:15:40 +02002262 s8 signal = stats->signal;
Zhu Yi12342c42007-12-20 11:27:32 +08002263 s8 noise = 0;
Johannes Berg8318d782008-01-24 19:38:38 +01002264 int rate = stats->rate_idx;
Zhu Yi12342c42007-12-20 11:27:32 +08002265 u64 tsf = stats->mactime;
Johannes Berga0b484f2008-04-01 17:51:47 +02002266 __le16 antenna;
Zhu Yi12342c42007-12-20 11:27:32 +08002267 __le16 phy_flags_hw = rx_start->phy_flags;
2268 struct iwl4965_rt_rx_hdr {
2269 struct ieee80211_radiotap_header rt_hdr;
2270 __le64 rt_tsf; /* TSF */
2271 u8 rt_flags; /* radiotap packet flags */
2272 u8 rt_rate; /* rate in 500kb/s */
2273 __le16 rt_channelMHz; /* channel in MHz */
2274 __le16 rt_chbitmask; /* channel bitfield */
2275 s8 rt_dbmsignal; /* signal in dBm, kluged to signed */
2276 s8 rt_dbmnoise;
2277 u8 rt_antenna; /* antenna number */
2278 } __attribute__ ((packed)) *iwl4965_rt;
2279
2280 /* TODO: We won't have enough headroom for HT frames. Fix it later. */
2281 if (skb_headroom(skb) < sizeof(*iwl4965_rt)) {
2282 if (net_ratelimit())
2283 printk(KERN_ERR "not enough headroom [%d] for "
Miguel Botón01c20982008-01-04 23:34:35 +01002284 "radiotap head [%zd]\n",
Zhu Yi12342c42007-12-20 11:27:32 +08002285 skb_headroom(skb), sizeof(*iwl4965_rt));
2286 return;
2287 }
2288
2289 /* put radiotap header in front of 802.11 header and data */
2290 iwl4965_rt = (void *)skb_push(skb, sizeof(*iwl4965_rt));
2291
2292 /* initialise radiotap header */
2293 iwl4965_rt->rt_hdr.it_version = PKTHDR_RADIOTAP_VERSION;
2294 iwl4965_rt->rt_hdr.it_pad = 0;
2295
2296 /* total header + data */
2297 put_unaligned(cpu_to_le16(sizeof(*iwl4965_rt)),
2298 &iwl4965_rt->rt_hdr.it_len);
2299
2300 /* Indicate all the fields we add to the radiotap header */
2301 put_unaligned(cpu_to_le32((1 << IEEE80211_RADIOTAP_TSFT) |
2302 (1 << IEEE80211_RADIOTAP_FLAGS) |
2303 (1 << IEEE80211_RADIOTAP_RATE) |
2304 (1 << IEEE80211_RADIOTAP_CHANNEL) |
2305 (1 << IEEE80211_RADIOTAP_DBM_ANTSIGNAL) |
2306 (1 << IEEE80211_RADIOTAP_DBM_ANTNOISE) |
2307 (1 << IEEE80211_RADIOTAP_ANTENNA)),
2308 &iwl4965_rt->rt_hdr.it_present);
2309
2310 /* Zero the flags, we'll add to them as we go */
2311 iwl4965_rt->rt_flags = 0;
2312
2313 put_unaligned(cpu_to_le64(tsf), &iwl4965_rt->rt_tsf);
2314
2315 iwl4965_rt->rt_dbmsignal = signal;
2316 iwl4965_rt->rt_dbmnoise = noise;
2317
2318 /* Convert the channel frequency and set the flags */
2319 put_unaligned(cpu_to_le16(stats->freq), &iwl4965_rt->rt_channelMHz);
2320 if (!(phy_flags_hw & RX_RES_PHY_FLAGS_BAND_24_MSK))
2321 put_unaligned(cpu_to_le16(IEEE80211_CHAN_OFDM |
2322 IEEE80211_CHAN_5GHZ),
2323 &iwl4965_rt->rt_chbitmask);
2324 else if (phy_flags_hw & RX_RES_PHY_FLAGS_MOD_CCK_MSK)
2325 put_unaligned(cpu_to_le16(IEEE80211_CHAN_CCK |
2326 IEEE80211_CHAN_2GHZ),
2327 &iwl4965_rt->rt_chbitmask);
2328 else /* 802.11g */
2329 put_unaligned(cpu_to_le16(IEEE80211_CHAN_OFDM |
2330 IEEE80211_CHAN_2GHZ),
2331 &iwl4965_rt->rt_chbitmask);
2332
Zhu Yi12342c42007-12-20 11:27:32 +08002333 if (rate == -1)
2334 iwl4965_rt->rt_rate = 0;
2335 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002336 iwl4965_rt->rt_rate = iwl_rates[rate].ieee;
Zhu Yi12342c42007-12-20 11:27:32 +08002337
2338 /*
2339 * "antenna number"
2340 *
2341 * It seems that the antenna field in the phy flags value
2342 * is actually a bitfield. This is undefined by radiotap,
2343 * it wants an actual antenna number but I always get "7"
2344 * for most legacy frames I receive indicating that the
2345 * same frame was received on all three RX chains.
2346 *
2347 * I think this field should be removed in favour of a
2348 * new 802.11n radiotap field "RX chains" that is defined
2349 * as a bitmask.
2350 */
Johannes Berga0b484f2008-04-01 17:51:47 +02002351 antenna = phy_flags_hw & RX_RES_PHY_FLAGS_ANTENNA_MSK;
2352 iwl4965_rt->rt_antenna = le16_to_cpu(antenna) >> 4;
Zhu Yi12342c42007-12-20 11:27:32 +08002353
2354 /* set the preamble flag if appropriate */
2355 if (phy_flags_hw & RX_RES_PHY_FLAGS_SHORT_PREAMBLE_MSK)
2356 iwl4965_rt->rt_flags |= IEEE80211_RADIOTAP_F_SHORTPRE;
2357
2358 stats->flag |= RX_FLAG_RADIOTAP;
2359}
2360
Tomas Winkler19758be2008-03-12 16:58:51 -07002361static void iwl_update_rx_stats(struct iwl_priv *priv, u16 fc, u16 len)
2362{
2363 /* 0 - mgmt, 1 - cnt, 2 - data */
2364 int idx = (fc & IEEE80211_FCTL_FTYPE) >> 2;
2365 priv->rx_stats[idx].cnt++;
2366 priv->rx_stats[idx].bytes += len;
2367}
2368
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002369/*
2370 * returns non-zero if packet should be dropped
2371 */
2372static int iwl4965_set_decrypted_flag(struct iwl_priv *priv,
2373 struct ieee80211_hdr *hdr,
2374 u32 decrypt_res,
2375 struct ieee80211_rx_status *stats)
2376{
2377 u16 fc = le16_to_cpu(hdr->frame_control);
2378
2379 if (priv->active_rxon.filter_flags & RXON_FILTER_DIS_DECRYPT_MSK)
2380 return 0;
2381
2382 if (!(fc & IEEE80211_FCTL_PROTECTED))
2383 return 0;
2384
2385 IWL_DEBUG_RX("decrypt_res:0x%x\n", decrypt_res);
2386 switch (decrypt_res & RX_RES_STATUS_SEC_TYPE_MSK) {
2387 case RX_RES_STATUS_SEC_TYPE_TKIP:
2388 /* The uCode has got a bad phase 1 Key, pushes the packet.
2389 * Decryption will be done in SW. */
2390 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2391 RX_RES_STATUS_BAD_KEY_TTAK)
2392 break;
2393
Emmanuel Grumbachccc038a2008-05-15 13:54:09 +08002394 case RX_RES_STATUS_SEC_TYPE_WEP:
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002395 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2396 RX_RES_STATUS_BAD_ICV_MIC) {
2397 /* bad ICV, the packet is destroyed since the
2398 * decryption is inplace, drop it */
2399 IWL_DEBUG_RX("Packet destroyed\n");
2400 return -1;
2401 }
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002402 case RX_RES_STATUS_SEC_TYPE_CCMP:
2403 if ((decrypt_res & RX_RES_STATUS_DECRYPT_TYPE_MSK) ==
2404 RX_RES_STATUS_DECRYPT_OK) {
2405 IWL_DEBUG_RX("hw decrypt successfully!!!\n");
2406 stats->flag |= RX_FLAG_DECRYPTED;
2407 }
2408 break;
2409
2410 default:
2411 break;
2412 }
2413 return 0;
2414}
2415
Ester Kummerbf403db2008-05-05 10:22:40 +08002416static u32 iwl4965_translate_rx_status(struct iwl_priv *priv, u32 decrypt_in)
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07002417{
2418 u32 decrypt_out = 0;
2419
2420 if ((decrypt_in & RX_RES_STATUS_STATION_FOUND) ==
2421 RX_RES_STATUS_STATION_FOUND)
2422 decrypt_out |= (RX_RES_STATUS_STATION_FOUND |
2423 RX_RES_STATUS_NO_STATION_INFO_MISMATCH);
2424
2425 decrypt_out |= (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK);
2426
2427 /* packet was not encrypted */
2428 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
2429 RX_RES_STATUS_SEC_TYPE_NONE)
2430 return decrypt_out;
2431
2432 /* packet was encrypted with unknown alg */
2433 if ((decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) ==
2434 RX_RES_STATUS_SEC_TYPE_ERR)
2435 return decrypt_out;
2436
2437 /* decryption was not done in HW */
2438 if ((decrypt_in & RX_MPDU_RES_STATUS_DEC_DONE_MSK) !=
2439 RX_MPDU_RES_STATUS_DEC_DONE_MSK)
2440 return decrypt_out;
2441
2442 switch (decrypt_in & RX_RES_STATUS_SEC_TYPE_MSK) {
2443
2444 case RX_RES_STATUS_SEC_TYPE_CCMP:
2445 /* alg is CCM: check MIC only */
2446 if (!(decrypt_in & RX_MPDU_RES_STATUS_MIC_OK))
2447 /* Bad MIC */
2448 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
2449 else
2450 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
2451
2452 break;
2453
2454 case RX_RES_STATUS_SEC_TYPE_TKIP:
2455 if (!(decrypt_in & RX_MPDU_RES_STATUS_TTAK_OK)) {
2456 /* Bad TTAK */
2457 decrypt_out |= RX_RES_STATUS_BAD_KEY_TTAK;
2458 break;
2459 }
2460 /* fall through if TTAK OK */
2461 default:
2462 if (!(decrypt_in & RX_MPDU_RES_STATUS_ICV_OK))
2463 decrypt_out |= RX_RES_STATUS_BAD_ICV_MIC;
2464 else
2465 decrypt_out |= RX_RES_STATUS_DECRYPT_OK;
2466 break;
2467 };
2468
2469 IWL_DEBUG_RX("decrypt_in:0x%x decrypt_out = 0x%x\n",
2470 decrypt_in, decrypt_out);
2471
2472 return decrypt_out;
2473}
2474
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002475static void iwl4965_handle_data_packet(struct iwl_priv *priv, int is_data,
Zhu Yib481de92007-09-25 17:54:57 -07002476 int include_phy,
Tomas Winklera55360e2008-05-05 10:22:28 +08002477 struct iwl_rx_mem_buffer *rxb,
Zhu Yib481de92007-09-25 17:54:57 -07002478 struct ieee80211_rx_status *stats)
2479{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002480 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002481 struct iwl4965_rx_phy_res *rx_start = (include_phy) ?
2482 (struct iwl4965_rx_phy_res *)&(pkt->u.raw[0]) : NULL;
2483 struct ieee80211_hdr *hdr;
2484 u16 len;
2485 __le32 *rx_end;
2486 unsigned int skblen;
2487 u32 ampdu_status;
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07002488 u32 ampdu_status_legacy;
Zhu Yib481de92007-09-25 17:54:57 -07002489
2490 if (!include_phy && priv->last_phy_res[0])
2491 rx_start = (struct iwl4965_rx_phy_res *)&priv->last_phy_res[1];
2492
2493 if (!rx_start) {
2494 IWL_ERROR("MPDU frame without a PHY data\n");
2495 return;
2496 }
2497 if (include_phy) {
2498 hdr = (struct ieee80211_hdr *)((u8 *) & rx_start[1] +
2499 rx_start->cfg_phy_cnt);
2500
2501 len = le16_to_cpu(rx_start->byte_count);
2502
2503 rx_end = (__le32 *) ((u8 *) & pkt->u.raw[0] +
2504 sizeof(struct iwl4965_rx_phy_res) +
2505 rx_start->cfg_phy_cnt + len);
2506
2507 } else {
2508 struct iwl4965_rx_mpdu_res_start *amsdu =
2509 (struct iwl4965_rx_mpdu_res_start *)pkt->u.raw;
2510
2511 hdr = (struct ieee80211_hdr *)(pkt->u.raw +
2512 sizeof(struct iwl4965_rx_mpdu_res_start));
2513 len = le16_to_cpu(amsdu->byte_count);
2514 rx_start->byte_count = amsdu->byte_count;
2515 rx_end = (__le32 *) (((u8 *) hdr) + len);
2516 }
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002517 /* In monitor mode allow 802.11 ACk frames (10 bytes) */
2518 if (len > priv->hw_params.max_pkt_size ||
2519 len < ((priv->iw_mode == IEEE80211_IF_TYPE_MNTR) ? 10 : 16)) {
Zhu Yi12342c42007-12-20 11:27:32 +08002520 IWL_WARNING("byte count out of range [16,4K] : %d\n", len);
Zhu Yib481de92007-09-25 17:54:57 -07002521 return;
2522 }
2523
2524 ampdu_status = le32_to_cpu(*rx_end);
2525 skblen = ((u8 *) rx_end - (u8 *) & pkt->u.raw[0]) + sizeof(u32);
2526
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07002527 if (!include_phy) {
2528 /* New status scheme, need to translate */
2529 ampdu_status_legacy = ampdu_status;
Ester Kummerbf403db2008-05-05 10:22:40 +08002530 ampdu_status = iwl4965_translate_rx_status(priv, ampdu_status);
Emmanuel Grumbach17e476b2008-03-19 16:41:42 -07002531 }
2532
Zhu Yib481de92007-09-25 17:54:57 -07002533 /* start from MAC */
2534 skb_reserve(rxb->skb, (void *)hdr - (void *)pkt);
2535 skb_put(rxb->skb, len); /* end where data ends */
2536
2537 /* We only process data packets if the interface is open */
2538 if (unlikely(!priv->is_open)) {
2539 IWL_DEBUG_DROP_LIMIT
2540 ("Dropping packet while interface is not open.\n");
2541 return;
2542 }
2543
Zhu Yib481de92007-09-25 17:54:57 -07002544 stats->flag = 0;
2545 hdr = (struct ieee80211_hdr *)rxb->skb->data;
2546
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002547 /* in case of HW accelerated crypto and bad decryption, drop */
Ron Rindjunsky099b40b2008-04-21 15:41:53 -07002548 if (!priv->hw_params.sw_crypto &&
Emmanuel Grumbach3ec47732008-04-17 16:03:36 -07002549 iwl4965_set_decrypted_flag(priv, hdr, ampdu_status, stats))
2550 return;
Zhu Yib481de92007-09-25 17:54:57 -07002551
Zhu Yi12342c42007-12-20 11:27:32 +08002552 if (priv->add_radiotap)
2553 iwl4965_add_radiotap(priv, rxb->skb, rx_start, stats, ampdu_status);
2554
Tomas Winkler19758be2008-03-12 16:58:51 -07002555 iwl_update_rx_stats(priv, le16_to_cpu(hdr->frame_control), len);
Zhu Yib481de92007-09-25 17:54:57 -07002556 ieee80211_rx_irqsafe(priv->hw, rxb->skb, stats);
2557 priv->alloc_rxb_skb--;
2558 rxb->skb = NULL;
Zhu Yib481de92007-09-25 17:54:57 -07002559}
2560
2561/* Calc max signal level (dBm) among 3 possible receivers */
Ester Kummerbf403db2008-05-05 10:22:40 +08002562static int iwl4965_calc_rssi(struct iwl_priv *priv,
2563 struct iwl4965_rx_phy_res *rx_resp)
Zhu Yib481de92007-09-25 17:54:57 -07002564{
2565 /* data from PHY/DSP regarding signal strength, etc.,
2566 * contents are always there, not configurable by host. */
2567 struct iwl4965_rx_non_cfg_phy *ncphy =
2568 (struct iwl4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy;
2569 u32 agc = (le16_to_cpu(ncphy->agc_info) & IWL_AGC_DB_MASK)
2570 >> IWL_AGC_DB_POS;
2571
2572 u32 valid_antennae =
2573 (le16_to_cpu(rx_resp->phy_flags) & RX_PHY_FLAGS_ANTENNAE_MASK)
2574 >> RX_PHY_FLAGS_ANTENNAE_OFFSET;
2575 u8 max_rssi = 0;
2576 u32 i;
2577
2578 /* Find max rssi among 3 possible receivers.
2579 * These values are measured by the digital signal processor (DSP).
2580 * They should stay fairly constant even as the signal strength varies,
2581 * if the radio's automatic gain control (AGC) is working right.
2582 * AGC value (see below) will provide the "interesting" info. */
2583 for (i = 0; i < 3; i++)
2584 if (valid_antennae & (1 << i))
2585 max_rssi = max(ncphy->rssi_info[i << 1], max_rssi);
2586
2587 IWL_DEBUG_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
2588 ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4],
2589 max_rssi, agc);
2590
2591 /* dBm = max_rssi dB - agc dB - constant.
2592 * Higher AGC (higher radio gain) means lower signal. */
2593 return (max_rssi - agc - IWL_RSSI_OFFSET);
2594}
2595
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002596static void iwl4965_sta_modify_ps_wake(struct iwl_priv *priv, int sta_id)
Zhu Yib481de92007-09-25 17:54:57 -07002597{
2598 unsigned long flags;
2599
2600 spin_lock_irqsave(&priv->sta_lock, flags);
2601 priv->stations[sta_id].sta.station_flags &= ~STA_FLG_PWR_SAVE_MSK;
2602 priv->stations[sta_id].sta.station_flags_msk = STA_FLG_PWR_SAVE_MSK;
2603 priv->stations[sta_id].sta.sta.modify_mask = 0;
2604 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
2605 spin_unlock_irqrestore(&priv->sta_lock, flags);
2606
Tomas Winkler133636d2008-05-05 10:22:34 +08002607 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07002608}
2609
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002610static void iwl4965_update_ps_mode(struct iwl_priv *priv, u16 ps_bit, u8 *addr)
Zhu Yib481de92007-09-25 17:54:57 -07002611{
2612 /* FIXME: need locking over ps_status ??? */
Tomas Winkler947b13a2008-04-16 16:34:48 -07002613 u8 sta_id = iwl_find_station(priv, addr);
Zhu Yib481de92007-09-25 17:54:57 -07002614
2615 if (sta_id != IWL_INVALID_STATION) {
2616 u8 sta_awake = priv->stations[sta_id].
2617 ps_status == STA_PS_STATUS_WAKE;
2618
2619 if (sta_awake && ps_bit)
2620 priv->stations[sta_id].ps_status = STA_PS_STATUS_SLEEP;
2621 else if (!sta_awake && !ps_bit) {
2622 iwl4965_sta_modify_ps_wake(priv, sta_id);
2623 priv->stations[sta_id].ps_status = STA_PS_STATUS_WAKE;
2624 }
2625 }
2626}
Tomas Winkler0a6857e2008-03-12 16:58:49 -07002627#ifdef CONFIG_IWLWIFI_DEBUG
Tomas Winkler17744ff2008-03-02 01:52:00 +02002628
2629/**
2630 * iwl4965_dbg_report_frame - dump frame to syslog during debug sessions
2631 *
2632 * You may hack this function to show different aspects of received frames,
2633 * including selective frame dumps.
2634 * group100 parameter selects whether to show 1 out of 100 good frames.
2635 *
2636 * TODO: This was originally written for 3945, need to audit for
2637 * proper operation with 4965.
2638 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002639static void iwl4965_dbg_report_frame(struct iwl_priv *priv,
Tomas Winklerdb11d632008-05-05 10:22:33 +08002640 struct iwl_rx_packet *pkt,
Tomas Winkler17744ff2008-03-02 01:52:00 +02002641 struct ieee80211_hdr *header, int group100)
2642{
2643 u32 to_us;
2644 u32 print_summary = 0;
2645 u32 print_dump = 0; /* set to 1 to dump all frames' contents */
2646 u32 hundred = 0;
2647 u32 dataframe = 0;
2648 u16 fc;
2649 u16 seq_ctl;
2650 u16 channel;
2651 u16 phy_flags;
2652 int rate_sym;
2653 u16 length;
2654 u16 status;
2655 u16 bcn_tmr;
2656 u32 tsf_low;
2657 u64 tsf;
2658 u8 rssi;
2659 u8 agc;
2660 u16 sig_avg;
2661 u16 noise_diff;
2662 struct iwl4965_rx_frame_stats *rx_stats = IWL_RX_STATS(pkt);
2663 struct iwl4965_rx_frame_hdr *rx_hdr = IWL_RX_HDR(pkt);
2664 struct iwl4965_rx_frame_end *rx_end = IWL_RX_END(pkt);
2665 u8 *data = IWL_RX_DATA(pkt);
2666
Ester Kummerbf403db2008-05-05 10:22:40 +08002667 if (likely(!(priv->debug_level & IWL_DL_RX)))
Tomas Winkler17744ff2008-03-02 01:52:00 +02002668 return;
2669
2670 /* MAC header */
2671 fc = le16_to_cpu(header->frame_control);
2672 seq_ctl = le16_to_cpu(header->seq_ctrl);
2673
2674 /* metadata */
2675 channel = le16_to_cpu(rx_hdr->channel);
2676 phy_flags = le16_to_cpu(rx_hdr->phy_flags);
2677 rate_sym = rx_hdr->rate;
2678 length = le16_to_cpu(rx_hdr->len);
2679
2680 /* end-of-frame status and timestamp */
2681 status = le32_to_cpu(rx_end->status);
2682 bcn_tmr = le32_to_cpu(rx_end->beacon_timestamp);
2683 tsf_low = le64_to_cpu(rx_end->timestamp) & 0x0ffffffff;
2684 tsf = le64_to_cpu(rx_end->timestamp);
2685
2686 /* signal statistics */
2687 rssi = rx_stats->rssi;
2688 agc = rx_stats->agc;
2689 sig_avg = le16_to_cpu(rx_stats->sig_avg);
2690 noise_diff = le16_to_cpu(rx_stats->noise_diff);
2691
2692 to_us = !compare_ether_addr(header->addr1, priv->mac_addr);
2693
2694 /* if data frame is to us and all is good,
2695 * (optionally) print summary for only 1 out of every 100 */
2696 if (to_us && (fc & ~IEEE80211_FCTL_PROTECTED) ==
2697 (IEEE80211_FCTL_FROMDS | IEEE80211_FTYPE_DATA)) {
2698 dataframe = 1;
2699 if (!group100)
2700 print_summary = 1; /* print each frame */
2701 else if (priv->framecnt_to_us < 100) {
2702 priv->framecnt_to_us++;
2703 print_summary = 0;
2704 } else {
2705 priv->framecnt_to_us = 0;
2706 print_summary = 1;
2707 hundred = 1;
2708 }
2709 } else {
2710 /* print summary for all other frames */
2711 print_summary = 1;
2712 }
2713
2714 if (print_summary) {
2715 char *title;
2716 int rate_idx;
2717 u32 bitrate;
2718
2719 if (hundred)
2720 title = "100Frames";
2721 else if (fc & IEEE80211_FCTL_RETRY)
2722 title = "Retry";
2723 else if (ieee80211_is_assoc_response(fc))
2724 title = "AscRsp";
2725 else if (ieee80211_is_reassoc_response(fc))
2726 title = "RasRsp";
2727 else if (ieee80211_is_probe_response(fc)) {
2728 title = "PrbRsp";
2729 print_dump = 1; /* dump frame contents */
2730 } else if (ieee80211_is_beacon(fc)) {
2731 title = "Beacon";
2732 print_dump = 1; /* dump frame contents */
2733 } else if (ieee80211_is_atim(fc))
2734 title = "ATIM";
2735 else if (ieee80211_is_auth(fc))
2736 title = "Auth";
2737 else if (ieee80211_is_deauth(fc))
2738 title = "DeAuth";
2739 else if (ieee80211_is_disassoc(fc))
2740 title = "DisAssoc";
2741 else
2742 title = "Frame";
2743
2744 rate_idx = iwl4965_hwrate_to_plcp_idx(rate_sym);
2745 if (unlikely(rate_idx == -1))
2746 bitrate = 0;
2747 else
Tomas Winkler1826dcc2008-05-15 13:54:02 +08002748 bitrate = iwl_rates[rate_idx].ieee / 2;
Tomas Winkler17744ff2008-03-02 01:52:00 +02002749
2750 /* print frame summary.
2751 * MAC addresses show just the last byte (for brevity),
2752 * but you can hack it to show more, if you'd like to. */
2753 if (dataframe)
2754 IWL_DEBUG_RX("%s: mhd=0x%04x, dst=0x%02x, "
2755 "len=%u, rssi=%d, chnl=%d, rate=%u, \n",
2756 title, fc, header->addr1[5],
2757 length, rssi, channel, bitrate);
2758 else {
2759 /* src/dst addresses assume managed mode */
2760 IWL_DEBUG_RX("%s: 0x%04x, dst=0x%02x, "
2761 "src=0x%02x, rssi=%u, tim=%lu usec, "
2762 "phy=0x%02x, chnl=%d\n",
2763 title, fc, header->addr1[5],
2764 header->addr3[5], rssi,
2765 tsf_low - priv->scan_start_tsf,
2766 phy_flags, channel);
2767 }
2768 }
2769 if (print_dump)
Ester Kummerbf403db2008-05-05 10:22:40 +08002770 iwl_print_hex_dump(priv, IWL_DL_RX, data, length);
Tomas Winkler17744ff2008-03-02 01:52:00 +02002771}
2772#else
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002773static inline void iwl4965_dbg_report_frame(struct iwl_priv *priv,
Tomas Winklerdb11d632008-05-05 10:22:33 +08002774 struct iwl_rx_packet *pkt,
Tomas Winkler17744ff2008-03-02 01:52:00 +02002775 struct ieee80211_hdr *header,
2776 int group100)
2777{
2778}
2779#endif
2780
Zhu Yib481de92007-09-25 17:54:57 -07002781
Mohamed Abbas7878a5a2007-11-29 11:10:13 +08002782
Tomas Winkler857485c2008-03-21 13:53:44 -07002783/* Called for REPLY_RX (legacy ABG frames), or
Zhu Yib481de92007-09-25 17:54:57 -07002784 * REPLY_RX_MPDU_CMD (HT high-throughput N frames). */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002785static void iwl4965_rx_reply_rx(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002786 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002787{
Tomas Winkler17744ff2008-03-02 01:52:00 +02002788 struct ieee80211_hdr *header;
2789 struct ieee80211_rx_status rx_status;
Tomas Winklerdb11d632008-05-05 10:22:33 +08002790 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002791 /* Use phy data (Rx signal strength, etc.) contained within
2792 * this rx packet for legacy frames,
2793 * or phy data cached from REPLY_RX_PHY_CMD for HT frames. */
Tomas Winkler857485c2008-03-21 13:53:44 -07002794 int include_phy = (pkt->hdr.cmd == REPLY_RX);
Zhu Yib481de92007-09-25 17:54:57 -07002795 struct iwl4965_rx_phy_res *rx_start = (include_phy) ?
2796 (struct iwl4965_rx_phy_res *)&(pkt->u.raw[0]) :
2797 (struct iwl4965_rx_phy_res *)&priv->last_phy_res[1];
2798 __le32 *rx_end;
2799 unsigned int len = 0;
Zhu Yib481de92007-09-25 17:54:57 -07002800 u16 fc;
Zhu Yib481de92007-09-25 17:54:57 -07002801 u8 network_packet;
2802
Tomas Winkler17744ff2008-03-02 01:52:00 +02002803 rx_status.mactime = le64_to_cpu(rx_start->timestamp);
Tomas Winklerdc92e492008-04-03 16:05:22 -07002804 rx_status.freq =
Emmanuel Grumbachc0186072008-05-08 11:34:05 +08002805 ieee80211_channel_to_frequency(le16_to_cpu(rx_start->channel));
Tomas Winkler17744ff2008-03-02 01:52:00 +02002806 rx_status.band = (rx_start->phy_flags & RX_RES_PHY_FLAGS_BAND_24_MSK) ?
2807 IEEE80211_BAND_2GHZ : IEEE80211_BAND_5GHZ;
Tomas Winklerdc92e492008-04-03 16:05:22 -07002808 rx_status.rate_idx =
2809 iwl4965_hwrate_to_plcp_idx(le32_to_cpu(rx_start->rate_n_flags));
Tomas Winkler17744ff2008-03-02 01:52:00 +02002810 if (rx_status.band == IEEE80211_BAND_5GHZ)
2811 rx_status.rate_idx -= IWL_FIRST_OFDM_RATE;
2812
2813 rx_status.antenna = 0;
2814 rx_status.flag = 0;
2815
Zhu Yib481de92007-09-25 17:54:57 -07002816 if ((unlikely(rx_start->cfg_phy_cnt > 20))) {
Tomas Winklerdc92e492008-04-03 16:05:22 -07002817 IWL_DEBUG_DROP("dsp size out of range [0,20]: %d/n",
2818 rx_start->cfg_phy_cnt);
Zhu Yib481de92007-09-25 17:54:57 -07002819 return;
2820 }
Tomas Winkler17744ff2008-03-02 01:52:00 +02002821
Zhu Yib481de92007-09-25 17:54:57 -07002822 if (!include_phy) {
2823 if (priv->last_phy_res[0])
2824 rx_start = (struct iwl4965_rx_phy_res *)
2825 &priv->last_phy_res[1];
2826 else
2827 rx_start = NULL;
2828 }
2829
2830 if (!rx_start) {
2831 IWL_ERROR("MPDU frame without a PHY data\n");
2832 return;
2833 }
2834
2835 if (include_phy) {
2836 header = (struct ieee80211_hdr *)((u8 *) & rx_start[1]
2837 + rx_start->cfg_phy_cnt);
2838
2839 len = le16_to_cpu(rx_start->byte_count);
Tomas Winkler17744ff2008-03-02 01:52:00 +02002840 rx_end = (__le32 *)(pkt->u.raw + rx_start->cfg_phy_cnt +
Zhu Yib481de92007-09-25 17:54:57 -07002841 sizeof(struct iwl4965_rx_phy_res) + len);
2842 } else {
2843 struct iwl4965_rx_mpdu_res_start *amsdu =
2844 (struct iwl4965_rx_mpdu_res_start *)pkt->u.raw;
2845
2846 header = (void *)(pkt->u.raw +
2847 sizeof(struct iwl4965_rx_mpdu_res_start));
2848 len = le16_to_cpu(amsdu->byte_count);
2849 rx_end = (__le32 *) (pkt->u.raw +
2850 sizeof(struct iwl4965_rx_mpdu_res_start) + len);
2851 }
2852
2853 if (!(*rx_end & RX_RES_STATUS_NO_CRC32_ERROR) ||
2854 !(*rx_end & RX_RES_STATUS_NO_RXE_OVERFLOW)) {
2855 IWL_DEBUG_RX("Bad CRC or FIFO: 0x%08X.\n",
2856 le32_to_cpu(*rx_end));
2857 return;
2858 }
2859
2860 priv->ucode_beacon_time = le32_to_cpu(rx_start->beacon_time_stamp);
2861
Zhu Yib481de92007-09-25 17:54:57 -07002862 /* Find max signal strength (dBm) among 3 antenna/receiver chains */
Bruno Randolf566bfe52008-05-08 19:15:40 +02002863 rx_status.signal = iwl4965_calc_rssi(priv, rx_start);
Zhu Yib481de92007-09-25 17:54:57 -07002864
2865 /* Meaningful noise values are available only from beacon statistics,
2866 * which are gathered only when associated, and indicate noise
2867 * only for the associated network channel ...
2868 * Ignore these noise values while scanning (other channels) */
Tomas Winkler3109ece2008-03-28 16:33:35 -07002869 if (iwl_is_associated(priv) &&
Zhu Yib481de92007-09-25 17:54:57 -07002870 !test_bit(STATUS_SCANNING, &priv->status)) {
Tomas Winkler17744ff2008-03-02 01:52:00 +02002871 rx_status.noise = priv->last_rx_noise;
Bruno Randolf566bfe52008-05-08 19:15:40 +02002872 rx_status.qual = iwl4965_calc_sig_qual(rx_status.signal,
Tomas Winkler17744ff2008-03-02 01:52:00 +02002873 rx_status.noise);
Zhu Yib481de92007-09-25 17:54:57 -07002874 } else {
Tomas Winkler17744ff2008-03-02 01:52:00 +02002875 rx_status.noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
Bruno Randolf566bfe52008-05-08 19:15:40 +02002876 rx_status.qual = iwl4965_calc_sig_qual(rx_status.signal, 0);
Zhu Yib481de92007-09-25 17:54:57 -07002877 }
2878
2879 /* Reset beacon noise level if not associated. */
Tomas Winkler3109ece2008-03-28 16:33:35 -07002880 if (!iwl_is_associated(priv))
Zhu Yib481de92007-09-25 17:54:57 -07002881 priv->last_rx_noise = IWL_NOISE_MEAS_NOT_AVAILABLE;
2882
Tomas Winkler17744ff2008-03-02 01:52:00 +02002883 /* Set "1" to report good data frames in groups of 100 */
2884 /* FIXME: need to optimze the call: */
2885 iwl4965_dbg_report_frame(priv, pkt, header, 1);
Zhu Yib481de92007-09-25 17:54:57 -07002886
Tomas Winkler17744ff2008-03-02 01:52:00 +02002887 IWL_DEBUG_STATS_LIMIT("Rssi %d, noise %d, qual %d, TSF %llu\n",
Bruno Randolf566bfe52008-05-08 19:15:40 +02002888 rx_status.signal, rx_status.noise, rx_status.signal,
John W. Linville06501d22008-04-01 17:38:47 -04002889 (unsigned long long)rx_status.mactime);
Zhu Yib481de92007-09-25 17:54:57 -07002890
Abhijeet Kolekar4419e392008-05-05 10:22:47 +08002891
2892 if (priv->iw_mode == IEEE80211_IF_TYPE_MNTR) {
2893 iwl4965_handle_data_packet(priv, 1, include_phy,
2894 rxb, &rx_status);
2895 return;
2896 }
2897
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002898 network_packet = iwl4965_is_network_packet(priv, header);
Zhu Yib481de92007-09-25 17:54:57 -07002899 if (network_packet) {
Bruno Randolf566bfe52008-05-08 19:15:40 +02002900 priv->last_rx_rssi = rx_status.signal;
Zhu Yib481de92007-09-25 17:54:57 -07002901 priv->last_beacon_time = priv->ucode_beacon_time;
2902 priv->last_tsf = le64_to_cpu(rx_start->timestamp);
2903 }
2904
2905 fc = le16_to_cpu(header->frame_control);
2906 switch (fc & IEEE80211_FCTL_FTYPE) {
2907 case IEEE80211_FTYPE_MGMT:
Zhu Yib481de92007-09-25 17:54:57 -07002908 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
2909 iwl4965_update_ps_mode(priv, fc & IEEE80211_FCTL_PM,
2910 header->addr2);
Tomas Winkler17744ff2008-03-02 01:52:00 +02002911 iwl4965_handle_data_packet(priv, 0, include_phy, rxb, &rx_status);
Zhu Yib481de92007-09-25 17:54:57 -07002912 break;
2913
2914 case IEEE80211_FTYPE_CTL:
Ron Rindjunsky9ab46172007-12-25 17:00:38 +02002915#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07002916 switch (fc & IEEE80211_FCTL_STYPE) {
2917 case IEEE80211_STYPE_BACK_REQ:
2918 IWL_DEBUG_HT("IEEE80211_STYPE_BACK_REQ arrived\n");
2919 iwl4965_handle_data_packet(priv, 0, include_phy,
Tomas Winkler17744ff2008-03-02 01:52:00 +02002920 rxb, &rx_status);
Zhu Yib481de92007-09-25 17:54:57 -07002921 break;
2922 default:
2923 break;
2924 }
2925#endif
Zhu Yib481de92007-09-25 17:54:57 -07002926 break;
2927
Joe Perches0795af52007-10-03 17:59:30 -07002928 case IEEE80211_FTYPE_DATA: {
2929 DECLARE_MAC_BUF(mac1);
2930 DECLARE_MAC_BUF(mac2);
2931 DECLARE_MAC_BUF(mac3);
2932
Zhu Yib481de92007-09-25 17:54:57 -07002933 if (priv->iw_mode == IEEE80211_IF_TYPE_AP)
2934 iwl4965_update_ps_mode(priv, fc & IEEE80211_FCTL_PM,
2935 header->addr2);
2936
2937 if (unlikely(!network_packet))
2938 IWL_DEBUG_DROP("Dropping (non network): "
Joe Perches0795af52007-10-03 17:59:30 -07002939 "%s, %s, %s\n",
2940 print_mac(mac1, header->addr1),
2941 print_mac(mac2, header->addr2),
2942 print_mac(mac3, header->addr3));
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002943 else if (unlikely(iwl4965_is_duplicate_packet(priv, header)))
Joe Perches0795af52007-10-03 17:59:30 -07002944 IWL_DEBUG_DROP("Dropping (dup): %s, %s, %s\n",
2945 print_mac(mac1, header->addr1),
2946 print_mac(mac2, header->addr2),
2947 print_mac(mac3, header->addr3));
Zhu Yib481de92007-09-25 17:54:57 -07002948 else
2949 iwl4965_handle_data_packet(priv, 1, include_phy, rxb,
Tomas Winkler17744ff2008-03-02 01:52:00 +02002950 &rx_status);
Zhu Yib481de92007-09-25 17:54:57 -07002951 break;
Joe Perches0795af52007-10-03 17:59:30 -07002952 }
Zhu Yib481de92007-09-25 17:54:57 -07002953 default:
2954 break;
2955
2956 }
2957}
2958
2959/* Cache phy data (Rx signal strength, etc) for HT frame (REPLY_RX_PHY_CMD).
2960 * This will be used later in iwl4965_rx_reply_rx() for REPLY_RX_MPDU_CMD. */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002961static void iwl4965_rx_reply_rx_phy(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002962 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002963{
Tomas Winklerdb11d632008-05-05 10:22:33 +08002964 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Zhu Yib481de92007-09-25 17:54:57 -07002965 priv->last_phy_res[0] = 1;
2966 memcpy(&priv->last_phy_res[1], &(pkt->u.raw[0]),
2967 sizeof(struct iwl4965_rx_phy_res));
2968}
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002969static void iwl4965_rx_missed_beacon_notif(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08002970 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07002971
2972{
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07002973#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
Tomas Winklerdb11d632008-05-05 10:22:33 +08002974 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08002975 struct iwl4965_missed_beacon_notif *missed_beacon;
Zhu Yib481de92007-09-25 17:54:57 -07002976
2977 missed_beacon = &pkt->u.missed_beacon;
2978 if (le32_to_cpu(missed_beacon->consequtive_missed_beacons) > 5) {
2979 IWL_DEBUG_CALIB("missed bcn cnsq %d totl %d rcd %d expctd %d\n",
2980 le32_to_cpu(missed_beacon->consequtive_missed_beacons),
2981 le32_to_cpu(missed_beacon->total_missed_becons),
2982 le32_to_cpu(missed_beacon->num_recvd_beacons),
2983 le32_to_cpu(missed_beacon->num_expected_beacons));
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07002984 if (!test_bit(STATUS_SCANNING, &priv->status))
2985 iwl_init_sensitivity(priv);
Zhu Yib481de92007-09-25 17:54:57 -07002986 }
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07002987#endif /*CONFIG_IWL4965_RUN_TIME_CALIB*/
Zhu Yib481de92007-09-25 17:54:57 -07002988}
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08002989#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07002990
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002991/**
2992 * iwl4965_sta_modify_enable_tid_tx - Enable Tx for this TID in station table
2993 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07002994static void iwl4965_sta_modify_enable_tid_tx(struct iwl_priv *priv,
Zhu Yib481de92007-09-25 17:54:57 -07002995 int sta_id, int tid)
2996{
2997 unsigned long flags;
2998
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08002999 /* Remove "disable" flag, to enable Tx for this TID */
Zhu Yib481de92007-09-25 17:54:57 -07003000 spin_lock_irqsave(&priv->sta_lock, flags);
3001 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_TID_DISABLE_TX;
3002 priv->stations[sta_id].sta.tid_disable_tx &= cpu_to_le16(~(1 << tid));
3003 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3004 spin_unlock_irqrestore(&priv->sta_lock, flags);
3005
Tomas Winkler133636d2008-05-05 10:22:34 +08003006 iwl_send_add_sta(priv, &priv->stations[sta_id].sta, CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07003007}
3008
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003009/**
3010 * iwl4965_tx_status_reply_compressed_ba - Update tx status from block-ack
3011 *
3012 * Go through block-ack's bitmap of ACK'd frames, update driver's record of
3013 * ACK vs. not. This gets sent to mac80211, then to rate scaling algo.
3014 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003015static int iwl4965_tx_status_reply_compressed_ba(struct iwl_priv *priv,
Tomas Winkler6def9762008-05-05 10:22:31 +08003016 struct iwl_ht_agg *agg,
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003017 struct iwl4965_compressed_ba_resp*
Zhu Yib481de92007-09-25 17:54:57 -07003018 ba_resp)
3019
3020{
3021 int i, sh, ack;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003022 u16 seq_ctl = le16_to_cpu(ba_resp->seq_ctl);
3023 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
3024 u64 bitmap;
3025 int successes = 0;
Johannes Berge039fa42008-05-15 12:55:29 +02003026 struct ieee80211_tx_info *info;
Zhu Yib481de92007-09-25 17:54:57 -07003027
3028 if (unlikely(!agg->wait_for_ba)) {
3029 IWL_ERROR("Received BA when not expected\n");
3030 return -EINVAL;
3031 }
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003032
3033 /* Mark that the expected block-ack response arrived */
Zhu Yib481de92007-09-25 17:54:57 -07003034 agg->wait_for_ba = 0;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003035 IWL_DEBUG_TX_REPLY("BA %d %d\n", agg->start_idx, ba_resp->seq_ctl);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003036
3037 /* Calculate shift to align block-ack bits with our Tx window bits */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003038 sh = agg->start_idx - SEQ_TO_INDEX(seq_ctl>>4);
Ian Schram01ebd062007-10-25 17:15:22 +08003039 if (sh < 0) /* tbw something is wrong with indices */
Zhu Yib481de92007-09-25 17:54:57 -07003040 sh += 0x100;
3041
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003042 /* don't use 64-bit values for now */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003043 bitmap = le64_to_cpu(ba_resp->bitmap) >> sh;
Zhu Yib481de92007-09-25 17:54:57 -07003044
3045 if (agg->frame_count > (64 - sh)) {
3046 IWL_DEBUG_TX_REPLY("more frames than bitmap size");
3047 return -1;
3048 }
3049
3050 /* check for success or failure according to the
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003051 * transmitted bitmap and block-ack bitmap */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003052 bitmap &= agg->bitmap;
Zhu Yib481de92007-09-25 17:54:57 -07003053
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003054 /* For each frame attempted in aggregation,
3055 * update driver's record of tx frame's status. */
Zhu Yib481de92007-09-25 17:54:57 -07003056 for (i = 0; i < agg->frame_count ; i++) {
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003057 ack = bitmap & (1 << i);
3058 successes += !!ack;
Zhu Yib481de92007-09-25 17:54:57 -07003059 IWL_DEBUG_TX_REPLY("%s ON i=%d idx=%d raw=%d\n",
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003060 ack? "ACK":"NACK", i, (agg->start_idx + i) & 0xff,
3061 agg->start_idx + i);
Zhu Yib481de92007-09-25 17:54:57 -07003062 }
3063
Johannes Berge039fa42008-05-15 12:55:29 +02003064 info = IEEE80211_SKB_CB(priv->txq[scd_flow].txb[agg->start_idx].skb[0]);
3065 memset(&info->status, 0, sizeof(info->status));
3066 info->flags = IEEE80211_TX_STAT_ACK;
3067 info->flags |= IEEE80211_TX_STAT_AMPDU;
3068 info->status.ampdu_ack_map = successes;
3069 info->status.ampdu_ack_len = agg->frame_count;
3070 iwl4965_hwrate_to_tx_control(priv, agg->rate_n_flags, info);
Zhu Yib481de92007-09-25 17:54:57 -07003071
John W. Linvillef868f4e2008-03-07 16:38:43 -05003072 IWL_DEBUG_TX_REPLY("Bitmap %llx\n", (unsigned long long)bitmap);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003073
3074 return 0;
3075}
3076
3077/**
3078 * iwl4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
3079 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003080static void iwl4965_tx_queue_stop_scheduler(struct iwl_priv *priv,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003081 u16 txq_id)
3082{
3083 /* Simply stop the queue, but don't change any configuration;
3084 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003085 iwl_write_prph(priv,
Tomas Winkler12a81f62008-04-03 16:05:20 -07003086 IWL49_SCD_QUEUE_STATUS_BITS(txq_id),
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07003087 (0 << IWL49_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
3088 (1 << IWL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003089}
3090
3091/**
3092 * txq_id must be greater than IWL_BACK_QUEUE_FIRST_ID
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003093 * priv->lock must be held by the caller
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003094 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003095static int iwl4965_tx_queue_agg_disable(struct iwl_priv *priv, u16 txq_id,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003096 u16 ssn_idx, u8 tx_fifo)
3097{
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003098 int ret = 0;
3099
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003100 if (IWL_BACK_QUEUE_FIRST_ID > txq_id) {
3101 IWL_WARNING("queue number too small: %d, must be > %d\n",
3102 txq_id, IWL_BACK_QUEUE_FIRST_ID);
3103 return -EINVAL;
3104 }
3105
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003106 ret = iwl_grab_nic_access(priv);
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003107 if (ret)
3108 return ret;
3109
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003110 iwl4965_tx_queue_stop_scheduler(priv, txq_id);
3111
Tomas Winkler12a81f62008-04-03 16:05:20 -07003112 iwl_clear_bits_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003113
3114 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
3115 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
3116 /* supposes that ssn_idx is valid (!= 0xFFF) */
3117 iwl4965_set_wr_ptrs(priv, txq_id, ssn_idx);
3118
Tomas Winkler12a81f62008-04-03 16:05:20 -07003119 iwl_clear_bits_prph(priv, IWL49_SCD_INTERRUPT_MASK, (1 << txq_id));
Ron Rindjunsky36470742008-05-15 13:54:10 +08003120 iwl_txq_ctx_deactivate(priv, txq_id);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003121 iwl4965_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
3122
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003123 iwl_release_nic_access(priv);
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003124
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003125 return 0;
3126}
3127
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003128int iwl4965_check_empty_hw_queue(struct iwl_priv *priv, int sta_id,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003129 u8 tid, int txq_id)
3130{
Tomas Winkler443cfd42008-05-15 13:53:57 +08003131 struct iwl_queue *q = &priv->txq[txq_id].q;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003132 u8 *addr = priv->stations[sta_id].sta.sta.addr;
Tomas Winkler6def9762008-05-05 10:22:31 +08003133 struct iwl_tid_data *tid_data = &priv->stations[sta_id].tid[tid];
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003134
3135 switch (priv->stations[sta_id].tid[tid].agg.state) {
3136 case IWL_EMPTYING_HW_QUEUE_DELBA:
3137 /* We are reclaiming the last packet of the */
3138 /* aggregated HW queue */
3139 if (txq_id == tid_data->agg.txq_id &&
3140 q->read_ptr == q->write_ptr) {
3141 u16 ssn = SEQ_TO_SN(tid_data->seq_number);
3142 int tx_fifo = default_tid_to_tx_fifo[tid];
3143 IWL_DEBUG_HT("HW queue empty: continue DELBA flow\n");
3144 iwl4965_tx_queue_agg_disable(priv, txq_id,
3145 ssn, tx_fifo);
3146 tid_data->agg.state = IWL_AGG_OFF;
3147 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, addr, tid);
3148 }
3149 break;
3150 case IWL_EMPTYING_HW_QUEUE_ADDBA:
3151 /* We are reclaiming the last packet of the queue */
3152 if (tid_data->tfds_in_queue == 0) {
3153 IWL_DEBUG_HT("HW queue empty: continue ADDBA flow\n");
3154 tid_data->agg.state = IWL_AGG_ON;
3155 ieee80211_start_tx_ba_cb_irqsafe(priv->hw, addr, tid);
3156 }
3157 break;
3158 }
Zhu Yib481de92007-09-25 17:54:57 -07003159 return 0;
3160}
3161
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003162/**
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003163 * iwl4965_rx_reply_compressed_ba - Handler for REPLY_COMPRESSED_BA
3164 *
3165 * Handles block-acknowledge notification from device, which reports success
3166 * of frames sent via aggregation.
3167 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003168static void iwl4965_rx_reply_compressed_ba(struct iwl_priv *priv,
Tomas Winklera55360e2008-05-05 10:22:28 +08003169 struct iwl_rx_mem_buffer *rxb)
Zhu Yib481de92007-09-25 17:54:57 -07003170{
Tomas Winklerdb11d632008-05-05 10:22:33 +08003171 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003172 struct iwl4965_compressed_ba_resp *ba_resp = &pkt->u.compressed_ba;
Zhu Yib481de92007-09-25 17:54:57 -07003173 int index;
Ron Rindjunsky16466902008-05-05 10:22:50 +08003174 struct iwl_tx_queue *txq = NULL;
Tomas Winkler6def9762008-05-05 10:22:31 +08003175 struct iwl_ht_agg *agg;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003176 DECLARE_MAC_BUF(mac);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003177
3178 /* "flow" corresponds to Tx queue */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003179 u16 scd_flow = le16_to_cpu(ba_resp->scd_flow);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003180
3181 /* "ssn" is start of block-ack Tx window, corresponds to index
3182 * (in Tx queue's circular buffer) of first TFD/frame in window */
Zhu Yib481de92007-09-25 17:54:57 -07003183 u16 ba_resp_scd_ssn = le16_to_cpu(ba_resp->scd_ssn);
3184
Ron Rindjunskydfe7d452008-04-15 16:01:45 -07003185 if (scd_flow >= priv->hw_params.max_txq_num) {
Zhu Yib481de92007-09-25 17:54:57 -07003186 IWL_ERROR("BUG_ON scd_flow is bigger than number of queues");
3187 return;
3188 }
3189
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003190 txq = &priv->txq[scd_flow];
Zhu Yib481de92007-09-25 17:54:57 -07003191 agg = &priv->stations[ba_resp->sta_id].tid[ba_resp->tid].agg;
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003192
3193 /* Find index just before block-ack window */
Tomas Winkler443cfd42008-05-15 13:53:57 +08003194 index = iwl_queue_dec_wrap(ba_resp_scd_ssn & 0xff, txq->q.n_bd);
Zhu Yib481de92007-09-25 17:54:57 -07003195
Ian Schram01ebd062007-10-25 17:15:22 +08003196 /* TODO: Need to get this copy more safely - now good for debug */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003197
Joe Perches0795af52007-10-03 17:59:30 -07003198 IWL_DEBUG_TX_REPLY("REPLY_COMPRESSED_BA [%d]Received from %s, "
3199 "sta_id = %d\n",
Zhu Yib481de92007-09-25 17:54:57 -07003200 agg->wait_for_ba,
Joe Perches0795af52007-10-03 17:59:30 -07003201 print_mac(mac, (u8*) &ba_resp->sta_addr_lo32),
Zhu Yib481de92007-09-25 17:54:57 -07003202 ba_resp->sta_id);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003203 IWL_DEBUG_TX_REPLY("TID = %d, SeqCtl = %d, bitmap = 0x%llx, scd_flow = "
Zhu Yib481de92007-09-25 17:54:57 -07003204 "%d, scd_ssn = %d\n",
3205 ba_resp->tid,
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003206 ba_resp->seq_ctl,
Tomas Winkler0310ae72008-03-11 16:17:19 -07003207 (unsigned long long)le64_to_cpu(ba_resp->bitmap),
Zhu Yib481de92007-09-25 17:54:57 -07003208 ba_resp->scd_flow,
3209 ba_resp->scd_ssn);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003210 IWL_DEBUG_TX_REPLY("DAT start_idx = %d, bitmap = 0x%llx \n",
Zhu Yib481de92007-09-25 17:54:57 -07003211 agg->start_idx,
John W. Linvillef868f4e2008-03-07 16:38:43 -05003212 (unsigned long long)agg->bitmap);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003213
3214 /* Update driver's record of ACK vs. not for each frame in window */
Zhu Yib481de92007-09-25 17:54:57 -07003215 iwl4965_tx_status_reply_compressed_ba(priv, agg, ba_resp);
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003216
3217 /* Release all TFDs before the SSN, i.e. all TFDs in front of
3218 * block-ack window (we assume that they've been successfully
3219 * transmitted ... if not, it's too late anyway). */
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003220 if (txq->q.read_ptr != (ba_resp_scd_ssn & 0xff)) {
Ron Rindjunsky0d0b2c12008-05-04 14:48:18 +03003221 /* calculate mac80211 ampdu sw queue to wake */
3222 int ampdu_q =
3223 scd_flow - IWL_BACK_QUEUE_FIRST_ID + priv->hw->queues;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003224 int freed = iwl4965_tx_queue_reclaim(priv, scd_flow, index);
3225 priv->stations[ba_resp->sta_id].
3226 tid[ba_resp->tid].tfds_in_queue -= freed;
Tomas Winkler443cfd42008-05-15 13:53:57 +08003227 if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003228 priv->mac80211_registered &&
3229 agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)
Ron Rindjunsky0d0b2c12008-05-04 14:48:18 +03003230 ieee80211_wake_queue(priv->hw, ampdu_q);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003231 iwl4965_check_empty_hw_queue(priv, ba_resp->sta_id,
3232 ba_resp->tid, scd_flow);
3233 }
Zhu Yib481de92007-09-25 17:54:57 -07003234}
3235
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003236/**
3237 * iwl4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
3238 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003239static int iwl4965_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
Zhu Yib481de92007-09-25 17:54:57 -07003240 u16 txq_id)
3241{
3242 u32 tbl_dw_addr;
3243 u32 tbl_dw;
3244 u16 scd_q2ratid;
3245
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07003246 scd_q2ratid = ra_tid & IWL49_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
Zhu Yib481de92007-09-25 17:54:57 -07003247
3248 tbl_dw_addr = priv->scd_base_addr +
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07003249 IWL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
Zhu Yib481de92007-09-25 17:54:57 -07003250
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003251 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
Zhu Yib481de92007-09-25 17:54:57 -07003252
3253 if (txq_id & 0x1)
3254 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
3255 else
3256 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
3257
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003258 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
Zhu Yib481de92007-09-25 17:54:57 -07003259
3260 return 0;
3261}
3262
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003263
Zhu Yib481de92007-09-25 17:54:57 -07003264/**
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003265 * iwl4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
3266 *
3267 * NOTE: txq_id must be greater than IWL_BACK_QUEUE_FIRST_ID,
3268 * i.e. it must be one of the higher queues used for aggregation
Zhu Yib481de92007-09-25 17:54:57 -07003269 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003270static int iwl4965_tx_queue_agg_enable(struct iwl_priv *priv, int txq_id,
Zhu Yib481de92007-09-25 17:54:57 -07003271 int tx_fifo, int sta_id, int tid,
3272 u16 ssn_idx)
3273{
3274 unsigned long flags;
3275 int rc;
3276 u16 ra_tid;
3277
3278 if (IWL_BACK_QUEUE_FIRST_ID > txq_id)
3279 IWL_WARNING("queue number too small: %d, must be > %d\n",
3280 txq_id, IWL_BACK_QUEUE_FIRST_ID);
3281
3282 ra_tid = BUILD_RAxTID(sta_id, tid);
3283
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003284 /* Modify device's station table to Tx this TID */
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003285 iwl4965_sta_modify_enable_tid_tx(priv, sta_id, tid);
Zhu Yib481de92007-09-25 17:54:57 -07003286
3287 spin_lock_irqsave(&priv->lock, flags);
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003288 rc = iwl_grab_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003289 if (rc) {
3290 spin_unlock_irqrestore(&priv->lock, flags);
3291 return rc;
3292 }
3293
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003294 /* Stop this Tx queue before configuring it */
Zhu Yib481de92007-09-25 17:54:57 -07003295 iwl4965_tx_queue_stop_scheduler(priv, txq_id);
3296
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003297 /* Map receiver-address / traffic-ID to this queue */
Zhu Yib481de92007-09-25 17:54:57 -07003298 iwl4965_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
3299
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003300 /* Set this queue as a chain-building queue */
Tomas Winkler12a81f62008-04-03 16:05:20 -07003301 iwl_set_bits_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
Zhu Yib481de92007-09-25 17:54:57 -07003302
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003303 /* Place first TFD at index corresponding to start sequence number.
3304 * Assumes that ssn_idx is valid (!= 0xFFF) */
Tomas Winklerfc4b6852007-10-25 17:15:24 +08003305 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
3306 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
Zhu Yib481de92007-09-25 17:54:57 -07003307 iwl4965_set_wr_ptrs(priv, txq_id, ssn_idx);
3308
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003309 /* Set up Tx window size and frame limit for this queue */
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003310 iwl_write_targ_mem(priv,
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07003311 priv->scd_base_addr + IWL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
3312 (SCD_WIN_SIZE << IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
3313 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
Zhu Yib481de92007-09-25 17:54:57 -07003314
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003315 iwl_write_targ_mem(priv, priv->scd_base_addr +
Emmanuel Grumbach038669e2008-04-23 17:15:04 -07003316 IWL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
3317 (SCD_FRAME_LIMIT << IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS)
3318 & IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
Zhu Yib481de92007-09-25 17:54:57 -07003319
Tomas Winkler12a81f62008-04-03 16:05:20 -07003320 iwl_set_bits_prph(priv, IWL49_SCD_INTERRUPT_MASK, (1 << txq_id));
Zhu Yib481de92007-09-25 17:54:57 -07003321
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003322 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
Zhu Yib481de92007-09-25 17:54:57 -07003323 iwl4965_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
3324
Tomas Winkler3395f6e2008-03-25 16:33:37 -07003325 iwl_release_nic_access(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003326 spin_unlock_irqrestore(&priv->lock, flags);
3327
3328 return 0;
3329}
3330
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003331#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07003332
Zhu Yib481de92007-09-25 17:54:57 -07003333
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003334#ifdef CONFIG_IWL4965_HT
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003335static int iwl4965_rx_agg_start(struct iwl_priv *priv,
3336 const u8 *addr, int tid, u16 ssn)
Zhu Yib481de92007-09-25 17:54:57 -07003337{
3338 unsigned long flags;
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003339 int sta_id;
3340
3341 sta_id = iwl_find_station(priv, addr);
3342 if (sta_id == IWL_INVALID_STATION)
3343 return -ENXIO;
Zhu Yib481de92007-09-25 17:54:57 -07003344
3345 spin_lock_irqsave(&priv->sta_lock, flags);
3346 priv->stations[sta_id].sta.station_flags_msk = 0;
3347 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_ADDBA_TID_MSK;
3348 priv->stations[sta_id].sta.add_immediate_ba_tid = (u8)tid;
3349 priv->stations[sta_id].sta.add_immediate_ba_ssn = cpu_to_le16(ssn);
3350 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3351 spin_unlock_irqrestore(&priv->sta_lock, flags);
3352
Tomas Winkler133636d2008-05-05 10:22:34 +08003353 return iwl_send_add_sta(priv, &priv->stations[sta_id].sta,
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003354 CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07003355}
3356
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003357static int iwl4965_rx_agg_stop(struct iwl_priv *priv,
3358 const u8 *addr, int tid)
Zhu Yib481de92007-09-25 17:54:57 -07003359{
3360 unsigned long flags;
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003361 int sta_id;
3362
3363 sta_id = iwl_find_station(priv, addr);
3364 if (sta_id == IWL_INVALID_STATION)
3365 return -ENXIO;
Zhu Yib481de92007-09-25 17:54:57 -07003366
3367 spin_lock_irqsave(&priv->sta_lock, flags);
3368 priv->stations[sta_id].sta.station_flags_msk = 0;
3369 priv->stations[sta_id].sta.sta.modify_mask = STA_MODIFY_DELBA_TID_MSK;
3370 priv->stations[sta_id].sta.remove_immediate_ba_tid = (u8)tid;
3371 priv->stations[sta_id].sta.mode = STA_CONTROL_MODIFY_MSK;
3372 spin_unlock_irqrestore(&priv->sta_lock, flags);
3373
Tomas Winkler133636d2008-05-05 10:22:34 +08003374 return iwl_send_add_sta(priv, &priv->stations[sta_id].sta,
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003375 CMD_ASYNC);
Zhu Yib481de92007-09-25 17:54:57 -07003376}
3377
Cahill, Ben M8b6eaea2007-11-29 11:09:54 +08003378/*
3379 * Find first available (lowest unused) Tx Queue, mark it "active".
3380 * Called only when finding queue for aggregation.
3381 * Should never return anything < 7, because they should already
3382 * be in use as EDCA AC (0-3), Command (4), HCCA (5, 6).
3383 */
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003384static int iwl4965_txq_ctx_activate_free(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003385{
3386 int txq_id;
3387
Tomas Winkler5425e492008-04-15 16:01:38 -07003388 for (txq_id = 0; txq_id < priv->hw_params.max_txq_num; txq_id++)
Zhu Yib481de92007-09-25 17:54:57 -07003389 if (!test_and_set_bit(txq_id, &priv->txq_ctx_active_msk))
3390 return txq_id;
3391 return -1;
3392}
3393
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003394static int iwl4965_tx_agg_start(struct ieee80211_hw *hw, const u8 *ra,
3395 u16 tid, u16 *start_seq_num)
Zhu Yib481de92007-09-25 17:54:57 -07003396{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003397 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003398 int sta_id;
3399 int tx_fifo;
3400 int txq_id;
3401 int ssn = -1;
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003402 int ret = 0;
Zhu Yib481de92007-09-25 17:54:57 -07003403 unsigned long flags;
Tomas Winkler6def9762008-05-05 10:22:31 +08003404 struct iwl_tid_data *tid_data;
Joe Perches0795af52007-10-03 17:59:30 -07003405 DECLARE_MAC_BUF(mac);
Zhu Yib481de92007-09-25 17:54:57 -07003406
3407 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
3408 tx_fifo = default_tid_to_tx_fifo[tid];
3409 else
3410 return -EINVAL;
3411
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003412 IWL_WARNING("%s on ra = %s tid = %d\n",
3413 __func__, print_mac(mac, ra), tid);
Zhu Yib481de92007-09-25 17:54:57 -07003414
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003415 sta_id = iwl_find_station(priv, ra);
Zhu Yib481de92007-09-25 17:54:57 -07003416 if (sta_id == IWL_INVALID_STATION)
3417 return -ENXIO;
3418
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003419 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_OFF) {
3420 IWL_ERROR("Start AGG when state is not IWL_AGG_OFF !\n");
3421 return -ENXIO;
3422 }
3423
Christoph Hellwigbb8c0932008-01-27 16:41:47 -08003424 txq_id = iwl4965_txq_ctx_activate_free(priv);
Zhu Yib481de92007-09-25 17:54:57 -07003425 if (txq_id == -1)
3426 return -ENXIO;
3427
3428 spin_lock_irqsave(&priv->sta_lock, flags);
3429 tid_data = &priv->stations[sta_id].tid[tid];
3430 ssn = SEQ_TO_SN(tid_data->seq_number);
3431 tid_data->agg.txq_id = txq_id;
3432 spin_unlock_irqrestore(&priv->sta_lock, flags);
3433
3434 *start_seq_num = ssn;
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003435 ret = iwl4965_tx_queue_agg_enable(priv, txq_id, tx_fifo,
3436 sta_id, tid, ssn);
3437 if (ret)
3438 return ret;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003439
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003440 ret = 0;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003441 if (tid_data->tfds_in_queue == 0) {
3442 printk(KERN_ERR "HW queue is empty\n");
3443 tid_data->agg.state = IWL_AGG_ON;
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003444 ieee80211_start_tx_ba_cb_irqsafe(hw, ra, tid);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003445 } else {
3446 IWL_DEBUG_HT("HW queue is NOT empty: %d packets in HW queue\n",
3447 tid_data->tfds_in_queue);
3448 tid_data->agg.state = IWL_EMPTYING_HW_QUEUE_ADDBA;
3449 }
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003450 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003451}
3452
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003453static int iwl4965_tx_agg_stop(struct ieee80211_hw *hw, const u8 *ra, u16 tid)
Zhu Yib481de92007-09-25 17:54:57 -07003454{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003455 struct iwl_priv *priv = hw->priv;
Zhu Yib481de92007-09-25 17:54:57 -07003456 int tx_fifo_id, txq_id, sta_id, ssn = -1;
Tomas Winkler6def9762008-05-05 10:22:31 +08003457 struct iwl_tid_data *tid_data;
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003458 int ret, write_ptr, read_ptr;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003459 unsigned long flags;
Joe Perches0795af52007-10-03 17:59:30 -07003460 DECLARE_MAC_BUF(mac);
3461
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003462 if (!ra) {
3463 IWL_ERROR("ra = NULL\n");
Zhu Yib481de92007-09-25 17:54:57 -07003464 return -EINVAL;
3465 }
3466
3467 if (likely(tid < ARRAY_SIZE(default_tid_to_tx_fifo)))
3468 tx_fifo_id = default_tid_to_tx_fifo[tid];
3469 else
3470 return -EINVAL;
3471
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003472 sta_id = iwl_find_station(priv, ra);
Zhu Yib481de92007-09-25 17:54:57 -07003473
3474 if (sta_id == IWL_INVALID_STATION)
3475 return -ENXIO;
3476
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003477 if (priv->stations[sta_id].tid[tid].agg.state != IWL_AGG_ON)
3478 IWL_WARNING("Stopping AGG while state not IWL_AGG_ON\n");
3479
Zhu Yib481de92007-09-25 17:54:57 -07003480 tid_data = &priv->stations[sta_id].tid[tid];
3481 ssn = (tid_data->seq_number & IEEE80211_SCTL_SEQ) >> 4;
3482 txq_id = tid_data->agg.txq_id;
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003483 write_ptr = priv->txq[txq_id].q.write_ptr;
3484 read_ptr = priv->txq[txq_id].q.read_ptr;
Zhu Yib481de92007-09-25 17:54:57 -07003485
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003486 /* The queue is not empty */
3487 if (write_ptr != read_ptr) {
3488 IWL_DEBUG_HT("Stopping a non empty AGG HW QUEUE\n");
3489 priv->stations[sta_id].tid[tid].agg.state =
3490 IWL_EMPTYING_HW_QUEUE_DELBA;
3491 return 0;
3492 }
3493
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003494 IWL_DEBUG_HT("HW queue is empty\n");
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003495 priv->stations[sta_id].tid[tid].agg.state = IWL_AGG_OFF;
3496
3497 spin_lock_irqsave(&priv->lock, flags);
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003498 ret = iwl4965_tx_queue_agg_disable(priv, txq_id, ssn, tx_fifo_id);
Ron Rindjunskyfe01b472008-01-28 14:07:24 +02003499 spin_unlock_irqrestore(&priv->lock, flags);
3500
Ron Rindjunskyb095d03a72008-03-06 17:36:56 -08003501 if (ret)
3502 return ret;
Zhu Yib481de92007-09-25 17:54:57 -07003503
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003504 ieee80211_stop_tx_ba_cb_irqsafe(priv->hw, ra, tid);
Zhu Yib481de92007-09-25 17:54:57 -07003505
3506 return 0;
3507}
3508
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003509int iwl4965_mac_ampdu_action(struct ieee80211_hw *hw,
3510 enum ieee80211_ampdu_mlme_action action,
3511 const u8 *addr, u16 tid, u16 *ssn)
3512{
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003513 struct iwl_priv *priv = hw->priv;
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003514 DECLARE_MAC_BUF(mac);
3515
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003516 IWL_DEBUG_HT("A-MPDU action on addr %s tid %d\n",
3517 print_mac(mac, addr), tid);
3518
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003519 switch (action) {
3520 case IEEE80211_AMPDU_RX_START:
3521 IWL_DEBUG_HT("start Rx\n");
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003522 return iwl4965_rx_agg_start(priv, addr, tid, *ssn);
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003523 case IEEE80211_AMPDU_RX_STOP:
3524 IWL_DEBUG_HT("stop Rx\n");
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003525 return iwl4965_rx_agg_stop(priv, addr, tid);
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003526 case IEEE80211_AMPDU_TX_START:
3527 IWL_DEBUG_HT("start Tx\n");
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003528 return iwl4965_tx_agg_start(hw, addr, tid, ssn);
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003529 case IEEE80211_AMPDU_TX_STOP:
3530 IWL_DEBUG_HT("stop Tx\n");
Ron Rindjunskyfe07aa72008-04-17 16:03:37 -07003531 return iwl4965_tx_agg_stop(hw, addr, tid);
Ron Rindjunsky8114fcf2008-01-28 14:07:23 +02003532 default:
3533 IWL_DEBUG_HT("unknown\n");
3534 return -EINVAL;
3535 break;
3536 }
3537 return 0;
3538}
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003539#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07003540
Tomas Winkler133636d2008-05-05 10:22:34 +08003541
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08003542static u16 iwl4965_get_hcmd_size(u8 cmd_id, u16 len)
3543{
3544 switch (cmd_id) {
3545 case REPLY_RXON:
3546 return (u16) sizeof(struct iwl4965_rxon_cmd);
3547 default:
3548 return len;
3549 }
3550}
3551
Tomas Winkler133636d2008-05-05 10:22:34 +08003552static u16 iwl4965_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
3553{
3554 struct iwl4965_addsta_cmd *addsta = (struct iwl4965_addsta_cmd *)data;
3555 addsta->mode = cmd->mode;
3556 memcpy(&addsta->sta, &cmd->sta, sizeof(struct sta_id_modify));
3557 memcpy(&addsta->key, &cmd->key, sizeof(struct iwl4965_keyinfo));
3558 addsta->station_flags = cmd->station_flags;
3559 addsta->station_flags_msk = cmd->station_flags_msk;
3560 addsta->tid_disable_tx = cmd->tid_disable_tx;
3561 addsta->add_immediate_ba_tid = cmd->add_immediate_ba_tid;
3562 addsta->remove_immediate_ba_tid = cmd->remove_immediate_ba_tid;
3563 addsta->add_immediate_ba_ssn = cmd->add_immediate_ba_ssn;
3564 addsta->reserved1 = __constant_cpu_to_le16(0);
3565 addsta->reserved2 = __constant_cpu_to_le32(0);
3566
3567 return (u16)sizeof(struct iwl4965_addsta_cmd);
3568}
Zhu Yib481de92007-09-25 17:54:57 -07003569/* Set up 4965-specific Rx frame reply handlers */
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07003570static void iwl4965_rx_handler_setup(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003571{
3572 /* Legacy Rx frames */
Tomas Winkler857485c2008-03-21 13:53:44 -07003573 priv->rx_handlers[REPLY_RX] = iwl4965_rx_reply_rx;
Zhu Yib481de92007-09-25 17:54:57 -07003574
3575 /* High-throughput (HT) Rx frames */
3576 priv->rx_handlers[REPLY_RX_PHY_CMD] = iwl4965_rx_reply_rx_phy;
3577 priv->rx_handlers[REPLY_RX_MPDU_CMD] = iwl4965_rx_reply_rx;
3578
3579 priv->rx_handlers[MISSED_BEACONS_NOTIFICATION] =
3580 iwl4965_rx_missed_beacon_notif;
3581
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003582#ifdef CONFIG_IWL4965_HT
Zhu Yib481de92007-09-25 17:54:57 -07003583 priv->rx_handlers[REPLY_COMPRESSED_BA] = iwl4965_rx_reply_compressed_ba;
Christoph Hellwigc8b0e6e2007-10-25 17:15:51 +08003584#endif /* CONFIG_IWL4965_HT */
Zhu Yib481de92007-09-25 17:54:57 -07003585}
3586
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003587void iwl4965_hw_setup_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003588{
3589 INIT_WORK(&priv->txpower_work, iwl4965_bg_txpower_work);
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07003590#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
Zhu Yib481de92007-09-25 17:54:57 -07003591 INIT_WORK(&priv->sensitivity_work, iwl4965_bg_sensitivity_work);
3592#endif
Zhu Yib481de92007-09-25 17:54:57 -07003593 init_timer(&priv->statistics_periodic);
3594 priv->statistics_periodic.data = (unsigned long)priv;
3595 priv->statistics_periodic.function = iwl4965_bg_statistics_periodic;
3596}
3597
Tomas Winklerc79dd5b2008-03-12 16:58:50 -07003598void iwl4965_hw_cancel_deferred_work(struct iwl_priv *priv)
Zhu Yib481de92007-09-25 17:54:57 -07003599{
3600 del_timer_sync(&priv->statistics_periodic);
3601
3602 cancel_delayed_work(&priv->init_alive_start);
3603}
3604
Tomas Winkler3c424c22008-04-15 16:01:42 -07003605
3606static struct iwl_hcmd_ops iwl4965_hcmd = {
Tomas Winkler7e8c5192008-04-15 16:01:43 -07003607 .rxon_assoc = iwl4965_send_rxon_assoc,
Tomas Winkler3c424c22008-04-15 16:01:42 -07003608};
3609
Tomas Winkler857485c2008-03-21 13:53:44 -07003610static struct iwl_hcmd_utils_ops iwl4965_hcmd_utils = {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08003611 .get_hcmd_size = iwl4965_get_hcmd_size,
Tomas Winkler133636d2008-05-05 10:22:34 +08003612 .build_addsta_hcmd = iwl4965_build_addsta_hcmd,
Emmanuel Grumbachf0832f12008-04-16 16:34:47 -07003613#ifdef CONFIG_IWL4965_RUN_TIME_CALIB
3614 .chain_noise_reset = iwl4965_chain_noise_reset,
3615 .gain_computation = iwl4965_gain_computation,
3616#endif
Tomas Winkler857485c2008-03-21 13:53:44 -07003617};
3618
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003619static struct iwl_lib_ops iwl4965_lib = {
Tomas Winkler5425e492008-04-15 16:01:38 -07003620 .set_hw_params = iwl4965_hw_set_hw_params,
Ron Rindjunsky399f4902008-04-23 17:14:56 -07003621 .alloc_shared_mem = iwl4965_alloc_shared_mem,
3622 .free_shared_mem = iwl4965_free_shared_mem,
Ron Rindjunskyd67f5482008-05-05 10:22:49 +08003623 .shared_mem_rx_idx = iwl4965_shared_mem_rx_idx,
Tomas Winklere2a722e2008-04-14 21:16:10 -07003624 .txq_update_byte_cnt_tbl = iwl4965_txq_update_byte_cnt_tbl,
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +08003625 .disable_tx_fifo = iwl4965_disable_tx_fifo,
Emmanuel Grumbachd4789ef2008-04-24 11:55:20 -07003626 .rx_handler_setup = iwl4965_rx_handler_setup,
Tomas Winkler57aab752008-04-14 21:16:03 -07003627 .is_valid_rtc_data_addr = iwl4965_hw_valid_rtc_data_addr,
3628 .alive_notify = iwl4965_alive_notify,
Emmanuel Grumbachf3ccc082008-05-05 10:22:45 +08003629 .init_alive_start = iwl4965_init_alive_start,
Tomas Winkler57aab752008-04-14 21:16:03 -07003630 .load_ucode = iwl4965_load_bsm,
Tomas Winkler6f4083a2008-04-16 16:34:49 -07003631 .apm_ops = {
Tomas Winkler91238712008-04-23 17:14:53 -07003632 .init = iwl4965_apm_init,
Tomas Winkler7f066102008-05-29 16:34:57 +08003633 .reset = iwl4965_apm_reset,
Tomas Winklerf118a912008-05-29 16:34:58 +08003634 .stop = iwl4965_apm_stop,
Tomas Winkler694cc562008-04-24 11:55:22 -07003635 .config = iwl4965_nic_config,
Tomas Winkler6f4083a2008-04-16 16:34:49 -07003636 .set_pwr_src = iwl4965_set_pwr_src,
3637 },
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003638 .eeprom_ops = {
Tomas Winkler073d3f52008-04-21 15:41:52 -07003639 .regulatory_bands = {
3640 EEPROM_REGULATORY_BAND_1_CHANNELS,
3641 EEPROM_REGULATORY_BAND_2_CHANNELS,
3642 EEPROM_REGULATORY_BAND_3_CHANNELS,
3643 EEPROM_REGULATORY_BAND_4_CHANNELS,
3644 EEPROM_REGULATORY_BAND_5_CHANNELS,
3645 EEPROM_4965_REGULATORY_BAND_24_FAT_CHANNELS,
3646 EEPROM_4965_REGULATORY_BAND_52_FAT_CHANNELS
3647 },
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003648 .verify_signature = iwlcore_eeprom_verify_signature,
3649 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
3650 .release_semaphore = iwlcore_eeprom_release_semaphore,
Tomas Winkler8614f362008-04-23 17:14:55 -07003651 .check_version = iwl4965_eeprom_check_version,
Tomas Winkler073d3f52008-04-21 15:41:52 -07003652 .query_addr = iwlcore_eeprom_query_addr,
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003653 },
Mohamed Abbasad97edd2008-03-28 16:21:06 -07003654 .radio_kill_sw = iwl4965_radio_kill_sw,
Mohamed Abbas5da4b552008-04-21 15:41:51 -07003655 .set_power = iwl4965_set_power,
3656 .update_chain_flags = iwl4965_update_chain_flags,
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003657};
3658
3659static struct iwl_ops iwl4965_ops = {
3660 .lib = &iwl4965_lib,
Tomas Winkler3c424c22008-04-15 16:01:42 -07003661 .hcmd = &iwl4965_hcmd,
Tomas Winkler857485c2008-03-21 13:53:44 -07003662 .utils = &iwl4965_hcmd_utils,
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003663};
3664
Ron Rindjunskyfed90172008-04-15 16:01:41 -07003665struct iwl_cfg iwl4965_agn_cfg = {
Tomas Winkler82b9a122008-03-04 18:09:30 -08003666 .name = "4965AGN",
Tomas Winkler4bf775c2008-03-04 18:09:31 -08003667 .fw_name = "iwlwifi-4965" IWL4965_UCODE_API ".ucode",
Tomas Winkler82b9a122008-03-04 18:09:30 -08003668 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winkler073d3f52008-04-21 15:41:52 -07003669 .eeprom_size = IWL4965_EEPROM_IMG_SIZE,
Assaf Krauss6bc913b2008-03-11 16:17:18 -07003670 .ops = &iwl4965_ops,
Assaf Krauss1ea87392008-03-18 14:57:50 -07003671 .mod_params = &iwl4965_mod_params,
Tomas Winkler82b9a122008-03-04 18:09:30 -08003672};
3673
Assaf Krauss1ea87392008-03-18 14:57:50 -07003674module_param_named(antenna, iwl4965_mod_params.antenna, int, 0444);
3675MODULE_PARM_DESC(antenna, "select antenna (1=Main, 2=Aux, default 0 [both])");
3676module_param_named(disable, iwl4965_mod_params.disable, int, 0444);
3677MODULE_PARM_DESC(disable, "manually disable the radio (default 0 [radio on])");
Emmanuel Grumbachfcc76c62008-04-15 16:01:47 -07003678module_param_named(swcrypto, iwl4965_mod_params.sw_crypto, int, 0444);
3679MODULE_PARM_DESC(swcrypto, "using crypto in software (default 0 [hardware])\n");
Assaf Krauss1ea87392008-03-18 14:57:50 -07003680module_param_named(debug, iwl4965_mod_params.debug, int, 0444);
3681MODULE_PARM_DESC(debug, "debug output mask");
3682module_param_named(
3683 disable_hw_scan, iwl4965_mod_params.disable_hw_scan, int, 0444);
3684MODULE_PARM_DESC(disable_hw_scan, "disable hardware scanning (default 0)");
3685
3686module_param_named(queues_num, iwl4965_mod_params.num_of_queues, int, 0444);
3687MODULE_PARM_DESC(queues_num, "number of hw queues.");
3688
3689/* QoS */
3690module_param_named(qos_enable, iwl4965_mod_params.enable_qos, int, 0444);
3691MODULE_PARM_DESC(qos_enable, "enable all QoS functionality");
3692module_param_named(amsdu_size_8K, iwl4965_mod_params.amsdu_size_8K, int, 0444);
3693MODULE_PARM_DESC(amsdu_size_8K, "enable 8K amsdu size");
Ester Kummer3a1081e2008-05-06 11:05:14 +08003694module_param_named(fw_restart4965, iwl4965_mod_params.restart_fw, int, 0444);
3695MODULE_PARM_DESC(fw_restart4965, "restart firmware in case of error");