]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/wireless/iwlwifi/iwl-4965.c
iwlwifi: rename priv->scan to priv->scan_cmd
[net-next-2.6.git] / drivers / net / wireless / iwlwifi / iwl-4965.c
CommitLineData
b481de9c
ZY
1/******************************************************************************
2 *
1f447808 3 * Copyright(c) 2003 - 2010 Intel Corporation. All rights reserved.
b481de9c
ZY
4 *
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:
759ef89f 22 * Intel Linux Wireless <ilw@linux.intel.com>
b481de9c
ZY
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>
b481de9c
ZY
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/dma-mapping.h>
32#include <linux/delay.h>
d43c36dc 33#include <linux/sched.h>
b481de9c
ZY
34#include <linux/skbuff.h>
35#include <linux/netdevice.h>
36#include <linux/wireless.h>
37#include <net/mac80211.h>
b481de9c 38#include <linux/etherdevice.h>
12342c47 39#include <asm/unaligned.h>
b481de9c 40
6bc913bd 41#include "iwl-eeprom.h"
3e0d4cb1 42#include "iwl-dev.h"
fee1247a 43#include "iwl-core.h"
3395f6e9 44#include "iwl-io.h"
b481de9c 45#include "iwl-helpers.h"
f0832f13 46#include "iwl-calib.h"
5083e563 47#include "iwl-sta.h"
e932a609 48#include "iwl-agn-led.h"
74bcdb33 49#include "iwl-agn.h"
b481de9c 50
630fe9b6 51static int iwl4965_send_tx_power(struct iwl_priv *priv);
3d816c77 52static int iwl4965_hw_get_temperature(struct iwl_priv *priv);
630fe9b6 53
a0987a8d
RC
54/* Highest firmware API version supported */
55#define IWL4965_UCODE_API_MAX 2
56
57/* Lowest firmware API version supported */
58#define IWL4965_UCODE_API_MIN 2
59
60#define IWL4965_FW_PRE "iwlwifi-4965-"
61#define _IWL4965_MODULE_FIRMWARE(api) IWL4965_FW_PRE #api ".ucode"
62#define IWL4965_MODULE_FIRMWARE(api) _IWL4965_MODULE_FIRMWARE(api)
d16dc48a 63
57aab75a
TW
64/* check contents of special bootstrap uCode SRAM */
65static int iwl4965_verify_bsm(struct iwl_priv *priv)
66{
67 __le32 *image = priv->ucode_boot.v_addr;
68 u32 len = priv->ucode_boot.len;
69 u32 reg;
70 u32 val;
71
e1623446 72 IWL_DEBUG_INFO(priv, "Begin verify bsm\n");
57aab75a
TW
73
74 /* verify BSM SRAM contents */
75 val = iwl_read_prph(priv, BSM_WR_DWCOUNT_REG);
76 for (reg = BSM_SRAM_LOWER_BOUND;
77 reg < BSM_SRAM_LOWER_BOUND + len;
78 reg += sizeof(u32), image++) {
79 val = iwl_read_prph(priv, reg);
80 if (val != le32_to_cpu(*image)) {
15b1687c 81 IWL_ERR(priv, "BSM uCode verification failed at "
57aab75a
TW
82 "addr 0x%08X+%u (of %u), is 0x%x, s/b 0x%x\n",
83 BSM_SRAM_LOWER_BOUND,
84 reg - BSM_SRAM_LOWER_BOUND, len,
85 val, le32_to_cpu(*image));
86 return -EIO;
87 }
88 }
89
e1623446 90 IWL_DEBUG_INFO(priv, "BSM bootstrap uCode image OK\n");
57aab75a
TW
91
92 return 0;
93}
94
95/**
96 * iwl4965_load_bsm - Load bootstrap instructions
97 *
98 * BSM operation:
99 *
100 * The Bootstrap State Machine (BSM) stores a short bootstrap uCode program
101 * in special SRAM that does not power down during RFKILL. When powering back
102 * up after power-saving sleeps (or during initial uCode load), the BSM loads
103 * the bootstrap program into the on-board processor, and starts it.
104 *
105 * The bootstrap program loads (via DMA) instructions and data for a new
106 * program from host DRAM locations indicated by the host driver in the
107 * BSM_DRAM_* registers. Once the new program is loaded, it starts
108 * automatically.
109 *
110 * When initializing the NIC, the host driver points the BSM to the
111 * "initialize" uCode image. This uCode sets up some internal data, then
112 * notifies host via "initialize alive" that it is complete.
113 *
114 * The host then replaces the BSM_DRAM_* pointer values to point to the
115 * normal runtime uCode instructions and a backup uCode data cache buffer
116 * (filled initially with starting data values for the on-board processor),
117 * then triggers the "initialize" uCode to load and launch the runtime uCode,
118 * which begins normal operation.
119 *
120 * When doing a power-save shutdown, runtime uCode saves data SRAM into
121 * the backup data cache in DRAM before SRAM is powered down.
122 *
123 * When powering back up, the BSM loads the bootstrap program. This reloads
124 * the runtime uCode instructions and the backup data cache into SRAM,
125 * and re-launches the runtime uCode from where it left off.
126 */
127static int iwl4965_load_bsm(struct iwl_priv *priv)
128{
129 __le32 *image = priv->ucode_boot.v_addr;
130 u32 len = priv->ucode_boot.len;
131 dma_addr_t pinst;
132 dma_addr_t pdata;
133 u32 inst_len;
134 u32 data_len;
135 int i;
136 u32 done;
137 u32 reg_offset;
138 int ret;
139
e1623446 140 IWL_DEBUG_INFO(priv, "Begin load bsm\n");
57aab75a 141
c03ea162 142 priv->ucode_type = UCODE_RT;
fe9b6b72 143
57aab75a 144 /* make sure bootstrap program is no larger than BSM's SRAM size */
250bdd21 145 if (len > IWL49_MAX_BSM_SIZE)
57aab75a
TW
146 return -EINVAL;
147
148 /* Tell bootstrap uCode where to find the "Initialize" uCode
149 * in host DRAM ... host DRAM physical address bits 35:4 for 4965.
2d87889f 150 * NOTE: iwl_init_alive_start() will replace these values,
57aab75a 151 * after the "initialize" uCode has run, to point to
2d87889f
TW
152 * runtime/protocol instructions and backup data cache.
153 */
57aab75a
TW
154 pinst = priv->ucode_init.p_addr >> 4;
155 pdata = priv->ucode_init_data.p_addr >> 4;
156 inst_len = priv->ucode_init.len;
157 data_len = priv->ucode_init_data.len;
158
57aab75a
TW
159 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
160 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
161 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG, inst_len);
162 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG, data_len);
163
164 /* Fill BSM memory with bootstrap instructions */
165 for (reg_offset = BSM_SRAM_LOWER_BOUND;
166 reg_offset < BSM_SRAM_LOWER_BOUND + len;
167 reg_offset += sizeof(u32), image++)
168 _iwl_write_prph(priv, reg_offset, le32_to_cpu(*image));
169
170 ret = iwl4965_verify_bsm(priv);
a8b50a0a 171 if (ret)
57aab75a 172 return ret;
57aab75a
TW
173
174 /* Tell BSM to copy from BSM SRAM into instruction SRAM, when asked */
175 iwl_write_prph(priv, BSM_WR_MEM_SRC_REG, 0x0);
250bdd21 176 iwl_write_prph(priv, BSM_WR_MEM_DST_REG, IWL49_RTC_INST_LOWER_BOUND);
57aab75a
TW
177 iwl_write_prph(priv, BSM_WR_DWCOUNT_REG, len / sizeof(u32));
178
179 /* Load bootstrap code into instruction SRAM now,
180 * to prepare to load "initialize" uCode */
181 iwl_write_prph(priv, BSM_WR_CTRL_REG, BSM_WR_CTRL_REG_BIT_START);
182
183 /* Wait for load of bootstrap uCode to finish */
184 for (i = 0; i < 100; i++) {
185 done = iwl_read_prph(priv, BSM_WR_CTRL_REG);
186 if (!(done & BSM_WR_CTRL_REG_BIT_START))
187 break;
188 udelay(10);
189 }
190 if (i < 100)
e1623446 191 IWL_DEBUG_INFO(priv, "BSM write complete, poll %d iterations\n", i);
57aab75a 192 else {
15b1687c 193 IWL_ERR(priv, "BSM write did not complete!\n");
57aab75a
TW
194 return -EIO;
195 }
196
197 /* Enable future boot loads whenever power management unit triggers it
198 * (e.g. when powering back up after power-save shutdown) */
199 iwl_write_prph(priv, BSM_WR_CTRL_REG, BSM_WR_CTRL_REG_BIT_START_EN);
200
57aab75a
TW
201
202 return 0;
203}
204
f3ccc08c
EG
205/**
206 * iwl4965_set_ucode_ptrs - Set uCode address location
207 *
208 * Tell initialization uCode where to find runtime uCode.
209 *
210 * BSM registers initially contain pointers to initialization uCode.
211 * We need to replace them to load runtime uCode inst and data,
212 * and to save runtime data when powering down.
213 */
214static int iwl4965_set_ucode_ptrs(struct iwl_priv *priv)
215{
216 dma_addr_t pinst;
217 dma_addr_t pdata;
f3ccc08c
EG
218 int ret = 0;
219
220 /* bits 35:4 for 4965 */
221 pinst = priv->ucode_code.p_addr >> 4;
222 pdata = priv->ucode_data_backup.p_addr >> 4;
223
f3ccc08c
EG
224 /* Tell bootstrap uCode where to find image to load */
225 iwl_write_prph(priv, BSM_DRAM_INST_PTR_REG, pinst);
226 iwl_write_prph(priv, BSM_DRAM_DATA_PTR_REG, pdata);
227 iwl_write_prph(priv, BSM_DRAM_DATA_BYTECOUNT_REG,
228 priv->ucode_data.len);
229
a96a27f9 230 /* Inst byte count must be last to set up, bit 31 signals uCode
f3ccc08c
EG
231 * that all new ptr/size info is in place */
232 iwl_write_prph(priv, BSM_DRAM_INST_BYTECOUNT_REG,
233 priv->ucode_code.len | BSM_DRAM_INST_LOAD);
e1623446 234 IWL_DEBUG_INFO(priv, "Runtime uCode pointers are set.\n");
f3ccc08c
EG
235
236 return ret;
237}
238
239/**
240 * iwl4965_init_alive_start - Called after REPLY_ALIVE notification received
241 *
242 * Called after REPLY_ALIVE notification received from "initialize" uCode.
243 *
244 * The 4965 "initialize" ALIVE reply contains calibration data for:
245 * Voltage, temperature, and MIMO tx gain correction, now stored in priv
246 * (3945 does not contain this data).
247 *
248 * Tell "initialize" uCode to go ahead and load the runtime uCode.
249*/
250static void iwl4965_init_alive_start(struct iwl_priv *priv)
251{
252 /* Check alive response for "valid" sign from uCode */
253 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
254 /* We had an error bringing up the hardware, so take it
255 * all the way back down so we can try again */
e1623446 256 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
f3ccc08c
EG
257 goto restart;
258 }
259
260 /* Bootstrap uCode has loaded initialize uCode ... verify inst image.
261 * This is a paranoid check, because we would not have gotten the
262 * "initialize" alive if code weren't properly loaded. */
263 if (iwl_verify_ucode(priv)) {
264 /* Runtime instruction load was bad;
265 * take it all the way back down so we can try again */
e1623446 266 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
f3ccc08c
EG
267 goto restart;
268 }
269
270 /* Calculate temperature */
91dbc5bd 271 priv->temperature = iwl4965_hw_get_temperature(priv);
f3ccc08c
EG
272
273 /* Send pointers to protocol/runtime uCode image ... init code will
274 * load and launch runtime uCode, which will send us another "Alive"
275 * notification. */
e1623446 276 IWL_DEBUG_INFO(priv, "Initialization Alive received.\n");
f3ccc08c
EG
277 if (iwl4965_set_ucode_ptrs(priv)) {
278 /* Runtime instruction load won't happen;
279 * take it all the way back down so we can try again */
e1623446 280 IWL_DEBUG_INFO(priv, "Couldn't set up uCode pointers.\n");
f3ccc08c
EG
281 goto restart;
282 }
283 return;
284
285restart:
286 queue_work(priv->workqueue, &priv->restart);
287}
288
7aafef1c 289static bool is_ht40_channel(__le32 rxon_flags)
b481de9c 290{
a2b0f02e
WYG
291 int chan_mod = le32_to_cpu(rxon_flags & RXON_FLG_CHANNEL_MODE_MSK)
292 >> RXON_FLG_CHANNEL_MODE_POS;
293 return ((chan_mod == CHANNEL_MODE_PURE_40) ||
294 (chan_mod == CHANNEL_MODE_MIXED));
b481de9c
ZY
295}
296
8614f360
TW
297/*
298 * EEPROM handlers
299 */
0ef2ca67 300static u16 iwl4965_eeprom_calib_version(struct iwl_priv *priv)
8614f360 301{
0ef2ca67 302 return iwl_eeprom_query16(priv, EEPROM_4965_CALIB_VERSION_OFFSET);
8614f360 303}
b481de9c 304
da1bc453 305/*
a96a27f9 306 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
da1bc453
TW
307 * must be called under priv->lock and mac access
308 */
309static void iwl4965_txq_set_sched(struct iwl_priv *priv, u32 mask)
b481de9c 310{
da1bc453 311 iwl_write_prph(priv, IWL49_SCD_TXFACT, mask);
b481de9c
ZY
312}
313
694cc56d 314static void iwl4965_nic_config(struct iwl_priv *priv)
91238714
TW
315{
316 unsigned long flags;
694cc56d 317 u16 radio_cfg;
6f4083aa 318
b481de9c
ZY
319 spin_lock_irqsave(&priv->lock, flags);
320
694cc56d 321 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
b481de9c 322
694cc56d
TW
323 /* write radio config values to register */
324 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) == EEPROM_4965_RF_CFG_TYPE_MAX)
325 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
326 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
327 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
328 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
b481de9c 329
694cc56d 330 /* set CSR_HW_CONFIG_REG for uCode use */
3395f6e9 331 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
a395b920
TW
332 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
333 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
b481de9c 334
694cc56d
TW
335 priv->calib_info = (struct iwl_eeprom_calib_info *)
336 iwl_eeprom_query_addr(priv, EEPROM_4965_CALIB_TXPOWER_OFFSET);
337
338 spin_unlock_irqrestore(&priv->lock, flags);
339}
340
b481de9c
ZY
341/* Reset differential Rx gains in NIC to prepare for chain noise calibration.
342 * Called after every association, but this runs only once!
343 * ... once chain noise is calibrated the first time, it's good forever. */
f0832f13 344static void iwl4965_chain_noise_reset(struct iwl_priv *priv)
b481de9c 345{
f0832f13 346 struct iwl_chain_noise_data *data = &(priv->chain_noise_data);
b481de9c 347
3109ece1 348 if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) {
f69f42a6 349 struct iwl_calib_diff_gain_cmd cmd;
b481de9c
ZY
350
351 memset(&cmd, 0, sizeof(cmd));
0d950d84 352 cmd.hdr.op_code = IWL_PHY_CALIBRATE_DIFF_GAIN_CMD;
b481de9c
ZY
353 cmd.diff_gain_a = 0;
354 cmd.diff_gain_b = 0;
355 cmd.diff_gain_c = 0;
f0832f13
EG
356 if (iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
357 sizeof(cmd), &cmd))
15b1687c
WT
358 IWL_ERR(priv,
359 "Could not send REPLY_PHY_CALIBRATION_CMD\n");
b481de9c 360 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
e1623446 361 IWL_DEBUG_CALIB(priv, "Run chain_noise_calibrate\n");
b481de9c 362 }
b481de9c
ZY
363}
364
f0832f13
EG
365static void iwl4965_gain_computation(struct iwl_priv *priv,
366 u32 *average_noise,
367 u16 min_average_noise_antenna_i,
d8c07e7a
WYG
368 u32 min_average_noise,
369 u8 default_chain)
b481de9c 370{
f0832f13
EG
371 int i, ret;
372 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
b481de9c 373
f0832f13 374 data->delta_gain_code[min_average_noise_antenna_i] = 0;
b481de9c 375
d8c07e7a 376 for (i = default_chain; i < NUM_RX_CHAINS; i++) {
f0832f13 377 s32 delta_g = 0;
b481de9c 378
f0832f13
EG
379 if (!(data->disconn_array[i]) &&
380 (data->delta_gain_code[i] ==
b481de9c 381 CHAIN_NOISE_DELTA_GAIN_INIT_VAL)) {
f0832f13
EG
382 delta_g = average_noise[i] - min_average_noise;
383 data->delta_gain_code[i] = (u8)((delta_g * 10) / 15);
384 data->delta_gain_code[i] =
385 min(data->delta_gain_code[i],
386 (u8) CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
387
388 data->delta_gain_code[i] =
389 (data->delta_gain_code[i] | (1 << 2));
390 } else {
391 data->delta_gain_code[i] = 0;
b481de9c 392 }
b481de9c 393 }
e1623446 394 IWL_DEBUG_CALIB(priv, "delta_gain_codes: a %d b %d c %d\n",
f0832f13
EG
395 data->delta_gain_code[0],
396 data->delta_gain_code[1],
397 data->delta_gain_code[2]);
b481de9c 398
f0832f13
EG
399 /* Differential gain gets sent to uCode only once */
400 if (!data->radio_write) {
f69f42a6 401 struct iwl_calib_diff_gain_cmd cmd;
f0832f13 402 data->radio_write = 1;
b481de9c 403
f0832f13 404 memset(&cmd, 0, sizeof(cmd));
0d950d84 405 cmd.hdr.op_code = IWL_PHY_CALIBRATE_DIFF_GAIN_CMD;
f0832f13
EG
406 cmd.diff_gain_a = data->delta_gain_code[0];
407 cmd.diff_gain_b = data->delta_gain_code[1];
408 cmd.diff_gain_c = data->delta_gain_code[2];
409 ret = iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
410 sizeof(cmd), &cmd);
411 if (ret)
e1623446 412 IWL_DEBUG_CALIB(priv, "fail sending cmd "
91dd6c27 413 "REPLY_PHY_CALIBRATION_CMD\n");
f0832f13
EG
414
415 /* TODO we might want recalculate
416 * rx_chain in rxon cmd */
417
418 /* Mark so we run this algo only once! */
419 data->state = IWL_CHAIN_NOISE_CALIBRATED;
b481de9c 420 }
f0832f13
EG
421 data->chain_noise_a = 0;
422 data->chain_noise_b = 0;
423 data->chain_noise_c = 0;
424 data->chain_signal_a = 0;
425 data->chain_signal_b = 0;
426 data->chain_signal_c = 0;
427 data->beacon_count = 0;
b481de9c
ZY
428}
429
b481de9c
ZY
430static void iwl4965_bg_txpower_work(struct work_struct *work)
431{
c79dd5b5 432 struct iwl_priv *priv = container_of(work, struct iwl_priv,
b481de9c
ZY
433 txpower_work);
434
435 /* If a scan happened to start before we got here
436 * then just return; the statistics notification will
437 * kick off another scheduled work to compensate for
438 * any temperature delta we missed here. */
439 if (test_bit(STATUS_EXIT_PENDING, &priv->status) ||
440 test_bit(STATUS_SCANNING, &priv->status))
441 return;
442
443 mutex_lock(&priv->mutex);
444
a96a27f9 445 /* Regardless of if we are associated, we must reconfigure the
b481de9c
ZY
446 * TX power since frames can be sent on non-radar channels while
447 * not associated */
630fe9b6 448 iwl4965_send_tx_power(priv);
b481de9c
ZY
449
450 /* Update last_temperature to keep is_calib_needed from running
451 * when it isn't needed... */
452 priv->last_temperature = priv->temperature;
453
454 mutex_unlock(&priv->mutex);
455}
456
457/*
458 * Acquire priv->lock before calling this function !
459 */
c79dd5b5 460static void iwl4965_set_wr_ptrs(struct iwl_priv *priv, int txq_id, u32 index)
b481de9c 461{
3395f6e9 462 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
b481de9c 463 (index & 0xff) | (txq_id << 8));
12a81f60 464 iwl_write_prph(priv, IWL49_SCD_QUEUE_RDPTR(txq_id), index);
b481de9c
ZY
465}
466
8b6eaea8
BC
467/**
468 * iwl4965_tx_queue_set_status - (optionally) start Tx/Cmd queue
469 * @tx_fifo_id: Tx DMA/FIFO channel (range 0-7) that the queue will feed
470 * @scd_retry: (1) Indicates queue will be used in aggregation mode
471 *
472 * NOTE: Acquire priv->lock before calling this function !
b481de9c 473 */
c79dd5b5 474static void iwl4965_tx_queue_set_status(struct iwl_priv *priv,
16466903 475 struct iwl_tx_queue *txq,
b481de9c
ZY
476 int tx_fifo_id, int scd_retry)
477{
478 int txq_id = txq->q.id;
8b6eaea8
BC
479
480 /* Find out whether to activate Tx queue */
c3056065 481 int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0;
b481de9c 482
8b6eaea8 483 /* Set up and activate */
12a81f60 484 iwl_write_prph(priv, IWL49_SCD_QUEUE_STATUS_BITS(txq_id),
038669e4
EG
485 (active << IWL49_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
486 (tx_fifo_id << IWL49_SCD_QUEUE_STTS_REG_POS_TXF) |
487 (scd_retry << IWL49_SCD_QUEUE_STTS_REG_POS_WSL) |
488 (scd_retry << IWL49_SCD_QUEUE_STTS_REG_POS_SCD_ACK) |
489 IWL49_SCD_QUEUE_STTS_REG_MSK);
b481de9c
ZY
490
491 txq->sched_retry = scd_retry;
492
e1623446 493 IWL_DEBUG_INFO(priv, "%s %s Queue %d on AC %d\n",
8b6eaea8 494 active ? "Activate" : "Deactivate",
b481de9c
ZY
495 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
496}
497
edc1a3a0
JB
498static const s8 default_queue_to_tx_fifo[] = {
499 IWL_TX_FIFO_VO,
500 IWL_TX_FIFO_VI,
501 IWL_TX_FIFO_BE,
502 IWL_TX_FIFO_BK,
038669e4 503 IWL49_CMD_FIFO_NUM,
edc1a3a0
JB
504 IWL_TX_FIFO_UNUSED,
505 IWL_TX_FIFO_UNUSED,
b481de9c
ZY
506};
507
be1f3ab6 508static int iwl4965_alive_notify(struct iwl_priv *priv)
b481de9c
ZY
509{
510 u32 a;
b481de9c 511 unsigned long flags;
31a73fe4 512 int i, chan;
40fc95d5 513 u32 reg_val;
b481de9c
ZY
514
515 spin_lock_irqsave(&priv->lock, flags);
516
8b6eaea8 517 /* Clear 4965's internal Tx Scheduler data base */
12a81f60 518 priv->scd_base_addr = iwl_read_prph(priv, IWL49_SCD_SRAM_BASE_ADDR);
038669e4
EG
519 a = priv->scd_base_addr + IWL49_SCD_CONTEXT_DATA_OFFSET;
520 for (; a < priv->scd_base_addr + IWL49_SCD_TX_STTS_BITMAP_OFFSET; a += 4)
3395f6e9 521 iwl_write_targ_mem(priv, a, 0);
038669e4 522 for (; a < priv->scd_base_addr + IWL49_SCD_TRANSLATE_TBL_OFFSET; a += 4)
3395f6e9 523 iwl_write_targ_mem(priv, a, 0);
39d5e0ce
HW
524 for (; a < priv->scd_base_addr +
525 IWL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(priv->hw_params.max_txq_num); a += 4)
3395f6e9 526 iwl_write_targ_mem(priv, a, 0);
b481de9c 527
8b6eaea8 528 /* Tel 4965 where to find Tx byte count tables */
12a81f60 529 iwl_write_prph(priv, IWL49_SCD_DRAM_BASE_ADDR,
4ddbb7d0 530 priv->scd_bc_tbls.dma >> 10);
8b6eaea8 531
31a73fe4
WT
532 /* Enable DMA channel */
533 for (chan = 0; chan < FH49_TCSR_CHNL_NUM ; chan++)
534 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
535 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
536 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
537
40fc95d5
WT
538 /* Update FH chicken bits */
539 reg_val = iwl_read_direct32(priv, FH_TX_CHICKEN_BITS_REG);
540 iwl_write_direct32(priv, FH_TX_CHICKEN_BITS_REG,
541 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
542
8b6eaea8 543 /* Disable chain mode for all queues */
12a81f60 544 iwl_write_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, 0);
b481de9c 545
8b6eaea8 546 /* Initialize each Tx queue (including the command queue) */
5425e490 547 for (i = 0; i < priv->hw_params.max_txq_num; i++) {
8b6eaea8
BC
548
549 /* TFD circular buffer read/write indexes */
12a81f60 550 iwl_write_prph(priv, IWL49_SCD_QUEUE_RDPTR(i), 0);
3395f6e9 551 iwl_write_direct32(priv, HBUS_TARG_WRPTR, 0 | (i << 8));
8b6eaea8
BC
552
553 /* Max Tx Window size for Scheduler-ACK mode */
3395f6e9 554 iwl_write_targ_mem(priv, priv->scd_base_addr +
038669e4
EG
555 IWL49_SCD_CONTEXT_QUEUE_OFFSET(i),
556 (SCD_WIN_SIZE <<
557 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
558 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
8b6eaea8
BC
559
560 /* Frame limit */
3395f6e9 561 iwl_write_targ_mem(priv, priv->scd_base_addr +
038669e4
EG
562 IWL49_SCD_CONTEXT_QUEUE_OFFSET(i) +
563 sizeof(u32),
564 (SCD_FRAME_LIMIT <<
565 IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
566 IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
b481de9c
ZY
567
568 }
12a81f60 569 iwl_write_prph(priv, IWL49_SCD_INTERRUPT_MASK,
5425e490 570 (1 << priv->hw_params.max_txq_num) - 1);
b481de9c 571
8b6eaea8 572 /* Activate all Tx DMA/FIFO channels */
31a73fe4 573 priv->cfg->ops->lib->txq_set_sched(priv, IWL_MASK(0, 6));
b481de9c
ZY
574
575 iwl4965_set_wr_ptrs(priv, IWL_CMD_QUEUE_NUM, 0);
8b6eaea8 576
a9e10fb9
WYG
577 /* make sure all queue are not stopped */
578 memset(&priv->queue_stopped[0], 0, sizeof(priv->queue_stopped));
579 for (i = 0; i < 4; i++)
580 atomic_set(&priv->queue_stop_count[i], 0);
581
dff010ac
WYG
582 /* reset to 0 to enable all the queue first */
583 priv->txq_ctx_active_msk = 0;
8b6eaea8 584 /* Map each Tx/cmd queue to its corresponding fifo */
edc1a3a0 585 BUILD_BUG_ON(ARRAY_SIZE(default_queue_to_tx_fifo) != 7);
b481de9c
ZY
586 for (i = 0; i < ARRAY_SIZE(default_queue_to_tx_fifo); i++) {
587 int ac = default_queue_to_tx_fifo[i];
edc1a3a0 588
36470749 589 iwl_txq_ctx_activate(priv, i);
edc1a3a0
JB
590
591 if (ac == IWL_TX_FIFO_UNUSED)
592 continue;
593
b481de9c
ZY
594 iwl4965_tx_queue_set_status(priv, &priv->txq[i], ac, 0);
595 }
596
b481de9c
ZY
597 spin_unlock_irqrestore(&priv->lock, flags);
598
a8b50a0a 599 return 0;
b481de9c
ZY
600}
601
f0832f13
EG
602static struct iwl_sensitivity_ranges iwl4965_sensitivity = {
603 .min_nrg_cck = 97,
fe6efb4b 604 .max_nrg_cck = 0, /* not used, set to 0 */
f0832f13
EG
605
606 .auto_corr_min_ofdm = 85,
607 .auto_corr_min_ofdm_mrc = 170,
608 .auto_corr_min_ofdm_x1 = 105,
609 .auto_corr_min_ofdm_mrc_x1 = 220,
610
611 .auto_corr_max_ofdm = 120,
612 .auto_corr_max_ofdm_mrc = 210,
613 .auto_corr_max_ofdm_x1 = 140,
614 .auto_corr_max_ofdm_mrc_x1 = 270,
615
616 .auto_corr_min_cck = 125,
617 .auto_corr_max_cck = 200,
618 .auto_corr_min_cck_mrc = 200,
619 .auto_corr_max_cck_mrc = 400,
620
621 .nrg_th_cck = 100,
622 .nrg_th_ofdm = 100,
55036d66
WYG
623
624 .barker_corr_th_min = 190,
625 .barker_corr_th_min_mrc = 390,
626 .nrg_th_cca = 62,
f0832f13 627};
f0832f13 628
62161aef
WYG
629static void iwl4965_set_ct_threshold(struct iwl_priv *priv)
630{
631 /* want Kelvin */
672639de
WYG
632 priv->hw_params.ct_kill_threshold =
633 CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD_LEGACY);
62161aef
WYG
634}
635
8b6eaea8 636/**
5425e490 637 * iwl4965_hw_set_hw_params
8b6eaea8
BC
638 *
639 * Called when initializing driver
640 */
be1f3ab6 641static int iwl4965_hw_set_hw_params(struct iwl_priv *priv)
b481de9c 642{
88804e2b
WYG
643 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
644 priv->cfg->mod_params->num_of_queues <= IWL49_NUM_QUEUES)
645 priv->cfg->num_of_queues =
646 priv->cfg->mod_params->num_of_queues;
316c30d9 647
88804e2b 648 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
f3f911d1 649 priv->hw_params.dma_chnl_num = FH49_TCSR_CHNL_NUM;
4ddbb7d0 650 priv->hw_params.scd_bc_tbls_size =
88804e2b
WYG
651 priv->cfg->num_of_queues *
652 sizeof(struct iwl4965_scd_bc_tbl);
a8e74e27 653 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
5425e490
TW
654 priv->hw_params.max_stations = IWL4965_STATION_COUNT;
655 priv->hw_params.bcast_sta_id = IWL4965_BROADCAST_ID;
099b40b7
RR
656 priv->hw_params.max_data_size = IWL49_RTC_DATA_SIZE;
657 priv->hw_params.max_inst_size = IWL49_RTC_INST_SIZE;
658 priv->hw_params.max_bsm_size = BSM_SRAM_SIZE;
7aafef1c 659 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_5GHZ);
099b40b7 660
141c43a3
WT
661 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
662
52aa081c
WYG
663 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
664 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
665 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
666 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
62161aef
WYG
667 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
668 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
099b40b7 669
f0832f13 670 priv->hw_params.sens = &iwl4965_sensitivity;
3e82a822 671
059ff826 672 return 0;
b481de9c
ZY
673}
674
b481de9c
ZY
675static s32 iwl4965_math_div_round(s32 num, s32 denom, s32 *res)
676{
677 s32 sign = 1;
678
679 if (num < 0) {
680 sign = -sign;
681 num = -num;
682 }
683 if (denom < 0) {
684 sign = -sign;
685 denom = -denom;
686 }
687 *res = 1;
688 *res = ((num * 2 + denom) / (denom * 2)) * sign;
689
690 return 1;
691}
692
8b6eaea8
BC
693/**
694 * iwl4965_get_voltage_compensation - Power supply voltage comp for txpower
695 *
696 * Determines power supply voltage compensation for txpower calculations.
697 * Returns number of 1/2-dB steps to subtract from gain table index,
698 * to compensate for difference between power supply voltage during
699 * factory measurements, vs. current power supply voltage.
700 *
701 * Voltage indication is higher for lower voltage.
702 * Lower voltage requires more gain (lower gain table index).
703 */
b481de9c
ZY
704static s32 iwl4965_get_voltage_compensation(s32 eeprom_voltage,
705 s32 current_voltage)
706{
707 s32 comp = 0;
708
709 if ((TX_POWER_IWL_ILLEGAL_VOLTAGE == eeprom_voltage) ||
710 (TX_POWER_IWL_ILLEGAL_VOLTAGE == current_voltage))
711 return 0;
712
713 iwl4965_math_div_round(current_voltage - eeprom_voltage,
714 TX_POWER_IWL_VOLTAGE_CODES_PER_03V, &comp);
715
716 if (current_voltage > eeprom_voltage)
717 comp *= 2;
718 if ((comp < -2) || (comp > 2))
719 comp = 0;
720
721 return comp;
722}
723
b481de9c
ZY
724static s32 iwl4965_get_tx_atten_grp(u16 channel)
725{
726 if (channel >= CALIB_IWL_TX_ATTEN_GR5_FCH &&
727 channel <= CALIB_IWL_TX_ATTEN_GR5_LCH)
728 return CALIB_CH_GROUP_5;
729
730 if (channel >= CALIB_IWL_TX_ATTEN_GR1_FCH &&
731 channel <= CALIB_IWL_TX_ATTEN_GR1_LCH)
732 return CALIB_CH_GROUP_1;
733
734 if (channel >= CALIB_IWL_TX_ATTEN_GR2_FCH &&
735 channel <= CALIB_IWL_TX_ATTEN_GR2_LCH)
736 return CALIB_CH_GROUP_2;
737
738 if (channel >= CALIB_IWL_TX_ATTEN_GR3_FCH &&
739 channel <= CALIB_IWL_TX_ATTEN_GR3_LCH)
740 return CALIB_CH_GROUP_3;
741
742 if (channel >= CALIB_IWL_TX_ATTEN_GR4_FCH &&
743 channel <= CALIB_IWL_TX_ATTEN_GR4_LCH)
744 return CALIB_CH_GROUP_4;
745
b481de9c
ZY
746 return -1;
747}
748
c79dd5b5 749static u32 iwl4965_get_sub_band(const struct iwl_priv *priv, u32 channel)
b481de9c
ZY
750{
751 s32 b = -1;
752
753 for (b = 0; b < EEPROM_TX_POWER_BANDS; b++) {
073d3f5f 754 if (priv->calib_info->band_info[b].ch_from == 0)
b481de9c
ZY
755 continue;
756
073d3f5f
TW
757 if ((channel >= priv->calib_info->band_info[b].ch_from)
758 && (channel <= priv->calib_info->band_info[b].ch_to))
b481de9c
ZY
759 break;
760 }
761
762 return b;
763}
764
765static s32 iwl4965_interpolate_value(s32 x, s32 x1, s32 y1, s32 x2, s32 y2)
766{
767 s32 val;
768
769 if (x2 == x1)
770 return y1;
771 else {
772 iwl4965_math_div_round((x2 - x) * (y1 - y2), (x2 - x1), &val);
773 return val + y2;
774 }
775}
776
8b6eaea8
BC
777/**
778 * iwl4965_interpolate_chan - Interpolate factory measurements for one channel
779 *
780 * Interpolates factory measurements from the two sample channels within a
781 * sub-band, to apply to channel of interest. Interpolation is proportional to
782 * differences in channel frequencies, which is proportional to differences
783 * in channel number.
784 */
c79dd5b5 785static int iwl4965_interpolate_chan(struct iwl_priv *priv, u32 channel,
073d3f5f 786 struct iwl_eeprom_calib_ch_info *chan_info)
b481de9c
ZY
787{
788 s32 s = -1;
789 u32 c;
790 u32 m;
073d3f5f
TW
791 const struct iwl_eeprom_calib_measure *m1;
792 const struct iwl_eeprom_calib_measure *m2;
793 struct iwl_eeprom_calib_measure *omeas;
b481de9c
ZY
794 u32 ch_i1;
795 u32 ch_i2;
796
797 s = iwl4965_get_sub_band(priv, channel);
798 if (s >= EEPROM_TX_POWER_BANDS) {
15b1687c 799 IWL_ERR(priv, "Tx Power can not find channel %d\n", channel);
b481de9c
ZY
800 return -1;
801 }
802
073d3f5f
TW
803 ch_i1 = priv->calib_info->band_info[s].ch1.ch_num;
804 ch_i2 = priv->calib_info->band_info[s].ch2.ch_num;
b481de9c
ZY
805 chan_info->ch_num = (u8) channel;
806
e1623446 807 IWL_DEBUG_TXPOWER(priv, "channel %d subband %d factory cal ch %d & %d\n",
b481de9c
ZY
808 channel, s, ch_i1, ch_i2);
809
810 for (c = 0; c < EEPROM_TX_POWER_TX_CHAINS; c++) {
811 for (m = 0; m < EEPROM_TX_POWER_MEASUREMENTS; m++) {
073d3f5f 812 m1 = &(priv->calib_info->band_info[s].ch1.
b481de9c 813 measurements[c][m]);
073d3f5f 814 m2 = &(priv->calib_info->band_info[s].ch2.
b481de9c
ZY
815 measurements[c][m]);
816 omeas = &(chan_info->measurements[c][m]);
817
818 omeas->actual_pow =
819 (u8) iwl4965_interpolate_value(channel, ch_i1,
820 m1->actual_pow,
821 ch_i2,
822 m2->actual_pow);
823 omeas->gain_idx =
824 (u8) iwl4965_interpolate_value(channel, ch_i1,
825 m1->gain_idx, ch_i2,
826 m2->gain_idx);
827 omeas->temperature =
828 (u8) iwl4965_interpolate_value(channel, ch_i1,
829 m1->temperature,
830 ch_i2,
831 m2->temperature);
832 omeas->pa_det =
833 (s8) iwl4965_interpolate_value(channel, ch_i1,
834 m1->pa_det, ch_i2,
835 m2->pa_det);
836
e1623446
TW
837 IWL_DEBUG_TXPOWER(priv,
838 "chain %d meas %d AP1=%d AP2=%d AP=%d\n", c, m,
839 m1->actual_pow, m2->actual_pow, omeas->actual_pow);
840 IWL_DEBUG_TXPOWER(priv,
841 "chain %d meas %d NI1=%d NI2=%d NI=%d\n", c, m,
842 m1->gain_idx, m2->gain_idx, omeas->gain_idx);
843 IWL_DEBUG_TXPOWER(priv,
844 "chain %d meas %d PA1=%d PA2=%d PA=%d\n", c, m,
845 m1->pa_det, m2->pa_det, omeas->pa_det);
846 IWL_DEBUG_TXPOWER(priv,
847 "chain %d meas %d T1=%d T2=%d T=%d\n", c, m,
848 m1->temperature, m2->temperature,
849 omeas->temperature);
b481de9c
ZY
850 }
851 }
852
853 return 0;
854}
855
856/* bit-rate-dependent table to prevent Tx distortion, in half-dB units,
857 * for OFDM 6, 12, 18, 24, 36, 48, 54, 60 MBit, and CCK all rates. */
858static s32 back_off_table[] = {
859 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM SISO 20 MHz */
860 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM MIMO 20 MHz */
861 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM SISO 40 MHz */
862 10, 10, 10, 10, 10, 15, 17, 20, /* OFDM MIMO 40 MHz */
863 10 /* CCK */
864};
865
866/* Thermal compensation values for txpower for various frequency ranges ...
867 * ratios from 3:1 to 4.5:1 of degrees (Celsius) per half-dB gain adjust */
bb8c093b 868static struct iwl4965_txpower_comp_entry {
b481de9c
ZY
869 s32 degrees_per_05db_a;
870 s32 degrees_per_05db_a_denom;
871} tx_power_cmp_tble[CALIB_CH_GROUP_MAX] = {
872 {9, 2}, /* group 0 5.2, ch 34-43 */
873 {4, 1}, /* group 1 5.2, ch 44-70 */
874 {4, 1}, /* group 2 5.2, ch 71-124 */
875 {4, 1}, /* group 3 5.2, ch 125-200 */
876 {3, 1} /* group 4 2.4, ch all */
877};
878
879static s32 get_min_power_index(s32 rate_power_index, u32 band)
880{
881 if (!band) {
882 if ((rate_power_index & 7) <= 4)
883 return MIN_TX_GAIN_INDEX_52GHZ_EXT;
884 }
885 return MIN_TX_GAIN_INDEX;
886}
887
888struct gain_entry {
889 u8 dsp;
890 u8 radio;
891};
892
893static const struct gain_entry gain_table[2][108] = {
894 /* 5.2GHz power gain index table */
895 {
896 {123, 0x3F}, /* highest txpower */
897 {117, 0x3F},
898 {110, 0x3F},
899 {104, 0x3F},
900 {98, 0x3F},
901 {110, 0x3E},
902 {104, 0x3E},
903 {98, 0x3E},
904 {110, 0x3D},
905 {104, 0x3D},
906 {98, 0x3D},
907 {110, 0x3C},
908 {104, 0x3C},
909 {98, 0x3C},
910 {110, 0x3B},
911 {104, 0x3B},
912 {98, 0x3B},
913 {110, 0x3A},
914 {104, 0x3A},
915 {98, 0x3A},
916 {110, 0x39},
917 {104, 0x39},
918 {98, 0x39},
919 {110, 0x38},
920 {104, 0x38},
921 {98, 0x38},
922 {110, 0x37},
923 {104, 0x37},
924 {98, 0x37},
925 {110, 0x36},
926 {104, 0x36},
927 {98, 0x36},
928 {110, 0x35},
929 {104, 0x35},
930 {98, 0x35},
931 {110, 0x34},
932 {104, 0x34},
933 {98, 0x34},
934 {110, 0x33},
935 {104, 0x33},
936 {98, 0x33},
937 {110, 0x32},
938 {104, 0x32},
939 {98, 0x32},
940 {110, 0x31},
941 {104, 0x31},
942 {98, 0x31},
943 {110, 0x30},
944 {104, 0x30},
945 {98, 0x30},
946 {110, 0x25},
947 {104, 0x25},
948 {98, 0x25},
949 {110, 0x24},
950 {104, 0x24},
951 {98, 0x24},
952 {110, 0x23},
953 {104, 0x23},
954 {98, 0x23},
955 {110, 0x22},
956 {104, 0x18},
957 {98, 0x18},
958 {110, 0x17},
959 {104, 0x17},
960 {98, 0x17},
961 {110, 0x16},
962 {104, 0x16},
963 {98, 0x16},
964 {110, 0x15},
965 {104, 0x15},
966 {98, 0x15},
967 {110, 0x14},
968 {104, 0x14},
969 {98, 0x14},
970 {110, 0x13},
971 {104, 0x13},
972 {98, 0x13},
973 {110, 0x12},
974 {104, 0x08},
975 {98, 0x08},
976 {110, 0x07},
977 {104, 0x07},
978 {98, 0x07},
979 {110, 0x06},
980 {104, 0x06},
981 {98, 0x06},
982 {110, 0x05},
983 {104, 0x05},
984 {98, 0x05},
985 {110, 0x04},
986 {104, 0x04},
987 {98, 0x04},
988 {110, 0x03},
989 {104, 0x03},
990 {98, 0x03},
991 {110, 0x02},
992 {104, 0x02},
993 {98, 0x02},
994 {110, 0x01},
995 {104, 0x01},
996 {98, 0x01},
997 {110, 0x00},
998 {104, 0x00},
999 {98, 0x00},
1000 {93, 0x00},
1001 {88, 0x00},
1002 {83, 0x00},
1003 {78, 0x00},
1004 },
1005 /* 2.4GHz power gain index table */
1006 {
1007 {110, 0x3f}, /* highest txpower */
1008 {104, 0x3f},
1009 {98, 0x3f},
1010 {110, 0x3e},
1011 {104, 0x3e},
1012 {98, 0x3e},
1013 {110, 0x3d},
1014 {104, 0x3d},
1015 {98, 0x3d},
1016 {110, 0x3c},
1017 {104, 0x3c},
1018 {98, 0x3c},
1019 {110, 0x3b},
1020 {104, 0x3b},
1021 {98, 0x3b},
1022 {110, 0x3a},
1023 {104, 0x3a},
1024 {98, 0x3a},
1025 {110, 0x39},
1026 {104, 0x39},
1027 {98, 0x39},
1028 {110, 0x38},
1029 {104, 0x38},
1030 {98, 0x38},
1031 {110, 0x37},
1032 {104, 0x37},
1033 {98, 0x37},
1034 {110, 0x36},
1035 {104, 0x36},
1036 {98, 0x36},
1037 {110, 0x35},
1038 {104, 0x35},
1039 {98, 0x35},
1040 {110, 0x34},
1041 {104, 0x34},
1042 {98, 0x34},
1043 {110, 0x33},
1044 {104, 0x33},
1045 {98, 0x33},
1046 {110, 0x32},
1047 {104, 0x32},
1048 {98, 0x32},
1049 {110, 0x31},
1050 {104, 0x31},
1051 {98, 0x31},
1052 {110, 0x30},
1053 {104, 0x30},
1054 {98, 0x30},
1055 {110, 0x6},
1056 {104, 0x6},
1057 {98, 0x6},
1058 {110, 0x5},
1059 {104, 0x5},
1060 {98, 0x5},
1061 {110, 0x4},
1062 {104, 0x4},
1063 {98, 0x4},
1064 {110, 0x3},
1065 {104, 0x3},
1066 {98, 0x3},
1067 {110, 0x2},
1068 {104, 0x2},
1069 {98, 0x2},
1070 {110, 0x1},
1071 {104, 0x1},
1072 {98, 0x1},
1073 {110, 0x0},
1074 {104, 0x0},
1075 {98, 0x0},
1076 {97, 0},
1077 {96, 0},
1078 {95, 0},
1079 {94, 0},
1080 {93, 0},
1081 {92, 0},
1082 {91, 0},
1083 {90, 0},
1084 {89, 0},
1085 {88, 0},
1086 {87, 0},
1087 {86, 0},
1088 {85, 0},
1089 {84, 0},
1090 {83, 0},
1091 {82, 0},
1092 {81, 0},
1093 {80, 0},
1094 {79, 0},
1095 {78, 0},
1096 {77, 0},
1097 {76, 0},
1098 {75, 0},
1099 {74, 0},
1100 {73, 0},
1101 {72, 0},
1102 {71, 0},
1103 {70, 0},
1104 {69, 0},
1105 {68, 0},
1106 {67, 0},
1107 {66, 0},
1108 {65, 0},
1109 {64, 0},
1110 {63, 0},
1111 {62, 0},
1112 {61, 0},
1113 {60, 0},
1114 {59, 0},
1115 }
1116};
1117
c79dd5b5 1118static int iwl4965_fill_txpower_tbl(struct iwl_priv *priv, u8 band, u16 channel,
7aafef1c 1119 u8 is_ht40, u8 ctrl_chan_high,
bb8c093b 1120 struct iwl4965_tx_power_db *tx_power_tbl)
b481de9c
ZY
1121{
1122 u8 saturation_power;
1123 s32 target_power;
1124 s32 user_target_power;
1125 s32 power_limit;
1126 s32 current_temp;
1127 s32 reg_limit;
1128 s32 current_regulatory;
1129 s32 txatten_grp = CALIB_CH_GROUP_MAX;
1130 int i;
1131 int c;
bf85ea4f 1132 const struct iwl_channel_info *ch_info = NULL;
073d3f5f
TW
1133 struct iwl_eeprom_calib_ch_info ch_eeprom_info;
1134 const struct iwl_eeprom_calib_measure *measurement;
b481de9c
ZY
1135 s16 voltage;
1136 s32 init_voltage;
1137 s32 voltage_compensation;
1138 s32 degrees_per_05db_num;
1139 s32 degrees_per_05db_denom;
1140 s32 factory_temp;
1141 s32 temperature_comp[2];
1142 s32 factory_gain_index[2];
1143 s32 factory_actual_pwr[2];
1144 s32 power_index;
1145
62ea9c5b 1146 /* tx_power_user_lmt is in dBm, convert to half-dBm (half-dB units
b481de9c 1147 * are used for indexing into txpower table) */
630fe9b6 1148 user_target_power = 2 * priv->tx_power_user_lmt;
b481de9c
ZY
1149
1150 /* Get current (RXON) channel, band, width */
7aafef1c
WYG
1151 IWL_DEBUG_TXPOWER(priv, "chan %d band %d is_ht40 %d\n", channel, band,
1152 is_ht40);
b481de9c 1153
630fe9b6
TW
1154 ch_info = iwl_get_channel_info(priv, priv->band, channel);
1155
1156 if (!is_channel_valid(ch_info))
b481de9c
ZY
1157 return -EINVAL;
1158
1159 /* get txatten group, used to select 1) thermal txpower adjustment
1160 * and 2) mimo txpower balance between Tx chains. */
1161 txatten_grp = iwl4965_get_tx_atten_grp(channel);
a3139c59 1162 if (txatten_grp < 0) {
15b1687c 1163 IWL_ERR(priv, "Can't find txatten group for channel %d.\n",
a3139c59 1164 channel);
b481de9c 1165 return -EINVAL;
a3139c59 1166 }
b481de9c 1167
e1623446 1168 IWL_DEBUG_TXPOWER(priv, "channel %d belongs to txatten group %d\n",
b481de9c
ZY
1169 channel, txatten_grp);
1170
7aafef1c 1171 if (is_ht40) {
b481de9c
ZY
1172 if (ctrl_chan_high)
1173 channel -= 2;
1174 else
1175 channel += 2;
1176 }
1177
1178 /* hardware txpower limits ...
1179 * saturation (clipping distortion) txpowers are in half-dBm */
1180 if (band)
073d3f5f 1181 saturation_power = priv->calib_info->saturation_power24;
b481de9c 1182 else
073d3f5f 1183 saturation_power = priv->calib_info->saturation_power52;
b481de9c
ZY
1184
1185 if (saturation_power < IWL_TX_POWER_SATURATION_MIN ||
1186 saturation_power > IWL_TX_POWER_SATURATION_MAX) {
1187 if (band)
1188 saturation_power = IWL_TX_POWER_DEFAULT_SATURATION_24;
1189 else
1190 saturation_power = IWL_TX_POWER_DEFAULT_SATURATION_52;
1191 }
1192
1193 /* regulatory txpower limits ... reg_limit values are in half-dBm,
1194 * max_power_avg values are in dBm, convert * 2 */
7aafef1c
WYG
1195 if (is_ht40)
1196 reg_limit = ch_info->ht40_max_power_avg * 2;
b481de9c
ZY
1197 else
1198 reg_limit = ch_info->max_power_avg * 2;
1199
1200 if ((reg_limit < IWL_TX_POWER_REGULATORY_MIN) ||
1201 (reg_limit > IWL_TX_POWER_REGULATORY_MAX)) {
1202 if (band)
1203 reg_limit = IWL_TX_POWER_DEFAULT_REGULATORY_24;
1204 else
1205 reg_limit = IWL_TX_POWER_DEFAULT_REGULATORY_52;
1206 }
1207
1208 /* Interpolate txpower calibration values for this channel,
1209 * based on factory calibration tests on spaced channels. */
1210 iwl4965_interpolate_chan(priv, channel, &ch_eeprom_info);
1211
1212 /* calculate tx gain adjustment based on power supply voltage */
b7bb1756 1213 voltage = le16_to_cpu(priv->calib_info->voltage);
b481de9c
ZY
1214 init_voltage = (s32)le32_to_cpu(priv->card_alive_init.voltage);
1215 voltage_compensation =
1216 iwl4965_get_voltage_compensation(voltage, init_voltage);
1217
e1623446 1218 IWL_DEBUG_TXPOWER(priv, "curr volt %d eeprom volt %d volt comp %d\n",
b481de9c
ZY
1219 init_voltage,
1220 voltage, voltage_compensation);
1221
1222 /* get current temperature (Celsius) */
1223 current_temp = max(priv->temperature, IWL_TX_POWER_TEMPERATURE_MIN);
1224 current_temp = min(priv->temperature, IWL_TX_POWER_TEMPERATURE_MAX);
1225 current_temp = KELVIN_TO_CELSIUS(current_temp);
1226
1227 /* select thermal txpower adjustment params, based on channel group
1228 * (same frequency group used for mimo txatten adjustment) */
1229 degrees_per_05db_num =
1230 tx_power_cmp_tble[txatten_grp].degrees_per_05db_a;
1231 degrees_per_05db_denom =
1232 tx_power_cmp_tble[txatten_grp].degrees_per_05db_a_denom;
1233
1234 /* get per-chain txpower values from factory measurements */
1235 for (c = 0; c < 2; c++) {
1236 measurement = &ch_eeprom_info.measurements[c][1];
1237
1238 /* txgain adjustment (in half-dB steps) based on difference
1239 * between factory and current temperature */
1240 factory_temp = measurement->temperature;
1241 iwl4965_math_div_round((current_temp - factory_temp) *
1242 degrees_per_05db_denom,
1243 degrees_per_05db_num,
1244 &temperature_comp[c]);
1245
1246 factory_gain_index[c] = measurement->gain_idx;
1247 factory_actual_pwr[c] = measurement->actual_pow;
1248
e1623446
TW
1249 IWL_DEBUG_TXPOWER(priv, "chain = %d\n", c);
1250 IWL_DEBUG_TXPOWER(priv, "fctry tmp %d, "
b481de9c
ZY
1251 "curr tmp %d, comp %d steps\n",
1252 factory_temp, current_temp,
1253 temperature_comp[c]);
1254
e1623446 1255 IWL_DEBUG_TXPOWER(priv, "fctry idx %d, fctry pwr %d\n",
b481de9c
ZY
1256 factory_gain_index[c],
1257 factory_actual_pwr[c]);
1258 }
1259
1260 /* for each of 33 bit-rates (including 1 for CCK) */
1261 for (i = 0; i < POWER_TABLE_NUM_ENTRIES; i++) {
1262 u8 is_mimo_rate;
bb8c093b 1263 union iwl4965_tx_power_dual_stream tx_power;
b481de9c
ZY
1264
1265 /* for mimo, reduce each chain's txpower by half
1266 * (3dB, 6 steps), so total output power is regulatory
1267 * compliant. */
1268 if (i & 0x8) {
1269 current_regulatory = reg_limit -
1270 IWL_TX_POWER_MIMO_REGULATORY_COMPENSATION;
1271 is_mimo_rate = 1;
1272 } else {
1273 current_regulatory = reg_limit;
1274 is_mimo_rate = 0;
1275 }
1276
1277 /* find txpower limit, either hardware or regulatory */
1278 power_limit = saturation_power - back_off_table[i];
1279 if (power_limit > current_regulatory)
1280 power_limit = current_regulatory;
1281
1282 /* reduce user's txpower request if necessary
1283 * for this rate on this channel */
1284 target_power = user_target_power;
1285 if (target_power > power_limit)
1286 target_power = power_limit;
1287
e1623446 1288 IWL_DEBUG_TXPOWER(priv, "rate %d sat %d reg %d usr %d tgt %d\n",
b481de9c
ZY
1289 i, saturation_power - back_off_table[i],
1290 current_regulatory, user_target_power,
1291 target_power);
1292
1293 /* for each of 2 Tx chains (radio transmitters) */
1294 for (c = 0; c < 2; c++) {
1295 s32 atten_value;
1296
1297 if (is_mimo_rate)
1298 atten_value =
1299 (s32)le32_to_cpu(priv->card_alive_init.
1300 tx_atten[txatten_grp][c]);
1301 else
1302 atten_value = 0;
1303
1304 /* calculate index; higher index means lower txpower */
1305 power_index = (u8) (factory_gain_index[c] -
1306 (target_power -
1307 factory_actual_pwr[c]) -
1308 temperature_comp[c] -
1309 voltage_compensation +
1310 atten_value);
1311
e1623446 1312/* IWL_DEBUG_TXPOWER(priv, "calculated txpower index %d\n",
b481de9c
ZY
1313 power_index); */
1314
1315 if (power_index < get_min_power_index(i, band))
1316 power_index = get_min_power_index(i, band);
1317
1318 /* adjust 5 GHz index to support negative indexes */
1319 if (!band)
1320 power_index += 9;
1321
1322 /* CCK, rate 32, reduce txpower for CCK */
1323 if (i == POWER_TABLE_CCK_ENTRY)
1324 power_index +=
1325 IWL_TX_POWER_CCK_COMPENSATION_C_STEP;
1326
1327 /* stay within the table! */
1328 if (power_index > 107) {
39aadf8c 1329 IWL_WARN(priv, "txpower index %d > 107\n",
b481de9c
ZY
1330 power_index);
1331 power_index = 107;
1332 }
1333 if (power_index < 0) {
39aadf8c 1334 IWL_WARN(priv, "txpower index %d < 0\n",
b481de9c
ZY
1335 power_index);
1336 power_index = 0;
1337 }
1338
1339 /* fill txpower command for this rate/chain */
1340 tx_power.s.radio_tx_gain[c] =
1341 gain_table[band][power_index].radio;
1342 tx_power.s.dsp_predis_atten[c] =
1343 gain_table[band][power_index].dsp;
1344
e1623446 1345 IWL_DEBUG_TXPOWER(priv, "chain %d mimo %d index %d "
b481de9c
ZY
1346 "gain 0x%02x dsp %d\n",
1347 c, atten_value, power_index,
1348 tx_power.s.radio_tx_gain[c],
1349 tx_power.s.dsp_predis_atten[c]);
3ac7f146 1350 } /* for each chain */
b481de9c
ZY
1351
1352 tx_power_tbl->power_tbl[i].dw = cpu_to_le32(tx_power.dw);
1353
3ac7f146 1354 } /* for each rate */
b481de9c
ZY
1355
1356 return 0;
1357}
1358
1359/**
630fe9b6 1360 * iwl4965_send_tx_power - Configure the TXPOWER level user limit
b481de9c 1361 *
7aafef1c 1362 * Uses the active RXON for channel, band, and characteristics (ht40, high)
630fe9b6 1363 * The power limit is taken from priv->tx_power_user_lmt.
b481de9c 1364 */
630fe9b6 1365static int iwl4965_send_tx_power(struct iwl_priv *priv)
b481de9c 1366{
bb8c093b 1367 struct iwl4965_txpowertable_cmd cmd = { 0 };
857485c0 1368 int ret;
b481de9c 1369 u8 band = 0;
7aafef1c 1370 bool is_ht40 = false;
b481de9c
ZY
1371 u8 ctrl_chan_high = 0;
1372
1373 if (test_bit(STATUS_SCANNING, &priv->status)) {
1374 /* If this gets hit a lot, switch it to a BUG() and catch
1375 * the stack trace to find out who is calling this during
1376 * a scan. */
39aadf8c 1377 IWL_WARN(priv, "TX Power requested while scanning!\n");
b481de9c
ZY
1378 return -EAGAIN;
1379 }
1380
8318d78a 1381 band = priv->band == IEEE80211_BAND_2GHZ;
b481de9c 1382
7aafef1c 1383 is_ht40 = is_ht40_channel(priv->active_rxon.flags);
b481de9c 1384
7aafef1c 1385 if (is_ht40 &&
b481de9c
ZY
1386 (priv->active_rxon.flags & RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK))
1387 ctrl_chan_high = 1;
1388
1389 cmd.band = band;
1390 cmd.channel = priv->active_rxon.channel;
1391
857485c0 1392 ret = iwl4965_fill_txpower_tbl(priv, band,
b481de9c 1393 le16_to_cpu(priv->active_rxon.channel),
7aafef1c 1394 is_ht40, ctrl_chan_high, &cmd.tx_power);
857485c0
TW
1395 if (ret)
1396 goto out;
b481de9c 1397
857485c0
TW
1398 ret = iwl_send_cmd_pdu(priv, REPLY_TX_PWR_TABLE_CMD, sizeof(cmd), &cmd);
1399
1400out:
1401 return ret;
b481de9c
ZY
1402}
1403
7e8c519e
TW
1404static int iwl4965_send_rxon_assoc(struct iwl_priv *priv)
1405{
1406 int ret = 0;
1407 struct iwl4965_rxon_assoc_cmd rxon_assoc;
c1adf9fb
GG
1408 const struct iwl_rxon_cmd *rxon1 = &priv->staging_rxon;
1409 const struct iwl_rxon_cmd *rxon2 = &priv->active_rxon;
7e8c519e
TW
1410
1411 if ((rxon1->flags == rxon2->flags) &&
1412 (rxon1->filter_flags == rxon2->filter_flags) &&
1413 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1414 (rxon1->ofdm_ht_single_stream_basic_rates ==
1415 rxon2->ofdm_ht_single_stream_basic_rates) &&
1416 (rxon1->ofdm_ht_dual_stream_basic_rates ==
1417 rxon2->ofdm_ht_dual_stream_basic_rates) &&
1418 (rxon1->rx_chain == rxon2->rx_chain) &&
1419 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
e1623446 1420 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
7e8c519e
TW
1421 return 0;
1422 }
1423
1424 rxon_assoc.flags = priv->staging_rxon.flags;
1425 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1426 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1427 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1428 rxon_assoc.reserved = 0;
1429 rxon_assoc.ofdm_ht_single_stream_basic_rates =
1430 priv->staging_rxon.ofdm_ht_single_stream_basic_rates;
1431 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
1432 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates;
1433 rxon_assoc.rx_chain_select_flags = priv->staging_rxon.rx_chain;
1434
1435 ret = iwl_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
1436 sizeof(rxon_assoc), &rxon_assoc, NULL);
1437 if (ret)
1438 return ret;
1439
1440 return ret;
1441}
1442
a33c2f47 1443static int iwl4965_hw_channel_switch(struct iwl_priv *priv, u16 channel)
b481de9c
ZY
1444{
1445 int rc;
1446 u8 band = 0;
7aafef1c 1447 bool is_ht40 = false;
b481de9c 1448 u8 ctrl_chan_high = 0;
4a56e965 1449 struct iwl4965_channel_switch_cmd cmd;
bf85ea4f 1450 const struct iwl_channel_info *ch_info;
b481de9c 1451
8318d78a 1452 band = priv->band == IEEE80211_BAND_2GHZ;
b481de9c 1453
8622e705 1454 ch_info = iwl_get_channel_info(priv, priv->band, channel);
b481de9c 1455
7aafef1c 1456 is_ht40 = is_ht40_channel(priv->staging_rxon.flags);
b481de9c 1457
7aafef1c 1458 if (is_ht40 &&
0924e519 1459 (priv->staging_rxon.flags & RXON_FLG_CTRL_CHANNEL_LOC_HI_MSK))
b481de9c
ZY
1460 ctrl_chan_high = 1;
1461
1462 cmd.band = band;
1463 cmd.expect_beacon = 0;
1464 cmd.channel = cpu_to_le16(channel);
0924e519
WYG
1465 cmd.rxon_flags = priv->staging_rxon.flags;
1466 cmd.rxon_filter_flags = priv->staging_rxon.filter_flags;
b481de9c
ZY
1467 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
1468 if (ch_info)
1469 cmd.expect_beacon = is_channel_radar(ch_info);
4a56e965
WYG
1470 else {
1471 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
1472 priv->active_rxon.channel, channel);
1473 return -EFAULT;
1474 }
b481de9c 1475
7aafef1c 1476 rc = iwl4965_fill_txpower_tbl(priv, band, channel, is_ht40,
b481de9c
ZY
1477 ctrl_chan_high, &cmd.tx_power);
1478 if (rc) {
e1623446 1479 IWL_DEBUG_11H(priv, "error:%d fill txpower_tbl\n", rc);
b481de9c
ZY
1480 return rc;
1481 }
1482
0924e519
WYG
1483 priv->switch_rxon.channel = cpu_to_le16(channel);
1484 priv->switch_rxon.switch_in_progress = true;
1485
1486 return iwl_send_cmd_pdu(priv, REPLY_CHANNEL_SWITCH, sizeof(cmd), &cmd);
b481de9c
ZY
1487}
1488
8b6eaea8 1489/**
e2a722eb 1490 * iwl4965_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
8b6eaea8 1491 */
e2a722eb 1492static void iwl4965_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
16466903 1493 struct iwl_tx_queue *txq,
e2a722eb 1494 u16 byte_cnt)
b481de9c 1495{
4ddbb7d0 1496 struct iwl4965_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
127901ab
TW
1497 int txq_id = txq->q.id;
1498 int write_ptr = txq->q.write_ptr;
1499 int len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
1500 __le16 bc_ent;
b481de9c 1501
127901ab 1502 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
b481de9c 1503
127901ab 1504 bc_ent = cpu_to_le16(len & 0xFFF);
8b6eaea8 1505 /* Set up byte count within first 256 entries */
4ddbb7d0 1506 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
b481de9c 1507
8b6eaea8 1508 /* If within first 64 entries, duplicate at end */
127901ab 1509 if (write_ptr < TFD_QUEUE_SIZE_BC_DUP)
4ddbb7d0 1510 scd_bc_tbl[txq_id].
127901ab 1511 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
b481de9c
ZY
1512}
1513
b481de9c
ZY
1514/**
1515 * sign_extend - Sign extend a value using specified bit as sign-bit
1516 *
1517 * Example: sign_extend(9, 3) would return -7 as bit3 of 1001b is 1
1518 * and bit0..2 is 001b which when sign extended to 1111111111111001b is -7.
1519 *
1520 * @param oper value to sign extend
1521 * @param index 0 based bit index (0<=index<32) to sign bit
1522 */
1523static s32 sign_extend(u32 oper, int index)
1524{
1525 u8 shift = 31 - index;
1526
1527 return (s32)(oper << shift) >> shift;
1528}
1529
1530/**
91dbc5bd 1531 * iwl4965_hw_get_temperature - return the calibrated temperature (in Kelvin)
b481de9c
ZY
1532 * @statistics: Provides the temperature reading from the uCode
1533 *
1534 * A return of <0 indicates bogus data in the statistics
1535 */
3d816c77 1536static int iwl4965_hw_get_temperature(struct iwl_priv *priv)
b481de9c
ZY
1537{
1538 s32 temperature;
1539 s32 vt;
1540 s32 R1, R2, R3;
1541 u32 R4;
1542
1543 if (test_bit(STATUS_TEMPERATURE, &priv->status) &&
7aafef1c
WYG
1544 (priv->statistics.flag & STATISTICS_REPLY_FLG_HT40_MODE_MSK)) {
1545 IWL_DEBUG_TEMP(priv, "Running HT40 temperature calibration\n");
b481de9c
ZY
1546 R1 = (s32)le32_to_cpu(priv->card_alive_init.therm_r1[1]);
1547 R2 = (s32)le32_to_cpu(priv->card_alive_init.therm_r2[1]);
1548 R3 = (s32)le32_to_cpu(priv->card_alive_init.therm_r3[1]);
1549 R4 = le32_to_cpu(priv->card_alive_init.therm_r4[1]);
1550 } else {
e1623446 1551 IWL_DEBUG_TEMP(priv, "Running temperature calibration\n");
b481de9c
ZY
1552 R1 = (s32)le32_to_cpu(priv->card_alive_init.therm_r1[0]);
1553 R2 = (s32)le32_to_cpu(priv->card_alive_init.therm_r2[0]);
1554 R3 = (s32)le32_to_cpu(priv->card_alive_init.therm_r3[0]);
1555 R4 = le32_to_cpu(priv->card_alive_init.therm_r4[0]);
1556 }
1557
1558 /*
8b6eaea8 1559 * Temperature is only 23 bits, so sign extend out to 32.
b481de9c
ZY
1560 *
1561 * NOTE If we haven't received a statistics notification yet
1562 * with an updated temperature, use R4 provided to us in the
8b6eaea8
BC
1563 * "initialize" ALIVE response.
1564 */
b481de9c
ZY
1565 if (!test_bit(STATUS_TEMPERATURE, &priv->status))
1566 vt = sign_extend(R4, 23);
1567 else
1568 vt = sign_extend(
1569 le32_to_cpu(priv->statistics.general.temperature), 23);
1570
e1623446 1571 IWL_DEBUG_TEMP(priv, "Calib values R[1-3]: %d %d %d R4: %d\n", R1, R2, R3, vt);
b481de9c
ZY
1572
1573 if (R3 == R1) {
15b1687c 1574 IWL_ERR(priv, "Calibration conflict R1 == R3\n");
b481de9c
ZY
1575 return -1;
1576 }
1577
1578 /* Calculate temperature in degrees Kelvin, adjust by 97%.
1579 * Add offset to center the adjustment around 0 degrees Centigrade. */
1580 temperature = TEMPERATURE_CALIB_A_VAL * (vt - R2);
1581 temperature /= (R3 - R1);
91dbc5bd 1582 temperature = (temperature * 97) / 100 + TEMPERATURE_CALIB_KELVIN_OFFSET;
b481de9c 1583
e1623446 1584 IWL_DEBUG_TEMP(priv, "Calibrated temperature: %dK, %dC\n",
91dbc5bd 1585 temperature, KELVIN_TO_CELSIUS(temperature));
b481de9c
ZY
1586
1587 return temperature;
1588}
1589
1590/* Adjust Txpower only if temperature variance is greater than threshold. */
1591#define IWL_TEMPERATURE_THRESHOLD 3
1592
1593/**
1594 * iwl4965_is_temp_calib_needed - determines if new calibration is needed
1595 *
1596 * If the temperature changed has changed sufficiently, then a recalibration
1597 * is needed.
1598 *
1599 * Assumes caller will replace priv->last_temperature once calibration
1600 * executed.
1601 */
c79dd5b5 1602static int iwl4965_is_temp_calib_needed(struct iwl_priv *priv)
b481de9c
ZY
1603{
1604 int temp_diff;
1605
1606 if (!test_bit(STATUS_STATISTICS, &priv->status)) {
e1623446 1607 IWL_DEBUG_TEMP(priv, "Temperature not updated -- no statistics.\n");
b481de9c
ZY
1608 return 0;
1609 }
1610
1611 temp_diff = priv->temperature - priv->last_temperature;
1612
1613 /* get absolute value */
1614 if (temp_diff < 0) {
91dd6c27 1615 IWL_DEBUG_POWER(priv, "Getting cooler, delta %d\n", temp_diff);
b481de9c
ZY
1616 temp_diff = -temp_diff;
1617 } else if (temp_diff == 0)
91dd6c27 1618 IWL_DEBUG_POWER(priv, "Temperature unchanged\n");
b481de9c 1619 else
91dd6c27 1620 IWL_DEBUG_POWER(priv, "Getting warmer, delta %d\n", temp_diff);
b481de9c
ZY
1621
1622 if (temp_diff < IWL_TEMPERATURE_THRESHOLD) {
91dd6c27 1623 IWL_DEBUG_POWER(priv, " => thermal txpower calib not needed\n");
b481de9c
ZY
1624 return 0;
1625 }
1626
91dd6c27 1627 IWL_DEBUG_POWER(priv, " => thermal txpower calib needed\n");
b481de9c
ZY
1628
1629 return 1;
1630}
1631
5225640b 1632static void iwl4965_temperature_calib(struct iwl_priv *priv)
b481de9c 1633{
b481de9c 1634 s32 temp;
b481de9c 1635
91dbc5bd 1636 temp = iwl4965_hw_get_temperature(priv);
b481de9c
ZY
1637 if (temp < 0)
1638 return;
1639
1640 if (priv->temperature != temp) {
1641 if (priv->temperature)
e1623446 1642 IWL_DEBUG_TEMP(priv, "Temperature changed "
b481de9c
ZY
1643 "from %dC to %dC\n",
1644 KELVIN_TO_CELSIUS(priv->temperature),
1645 KELVIN_TO_CELSIUS(temp));
1646 else
e1623446 1647 IWL_DEBUG_TEMP(priv, "Temperature "
b481de9c
ZY
1648 "initialized to %dC\n",
1649 KELVIN_TO_CELSIUS(temp));
1650 }
1651
1652 priv->temperature = temp;
39b73fb1 1653 iwl_tt_handler(priv);
b481de9c
ZY
1654 set_bit(STATUS_TEMPERATURE, &priv->status);
1655
203566f3
EG
1656 if (!priv->disable_tx_power_cal &&
1657 unlikely(!test_bit(STATUS_SCANNING, &priv->status)) &&
1658 iwl4965_is_temp_calib_needed(priv))
b481de9c
ZY
1659 queue_work(priv->workqueue, &priv->txpower_work);
1660}
1661
fe01b477
RR
1662/**
1663 * iwl4965_tx_queue_stop_scheduler - Stop queue, but keep configuration
1664 */
c79dd5b5 1665static void iwl4965_tx_queue_stop_scheduler(struct iwl_priv *priv,
fe01b477
RR
1666 u16 txq_id)
1667{
1668 /* Simply stop the queue, but don't change any configuration;
1669 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
3395f6e9 1670 iwl_write_prph(priv,
12a81f60 1671 IWL49_SCD_QUEUE_STATUS_BITS(txq_id),
038669e4
EG
1672 (0 << IWL49_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
1673 (1 << IWL49_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
fe01b477 1674}
b481de9c 1675
fe01b477 1676/**
7f3e4bb6 1677 * txq_id must be greater than IWL49_FIRST_AMPDU_QUEUE
b095d03a 1678 * priv->lock must be held by the caller
fe01b477 1679 */
30e553e3
TW
1680static int iwl4965_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
1681 u16 ssn_idx, u8 tx_fifo)
fe01b477 1682{
9f17b318 1683 if ((IWL49_FIRST_AMPDU_QUEUE > txq_id) ||
88804e2b
WYG
1684 (IWL49_FIRST_AMPDU_QUEUE + priv->cfg->num_of_ampdu_queues
1685 <= txq_id)) {
39aadf8c
WT
1686 IWL_WARN(priv,
1687 "queue number out of range: %d, must be %d to %d\n",
9f17b318 1688 txq_id, IWL49_FIRST_AMPDU_QUEUE,
88804e2b
WYG
1689 IWL49_FIRST_AMPDU_QUEUE +
1690 priv->cfg->num_of_ampdu_queues - 1);
fe01b477 1691 return -EINVAL;
b481de9c
ZY
1692 }
1693
fe01b477
RR
1694 iwl4965_tx_queue_stop_scheduler(priv, txq_id);
1695
12a81f60 1696 iwl_clear_bits_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
fe01b477
RR
1697
1698 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
1699 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
1700 /* supposes that ssn_idx is valid (!= 0xFFF) */
1701 iwl4965_set_wr_ptrs(priv, txq_id, ssn_idx);
1702
12a81f60 1703 iwl_clear_bits_prph(priv, IWL49_SCD_INTERRUPT_MASK, (1 << txq_id));
36470749 1704 iwl_txq_ctx_deactivate(priv, txq_id);
fe01b477
RR
1705 iwl4965_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
1706
1707 return 0;
1708}
b481de9c 1709
8b6eaea8
BC
1710/**
1711 * iwl4965_tx_queue_set_q2ratid - Map unique receiver/tid combination to a queue
1712 */
c79dd5b5 1713static int iwl4965_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
b481de9c
ZY
1714 u16 txq_id)
1715{
1716 u32 tbl_dw_addr;
1717 u32 tbl_dw;
1718 u16 scd_q2ratid;
1719
30e553e3 1720 scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
b481de9c
ZY
1721
1722 tbl_dw_addr = priv->scd_base_addr +
038669e4 1723 IWL49_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
b481de9c 1724
3395f6e9 1725 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
b481de9c
ZY
1726
1727 if (txq_id & 0x1)
1728 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
1729 else
1730 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
1731
3395f6e9 1732 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
b481de9c
ZY
1733
1734 return 0;
1735}
1736
fe01b477 1737
b481de9c 1738/**
8b6eaea8
BC
1739 * iwl4965_tx_queue_agg_enable - Set up & enable aggregation for selected queue
1740 *
7f3e4bb6 1741 * NOTE: txq_id must be greater than IWL49_FIRST_AMPDU_QUEUE,
8b6eaea8 1742 * i.e. it must be one of the higher queues used for aggregation
b481de9c 1743 */
30e553e3
TW
1744static int iwl4965_txq_agg_enable(struct iwl_priv *priv, int txq_id,
1745 int tx_fifo, int sta_id, int tid, u16 ssn_idx)
b481de9c
ZY
1746{
1747 unsigned long flags;
b481de9c
ZY
1748 u16 ra_tid;
1749
9f17b318 1750 if ((IWL49_FIRST_AMPDU_QUEUE > txq_id) ||
88804e2b
WYG
1751 (IWL49_FIRST_AMPDU_QUEUE + priv->cfg->num_of_ampdu_queues
1752 <= txq_id)) {
39aadf8c
WT
1753 IWL_WARN(priv,
1754 "queue number out of range: %d, must be %d to %d\n",
9f17b318 1755 txq_id, IWL49_FIRST_AMPDU_QUEUE,
88804e2b
WYG
1756 IWL49_FIRST_AMPDU_QUEUE +
1757 priv->cfg->num_of_ampdu_queues - 1);
9f17b318
TW
1758 return -EINVAL;
1759 }
b481de9c
ZY
1760
1761 ra_tid = BUILD_RAxTID(sta_id, tid);
1762
8b6eaea8 1763 /* Modify device's station table to Tx this TID */
9f58671e 1764 iwl_sta_tx_modify_enable_tid(priv, sta_id, tid);
b481de9c
ZY
1765
1766 spin_lock_irqsave(&priv->lock, flags);
b481de9c 1767
8b6eaea8 1768 /* Stop this Tx queue before configuring it */
b481de9c
ZY
1769 iwl4965_tx_queue_stop_scheduler(priv, txq_id);
1770
8b6eaea8 1771 /* Map receiver-address / traffic-ID to this queue */
b481de9c
ZY
1772 iwl4965_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
1773
8b6eaea8 1774 /* Set this queue as a chain-building queue */
12a81f60 1775 iwl_set_bits_prph(priv, IWL49_SCD_QUEUECHAIN_SEL, (1 << txq_id));
b481de9c 1776
8b6eaea8
BC
1777 /* Place first TFD at index corresponding to start sequence number.
1778 * Assumes that ssn_idx is valid (!= 0xFFF) */
fc4b6853
TW
1779 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
1780 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
b481de9c
ZY
1781 iwl4965_set_wr_ptrs(priv, txq_id, ssn_idx);
1782
8b6eaea8 1783 /* Set up Tx window size and frame limit for this queue */
3395f6e9 1784 iwl_write_targ_mem(priv,
038669e4
EG
1785 priv->scd_base_addr + IWL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id),
1786 (SCD_WIN_SIZE << IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_POS) &
1787 IWL49_SCD_QUEUE_CTX_REG1_WIN_SIZE_MSK);
b481de9c 1788
3395f6e9 1789 iwl_write_targ_mem(priv, priv->scd_base_addr +
038669e4
EG
1790 IWL49_SCD_CONTEXT_QUEUE_OFFSET(txq_id) + sizeof(u32),
1791 (SCD_FRAME_LIMIT << IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS)
1792 & IWL49_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK);
b481de9c 1793
12a81f60 1794 iwl_set_bits_prph(priv, IWL49_SCD_INTERRUPT_MASK, (1 << txq_id));
b481de9c 1795
8b6eaea8 1796 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
b481de9c
ZY
1797 iwl4965_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
1798
b481de9c
ZY
1799 spin_unlock_irqrestore(&priv->lock, flags);
1800
1801 return 0;
1802}
1803
133636de 1804
c1adf9fb
GG
1805static u16 iwl4965_get_hcmd_size(u8 cmd_id, u16 len)
1806{
1807 switch (cmd_id) {
1808 case REPLY_RXON:
1809 return (u16) sizeof(struct iwl4965_rxon_cmd);
1810 default:
1811 return len;
1812 }
1813}
1814
133636de
TW
1815static u16 iwl4965_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
1816{
1817 struct iwl4965_addsta_cmd *addsta = (struct iwl4965_addsta_cmd *)data;
1818 addsta->mode = cmd->mode;
1819 memcpy(&addsta->sta, &cmd->sta, sizeof(struct sta_id_modify));
1820 memcpy(&addsta->key, &cmd->key, sizeof(struct iwl4965_keyinfo));
1821 addsta->station_flags = cmd->station_flags;
1822 addsta->station_flags_msk = cmd->station_flags_msk;
1823 addsta->tid_disable_tx = cmd->tid_disable_tx;
1824 addsta->add_immediate_ba_tid = cmd->add_immediate_ba_tid;
1825 addsta->remove_immediate_ba_tid = cmd->remove_immediate_ba_tid;
1826 addsta->add_immediate_ba_ssn = cmd->add_immediate_ba_ssn;
9bb487b4 1827 addsta->sleep_tx_count = cmd->sleep_tx_count;
c1b4aa3f 1828 addsta->reserved1 = cpu_to_le16(0);
62624083 1829 addsta->reserved2 = cpu_to_le16(0);
133636de
TW
1830
1831 return (u16)sizeof(struct iwl4965_addsta_cmd);
1832}
f20217d9 1833
f20217d9
TW
1834static inline u32 iwl4965_get_scd_ssn(struct iwl4965_tx_resp *tx_resp)
1835{
25a6572c 1836 return le32_to_cpup(&tx_resp->u.status + tx_resp->frame_count) & MAX_SN;
f20217d9
TW
1837}
1838
1839/**
a96a27f9 1840 * iwl4965_tx_status_reply_tx - Handle Tx response for frames in aggregation queue
f20217d9
TW
1841 */
1842static int iwl4965_tx_status_reply_tx(struct iwl_priv *priv,
1843 struct iwl_ht_agg *agg,
25a6572c
TW
1844 struct iwl4965_tx_resp *tx_resp,
1845 int txq_id, u16 start_idx)
f20217d9
TW
1846{
1847 u16 status;
25a6572c 1848 struct agg_tx_status *frame_status = tx_resp->u.agg_status;
f20217d9
TW
1849 struct ieee80211_tx_info *info = NULL;
1850 struct ieee80211_hdr *hdr = NULL;
e7d326ac 1851 u32 rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
25a6572c 1852 int i, sh, idx;
f20217d9 1853 u16 seq;
f20217d9 1854 if (agg->wait_for_ba)
e1623446 1855 IWL_DEBUG_TX_REPLY(priv, "got tx response w/o block-ack\n");
f20217d9
TW
1856
1857 agg->frame_count = tx_resp->frame_count;
1858 agg->start_idx = start_idx;
e7d326ac 1859 agg->rate_n_flags = rate_n_flags;
f20217d9
TW
1860 agg->bitmap = 0;
1861
3fd07a1e 1862 /* num frames attempted by Tx command */
f20217d9
TW
1863 if (agg->frame_count == 1) {
1864 /* Only one frame was attempted; no block-ack will arrive */
1865 status = le16_to_cpu(frame_status[0].status);
25a6572c 1866 idx = start_idx;
f20217d9
TW
1867
1868 /* FIXME: code repetition */
e1623446 1869 IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n",
f20217d9
TW
1870 agg->frame_count, agg->start_idx, idx);
1871
1872 info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb[0]);
e6a9854b 1873 info->status.rates[0].count = tx_resp->failure_frame + 1;
f20217d9 1874 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
c397bf15 1875 info->flags |= iwl_tx_status_to_mac80211(status);
8d801080 1876 iwlagn_hwrate_to_tx_control(priv, rate_n_flags, info);
f20217d9
TW
1877 /* FIXME: code repetition end */
1878
e1623446 1879 IWL_DEBUG_TX_REPLY(priv, "1 Frame 0x%x failure :%d\n",
f20217d9 1880 status & 0xff, tx_resp->failure_frame);
e1623446 1881 IWL_DEBUG_TX_REPLY(priv, "Rate Info rate_n_flags=%x\n", rate_n_flags);
f20217d9
TW
1882
1883 agg->wait_for_ba = 0;
1884 } else {
1885 /* Two or more frames were attempted; expect block-ack */
1886 u64 bitmap = 0;
1887 int start = agg->start_idx;
1888
1889 /* Construct bit-map of pending frames within Tx window */
1890 for (i = 0; i < agg->frame_count; i++) {
1891 u16 sc;
1892 status = le16_to_cpu(frame_status[i].status);
1893 seq = le16_to_cpu(frame_status[i].sequence);
1894 idx = SEQ_TO_INDEX(seq);
1895 txq_id = SEQ_TO_QUEUE(seq);
1896
1897 if (status & (AGG_TX_STATE_FEW_BYTES_MSK |
1898 AGG_TX_STATE_ABORT_MSK))
1899 continue;
1900
e1623446 1901 IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, txq_id=%d idx=%d\n",
f20217d9
TW
1902 agg->frame_count, txq_id, idx);
1903
1904 hdr = iwl_tx_queue_get_hdr(priv, txq_id, idx);
6c6a22e2
SG
1905 if (!hdr) {
1906 IWL_ERR(priv,
1907 "BUG_ON idx doesn't point to valid skb"
1908 " idx=%d, txq_id=%d\n", idx, txq_id);
1909 return -1;
1910 }
f20217d9
TW
1911
1912 sc = le16_to_cpu(hdr->seq_ctrl);
1913 if (idx != (SEQ_TO_SN(sc) & 0xff)) {
15b1687c
WT
1914 IWL_ERR(priv,
1915 "BUG_ON idx doesn't match seq control"
1916 " idx=%d, seq_idx=%d, seq=%d\n",
1917 idx, SEQ_TO_SN(sc), hdr->seq_ctrl);
f20217d9
TW
1918 return -1;
1919 }
1920
e1623446 1921 IWL_DEBUG_TX_REPLY(priv, "AGG Frame i=%d idx %d seq=%d\n",
f20217d9
TW
1922 i, idx, SEQ_TO_SN(sc));
1923
1924 sh = idx - start;
1925 if (sh > 64) {
1926 sh = (start - idx) + 0xff;
1927 bitmap = bitmap << sh;
1928 sh = 0;
1929 start = idx;
1930 } else if (sh < -64)
1931 sh = 0xff - (start - idx);
1932 else if (sh < 0) {
1933 sh = start - idx;
1934 start = idx;
1935 bitmap = bitmap << sh;
1936 sh = 0;
1937 }
4aa41f12 1938 bitmap |= 1ULL << sh;
e1623446 1939 IWL_DEBUG_TX_REPLY(priv, "start=%d bitmap=0x%llx\n",
4aa41f12 1940 start, (unsigned long long)bitmap);
f20217d9
TW
1941 }
1942
1943 agg->bitmap = bitmap;
1944 agg->start_idx = start;
e1623446 1945 IWL_DEBUG_TX_REPLY(priv, "Frames %d start_idx=%d bitmap=0x%llx\n",
f20217d9
TW
1946 agg->frame_count, agg->start_idx,
1947 (unsigned long long)agg->bitmap);
1948
1949 if (bitmap)
1950 agg->wait_for_ba = 1;
1951 }
1952 return 0;
1953}
f20217d9
TW
1954
1955/**
1956 * iwl4965_rx_reply_tx - Handle standard (non-aggregation) Tx response
1957 */
1958static void iwl4965_rx_reply_tx(struct iwl_priv *priv,
1959 struct iwl_rx_mem_buffer *rxb)
1960{
2f301227 1961 struct iwl_rx_packet *pkt = rxb_addr(rxb);
f20217d9
TW
1962 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1963 int txq_id = SEQ_TO_QUEUE(sequence);
1964 int index = SEQ_TO_INDEX(sequence);
1965 struct iwl_tx_queue *txq = &priv->txq[txq_id];
3fd07a1e 1966 struct ieee80211_hdr *hdr;
f20217d9
TW
1967 struct ieee80211_tx_info *info;
1968 struct iwl4965_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
25a6572c 1969 u32 status = le32_to_cpu(tx_resp->u.status);
39825f4d 1970 int uninitialized_var(tid);
3fd07a1e
TW
1971 int sta_id;
1972 int freed;
f20217d9 1973 u8 *qc = NULL;
f20217d9
TW
1974
1975 if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) {
15b1687c 1976 IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d "
f20217d9
TW
1977 "is out of range [0-%d] %d %d\n", txq_id,
1978 index, txq->q.n_bd, txq->q.write_ptr,
1979 txq->q.read_ptr);
1980 return;
1981 }
1982
1983 info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]);
1984 memset(&info->status, 0, sizeof(info->status));
1985
f20217d9 1986 hdr = iwl_tx_queue_get_hdr(priv, txq_id, index);
3fd07a1e 1987 if (ieee80211_is_data_qos(hdr->frame_control)) {
fd7c8a40 1988 qc = ieee80211_get_qos_ctl(hdr);
f20217d9
TW
1989 tid = qc[0] & 0xf;
1990 }
1991
1992 sta_id = iwl_get_ra_sta_id(priv, hdr);
1993 if (txq->sched_retry && unlikely(sta_id == IWL_INVALID_STATION)) {
15b1687c 1994 IWL_ERR(priv, "Station not known\n");
f20217d9
TW
1995 return;
1996 }
1997
1998 if (txq->sched_retry) {
1999 const u32 scd_ssn = iwl4965_get_scd_ssn(tx_resp);
2000 struct iwl_ht_agg *agg = NULL;
2001
3fd07a1e 2002 WARN_ON(!qc);
f20217d9
TW
2003
2004 agg = &priv->stations[sta_id].tid[tid].agg;
2005
25a6572c 2006 iwl4965_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index);
f20217d9 2007
3235427e
RR
2008 /* check if BAR is needed */
2009 if ((tx_resp->frame_count == 1) && !iwl_is_tx_success(status))
2010 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
f20217d9
TW
2011
2012 if (txq->q.read_ptr != (scd_ssn & 0xff)) {
f20217d9 2013 index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd);
e1623446 2014 IWL_DEBUG_TX_REPLY(priv, "Retry scheduler reclaim scd_ssn "
f20217d9 2015 "%d index %d\n", scd_ssn , index);
74bcdb33 2016 freed = iwlagn_tx_queue_reclaim(priv, txq_id, index);
ece6444c
WYG
2017 if (qc)
2018 iwl_free_tfds_in_queue(priv, sta_id,
2019 tid, freed);
f20217d9 2020
3fd07a1e
TW
2021 if (priv->mac80211_registered &&
2022 (iwl_queue_space(&txq->q) > txq->q.low_mark) &&
2023 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)) {
f20217d9 2024 if (agg->state == IWL_AGG_OFF)
e4e72fb4 2025 iwl_wake_queue(priv, txq_id);
f20217d9 2026 else
e4e72fb4 2027 iwl_wake_queue(priv, txq->swq_id);
f20217d9 2028 }
f20217d9
TW
2029 }
2030 } else {
e6a9854b 2031 info->status.rates[0].count = tx_resp->failure_frame + 1;
c397bf15 2032 info->flags |= iwl_tx_status_to_mac80211(status);
8d801080 2033 iwlagn_hwrate_to_tx_control(priv,
4f85f5b3
RR
2034 le32_to_cpu(tx_resp->rate_n_flags),
2035 info);
2036
e1623446 2037 IWL_DEBUG_TX_REPLY(priv, "TXQ %d status %s (0x%08x) "
3fd07a1e
TW
2038 "rate_n_flags 0x%x retries %d\n",
2039 txq_id,
2040 iwl_get_tx_fail_reason(status), status,
2041 le32_to_cpu(tx_resp->rate_n_flags),
2042 tx_resp->failure_frame);
e7d326ac 2043
74bcdb33 2044 freed = iwlagn_tx_queue_reclaim(priv, txq_id, index);
ece6444c
WYG
2045 if (qc && likely(sta_id != IWL_INVALID_STATION))
2046 iwl_free_tfds_in_queue(priv, sta_id, tid, freed);
2047 else if (sta_id == IWL_INVALID_STATION)
2048 IWL_DEBUG_TX_REPLY(priv, "Station not known\n");
3fd07a1e
TW
2049
2050 if (priv->mac80211_registered &&
2051 (iwl_queue_space(&txq->q) > txq->q.low_mark))
e4e72fb4 2052 iwl_wake_queue(priv, txq_id);
f20217d9 2053 }
ece6444c 2054 if (qc && likely(sta_id != IWL_INVALID_STATION))
1805a34f 2055 iwlagn_txq_check_empty(priv, sta_id, tid, txq_id);
3fd07a1e 2056
04569cbe 2057 iwl_check_abort_status(priv, tx_resp->frame_count, status);
f20217d9
TW
2058}
2059
caab8f1a
TW
2060static int iwl4965_calc_rssi(struct iwl_priv *priv,
2061 struct iwl_rx_phy_res *rx_resp)
2062{
2063 /* data from PHY/DSP regarding signal strength, etc.,
2064 * contents are always there, not configurable by host. */
2065 struct iwl4965_rx_non_cfg_phy *ncphy =
2066 (struct iwl4965_rx_non_cfg_phy *)rx_resp->non_cfg_phy_buf;
2067 u32 agc = (le16_to_cpu(ncphy->agc_info) & IWL49_AGC_DB_MASK)
2068 >> IWL49_AGC_DB_POS;
2069
2070 u32 valid_antennae =
2071 (le16_to_cpu(rx_resp->phy_flags) & IWL49_RX_PHY_FLAGS_ANTENNAE_MASK)
2072 >> IWL49_RX_PHY_FLAGS_ANTENNAE_OFFSET;
2073 u8 max_rssi = 0;
2074 u32 i;
2075
2076 /* Find max rssi among 3 possible receivers.
2077 * These values are measured by the digital signal processor (DSP).
2078 * They should stay fairly constant even as the signal strength varies,
2079 * if the radio's automatic gain control (AGC) is working right.
2080 * AGC value (see below) will provide the "interesting" info. */
2081 for (i = 0; i < 3; i++)
2082 if (valid_antennae & (1 << i))
2083 max_rssi = max(ncphy->rssi_info[i << 1], max_rssi);
2084
e1623446 2085 IWL_DEBUG_STATS(priv, "Rssi In A %d B %d C %d Max %d AGC dB %d\n",
caab8f1a
TW
2086 ncphy->rssi_info[0], ncphy->rssi_info[2], ncphy->rssi_info[4],
2087 max_rssi, agc);
2088
2089 /* dBm = max_rssi dB - agc dB - constant.
2090 * Higher AGC (higher radio gain) means lower signal. */
b744cb79 2091 return max_rssi - agc - IWLAGN_RSSI_OFFSET;
caab8f1a
TW
2092}
2093
f20217d9 2094
b481de9c 2095/* Set up 4965-specific Rx frame reply handlers */
d4789efe 2096static void iwl4965_rx_handler_setup(struct iwl_priv *priv)
b481de9c
ZY
2097{
2098 /* Legacy Rx frames */
8d801080 2099 priv->rx_handlers[REPLY_RX] = iwlagn_rx_reply_rx;
37a44211 2100 /* Tx response */
f20217d9 2101 priv->rx_handlers[REPLY_TX] = iwl4965_rx_reply_tx;
b481de9c
ZY
2102}
2103
4e39317d 2104static void iwl4965_setup_deferred_work(struct iwl_priv *priv)
b481de9c
ZY
2105{
2106 INIT_WORK(&priv->txpower_work, iwl4965_bg_txpower_work);
b481de9c
ZY
2107}
2108
4e39317d 2109static void iwl4965_cancel_deferred_work(struct iwl_priv *priv)
b481de9c 2110{
4e39317d 2111 cancel_work_sync(&priv->txpower_work);
b481de9c
ZY
2112}
2113
cc0f555d
JS
2114#define IWL4965_UCODE_GET(item) \
2115static u32 iwl4965_ucode_get_##item(const struct iwl_ucode_header *ucode,\
2116 u32 api_ver) \
2117{ \
2118 return le32_to_cpu(ucode->u.v1.item); \
2119}
2120
2121static u32 iwl4965_ucode_get_header_size(u32 api_ver)
2122{
2123 return UCODE_HEADER_SIZE(1);
2124}
2125static u32 iwl4965_ucode_get_build(const struct iwl_ucode_header *ucode,
2126 u32 api_ver)
2127{
2128 return 0;
2129}
2130static u8 *iwl4965_ucode_get_data(const struct iwl_ucode_header *ucode,
2131 u32 api_ver)
2132{
2133 return (u8 *) ucode->u.v1.data;
2134}
2135
2136IWL4965_UCODE_GET(inst_size);
2137IWL4965_UCODE_GET(data_size);
2138IWL4965_UCODE_GET(init_size);
2139IWL4965_UCODE_GET(init_data_size);
2140IWL4965_UCODE_GET(boot_size);
2141
3c424c28 2142static struct iwl_hcmd_ops iwl4965_hcmd = {
7e8c519e 2143 .rxon_assoc = iwl4965_send_rxon_assoc,
e0158e61 2144 .commit_rxon = iwl_commit_rxon,
45823531 2145 .set_rxon_chain = iwl_set_rxon_chain,
3c424c28
TW
2146};
2147
cc0f555d
JS
2148static struct iwl_ucode_ops iwl4965_ucode = {
2149 .get_header_size = iwl4965_ucode_get_header_size,
2150 .get_build = iwl4965_ucode_get_build,
2151 .get_inst_size = iwl4965_ucode_get_inst_size,
2152 .get_data_size = iwl4965_ucode_get_data_size,
2153 .get_init_size = iwl4965_ucode_get_init_size,
2154 .get_init_data_size = iwl4965_ucode_get_init_data_size,
2155 .get_boot_size = iwl4965_ucode_get_boot_size,
2156 .get_data = iwl4965_ucode_get_data,
2157};
857485c0 2158static struct iwl_hcmd_utils_ops iwl4965_hcmd_utils = {
c1adf9fb 2159 .get_hcmd_size = iwl4965_get_hcmd_size,
133636de 2160 .build_addsta_hcmd = iwl4965_build_addsta_hcmd,
f0832f13
EG
2161 .chain_noise_reset = iwl4965_chain_noise_reset,
2162 .gain_computation = iwl4965_gain_computation,
37dc70fe 2163 .rts_tx_cmd_flag = iwlcore_rts_tx_cmd_flag,
caab8f1a 2164 .calc_rssi = iwl4965_calc_rssi,
857485c0
TW
2165};
2166
6bc913bd 2167static struct iwl_lib_ops iwl4965_lib = {
5425e490 2168 .set_hw_params = iwl4965_hw_set_hw_params,
e2a722eb 2169 .txq_update_byte_cnt_tbl = iwl4965_txq_update_byte_cnt_tbl,
da1bc453 2170 .txq_set_sched = iwl4965_txq_set_sched,
30e553e3
TW
2171 .txq_agg_enable = iwl4965_txq_agg_enable,
2172 .txq_agg_disable = iwl4965_txq_agg_disable,
7aaa1d79
SO
2173 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
2174 .txq_free_tfd = iwl_hw_txq_free_tfd,
a8e74e27 2175 .txq_init = iwl_hw_tx_queue_init,
d4789efe 2176 .rx_handler_setup = iwl4965_rx_handler_setup,
4e39317d
EG
2177 .setup_deferred_work = iwl4965_setup_deferred_work,
2178 .cancel_deferred_work = iwl4965_cancel_deferred_work,
57aab75a
TW
2179 .is_valid_rtc_data_addr = iwl4965_hw_valid_rtc_data_addr,
2180 .alive_notify = iwl4965_alive_notify,
f3ccc08c 2181 .init_alive_start = iwl4965_init_alive_start,
57aab75a 2182 .load_ucode = iwl4965_load_bsm,
b7a79404
RC
2183 .dump_nic_event_log = iwl_dump_nic_event_log,
2184 .dump_nic_error_log = iwl_dump_nic_error_log,
647291f5 2185 .dump_fh = iwl_dump_fh,
4a56e965 2186 .set_channel_switch = iwl4965_hw_channel_switch,
6f4083aa 2187 .apm_ops = {
fadb3582 2188 .init = iwl_apm_init,
d68b603c 2189 .stop = iwl_apm_stop,
694cc56d 2190 .config = iwl4965_nic_config,
5b9f8cd3 2191 .set_pwr_src = iwl_set_pwr_src,
6f4083aa 2192 },
6bc913bd 2193 .eeprom_ops = {
073d3f5f
TW
2194 .regulatory_bands = {
2195 EEPROM_REGULATORY_BAND_1_CHANNELS,
2196 EEPROM_REGULATORY_BAND_2_CHANNELS,
2197 EEPROM_REGULATORY_BAND_3_CHANNELS,
2198 EEPROM_REGULATORY_BAND_4_CHANNELS,
2199 EEPROM_REGULATORY_BAND_5_CHANNELS,
7aafef1c
WYG
2200 EEPROM_4965_REGULATORY_BAND_24_HT40_CHANNELS,
2201 EEPROM_4965_REGULATORY_BAND_52_HT40_CHANNELS
073d3f5f 2202 },
6bc913bd
AK
2203 .verify_signature = iwlcore_eeprom_verify_signature,
2204 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
2205 .release_semaphore = iwlcore_eeprom_release_semaphore,
0ef2ca67 2206 .calib_version = iwl4965_eeprom_calib_version,
073d3f5f 2207 .query_addr = iwlcore_eeprom_query_addr,
6bc913bd 2208 },
630fe9b6 2209 .send_tx_power = iwl4965_send_tx_power,
5b9f8cd3 2210 .update_chain_flags = iwl_update_chain_flags,
5bbe233b 2211 .post_associate = iwl_post_associate,
60690a6a 2212 .config_ap = iwl_config_ap,
ef850d7c 2213 .isr = iwl_isr_legacy,
62161aef
WYG
2214 .temp_ops = {
2215 .temperature = iwl4965_temperature_calib,
2216 .set_ct_kill = iwl4965_set_ct_threshold,
2217 },
3459ab5a 2218 .add_bcast_station = iwl_add_bcast_station,
fa8f130c 2219 .check_plcp_health = iwl_good_plcp_health,
6bc913bd
AK
2220};
2221
45d5d805 2222static const struct iwl_ops iwl4965_ops = {
cc0f555d 2223 .ucode = &iwl4965_ucode,
6bc913bd 2224 .lib = &iwl4965_lib,
3c424c28 2225 .hcmd = &iwl4965_hcmd,
857485c0 2226 .utils = &iwl4965_hcmd_utils,
e932a609 2227 .led = &iwlagn_led_ops,
6bc913bd
AK
2228};
2229
fed9017e 2230struct iwl_cfg iwl4965_agn_cfg = {
c11362c0 2231 .name = "Intel(R) Wireless WiFi Link 4965AGN",
a0987a8d
RC
2232 .fw_name_pre = IWL4965_FW_PRE,
2233 .ucode_api_max = IWL4965_UCODE_API_MAX,
2234 .ucode_api_min = IWL4965_UCODE_API_MIN,
82b9a121 2235 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
073d3f5f 2236 .eeprom_size = IWL4965_EEPROM_IMG_SIZE,
0ef2ca67
TW
2237 .eeprom_ver = EEPROM_4965_EEPROM_VERSION,
2238 .eeprom_calib_ver = EEPROM_4965_TX_POWER_VERSION,
6bc913bd 2239 .ops = &iwl4965_ops,
88804e2b
WYG
2240 .num_of_queues = IWL49_NUM_QUEUES,
2241 .num_of_ampdu_queues = IWL49_NUM_AMPDU_QUEUES,
2b068618 2242 .mod_params = &iwlagn_mod_params,
52aa081c 2243 .valid_tx_ant = ANT_AB,
b23aa883 2244 .valid_rx_ant = ANT_ABC,
fadb3582
BC
2245 .pll_cfg_val = 0,
2246 .set_l0s = true,
2247 .use_bsm = true,
b261793d
DH
2248 .use_isr_legacy = true,
2249 .ht_greenfield_support = false,
96d8c6af 2250 .broken_powersave = true,
f2d0d0e2 2251 .led_compensation = 61,
d8c07e7a 2252 .chain_noise_num_beacons = IWL4965_CAL_NUM_BEACONS,
3e4fb5fa 2253 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
b74e31a9 2254 .monitor_recover_period = IWL_MONITORING_PERIOD,
2f3f7f9c 2255 .temperature_kelvin = true,
d28667f8 2256 .off_channel_workaround = true,
678b385d 2257 .max_event_log_size = 512,
82b9a121
TW
2258};
2259
d16dc48a 2260/* Module firmware */
a0987a8d 2261MODULE_FIRMWARE(IWL4965_MODULE_FIRMWARE(IWL4965_UCODE_API_MAX));
d16dc48a 2262