blob: e61b67d0a18b87b7d976222ffb000709b15b0408 [file] [log] [blame]
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001/******************************************************************************
2 *
Reinette Chatre01f81622009-01-08 10:20:02 -08003 * Copyright(c) 2007 - 2009 Intel Corporation. All rights reserved.
Tomas Winkler5a6a2562008-04-24 11:55:23 -07004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * 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"
Jay Sternbergc0bac762009-02-02 16:21:14 -080046#include "iwl-6000-hw.h"
Tomas Winkler5a6a2562008-04-24 11:55:23 -070047
Reinette Chatrea0987a82008-12-02 12:14:06 -080048/* Highest firmware API version supported */
49#define IWL5000_UCODE_API_MAX 1
Jay Sternberg39e6d222009-02-27 16:21:19 -080050#define IWL5150_UCODE_API_MAX 2
Tomas Winkler5a6a2562008-04-24 11:55:23 -070051
Reinette Chatrea0987a82008-12-02 12:14:06 -080052/* Lowest firmware API version supported */
53#define IWL5000_UCODE_API_MIN 1
54#define IWL5150_UCODE_API_MIN 1
55
56#define IWL5000_FW_PRE "iwlwifi-5000-"
57#define _IWL5000_MODULE_FIRMWARE(api) IWL5000_FW_PRE #api ".ucode"
58#define IWL5000_MODULE_FIRMWARE(api) _IWL5000_MODULE_FIRMWARE(api)
59
60#define IWL5150_FW_PRE "iwlwifi-5150-"
61#define _IWL5150_MODULE_FIRMWARE(api) IWL5150_FW_PRE #api ".ucode"
62#define IWL5150_MODULE_FIRMWARE(api) _IWL5150_MODULE_FIRMWARE(api)
Jay Sternberg4e062f92008-10-14 12:32:41 -070063
Ron Rindjunsky99da1b42008-05-15 13:54:13 +080064static const u16 iwl5000_default_queue_to_tx_fifo[] = {
65 IWL_TX_FIFO_AC3,
66 IWL_TX_FIFO_AC2,
67 IWL_TX_FIFO_AC1,
68 IWL_TX_FIFO_AC0,
69 IWL50_CMD_FIFO_NUM,
70 IWL_TX_FIFO_HCCA_1,
71 IWL_TX_FIFO_HCCA_2
72};
73
Tomas Winkler46315e02008-05-29 16:34:59 +080074/* FIXME: same implementation as 4965 */
75static int iwl5000_apm_stop_master(struct iwl_priv *priv)
76{
Tomas Winkler46315e02008-05-29 16:34:59 +080077 unsigned long flags;
78
79 spin_lock_irqsave(&priv->lock, flags);
80
81 /* set stop master bit */
82 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_STOP_MASTER);
83
Wu Fengguangfebf3372008-12-17 16:52:31 +080084 iwl_poll_direct_bit(priv, CSR_RESET,
Tomas Winkler46315e02008-05-29 16:34:59 +080085 CSR_RESET_REG_FLAG_MASTER_DISABLED, 100);
Tomas Winkler46315e02008-05-29 16:34:59 +080086
Tomas Winkler46315e02008-05-29 16:34:59 +080087 spin_unlock_irqrestore(&priv->lock, flags);
Tomas Winklere1623442009-01-27 14:27:56 -080088 IWL_DEBUG_INFO(priv, "stop master\n");
Tomas Winkler46315e02008-05-29 16:34:59 +080089
Wu Fengguangfebf3372008-12-17 16:52:31 +080090 return 0;
Tomas Winkler46315e02008-05-29 16:34:59 +080091}
92
93
Tomas Winkler30d59262008-04-24 11:55:25 -070094static int iwl5000_apm_init(struct iwl_priv *priv)
95{
96 int ret = 0;
97
98 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
99 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
100
Tomas Winkler8f061892008-05-29 16:34:56 +0800101 /* disable L0s without affecting L1 :don't wait for ICH L0s bug W/A) */
102 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
103 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
104
Tomas Winklera96a27f2008-10-23 23:48:56 -0700105 /* Set FH wait threshold to maximum (HW error during stress W/A) */
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800106 iwl_set_bit(priv, CSR_DBG_HPET_MEM_REG, CSR_DBG_HPET_MEM_REG_VAL);
107
108 /* enable HAP INTA to move device L1a -> L0s */
109 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
110 CSR_HW_IF_CONFIG_REG_BIT_HAP_WAKE_L1A);
111
Jay Sternberg050681b2009-01-29 11:09:13 -0800112 if (priv->cfg->need_pll_cfg)
113 iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
Tomas Winkler30d59262008-04-24 11:55:25 -0700114
115 /* set "initialization complete" bit to move adapter
116 * D0U* --> D0A* state */
117 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
118
119 /* wait for clock stabilization */
Zhu, Yi73d7b5a2008-12-05 07:58:40 -0800120 ret = iwl_poll_direct_bit(priv, CSR_GP_CNTRL,
121 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Tomas Winkler30d59262008-04-24 11:55:25 -0700122 if (ret < 0) {
Tomas Winklere1623442009-01-27 14:27:56 -0800123 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Tomas Winkler30d59262008-04-24 11:55:25 -0700124 return ret;
125 }
126
127 ret = iwl_grab_nic_access(priv);
128 if (ret)
129 return ret;
130
131 /* enable DMA */
Tomas Winkler8f061892008-05-29 16:34:56 +0800132 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
Tomas Winkler30d59262008-04-24 11:55:25 -0700133
134 udelay(20);
135
Tomas Winkler8f061892008-05-29 16:34:56 +0800136 /* disable L1-Active */
Tomas Winkler30d59262008-04-24 11:55:25 -0700137 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
Tomas Winkler8f061892008-05-29 16:34:56 +0800138 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
Tomas Winkler30d59262008-04-24 11:55:25 -0700139
140 iwl_release_nic_access(priv);
141
142 return ret;
143}
144
Tomas Winklera96a27f2008-10-23 23:48:56 -0700145/* FIXME: this is identical to 4965 */
Tomas Winklerf118a912008-05-29 16:34:58 +0800146static void iwl5000_apm_stop(struct iwl_priv *priv)
147{
148 unsigned long flags;
149
Tomas Winkler46315e02008-05-29 16:34:59 +0800150 iwl5000_apm_stop_master(priv);
Tomas Winklerf118a912008-05-29 16:34:58 +0800151
152 spin_lock_irqsave(&priv->lock, flags);
153
154 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
155
156 udelay(10);
157
Mohamed Abbas1d3e6c62008-08-28 17:25:05 +0800158 /* clear "init complete" move adapter D0A* --> D0U state */
159 iwl_clear_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
Tomas Winklerf118a912008-05-29 16:34:58 +0800160
161 spin_unlock_irqrestore(&priv->lock, flags);
162}
163
164
Tomas Winkler7f066102008-05-29 16:34:57 +0800165static int iwl5000_apm_reset(struct iwl_priv *priv)
166{
167 int ret = 0;
168 unsigned long flags;
169
Tomas Winkler46315e02008-05-29 16:34:59 +0800170 iwl5000_apm_stop_master(priv);
Tomas Winkler7f066102008-05-29 16:34:57 +0800171
172 spin_lock_irqsave(&priv->lock, flags);
173
174 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
175
176 udelay(10);
177
178
179 /* FIXME: put here L1A -L0S w/a */
180
Jay Sternberg050681b2009-01-29 11:09:13 -0800181 if (priv->cfg->need_pll_cfg)
182 iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
Tomas Winkler7f066102008-05-29 16:34:57 +0800183
184 /* set "initialization complete" bit to move adapter
185 * D0U* --> D0A* state */
186 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
187
188 /* wait for clock stabilization */
Zhu, Yi73d7b5a2008-12-05 07:58:40 -0800189 ret = iwl_poll_direct_bit(priv, CSR_GP_CNTRL,
190 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
Tomas Winkler7f066102008-05-29 16:34:57 +0800191 if (ret < 0) {
Tomas Winklere1623442009-01-27 14:27:56 -0800192 IWL_DEBUG_INFO(priv, "Failed to init the card\n");
Tomas Winkler7f066102008-05-29 16:34:57 +0800193 goto out;
194 }
195
196 ret = iwl_grab_nic_access(priv);
197 if (ret)
198 goto out;
199
200 /* enable DMA */
201 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
202
203 udelay(20);
204
205 /* disable L1-Active */
206 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
207 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
208
209 iwl_release_nic_access(priv);
210
211out:
212 spin_unlock_irqrestore(&priv->lock, flags);
213
214 return ret;
215}
216
217
Ron Rindjunsky5a835352008-05-05 10:22:29 +0800218static void iwl5000_nic_config(struct iwl_priv *priv)
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700219{
220 unsigned long flags;
221 u16 radio_cfg;
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800222 u16 lctl;
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700223
224 spin_lock_irqsave(&priv->lock, flags);
225
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800226 lctl = iwl_pcie_link_ctl(priv);
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700227
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800228 /* HW bug W/A */
229 /* L1-ASPM is enabled by BIOS */
230 if ((lctl & PCI_CFG_LINK_CTRL_VAL_L1_EN) == PCI_CFG_LINK_CTRL_VAL_L1_EN)
231 /* L1-APSM enabled: disable L0S */
Tomas Winkler8f061892008-05-29 16:34:56 +0800232 iwl_set_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
233 else
Tomas Winkler3fdb68d2009-02-10 15:19:02 -0800234 /* L1-ASPM disabled: enable L0S */
Tomas Winkler8f061892008-05-29 16:34:56 +0800235 iwl_clear_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700236
237 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
238
239 /* write radio config values to register */
240 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) < EEPROM_5000_RF_CFG_TYPE_MAX)
241 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
242 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
243 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
244 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
245
246 /* set CSR_HW_CONFIG_REG for uCode use */
247 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
248 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
249 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
250
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800251 /* W/A : NIC is stuck in a reset state after Early PCIe power off
252 * (PCIe power is lost before PERST# is asserted),
253 * causing ME FW to lose ownership and not being able to obtain it back.
254 */
Tomas Winkler2d3db672008-08-04 16:00:47 +0800255 iwl_grab_nic_access(priv);
256 iwl_set_bits_mask_prph(priv, APMG_PS_CTRL_REG,
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800257 APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS,
258 ~APMG_PS_CTRL_EARLY_PWR_OFF_RESET_DIS);
Tomas Winkler2d3db672008-08-04 16:00:47 +0800259 iwl_release_nic_access(priv);
Tomas Winkler4c43e0d2008-08-04 16:00:39 +0800260
Tomas Winklere86fe9f2008-04-24 11:55:36 -0700261 spin_unlock_irqrestore(&priv->lock, flags);
262}
263
264
265
Tomas Winkler25ae3982008-04-24 11:55:27 -0700266/*
267 * EEPROM
268 */
269static u32 eeprom_indirect_address(const struct iwl_priv *priv, u32 address)
270{
271 u16 offset = 0;
272
273 if ((address & INDIRECT_ADDRESS) == 0)
274 return address;
275
276 switch (address & INDIRECT_TYPE_MSK) {
277 case INDIRECT_HOST:
278 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_HOST);
279 break;
280 case INDIRECT_GENERAL:
281 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_GENERAL);
282 break;
283 case INDIRECT_REGULATORY:
284 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_REGULATORY);
285 break;
286 case INDIRECT_CALIBRATION:
287 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_CALIBRATION);
288 break;
289 case INDIRECT_PROCESS_ADJST:
290 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_PROCESS_ADJST);
291 break;
292 case INDIRECT_OTHERS:
293 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_OTHERS);
294 break;
295 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +0800296 IWL_ERR(priv, "illegal indirect type: 0x%X\n",
Tomas Winkler25ae3982008-04-24 11:55:27 -0700297 address & INDIRECT_TYPE_MSK);
298 break;
299 }
300
301 /* translate the offset from words to byte */
302 return (address & ADDRESS_MSK) + (offset << 1);
303}
304
Tomas Winkler0ef2ca62008-10-23 23:48:51 -0700305static u16 iwl5000_eeprom_calib_version(struct iwl_priv *priv)
Tomas Winklerf1f69412008-04-24 11:55:35 -0700306{
Tomas Winklerf1f69412008-04-24 11:55:35 -0700307 struct iwl_eeprom_calib_hdr {
308 u8 version;
309 u8 pa_type;
310 u16 voltage;
311 } *hdr;
312
Tomas Winklerf1f69412008-04-24 11:55:35 -0700313 hdr = (struct iwl_eeprom_calib_hdr *)iwl_eeprom_query_addr(priv,
314 EEPROM_5000_CALIB_ALL);
Tomas Winkler0ef2ca62008-10-23 23:48:51 -0700315 return hdr->version;
Tomas Winklerf1f69412008-04-24 11:55:35 -0700316
317}
318
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700319static void iwl5000_gain_computation(struct iwl_priv *priv,
320 u32 average_noise[NUM_RX_CHAINS],
321 u16 min_average_noise_antenna_i,
322 u32 min_average_noise)
323{
324 int i;
325 s32 delta_g;
326 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
327
328 /* Find Gain Code for the antennas B and C */
329 for (i = 1; i < NUM_RX_CHAINS; i++) {
330 if ((data->disconn_array[i])) {
331 data->delta_gain_code[i] = 0;
332 continue;
333 }
334 delta_g = (1000 * ((s32)average_noise[0] -
335 (s32)average_noise[i])) / 1500;
336 /* bound gain by 2 bits value max, 3rd bit is sign */
337 data->delta_gain_code[i] =
338 min(abs(delta_g), CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
339
340 if (delta_g < 0)
341 /* set negative sign */
342 data->delta_gain_code[i] |= (1 << 2);
343 }
344
Tomas Winklere1623442009-01-27 14:27:56 -0800345 IWL_DEBUG_CALIB(priv, "Delta gains: ANT_B = %d ANT_C = %d\n",
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700346 data->delta_gain_code[1], data->delta_gain_code[2]);
347
348 if (!data->radio_write) {
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700349 struct iwl_calib_chain_noise_gain_cmd cmd;
Tomas Winkler0d950d82008-11-25 13:36:01 -0800350
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700351 memset(&cmd, 0, sizeof(cmd));
352
Tomas Winkler0d950d82008-11-25 13:36:01 -0800353 cmd.hdr.op_code = IWL_PHY_CALIBRATE_CHAIN_NOISE_GAIN_CMD;
354 cmd.hdr.first_group = 0;
355 cmd.hdr.groups_num = 1;
356 cmd.hdr.data_valid = 1;
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700357 cmd.delta_gain_1 = data->delta_gain_code[1];
358 cmd.delta_gain_2 = data->delta_gain_code[2];
359 iwl_send_cmd_pdu_async(priv, REPLY_PHY_CALIBRATION_CMD,
360 sizeof(cmd), &cmd, NULL);
361
362 data->radio_write = 1;
363 data->state = IWL_CHAIN_NOISE_CALIBRATED;
364 }
365
366 data->chain_noise_a = 0;
367 data->chain_noise_b = 0;
368 data->chain_noise_c = 0;
369 data->chain_signal_a = 0;
370 data->chain_signal_b = 0;
371 data->chain_signal_c = 0;
372 data->beacon_count = 0;
373}
374
375static void iwl5000_chain_noise_reset(struct iwl_priv *priv)
376{
377 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
Tomas Winkler0d950d82008-11-25 13:36:01 -0800378 int ret;
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700379
380 if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) {
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700381 struct iwl_calib_chain_noise_reset_cmd cmd;
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700382 memset(&cmd, 0, sizeof(cmd));
Tomas Winkler0d950d82008-11-25 13:36:01 -0800383
384 cmd.hdr.op_code = IWL_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD;
385 cmd.hdr.first_group = 0;
386 cmd.hdr.groups_num = 1;
387 cmd.hdr.data_valid = 1;
388 ret = iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
389 sizeof(cmd), &cmd);
390 if (ret)
Winkler, Tomas15b16872008-12-19 10:37:33 +0800391 IWL_ERR(priv,
392 "Could not send REPLY_PHY_CALIBRATION_CMD\n");
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700393 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
Tomas Winklere1623442009-01-27 14:27:56 -0800394 IWL_DEBUG_CALIB(priv, "Run chain_noise_calibrate\n");
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700395 }
396}
397
Jay Sternberge8c00dc2009-01-29 11:09:15 -0800398void iwl5000_rts_tx_cmd_flag(struct ieee80211_tx_info *info,
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800399 __le32 *tx_flags)
400{
Johannes Berge6a98542008-10-21 12:40:02 +0200401 if ((info->control.rates[0].flags & IEEE80211_TX_RC_USE_RTS_CTS) ||
402 (info->control.rates[0].flags & IEEE80211_TX_RC_USE_CTS_PROTECT))
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +0800403 *tx_flags |= TX_CMD_FLG_RTS_CTS_MSK;
404 else
405 *tx_flags &= ~TX_CMD_FLG_RTS_CTS_MSK;
406}
407
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700408static struct iwl_sensitivity_ranges iwl5000_sensitivity = {
409 .min_nrg_cck = 95,
410 .max_nrg_cck = 0,
411 .auto_corr_min_ofdm = 90,
412 .auto_corr_min_ofdm_mrc = 170,
413 .auto_corr_min_ofdm_x1 = 120,
414 .auto_corr_min_ofdm_mrc_x1 = 240,
415
416 .auto_corr_max_ofdm = 120,
417 .auto_corr_max_ofdm_mrc = 210,
418 .auto_corr_max_ofdm_x1 = 155,
419 .auto_corr_max_ofdm_mrc_x1 = 290,
420
421 .auto_corr_min_cck = 125,
422 .auto_corr_max_cck = 200,
423 .auto_corr_min_cck_mrc = 170,
424 .auto_corr_max_cck_mrc = 400,
425 .nrg_th_cck = 95,
426 .nrg_th_ofdm = 95,
427};
428
Tomas Winkler25ae3982008-04-24 11:55:27 -0700429static const u8 *iwl5000_eeprom_query_addr(const struct iwl_priv *priv,
430 size_t offset)
431{
432 u32 address = eeprom_indirect_address(priv, offset);
433 BUG_ON(address >= priv->cfg->eeprom_size);
434 return &priv->eeprom[address];
435}
436
Wey-Yi Guy62161ae2009-05-21 13:44:23 -0700437static void iwl5150_set_ct_threshold(struct iwl_priv *priv)
Tomas Winkler339afc82008-12-01 16:32:20 -0800438{
Wey-Yi Guy62161ae2009-05-21 13:44:23 -0700439 const s32 volt2temp_coef = IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF;
440 s32 threshold = (s32)CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD) -
441 iwl_temp_calib_to_offset(priv);
442
443 priv->hw_params.ct_kill_threshold = threshold * volt2temp_coef;
444}
445
446static void iwl5000_set_ct_threshold(struct iwl_priv *priv)
447{
448 /* want Celsius */
449 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
Tomas Winkler339afc82008-12-01 16:32:20 -0800450}
451
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800452/*
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800453 * Calibration
454 */
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800455static int iwl5000_set_Xtal_calib(struct iwl_priv *priv)
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800456{
Tomas Winkler0d950d82008-11-25 13:36:01 -0800457 struct iwl_calib_xtal_freq_cmd cmd;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800458 u16 *xtal_calib = (u16 *)iwl_eeprom_query_addr(priv, EEPROM_5000_XTAL);
459
Tomas Winkler0d950d82008-11-25 13:36:01 -0800460 cmd.hdr.op_code = IWL_PHY_CALIBRATE_CRYSTAL_FRQ_CMD;
461 cmd.hdr.first_group = 0;
462 cmd.hdr.groups_num = 1;
463 cmd.hdr.data_valid = 1;
464 cmd.cap_pin1 = (u8)xtal_calib[0];
465 cmd.cap_pin2 = (u8)xtal_calib[1];
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700466 return iwl_calib_set(&priv->calib_results[IWL_CALIB_XTAL],
Tomas Winkler0d950d82008-11-25 13:36:01 -0800467 (u8 *)&cmd, sizeof(cmd));
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800468}
469
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800470static int iwl5000_send_calib_cfg(struct iwl_priv *priv)
471{
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700472 struct iwl_calib_cfg_cmd calib_cfg_cmd;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800473 struct iwl_host_cmd cmd = {
474 .id = CALIBRATION_CFG_CMD,
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700475 .len = sizeof(struct iwl_calib_cfg_cmd),
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800476 .data = &calib_cfg_cmd,
477 };
478
479 memset(&calib_cfg_cmd, 0, sizeof(calib_cfg_cmd));
480 calib_cfg_cmd.ucd_calib_cfg.once.is_enable = IWL_CALIB_INIT_CFG_ALL;
481 calib_cfg_cmd.ucd_calib_cfg.once.start = IWL_CALIB_INIT_CFG_ALL;
482 calib_cfg_cmd.ucd_calib_cfg.once.send_res = IWL_CALIB_INIT_CFG_ALL;
483 calib_cfg_cmd.ucd_calib_cfg.flags = IWL_CALIB_INIT_CFG_ALL;
484
485 return iwl_send_cmd(priv, &cmd);
486}
487
488static void iwl5000_rx_calib_result(struct iwl_priv *priv,
489 struct iwl_rx_mem_buffer *rxb)
490{
491 struct iwl_rx_packet *pkt = (void *)rxb->skb->data;
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700492 struct iwl_calib_hdr *hdr = (struct iwl_calib_hdr *)pkt->u.raw;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800493 int len = le32_to_cpu(pkt->len) & FH_RSCSR_FRAME_SIZE_MSK;
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800494 int index;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800495
496 /* reduce the size of the length field itself */
497 len -= 4;
498
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800499 /* Define the order in which the results will be sent to the runtime
500 * uCode. iwl_send_calib_results sends them in a row according to their
501 * index. We sort them here */
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800502 switch (hdr->op_code) {
Tomas Winkler819500c2008-12-01 16:32:19 -0800503 case IWL_PHY_CALIBRATE_DC_CMD:
504 index = IWL_CALIB_DC;
505 break;
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700506 case IWL_PHY_CALIBRATE_LO_CMD:
507 index = IWL_CALIB_LO;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800508 break;
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700509 case IWL_PHY_CALIBRATE_TX_IQ_CMD:
510 index = IWL_CALIB_TX_IQ;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800511 break;
Tomas Winklerf69f42a2008-10-23 23:48:52 -0700512 case IWL_PHY_CALIBRATE_TX_IQ_PERD_CMD:
513 index = IWL_CALIB_TX_IQ_PERD;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800514 break;
Tomas Winkler201706a2008-11-19 15:32:24 -0800515 case IWL_PHY_CALIBRATE_BASE_BAND_CMD:
516 index = IWL_CALIB_BASE_BAND;
517 break;
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800518 default:
Winkler, Tomas15b16872008-12-19 10:37:33 +0800519 IWL_ERR(priv, "Unknown calibration notification %d\n",
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800520 hdr->op_code);
521 return;
522 }
Tomas Winkler6e21f2c2008-09-03 11:26:37 +0800523 iwl_calib_set(&priv->calib_results[index], pkt->u.raw, len);
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800524}
525
526static void iwl5000_rx_calib_complete(struct iwl_priv *priv,
527 struct iwl_rx_mem_buffer *rxb)
528{
Tomas Winklere1623442009-01-27 14:27:56 -0800529 IWL_DEBUG_INFO(priv, "Init. calibration is completed, restarting fw.\n");
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800530 queue_work(priv->workqueue, &priv->restart);
531}
532
533/*
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800534 * ucode
535 */
536static int iwl5000_load_section(struct iwl_priv *priv,
537 struct fw_desc *image,
538 u32 dst_addr)
539{
540 int ret = 0;
541 unsigned long flags;
542
543 dma_addr_t phy_addr = image->p_addr;
544 u32 byte_cnt = image->len;
545
546 spin_lock_irqsave(&priv->lock, flags);
547 ret = iwl_grab_nic_access(priv);
548 if (ret) {
549 spin_unlock_irqrestore(&priv->lock, flags);
550 return ret;
551 }
552
553 iwl_write_direct32(priv,
554 FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
555 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE);
556
557 iwl_write_direct32(priv,
558 FH_SRVC_CHNL_SRAM_ADDR_REG(FH_SRVC_CHNL), dst_addr);
559
560 iwl_write_direct32(priv,
561 FH_TFDIB_CTRL0_REG(FH_SRVC_CHNL),
562 phy_addr & FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK);
563
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800564 iwl_write_direct32(priv,
Tomas Winklerf0b9f5c2008-08-28 17:25:10 +0800565 FH_TFDIB_CTRL1_REG(FH_SRVC_CHNL),
Tomas Winkler499b1882008-10-14 12:32:48 -0700566 (iwl_get_dma_hi_addr(phy_addr)
Tomas Winklerf0b9f5c2008-08-28 17:25:10 +0800567 << FH_MEM_TFDIB_REG1_ADDR_BITSHIFT) | byte_cnt);
568
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800569 iwl_write_direct32(priv,
570 FH_TCSR_CHNL_TX_BUF_STS_REG(FH_SRVC_CHNL),
571 1 << FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM |
572 1 << FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX |
573 FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID);
574
575 iwl_write_direct32(priv,
576 FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
577 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
Winkler, Tomas9c80c502008-10-29 14:05:43 -0700578 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE |
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800579 FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD);
580
581 iwl_release_nic_access(priv);
582 spin_unlock_irqrestore(&priv->lock, flags);
583 return 0;
584}
585
586static int iwl5000_load_given_ucode(struct iwl_priv *priv,
587 struct fw_desc *inst_image,
588 struct fw_desc *data_image)
589{
590 int ret = 0;
591
Samuel Ortiz250bdd22008-12-19 10:37:11 +0800592 ret = iwl5000_load_section(priv, inst_image,
593 IWL50_RTC_INST_LOWER_BOUND);
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800594 if (ret)
595 return ret;
596
Tomas Winklere1623442009-01-27 14:27:56 -0800597 IWL_DEBUG_INFO(priv, "INST uCode section being loaded...\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800598 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
Winkler, Tomas9c80c502008-10-29 14:05:43 -0700599 priv->ucode_write_complete, 5 * HZ);
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800600 if (ret == -ERESTARTSYS) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800601 IWL_ERR(priv, "Could not load the INST uCode section due "
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800602 "to interrupt\n");
603 return ret;
604 }
605 if (!ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800606 IWL_ERR(priv, "Could not load the INST uCode section\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800607 return -ETIMEDOUT;
608 }
609
610 priv->ucode_write_complete = 0;
611
612 ret = iwl5000_load_section(
Samuel Ortiz250bdd22008-12-19 10:37:11 +0800613 priv, data_image, IWL50_RTC_DATA_LOWER_BOUND);
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800614 if (ret)
615 return ret;
616
Tomas Winklere1623442009-01-27 14:27:56 -0800617 IWL_DEBUG_INFO(priv, "DATA uCode section being loaded...\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800618
619 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
620 priv->ucode_write_complete, 5 * HZ);
621 if (ret == -ERESTARTSYS) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800622 IWL_ERR(priv, "Could not load the INST uCode section due "
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800623 "to interrupt\n");
624 return ret;
625 } else if (!ret) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800626 IWL_ERR(priv, "Could not load the DATA uCode section\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800627 return -ETIMEDOUT;
628 } else
629 ret = 0;
630
631 priv->ucode_write_complete = 0;
632
633 return ret;
634}
635
636static int iwl5000_load_ucode(struct iwl_priv *priv)
637{
638 int ret = 0;
639
640 /* check whether init ucode should be loaded, or rather runtime ucode */
641 if (priv->ucode_init.len && (priv->ucode_type == UCODE_NONE)) {
Tomas Winklere1623442009-01-27 14:27:56 -0800642 IWL_DEBUG_INFO(priv, "Init ucode found. Loading init ucode...\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800643 ret = iwl5000_load_given_ucode(priv,
644 &priv->ucode_init, &priv->ucode_init_data);
645 if (!ret) {
Tomas Winklere1623442009-01-27 14:27:56 -0800646 IWL_DEBUG_INFO(priv, "Init ucode load complete.\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800647 priv->ucode_type = UCODE_INIT;
648 }
649 } else {
Tomas Winklere1623442009-01-27 14:27:56 -0800650 IWL_DEBUG_INFO(priv, "Init ucode not found, or already loaded. "
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800651 "Loading runtime ucode...\n");
652 ret = iwl5000_load_given_ucode(priv,
653 &priv->ucode_code, &priv->ucode_data);
654 if (!ret) {
Tomas Winklere1623442009-01-27 14:27:56 -0800655 IWL_DEBUG_INFO(priv, "Runtime ucode load complete.\n");
Ron Rindjunskydbb983b2008-05-15 13:54:12 +0800656 priv->ucode_type = UCODE_RT;
657 }
658 }
659
660 return ret;
661}
662
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800663static void iwl5000_init_alive_start(struct iwl_priv *priv)
664{
665 int ret = 0;
666
667 /* Check alive response for "valid" sign from uCode */
668 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
669 /* We had an error bringing up the hardware, so take it
670 * all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -0800671 IWL_DEBUG_INFO(priv, "Initialize Alive failed.\n");
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800672 goto restart;
673 }
674
675 /* initialize uCode was loaded... verify inst image.
676 * This is a paranoid check, because we would not have gotten the
677 * "initialize" alive if code weren't properly loaded. */
678 if (iwl_verify_ucode(priv)) {
679 /* Runtime instruction load was bad;
680 * take it all the way back down so we can try again */
Tomas Winklere1623442009-01-27 14:27:56 -0800681 IWL_DEBUG_INFO(priv, "Bad \"initialize\" uCode load.\n");
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800682 goto restart;
683 }
684
Abhijeet Kolekare11bc022009-04-08 11:26:41 -0700685 priv->cfg->ops->smgmt->clear_station_table(priv);
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800686 ret = priv->cfg->ops->lib->alive_notify(priv);
687 if (ret) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +0800688 IWL_WARN(priv,
689 "Could not complete ALIVE transition: %d\n", ret);
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800690 goto restart;
691 }
692
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800693 iwl5000_send_calib_cfg(priv);
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800694 return;
695
696restart:
697 /* real restart (first load init_ucode) */
698 queue_work(priv->workqueue, &priv->restart);
699}
700
701static void iwl5000_set_wr_ptrs(struct iwl_priv *priv,
702 int txq_id, u32 index)
703{
704 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
705 (index & 0xff) | (txq_id << 8));
706 iwl_write_prph(priv, IWL50_SCD_QUEUE_RDPTR(txq_id), index);
707}
708
709static void iwl5000_tx_queue_set_status(struct iwl_priv *priv,
710 struct iwl_tx_queue *txq,
711 int tx_fifo_id, int scd_retry)
712{
713 int txq_id = txq->q.id;
Tomas Winkler3fd07a12008-10-23 23:48:49 -0700714 int active = test_bit(txq_id, &priv->txq_ctx_active_msk) ? 1 : 0;
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800715
716 iwl_write_prph(priv, IWL50_SCD_QUEUE_STATUS_BITS(txq_id),
717 (active << IWL50_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
718 (tx_fifo_id << IWL50_SCD_QUEUE_STTS_REG_POS_TXF) |
719 (1 << IWL50_SCD_QUEUE_STTS_REG_POS_WSL) |
720 IWL50_SCD_QUEUE_STTS_REG_MSK);
721
722 txq->sched_retry = scd_retry;
723
Tomas Winklere1623442009-01-27 14:27:56 -0800724 IWL_DEBUG_INFO(priv, "%s %s Queue %d on AC %d\n",
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800725 active ? "Activate" : "Deactivate",
726 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
727}
728
Ron Rindjunsky9636e582008-05-15 13:54:14 +0800729static int iwl5000_send_wimax_coex(struct iwl_priv *priv)
730{
731 struct iwl_wimax_coex_cmd coex_cmd;
732
733 memset(&coex_cmd, 0, sizeof(coex_cmd));
734
735 return iwl_send_cmd_pdu(priv, COEX_PRIORITY_TABLE_CMD,
736 sizeof(coex_cmd), &coex_cmd);
737}
738
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800739static int iwl5000_alive_notify(struct iwl_priv *priv)
740{
741 u32 a;
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800742 unsigned long flags;
743 int ret;
Winkler, Tomas31a73fe2008-11-19 15:32:26 -0800744 int i, chan;
Winkler, Tomas40fc95d2008-11-19 15:32:27 -0800745 u32 reg_val;
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800746
747 spin_lock_irqsave(&priv->lock, flags);
748
749 ret = iwl_grab_nic_access(priv);
750 if (ret) {
751 spin_unlock_irqrestore(&priv->lock, flags);
752 return ret;
753 }
754
755 priv->scd_base_addr = iwl_read_prph(priv, IWL50_SCD_SRAM_BASE_ADDR);
756 a = priv->scd_base_addr + IWL50_SCD_CONTEXT_DATA_OFFSET;
757 for (; a < priv->scd_base_addr + IWL50_SCD_TX_STTS_BITMAP_OFFSET;
758 a += 4)
759 iwl_write_targ_mem(priv, a, 0);
760 for (; a < priv->scd_base_addr + IWL50_SCD_TRANSLATE_TBL_OFFSET;
761 a += 4)
762 iwl_write_targ_mem(priv, a, 0);
763 for (; a < sizeof(u16) * priv->hw_params.max_txq_num; a += 4)
764 iwl_write_targ_mem(priv, a, 0);
765
766 iwl_write_prph(priv, IWL50_SCD_DRAM_BASE_ADDR,
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800767 priv->scd_bc_tbls.dma >> 10);
Winkler, Tomas31a73fe2008-11-19 15:32:26 -0800768
769 /* Enable DMA channel */
770 for (chan = 0; chan < FH50_TCSR_CHNL_NUM ; chan++)
771 iwl_write_direct32(priv, FH_TCSR_CHNL_TX_CONFIG_REG(chan),
772 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
773 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_ENABLE);
774
Winkler, Tomas40fc95d2008-11-19 15:32:27 -0800775 /* Update FH chicken bits */
776 reg_val = iwl_read_direct32(priv, FH_TX_CHICKEN_BITS_REG);
777 iwl_write_direct32(priv, FH_TX_CHICKEN_BITS_REG,
778 reg_val | FH_TX_CHICKEN_BITS_SCD_AUTO_RETRY_EN);
779
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800780 iwl_write_prph(priv, IWL50_SCD_QUEUECHAIN_SEL,
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800781 IWL50_SCD_QUEUECHAIN_SEL_ALL(priv->hw_params.max_txq_num));
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800782 iwl_write_prph(priv, IWL50_SCD_AGGR_SEL, 0);
783
784 /* initiate the queues */
785 for (i = 0; i < priv->hw_params.max_txq_num; i++) {
786 iwl_write_prph(priv, IWL50_SCD_QUEUE_RDPTR(i), 0);
787 iwl_write_direct32(priv, HBUS_TARG_WRPTR, 0 | (i << 8));
788 iwl_write_targ_mem(priv, priv->scd_base_addr +
789 IWL50_SCD_CONTEXT_QUEUE_OFFSET(i), 0);
790 iwl_write_targ_mem(priv, priv->scd_base_addr +
791 IWL50_SCD_CONTEXT_QUEUE_OFFSET(i) +
792 sizeof(u32),
793 ((SCD_WIN_SIZE <<
794 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
795 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
796 ((SCD_FRAME_LIMIT <<
797 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
798 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
799 }
800
801 iwl_write_prph(priv, IWL50_SCD_INTERRUPT_MASK,
Tomas Winklerda1bc452008-05-29 16:35:00 +0800802 IWL_MASK(0, priv->hw_params.max_txq_num));
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800803
Tomas Winklerda1bc452008-05-29 16:35:00 +0800804 /* Activate all Tx DMA/FIFO channels */
805 priv->cfg->ops->lib->txq_set_sched(priv, IWL_MASK(0, 7));
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800806
807 iwl5000_set_wr_ptrs(priv, IWL_CMD_QUEUE_NUM, 0);
Winkler, Tomas9c80c502008-10-29 14:05:43 -0700808
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800809 /* map qos queues to fifos one-to-one */
810 for (i = 0; i < ARRAY_SIZE(iwl5000_default_queue_to_tx_fifo); i++) {
811 int ac = iwl5000_default_queue_to_tx_fifo[i];
812 iwl_txq_ctx_activate(priv, i);
813 iwl5000_tx_queue_set_status(priv, &priv->txq[i], ac, 0);
814 }
815 /* TODO - need to initialize those FIFOs inside the loop above,
816 * not only mark them as active */
817 iwl_txq_ctx_activate(priv, 4);
818 iwl_txq_ctx_activate(priv, 7);
819 iwl_txq_ctx_activate(priv, 8);
820 iwl_txq_ctx_activate(priv, 9);
821
822 iwl_release_nic_access(priv);
823 spin_unlock_irqrestore(&priv->lock, flags);
824
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800825
Ron Rindjunsky9636e582008-05-15 13:54:14 +0800826 iwl5000_send_wimax_coex(priv);
827
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800828 iwl5000_set_Xtal_calib(priv);
829 iwl_send_calib_results(priv);
Tomas Winkler7c616cb2008-05-29 16:35:05 +0800830
Ron Rindjunsky99da1b42008-05-15 13:54:13 +0800831 return 0;
832}
833
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700834static int iwl5000_hw_set_hw_params(struct iwl_priv *priv)
835{
836 if ((priv->cfg->mod_params->num_of_queues > IWL50_NUM_QUEUES) ||
837 (priv->cfg->mod_params->num_of_queues < IWL_MIN_NUM_QUEUES)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +0800838 IWL_ERR(priv,
839 "invalid queues_num, should be between %d and %d\n",
840 IWL_MIN_NUM_QUEUES, IWL50_NUM_QUEUES);
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700841 return -EINVAL;
842 }
Tomas Winkler25ae3982008-04-24 11:55:27 -0700843
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700844 priv->hw_params.max_txq_num = priv->cfg->mod_params->num_of_queues;
Zhu Yif3f911d2008-12-02 12:14:04 -0800845 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800846 priv->hw_params.scd_bc_tbls_size =
847 IWL50_NUM_QUEUES * sizeof(struct iwl5000_scd_bc_tbl);
Samuel Ortiza8e74e22009-01-23 13:45:14 -0800848 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700849 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
850 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
Jay Sternbergc0bac762009-02-02 16:21:14 -0800851
852 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
853 case CSR_HW_REV_TYPE_6x00:
854 case CSR_HW_REV_TYPE_6x50:
855 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
856 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
857 break;
858 default:
859 priv->hw_params.max_data_size = IWL50_RTC_DATA_SIZE;
860 priv->hw_params.max_inst_size = IWL50_RTC_INST_SIZE;
861 }
862
Ron Rindjunskyda154e32008-06-30 17:23:20 +0800863 priv->hw_params.max_bsm_size = 0;
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700864 priv->hw_params.fat_channel = BIT(IEEE80211_BAND_2GHZ) |
865 BIT(IEEE80211_BAND_5GHZ);
Winkler, Tomas141c43a2009-01-08 10:19:53 -0800866 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
867
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -0700868 priv->hw_params.sens = &iwl5000_sensitivity;
Tomas Winkler25ae3982008-04-24 11:55:27 -0700869
Jay Sternbergc0bac762009-02-02 16:21:14 -0800870 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
871 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
872 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
873 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
Emmanuel Grumbachc031bf82008-04-24 11:55:29 -0700874
Wey-Yi Guy62161ae2009-05-21 13:44:23 -0700875 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
876 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
Emmanuel Grumbachc031bf82008-04-24 11:55:29 -0700877
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800878 /* Set initial calibration set */
879 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800880 case CSR_HW_REV_TYPE_5150:
Tomas Winkler819500c2008-12-01 16:32:19 -0800881 priv->hw_params.calib_init_cfg =
Winkler, Tomas7470d7f2008-12-01 16:32:22 -0800882 BIT(IWL_CALIB_DC) |
883 BIT(IWL_CALIB_LO) |
884 BIT(IWL_CALIB_TX_IQ) |
885 BIT(IWL_CALIB_BASE_BAND);
Tomas Winkler819500c2008-12-01 16:32:19 -0800886
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800887 break;
Jay Sternbergc0bac762009-02-02 16:21:14 -0800888 default:
889 priv->hw_params.calib_init_cfg =
890 BIT(IWL_CALIB_XTAL) |
891 BIT(IWL_CALIB_LO) |
892 BIT(IWL_CALIB_TX_IQ) |
893 BIT(IWL_CALIB_TX_IQ_PERD) |
894 BIT(IWL_CALIB_BASE_BAND);
895 break;
Tomas Winklerbe5d56e2008-10-08 09:37:27 +0800896 }
897
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -0700898 return 0;
899}
Ron Rindjunskyd4100dd2008-04-24 11:55:33 -0700900
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700901/**
902 * iwl5000_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
903 */
904static void iwl5000_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
Ron Rindjunsky16466902008-05-05 10:22:50 +0800905 struct iwl_tx_queue *txq,
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700906 u16 byte_cnt)
907{
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800908 struct iwl5000_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Tomas Winkler127901a2008-10-23 23:48:55 -0700909 int write_ptr = txq->q.write_ptr;
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700910 int txq_id = txq->q.id;
911 u8 sec_ctl = 0;
Tomas Winkler127901a2008-10-23 23:48:55 -0700912 u8 sta_id = 0;
913 u16 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
914 __le16 bc_ent;
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700915
Tomas Winkler127901a2008-10-23 23:48:55 -0700916 WARN_ON(len > 0xFFF || write_ptr >= TFD_QUEUE_SIZE_MAX);
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700917
918 if (txq_id != IWL_CMD_QUEUE_NUM) {
Tomas Winkler127901a2008-10-23 23:48:55 -0700919 sta_id = txq->cmd[txq->q.write_ptr]->cmd.tx.sta_id;
Gregory Greenmanda99c4b2008-08-04 16:00:40 +0800920 sec_ctl = txq->cmd[txq->q.write_ptr]->cmd.tx.sec_ctl;
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700921
922 switch (sec_ctl & TX_CMD_SEC_MSK) {
923 case TX_CMD_SEC_CCM:
924 len += CCMP_MIC_LEN;
925 break;
926 case TX_CMD_SEC_TKIP:
927 len += TKIP_ICV_LEN;
928 break;
929 case TX_CMD_SEC_WEP:
930 len += WEP_IV_LEN + WEP_ICV_LEN;
931 break;
932 }
933 }
934
Tomas Winkler127901a2008-10-23 23:48:55 -0700935 bc_ent = cpu_to_le16((len & 0xFFF) | (sta_id << 12));
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700936
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800937 scd_bc_tbl[txq_id].tfd_offset[write_ptr] = bc_ent;
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700938
Tomas Winkler127901a2008-10-23 23:48:55 -0700939 if (txq->q.write_ptr < TFD_QUEUE_SIZE_BC_DUP)
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800940 scd_bc_tbl[txq_id].
Tomas Winkler127901a2008-10-23 23:48:55 -0700941 tfd_offset[TFD_QUEUE_SIZE_MAX + write_ptr] = bc_ent;
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -0700942}
943
Tomas Winkler972cf442008-05-29 16:35:13 +0800944static void iwl5000_txq_inval_byte_cnt_tbl(struct iwl_priv *priv,
945 struct iwl_tx_queue *txq)
946{
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800947 struct iwl5000_scd_bc_tbl *scd_bc_tbl = priv->scd_bc_tbls.addr;
Tomas Winkler127901a2008-10-23 23:48:55 -0700948 int txq_id = txq->q.id;
949 int read_ptr = txq->q.read_ptr;
950 u8 sta_id = 0;
951 __le16 bc_ent;
952
953 WARN_ON(read_ptr >= TFD_QUEUE_SIZE_MAX);
Tomas Winkler972cf442008-05-29 16:35:13 +0800954
955 if (txq_id != IWL_CMD_QUEUE_NUM)
Tomas Winkler127901a2008-10-23 23:48:55 -0700956 sta_id = txq->cmd[read_ptr]->cmd.tx.sta_id;
Tomas Winkler972cf442008-05-29 16:35:13 +0800957
Tomas Winkler127901a2008-10-23 23:48:55 -0700958 bc_ent = cpu_to_le16(1 | (sta_id << 12));
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800959 scd_bc_tbl[txq_id].tfd_offset[read_ptr] = bc_ent;
Tomas Winkler972cf442008-05-29 16:35:13 +0800960
Tomas Winkler127901a2008-10-23 23:48:55 -0700961 if (txq->q.write_ptr < TFD_QUEUE_SIZE_BC_DUP)
Tomas Winkler4ddbb7d2008-11-07 09:58:40 -0800962 scd_bc_tbl[txq_id].
Tomas Winkler127901a2008-10-23 23:48:55 -0700963 tfd_offset[TFD_QUEUE_SIZE_MAX + read_ptr] = bc_ent;
Tomas Winkler972cf442008-05-29 16:35:13 +0800964}
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)) {
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001008 IWL_WARN(priv,
1009 "queue number out of range: %d, must be %d to %d\n",
Tomas Winkler9f17b312008-07-11 11:53:35 +08001010 txq_id, IWL50_FIRST_AMPDU_QUEUE,
1011 IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES - 1);
1012 return -EINVAL;
1013 }
Tomas Winklere26e47d2008-06-12 09:46:56 +08001014
1015 ra_tid = BUILD_RAxTID(sta_id, tid);
1016
1017 /* Modify device's station table to Tx this TID */
Tomas Winkler9f586712008-11-12 13:14:05 -08001018 iwl_sta_tx_modify_enable_tid(priv, sta_id, tid);
Tomas Winklere26e47d2008-06-12 09:46:56 +08001019
1020 spin_lock_irqsave(&priv->lock, flags);
1021 ret = iwl_grab_nic_access(priv);
1022 if (ret) {
1023 spin_unlock_irqrestore(&priv->lock, flags);
1024 return ret;
1025 }
1026
1027 /* Stop this Tx queue before configuring it */
1028 iwl5000_tx_queue_stop_scheduler(priv, txq_id);
1029
1030 /* Map receiver-address / traffic-ID to this queue */
1031 iwl5000_tx_queue_set_q2ratid(priv, ra_tid, txq_id);
1032
1033 /* Set this queue as a chain-building queue */
1034 iwl_set_bits_prph(priv, IWL50_SCD_QUEUECHAIN_SEL, (1<<txq_id));
1035
1036 /* enable aggregations for the queue */
1037 iwl_set_bits_prph(priv, IWL50_SCD_AGGR_SEL, (1<<txq_id));
1038
1039 /* Place first TFD at index corresponding to start sequence number.
1040 * Assumes that ssn_idx is valid (!= 0xFFF) */
1041 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
1042 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
1043 iwl5000_set_wr_ptrs(priv, txq_id, ssn_idx);
1044
1045 /* Set up Tx window size and frame limit for this queue */
1046 iwl_write_targ_mem(priv, priv->scd_base_addr +
1047 IWL50_SCD_CONTEXT_QUEUE_OFFSET(txq_id) +
1048 sizeof(u32),
1049 ((SCD_WIN_SIZE <<
1050 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
1051 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
1052 ((SCD_FRAME_LIMIT <<
1053 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
1054 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
1055
1056 iwl_set_bits_prph(priv, IWL50_SCD_INTERRUPT_MASK, (1 << txq_id));
1057
1058 /* Set up Status area in SRAM, map to Tx DMA/FIFO, activate the queue */
1059 iwl5000_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 1);
1060
1061 iwl_release_nic_access(priv);
1062 spin_unlock_irqrestore(&priv->lock, flags);
1063
1064 return 0;
1065}
1066
1067static int iwl5000_txq_agg_disable(struct iwl_priv *priv, u16 txq_id,
1068 u16 ssn_idx, u8 tx_fifo)
1069{
1070 int ret;
1071
Tomas Winkler9f17b312008-07-11 11:53:35 +08001072 if ((IWL50_FIRST_AMPDU_QUEUE > txq_id) ||
1073 (IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES <= txq_id)) {
Wey-Yi Guya2f1cbe2009-03-17 21:51:52 -07001074 IWL_ERR(priv,
Winkler, Tomas39aadf82008-12-19 10:37:32 +08001075 "queue number out of range: %d, must be %d to %d\n",
Tomas Winkler9f17b312008-07-11 11:53:35 +08001076 txq_id, IWL50_FIRST_AMPDU_QUEUE,
1077 IWL50_FIRST_AMPDU_QUEUE + IWL50_NUM_AMPDU_QUEUES - 1);
Tomas Winklere26e47d2008-06-12 09:46:56 +08001078 return -EINVAL;
1079 }
1080
1081 ret = iwl_grab_nic_access(priv);
1082 if (ret)
1083 return ret;
1084
1085 iwl5000_tx_queue_stop_scheduler(priv, txq_id);
1086
1087 iwl_clear_bits_prph(priv, IWL50_SCD_AGGR_SEL, (1 << txq_id));
1088
1089 priv->txq[txq_id].q.read_ptr = (ssn_idx & 0xff);
1090 priv->txq[txq_id].q.write_ptr = (ssn_idx & 0xff);
1091 /* supposes that ssn_idx is valid (!= 0xFFF) */
1092 iwl5000_set_wr_ptrs(priv, txq_id, ssn_idx);
1093
1094 iwl_clear_bits_prph(priv, IWL50_SCD_INTERRUPT_MASK, (1 << txq_id));
1095 iwl_txq_ctx_deactivate(priv, txq_id);
1096 iwl5000_tx_queue_set_status(priv, &priv->txq[txq_id], tx_fifo, 0);
1097
1098 iwl_release_nic_access(priv);
1099
1100 return 0;
1101}
1102
Jay Sternberge8c00dc2009-01-29 11:09:15 -08001103u16 iwl5000_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
Tomas Winkler2469bf22008-05-05 10:22:35 +08001104{
1105 u16 size = (u16)sizeof(struct iwl_addsta_cmd);
1106 memcpy(data, cmd, size);
1107 return size;
1108}
1109
1110
Tomas Winklerda1bc452008-05-29 16:35:00 +08001111/*
Tomas Winklera96a27f2008-10-23 23:48:56 -07001112 * Activate/Deactivate Tx DMA/FIFO channels according tx fifos mask
Tomas Winklerda1bc452008-05-29 16:35:00 +08001113 * must be called under priv->lock and mac access
1114 */
1115static void iwl5000_txq_set_sched(struct iwl_priv *priv, u32 mask)
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +08001116{
Tomas Winklerda1bc452008-05-29 16:35:00 +08001117 iwl_write_prph(priv, IWL50_SCD_TXFACT, mask);
Ron Rindjunsky5a676bb2008-05-05 10:22:42 +08001118}
1119
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001120
1121static inline u32 iwl5000_get_scd_ssn(struct iwl5000_tx_resp *tx_resp)
1122{
Tomas Winkler3ac7f142008-07-21 02:40:14 +03001123 return le32_to_cpup((__le32 *)&tx_resp->status +
Tomas Winkler25a65722008-06-12 09:47:07 +08001124 tx_resp->frame_count) & MAX_SN;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001125}
1126
1127static int iwl5000_tx_status_reply_tx(struct iwl_priv *priv,
1128 struct iwl_ht_agg *agg,
1129 struct iwl5000_tx_resp *tx_resp,
Tomas Winkler25a65722008-06-12 09:47:07 +08001130 int txq_id, u16 start_idx)
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001131{
1132 u16 status;
1133 struct agg_tx_status *frame_status = &tx_resp->status;
1134 struct ieee80211_tx_info *info = NULL;
1135 struct ieee80211_hdr *hdr = NULL;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001136 u32 rate_n_flags = le32_to_cpu(tx_resp->rate_n_flags);
Tomas Winkler25a65722008-06-12 09:47:07 +08001137 int i, sh, idx;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001138 u16 seq;
1139
1140 if (agg->wait_for_ba)
Tomas Winklere1623442009-01-27 14:27:56 -08001141 IWL_DEBUG_TX_REPLY(priv, "got tx response w/o block-ack\n");
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001142
1143 agg->frame_count = tx_resp->frame_count;
1144 agg->start_idx = start_idx;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001145 agg->rate_n_flags = rate_n_flags;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001146 agg->bitmap = 0;
1147
1148 /* # frames attempted by Tx command */
1149 if (agg->frame_count == 1) {
1150 /* Only one frame was attempted; no block-ack will arrive */
1151 status = le16_to_cpu(frame_status[0].status);
Tomas Winkler25a65722008-06-12 09:47:07 +08001152 idx = start_idx;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001153
1154 /* FIXME: code repetition */
Tomas Winklere1623442009-01-27 14:27:56 -08001155 IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, StartIdx=%d idx=%d\n",
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001156 agg->frame_count, agg->start_idx, idx);
1157
1158 info = IEEE80211_SKB_CB(priv->txq[txq_id].txb[idx].skb[0]);
Johannes Berge6a98542008-10-21 12:40:02 +02001159 info->status.rates[0].count = tx_resp->failure_frame + 1;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001160 info->flags &= ~IEEE80211_TX_CTL_AMPDU;
Abhijeet Kolekarc3056062008-11-12 13:14:08 -08001161 info->flags |= iwl_is_tx_success(status) ?
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001162 IEEE80211_TX_STAT_ACK : 0;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001163 iwl_hwrate_to_tx_control(priv, rate_n_flags, info);
1164
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001165 /* FIXME: code repetition end */
1166
Tomas Winklere1623442009-01-27 14:27:56 -08001167 IWL_DEBUG_TX_REPLY(priv, "1 Frame 0x%x failure :%d\n",
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001168 status & 0xff, tx_resp->failure_frame);
Tomas Winklere1623442009-01-27 14:27:56 -08001169 IWL_DEBUG_TX_REPLY(priv, "Rate Info rate_n_flags=%x\n", rate_n_flags);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001170
1171 agg->wait_for_ba = 0;
1172 } else {
1173 /* Two or more frames were attempted; expect block-ack */
1174 u64 bitmap = 0;
1175 int start = agg->start_idx;
1176
1177 /* Construct bit-map of pending frames within Tx window */
1178 for (i = 0; i < agg->frame_count; i++) {
1179 u16 sc;
1180 status = le16_to_cpu(frame_status[i].status);
1181 seq = le16_to_cpu(frame_status[i].sequence);
1182 idx = SEQ_TO_INDEX(seq);
1183 txq_id = SEQ_TO_QUEUE(seq);
1184
1185 if (status & (AGG_TX_STATE_FEW_BYTES_MSK |
1186 AGG_TX_STATE_ABORT_MSK))
1187 continue;
1188
Tomas Winklere1623442009-01-27 14:27:56 -08001189 IWL_DEBUG_TX_REPLY(priv, "FrameCnt = %d, txq_id=%d idx=%d\n",
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001190 agg->frame_count, txq_id, idx);
1191
1192 hdr = iwl_tx_queue_get_hdr(priv, txq_id, idx);
1193
1194 sc = le16_to_cpu(hdr->seq_ctrl);
1195 if (idx != (SEQ_TO_SN(sc) & 0xff)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001196 IWL_ERR(priv,
1197 "BUG_ON idx doesn't match seq control"
1198 " idx=%d, seq_idx=%d, seq=%d\n",
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001199 idx, SEQ_TO_SN(sc),
1200 hdr->seq_ctrl);
1201 return -1;
1202 }
1203
Tomas Winklere1623442009-01-27 14:27:56 -08001204 IWL_DEBUG_TX_REPLY(priv, "AGG Frame i=%d idx %d seq=%d\n",
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001205 i, idx, SEQ_TO_SN(sc));
1206
1207 sh = idx - start;
1208 if (sh > 64) {
1209 sh = (start - idx) + 0xff;
1210 bitmap = bitmap << sh;
1211 sh = 0;
1212 start = idx;
1213 } else if (sh < -64)
1214 sh = 0xff - (start - idx);
1215 else if (sh < 0) {
1216 sh = start - idx;
1217 start = idx;
1218 bitmap = bitmap << sh;
1219 sh = 0;
1220 }
Emmanuel Grumbach4aa41f12008-07-18 13:53:09 +08001221 bitmap |= 1ULL << sh;
Tomas Winklere1623442009-01-27 14:27:56 -08001222 IWL_DEBUG_TX_REPLY(priv, "start=%d bitmap=0x%llx\n",
Emmanuel Grumbach4aa41f12008-07-18 13:53:09 +08001223 start, (unsigned long long)bitmap);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001224 }
1225
1226 agg->bitmap = bitmap;
1227 agg->start_idx = start;
Tomas Winklere1623442009-01-27 14:27:56 -08001228 IWL_DEBUG_TX_REPLY(priv, "Frames %d start_idx=%d bitmap=0x%llx\n",
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001229 agg->frame_count, agg->start_idx,
1230 (unsigned long long)agg->bitmap);
1231
1232 if (bitmap)
1233 agg->wait_for_ba = 1;
1234 }
1235 return 0;
1236}
1237
1238static void iwl5000_rx_reply_tx(struct iwl_priv *priv,
1239 struct iwl_rx_mem_buffer *rxb)
1240{
1241 struct iwl_rx_packet *pkt = (struct iwl_rx_packet *)rxb->skb->data;
1242 u16 sequence = le16_to_cpu(pkt->hdr.sequence);
1243 int txq_id = SEQ_TO_QUEUE(sequence);
1244 int index = SEQ_TO_INDEX(sequence);
1245 struct iwl_tx_queue *txq = &priv->txq[txq_id];
1246 struct ieee80211_tx_info *info;
1247 struct iwl5000_tx_resp *tx_resp = (void *)&pkt->u.raw[0];
1248 u32 status = le16_to_cpu(tx_resp->status.status);
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001249 int tid;
1250 int sta_id;
1251 int freed;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001252
1253 if ((index >= txq->q.n_bd) || (iwl_queue_used(&txq->q, index) == 0)) {
Winkler, Tomas15b16872008-12-19 10:37:33 +08001254 IWL_ERR(priv, "Read index for DMA queue txq_id (%d) index %d "
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001255 "is out of range [0-%d] %d %d\n", txq_id,
1256 index, txq->q.n_bd, txq->q.write_ptr,
1257 txq->q.read_ptr);
1258 return;
1259 }
1260
1261 info = IEEE80211_SKB_CB(txq->txb[txq->q.read_ptr].skb[0]);
1262 memset(&info->status, 0, sizeof(info->status));
1263
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001264 tid = (tx_resp->ra_tid & IWL50_TX_RES_TID_MSK) >> IWL50_TX_RES_TID_POS;
1265 sta_id = (tx_resp->ra_tid & IWL50_TX_RES_RA_MSK) >> IWL50_TX_RES_RA_POS;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001266
1267 if (txq->sched_retry) {
1268 const u32 scd_ssn = iwl5000_get_scd_ssn(tx_resp);
1269 struct iwl_ht_agg *agg = NULL;
1270
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001271 agg = &priv->stations[sta_id].tid[tid].agg;
1272
Tomas Winkler25a65722008-06-12 09:47:07 +08001273 iwl5000_tx_status_reply_tx(priv, agg, tx_resp, txq_id, index);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001274
Ron Rindjunsky32354272008-07-01 10:44:51 +03001275 /* check if BAR is needed */
1276 if ((tx_resp->frame_count == 1) && !iwl_is_tx_success(status))
1277 info->flags |= IEEE80211_TX_STAT_AMPDU_NO_BACK;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001278
1279 if (txq->q.read_ptr != (scd_ssn & 0xff)) {
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001280 index = iwl_queue_dec_wrap(scd_ssn & 0xff, txq->q.n_bd);
Tomas Winklere1623442009-01-27 14:27:56 -08001281 IWL_DEBUG_TX_REPLY(priv, "Retry scheduler reclaim "
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001282 "scd_ssn=%d idx=%d txq=%d swq=%d\n",
1283 scd_ssn , index, txq_id, txq->swq_id);
1284
Tomas Winkler17b88922008-05-29 16:35:12 +08001285 freed = iwl_tx_queue_reclaim(priv, txq_id, index);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001286 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
1287
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001288 if (priv->mac80211_registered &&
1289 (iwl_queue_space(&txq->q) > txq->q.low_mark) &&
1290 (agg->state != IWL_EMPTYING_HW_QUEUE_DELBA)) {
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001291 if (agg->state == IWL_AGG_OFF)
Johannes Berge4e72fb2009-03-23 17:28:42 +01001292 iwl_wake_queue(priv, txq_id);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001293 else
Johannes Berge4e72fb2009-03-23 17:28:42 +01001294 iwl_wake_queue(priv, txq->swq_id);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001295 }
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001296 }
1297 } else {
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001298 BUG_ON(txq_id != txq->swq_id);
1299
Johannes Berge6a98542008-10-21 12:40:02 +02001300 info->status.rates[0].count = tx_resp->failure_frame + 1;
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001301 info->flags |= iwl_is_tx_success(status) ?
1302 IEEE80211_TX_STAT_ACK : 0;
Tomas Winklere7d326a2008-06-12 09:47:11 +08001303 iwl_hwrate_to_tx_control(priv,
Ron Rindjunsky4f85f5b2008-06-09 22:54:35 +03001304 le32_to_cpu(tx_resp->rate_n_flags),
1305 info);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001306
Tomas Winklere1623442009-01-27 14:27:56 -08001307 IWL_DEBUG_TX_REPLY(priv, "TXQ %d status %s (0x%08x) rate_n_flags "
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001308 "0x%x retries %d\n",
1309 txq_id,
1310 iwl_get_tx_fail_reason(status), status,
1311 le32_to_cpu(tx_resp->rate_n_flags),
1312 tx_resp->failure_frame);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001313
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001314 freed = iwl_tx_queue_reclaim(priv, txq_id, index);
1315 if (ieee80211_is_data_qos(tx_resp->frame_ctrl))
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001316 priv->stations[sta_id].tid[tid].tfds_in_queue -= freed;
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001317
1318 if (priv->mac80211_registered &&
1319 (iwl_queue_space(&txq->q) > txq->q.low_mark))
Johannes Berge4e72fb2009-03-23 17:28:42 +01001320 iwl_wake_queue(priv, txq_id);
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001321 }
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001322
Tomas Winkler3fd07a12008-10-23 23:48:49 -07001323 if (ieee80211_is_data_qos(tx_resp->frame_ctrl))
1324 iwl_txq_check_empty(priv, sta_id, tid, txq_id);
1325
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001326 if (iwl_check_bits(status, TX_ABORT_REQUIRED_MSK))
Winkler, Tomas15b16872008-12-19 10:37:33 +08001327 IWL_ERR(priv, "TODO: Implement Tx ABORT REQUIRED!!!\n");
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001328}
1329
Tomas Winklera96a27f2008-10-23 23:48:56 -07001330/* Currently 5000 is the superset of everything */
Jay Sternberge8c00dc2009-01-29 11:09:15 -08001331u16 iwl5000_get_hcmd_size(u8 cmd_id, u16 len)
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001332{
1333 return len;
1334}
1335
Emmanuel Grumbach203566f2008-06-12 09:46:54 +08001336static void iwl5000_setup_deferred_work(struct iwl_priv *priv)
1337{
1338 /* in 5000 the tx power calibration is done in uCode */
1339 priv->disable_tx_power_cal = 1;
1340}
1341
Ron Rindjunskyb600e4e2008-05-15 13:54:11 +08001342static void iwl5000_rx_handler_setup(struct iwl_priv *priv)
1343{
Tomas Winkler7c616cb2008-05-29 16:35:05 +08001344 /* init calibration handlers */
1345 priv->rx_handlers[CALIBRATION_RES_NOTIFICATION] =
1346 iwl5000_rx_calib_result;
1347 priv->rx_handlers[CALIBRATION_COMPLETE_NOTIFICATION] =
1348 iwl5000_rx_calib_complete;
Ron Rindjunskye532fa02008-05-29 16:35:09 +08001349 priv->rx_handlers[REPLY_TX] = iwl5000_rx_reply_tx;
Ron Rindjunskyb600e4e2008-05-15 13:54:11 +08001350}
1351
Tomas Winkler7c616cb2008-05-29 16:35:05 +08001352
Ron Rindjunsky87283cc2008-05-29 16:34:47 +08001353static int iwl5000_hw_valid_rtc_data_addr(u32 addr)
1354{
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001355 return (addr >= IWL50_RTC_DATA_LOWER_BOUND) &&
Ron Rindjunsky87283cc2008-05-29 16:34:47 +08001356 (addr < IWL50_RTC_DATA_UPPER_BOUND);
1357}
1358
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001359static int iwl5000_send_rxon_assoc(struct iwl_priv *priv)
1360{
1361 int ret = 0;
1362 struct iwl5000_rxon_assoc_cmd rxon_assoc;
1363 const struct iwl_rxon_cmd *rxon1 = &priv->staging_rxon;
1364 const struct iwl_rxon_cmd *rxon2 = &priv->active_rxon;
1365
1366 if ((rxon1->flags == rxon2->flags) &&
1367 (rxon1->filter_flags == rxon2->filter_flags) &&
1368 (rxon1->cck_basic_rates == rxon2->cck_basic_rates) &&
1369 (rxon1->ofdm_ht_single_stream_basic_rates ==
1370 rxon2->ofdm_ht_single_stream_basic_rates) &&
1371 (rxon1->ofdm_ht_dual_stream_basic_rates ==
1372 rxon2->ofdm_ht_dual_stream_basic_rates) &&
1373 (rxon1->ofdm_ht_triple_stream_basic_rates ==
1374 rxon2->ofdm_ht_triple_stream_basic_rates) &&
1375 (rxon1->acquisition_data == rxon2->acquisition_data) &&
1376 (rxon1->rx_chain == rxon2->rx_chain) &&
1377 (rxon1->ofdm_basic_rates == rxon2->ofdm_basic_rates)) {
Tomas Winklere1623442009-01-27 14:27:56 -08001378 IWL_DEBUG_INFO(priv, "Using current RXON_ASSOC. Not resending.\n");
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001379 return 0;
1380 }
1381
1382 rxon_assoc.flags = priv->staging_rxon.flags;
1383 rxon_assoc.filter_flags = priv->staging_rxon.filter_flags;
1384 rxon_assoc.ofdm_basic_rates = priv->staging_rxon.ofdm_basic_rates;
1385 rxon_assoc.cck_basic_rates = priv->staging_rxon.cck_basic_rates;
1386 rxon_assoc.reserved1 = 0;
1387 rxon_assoc.reserved2 = 0;
1388 rxon_assoc.reserved3 = 0;
1389 rxon_assoc.ofdm_ht_single_stream_basic_rates =
1390 priv->staging_rxon.ofdm_ht_single_stream_basic_rates;
1391 rxon_assoc.ofdm_ht_dual_stream_basic_rates =
1392 priv->staging_rxon.ofdm_ht_dual_stream_basic_rates;
1393 rxon_assoc.rx_chain_select_flags = priv->staging_rxon.rx_chain;
1394 rxon_assoc.ofdm_ht_triple_stream_basic_rates =
1395 priv->staging_rxon.ofdm_ht_triple_stream_basic_rates;
1396 rxon_assoc.acquisition_data = priv->staging_rxon.acquisition_data;
1397
1398 ret = iwl_send_cmd_pdu_async(priv, REPLY_RXON_ASSOC,
1399 sizeof(rxon_assoc), &rxon_assoc, NULL);
1400 if (ret)
1401 return ret;
1402
1403 return ret;
1404}
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001405static int iwl5000_send_tx_power(struct iwl_priv *priv)
1406{
1407 struct iwl5000_tx_power_dbm_cmd tx_power_cmd;
Jay Sternberg76a24072009-01-29 11:09:14 -08001408 u8 tx_ant_cfg_cmd;
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001409
1410 /* half dBm need to multiply */
1411 tx_power_cmd.global_lmt = (s8)(2 * priv->tx_power_user_lmt);
Gregory Greenman853554a2008-06-30 17:23:01 +08001412 tx_power_cmd.flags = IWL50_TX_POWER_NO_CLOSED;
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001413 tx_power_cmd.srv_chan_lmt = IWL50_TX_POWER_AUTO;
Jay Sternberg76a24072009-01-29 11:09:14 -08001414
1415 if (IWL_UCODE_API(priv->ucode_ver) == 1)
1416 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD_V1;
1417 else
1418 tx_ant_cfg_cmd = REPLY_TX_POWER_DBM_CMD;
1419
1420 return iwl_send_cmd_pdu_async(priv, tx_ant_cfg_cmd,
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001421 sizeof(tx_power_cmd), &tx_power_cmd,
1422 NULL);
1423}
1424
Zhu Yi52256402008-06-30 17:23:31 +08001425static void iwl5000_temperature(struct iwl_priv *priv)
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001426{
1427 /* store temperature from statistics (in Celsius) */
Zhu Yi52256402008-06-30 17:23:31 +08001428 priv->temperature = le32_to_cpu(priv->statistics.general.temperature);
Emmanuel Grumbach8f91aec2008-06-30 17:23:07 +08001429}
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001430
Wey-Yi Guy62161ae2009-05-21 13:44:23 -07001431static void iwl5150_temperature(struct iwl_priv *priv)
1432{
1433 u32 vt = 0;
1434 s32 offset = iwl_temp_calib_to_offset(priv);
1435
1436 vt = le32_to_cpu(priv->statistics.general.temperature);
1437 vt = vt / IWL_5150_VOLTAGE_TO_TEMPERATURE_COEFF + offset;
1438 /* now vt hold the temperature in Kelvin */
1439 priv->temperature = KELVIN_TO_CELSIUS(vt);
1440}
1441
Tomas Winklercaab8f12008-08-04 16:00:42 +08001442/* Calc max signal level (dBm) among 3 possible receivers */
Jay Sternberge8c00dc2009-01-29 11:09:15 -08001443int iwl5000_calc_rssi(struct iwl_priv *priv,
Tomas Winklercaab8f12008-08-04 16:00:42 +08001444 struct iwl_rx_phy_res *rx_resp)
1445{
1446 /* data from PHY/DSP regarding signal strength, etc.,
1447 * contents are always there, not configurable by host
1448 */
1449 struct iwl5000_non_cfg_phy *ncphy =
1450 (struct iwl5000_non_cfg_phy *)rx_resp->non_cfg_phy_buf;
1451 u32 val, rssi_a, rssi_b, rssi_c, max_rssi;
1452 u8 agc;
1453
1454 val = le32_to_cpu(ncphy->non_cfg_phy[IWL50_RX_RES_AGC_IDX]);
1455 agc = (val & IWL50_OFDM_AGC_MSK) >> IWL50_OFDM_AGC_BIT_POS;
1456
1457 /* Find max rssi among 3 possible receivers.
1458 * These values are measured by the digital signal processor (DSP).
1459 * They should stay fairly constant even as the signal strength varies,
1460 * if the radio's automatic gain control (AGC) is working right.
1461 * AGC value (see below) will provide the "interesting" info.
1462 */
1463 val = le32_to_cpu(ncphy->non_cfg_phy[IWL50_RX_RES_RSSI_AB_IDX]);
1464 rssi_a = (val & IWL50_OFDM_RSSI_A_MSK) >> IWL50_OFDM_RSSI_A_BIT_POS;
1465 rssi_b = (val & IWL50_OFDM_RSSI_B_MSK) >> IWL50_OFDM_RSSI_B_BIT_POS;
1466 val = le32_to_cpu(ncphy->non_cfg_phy[IWL50_RX_RES_RSSI_C_IDX]);
1467 rssi_c = (val & IWL50_OFDM_RSSI_C_MSK) >> IWL50_OFDM_RSSI_C_BIT_POS;
1468
1469 max_rssi = max_t(u32, rssi_a, rssi_b);
1470 max_rssi = max_t(u32, max_rssi, rssi_c);
1471
Tomas Winklere1623442009-01-27 14:27:56 -08001472 IWL_DEBUG_STATS(priv, "Rssi In A %d B %d C %d Max %d AGC dB %d\n",
Tomas Winklercaab8f12008-08-04 16:00:42 +08001473 rssi_a, rssi_b, rssi_c, max_rssi, agc);
1474
1475 /* dBm = max_rssi dB - agc dB - constant.
1476 * Higher AGC (higher radio gain) means lower signal. */
Samuel Ortiz250bdd22008-12-19 10:37:11 +08001477 return max_rssi - agc - IWL49_RSSI_OFFSET;
Tomas Winklercaab8f12008-08-04 16:00:42 +08001478}
1479
Abhijeet Kolekar79fa4552009-04-08 11:26:39 -07001480struct iwl_station_mgmt_ops iwl5000_station_mgmt = {
Abhijeet Kolekar06fd3d82009-04-08 11:26:42 -07001481 .add_station = iwl_add_station_flags,
Abhijeet Kolekar79fa4552009-04-08 11:26:39 -07001482 .remove_station = iwl_remove_station,
1483 .find_station = iwl_find_station,
1484 .clear_station_table = iwl_clear_stations_table,
1485};
1486
Jay Sternberge8c00dc2009-01-29 11:09:15 -08001487struct iwl_hcmd_ops iwl5000_hcmd = {
Ron Rindjunskyfe7a90c2008-05-29 16:35:14 +08001488 .rxon_assoc = iwl5000_send_rxon_assoc,
Abhijeet Kolekare0158e62009-04-08 11:26:37 -07001489 .commit_rxon = iwl_commit_rxon,
Abhijeet Kolekar45823532009-04-08 11:26:44 -07001490 .set_rxon_chain = iwl_set_rxon_chain,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001491};
1492
Jay Sternberge8c00dc2009-01-29 11:09:15 -08001493struct iwl_hcmd_utils_ops iwl5000_hcmd_utils = {
Gregory Greenmanc1adf9f2008-05-15 13:53:59 +08001494 .get_hcmd_size = iwl5000_get_hcmd_size,
Tomas Winkler2469bf22008-05-05 10:22:35 +08001495 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
Emmanuel Grumbach33fd5032008-04-24 11:55:30 -07001496 .gain_computation = iwl5000_gain_computation,
1497 .chain_noise_reset = iwl5000_chain_noise_reset,
Emmanuel Grumbacha326a5d2008-07-11 11:53:31 +08001498 .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
Tomas Winklercaab8f12008-08-04 16:00:42 +08001499 .calc_rssi = iwl5000_calc_rssi,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001500};
1501
Jay Sternberge8c00dc2009-01-29 11:09:15 -08001502struct iwl_lib_ops iwl5000_lib = {
Tomas Winklerfdd3e8a2008-04-24 11:55:28 -07001503 .set_hw_params = iwl5000_hw_set_hw_params,
Emmanuel Grumbach7839fc02008-04-24 11:55:34 -07001504 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
Tomas Winkler972cf442008-05-29 16:35:13 +08001505 .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
Tomas Winklerda1bc452008-05-29 16:35:00 +08001506 .txq_set_sched = iwl5000_txq_set_sched,
Tomas Winklere26e47d2008-06-12 09:46:56 +08001507 .txq_agg_enable = iwl5000_txq_agg_enable,
1508 .txq_agg_disable = iwl5000_txq_agg_disable,
Samuel Ortiz7aaa1d72009-01-19 15:30:26 -08001509 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
1510 .txq_free_tfd = iwl_hw_txq_free_tfd,
Samuel Ortiza8e74e22009-01-23 13:45:14 -08001511 .txq_init = iwl_hw_tx_queue_init,
Ron Rindjunskyb600e4e2008-05-15 13:54:11 +08001512 .rx_handler_setup = iwl5000_rx_handler_setup,
Emmanuel Grumbach203566f2008-06-12 09:46:54 +08001513 .setup_deferred_work = iwl5000_setup_deferred_work,
Ron Rindjunsky87283cc2008-05-29 16:34:47 +08001514 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
Ron Rindjunskydbb983b2008-05-15 13:54:12 +08001515 .load_ucode = iwl5000_load_ucode,
Ron Rindjunsky99da1b42008-05-15 13:54:13 +08001516 .init_alive_start = iwl5000_init_alive_start,
1517 .alive_notify = iwl5000_alive_notify,
Tomas Winkler630fe9b2008-06-12 09:47:08 +08001518 .send_tx_power = iwl5000_send_tx_power,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001519 .update_chain_flags = iwl_update_chain_flags,
Tomas Winkler30d59262008-04-24 11:55:25 -07001520 .apm_ops = {
1521 .init = iwl5000_apm_init,
Tomas Winkler7f066102008-05-29 16:34:57 +08001522 .reset = iwl5000_apm_reset,
Tomas Winklerf118a912008-05-29 16:34:58 +08001523 .stop = iwl5000_apm_stop,
Ron Rindjunsky5a835352008-05-05 10:22:29 +08001524 .config = iwl5000_nic_config,
Emmanuel Grumbach5b9f8cd2008-10-29 14:05:46 -07001525 .set_pwr_src = iwl_set_pwr_src,
Tomas Winkler30d59262008-04-24 11:55:25 -07001526 },
Tomas Winklerda8dec22008-04-24 11:55:24 -07001527 .eeprom_ops = {
Tomas Winkler25ae3982008-04-24 11:55:27 -07001528 .regulatory_bands = {
1529 EEPROM_5000_REG_BAND_1_CHANNELS,
1530 EEPROM_5000_REG_BAND_2_CHANNELS,
1531 EEPROM_5000_REG_BAND_3_CHANNELS,
1532 EEPROM_5000_REG_BAND_4_CHANNELS,
1533 EEPROM_5000_REG_BAND_5_CHANNELS,
1534 EEPROM_5000_REG_BAND_24_FAT_CHANNELS,
1535 EEPROM_5000_REG_BAND_52_FAT_CHANNELS
1536 },
Tomas Winklerda8dec22008-04-24 11:55:24 -07001537 .verify_signature = iwlcore_eeprom_verify_signature,
1538 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
1539 .release_semaphore = iwlcore_eeprom_release_semaphore,
Tomas Winkler0ef2ca62008-10-23 23:48:51 -07001540 .calib_version = iwl5000_eeprom_calib_version,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001541 .query_addr = iwl5000_eeprom_query_addr,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001542 },
Abhijeet Kolekar5bbe2332009-04-08 11:26:35 -07001543 .post_associate = iwl_post_associate,
Abhijeet Kolekar60690a62009-04-08 11:26:49 -07001544 .config_ap = iwl_config_ap,
Wey-Yi Guy62161ae2009-05-21 13:44:23 -07001545 .temp_ops = {
1546 .temperature = iwl5000_temperature,
1547 .set_ct_kill = iwl5000_set_ct_threshold,
1548 },
1549};
1550
1551static struct iwl_lib_ops iwl5150_lib = {
1552 .set_hw_params = iwl5000_hw_set_hw_params,
1553 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
1554 .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
1555 .txq_set_sched = iwl5000_txq_set_sched,
1556 .txq_agg_enable = iwl5000_txq_agg_enable,
1557 .txq_agg_disable = iwl5000_txq_agg_disable,
1558 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
1559 .txq_free_tfd = iwl_hw_txq_free_tfd,
1560 .txq_init = iwl_hw_tx_queue_init,
1561 .rx_handler_setup = iwl5000_rx_handler_setup,
1562 .setup_deferred_work = iwl5000_setup_deferred_work,
1563 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
1564 .load_ucode = iwl5000_load_ucode,
1565 .init_alive_start = iwl5000_init_alive_start,
1566 .alive_notify = iwl5000_alive_notify,
1567 .send_tx_power = iwl5000_send_tx_power,
1568 .update_chain_flags = iwl_update_chain_flags,
1569 .apm_ops = {
1570 .init = iwl5000_apm_init,
1571 .reset = iwl5000_apm_reset,
1572 .stop = iwl5000_apm_stop,
1573 .config = iwl5000_nic_config,
1574 .set_pwr_src = iwl_set_pwr_src,
1575 },
1576 .eeprom_ops = {
1577 .regulatory_bands = {
1578 EEPROM_5000_REG_BAND_1_CHANNELS,
1579 EEPROM_5000_REG_BAND_2_CHANNELS,
1580 EEPROM_5000_REG_BAND_3_CHANNELS,
1581 EEPROM_5000_REG_BAND_4_CHANNELS,
1582 EEPROM_5000_REG_BAND_5_CHANNELS,
1583 EEPROM_5000_REG_BAND_24_FAT_CHANNELS,
1584 EEPROM_5000_REG_BAND_52_FAT_CHANNELS
1585 },
1586 .verify_signature = iwlcore_eeprom_verify_signature,
1587 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
1588 .release_semaphore = iwlcore_eeprom_release_semaphore,
1589 .calib_version = iwl5000_eeprom_calib_version,
1590 .query_addr = iwl5000_eeprom_query_addr,
1591 },
1592 .post_associate = iwl_post_associate,
1593 .config_ap = iwl_config_ap,
1594 .temp_ops = {
1595 .temperature = iwl5150_temperature,
1596 .set_ct_kill = iwl5150_set_ct_threshold,
1597 },
Tomas Winklerda8dec22008-04-24 11:55:24 -07001598};
1599
Jay Sternbergcec2d3f2009-01-19 15:30:33 -08001600struct iwl_ops iwl5000_ops = {
Tomas Winklerda8dec22008-04-24 11:55:24 -07001601 .lib = &iwl5000_lib,
1602 .hcmd = &iwl5000_hcmd,
1603 .utils = &iwl5000_hcmd_utils,
Abhijeet Kolekar79fa4552009-04-08 11:26:39 -07001604 .smgmt = &iwl5000_station_mgmt,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001605};
1606
Wey-Yi Guy62161ae2009-05-21 13:44:23 -07001607static struct iwl_ops iwl5150_ops = {
1608 .lib = &iwl5150_lib,
1609 .hcmd = &iwl5000_hcmd,
1610 .utils = &iwl5000_hcmd_utils,
1611 .smgmt = &iwl5000_station_mgmt,
1612};
1613
Jay Sternbergcec2d3f2009-01-19 15:30:33 -08001614struct iwl_mod_params iwl50_mod_params = {
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001615 .num_of_queues = IWL50_NUM_QUEUES,
Tomas Winkler9f17b312008-07-11 11:53:35 +08001616 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001617 .amsdu_size_8K = 1,
Ester Kummer3a1081e2008-05-06 11:05:14 +08001618 .restart_fw = 1,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001619 /* the rest are 0 by default */
1620};
1621
1622
1623struct iwl_cfg iwl5300_agn_cfg = {
1624 .name = "5300AGN",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001625 .fw_name_pre = IWL5000_FW_PRE,
1626 .ucode_api_max = IWL5000_UCODE_API_MAX,
1627 .ucode_api_min = IWL5000_UCODE_API_MIN,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001628 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001629 .ops = &iwl5000_ops,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001630 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler0ef2ca62008-10-23 23:48:51 -07001631 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
1632 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001633 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -08001634 .valid_tx_ant = ANT_ABC,
1635 .valid_rx_ant = ANT_ABC,
Jay Sternberg050681b2009-01-29 11:09:13 -08001636 .need_pll_cfg = true,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001637};
1638
Esti Kummer47408632008-07-11 11:53:30 +08001639struct iwl_cfg iwl5100_bg_cfg = {
1640 .name = "5100BG",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001641 .fw_name_pre = IWL5000_FW_PRE,
1642 .ucode_api_max = IWL5000_UCODE_API_MAX,
1643 .ucode_api_min = IWL5000_UCODE_API_MIN,
Esti Kummer47408632008-07-11 11:53:30 +08001644 .sku = IWL_SKU_G,
1645 .ops = &iwl5000_ops,
1646 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler0ef2ca62008-10-23 23:48:51 -07001647 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
1648 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Esti Kummer47408632008-07-11 11:53:30 +08001649 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -08001650 .valid_tx_ant = ANT_B,
1651 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -08001652 .need_pll_cfg = true,
Esti Kummer47408632008-07-11 11:53:30 +08001653};
1654
1655struct iwl_cfg iwl5100_abg_cfg = {
1656 .name = "5100ABG",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001657 .fw_name_pre = IWL5000_FW_PRE,
1658 .ucode_api_max = IWL5000_UCODE_API_MAX,
1659 .ucode_api_min = IWL5000_UCODE_API_MIN,
Esti Kummer47408632008-07-11 11:53:30 +08001660 .sku = IWL_SKU_A|IWL_SKU_G,
1661 .ops = &iwl5000_ops,
1662 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler0ef2ca62008-10-23 23:48:51 -07001663 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
1664 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Esti Kummer47408632008-07-11 11:53:30 +08001665 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -08001666 .valid_tx_ant = ANT_B,
1667 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -08001668 .need_pll_cfg = true,
Esti Kummer47408632008-07-11 11:53:30 +08001669};
1670
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001671struct iwl_cfg iwl5100_agn_cfg = {
1672 .name = "5100AGN",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001673 .fw_name_pre = IWL5000_FW_PRE,
1674 .ucode_api_max = IWL5000_UCODE_API_MAX,
1675 .ucode_api_min = IWL5000_UCODE_API_MIN,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001676 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001677 .ops = &iwl5000_ops,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001678 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler0ef2ca62008-10-23 23:48:51 -07001679 .eeprom_ver = EEPROM_5000_EEPROM_VERSION,
1680 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001681 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -08001682 .valid_tx_ant = ANT_B,
1683 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -08001684 .need_pll_cfg = true,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001685};
1686
1687struct iwl_cfg iwl5350_agn_cfg = {
1688 .name = "5350AGN",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001689 .fw_name_pre = IWL5000_FW_PRE,
1690 .ucode_api_max = IWL5000_UCODE_API_MAX,
1691 .ucode_api_min = IWL5000_UCODE_API_MIN,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001692 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Tomas Winklerda8dec22008-04-24 11:55:24 -07001693 .ops = &iwl5000_ops,
Tomas Winkler25ae3982008-04-24 11:55:27 -07001694 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winkler0ef2ca62008-10-23 23:48:51 -07001695 .eeprom_ver = EEPROM_5050_EEPROM_VERSION,
1696 .eeprom_calib_ver = EEPROM_5050_TX_POWER_VERSION,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001697 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -08001698 .valid_tx_ant = ANT_ABC,
1699 .valid_rx_ant = ANT_ABC,
Jay Sternberg050681b2009-01-29 11:09:13 -08001700 .need_pll_cfg = true,
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001701};
1702
Tomas Winkler7100e922008-12-01 16:32:18 -08001703struct iwl_cfg iwl5150_agn_cfg = {
1704 .name = "5150AGN",
Reinette Chatrea0987a82008-12-02 12:14:06 -08001705 .fw_name_pre = IWL5150_FW_PRE,
1706 .ucode_api_max = IWL5150_UCODE_API_MAX,
1707 .ucode_api_min = IWL5150_UCODE_API_MIN,
Tomas Winkler7100e922008-12-01 16:32:18 -08001708 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Wey-Yi Guy62161ae2009-05-21 13:44:23 -07001709 .ops = &iwl5150_ops,
Tomas Winkler7100e922008-12-01 16:32:18 -08001710 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
Tomas Winklerfd63edb2008-12-01 16:32:21 -08001711 .eeprom_ver = EEPROM_5050_EEPROM_VERSION,
1712 .eeprom_calib_ver = EEPROM_5050_TX_POWER_VERSION,
Tomas Winkler7100e922008-12-01 16:32:18 -08001713 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -08001714 .valid_tx_ant = ANT_A,
1715 .valid_rx_ant = ANT_AB,
Jay Sternberg050681b2009-01-29 11:09:13 -08001716 .need_pll_cfg = true,
Tomas Winkler7100e922008-12-01 16:32:18 -08001717};
1718
Reinette Chatrea0987a82008-12-02 12:14:06 -08001719MODULE_FIRMWARE(IWL5000_MODULE_FIRMWARE(IWL5000_UCODE_API_MAX));
1720MODULE_FIRMWARE(IWL5150_MODULE_FIRMWARE(IWL5150_UCODE_API_MAX));
Tomas Winklerc9f79ed2008-09-11 11:45:21 +08001721
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001722module_param_named(swcrypto50, iwl50_mod_params.sw_crypto, bool, 0444);
1723MODULE_PARM_DESC(swcrypto50,
1724 "using software crypto engine (default 0 [hardware])\n");
Wu, Fengguang95aa1942008-12-17 16:52:30 +08001725module_param_named(debug50, iwl50_mod_params.debug, uint, 0444);
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001726MODULE_PARM_DESC(debug50, "50XX debug output mask");
1727module_param_named(queues_num50, iwl50_mod_params.num_of_queues, int, 0444);
1728MODULE_PARM_DESC(queues_num50, "number of hw queues in 50xx series");
Ron Rindjunsky49779292008-06-30 17:23:21 +08001729module_param_named(11n_disable50, iwl50_mod_params.disable_11n, int, 0444);
1730MODULE_PARM_DESC(11n_disable50, "disable 50XX 11n functionality");
Tomas Winkler5a6a2562008-04-24 11:55:23 -07001731module_param_named(amsdu_size_8K50, iwl50_mod_params.amsdu_size_8K, int, 0444);
1732MODULE_PARM_DESC(amsdu_size_8K50, "enable 8K amsdu size in 50XX series");
Ester Kummer3a1081e2008-05-06 11:05:14 +08001733module_param_named(fw_restart50, iwl50_mod_params.restart_fw, int, 0444);
1734MODULE_PARM_DESC(fw_restart50, "restart firmware in case of error");