blob: 56a3f0c84a1e422a04314a62530ea80fc9bd9957 [file] [log] [blame]
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001/******************************************************************************
2 *
3 * Copyright(c) 2007-2008 Intel Corporation. All rights reserved.
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:
22 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
23 *
24 *****************************************************************************/
25
26#include <linux/kernel.h>
27#include <linux/module.h>
Tomas Winkler5a6a2562008-04-24 11:55:23 -070028#include <linux/init.h>
29#include <linux/pci.h>
30#include <linux/dma-mapping.h>
31#include <linux/delay.h>
32#include <linux/skbuff.h>
33#include <linux/netdevice.h>
34#include <linux/wireless.h>
35#include <net/mac80211.h>
36#include <linux/etherdevice.h>
37#include <asm/unaligned.h>
38
39#include "iwl-eeprom.h"
Tomas Winkler3e0d4cb2008-04-24 11:55:38 -070040#include "iwl-dev.h"
Tomas Winkler5a6a2562008-04-24 11:55:23 -070041#include "iwl-core.h"
42#include "iwl-io.h"
Tomas Winklere26e47d2008-06-12 09:46:56 +080043#include "iwl-sta.h"
Tomas Winkler5a6a2562008-04-24 11:55:23 -070044#include "iwl-helpers.h"
45#include "iwl-5000-hw.h"
46
47#define IWL5000_UCODE_API "-1"
48
Ron Rindjunsky99da1b42008-05-15 13:54:13 +080049static const u16 iwl5000_default_queue_to_tx_fifo[] = {
50 IWL_TX_FIFO_AC3,
51 IWL_TX_FIFO_AC2,
52 IWL_TX_FIFO_AC1,
53 IWL_TX_FIFO_AC0,
54 IWL50_CMD_FIFO_NUM,
55 IWL_TX_FIFO_HCCA_1,
56 IWL_TX_FIFO_HCCA_2
57};
58
Tomas Winkler46315e02008-05-29 16:34:59 +080059/* FIXME: same implementation as 4965 */
60static int iwl5000_apm_stop_master(struct iwl_priv *priv)
61{
62 int ret = 0;
63 unsigned long flags;
64
65 spin_lock_irqsave(&priv->lock, flags);
66
67 /* set stop master bit */
68 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
69
70 ret = iwl_poll_bit(priv, CSR_RESET,
71 CSR_RESET_REG_FLAG_MASTER_DISABLED,
72 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
73 if (ret < 0)
74 goto out;
75
76out:
77 spin_unlock_irqrestore(&priv->lock, flags);
78 IWL_DEBUG_INFO("stop master\n");
79
80 return ret;
81}
82
83
Tomas Winkler30d59262008-04-24 11:55:25 -070084static int iwl5000_apm_init(struct iwl_priv *priv)
85{
86 int ret = 0;
87
88 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
89 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
90
Tomas Winkler8f061892008-05-29 16:34:56 +080091 /* disable L0s without affecting L1 :don't wait for ICH L0s bug W/A) */
92 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
93 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
94
Tomas Winkler4c43e0d2008-08-04 16:00:39 +080095 /* Set FH wait treshold to maximum (HW error during stress W/A) */
96 iwl_set_bit(priv, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
97
98 /* enable HAP INTA to move device L1a -> L0s */
99 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
100 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
101
Tomas Winkler30d59262008-04-24 11:55:25 -0700102 iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
103
104 /* set "initialization complete" bit to move adapter
105 * D0U* --> D0A* state */
106 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
107
108 /* wait for clock stabilization */
109 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
110 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
111 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
112 if (ret < 0) {
113 IWL_DEBUG_INFO("Failed to init the card\n");
114 return ret;
115 }
116
117 ret = iwl_grab_nic_access(priv);
118 if (ret)
119 return ret;
120
121 /* enable DMA */
Tomas Winkler8f061892008-05-29 16:34:56 +0800122 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler30d59262008-04-24 11:55:25 -0700123
124 udelay(20);
125
Tomas Winkler8f061892008-05-29 16:34:56 +0800126 /* disable L1-Active */
Tomas Winkler30d59262008-04-24 11:55:25 -0700127 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
Tomas Winkler8f061892008-05-29 16:34:56 +0800128 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Tomas Winkler30d59262008-04-24 11:55:25 -0700129
130 iwl_release_nic_access(priv);
131
132 return ret;
133}
134
Tomas Winklerf118a912008-05-29 16:34:58 +0800135/* FIXME: this is indentical to 4965 */
136static void iwl5000_apm_stop(struct iwl_priv *priv)
137{
138 unsigned long flags;
139
Tomas Winkler46315e02008-05-29 16:34:59 +0800140 iwl5000_apm_stop_master(priv);
Tomas Winklerf118a912008-05-29 16:34:58 +0800141
142 spin_lock_irqsave(&priv->lock, flags);
143
144 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
145
146 udelay(10);
147
Mohamed Abbas1d3e6c62008-08-28 17:25:05 +0800148 /* clear "init complete" move adapter D0A* --> D0U state */
149 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Tomas Winklerf118a912008-05-29 16:34:58 +0800150
151 spin_unlock_irqrestore(&priv->lock, flags);
152}
153
154
Tomas Winkler7f066102008-05-29 16:34:57 +0800155static int iwl5000_apm_reset(struct iwl_priv *priv)
156{
157 int ret = 0;
158 unsigned long flags;
159
Tomas Winkler46315e02008-05-29 16:34:59 +0800160 iwl5000_apm_stop_master(priv);
Tomas Winkler7f066102008-05-29 16:34:57 +0800161
162 spin_lock_irqsave(&priv->lock, flags);
163
164 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
165
166 udelay(10);
167
168
169 /* FIXME: put here L1A -L0S w/a */
170
171 iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
172
173 /* set "initialization complete" bit to move adapter
174 * D0U* --> D0A* state */
175 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
176
177 /* wait for clock stabilization */
178 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
179 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
180 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
181 if (ret < 0) {
182 IWL_DEBUG_INFO("Failed to init the card\n");
183 goto out;
184 }
185
186 ret = iwl_grab_nic_access(priv);
187 if (ret)
188 goto out;
189
190 /* enable DMA */
191 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
192
193 udelay(20);
194
195 /* disable L1-Active */
196 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
197 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
198
199 iwl_release_nic_access(priv);
200
201out:
202 spin_unlock_irqrestore(&priv->lock, flags);
203
204 return ret;
205}
206
207
Ron Rindjunsky5a835352008-05-05 10:22:29 +0800208static void iwl5000_nic_config(struct iwl_priv *priv)
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700209{
210 unsigned long flags;
211 u16 radio_cfg;
Tomas Winklere7b63582008-09-03 11:26:49 +0800212 u16 link;
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700213
214 spin_lock_irqsave(&priv->lock, flags);
215
Tomas Winklere7b63582008-09-03 11:26:49 +0800216 pci_read_config_word(priv->pci_dev, PCI_CFG_LINK_CTRL, &link);
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700217
Tomas Winkler8f061892008-05-29 16:34:56 +0800218 /* L1 is enabled by BIOS */
Tomas Winklere7b63582008-09-03 11:26:49 +0800219 if ((link & PCI_CFG_LINK_CTRL_VAL_L1_EN) == PCI_CFG_LINK_CTRL_VAL_L1_EN)
Tomas Winkler8f061892008-05-29 16:34:56 +0800220 /* diable L0S disabled L1A enabled */
221 iwl_set_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
222 else
223 /* L0S enabled L1A disabled */
224 iwl_clear_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700225
226 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
227
228 /* write radio config values to register */
229 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) < EEPROM_5000_RF_CFG_TYPE_MAX)
230 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
231 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
232 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
233 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
234
235 /* set CSR_HW_CONFIG_REG for uCode use */
236 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
237 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
238 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
239
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800240 /* W/A : NIC is stuck in a reset state after Early PCIe power off
241 * (PCIe power is lost before PERST# is asserted),
242 * causing ME FW to lose ownership and not being able to obtain it back.
243 */
Tomas Winkler2d3db672008-08-04 16:00:47 +0800244 iwl_grab_nic_access(priv);
245 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800246 APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS,
247 ~APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS);
Tomas Winkler2d3db672008-08-04 16:00:47 +0800248 iwl_release_nic_access(priv);
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800249
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700250 spin_unlock_irqrestore(&priv->lock, flags);
251}
252
253
254
Tomas Winkler25ae3982008-04-24 11:55:27 -0700255/*
256 * EEPROM
257 */
258static u32 eeprom_indirect_address(const struct iwl_priv *priv, u32 address)
259{
260 u16 offset = 0;
261
262 if ((address & INDIRECT_ADDRESS) == 0)
263 return address;
264
265 switch (address & INDIRECT_TYPE_MSK) {
266 case INDIRECT_HOST:
267 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_HOST);
268 break;
269 case INDIRECT_GENERAL:
270 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_GENERAL);
271 break;
272 case INDIRECT_REGULATORY:
273 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_REGULATORY);
274 break;
275 case INDIRECT_CALIBRATION:
276 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_CALIBRATION);
277 break;
278 case INDIRECT_PROCESS_ADJST:
279 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_PROCESS_ADJST);
280 break;
281 case INDIRECT_OTHERS:
282 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_OTHERS);
283 break;
284 default:
285 IWL_ERROR("illegal indirect type: 0x%X\n",
286 address & INDIRECT_TYPE_MSK);
287 break;
288 }
289
290 /* translate the offset from words to byte */
291 return (address & ADDRESS_MSK) + (offset << 1);
292}
293
Tomas Winklerf1f69412008-04-24 11:55:35 -0700294static int iwl5000_eeprom_check_version(struct iwl_priv *priv)
295{
296 u16 eeprom_ver;
297 struct iwl_eeprom_calib_hdr {
298 u8 version;
299 u8 pa_type;
300 u16 voltage;
301 } *hdr;
302
303 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
304
305 hdr = (struct iwl_eeprom_calib_hdr *)iwl_eeprom_query_addr(priv,
306 EEPROM_5000_CALIB_ALL);
307
308 if (eeprom_ver < EEPROM_5000_EEPROM_VERSION ||
309 hdr->version < EEPROM_5000_TX_POWER_VERSION)
310 goto err;
311
312 return 0;
313err:
314 IWL_ERROR("Unsuported EEPROM VER=0x%x < 0x%x CALIB=0x%x < 0x%x\n",
315 eeprom_ver, EEPROM_5000_EEPROM_VERSION,
316 hdr->version, EEPROM_5000_TX_POWER_VERSION);
317 return -EINVAL;
318
319}
320
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700321static void iwl5000_gain_computation(struct iwl_priv *priv,
322 u32 average_noise[NUM_RX_CHAINS],
323 u16 min_average_noise_antenna_i,
324 u32 min_average_noise)
325{
326 int i;
327 s32 delta_g;
328 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
329
330 /* Find Gain Code for the antennas B and C */
331 for (i = 1; i < NUM_RX_CHAINS; i++) {
332 if ((data->disconn_array[i])) {
333 data->delta_gain_code[i] = 0;
334 continue;
335 }
336 delta_g = (1000 * ((s32)average_noise[0] -
337 (s32)average_noise[i])) / 1500;
338 /* bound gain by 2 bits value max, 3rd bit is sign */
339 data->delta_gain_code[i] =
340 min(abs(delta_g), CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
341
342 if (delta_g < 0)
343 /* set negative sign */
344 data->delta_gain_code[i] |= (1 << 2);
345 }
346
347 IWL_DEBUG_CALIB("Delta gains: ANT_B = %d ANT_C = %d\n",
348 data->delta_gain_code[1], data->delta_gain_code[2]);
349
350 if (!data->radio_write) {
351 struct iwl5000_calibration_chain_noise_gain_cmd cmd;
352 memset(&cmd, 0, sizeof(cmd));
353
354 cmd.op_code = IWL5000_PHY_CALIBRATE_CHAIN_NOISE_GAIN_CMD;
355 cmd.delta_gain_1 = data->delta_gain_code[1];
356 cmd.delta_gain_2 = data->delta_gain_code[2];
357 iwl_send_cmd_pdu_async(priv, REPLY_PHY_CALIBRATION_CMD,
358 sizeof(cmd), &cmd, NULL);
359
360 data->radio_write = 1;
361 data->state = IWL_CHAIN_NOISE_CALIBRATED;
362 }
363
364 data->chain_noise_a = 0;
365 data->chain_noise_b = 0;
366 data->chain_noise_c = 0;
367 data->chain_signal_a = 0;
368 data->chain_signal_b = 0;
369 data->chain_signal_c = 0;
370 data->beacon_count = 0;
371}
372
373static void iwl5000_chain_noise_reset(struct iwl_priv *priv)
374{
375 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
376
377 if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) {
378 struct iwl5000_calibration_chain_noise_reset_cmd cmd;
379
380 memset(&cmd, 0, sizeof(cmd));
381 cmd.op_code = IWL5000_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD;
382 if (iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
383 sizeof(cmd), &cmd))
384 IWL_ERROR("Could not send REPLY_PHY_CALIBRATION_CMD\n");
385 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
386 IWL_DEBUG_CALIB("Run chain_noise_calibrate\n");
387 }
388}
389
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800390static void iwl5000_rts_tx_cmd_flag(struct ieee80211_tx_info *info,
391 __le32 *tx_flags)
392{
393 if ((info->flags & IEEE80211_TX_CTL_USE_RTS_CTS) ||
394 (info->flags & IEEE80211_TX_CTL_USE_CTS_PROTECT))
395 *tx_flags |= TX_CMD_FLG_RTS_CTS_MSK;
396 else
397 *tx_flags &= ~TX_CMD_FLG_RTS_CTS_MSK;
398}
399
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700400static struct iwl_sensitivity_ranges iwl5000_sensitivity = {
401 .min_nrg_cck = 95,
402 .max_nrg_cck = 0,
403 .auto_corr_min_ofdm = 90,
404 .auto_corr_min_ofdm_mrc = 170,
405 .auto_corr_min_ofdm_x1 = 120,
406 .auto_corr_min_ofdm_mrc_x1 = 240,
407
408 .auto_corr_max_ofdm = 120,
409 .auto_corr_max_ofdm_mrc = 210,
410 .auto_corr_max_ofdm_x1 = 155,
411 .auto_corr_max_ofdm_mrc_x1 = 290,
412
413 .auto_corr_min_cck = 125,
414 .auto_corr_max_cck = 200,
415 .auto_corr_min_cck_mrc = 170,
416 .auto_corr_max_cck_mrc = 400,
417 .nrg_th_cck = 95,
418 .nrg_th_ofdm = 95,
419};
420
Tomas Winkler25ae3982008-04-24 11:55:27 -0700421static const u8 *iwl5000_eeprom_query_addr(const struct iwl_priv *priv,
422 size_t offset)
423{
424 u32 address = eeprom_indirect_address(priv, offset);
425 BUG_ON(address >= priv->cfg->eeprom_size);
426 return &priv->eeprom[address];
427}
428
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800429/*
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800430 * Calibration
431 */
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800432static int iwl5000_set_Xtal_calib(struct iwl_priv *priv)
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800433{
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800434 u8 data[sizeof(struct iwl5000_calib_hdr) +
435 sizeof(struct iwl_cal_xtal_freq)];
436 struct iwl5000_calib_cmd *cmd = (struct iwl5000_calib_cmd *)data;
437 struct iwl_cal_xtal_freq *xtal = (struct iwl_cal_xtal_freq *)cmd->data;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800438 u16 *xtal_calib = (u16 *)iwl_eeprom_query_addr(priv, EEPROM_5000_XTAL);
439
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800440 cmd->hdr.op_code = IWL5000_PHY_CALIBRATE_CRYSTAL_FRQ_CMD;
441 xtal->cap_pin1 = (u8)xtal_calib[0];
442 xtal->cap_pin2 = (u8)xtal_calib[1];
443 return iwl_calib_set(&priv->calib_results[IWL5000_CALIB_XTAL],
444 data, sizeof(data));
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800445}
446
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800447static int iwl5000_send_calib_cfg(struct iwl_priv *priv)
448{
449 struct iwl5000_calib_cfg_cmd calib_cfg_cmd;
450 struct iwl_host_cmd cmd = {
451 .id = CALIBRATION_CFG_CMD,
452 .len = sizeof(struct iwl5000_calib_cfg_cmd),
453 .data = &calib_cfg_cmd,
454 };
455
456 memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd));
457 calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL;
458 calib_cfg_cmd.ucd_calib_cfg.once.start = IWL_CALIB_INIT_CFG_ALL;
459 calib_cfg_cmd.ucd_calib_cfg.once.send_res = IWL_CALIB_INIT_CFG_ALL;
460 calib_cfg_cmd.ucd_calib_cfg.flags = IWL_CALIB_INIT_CFG_ALL;
461
462 return iwl_send_cmd(priv, &cmd);
463}
464
465static void iwl5000_rx_calib_result(struct iwl_priv *priv,
466 struct iwl_rx_mem_buffer *rxb)
467{
468 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
469 struct iwl5000_calib_hdr *hdr = (struct iwl5000_calib_hdr *)pkt->u.raw;
470 int len = le32_to_cpu(pkt->len) & FH_RSCSR_FRAME_SIZE_MSK;
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800471 int index;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800472
473 /* reduce the size of the length field itself */
474 len -= 4;
475
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800476 /* Define the order in which the results will be sent to the runtime
477 * uCode. iwl_send_calib_results sends them in a row according to their
478 * index. We sort them here */
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800479 switch (hdr->op_code) {
480 case IWL5000_PHY_CALIBRATE_LO_CMD:
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800481 index = IWL5000_CALIB_LO;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800482 break;
483 case IWL5000_PHY_CALIBRATE_TX_IQ_CMD:
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800484 index = IWL5000_CALIB_TX_IQ;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800485 break;
486 case IWL5000_PHY_CALIBRATE_TX_IQ_PERD_CMD:
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800487 index = IWL5000_CALIB_TX_IQ_PERD;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800488 break;
489 default:
490 IWL_ERROR("Unknown calibration notification %d\n",
491 hdr->op_code);
492 return;
493 }
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800494 iwl_calib_set(&priv->calib_results[index], pkt->u.raw, len);
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800495}
496
497static void iwl5000_rx_calib_complete(struct iwl_priv *priv,
498 struct iwl_rx_mem_buffer *rxb)
499{
500 IWL_DEBUG_INFO("Init. calibration is completed, restarting fw.\n");
501 queue_work(priv->workqueue, &priv->restart);
502}
503
504/*
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800505 * ucode
506 */
507static int iwl5000_load_section(struct iwl_priv *priv,
508 struct fw_desc *image,
509 u32 dst_addr)
510{
511 int ret = 0;
512 unsigned long flags;
513
514 dma_addr_t phy_addr = image->p_addr;
515 u32 byte_cnt = image->len;
516
517 spin_lock_irqsave(&priv->lock, flags);
518 ret = iwl_grab_nic_access(priv);
519 if (ret) {
520 spin_unlock_irqrestore(&priv->lock, flags);
521 return ret;
522 }
523
524 iwl_write_direct32(priv,
525 FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
526 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE);
527
528 iwl_write_direct32(priv,
529 FH_SRVC_CHNL_SRAM_ADDR_REG(FH_SRVC_CHNL), dst_addr);
530
531 iwl_write_direct32(priv,
532 FH_TFDIB_CTRL0_REG(FH_SRVC_CHNL),
533 phy_addr & FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK);
534
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800535 iwl_write_direct32(priv,
Tomas Winklerf0b9f5c2008-08-28 17:25:10 +0800536 FH_TFDIB_CTRL1_REG(FH_SRVC_CHNL),
537 (iwl_get_dma_hi_address(phy_addr)
538 << FH_MEM_TFDIB_REG1_ADDR_BITSHIFT) | byte_cnt);
539
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800540 iwl_write_direct32(priv,
541 FH_TCSR_CHNL_TX_BUF_STS_REG(FH_SRVC_CHNL),
542 1 << FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM |
543 1 << FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX |
544 FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID);
545
546 iwl_write_direct32(priv,
547 FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
548 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
549 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE_VAL |
550 FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD);
551
552 iwl_release_nic_access(priv);
553 spin_unlock_irqrestore(&priv->lock, flags);
554 return 0;
555}
556
557static int iwl5000_load_given_ucode(struct iwl_priv *priv,
558 struct fw_desc *inst_image,
559 struct fw_desc *data_image)
560{
561 int ret = 0;
562
563 ret = iwl5000_load_section(
564 priv, inst_image, RTC_INST_LOWER_BOUND);
565 if (ret)
566 return ret;
567
568 IWL_DEBUG_INFO("INST uCode section being loaded...\n");
569 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
570 priv->ucode_write_complete, 5 * HZ);
571 if (ret == -ERESTARTSYS) {
572 IWL_ERROR("Could not load the INST uCode section due "
573 "to interrupt\n");
574 return ret;
575 }
576 if (!ret) {
577 IWL_ERROR("Could not load the INST uCode section\n");
578 return -ETIMEDOUT;
579 }
580
581 priv->ucode_write_complete = 0;
582
583 ret = iwl5000_load_section(
584 priv, data_image, RTC_DATA_LOWER_BOUND);
585 if (ret)
586 return ret;
587
588 IWL_DEBUG_INFO("DATA uCode section being loaded...\n");
589
590 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
591 priv->ucode_write_complete, 5 * HZ);
592 if (ret == -ERESTARTSYS) {
593 IWL_ERROR("Could not load the INST uCode section due "
594 "to interrupt\n");
595 return ret;
596 } else if (!ret) {
597 IWL_ERROR("Could not load the DATA uCode section\n");
598 return -ETIMEDOUT;
599 } else
600 ret = 0;
601
602 priv->ucode_write_complete = 0;
603
604 return ret;
605}
606
607static int iwl5000_load_ucode(struct iwl_priv *priv)
608{
609 int ret = 0;
610
611 /* check whether init ucode should be loaded, or rather runtime ucode */
612 if (priv->ucode_init.len && (priv->ucode_type == UCODE_NONE)) {
613 IWL_DEBUG_INFO("Init ucode found. Loading init ucode...\n");
614 ret = iwl5000_load_given_ucode(priv,
615 &priv->ucode_init, &priv->ucode_init_data);
616 if (!ret) {
617 IWL_DEBUG_INFO("Init ucode load complete.\n");
618 priv->ucode_type = UCODE_INIT;
619 }
620 } else {
621 IWL_DEBUG_INFO("Init ucode not found, or already loaded. "
622 "Loading runtime ucode...\n");
623 ret = iwl5000_load_given_ucode(priv,
624 &priv->ucode_code, &priv->ucode_data);
625 if (!ret) {
626 IWL_DEBUG_INFO("Runtime ucode load complete.\n");
627 priv->ucode_type = UCODE_RT;
628 }
629 }
630
631 return ret;
632}
633
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800634static void iwl5000_init_alive_start(struct iwl_priv *priv)
635{
636 int ret = 0;
637
638 /* Check alive response for "valid" sign from uCode */
639 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
640 /* We had an error bringing up the hardware, so take it
641 * all the way back down so we can try again */
642 IWL_DEBUG_INFO("Initialize Alive failed.\n");
643 goto restart;
644 }
645
646 /* initialize uCode was loaded... verify inst image.
647 * This is a paranoid check, because we would not have gotten the
648 * "initialize" alive if code weren't properly loaded. */
649 if (iwl_verify_ucode(priv)) {
650 /* Runtime instruction load was bad;
651 * take it all the way back down so we can try again */
652 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
653 goto restart;
654 }
655
Emmanuel Grumbach37deb2a2008-06-30 17:23:08 +0800656 iwl_clear_stations_table(priv);
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800657 ret = priv->cfg->ops->lib->alive_notify(priv);
658 if (ret) {
659 IWL_WARNING("Could not complete ALIVE transition: %d\n", ret);
660 goto restart;
661 }
662
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800663 iwl5000_send_calib_cfg(priv);
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800664 return;
665
666restart:
667 /* real restart (first load init_ucode) */
668 queue_work(priv->workqueue, &priv->restart);
669}
670
671static void iwl5000_set_wr_ptrs(struct iwl_priv *priv,
672 int txq_id, u32 index)
673{
674 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
675 (index & 0xff) | (txq_id << 8));
676 iwl_write_prph(priv, IWL50_SCD_QUEUE_RDPTR(txq_id), index);
677}
678
679static void iwl5000_tx_queue_set_status(struct iwl_priv *priv,
680 struct iwl_tx_queue *txq,
681 int tx_fifo_id, int scd_retry)
682{
683 int txq_id = txq->q.id;
684 int active = test_bit(txq_id, &priv->txq_ctx_active_msk)?1:0;
685
686 iwl_write_prph(priv, IWL50_SCD_QUEUE_STATUS_BITS(txq_id),
687 (active << IWL50_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
688 (tx_fifo_id << IWL50_SCD_QUEUE_STTS_REG_POS_TXF) |
689 (1 << IWL50_SCD_QUEUE_STTS_REG_POS_WSL) |
690 IWL50_SCD_QUEUE_STTS_REG_MSK);
691
692 txq->sched_retry = scd_retry;
693
694 IWL_DEBUG_INFO("%s %s Queue %d on AC %d\n",
695 active ? "Activate" : "Deactivate",
696 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
697}
698
Ron Rindjunsky9636e582008-05-15 13:54:14 +0800699static int iwl5000_send_wimax_coex(struct iwl_priv *priv)
700{
701 struct iwl_wimax_coex_cmd coex_cmd;
702
703 memset(&coex_cmd, 0, sizeof(coex_cmd));
704
705 return iwl_send_cmd_pdu(priv, COEX_PRIORITY_TABLE_CMD,
706 sizeof(coex_cmd), &coex_cmd);
707}
708
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800709static int iwl5000_alive_notify(struct iwl_priv *priv)
710{
711 u32 a;
712 int i = 0;
713 unsigned long flags;
714 int ret;
715
716 spin_lock_irqsave(&priv->lock, flags);
717
718 ret = iwl_grab_nic_access(priv);
719 if (ret) {
720 spin_unlock_irqrestore(&priv->lock, flags);
721 return ret;
722 }
723
724 priv->scd_base_addr = iwl_read_prph(priv, IWL50_SCD_SRAM_BASE_ADDR);
725 a = priv->scd_base_addr + IWL50_SCD_CONTEXT_DATA_OFFSET;
726 for (; a < priv->scd_base_addr + IWL50_SCD_TX_STTS_BITMAP_OFFSET;
727 a += 4)
728 iwl_write_targ_mem(priv, a, 0);
729 for (; a < priv->scd_base_addr + IWL50_SCD_TRANSLATE_TBL_OFFSET;
730 a += 4)
731 iwl_write_targ_mem(priv, a, 0);
732 for (; a < sizeof(u16) * priv->hw_params.max_txq_num; a += 4)
733 iwl_write_targ_mem(priv, a, 0);
734
735 iwl_write_prph(priv, IWL50_SCD_DRAM_BASE_ADDR,
736 (priv->shared_phys +
737 offsetof(struct iwl5000_shared, queues_byte_cnt_tbls)) >> 10);
738 iwl_write_prph(priv, IWL50_SCD_QUEUECHAIN_SEL,
739 IWL50_SCD_QUEUECHAIN_SEL_ALL(
740 priv->hw_params.max_txq_num));
741 iwl_write_prph(priv, IWL50_SCD_AGGR_SEL, 0);
742
743 /* initiate the queues */
744 for (i = 0; i < priv->hw_params.max_txq_num; i++) {
745 iwl_write_prph(priv, IWL50_SCD_QUEUE_RDPTR(i), 0);
746 iwl_write_direct32(priv, HBUS_TARG_WRPTR, 0 | (i << 8));
747 iwl_write_targ_mem(priv, priv->scd_base_addr +
748 IWL50_SCD_CONTEXT_QUEUE_OFFSET(i), 0);
749 iwl_write_targ_mem(priv, priv->scd_base_addr +
750 IWL50_SCD_CONTEXT_QUEUE_OFFSET(i) +
751 sizeof(u32),
752 ((SCD_WIN_SIZE <<
753 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
754 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
755 ((SCD_FRAME_LIMIT <<
756 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
757 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
758 }
759
760 iwl_write_prph(priv, IWL50_SCD_INTERRUPT_MASK,
Tomas Winklerda1bc452008-05-29 16:35:00 +0800761 IWL_MASK(0, priv->hw_params.max_txq_num));
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800762
Tomas Winklerda1bc452008-05-29 16:35:00 +0800763 /* Activate all Tx DMA/FIFO channels */
764 priv->cfg->ops->lib->txq_set_sched(priv, IWL_MASK(0, 7));
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800765
766 iwl5000_set_wr_ptrs(priv, IWL_CMD_QUEUE_NUM, 0);
767 /* map qos queues to fifos one-to-one */
768 for (i = 0; i < ARRAY_SIZE(iwl5000_default_queue_to_tx_fifo); i++) {
769 int ac = iwl5000_default_queue_to_tx_fifo[i];
770 iwl_txq_ctx_activate(priv, i);
771 iwl5000_tx_queue_set_status(priv, &priv->txq[i], ac, 0);
772 }
773 /* TODO - need to initialize those FIFOs inside the loop above,
774 * not only mark them as active */
775 iwl_txq_ctx_activate(priv, 4);
776 iwl_txq_ctx_activate(priv, 7);
777 iwl_txq_ctx_activate(priv, 8);
778 iwl_txq_ctx_activate(priv, 9);
779
780 iwl_release_nic_access(priv);
781 spin_unlock_irqrestore(&priv->lock, flags);
782
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800783
Ron Rindjunsky9636e582008-05-15 13:54:14 +0800784 iwl5000_send_wimax_coex(priv);
785
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800786 iwl5000_set_Xtal_calib(priv);
787 iwl_send_calib_results(priv);
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800788
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800789 return 0;
790}
791
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700792static int iwl5000_hw_set_hw_params(struct iwl_priv *priv)
793{
794 if ((priv->cfg->mod_params->num_of_queues > IWL50_NUM_QUEUES) ||
795 (priv->cfg->mod_params->num_of_queues < IWL_MIN_NUM_QUEUES)) {
796 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
797 IWL_MIN_NUM_QUEUES, IWL50_NUM_QUEUES);
798 return -EINVAL;
799 }
Tomas Winkler25ae3982008-04-24 11:55:27 -0700800
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700801 priv->hw_params.max_txq_num = priv->cfg->mod_params->num_of_queues;
Ron Rindjunsky7f3e4bb2008-06-12 09:46:55 +0800802 priv->hw_params.first_ampdu_q = IWL50_FIRST_AMPDU_QUEUE;
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700803 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
804 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
805 priv->hw_params.max_data_size = IWL50_RTC_DATA_SIZE;
806 priv->hw_params.max_inst_size = IWL50_RTC_INST_SIZE;
Ron Rindjunskyda154e302008-06-30 17:23:20 +0800807 priv->hw_params.max_bsm_size = 0;
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700808 priv->hw_params.fat_channel = BIT(IEEE80211_BAND_2GHZ) |
809 BIT(IEEE80211_BAND_5GHZ);
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700810 priv->hw_params.sens = &iwl5000_sensitivity;
Tomas Winkler25ae3982008-04-24 11:55:27 -0700811
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700812 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
813 case CSR_HW_REV_TYPE_5100:
Tomas Winkler5d664a42008-10-08 09:37:29 +0800814 priv->hw_params.tx_chains_num = 1;
815 priv->hw_params.rx_chains_num = 2;
816 priv->hw_params.valid_tx_ant = ANT_B;
817 priv->hw_params.valid_rx_ant = ANT_AB;
818 break;
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700819 case CSR_HW_REV_TYPE_5150:
820 priv->hw_params.tx_chains_num = 1;
821 priv->hw_params.rx_chains_num = 2;
Tomas Winkler1179f182008-04-24 11:55:31 -0700822 priv->hw_params.valid_tx_ant = ANT_A;
823 priv->hw_params.valid_rx_ant = ANT_AB;
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700824 break;
825 case CSR_HW_REV_TYPE_5300:
826 case CSR_HW_REV_TYPE_5350:
827 priv->hw_params.tx_chains_num = 3;
828 priv->hw_params.rx_chains_num = 3;
Tomas Winkler1179f182008-04-24 11:55:31 -0700829 priv->hw_params.valid_tx_ant = ANT_ABC;
830 priv->hw_params.valid_rx_ant = ANT_ABC;
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700831 break;
832 }
Emmanuel Grumbachc031bf82008-04-24 11:55:29 -0700833
834 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
835 case CSR_HW_REV_TYPE_5100:
836 case CSR_HW_REV_TYPE_5300:
Tomas Winklerd5d7c582008-10-08 09:37:28 +0800837 case CSR_HW_REV_TYPE_5350:
838 /* 5X00 and 5350 wants in Celsius */
Emmanuel Grumbachc031bf82008-04-24 11:55:29 -0700839 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
840 break;
841 case CSR_HW_REV_TYPE_5150:
Tomas Winklerd5d7c582008-10-08 09:37:28 +0800842 /* 5150 wants in Kelvin */
Emmanuel Grumbachc031bf82008-04-24 11:55:29 -0700843 priv->hw_params.ct_kill_threshold =
844 CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD);
845 break;
846 }
847
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800848 /* Set initial calibration set */
849 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
850 case CSR_HW_REV_TYPE_5100:
851 case CSR_HW_REV_TYPE_5300:
852 case CSR_HW_REV_TYPE_5350:
853 priv->hw_params.calib_init_cfg =
854 BIT(IWL5000_CALIB_XTAL) |
855 BIT(IWL5000_CALIB_LO) |
856 BIT(IWL5000_CALIB_TX_IQ) |
857 BIT(IWL5000_CALIB_TX_IQ_PERD);
858 break;
859 case CSR_HW_REV_TYPE_5150:
860 priv->hw_params.calib_init_cfg = 0;
861 break;
862 }
863
864
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700865 return 0;
866}
Ron Rindjunskyd4100dd2008-04-24 11:55:33 -0700867
868static int iwl5000_alloc_shared_mem(struct iwl_priv *priv)
869{
870 priv->shared_virt = pci_alloc_consistent(priv->pci_dev,
871 sizeof(struct iwl5000_shared),
872 &priv->shared_phys);
873 if (!priv->shared_virt)
874 return -ENOMEM;
875
876 memset(priv->shared_virt, 0, sizeof(struct iwl5000_shared));
877
Ron Rindjunskyd67f5482008-05-05 10:22:49 +0800878 priv->rb_closed_offset = offsetof(struct iwl5000_shared, rb_closed);
879
Ron Rindjunskyd4100dd2008-04-24 11:55:33 -0700880 return 0;
881}
882
883static void iwl5000_free_shared_mem(struct iwl_priv *priv)
884{
885 if (priv->shared_virt)
886 pci_free_consistent(priv->pci_dev,
887 sizeof(struct iwl5000_shared),
888 priv->shared_virt,
889 priv->shared_phys);
890}
891
Ron Rindjunskyd67f5482008-05-05 10:22:49 +0800892static int iwl5000_shared_mem_rx_idx(struct iwl_priv *priv)
893{
894 struct iwl5000_shared *s = priv->shared_virt;
895 return le32_to_cpu(s->rb_closed) & 0xFFF;
896}
897
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700898/**
899 * iwl5000_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
900 */
901static void iwl5000_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
Ron Rindjunsky16466902008-05-05 10:22:50 +0800902 struct iwl_tx_queue *txq,
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700903 u16 byte_cnt)
904{
905 struct iwl5000_shared *shared_data = priv->shared_virt;
906 int txq_id = txq->q.id;
907 u8 sec_ctl = 0;
908 u8 sta = 0;
909 int len;
910
911 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
912
913 if (txq_id != IWL_CMD_QUEUE_NUM) {
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800914 sta = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id;
915 sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl;
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700916
917 switch (sec_ctl & TX_CMD_SEC_MSK) {
918 case TX_CMD_SEC_CCM:
919 len += CCMP_MIC_LEN;
920 break;
921 case TX_CMD_SEC_TKIP:
922 len += TKIP_ICV_LEN;
923 break;
924 case TX_CMD_SEC_WEP:
925 len += WEP_IV_LEN + WEP_ICV_LEN;
926 break;
927 }
928 }
929
930 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
931 tfd_offset[txq->q.write_ptr], byte_cnt, len);
932
933 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
934 tfd_offset[txq->q.write_ptr], sta_id, sta);
935
936 if (txq->q.write_ptr < IWL50_MAX_WIN_SIZE) {
937 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
938 tfd_offset[IWL50_QUEUE_SIZE + txq->q.write_ptr],
939 byte_cnt, len);
940 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
941 tfd_offset[IWL50_QUEUE_SIZE + txq->q.write_ptr],
942 sta_id, sta);
943 }
944}
945
Tomas Winkler972cf442008-05-29 16:35:13 +0800946static void iwl5000_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
947 struct iwl_tx_queue *txq)
948{
949 int txq_id = txq->q.id;
950 struct iwl5000_shared *shared_data = priv->shared_virt;
951 u8 sta = 0;
952
953 if (txq_id != IWL_CMD_QUEUE_NUM)
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800954 sta = txq->cmd[txq->q.read_ptr]->cmd.tx.sta_id;
Tomas Winkler972cf442008-05-29 16:35:13 +0800955
956 shared_data->queues_byte_cnt_tbls[txq_id].tfd_offset[txq->q.read_ptr].
957 val = cpu_to_le16(1 | (sta << 12));
958
959 if (txq->q.write_ptr < IWL50_MAX_WIN_SIZE) {
960 shared_data->queues_byte_cnt_tbls[txq_id].
961 tfd_offset[IWL50_QUEUE_SIZE + txq->q.read_ptr].
962 val = cpu_to_le16(1 | (sta << 12));
963 }
964}
965
Tomas Winklere26e47d2008-06-12 09:46:56 +0800966static int iwl5000_tx_queue_set_q2ratid(struct iwl_priv *priv, u16 ra_tid,
967 u16 txq_id)
968{
969 u32 tbl_dw_addr;
970 u32 tbl_dw;
971 u16 scd_q2ratid;
972
973 scd_q2ratid = ra_tid & IWL_SCD_QUEUE_RA_TID_MAP_RATID_MSK;
974
975 tbl_dw_addr = priv->scd_base_addr +
976 IWL50_SCD_TRANSLATE_TBL_OFFSET_QUEUE(txq_id);
977
978 tbl_dw = iwl_read_targ_mem(priv, tbl_dw_addr);
979
980 if (txq_id & 0x1)
981 tbl_dw = (scd_q2ratid << 16) | (tbl_dw & 0x0000FFFF);
982 else
983 tbl_dw = scd_q2ratid | (tbl_dw & 0xFFFF0000);
984
985 iwl_write_targ_mem(priv, tbl_dw_addr, tbl_dw);
986
987 return 0;
988}
989static void iwl5000_tx_queue_stop_scheduler(struct iwl_priv *priv, u16 txq_id)
990{
991 /* Simply stop the queue, but don't change any configuration;
992 * the SCD_ACT_EN bit is the write-enable mask for the ACTIVE bit. */
993 iwl_write_prph(priv,
994 IWL50_SCD_QUEUE_STATUS_BITS(txq_id),
995 (0 << IWL50_SCD_QUEUE_STTS_REG_POS_ACTIVE)|
996 (1 << IWL50_SCD_QUEUE_STTS_REG_POS_SCD_ACT_EN));
997}
998
999static int iwl5000_txq_agg_enable(struct iwl_priv *priv, int txq_id,
1000 int tx_fifo, int sta_id, int tid, u16 ssn_idx)
1001{
1002 unsigned long flags;
1003 int ret;
1004 u16 ra_tid;
1005
Tomas Winkler9f17b312008-07-11 11:53:35 +08001006 if ((IWL50_FIRST_AMPDU_QUEUE > txq_id) ||
1007 (IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES <= txq_id)) {
1008 IWL_WARNING("queue number out of range: %d, must be %d to %d\n",
1009 txq_id, IWL50_FIRST_AMPDU_QUEUE,
1010 IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES - 1);
1011 return -EINVAL;
1012 }
Tomas Winklere26e47d2008-06-12 09:46:56 +08001013
1014 ra_tid = BUILD_RAxTID(sta_id, tid);
1015
1016 /* Modify device's station table to Tx this TID */
1017 iwl_sta_modify_enable_tid_tx(priv, sta_id, tid);
1018
1019 spin_lock_irqsave(&priv->lock, flags);
1020 ret = iwl_grab_nic_access(priv);
1021 if (ret) {
1022 spin_unlock_irqrestore(&priv->lock, flags);
1023 return ret;
1024 }
1025
1026 /* Stop this Tx queue before configuring it */
1027 iwl5000_tx_queue_stop_scheduler(priv, txq_id);
1028
1029 /* Map receiver-address / traffic-ID to this queue */
1030 iwl5000_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
1031
1032 /* Set this queue as a chain-building queue */
1033 iwl_set_bits_prph(priv, IWL50_SCD_QUEUECHAIN_SEL, (1<<txq_id));
1034
1035 /* enable aggregations for the queue */
1036 iwl_set_bits_prph(priv, IWL50_SCD_AGGR_SEL, (1<<txq_id));
1037
1038 /* Place first TFD at index corresponding to start sequence number.
1039 * Assumes that ssn_idx is valid (!= 0xFFF) */
1040 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
1041 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
1042 iwl5000_set_wr_ptrs(priv, txq_id, ssn_idx);
1043
1044 /* Set up Tx window size and frame limit for this queue */
1045 iwl_write_targ_mem(priv, priv->scd_base_addr +
1046 IWL50_SCD_CONTEXT_QUEUE_OFFSET(txq_id) +
1047 sizeof(u32),
1048 ((SCD_WIN_SIZE <<
1049 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
1050 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
1051 ((SCD_FRAME_LIMIT <<
1052 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
1053 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
1054
1055 iwl_set_bits_prph(priv, IWL50_SCD_INTERRUPT_MASK, (1 << txq_id));
1056
1057 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
1058 iwl5000_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
1059
1060 iwl_release_nic_access(priv);
1061 spin_unlock_irqrestore(&priv->lock, flags);
1062
1063 return 0;
1064}
1065
1066static int iwl5000_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
1067 u16 ssn_idx, u8 tx_fifo)
1068{
1069 int ret;
1070
Tomas Winkler9f17b312008-07-11 11:53:35 +08001071 if ((IWL50_FIRST_AMPDU_QUEUE > txq_id) ||
1072 (IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES <= txq_id)) {
1073 IWL_WARNING("queue number out of range: %d, must be %d to %d\n",
1074 txq_id, IWL50_FIRST_AMPDU_QUEUE,
1075 IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES - 1);
Tomas Winklere26e47d2008-06-12 09:46:56 +08001076 return -EINVAL;
1077 }
1078
1079 ret = iwl_grab_nic_access(priv);
1080 if (ret)
1081 return ret;
1082
1083 iwl5000_tx_queue_stop_scheduler(priv, txq_id);
1084
1085 iwl_clear_bits_prph(priv, IWL50_SCD_AGGR_SEL, (1 << txq_id));
1086
1087 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
1088 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
1089 /* supposes that ssn_idx is valid (!= 0xFFF) */
1090 iwl5000_set_wr_ptrs(priv, txq_id, ssn_idx);
1091
1092 iwl_clear_bits_prph(priv, IWL50_SCD_INTERRUPT_MASK, (1 << txq_id));
1093 iwl_txq_ctx_deactivate(priv, txq_id);
1094 iwl5000_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
1095
1096 iwl_release_nic_access(priv);
1097
1098 return 0;
1099}
1100
Tomas Winkler2469bf22008-05-05 10:22:35 +08001101static u16 iwl5000_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
1102{
1103 u16 size = (u16)sizeof(struct iwl_addsta_cmd);
1104 memcpy(data, cmd, size);
1105 return size;
1106}
1107
1108
Tomas Winklerda1bc452008-05-29 16:35:00 +08001109/*
1110 * Activate/Deactivat Tx DMA/FIFO channels according tx fifos mask
1111 * must be called under priv->lock and mac access
1112 */
1113static void iwl5000_txq_set_sched(struct iwl_priv *priv, u32 mask)
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +08001114{
Tomas Winklerda1bc452008-05-29 16:35:00 +08001115 iwl_write_prph(priv, IWL50_SCD_TXFACT, mask);
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +08001116}
1117
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001118
1119static inline u32 iwl5000_get_scd_ssn(struct iwl5000_tx_resp *tx_resp)
1120{
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001121 return le32_to_cpup((__le32 *)&tx_resp->status +
Tomas Winkler25a65722008-06-12 09:47:07 +08001122 tx_resp->frame_count) & MAX_SN;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001123}
1124
1125static int iwl5000_tx_status_reply_tx(struct iwl_priv *priv,
1126 struct iwl_ht_agg *agg,
1127 struct iwl5000_tx_resp *tx_resp,
Tomas Winkler25a65722008-06-12 09:47:07 +08001128 int txq_id, u16 start_idx)
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001129{
1130 u16 status;
1131 struct agg_tx_status *frame_status = &tx_resp->status;
1132 struct ieee80211_tx_info *info = NULL;
1133 struct ieee80211_hdr *hdr = NULL;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001134 u32 rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
Tomas Winkler25a65722008-06-12 09:47:07 +08001135 int i, sh, idx;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001136 u16 seq;
1137
1138 if (agg->wait_for_ba)
1139 IWL_DEBUG_TX_REPLY("got tx response w/o block-ack\n");
1140
1141 agg->frame_count = tx_resp->frame_count;
1142 agg->start_idx = start_idx;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001143 agg->rate_n_flags = rate_n_flags;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001144 agg->bitmap = 0;
1145
1146 /* # frames attempted by Tx command */
1147 if (agg->frame_count == 1) {
1148 /* Only one frame was attempted; no block-ack will arrive */
1149 status = le16_to_cpu(frame_status[0].status);
Tomas Winkler25a65722008-06-12 09:47:07 +08001150 idx = start_idx;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001151
1152 /* FIXME: code repetition */
1153 IWL_DEBUG_TX_REPLY("FrameCnt = %d, StartIdx=%d idx=%d\n",
1154 agg->frame_count, agg->start_idx, idx);
1155
1156 info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb[0]);
1157 info->status.retry_count = tx_resp->failure_frame;
1158 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
1159 info->flags |= iwl_is_tx_success(status)?
1160 IEEE80211_TX_STAT_ACK : 0;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001161 iwl_hwrate_to_tx_control(priv, rate_n_flags, info);
1162
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001163 /* FIXME: code repetition end */
1164
1165 IWL_DEBUG_TX_REPLY("1 Frame 0x%x failure :%d\n",
1166 status & 0xff, tx_resp->failure_frame);
Tomas Winklere7d326a2008-06-12 09:47:11 +08001167 IWL_DEBUG_TX_REPLY("Rate Info rate_n_flags=%x\n", rate_n_flags);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001168
1169 agg->wait_for_ba = 0;
1170 } else {
1171 /* Two or more frames were attempted; expect block-ack */
1172 u64 bitmap = 0;
1173 int start = agg->start_idx;
1174
1175 /* Construct bit-map of pending frames within Tx window */
1176 for (i = 0; i < agg->frame_count; i++) {
1177 u16 sc;
1178 status = le16_to_cpu(frame_status[i].status);
1179 seq = le16_to_cpu(frame_status[i].sequence);
1180 idx = SEQ_TO_INDEX(seq);
1181 txq_id = SEQ_TO_QUEUE(seq);
1182
1183 if (status & (AGG_TX_STATE_FEW_BYTES_MSK |
1184 AGG_TX_STATE_ABORT_MSK))
1185 continue;
1186
1187 IWL_DEBUG_TX_REPLY("FrameCnt = %d, txq_id=%d idx=%d\n",
1188 agg->frame_count, txq_id, idx);
1189
1190 hdr = iwl_tx_queue_get_hdr(priv, txq_id, idx);
1191
1192 sc = le16_to_cpu(hdr->seq_ctrl);
1193 if (idx != (SEQ_TO_SN(sc) & 0xff)) {
1194 IWL_ERROR("BUG_ON idx doesn't match seq control"
1195 " idx=%d, seq_idx=%d, seq=%d\n",
1196 idx, SEQ_TO_SN(sc),
1197 hdr->seq_ctrl);
1198 return -1;
1199 }
1200
1201 IWL_DEBUG_TX_REPLY("AGG Frame i=%d idx %d seq=%d\n",
1202 i, idx, SEQ_TO_SN(sc));
1203
1204 sh = idx - start;
1205 if (sh > 64) {
1206 sh = (start - idx) + 0xff;
1207 bitmap = bitmap << sh;
1208 sh = 0;
1209 start = idx;
1210 } else if (sh < -64)
1211 sh = 0xff - (start - idx);
1212 else if (sh < 0) {
1213 sh = start - idx;
1214 start = idx;
1215 bitmap = bitmap << sh;
1216 sh = 0;
1217 }
Emmanuel Grumbach4aa41f12008-07-18 13:53:09 +08001218 bitmap |= 1ULL << sh;
1219 IWL_DEBUG_TX_REPLY("start=%d bitmap=0x%llx\n",
1220 start, (unsigned long long)bitmap);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001221 }
1222
1223 agg->bitmap = bitmap;
1224 agg->start_idx = start;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001225 IWL_DEBUG_TX_REPLY("Frames %d start_idx=%d bitmap=0x%llx\n",
1226 agg->frame_count, agg->start_idx,
1227 (unsigned long long)agg->bitmap);
1228
1229 if (bitmap)
1230 agg->wait_for_ba = 1;
1231 }
1232 return 0;
1233}
1234
1235static void iwl5000_rx_reply_tx(struct iwl_priv *priv,
1236 struct iwl_rx_mem_buffer *rxb)
1237{
1238 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1239 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1240 int txq_id = SEQ_TO_QUEUE(sequence);
1241 int index = SEQ_TO_INDEX(sequence);
1242 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1243 struct ieee80211_tx_info *info;
1244 struct iwl5000_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
1245 u32 status = le16_to_cpu(tx_resp->status.status);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001246 int tid = MAX_TID_COUNT, sta_id = IWL_INVALID_STATION;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001247 struct ieee80211_hdr *hdr;
1248 u8 *qc = NULL;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001249
1250 if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) {
1251 IWL_ERROR("Read index for DMA queue txq_id (%d) index %d "
1252 "is out of range [0-%d] %d %d\n", txq_id,
1253 index, txq->q.n_bd, txq->q.write_ptr,
1254 txq->q.read_ptr);
1255 return;
1256 }
1257
1258 info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]);
1259 memset(&info->status, 0, sizeof(info->status));
1260
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001261 hdr = iwl_tx_queue_get_hdr(priv, txq_id, index);
Harvey Harrisonfd7c8a42008-06-11 14:21:56 -07001262 if (ieee80211_is_data_qos(hdr->frame_control)) {
1263 qc = ieee80211_get_qos_ctl(hdr);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001264 tid = qc[0] & 0xf;
1265 }
1266
1267 sta_id = iwl_get_ra_sta_id(priv, hdr);
1268 if (txq->sched_retry && unlikely(sta_id == IWL_INVALID_STATION)) {
1269 IWL_ERROR("Station not known\n");
1270 return;
1271 }
1272
1273 if (txq->sched_retry) {
1274 const u32 scd_ssn = iwl5000_get_scd_ssn(tx_resp);
1275 struct iwl_ht_agg *agg = NULL;
1276
1277 if (!qc)
1278 return;
1279
1280 agg = &priv->stations[sta_id].tid[tid].agg;
1281
Tomas Winkler25a65722008-06-12 09:47:07 +08001282 iwl5000_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001283
Ron Rindjunsky32354272008-07-01 10:44:51 +03001284 /* check if BAR is needed */
1285 if ((tx_resp->frame_count == 1) && !iwl_is_tx_success(status))
1286 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001287
1288 if (txq->q.read_ptr != (scd_ssn & 0xff)) {
1289 int freed, ampdu_q;
1290 index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd);
1291 IWL_DEBUG_TX_REPLY("Retry scheduler reclaim scd_ssn "
1292 "%d index %d\n", scd_ssn , index);
Tomas Winkler17b88922008-05-29 16:35:12 +08001293 freed = iwl_tx_queue_reclaim(priv, txq_id, index);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001294 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
1295
1296 if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
1297 txq_id >= 0 && priv->mac80211_registered &&
1298 agg->state != IWL_EMPTYING_HW_QUEUE_DELBA) {
1299 /* calculate mac80211 ampdu sw queue to wake */
Ron Rindjunsky7f3e4bb2008-06-12 09:46:55 +08001300 ampdu_q = txq_id - IWL50_FIRST_AMPDU_QUEUE +
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001301 priv->hw->queues;
1302 if (agg->state == IWL_AGG_OFF)
1303 ieee80211_wake_queue(priv->hw, txq_id);
1304 else
1305 ieee80211_wake_queue(priv->hw, ampdu_q);
1306 }
Tomas Winkler30e553e2008-05-29 16:35:16 +08001307 iwl_txq_check_empty(priv, sta_id, tid, txq_id);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001308 }
1309 } else {
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001310 info->status.retry_count = tx_resp->failure_frame;
1311 info->flags =
1312 iwl_is_tx_success(status) ? IEEE80211_TX_STAT_ACK : 0;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001313 iwl_hwrate_to_tx_control(priv,
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001314 le32_to_cpu(tx_resp->rate_n_flags),
1315 info);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001316
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001317 IWL_DEBUG_TX("Tx queue %d Status %s (0x%08x) rate_n_flags "
1318 "0x%x retries %d\n", txq_id,
1319 iwl_get_tx_fail_reason(status),
1320 status, le32_to_cpu(tx_resp->rate_n_flags),
1321 tx_resp->failure_frame);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001322
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001323 IWL_DEBUG_TX_REPLY("Tx queue reclaim %d\n", index);
1324 if (index != -1) {
1325 int freed = iwl_tx_queue_reclaim(priv, txq_id, index);
1326 if (tid != MAX_TID_COUNT)
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001327 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001328 if (iwl_queue_space(&txq->q) > txq->q.low_mark &&
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001329 (txq_id >= 0) && priv->mac80211_registered)
1330 ieee80211_wake_queue(priv->hw, txq_id);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001331 if (tid != MAX_TID_COUNT)
Tomas Winkler30e553e2008-05-29 16:35:16 +08001332 iwl_txq_check_empty(priv, sta_id, tid, txq_id);
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001333 }
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001334 }
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001335
1336 if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
1337 IWL_ERROR("TODO: Implement Tx ABORT REQUIRED!!!\n");
1338}
1339
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001340/* Currently 5000 is the supperset of everything */
1341static u16 iwl5000_get_hcmd_size(u8 cmd_id, u16 len)
1342{
1343 return len;
1344}
1345
Emmanuel Grumbach203566f2008-06-12 09:46:54 +08001346static void iwl5000_setup_deferred_work(struct iwl_priv *priv)
1347{
1348 /* in 5000 the tx power calibration is done in uCode */
1349 priv->disable_tx_power_cal = 1;
1350}
1351
Ron Rindjunskyb600e4e2008-05-15 13:54:11 +08001352static void iwl5000_rx_handler_setup(struct iwl_priv *priv)
1353{
Tomas Winkler7c616cb2008-05-29 16:35:05 +08001354 /* init calibration handlers */
1355 priv->rx_handlers[CALIBRATION_RES_NOTIFICATION] =
1356 iwl5000_rx_calib_result;
1357 priv->rx_handlers[CALIBRATION_COMPLETE_NOTIFICATION] =
1358 iwl5000_rx_calib_complete;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001359 priv->rx_handlers[REPLY_TX] = iwl5000_rx_reply_tx;
Ron Rindjunskyb600e4e2008-05-15 13:54:11 +08001360}
1361
Tomas Winkler7c616cb2008-05-29 16:35:05 +08001362
Ron Rindjunsky87283cc2008-05-29 16:34:47 +08001363static int iwl5000_hw_valid_rtc_data_addr(u32 addr)
1364{
1365 return (addr >= RTC_DATA_LOWER_BOUND) &&
1366 (addr < IWL50_RTC_DATA_UPPER_BOUND);
1367}
1368
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001369static int iwl5000_send_rxon_assoc(struct iwl_priv *priv)
1370{
1371 int ret = 0;
1372 struct iwl5000_rxon_assoc_cmd rxon_assoc;
1373 const struct iwl_rxon_cmd *rxon1 = &priv->staging_rxon;
1374 const struct iwl_rxon_cmd *rxon2 = &priv->active_rxon;
1375
1376 if ((rxon1->flags == rxon2->flags) &&
1377 (rxon1->filter_flags == rxon2->filter_flags) &&
1378 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1379 (rxon1->ofdm_ht_single_stream_basic_rates ==
1380 rxon2->ofdm_ht_single_stream_basic_rates) &&
1381 (rxon1->ofdm_ht_dual_stream_basic_rates ==
1382 rxon2->ofdm_ht_dual_stream_basic_rates) &&
1383 (rxon1->ofdm_ht_triple_stream_basic_rates ==
1384 rxon2->ofdm_ht_triple_stream_basic_rates) &&
1385 (rxon1->acquisition_data == rxon2->acquisition_data) &&
1386 (rxon1->rx_chain == rxon2->rx_chain) &&
1387 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
1388 IWL_DEBUG_INFO("Using current RXON_ASSOC. Not resending.\n");
1389 return 0;
1390 }
1391
1392 rxon_assoc.flags = priv->staging_rxon.flags;
1393 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1394 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1395 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1396 rxon_assoc.reserved1 = 0;
1397 rxon_assoc.reserved2 = 0;
1398 rxon_assoc.reserved3 = 0;
1399 rxon_assoc.ofdm_ht_single_stream_basic_rates =
1400 priv->staging_rxon.ofdm_ht_single_stream_basic_rates;
1401 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
1402 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates;
1403 rxon_assoc.rx_chain_select_flags = priv->staging_rxon.rx_chain;
1404 rxon_assoc.ofdm_ht_triple_stream_basic_rates =
1405 priv->staging_rxon.ofdm_ht_triple_stream_basic_rates;
1406 rxon_assoc.acquisition_data = priv->staging_rxon.acquisition_data;
1407
1408 ret = iwl_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
1409 sizeof(rxon_assoc), &rxon_assoc, NULL);
1410 if (ret)
1411 return ret;
1412
1413 return ret;
1414}
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001415static int iwl5000_send_tx_power(struct iwl_priv *priv)
1416{
1417 struct iwl5000_tx_power_dbm_cmd tx_power_cmd;
1418
1419 /* half dBm need to multiply */
1420 tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt);
Gregory Greenman853554a2008-06-30 17:23:01 +08001421 tx_power_cmd.flags = IWL50_TX_POWER_NO_CLOSED;
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001422 tx_power_cmd.srv_chan_lmt = IWL50_TX_POWER_AUTO;
1423 return iwl_send_cmd_pdu_async(priv, REPLY_TX_POWER_DBM_CMD,
1424 sizeof(tx_power_cmd), &tx_power_cmd,
1425 NULL);
1426}
1427
Zhu Yi52256402008-06-30 17:23:31 +08001428static void iwl5000_temperature(struct iwl_priv *priv)
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001429{
1430 /* store temperature from statistics (in Celsius) */
Zhu Yi52256402008-06-30 17:23:31 +08001431 priv->temperature = le32_to_cpu(priv->statistics.general.temperature);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001432}
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001433
Tomas Winklercaab8f12008-08-04 16:00:42 +08001434/* Calc max signal level (dBm) among 3 possible receivers */
1435static int iwl5000_calc_rssi(struct iwl_priv *priv,
1436 struct iwl_rx_phy_res *rx_resp)
1437{
1438 /* data from PHY/DSP regarding signal strength, etc.,
1439 * contents are always there, not configurable by host
1440 */
1441 struct iwl5000_non_cfg_phy *ncphy =
1442 (struct iwl5000_non_cfg_phy *)rx_resp->non_cfg_phy_buf;
1443 u32 val, rssi_a, rssi_b, rssi_c, max_rssi;
1444 u8 agc;
1445
1446 val = le32_to_cpu(ncphy->non_cfg_phy[IWL50_RX_RES_AGC_IDX]);
1447 agc = (val & IWL50_OFDM_AGC_MSK) >> IWL50_OFDM_AGC_BIT_POS;
1448
1449 /* Find max rssi among 3 possible receivers.
1450 * These values are measured by the digital signal processor (DSP).
1451 * They should stay fairly constant even as the signal strength varies,
1452 * if the radio's automatic gain control (AGC) is working right.
1453 * AGC value (see below) will provide the "interesting" info.
1454 */
1455 val = le32_to_cpu(ncphy->non_cfg_phy[IWL50_RX_RES_RSSI_AB_IDX]);
1456 rssi_a = (val & IWL50_OFDM_RSSI_A_MSK) >> IWL50_OFDM_RSSI_A_BIT_POS;
1457 rssi_b = (val & IWL50_OFDM_RSSI_B_MSK) >> IWL50_OFDM_RSSI_B_BIT_POS;
1458 val = le32_to_cpu(ncphy->non_cfg_phy[IWL50_RX_RES_RSSI_C_IDX]);
1459 rssi_c = (val & IWL50_OFDM_RSSI_C_MSK) >> IWL50_OFDM_RSSI_C_BIT_POS;
1460
1461 max_rssi = max_t(u32, rssi_a, rssi_b);
1462 max_rssi = max_t(u32, max_rssi, rssi_c);
1463
1464 IWL_DEBUG_STATS("Rssi In A %d B %d C %d Max %d AGC dB %d\n",
1465 rssi_a, rssi_b, rssi_c, max_rssi, agc);
1466
1467 /* dBm = max_rssi dB - agc dB - constant.
1468 * Higher AGC (higher radio gain) means lower signal. */
1469 return max_rssi - agc - IWL_RSSI_OFFSET;
1470}
1471
Tomas Winklerda8dec22008-04-24 11:55:24 -07001472static struct iwl_hcmd_ops iwl5000_hcmd = {
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001473 .rxon_assoc = iwl5000_send_rxon_assoc,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001474};
1475
1476static struct iwl_hcmd_utils_ops iwl5000_hcmd_utils = {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001477 .get_hcmd_size = iwl5000_get_hcmd_size,
Tomas Winkler2469bf22008-05-05 10:22:35 +08001478 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07001479 .gain_computation = iwl5000_gain_computation,
1480 .chain_noise_reset = iwl5000_chain_noise_reset,
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +08001481 .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
Tomas Winklercaab8f12008-08-04 16:00:42 +08001482 .calc_rssi = iwl5000_calc_rssi,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001483};
1484
1485static struct iwl_lib_ops iwl5000_lib = {
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -07001486 .set_hw_params = iwl5000_hw_set_hw_params,
Ron Rindjunskyd4100dd2008-04-24 11:55:33 -07001487 .alloc_shared_mem = iwl5000_alloc_shared_mem,
1488 .free_shared_mem = iwl5000_free_shared_mem,
Ron Rindjunskyd67f5482008-05-05 10:22:49 +08001489 .shared_mem_rx_idx = iwl5000_shared_mem_rx_idx,
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -07001490 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
Tomas Winkler972cf442008-05-29 16:35:13 +08001491 .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
Tomas Winklerda1bc452008-05-29 16:35:00 +08001492 .txq_set_sched = iwl5000_txq_set_sched,
Tomas Winklere26e47d2008-06-12 09:46:56 +08001493 .txq_agg_enable = iwl5000_txq_agg_enable,
1494 .txq_agg_disable = iwl5000_txq_agg_disable,
Ron Rindjunskyb600e4e2008-05-15 13:54:11 +08001495 .rx_handler_setup = iwl5000_rx_handler_setup,
Emmanuel Grumbach203566f2008-06-12 09:46:54 +08001496 .setup_deferred_work = iwl5000_setup_deferred_work,
Ron Rindjunsky87283cc2008-05-29 16:34:47 +08001497 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001498 .load_ucode = iwl5000_load_ucode,
Ron Rindjunsky99da1b42008-05-15 13:54:13 +08001499 .init_alive_start = iwl5000_init_alive_start,
1500 .alive_notify = iwl5000_alive_notify,
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001501 .send_tx_power = iwl5000_send_tx_power,
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001502 .temperature = iwl5000_temperature,
Mohamed Abbasca579612008-07-18 13:52:57 +08001503 .update_chain_flags = iwl4965_update_chain_flags,
Tomas Winkler30d59262008-04-24 11:55:25 -07001504 .apm_ops = {
1505 .init = iwl5000_apm_init,
Tomas Winkler7f066102008-05-29 16:34:57 +08001506 .reset = iwl5000_apm_reset,
Tomas Winklerf118a912008-05-29 16:34:58 +08001507 .stop = iwl5000_apm_stop,
Ron Rindjunsky5a835352008-05-05 10:22:29 +08001508 .config = iwl5000_nic_config,
Tomas Winkler88acbd32008-04-24 11:55:26 -07001509 .set_pwr_src = iwl4965_set_pwr_src,
Tomas Winkler30d59262008-04-24 11:55:25 -07001510 },
Tomas Winklerda8dec22008-04-24 11:55:24 -07001511 .eeprom_ops = {
Tomas Winkler25ae3982008-04-24 11:55:27 -07001512 .regulatory_bands = {
1513 EEPROM_5000_REG_BAND_1_CHANNELS,
1514 EEPROM_5000_REG_BAND_2_CHANNELS,
1515 EEPROM_5000_REG_BAND_3_CHANNELS,
1516 EEPROM_5000_REG_BAND_4_CHANNELS,
1517 EEPROM_5000_REG_BAND_5_CHANNELS,
1518 EEPROM_5000_REG_BAND_24_FAT_CHANNELS,
1519 EEPROM_5000_REG_BAND_52_FAT_CHANNELS
1520 },
Tomas Winklerda8dec22008-04-24 11:55:24 -07001521 .verify_signature = iwlcore_eeprom_verify_signature,
1522 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
1523 .release_semaphore = iwlcore_eeprom_release_semaphore,
Tomas Winklerf1f69412008-04-24 11:55:35 -07001524 .check_version = iwl5000_eeprom_check_version,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001525 .query_addr = iwl5000_eeprom_query_addr,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001526 },
1527};
1528
1529static struct iwl_ops iwl5000_ops = {
1530 .lib = &iwl5000_lib,
1531 .hcmd = &iwl5000_hcmd,
1532 .utils = &iwl5000_hcmd_utils,
1533};
1534
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001535static struct iwl_mod_params iwl50_mod_params = {
1536 .num_of_queues = IWL50_NUM_QUEUES,
Tomas Winkler9f17b312008-07-11 11:53:35 +08001537 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001538 .enable_qos = 1,
1539 .amsdu_size_8K = 1,
Ester Kummer3a1081e2008-05-06 11:05:14 +08001540 .restart_fw = 1,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001541 /* the rest are 0 by default */
1542};
1543
1544
1545struct iwl_cfg iwl5300_agn_cfg = {
1546 .name = "5300AGN",
1547 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
1548 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001549 .ops = &iwl5000_ops,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001550 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001551 .mod_params = &iwl50_mod_params,
1552};
1553
Esti Kummer47408632008-07-11 11:53:30 +08001554struct iwl_cfg iwl5100_bg_cfg = {
1555 .name = "5100BG",
1556 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
1557 .sku = IWL_SKU_G,
1558 .ops = &iwl5000_ops,
1559 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
1560 .mod_params = &iwl50_mod_params,
1561};
1562
1563struct iwl_cfg iwl5100_abg_cfg = {
1564 .name = "5100ABG",
1565 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
1566 .sku = IWL_SKU_A|IWL_SKU_G,
1567 .ops = &iwl5000_ops,
1568 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
1569 .mod_params = &iwl50_mod_params,
1570};
1571
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001572struct iwl_cfg iwl5100_agn_cfg = {
1573 .name = "5100AGN",
1574 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
1575 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001576 .ops = &iwl5000_ops,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001577 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001578 .mod_params = &iwl50_mod_params,
1579};
1580
1581struct iwl_cfg iwl5350_agn_cfg = {
1582 .name = "5350AGN",
1583 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
1584 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001585 .ops = &iwl5000_ops,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001586 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001587 .mod_params = &iwl50_mod_params,
1588};
1589
Tomas Winklerc9f79ed2008-09-11 11:45:21 +08001590MODULE_FIRMWARE("iwlwifi-5000" IWL5000_UCODE_API ".ucode");
1591
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001592module_param_named(disable50, iwl50_mod_params.disable, int, 0444);
1593MODULE_PARM_DESC(disable50,
1594 "manually disable the 50XX radio (default 0 [radio on])");
1595module_param_named(swcrypto50, iwl50_mod_params.sw_crypto, bool, 0444);
1596MODULE_PARM_DESC(swcrypto50,
1597 "using software crypto engine (default 0 [hardware])\n");
1598module_param_named(debug50, iwl50_mod_params.debug, int, 0444);
1599MODULE_PARM_DESC(debug50, "50XX debug output mask");
1600module_param_named(queues_num50, iwl50_mod_params.num_of_queues, int, 0444);
1601MODULE_PARM_DESC(queues_num50, "number of hw queues in 50xx series");
1602module_param_named(qos_enable50, iwl50_mod_params.enable_qos, int, 0444);
1603MODULE_PARM_DESC(qos_enable50, "enable all 50XX QoS functionality");
Ron Rindjunsky49779292008-06-30 17:23:21 +08001604module_param_named(11n_disable50, iwl50_mod_params.disable_11n, int, 0444);
1605MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality");
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001606module_param_named(amsdu_size_8K50, iwl50_mod_params.amsdu_size_8K, int, 0444);
1607MODULE_PARM_DESC(amsdu_size_8K50, "enable 8K amsdu size in 50XX series");
Ester Kummer3a1081e2008-05-06 11:05:14 +08001608module_param_named(fw_restart50, iwl50_mod_params.restart_fw, int, 0444);
1609MODULE_PARM_DESC(fw_restart50, "restart firmware in case of error");