1 /******************************************************************************
3 * Copyright(c) 2007-2008 Intel Corporation. All rights reserved.
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.
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
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
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
21 * Contact Information:
22 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *****************************************************************************/
26 #include <linux/kernel.h>
27 #include <linux/module.h>
28 #include <linux/version.h>
29 #include <linux/init.h>
30 #include <linux/pci.h>
31 #include <linux/dma-mapping.h>
32 #include <linux/delay.h>
33 #include <linux/skbuff.h>
34 #include <linux/netdevice.h>
35 #include <linux/wireless.h>
36 #include <net/mac80211.h>
37 #include <linux/etherdevice.h>
38 #include <asm/unaligned.h>
40 #include "iwl-eeprom.h"
44 #include "iwl-helpers.h"
45 #include "iwl-5000-hw.h"
47 #define IWL5000_UCODE_API "-1"
49 static const u16 iwl5000_default_queue_to_tx_fifo[] = {
59 static int iwl5000_apm_init(struct iwl_priv *priv)
63 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
64 CSR_GIO_CHICKEN_BITS_REG_BIT_DIS_L0S_EXIT_TIMER);
66 /* disable L0s without affecting L1 :don't wait for ICH L0s bug W/A) */
67 iwl_set_bit(priv, CSR_GIO_CHICKEN_BITS,
68 CSR_GIO_CHICKEN_BITS_REG_BIT_L1A_NO_L0S_RX);
70 iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
72 /* set "initialization complete" bit to move adapter
73 * D0U* --> D0A* state */
74 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
76 /* wait for clock stabilization */
77 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
78 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
79 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
81 IWL_DEBUG_INFO("Failed to init the card\n");
85 ret = iwl_grab_nic_access(priv);
90 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
94 /* disable L1-Active */
95 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
96 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
98 iwl_release_nic_access(priv);
103 static int iwl5000_apm_reset(struct iwl_priv *priv)
108 iwl4965_hw_nic_stop_master(priv);
110 spin_lock_irqsave(&priv->lock, flags);
112 iwl_set_bit(priv, CSR_RESET, CSR_RESET_REG_FLAG_SW_RESET);
117 /* FIXME: put here L1A -L0S w/a */
119 iwl_set_bit(priv, CSR_ANA_PLL_CFG, CSR50_ANA_PLL_CFG_VAL);
121 /* set "initialization complete" bit to move adapter
122 * D0U* --> D0A* state */
123 iwl_set_bit(priv, CSR_GP_CNTRL, CSR_GP_CNTRL_REG_FLAG_INIT_DONE);
125 /* wait for clock stabilization */
126 ret = iwl_poll_bit(priv, CSR_GP_CNTRL,
127 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY,
128 CSR_GP_CNTRL_REG_FLAG_MAC_CLOCK_READY, 25000);
130 IWL_DEBUG_INFO("Failed to init the card\n");
134 ret = iwl_grab_nic_access(priv);
139 iwl_write_prph(priv, APMG_CLK_EN_REG, APMG_CLK_VAL_DMA_CLK_RQT);
143 /* disable L1-Active */
144 iwl_set_bits_prph(priv, APMG_PCIDEV_STT_REG,
145 APMG_PCIDEV_STT_VAL_L1_ACT_DIS);
147 iwl_release_nic_access(priv);
150 spin_unlock_irqrestore(&priv->lock, flags);
156 static void iwl5000_nic_config(struct iwl_priv *priv)
162 spin_lock_irqsave(&priv->lock, flags);
164 pci_read_config_byte(priv->pci_dev, PCI_LINK_CTRL, &val_link);
166 /* L1 is enabled by BIOS */
167 if ((val_link & PCI_LINK_VAL_L1_EN) == PCI_LINK_VAL_L1_EN)
168 /* diable L0S disabled L1A enabled */
169 iwl_set_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
171 /* L0S enabled L1A disabled */
172 iwl_clear_bit(priv, CSR_GIO_REG, CSR_GIO_REG_VAL_L0S_ENABLED);
174 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
176 /* write radio config values to register */
177 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) < EEPROM_5000_RF_CFG_TYPE_MAX)
178 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
179 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
180 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
181 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
183 /* set CSR_HW_CONFIG_REG for uCode use */
184 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
185 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
186 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
188 spin_unlock_irqrestore(&priv->lock, flags);
196 static u32 eeprom_indirect_address(const struct iwl_priv *priv, u32 address)
200 if ((address & INDIRECT_ADDRESS) == 0)
203 switch (address & INDIRECT_TYPE_MSK) {
205 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_HOST);
207 case INDIRECT_GENERAL:
208 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_GENERAL);
210 case INDIRECT_REGULATORY:
211 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_REGULATORY);
213 case INDIRECT_CALIBRATION:
214 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_CALIBRATION);
216 case INDIRECT_PROCESS_ADJST:
217 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_PROCESS_ADJST);
219 case INDIRECT_OTHERS:
220 offset = iwl_eeprom_query16(priv, EEPROM_5000_LINK_OTHERS);
223 IWL_ERROR("illegal indirect type: 0x%X\n",
224 address & INDIRECT_TYPE_MSK);
228 /* translate the offset from words to byte */
229 return (address & ADDRESS_MSK) + (offset << 1);
232 static int iwl5000_eeprom_check_version(struct iwl_priv *priv)
235 struct iwl_eeprom_calib_hdr {
241 eeprom_ver = iwl_eeprom_query16(priv, EEPROM_VERSION);
243 hdr = (struct iwl_eeprom_calib_hdr *)iwl_eeprom_query_addr(priv,
244 EEPROM_5000_CALIB_ALL);
246 if (eeprom_ver < EEPROM_5000_EEPROM_VERSION ||
247 hdr->version < EEPROM_5000_TX_POWER_VERSION)
252 IWL_ERROR("Unsuported EEPROM VER=0x%x < 0x%x CALIB=0x%x < 0x%x\n",
253 eeprom_ver, EEPROM_5000_EEPROM_VERSION,
254 hdr->version, EEPROM_5000_TX_POWER_VERSION);
259 #ifdef CONFIG_IWL5000_RUN_TIME_CALIB
261 static void iwl5000_gain_computation(struct iwl_priv *priv,
262 u32 average_noise[NUM_RX_CHAINS],
263 u16 min_average_noise_antenna_i,
264 u32 min_average_noise)
268 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
270 /* Find Gain Code for the antennas B and C */
271 for (i = 1; i < NUM_RX_CHAINS; i++) {
272 if ((data->disconn_array[i])) {
273 data->delta_gain_code[i] = 0;
276 delta_g = (1000 * ((s32)average_noise[0] -
277 (s32)average_noise[i])) / 1500;
278 /* bound gain by 2 bits value max, 3rd bit is sign */
279 data->delta_gain_code[i] =
280 min(abs(delta_g), CHAIN_NOISE_MAX_DELTA_GAIN_CODE);
283 /* set negative sign */
284 data->delta_gain_code[i] |= (1 << 2);
287 IWL_DEBUG_CALIB("Delta gains: ANT_B = %d ANT_C = %d\n",
288 data->delta_gain_code[1], data->delta_gain_code[2]);
290 if (!data->radio_write) {
291 struct iwl5000_calibration_chain_noise_gain_cmd cmd;
292 memset(&cmd, 0, sizeof(cmd));
294 cmd.op_code = IWL5000_PHY_CALIBRATE_CHAIN_NOISE_GAIN_CMD;
295 cmd.delta_gain_1 = data->delta_gain_code[1];
296 cmd.delta_gain_2 = data->delta_gain_code[2];
297 iwl_send_cmd_pdu_async(priv, REPLY_PHY_CALIBRATION_CMD,
298 sizeof(cmd), &cmd, NULL);
300 data->radio_write = 1;
301 data->state = IWL_CHAIN_NOISE_CALIBRATED;
304 data->chain_noise_a = 0;
305 data->chain_noise_b = 0;
306 data->chain_noise_c = 0;
307 data->chain_signal_a = 0;
308 data->chain_signal_b = 0;
309 data->chain_signal_c = 0;
310 data->beacon_count = 0;
314 static void iwl5000_chain_noise_reset(struct iwl_priv *priv)
316 struct iwl_chain_noise_data *data = &priv->chain_noise_data;
318 if ((data->state == IWL_CHAIN_NOISE_ALIVE) && iwl_is_associated(priv)) {
319 struct iwl5000_calibration_chain_noise_reset_cmd cmd;
321 memset(&cmd, 0, sizeof(cmd));
322 cmd.op_code = IWL5000_PHY_CALIBRATE_CHAIN_NOISE_RESET_CMD;
323 if (iwl_send_cmd_pdu(priv, REPLY_PHY_CALIBRATION_CMD,
325 IWL_ERROR("Could not send REPLY_PHY_CALIBRATION_CMD\n");
326 data->state = IWL_CHAIN_NOISE_ACCUMULATE;
327 IWL_DEBUG_CALIB("Run chain_noise_calibrate\n");
331 static struct iwl_sensitivity_ranges iwl5000_sensitivity = {
334 .auto_corr_min_ofdm = 90,
335 .auto_corr_min_ofdm_mrc = 170,
336 .auto_corr_min_ofdm_x1 = 120,
337 .auto_corr_min_ofdm_mrc_x1 = 240,
339 .auto_corr_max_ofdm = 120,
340 .auto_corr_max_ofdm_mrc = 210,
341 .auto_corr_max_ofdm_x1 = 155,
342 .auto_corr_max_ofdm_mrc_x1 = 290,
344 .auto_corr_min_cck = 125,
345 .auto_corr_max_cck = 200,
346 .auto_corr_min_cck_mrc = 170,
347 .auto_corr_max_cck_mrc = 400,
352 #endif /* CONFIG_IWL5000_RUN_TIME_CALIB */
354 static const u8 *iwl5000_eeprom_query_addr(const struct iwl_priv *priv,
357 u32 address = eeprom_indirect_address(priv, offset);
358 BUG_ON(address >= priv->cfg->eeprom_size);
359 return &priv->eeprom[address];
365 static int iwl5000_load_section(struct iwl_priv *priv,
366 struct fw_desc *image,
372 dma_addr_t phy_addr = image->p_addr;
373 u32 byte_cnt = image->len;
375 spin_lock_irqsave(&priv->lock, flags);
376 ret = iwl_grab_nic_access(priv);
378 spin_unlock_irqrestore(&priv->lock, flags);
382 iwl_write_direct32(priv,
383 FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
384 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_PAUSE);
386 iwl_write_direct32(priv,
387 FH_SRVC_CHNL_SRAM_ADDR_REG(FH_SRVC_CHNL), dst_addr);
389 iwl_write_direct32(priv,
390 FH_TFDIB_CTRL0_REG(FH_SRVC_CHNL),
391 phy_addr & FH_MEM_TFDIB_DRAM_ADDR_LSB_MSK);
393 /* FIME: write the MSB of the phy_addr in CTRL1
394 * iwl_write_direct32(priv,
395 IWL_FH_TFDIB_CTRL1_REG(IWL_FH_SRVC_CHNL),
396 ((phy_addr & MSB_MSK)
397 << FH_MEM_TFDIB_REG1_ADDR_BITSHIFT) | byte_count);
399 iwl_write_direct32(priv,
400 FH_TFDIB_CTRL1_REG(FH_SRVC_CHNL), byte_cnt);
401 iwl_write_direct32(priv,
402 FH_TCSR_CHNL_TX_BUF_STS_REG(FH_SRVC_CHNL),
403 1 << FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_NUM |
404 1 << FH_TCSR_CHNL_TX_BUF_STS_REG_POS_TB_IDX |
405 FH_TCSR_CHNL_TX_BUF_STS_REG_VAL_TFDB_VALID);
407 iwl_write_direct32(priv,
408 FH_TCSR_CHNL_TX_CONFIG_REG(FH_SRVC_CHNL),
409 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CHNL_ENABLE |
410 FH_TCSR_TX_CONFIG_REG_VAL_DMA_CREDIT_DISABLE_VAL |
411 FH_TCSR_TX_CONFIG_REG_VAL_CIRQ_HOST_ENDTFD);
413 iwl_release_nic_access(priv);
414 spin_unlock_irqrestore(&priv->lock, flags);
418 static int iwl5000_load_given_ucode(struct iwl_priv *priv,
419 struct fw_desc *inst_image,
420 struct fw_desc *data_image)
424 ret = iwl5000_load_section(
425 priv, inst_image, RTC_INST_LOWER_BOUND);
429 IWL_DEBUG_INFO("INST uCode section being loaded...\n");
430 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
431 priv->ucode_write_complete, 5 * HZ);
432 if (ret == -ERESTARTSYS) {
433 IWL_ERROR("Could not load the INST uCode section due "
438 IWL_ERROR("Could not load the INST uCode section\n");
442 priv->ucode_write_complete = 0;
444 ret = iwl5000_load_section(
445 priv, data_image, RTC_DATA_LOWER_BOUND);
449 IWL_DEBUG_INFO("DATA uCode section being loaded...\n");
451 ret = wait_event_interruptible_timeout(priv->wait_command_queue,
452 priv->ucode_write_complete, 5 * HZ);
453 if (ret == -ERESTARTSYS) {
454 IWL_ERROR("Could not load the INST uCode section due "
458 IWL_ERROR("Could not load the DATA uCode section\n");
463 priv->ucode_write_complete = 0;
468 static int iwl5000_load_ucode(struct iwl_priv *priv)
472 /* check whether init ucode should be loaded, or rather runtime ucode */
473 if (priv->ucode_init.len && (priv->ucode_type == UCODE_NONE)) {
474 IWL_DEBUG_INFO("Init ucode found. Loading init ucode...\n");
475 ret = iwl5000_load_given_ucode(priv,
476 &priv->ucode_init, &priv->ucode_init_data);
478 IWL_DEBUG_INFO("Init ucode load complete.\n");
479 priv->ucode_type = UCODE_INIT;
482 IWL_DEBUG_INFO("Init ucode not found, or already loaded. "
483 "Loading runtime ucode...\n");
484 ret = iwl5000_load_given_ucode(priv,
485 &priv->ucode_code, &priv->ucode_data);
487 IWL_DEBUG_INFO("Runtime ucode load complete.\n");
488 priv->ucode_type = UCODE_RT;
495 static void iwl5000_init_alive_start(struct iwl_priv *priv)
499 /* Check alive response for "valid" sign from uCode */
500 if (priv->card_alive_init.is_valid != UCODE_VALID_OK) {
501 /* We had an error bringing up the hardware, so take it
502 * all the way back down so we can try again */
503 IWL_DEBUG_INFO("Initialize Alive failed.\n");
507 /* initialize uCode was loaded... verify inst image.
508 * This is a paranoid check, because we would not have gotten the
509 * "initialize" alive if code weren't properly loaded. */
510 if (iwl_verify_ucode(priv)) {
511 /* Runtime instruction load was bad;
512 * take it all the way back down so we can try again */
513 IWL_DEBUG_INFO("Bad \"initialize\" uCode load.\n");
517 iwlcore_clear_stations_table(priv);
518 ret = priv->cfg->ops->lib->alive_notify(priv);
520 IWL_WARNING("Could not complete ALIVE transition: %d\n", ret);
527 /* real restart (first load init_ucode) */
528 queue_work(priv->workqueue, &priv->restart);
531 static void iwl5000_set_wr_ptrs(struct iwl_priv *priv,
532 int txq_id, u32 index)
534 iwl_write_direct32(priv, HBUS_TARG_WRPTR,
535 (index & 0xff) | (txq_id << 8));
536 iwl_write_prph(priv, IWL50_SCD_QUEUE_RDPTR(txq_id), index);
539 static void iwl5000_tx_queue_set_status(struct iwl_priv *priv,
540 struct iwl_tx_queue *txq,
541 int tx_fifo_id, int scd_retry)
543 int txq_id = txq->q.id;
544 int active = test_bit(txq_id, &priv->txq_ctx_active_msk)?1:0;
546 iwl_write_prph(priv, IWL50_SCD_QUEUE_STATUS_BITS(txq_id),
547 (active << IWL50_SCD_QUEUE_STTS_REG_POS_ACTIVE) |
548 (tx_fifo_id << IWL50_SCD_QUEUE_STTS_REG_POS_TXF) |
549 (1 << IWL50_SCD_QUEUE_STTS_REG_POS_WSL) |
550 IWL50_SCD_QUEUE_STTS_REG_MSK);
552 txq->sched_retry = scd_retry;
554 IWL_DEBUG_INFO("%s %s Queue %d on AC %d\n",
555 active ? "Activate" : "Deactivate",
556 scd_retry ? "BA" : "AC", txq_id, tx_fifo_id);
559 static int iwl5000_send_wimax_coex(struct iwl_priv *priv)
561 struct iwl_wimax_coex_cmd coex_cmd;
563 memset(&coex_cmd, 0, sizeof(coex_cmd));
565 return iwl_send_cmd_pdu(priv, COEX_PRIORITY_TABLE_CMD,
566 sizeof(coex_cmd), &coex_cmd);
569 static int iwl5000_alive_notify(struct iwl_priv *priv)
576 spin_lock_irqsave(&priv->lock, flags);
578 ret = iwl_grab_nic_access(priv);
580 spin_unlock_irqrestore(&priv->lock, flags);
584 priv->scd_base_addr = iwl_read_prph(priv, IWL50_SCD_SRAM_BASE_ADDR);
585 a = priv->scd_base_addr + IWL50_SCD_CONTEXT_DATA_OFFSET;
586 for (; a < priv->scd_base_addr + IWL50_SCD_TX_STTS_BITMAP_OFFSET;
588 iwl_write_targ_mem(priv, a, 0);
589 for (; a < priv->scd_base_addr + IWL50_SCD_TRANSLATE_TBL_OFFSET;
591 iwl_write_targ_mem(priv, a, 0);
592 for (; a < sizeof(u16) * priv->hw_params.max_txq_num; a += 4)
593 iwl_write_targ_mem(priv, a, 0);
595 iwl_write_prph(priv, IWL50_SCD_DRAM_BASE_ADDR,
597 offsetof(struct iwl5000_shared, queues_byte_cnt_tbls)) >> 10);
598 iwl_write_prph(priv, IWL50_SCD_QUEUECHAIN_SEL,
599 IWL50_SCD_QUEUECHAIN_SEL_ALL(
600 priv->hw_params.max_txq_num));
601 iwl_write_prph(priv, IWL50_SCD_AGGR_SEL, 0);
603 /* initiate the queues */
604 for (i = 0; i < priv->hw_params.max_txq_num; i++) {
605 iwl_write_prph(priv, IWL50_SCD_QUEUE_RDPTR(i), 0);
606 iwl_write_direct32(priv, HBUS_TARG_WRPTR, 0 | (i << 8));
607 iwl_write_targ_mem(priv, priv->scd_base_addr +
608 IWL50_SCD_CONTEXT_QUEUE_OFFSET(i), 0);
609 iwl_write_targ_mem(priv, priv->scd_base_addr +
610 IWL50_SCD_CONTEXT_QUEUE_OFFSET(i) +
613 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_POS) &
614 IWL50_SCD_QUEUE_CTX_REG2_WIN_SIZE_MSK) |
616 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_POS) &
617 IWL50_SCD_QUEUE_CTX_REG2_FRAME_LIMIT_MSK));
620 iwl_write_prph(priv, IWL50_SCD_INTERRUPT_MASK,
621 (1 << priv->hw_params.max_txq_num) - 1);
623 iwl_write_prph(priv, IWL50_SCD_TXFACT,
624 SCD_TXFACT_REG_TXFIFO_MASK(0, 7));
626 iwl5000_set_wr_ptrs(priv, IWL_CMD_QUEUE_NUM, 0);
627 /* map qos queues to fifos one-to-one */
628 for (i = 0; i < ARRAY_SIZE(iwl5000_default_queue_to_tx_fifo); i++) {
629 int ac = iwl5000_default_queue_to_tx_fifo[i];
630 iwl_txq_ctx_activate(priv, i);
631 iwl5000_tx_queue_set_status(priv, &priv->txq[i], ac, 0);
633 /* TODO - need to initialize those FIFOs inside the loop above,
634 * not only mark them as active */
635 iwl_txq_ctx_activate(priv, 4);
636 iwl_txq_ctx_activate(priv, 7);
637 iwl_txq_ctx_activate(priv, 8);
638 iwl_txq_ctx_activate(priv, 9);
640 iwl_release_nic_access(priv);
641 spin_unlock_irqrestore(&priv->lock, flags);
643 iwl5000_send_wimax_coex(priv);
648 static int iwl5000_hw_set_hw_params(struct iwl_priv *priv)
650 if ((priv->cfg->mod_params->num_of_queues > IWL50_NUM_QUEUES) ||
651 (priv->cfg->mod_params->num_of_queues < IWL_MIN_NUM_QUEUES)) {
652 IWL_ERROR("invalid queues_num, should be between %d and %d\n",
653 IWL_MIN_NUM_QUEUES, IWL50_NUM_QUEUES);
657 priv->hw_params.max_txq_num = priv->cfg->mod_params->num_of_queues;
658 priv->hw_params.sw_crypto = priv->cfg->mod_params->sw_crypto;
659 priv->hw_params.max_rxq_size = RX_QUEUE_SIZE;
660 priv->hw_params.max_rxq_log = RX_QUEUE_SIZE_LOG;
661 if (priv->cfg->mod_params->amsdu_size_8K)
662 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_8K;
664 priv->hw_params.rx_buf_size = IWL_RX_BUF_SIZE_4K;
665 priv->hw_params.max_pkt_size = priv->hw_params.rx_buf_size - 256;
666 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
667 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
668 priv->hw_params.max_data_size = IWL50_RTC_DATA_SIZE;
669 priv->hw_params.max_inst_size = IWL50_RTC_INST_SIZE;
670 priv->hw_params.max_bsm_size = BSM_SRAM_SIZE;
671 priv->hw_params.fat_channel = BIT(IEEE80211_BAND_2GHZ) |
672 BIT(IEEE80211_BAND_5GHZ);
673 #ifdef CONFIG_IWL5000_RUN_TIME_CALIB
674 priv->hw_params.sens = &iwl5000_sensitivity;
677 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
678 case CSR_HW_REV_TYPE_5100:
679 case CSR_HW_REV_TYPE_5150:
680 priv->hw_params.tx_chains_num = 1;
681 priv->hw_params.rx_chains_num = 2;
682 /* FIXME: move to ANT_A, ANT_B, ANT_C enum */
683 priv->hw_params.valid_tx_ant = ANT_A;
684 priv->hw_params.valid_rx_ant = ANT_AB;
686 case CSR_HW_REV_TYPE_5300:
687 case CSR_HW_REV_TYPE_5350:
688 priv->hw_params.tx_chains_num = 3;
689 priv->hw_params.rx_chains_num = 3;
690 priv->hw_params.valid_tx_ant = ANT_ABC;
691 priv->hw_params.valid_rx_ant = ANT_ABC;
695 switch (priv->hw_rev & CSR_HW_REV_TYPE_MSK) {
696 case CSR_HW_REV_TYPE_5100:
697 case CSR_HW_REV_TYPE_5300:
698 /* 5X00 wants in Celsius */
699 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
701 case CSR_HW_REV_TYPE_5150:
702 case CSR_HW_REV_TYPE_5350:
703 /* 5X50 wants in Kelvin */
704 priv->hw_params.ct_kill_threshold =
705 CELSIUS_TO_KELVIN(CT_KILL_THRESHOLD);
712 static int iwl5000_alloc_shared_mem(struct iwl_priv *priv)
714 priv->shared_virt = pci_alloc_consistent(priv->pci_dev,
715 sizeof(struct iwl5000_shared),
717 if (!priv->shared_virt)
720 memset(priv->shared_virt, 0, sizeof(struct iwl5000_shared));
722 priv->rb_closed_offset = offsetof(struct iwl5000_shared, rb_closed);
727 static void iwl5000_free_shared_mem(struct iwl_priv *priv)
729 if (priv->shared_virt)
730 pci_free_consistent(priv->pci_dev,
731 sizeof(struct iwl5000_shared),
736 static int iwl5000_shared_mem_rx_idx(struct iwl_priv *priv)
738 struct iwl5000_shared *s = priv->shared_virt;
739 return le32_to_cpu(s->rb_closed) & 0xFFF;
743 * iwl5000_txq_update_byte_cnt_tbl - Set up entry in Tx byte-count array
745 static void iwl5000_txq_update_byte_cnt_tbl(struct iwl_priv *priv,
746 struct iwl_tx_queue *txq,
749 struct iwl5000_shared *shared_data = priv->shared_virt;
750 int txq_id = txq->q.id;
755 len = byte_cnt + IWL_TX_CRC_SIZE + IWL_TX_DELIMITER_SIZE;
757 if (txq_id != IWL_CMD_QUEUE_NUM) {
758 sta = txq->cmd[txq->q.write_ptr].cmd.tx.sta_id;
759 sec_ctl = txq->cmd[txq->q.write_ptr].cmd.tx.sec_ctl;
761 switch (sec_ctl & TX_CMD_SEC_MSK) {
765 case TX_CMD_SEC_TKIP:
769 len += WEP_IV_LEN + WEP_ICV_LEN;
774 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
775 tfd_offset[txq->q.write_ptr], byte_cnt, len);
777 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
778 tfd_offset[txq->q.write_ptr], sta_id, sta);
780 if (txq->q.write_ptr < IWL50_MAX_WIN_SIZE) {
781 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
782 tfd_offset[IWL50_QUEUE_SIZE + txq->q.write_ptr],
784 IWL_SET_BITS16(shared_data->queues_byte_cnt_tbls[txq_id].
785 tfd_offset[IWL50_QUEUE_SIZE + txq->q.write_ptr],
790 static u16 iwl5000_build_addsta_hcmd(const struct iwl_addsta_cmd *cmd, u8 *data)
792 u16 size = (u16)sizeof(struct iwl_addsta_cmd);
793 memcpy(data, cmd, size);
798 static int iwl5000_disable_tx_fifo(struct iwl_priv *priv)
803 spin_lock_irqsave(&priv->lock, flags);
805 ret = iwl_grab_nic_access(priv);
807 IWL_ERROR("Tx fifo reset failed");
808 spin_unlock_irqrestore(&priv->lock, flags);
812 iwl_write_prph(priv, IWL50_SCD_TXFACT, 0);
813 iwl_release_nic_access(priv);
814 spin_unlock_irqrestore(&priv->lock, flags);
819 /* Currently 5000 is the supperset of everything */
820 static u16 iwl5000_get_hcmd_size(u8 cmd_id, u16 len)
825 static void iwl5000_rx_handler_setup(struct iwl_priv *priv)
829 static int iwl5000_hw_valid_rtc_data_addr(u32 addr)
831 return (addr >= RTC_DATA_LOWER_BOUND) &&
832 (addr < IWL50_RTC_DATA_UPPER_BOUND);
835 static struct iwl_hcmd_ops iwl5000_hcmd = {
838 static struct iwl_hcmd_utils_ops iwl5000_hcmd_utils = {
839 .get_hcmd_size = iwl5000_get_hcmd_size,
840 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
841 #ifdef CONFIG_IWL5000_RUN_TIME_CALIB
842 .gain_computation = iwl5000_gain_computation,
843 .chain_noise_reset = iwl5000_chain_noise_reset,
847 static struct iwl_lib_ops iwl5000_lib = {
848 .set_hw_params = iwl5000_hw_set_hw_params,
849 .alloc_shared_mem = iwl5000_alloc_shared_mem,
850 .free_shared_mem = iwl5000_free_shared_mem,
851 .shared_mem_rx_idx = iwl5000_shared_mem_rx_idx,
852 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
853 .disable_tx_fifo = iwl5000_disable_tx_fifo,
854 .rx_handler_setup = iwl5000_rx_handler_setup,
855 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
856 .load_ucode = iwl5000_load_ucode,
857 .init_alive_start = iwl5000_init_alive_start,
858 .alive_notify = iwl5000_alive_notify,
860 .init = iwl5000_apm_init,
861 .reset = iwl5000_apm_reset,
862 .config = iwl5000_nic_config,
863 .set_pwr_src = iwl4965_set_pwr_src,
866 .regulatory_bands = {
867 EEPROM_5000_REG_BAND_1_CHANNELS,
868 EEPROM_5000_REG_BAND_2_CHANNELS,
869 EEPROM_5000_REG_BAND_3_CHANNELS,
870 EEPROM_5000_REG_BAND_4_CHANNELS,
871 EEPROM_5000_REG_BAND_5_CHANNELS,
872 EEPROM_5000_REG_BAND_24_FAT_CHANNELS,
873 EEPROM_5000_REG_BAND_52_FAT_CHANNELS
875 .verify_signature = iwlcore_eeprom_verify_signature,
876 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
877 .release_semaphore = iwlcore_eeprom_release_semaphore,
878 .check_version = iwl5000_eeprom_check_version,
879 .query_addr = iwl5000_eeprom_query_addr,
883 static struct iwl_ops iwl5000_ops = {
885 .hcmd = &iwl5000_hcmd,
886 .utils = &iwl5000_hcmd_utils,
889 static struct iwl_mod_params iwl50_mod_params = {
890 .num_of_queues = IWL50_NUM_QUEUES,
894 /* the rest are 0 by default */
898 struct iwl_cfg iwl5300_agn_cfg = {
900 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
901 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
903 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
904 .mod_params = &iwl50_mod_params,
907 struct iwl_cfg iwl5100_agn_cfg = {
909 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
910 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
912 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
913 .mod_params = &iwl50_mod_params,
916 struct iwl_cfg iwl5350_agn_cfg = {
918 .fw_name = "iwlwifi-5000" IWL5000_UCODE_API ".ucode",
919 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
921 .eeprom_size = IWL_5000_EEPROM_IMG_SIZE,
922 .mod_params = &iwl50_mod_params,
925 module_param_named(disable50, iwl50_mod_params.disable, int, 0444);
926 MODULE_PARM_DESC(disable50,
927 "manually disable the 50XX radio (default 0 [radio on])");
928 module_param_named(swcrypto50, iwl50_mod_params.sw_crypto, bool, 0444);
929 MODULE_PARM_DESC(swcrypto50,
930 "using software crypto engine (default 0 [hardware])\n");
931 module_param_named(debug50, iwl50_mod_params.debug, int, 0444);
932 MODULE_PARM_DESC(debug50, "50XX debug output mask");
933 module_param_named(queues_num50, iwl50_mod_params.num_of_queues, int, 0444);
934 MODULE_PARM_DESC(queues_num50, "number of hw queues in 50xx series");
935 module_param_named(qos_enable50, iwl50_mod_params.enable_qos, int, 0444);
936 MODULE_PARM_DESC(qos_enable50, "enable all 50XX QoS functionality");
937 module_param_named(amsdu_size_8K50, iwl50_mod_params.amsdu_size_8K, int, 0444);
938 MODULE_PARM_DESC(amsdu_size_8K50, "enable 8K amsdu size in 50XX series");
939 module_param_named(fw_restart50, iwl50_mod_params.restart_fw, int, 0444);
940 MODULE_PARM_DESC(fw_restart50, "restart firmware in case of error");