Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Reinette Chatre | 1f44780 | 2010-01-15 13:43:41 -0800 | [diff] [blame] | 3 | * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved. |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2 of the GNU General Public License as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * Intel Linux Wireless <ilw@linux.intel.com> |
| 23 | * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497 |
| 24 | * |
| 25 | *****************************************************************************/ |
| 26 | |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/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> |
| 39 | |
| 40 | #include "iwl-eeprom.h" |
| 41 | #include "iwl-dev.h" |
| 42 | #include "iwl-core.h" |
| 43 | #include "iwl-io.h" |
| 44 | #include "iwl-sta.h" |
Johannes Berg | a117512 | 2010-01-21 06:21:10 -0800 | [diff] [blame] | 45 | #include "iwl-agn.h" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 46 | #include "iwl-helpers.h" |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 47 | #include "iwl-agn-hw.h" |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 48 | #include "iwl-6000-hw.h" |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 49 | #include "iwl-agn-led.h" |
Abhijeet Kolekar | b8c7626 | 2010-04-08 15:29:07 -0700 | [diff] [blame] | 50 | #include "iwl-agn-debugfs.h" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 51 | |
| 52 | /* Highest firmware API version supported */ |
Wey-Yi Guy | fcbaf8b | 2009-08-21 13:34:18 -0700 | [diff] [blame] | 53 | #define IWL6000_UCODE_API_MAX 4 |
| 54 | #define IWL6050_UCODE_API_MAX 4 |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 55 | #define IWL6000G2_UCODE_API_MAX 4 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 56 | |
| 57 | /* Lowest firmware API version supported */ |
Wey-Yi Guy | 4424642 | 2009-10-23 13:42:34 -0700 | [diff] [blame] | 58 | #define IWL6000_UCODE_API_MIN 4 |
| 59 | #define IWL6050_UCODE_API_MIN 4 |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 60 | #define IWL6000G2_UCODE_API_MIN 4 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 61 | |
| 62 | #define IWL6000_FW_PRE "iwlwifi-6000-" |
| 63 | #define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode" |
| 64 | #define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api) |
| 65 | |
| 66 | #define IWL6050_FW_PRE "iwlwifi-6050-" |
| 67 | #define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode" |
| 68 | #define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api) |
| 69 | |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 70 | #define IWL6000G2_FW_PRE "iwlwifi-6005-" |
| 71 | #define _IWL6000G2_MODULE_FIRMWARE(api) IWL6000G2_FW_PRE #api ".ucode" |
| 72 | #define IWL6000G2_MODULE_FIRMWARE(api) _IWL6000G2_MODULE_FIRMWARE(api) |
| 73 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 74 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) |
| 75 | { |
| 76 | /* want Celsius */ |
| 77 | priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD; |
| 78 | priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD; |
| 79 | } |
| 80 | |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 81 | /* Indicate calibration version to uCode. */ |
| 82 | static void iwl6050_set_calib_version(struct iwl_priv *priv) |
| 83 | { |
| 84 | if (priv->cfg->ops->lib->eeprom_ops.calib_version(priv) >= 6) |
| 85 | iwl_set_bit(priv, CSR_GP_DRIVER_REG, |
| 86 | CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6); |
| 87 | } |
| 88 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 89 | /* NIC configuration for 6000 series */ |
| 90 | static void iwl6000_nic_config(struct iwl_priv *priv) |
| 91 | { |
Wey-Yi Guy | 9371d4e | 2009-09-11 10:38:10 -0700 | [diff] [blame] | 92 | u16 radio_cfg; |
| 93 | |
| 94 | radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG); |
| 95 | |
| 96 | /* write radio config values to register */ |
| 97 | if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX) |
| 98 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 99 | EEPROM_RF_CFG_TYPE_MSK(radio_cfg) | |
| 100 | EEPROM_RF_CFG_STEP_MSK(radio_cfg) | |
| 101 | EEPROM_RF_CFG_DASH_MSK(radio_cfg)); |
| 102 | |
| 103 | /* set CSR_HW_CONFIG_REG for uCode use */ |
| 104 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 105 | CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI | |
| 106 | CSR_HW_IF_CONFIG_REG_BIT_MAC_SI); |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 107 | |
| 108 | /* no locking required for register write */ |
Wey-Yi Guy | 740e7f5 | 2009-11-06 14:52:55 -0800 | [diff] [blame] | 109 | if (priv->cfg->pa_type == IWL_PA_INTERNAL) { |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 110 | /* 2x2 IPA phy type */ |
| 111 | iwl_write32(priv, CSR_GP_DRIVER_REG, |
| 112 | CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA); |
| 113 | } |
| 114 | /* else do nothing, uCode configured */ |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 115 | if (priv->cfg->ops->lib->temp_ops.set_calib_version) |
| 116 | priv->cfg->ops->lib->temp_ops.set_calib_version(priv); |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 117 | } |
| 118 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 119 | static struct iwl_sensitivity_ranges iwl6000_sensitivity = { |
| 120 | .min_nrg_cck = 97, |
| 121 | .max_nrg_cck = 0, /* not used, set to 0 */ |
| 122 | .auto_corr_min_ofdm = 80, |
| 123 | .auto_corr_min_ofdm_mrc = 128, |
| 124 | .auto_corr_min_ofdm_x1 = 105, |
| 125 | .auto_corr_min_ofdm_mrc_x1 = 192, |
| 126 | |
| 127 | .auto_corr_max_ofdm = 145, |
| 128 | .auto_corr_max_ofdm_mrc = 232, |
Wey-Yi Guy | 2494f63 | 2010-01-20 12:22:52 -0800 | [diff] [blame] | 129 | .auto_corr_max_ofdm_x1 = 110, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 130 | .auto_corr_max_ofdm_mrc_x1 = 232, |
| 131 | |
| 132 | .auto_corr_min_cck = 125, |
| 133 | .auto_corr_max_cck = 175, |
| 134 | .auto_corr_min_cck_mrc = 160, |
| 135 | .auto_corr_max_cck_mrc = 310, |
| 136 | .nrg_th_cck = 97, |
| 137 | .nrg_th_ofdm = 100, |
Wey-Yi Guy | 55036d6 | 2009-10-09 13:20:24 -0700 | [diff] [blame] | 138 | |
| 139 | .barker_corr_th_min = 190, |
| 140 | .barker_corr_th_min_mrc = 390, |
| 141 | .nrg_th_cca = 62, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) |
| 145 | { |
Wey-Yi Guy | 88804e2 | 2009-10-09 13:20:28 -0700 | [diff] [blame] | 146 | if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES && |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 147 | priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES) |
Wey-Yi Guy | 88804e2 | 2009-10-09 13:20:28 -0700 | [diff] [blame] | 148 | priv->cfg->num_of_queues = |
| 149 | priv->cfg->mod_params->num_of_queues; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 150 | |
Wey-Yi Guy | 88804e2 | 2009-10-09 13:20:28 -0700 | [diff] [blame] | 151 | priv->hw_params.max_txq_num = priv->cfg->num_of_queues; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 152 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
| 153 | priv->hw_params.scd_bc_tbls_size = |
Wey-Yi Guy | 88804e2 | 2009-10-09 13:20:28 -0700 | [diff] [blame] | 154 | priv->cfg->num_of_queues * |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 155 | sizeof(struct iwlagn_scd_bc_tbl); |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 156 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
| 157 | priv->hw_params.max_stations = IWL5000_STATION_COUNT; |
| 158 | priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID; |
| 159 | |
| 160 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; |
| 161 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; |
| 162 | |
| 163 | priv->hw_params.max_bsm_size = 0; |
| 164 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
| 165 | BIT(IEEE80211_BAND_5GHZ); |
| 166 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; |
| 167 | |
| 168 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); |
| 169 | priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant); |
| 170 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; |
| 171 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; |
| 172 | |
| 173 | if (priv->cfg->ops->lib->temp_ops.set_ct_kill) |
| 174 | priv->cfg->ops->lib->temp_ops.set_ct_kill(priv); |
| 175 | |
| 176 | /* Set initial sensitivity parameters */ |
| 177 | /* Set initial calibration set */ |
| 178 | priv->hw_params.sens = &iwl6000_sensitivity; |
Wey-Yi Guy | e517736a | 2010-04-19 18:49:40 -0700 | [diff] [blame^] | 179 | priv->hw_params.calib_init_cfg = |
| 180 | BIT(IWL_CALIB_XTAL) | |
| 181 | BIT(IWL_CALIB_LO) | |
| 182 | BIT(IWL_CALIB_TX_IQ) | |
| 183 | BIT(IWL_CALIB_BASE_BAND); |
Abhijeet Kolekar | 07f33f9 | 2010-01-22 14:22:47 -0800 | [diff] [blame] | 184 | |
Wey-Yi Guy | e517736a | 2010-04-19 18:49:40 -0700 | [diff] [blame^] | 185 | return 0; |
| 186 | } |
| 187 | |
| 188 | static int iwl6050_hw_set_hw_params(struct iwl_priv *priv) |
| 189 | { |
| 190 | if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES && |
| 191 | priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES) |
| 192 | priv->cfg->num_of_queues = |
| 193 | priv->cfg->mod_params->num_of_queues; |
| 194 | |
| 195 | priv->hw_params.max_txq_num = priv->cfg->num_of_queues; |
| 196 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
| 197 | priv->hw_params.scd_bc_tbls_size = |
| 198 | priv->cfg->num_of_queues * |
| 199 | sizeof(struct iwlagn_scd_bc_tbl); |
| 200 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
| 201 | priv->hw_params.max_stations = IWL5000_STATION_COUNT; |
| 202 | priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID; |
| 203 | |
| 204 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; |
| 205 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; |
| 206 | |
| 207 | priv->hw_params.max_bsm_size = 0; |
| 208 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
| 209 | BIT(IEEE80211_BAND_5GHZ); |
| 210 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; |
| 211 | |
| 212 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); |
| 213 | priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant); |
| 214 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; |
| 215 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; |
| 216 | |
| 217 | if (priv->cfg->ops->lib->temp_ops.set_ct_kill) |
| 218 | priv->cfg->ops->lib->temp_ops.set_ct_kill(priv); |
| 219 | |
| 220 | /* Set initial sensitivity parameters */ |
| 221 | /* Set initial calibration set */ |
| 222 | priv->hw_params.sens = &iwl6000_sensitivity; |
| 223 | priv->hw_params.calib_init_cfg = |
| 224 | BIT(IWL_CALIB_XTAL) | |
| 225 | BIT(IWL_CALIB_DC) | |
| 226 | BIT(IWL_CALIB_LO) | |
| 227 | BIT(IWL_CALIB_TX_IQ) | |
| 228 | BIT(IWL_CALIB_BASE_BAND); |
Abhijeet Kolekar | 07f33f9 | 2010-01-22 14:22:47 -0800 | [diff] [blame] | 229 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 230 | return 0; |
| 231 | } |
| 232 | |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 233 | static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel) |
| 234 | { |
| 235 | struct iwl6000_channel_switch_cmd cmd; |
| 236 | const struct iwl_channel_info *ch_info; |
| 237 | struct iwl_host_cmd hcmd = { |
| 238 | .id = REPLY_CHANNEL_SWITCH, |
| 239 | .len = sizeof(cmd), |
| 240 | .flags = CMD_SIZE_HUGE, |
| 241 | .data = &cmd, |
| 242 | }; |
| 243 | |
| 244 | IWL_DEBUG_11H(priv, "channel switch from %d to %d\n", |
| 245 | priv->active_rxon.channel, channel); |
| 246 | |
| 247 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
| 248 | cmd.channel = cpu_to_le16(channel); |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 249 | cmd.rxon_flags = priv->staging_rxon.flags; |
| 250 | cmd.rxon_filter_flags = priv->staging_rxon.filter_flags; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 251 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); |
| 252 | ch_info = iwl_get_channel_info(priv, priv->band, channel); |
| 253 | if (ch_info) |
| 254 | cmd.expect_beacon = is_channel_radar(ch_info); |
| 255 | else { |
| 256 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
| 257 | priv->active_rxon.channel, channel); |
| 258 | return -EFAULT; |
| 259 | } |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 260 | priv->switch_rxon.channel = cpu_to_le16(channel); |
| 261 | priv->switch_rxon.switch_in_progress = true; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 262 | |
| 263 | return iwl_send_cmd_sync(priv, &hcmd); |
| 264 | } |
| 265 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 266 | static struct iwl_lib_ops iwl6000_lib = { |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 267 | .set_hw_params = iwl6000_hw_set_hw_params, |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 268 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
| 269 | .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl, |
| 270 | .txq_set_sched = iwlagn_txq_set_sched, |
| 271 | .txq_agg_enable = iwlagn_txq_agg_enable, |
| 272 | .txq_agg_disable = iwlagn_txq_agg_disable, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 273 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
| 274 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
| 275 | .txq_init = iwl_hw_tx_queue_init, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 276 | .rx_handler_setup = iwlagn_rx_handler_setup, |
| 277 | .setup_deferred_work = iwlagn_setup_deferred_work, |
| 278 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
Wey-Yi Guy | 81b8176 | 2010-03-16 10:23:30 -0700 | [diff] [blame] | 279 | .load_ucode = iwlagn_load_ucode, |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 280 | .dump_nic_event_log = iwl_dump_nic_event_log, |
| 281 | .dump_nic_error_log = iwl_dump_nic_error_log, |
Wey-Yi Guy | 696bdee | 2009-12-10 14:37:25 -0800 | [diff] [blame] | 282 | .dump_csr = iwl_dump_csr, |
Wey-Yi Guy | 1b3eb82 | 2010-01-15 13:43:39 -0800 | [diff] [blame] | 283 | .dump_fh = iwl_dump_fh, |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 284 | .init_alive_start = iwlagn_init_alive_start, |
| 285 | .alive_notify = iwlagn_alive_notify, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 286 | .send_tx_power = iwlagn_send_tx_power, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 287 | .update_chain_flags = iwl_update_chain_flags, |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 288 | .set_channel_switch = iwl6000_hw_channel_switch, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 289 | .apm_ops = { |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 290 | .init = iwl_apm_init, |
Abhijeet Kolekar | d68b603 | 2009-10-02 13:44:04 -0700 | [diff] [blame] | 291 | .stop = iwl_apm_stop, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 292 | .config = iwl6000_nic_config, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 293 | .set_pwr_src = iwl_set_pwr_src, |
| 294 | }, |
| 295 | .eeprom_ops = { |
| 296 | .regulatory_bands = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 297 | EEPROM_REG_BAND_1_CHANNELS, |
| 298 | EEPROM_REG_BAND_2_CHANNELS, |
| 299 | EEPROM_REG_BAND_3_CHANNELS, |
| 300 | EEPROM_REG_BAND_4_CHANNELS, |
| 301 | EEPROM_REG_BAND_5_CHANNELS, |
Shanyu Zhao | f2fa1b0 | 2010-04-07 18:37:52 -0700 | [diff] [blame] | 302 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 303 | EEPROM_REG_BAND_52_HT40_CHANNELS |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 304 | }, |
| 305 | .verify_signature = iwlcore_eeprom_verify_signature, |
| 306 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, |
| 307 | .release_semaphore = iwlcore_eeprom_release_semaphore, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 308 | .calib_version = iwlagn_eeprom_calib_version, |
| 309 | .query_addr = iwlagn_eeprom_query_addr, |
Wey-Yi Guy | ab9fd1b | 2009-08-21 13:34:23 -0700 | [diff] [blame] | 310 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 311 | }, |
| 312 | .post_associate = iwl_post_associate, |
| 313 | .isr = iwl_isr_ict, |
| 314 | .config_ap = iwl_config_ap, |
| 315 | .temp_ops = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 316 | .temperature = iwlagn_temperature, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 317 | .set_ct_kill = iwl6000_set_ct_threshold, |
| 318 | }, |
Reinette Chatre | 3459ab5 | 2010-01-22 14:22:49 -0800 | [diff] [blame] | 319 | .add_bcast_station = iwl_add_bcast_station, |
Abhijeet Kolekar | b8c7626 | 2010-04-08 15:29:07 -0700 | [diff] [blame] | 320 | .debugfs_ops = { |
| 321 | .rx_stats_read = iwl_ucode_rx_stats_read, |
| 322 | .tx_stats_read = iwl_ucode_tx_stats_read, |
| 323 | .general_stats_read = iwl_ucode_general_stats_read, |
| 324 | }, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 325 | .recover_from_tx_stall = iwl_bg_monitor_recover, |
Wey-Yi Guy | fa8f130c | 2010-03-05 14:22:46 -0800 | [diff] [blame] | 326 | .check_plcp_health = iwl_good_plcp_health, |
| 327 | .check_ack_health = iwl_good_ack_health, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 328 | }; |
| 329 | |
Emese Revfy | 45d5d80 | 2009-12-14 00:59:53 +0100 | [diff] [blame] | 330 | static const struct iwl_ops iwl6000_ops = { |
Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 331 | .ucode = &iwlagn_ucode, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 332 | .lib = &iwl6000_lib, |
Wey-Yi Guy | 7dc77db | 2010-03-16 10:23:31 -0700 | [diff] [blame] | 333 | .hcmd = &iwlagn_hcmd, |
| 334 | .utils = &iwlagn_hcmd_utils, |
Johannes Berg | e932a60 | 2009-10-02 13:44:03 -0700 | [diff] [blame] | 335 | .led = &iwlagn_led_ops, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 336 | }; |
| 337 | |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 338 | static struct iwl_lib_ops iwl6050_lib = { |
Wey-Yi Guy | e517736a | 2010-04-19 18:49:40 -0700 | [diff] [blame^] | 339 | .set_hw_params = iwl6050_hw_set_hw_params, |
Wey-Yi Guy | b305a08 | 2010-03-16 17:41:22 -0700 | [diff] [blame] | 340 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
| 341 | .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl, |
| 342 | .txq_set_sched = iwlagn_txq_set_sched, |
| 343 | .txq_agg_enable = iwlagn_txq_agg_enable, |
| 344 | .txq_agg_disable = iwlagn_txq_agg_disable, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 345 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
| 346 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
| 347 | .txq_init = iwl_hw_tx_queue_init, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 348 | .rx_handler_setup = iwlagn_rx_handler_setup, |
| 349 | .setup_deferred_work = iwlagn_setup_deferred_work, |
| 350 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
Wey-Yi Guy | 81b8176 | 2010-03-16 10:23:30 -0700 | [diff] [blame] | 351 | .load_ucode = iwlagn_load_ucode, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 352 | .dump_nic_event_log = iwl_dump_nic_event_log, |
| 353 | .dump_nic_error_log = iwl_dump_nic_error_log, |
| 354 | .dump_csr = iwl_dump_csr, |
| 355 | .dump_fh = iwl_dump_fh, |
Wey-Yi Guy | 741a626 | 2010-03-16 12:37:24 -0700 | [diff] [blame] | 356 | .init_alive_start = iwlagn_init_alive_start, |
| 357 | .alive_notify = iwlagn_alive_notify, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 358 | .send_tx_power = iwlagn_send_tx_power, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 359 | .update_chain_flags = iwl_update_chain_flags, |
| 360 | .set_channel_switch = iwl6000_hw_channel_switch, |
| 361 | .apm_ops = { |
| 362 | .init = iwl_apm_init, |
| 363 | .stop = iwl_apm_stop, |
| 364 | .config = iwl6000_nic_config, |
| 365 | .set_pwr_src = iwl_set_pwr_src, |
| 366 | }, |
| 367 | .eeprom_ops = { |
| 368 | .regulatory_bands = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 369 | EEPROM_REG_BAND_1_CHANNELS, |
| 370 | EEPROM_REG_BAND_2_CHANNELS, |
| 371 | EEPROM_REG_BAND_3_CHANNELS, |
| 372 | EEPROM_REG_BAND_4_CHANNELS, |
| 373 | EEPROM_REG_BAND_5_CHANNELS, |
Shanyu Zhao | f2fa1b0 | 2010-04-07 18:37:52 -0700 | [diff] [blame] | 374 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 375 | EEPROM_REG_BAND_52_HT40_CHANNELS |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 376 | }, |
| 377 | .verify_signature = iwlcore_eeprom_verify_signature, |
| 378 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, |
| 379 | .release_semaphore = iwlcore_eeprom_release_semaphore, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 380 | .calib_version = iwlagn_eeprom_calib_version, |
| 381 | .query_addr = iwlagn_eeprom_query_addr, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 382 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
| 383 | }, |
| 384 | .post_associate = iwl_post_associate, |
| 385 | .isr = iwl_isr_ict, |
| 386 | .config_ap = iwl_config_ap, |
| 387 | .temp_ops = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 388 | .temperature = iwlagn_temperature, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 389 | .set_ct_kill = iwl6000_set_ct_threshold, |
| 390 | .set_calib_version = iwl6050_set_calib_version, |
| 391 | }, |
| 392 | .add_bcast_station = iwl_add_bcast_station, |
Abhijeet Kolekar | b8c7626 | 2010-04-08 15:29:07 -0700 | [diff] [blame] | 393 | .debugfs_ops = { |
| 394 | .rx_stats_read = iwl_ucode_rx_stats_read, |
| 395 | .tx_stats_read = iwl_ucode_tx_stats_read, |
| 396 | .general_stats_read = iwl_ucode_general_stats_read, |
| 397 | }, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 398 | .recover_from_tx_stall = iwl_bg_monitor_recover, |
Wey-Yi Guy | fa8f130c | 2010-03-05 14:22:46 -0800 | [diff] [blame] | 399 | .check_plcp_health = iwl_good_plcp_health, |
| 400 | .check_ack_health = iwl_good_ack_health, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 401 | }; |
| 402 | |
| 403 | static const struct iwl_ops iwl6050_ops = { |
Wey-Yi Guy | 792bc3c | 2010-03-16 10:23:29 -0700 | [diff] [blame] | 404 | .ucode = &iwlagn_ucode, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 405 | .lib = &iwl6050_lib, |
Wey-Yi Guy | 7dc77db | 2010-03-16 10:23:31 -0700 | [diff] [blame] | 406 | .hcmd = &iwlagn_hcmd, |
| 407 | .utils = &iwlagn_hcmd_utils, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 408 | .led = &iwlagn_led_ops, |
| 409 | }; |
| 410 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 411 | /* |
| 412 | * "i": Internal configuration, use internal Power Amplifier |
| 413 | */ |
Wey-Yi Guy | 33e6f81 | 2010-04-09 09:36:11 -0700 | [diff] [blame] | 414 | struct iwl_cfg iwl6000g2_2agn_cfg = { |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 415 | .name = "6000 Series 2x2 AGN Gen2", |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 416 | .fw_name_pre = IWL6000G2_FW_PRE, |
| 417 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, |
| 418 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 419 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
| 420 | .ops = &iwl6000_ops, |
| 421 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 422 | .eeprom_ver = EEPROM_6000G2_EEPROM_VERSION, |
| 423 | .eeprom_calib_ver = EEPROM_6000G2_TX_POWER_VERSION, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 424 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 425 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 426 | .mod_params = &iwlagn_mod_params, |
| 427 | .valid_tx_ant = ANT_AB, |
| 428 | .valid_rx_ant = ANT_AB, |
| 429 | .pll_cfg_val = 0, |
| 430 | .set_l0s = true, |
| 431 | .use_bsm = false, |
Wey-Yi Guy | 33e6f81 | 2010-04-09 09:36:11 -0700 | [diff] [blame] | 432 | .pa_type = IWL_PA_SYSTEM, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 433 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 434 | .shadow_ram_support = true, |
| 435 | .ht_greenfield_support = true, |
| 436 | .led_compensation = 51, |
| 437 | .use_rts_for_ht = true, /* use rts/cts protection */ |
| 438 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
| 439 | .supports_idle = true, |
| 440 | .adv_thermal_throttle = true, |
| 441 | .support_ct_kill_exit = true, |
| 442 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 443 | .chain_noise_scale = 1000, |
| 444 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 445 | .max_event_log_size = 1024, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 446 | }; |
| 447 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 448 | struct iwl_cfg iwl6000i_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 449 | .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN", |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 450 | .fw_name_pre = IWL6000_FW_PRE, |
| 451 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 452 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 453 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
| 454 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 455 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 456 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Wey-Yi Guy | 00e7059 | 2010-03-16 12:37:26 -0700 | [diff] [blame] | 457 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 458 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 459 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 460 | .mod_params = &iwlagn_mod_params, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 461 | .valid_tx_ant = ANT_BC, |
| 462 | .valid_rx_ant = ANT_BC, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 463 | .pll_cfg_val = 0, |
Ben Cahill | a6c5c73 | 2009-10-30 14:36:07 -0700 | [diff] [blame] | 464 | .set_l0s = true, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 465 | .use_bsm = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 466 | .pa_type = IWL_PA_INTERNAL, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 467 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 468 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 469 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 470 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 471 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Wey-Yi Guy | d8c07e7 | 2009-09-25 14:24:26 -0700 | [diff] [blame] | 472 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Johannes Berg | 78f5fb7 | 2009-09-25 14:24:27 -0700 | [diff] [blame] | 473 | .supports_idle = true, |
Wey-Yi Guy | 6047b4f | 2009-10-23 13:42:27 -0700 | [diff] [blame] | 474 | .adv_thermal_throttle = true, |
Wey-Yi Guy | 480e840 | 2009-10-23 13:42:28 -0700 | [diff] [blame] | 475 | .support_ct_kill_exit = true, |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 476 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
Ben Cahill | d4fe5ac | 2010-02-05 11:33:46 -0800 | [diff] [blame] | 477 | .chain_noise_scale = 1000, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 478 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 479 | .max_event_log_size = 1024, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 480 | }; |
| 481 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 482 | struct iwl_cfg iwl6000i_2abg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 483 | .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG", |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 484 | .fw_name_pre = IWL6000_FW_PRE, |
| 485 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 486 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 487 | .sku = IWL_SKU_A|IWL_SKU_G, |
| 488 | .ops = &iwl6000_ops, |
| 489 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 490 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Wey-Yi Guy | 00e7059 | 2010-03-16 12:37:26 -0700 | [diff] [blame] | 491 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 492 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 493 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 494 | .mod_params = &iwlagn_mod_params, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 495 | .valid_tx_ant = ANT_BC, |
| 496 | .valid_rx_ant = ANT_BC, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 497 | .pll_cfg_val = 0, |
Ben Cahill | a6c5c73 | 2009-10-30 14:36:07 -0700 | [diff] [blame] | 498 | .set_l0s = true, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 499 | .use_bsm = false, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 500 | .pa_type = IWL_PA_INTERNAL, |
| 501 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 502 | .shadow_ram_support = true, |
| 503 | .ht_greenfield_support = true, |
| 504 | .led_compensation = 51, |
Wey-Yi Guy | d8c07e7 | 2009-09-25 14:24:26 -0700 | [diff] [blame] | 505 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Johannes Berg | 78f5fb7 | 2009-09-25 14:24:27 -0700 | [diff] [blame] | 506 | .supports_idle = true, |
Wey-Yi Guy | 6047b4f | 2009-10-23 13:42:27 -0700 | [diff] [blame] | 507 | .adv_thermal_throttle = true, |
Wey-Yi Guy | 480e840 | 2009-10-23 13:42:28 -0700 | [diff] [blame] | 508 | .support_ct_kill_exit = true, |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 509 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
Ben Cahill | d4fe5ac | 2010-02-05 11:33:46 -0800 | [diff] [blame] | 510 | .chain_noise_scale = 1000, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 511 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 512 | .max_event_log_size = 1024, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 513 | }; |
| 514 | |
| 515 | struct iwl_cfg iwl6000i_2bg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 516 | .name = "Intel(R) Centrino(R) Advanced-N 6200 BG", |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 517 | .fw_name_pre = IWL6000_FW_PRE, |
| 518 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 519 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 520 | .sku = IWL_SKU_G, |
| 521 | .ops = &iwl6000_ops, |
| 522 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 523 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Wey-Yi Guy | 00e7059 | 2010-03-16 12:37:26 -0700 | [diff] [blame] | 524 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 525 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 526 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 527 | .mod_params = &iwlagn_mod_params, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 528 | .valid_tx_ant = ANT_BC, |
| 529 | .valid_rx_ant = ANT_BC, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 530 | .pll_cfg_val = 0, |
Ben Cahill | a6c5c73 | 2009-10-30 14:36:07 -0700 | [diff] [blame] | 531 | .set_l0s = true, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 532 | .use_bsm = false, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 533 | .pa_type = IWL_PA_INTERNAL, |
| 534 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 535 | .shadow_ram_support = true, |
| 536 | .ht_greenfield_support = true, |
| 537 | .led_compensation = 51, |
Wey-Yi Guy | d8c07e7 | 2009-09-25 14:24:26 -0700 | [diff] [blame] | 538 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Johannes Berg | 78f5fb7 | 2009-09-25 14:24:27 -0700 | [diff] [blame] | 539 | .supports_idle = true, |
Wey-Yi Guy | 6047b4f | 2009-10-23 13:42:27 -0700 | [diff] [blame] | 540 | .adv_thermal_throttle = true, |
Wey-Yi Guy | 480e840 | 2009-10-23 13:42:28 -0700 | [diff] [blame] | 541 | .support_ct_kill_exit = true, |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 542 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
Ben Cahill | d4fe5ac | 2010-02-05 11:33:46 -0800 | [diff] [blame] | 543 | .chain_noise_scale = 1000, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 544 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 545 | .max_event_log_size = 1024, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 546 | }; |
| 547 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 548 | struct iwl_cfg iwl6050_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 549 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN", |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 550 | .fw_name_pre = IWL6050_FW_PRE, |
| 551 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
| 552 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
| 553 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 554 | .ops = &iwl6050_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 555 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 32b7e24 | 2009-10-16 14:25:51 -0700 | [diff] [blame] | 556 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, |
Wey-Yi Guy | 00e7059 | 2010-03-16 12:37:26 -0700 | [diff] [blame] | 557 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 558 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 559 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 560 | .mod_params = &iwlagn_mod_params, |
Jay Sternberg | 542cc79 | 2009-05-08 13:44:46 -0700 | [diff] [blame] | 561 | .valid_tx_ant = ANT_AB, |
| 562 | .valid_rx_ant = ANT_AB, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 563 | .pll_cfg_val = 0, |
Ben Cahill | a6c5c73 | 2009-10-30 14:36:07 -0700 | [diff] [blame] | 564 | .set_l0s = true, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 565 | .use_bsm = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 566 | .pa_type = IWL_PA_SYSTEM, |
Wey-Yi Guy | 3ab312a | 2009-10-16 14:25:52 -0700 | [diff] [blame] | 567 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 568 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 569 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 570 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 571 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Wey-Yi Guy | d8c07e7 | 2009-09-25 14:24:26 -0700 | [diff] [blame] | 572 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Johannes Berg | 78f5fb7 | 2009-09-25 14:24:27 -0700 | [diff] [blame] | 573 | .supports_idle = true, |
Wey-Yi Guy | 6047b4f | 2009-10-23 13:42:27 -0700 | [diff] [blame] | 574 | .adv_thermal_throttle = true, |
Wey-Yi Guy | 480e840 | 2009-10-23 13:42:28 -0700 | [diff] [blame] | 575 | .support_ct_kill_exit = true, |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 576 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
Ben Cahill | d4fe5ac | 2010-02-05 11:33:46 -0800 | [diff] [blame] | 577 | .chain_noise_scale = 1500, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 578 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 579 | .max_event_log_size = 1024, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 580 | }; |
| 581 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 582 | struct iwl_cfg iwl6050_2abg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 583 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG", |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 584 | .fw_name_pre = IWL6050_FW_PRE, |
| 585 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
| 586 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
| 587 | .sku = IWL_SKU_A|IWL_SKU_G, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 588 | .ops = &iwl6050_ops, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 589 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 32b7e24 | 2009-10-16 14:25:51 -0700 | [diff] [blame] | 590 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, |
Wey-Yi Guy | 00e7059 | 2010-03-16 12:37:26 -0700 | [diff] [blame] | 591 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 592 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 593 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 594 | .mod_params = &iwlagn_mod_params, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 595 | .valid_tx_ant = ANT_AB, |
| 596 | .valid_rx_ant = ANT_AB, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 597 | .pll_cfg_val = 0, |
Ben Cahill | a6c5c73 | 2009-10-30 14:36:07 -0700 | [diff] [blame] | 598 | .set_l0s = true, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 599 | .use_bsm = false, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 600 | .pa_type = IWL_PA_SYSTEM, |
Wey-Yi Guy | 3ab312a | 2009-10-16 14:25:52 -0700 | [diff] [blame] | 601 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 602 | .shadow_ram_support = true, |
| 603 | .ht_greenfield_support = true, |
| 604 | .led_compensation = 51, |
Wey-Yi Guy | d8c07e7 | 2009-09-25 14:24:26 -0700 | [diff] [blame] | 605 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Johannes Berg | 78f5fb7 | 2009-09-25 14:24:27 -0700 | [diff] [blame] | 606 | .supports_idle = true, |
Wey-Yi Guy | 6047b4f | 2009-10-23 13:42:27 -0700 | [diff] [blame] | 607 | .adv_thermal_throttle = true, |
Wey-Yi Guy | 480e840 | 2009-10-23 13:42:28 -0700 | [diff] [blame] | 608 | .support_ct_kill_exit = true, |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 609 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
Ben Cahill | d4fe5ac | 2010-02-05 11:33:46 -0800 | [diff] [blame] | 610 | .chain_noise_scale = 1500, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 611 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 612 | .max_event_log_size = 1024, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 613 | }; |
| 614 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 615 | struct iwl_cfg iwl6000_3agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 616 | .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN", |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 617 | .fw_name_pre = IWL6000_FW_PRE, |
| 618 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 619 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 620 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 621 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 622 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 623 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Wey-Yi Guy | 00e7059 | 2010-03-16 12:37:26 -0700 | [diff] [blame] | 624 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 625 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 626 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Wey-Yi Guy | 348ee7cd | 2010-03-16 12:37:27 -0700 | [diff] [blame] | 627 | .mod_params = &iwlagn_mod_params, |
Jay Sternberg | c0bac76 | 2009-02-02 16:21:14 -0800 | [diff] [blame] | 628 | .valid_tx_ant = ANT_ABC, |
| 629 | .valid_rx_ant = ANT_ABC, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 630 | .pll_cfg_val = 0, |
Ben Cahill | a6c5c73 | 2009-10-30 14:36:07 -0700 | [diff] [blame] | 631 | .set_l0s = true, |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 632 | .use_bsm = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 633 | .pa_type = IWL_PA_SYSTEM, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 634 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 635 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 636 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 637 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 638 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Wey-Yi Guy | d8c07e7 | 2009-09-25 14:24:26 -0700 | [diff] [blame] | 639 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Johannes Berg | 78f5fb7 | 2009-09-25 14:24:27 -0700 | [diff] [blame] | 640 | .supports_idle = true, |
Wey-Yi Guy | 6047b4f | 2009-10-23 13:42:27 -0700 | [diff] [blame] | 641 | .adv_thermal_throttle = true, |
Wey-Yi Guy | 480e840 | 2009-10-23 13:42:28 -0700 | [diff] [blame] | 642 | .support_ct_kill_exit = true, |
Trieu 'Andrew' Nguyen | 3e4fb5f | 2010-01-22 14:22:46 -0800 | [diff] [blame] | 643 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
Ben Cahill | d4fe5ac | 2010-02-05 11:33:46 -0800 | [diff] [blame] | 644 | .chain_noise_scale = 1000, |
Wey-Yi Guy | b74e31a | 2010-03-01 17:23:50 -0800 | [diff] [blame] | 645 | .monitor_recover_period = IWL_MONITORING_PERIOD, |
Wey-Yi Guy | 678b385 | 2010-03-26 12:54:37 -0700 | [diff] [blame] | 646 | .max_event_log_size = 1024, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 647 | }; |
| 648 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 649 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
| 650 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 651 | MODULE_FIRMWARE(IWL6000G2_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |