Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Wey-Yi Guy | 901069c | 2011-04-05 09:42:00 -0700 | [diff] [blame] | 3 | * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved. |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -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" |
| 45 | #include "iwl-agn.h" |
| 46 | #include "iwl-helpers.h" |
| 47 | #include "iwl-agn-hw.h" |
| 48 | #include "iwl-6000-hw.h" |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 49 | #include "iwl-agn-debugfs.h" |
| 50 | |
| 51 | /* Highest firmware API version supported */ |
| 52 | #define IWL2030_UCODE_API_MAX 5 |
| 53 | #define IWL2000_UCODE_API_MAX 5 |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 54 | #define IWL105_UCODE_API_MAX 5 |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 55 | |
| 56 | /* Lowest firmware API version supported */ |
| 57 | #define IWL2030_UCODE_API_MIN 5 |
| 58 | #define IWL2000_UCODE_API_MIN 5 |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 59 | #define IWL105_UCODE_API_MIN 5 |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 60 | |
| 61 | #define IWL2030_FW_PRE "iwlwifi-2030-" |
root | 1d5cc555 | 2011-03-28 16:12:43 -0700 | [diff] [blame] | 62 | #define IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE #api ".ucode" |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 63 | |
| 64 | #define IWL2000_FW_PRE "iwlwifi-2000-" |
root | 1d5cc555 | 2011-03-28 16:12:43 -0700 | [diff] [blame] | 65 | #define IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE #api ".ucode" |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 66 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 67 | #define IWL105_FW_PRE "iwlwifi-105-" |
| 68 | #define IWL105_MODULE_FIRMWARE(api) IWL105_FW_PRE #api ".ucode" |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 69 | |
| 70 | static void iwl2000_set_ct_threshold(struct iwl_priv *priv) |
| 71 | { |
| 72 | /* want Celsius */ |
| 73 | priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD; |
| 74 | priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD; |
| 75 | } |
| 76 | |
| 77 | /* NIC configuration for 2000 series */ |
| 78 | static void iwl2000_nic_config(struct iwl_priv *priv) |
| 79 | { |
| 80 | u16 radio_cfg; |
| 81 | |
| 82 | radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG); |
| 83 | |
| 84 | /* write radio config values to register */ |
| 85 | if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX) |
| 86 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 87 | EEPROM_RF_CFG_TYPE_MSK(radio_cfg) | |
| 88 | EEPROM_RF_CFG_STEP_MSK(radio_cfg) | |
| 89 | EEPROM_RF_CFG_DASH_MSK(radio_cfg)); |
| 90 | |
| 91 | /* set CSR_HW_CONFIG_REG for uCode use */ |
| 92 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 93 | CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI | |
| 94 | CSR_HW_IF_CONFIG_REG_BIT_MAC_SI); |
| 95 | |
Wey-Yi Guy | 52e6b85 | 2011-01-18 08:58:48 -0800 | [diff] [blame] | 96 | if (priv->cfg->iq_invert) |
| 97 | iwl_set_bit(priv, CSR_GP_DRIVER_REG, |
| 98 | CSR_GP_DRIVER_REG_BIT_RADIO_IQ_INVER); |
| 99 | |
Wey-Yi Guy | dcf6640 | 2011-04-01 13:20:44 -0700 | [diff] [blame] | 100 | if (priv->cfg->disable_otp_refresh) |
| 101 | iwl_write_prph(priv, APMG_ANALOG_SVR_REG, 0x80000010); |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | static struct iwl_sensitivity_ranges iwl2000_sensitivity = { |
| 105 | .min_nrg_cck = 97, |
| 106 | .max_nrg_cck = 0, /* not used, set to 0 */ |
| 107 | .auto_corr_min_ofdm = 80, |
| 108 | .auto_corr_min_ofdm_mrc = 128, |
| 109 | .auto_corr_min_ofdm_x1 = 105, |
| 110 | .auto_corr_min_ofdm_mrc_x1 = 192, |
| 111 | |
| 112 | .auto_corr_max_ofdm = 145, |
| 113 | .auto_corr_max_ofdm_mrc = 232, |
| 114 | .auto_corr_max_ofdm_x1 = 110, |
| 115 | .auto_corr_max_ofdm_mrc_x1 = 232, |
| 116 | |
| 117 | .auto_corr_min_cck = 125, |
| 118 | .auto_corr_max_cck = 175, |
| 119 | .auto_corr_min_cck_mrc = 160, |
| 120 | .auto_corr_max_cck_mrc = 310, |
| 121 | .nrg_th_cck = 97, |
| 122 | .nrg_th_ofdm = 100, |
| 123 | |
| 124 | .barker_corr_th_min = 190, |
| 125 | .barker_corr_th_min_mrc = 390, |
| 126 | .nrg_th_cca = 62, |
| 127 | }; |
| 128 | |
| 129 | static int iwl2000_hw_set_hw_params(struct iwl_priv *priv) |
| 130 | { |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 131 | if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES && |
| 132 | iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES) |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 133 | priv->cfg->base_params->num_of_queues = |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 134 | iwlagn_mod_params.num_of_queues; |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 135 | |
| 136 | priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues; |
| 137 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
| 138 | priv->hw_params.scd_bc_tbls_size = |
| 139 | priv->cfg->base_params->num_of_queues * |
| 140 | sizeof(struct iwlagn_scd_bc_tbl); |
| 141 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
| 142 | priv->hw_params.max_stations = IWLAGN_STATION_COUNT; |
| 143 | priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID; |
| 144 | |
| 145 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; |
| 146 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; |
| 147 | |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 148 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
| 149 | BIT(IEEE80211_BAND_5GHZ); |
| 150 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; |
| 151 | |
| 152 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); |
| 153 | if (priv->cfg->rx_with_siso_diversity) |
| 154 | priv->hw_params.rx_chains_num = 1; |
| 155 | else |
| 156 | priv->hw_params.rx_chains_num = |
| 157 | num_of_ant(priv->cfg->valid_rx_ant); |
| 158 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; |
| 159 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; |
| 160 | |
| 161 | iwl2000_set_ct_threshold(priv); |
| 162 | |
| 163 | /* Set initial sensitivity parameters */ |
| 164 | /* Set initial calibration set */ |
| 165 | priv->hw_params.sens = &iwl2000_sensitivity; |
| 166 | priv->hw_params.calib_init_cfg = |
| 167 | BIT(IWL_CALIB_XTAL) | |
| 168 | BIT(IWL_CALIB_LO) | |
| 169 | BIT(IWL_CALIB_TX_IQ) | |
| 170 | BIT(IWL_CALIB_BASE_BAND); |
| 171 | if (priv->cfg->need_dc_calib) |
| 172 | priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX); |
| 173 | if (priv->cfg->need_temp_offset_calib) |
| 174 | priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET); |
| 175 | |
| 176 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; |
| 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | static int iwl2030_hw_channel_switch(struct iwl_priv *priv, |
| 182 | struct ieee80211_channel_switch *ch_switch) |
| 183 | { |
| 184 | /* |
| 185 | * MULTI-FIXME |
| 186 | * See iwl_mac_channel_switch. |
| 187 | */ |
| 188 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 189 | struct iwl6000_channel_switch_cmd cmd; |
| 190 | const struct iwl_channel_info *ch_info; |
| 191 | u32 switch_time_in_usec, ucode_switch_time; |
| 192 | u16 ch; |
| 193 | u32 tsf_low; |
| 194 | u8 switch_count; |
| 195 | u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval); |
| 196 | struct ieee80211_vif *vif = ctx->vif; |
| 197 | struct iwl_host_cmd hcmd = { |
| 198 | .id = REPLY_CHANNEL_SWITCH, |
| 199 | .len = sizeof(cmd), |
| 200 | .flags = CMD_SYNC, |
| 201 | .data = &cmd, |
| 202 | }; |
| 203 | |
| 204 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
| 205 | ch = ch_switch->channel->hw_value; |
| 206 | IWL_DEBUG_11H(priv, "channel switch from %u to %u\n", |
| 207 | ctx->active.channel, ch); |
| 208 | cmd.channel = cpu_to_le16(ch); |
| 209 | cmd.rxon_flags = ctx->staging.flags; |
| 210 | cmd.rxon_filter_flags = ctx->staging.filter_flags; |
| 211 | switch_count = ch_switch->count; |
| 212 | tsf_low = ch_switch->timestamp & 0x0ffffffff; |
| 213 | /* |
| 214 | * calculate the ucode channel switch time |
| 215 | * adding TSF as one of the factor for when to switch |
| 216 | */ |
| 217 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { |
| 218 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / |
| 219 | beacon_interval)) { |
| 220 | switch_count -= (priv->ucode_beacon_time - |
| 221 | tsf_low) / beacon_interval; |
| 222 | } else |
| 223 | switch_count = 0; |
| 224 | } |
| 225 | if (switch_count <= 1) |
| 226 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); |
| 227 | else { |
| 228 | switch_time_in_usec = |
| 229 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; |
| 230 | ucode_switch_time = iwl_usecs_to_beacons(priv, |
| 231 | switch_time_in_usec, |
| 232 | beacon_interval); |
| 233 | cmd.switch_time = iwl_add_beacon_time(priv, |
| 234 | priv->ucode_beacon_time, |
| 235 | ucode_switch_time, |
| 236 | beacon_interval); |
| 237 | } |
| 238 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", |
| 239 | cmd.switch_time); |
| 240 | ch_info = iwl_get_channel_info(priv, priv->band, ch); |
| 241 | if (ch_info) |
| 242 | cmd.expect_beacon = is_channel_radar(ch_info); |
| 243 | else { |
| 244 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
| 245 | ctx->active.channel, ch); |
| 246 | return -EFAULT; |
| 247 | } |
| 248 | priv->switch_rxon.channel = cmd.channel; |
| 249 | priv->switch_rxon.switch_in_progress = true; |
| 250 | |
| 251 | return iwl_send_cmd_sync(priv, &hcmd); |
| 252 | } |
| 253 | |
| 254 | static struct iwl_lib_ops iwl2000_lib = { |
| 255 | .set_hw_params = iwl2000_hw_set_hw_params, |
| 256 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
| 257 | .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl, |
| 258 | .txq_set_sched = iwlagn_txq_set_sched, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 259 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
| 260 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
| 261 | .txq_init = iwl_hw_tx_queue_init, |
| 262 | .rx_handler_setup = iwlagn_rx_handler_setup, |
Wey-Yi Guy | caebbb7 | 2011-02-06 11:29:42 -0800 | [diff] [blame] | 263 | .setup_deferred_work = iwlagn_bt_setup_deferred_work, |
| 264 | .cancel_deferred_work = iwlagn_bt_cancel_deferred_work, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 265 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 266 | .send_tx_power = iwlagn_send_tx_power, |
| 267 | .update_chain_flags = iwl_update_chain_flags, |
| 268 | .set_channel_switch = iwl2030_hw_channel_switch, |
| 269 | .apm_ops = { |
| 270 | .init = iwl_apm_init, |
| 271 | .config = iwl2000_nic_config, |
| 272 | }, |
| 273 | .eeprom_ops = { |
| 274 | .regulatory_bands = { |
| 275 | EEPROM_REG_BAND_1_CHANNELS, |
| 276 | EEPROM_REG_BAND_2_CHANNELS, |
| 277 | EEPROM_REG_BAND_3_CHANNELS, |
| 278 | EEPROM_REG_BAND_4_CHANNELS, |
| 279 | EEPROM_REG_BAND_5_CHANNELS, |
| 280 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
Wey-Yi Guy | 5cab35e | 2011-04-06 15:55:27 -0700 | [diff] [blame] | 281 | EEPROM_REGULATORY_BAND_NO_HT40, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 282 | }, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 283 | .query_addr = iwlagn_eeprom_query_addr, |
| 284 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
| 285 | }, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 286 | .temp_ops = { |
| 287 | .temperature = iwlagn_temperature, |
| 288 | }, |
| 289 | .debugfs_ops = { |
| 290 | .rx_stats_read = iwl_ucode_rx_stats_read, |
| 291 | .tx_stats_read = iwl_ucode_tx_stats_read, |
| 292 | .general_stats_read = iwl_ucode_general_stats_read, |
| 293 | .bt_stats_read = iwl_ucode_bt_stats_read, |
| 294 | .reply_tx_error = iwl_reply_tx_error_read, |
| 295 | }, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 296 | .txfifo_flush = iwlagn_txfifo_flush, |
| 297 | .dev_txfifo_flush = iwlagn_dev_txfifo_flush, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 298 | }; |
| 299 | |
| 300 | static const struct iwl_ops iwl2000_ops = { |
| 301 | .lib = &iwl2000_lib, |
| 302 | .hcmd = &iwlagn_hcmd, |
| 303 | .utils = &iwlagn_hcmd_utils, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 304 | }; |
| 305 | |
| 306 | static const struct iwl_ops iwl2030_ops = { |
| 307 | .lib = &iwl2000_lib, |
| 308 | .hcmd = &iwlagn_bt_hcmd, |
| 309 | .utils = &iwlagn_hcmd_utils, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 310 | }; |
| 311 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 312 | static const struct iwl_ops iwl105_ops = { |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 313 | .lib = &iwl2000_lib, |
| 314 | .hcmd = &iwlagn_hcmd, |
| 315 | .utils = &iwlagn_hcmd_utils, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 316 | }; |
| 317 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 318 | static const struct iwl_ops iwl135_ops = { |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 319 | .lib = &iwl2000_lib, |
| 320 | .hcmd = &iwlagn_bt_hcmd, |
| 321 | .utils = &iwlagn_hcmd_utils, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 322 | }; |
| 323 | |
| 324 | static struct iwl_base_params iwl2000_base_params = { |
| 325 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 326 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 327 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 328 | .pll_cfg_val = 0, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 329 | .max_ll_items = OTP_MAX_LL_ITEMS_2x00, |
| 330 | .shadow_ram_support = true, |
| 331 | .led_compensation = 51, |
| 332 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 333 | .adv_thermal_throttle = true, |
| 334 | .support_ct_kill_exit = true, |
| 335 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 336 | .chain_noise_scale = 1000, |
| 337 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
| 338 | .max_event_log_size = 512, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 339 | .shadow_reg_enable = true, |
| 340 | }; |
| 341 | |
| 342 | |
| 343 | static struct iwl_base_params iwl2030_base_params = { |
| 344 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 345 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 346 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 347 | .pll_cfg_val = 0, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 348 | .max_ll_items = OTP_MAX_LL_ITEMS_2x00, |
| 349 | .shadow_ram_support = true, |
| 350 | .led_compensation = 57, |
| 351 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 352 | .adv_thermal_throttle = true, |
| 353 | .support_ct_kill_exit = true, |
| 354 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 355 | .chain_noise_scale = 1000, |
| 356 | .wd_timeout = IWL_LONG_WD_TIMEOUT, |
| 357 | .max_event_log_size = 512, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 358 | .shadow_reg_enable = true, |
| 359 | }; |
| 360 | |
| 361 | static struct iwl_ht_params iwl2000_ht_params = { |
| 362 | .ht_greenfield_support = true, |
| 363 | .use_rts_for_aggregation = true, /* use rts/cts protection */ |
| 364 | }; |
| 365 | |
| 366 | static struct iwl_bt_params iwl2030_bt_params = { |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 367 | /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */ |
| 368 | .advanced_bt_coexist = true, |
| 369 | .agg_time_limit = BT_AGG_THRESHOLD_DEF, |
| 370 | .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE, |
| 371 | .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT, |
| 372 | .bt_sco_disable = true, |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame] | 373 | .bt_session_2 = true, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 374 | }; |
| 375 | |
| 376 | #define IWL_DEVICE_2000 \ |
| 377 | .fw_name_pre = IWL2000_FW_PRE, \ |
| 378 | .ucode_api_max = IWL2000_UCODE_API_MAX, \ |
| 379 | .ucode_api_min = IWL2000_UCODE_API_MIN, \ |
| 380 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 381 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
| 382 | .ops = &iwl2000_ops, \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 383 | .base_params = &iwl2000_base_params, \ |
| 384 | .need_dc_calib = true, \ |
| 385 | .need_temp_offset_calib = true, \ |
Wey-Yi Guy | 52e6b85 | 2011-01-18 08:58:48 -0800 | [diff] [blame] | 386 | .led_mode = IWL_LED_RF_STATE, \ |
Wey-Yi Guy | dcf6640 | 2011-04-01 13:20:44 -0700 | [diff] [blame] | 387 | .iq_invert = true, \ |
| 388 | .disable_otp_refresh = true \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 389 | |
| 390 | struct iwl_cfg iwl2000_2bgn_cfg = { |
| 391 | .name = "2000 Series 2x2 BGN", |
| 392 | IWL_DEVICE_2000, |
| 393 | .ht_params = &iwl2000_ht_params, |
| 394 | }; |
| 395 | |
| 396 | struct iwl_cfg iwl2000_2bg_cfg = { |
| 397 | .name = "2000 Series 2x2 BG", |
| 398 | IWL_DEVICE_2000, |
| 399 | }; |
| 400 | |
| 401 | #define IWL_DEVICE_2030 \ |
| 402 | .fw_name_pre = IWL2030_FW_PRE, \ |
| 403 | .ucode_api_max = IWL2030_UCODE_API_MAX, \ |
| 404 | .ucode_api_min = IWL2030_UCODE_API_MIN, \ |
| 405 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 406 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
| 407 | .ops = &iwl2030_ops, \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 408 | .base_params = &iwl2030_base_params, \ |
| 409 | .bt_params = &iwl2030_bt_params, \ |
| 410 | .need_dc_calib = true, \ |
| 411 | .need_temp_offset_calib = true, \ |
| 412 | .led_mode = IWL_LED_RF_STATE, \ |
Wey-Yi Guy | 52e6b85 | 2011-01-18 08:58:48 -0800 | [diff] [blame] | 413 | .adv_pm = true, \ |
| 414 | .iq_invert = true \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 415 | |
| 416 | struct iwl_cfg iwl2030_2bgn_cfg = { |
| 417 | .name = "2000 Series 2x2 BGN/BT", |
Wey-Yi Guy | 96234cc | 2011-01-24 11:44:42 -0800 | [diff] [blame] | 418 | IWL_DEVICE_2030, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 419 | .ht_params = &iwl2000_ht_params, |
| 420 | }; |
| 421 | |
| 422 | struct iwl_cfg iwl2030_2bg_cfg = { |
| 423 | .name = "2000 Series 2x2 BG/BT", |
Wey-Yi Guy | 96234cc | 2011-01-24 11:44:42 -0800 | [diff] [blame] | 424 | IWL_DEVICE_2030, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 425 | }; |
| 426 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 427 | #define IWL_DEVICE_105 \ |
| 428 | .fw_name_pre = IWL105_FW_PRE, \ |
| 429 | .ucode_api_max = IWL105_UCODE_API_MAX, \ |
| 430 | .ucode_api_min = IWL105_UCODE_API_MIN, \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 431 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 432 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 433 | .ops = &iwl105_ops, \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 434 | .base_params = &iwl2000_base_params, \ |
| 435 | .need_dc_calib = true, \ |
| 436 | .need_temp_offset_calib = true, \ |
| 437 | .led_mode = IWL_LED_RF_STATE, \ |
| 438 | .adv_pm = true, \ |
| 439 | .rx_with_siso_diversity = true \ |
| 440 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 441 | struct iwl_cfg iwl105_bg_cfg = { |
| 442 | .name = "105 Series 1x1 BG", |
| 443 | IWL_DEVICE_105, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 444 | }; |
| 445 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 446 | struct iwl_cfg iwl105_bgn_cfg = { |
| 447 | .name = "105 Series 1x1 BGN", |
| 448 | IWL_DEVICE_105, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 449 | .ht_params = &iwl2000_ht_params, |
| 450 | }; |
| 451 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 452 | #define IWL_DEVICE_135 \ |
| 453 | .fw_name_pre = IWL105_FW_PRE, \ |
| 454 | .ucode_api_max = IWL105_UCODE_API_MAX, \ |
| 455 | .ucode_api_min = IWL105_UCODE_API_MIN, \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 456 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 457 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 458 | .ops = &iwl135_ops, \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 459 | .base_params = &iwl2030_base_params, \ |
| 460 | .bt_params = &iwl2030_bt_params, \ |
| 461 | .need_dc_calib = true, \ |
| 462 | .need_temp_offset_calib = true, \ |
| 463 | .led_mode = IWL_LED_RF_STATE, \ |
| 464 | .adv_pm = true, \ |
| 465 | .rx_with_siso_diversity = true \ |
| 466 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 467 | struct iwl_cfg iwl135_bg_cfg = { |
| 468 | .name = "105 Series 1x1 BG/BT", |
| 469 | IWL_DEVICE_135, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 470 | }; |
| 471 | |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 472 | struct iwl_cfg iwl135_bgn_cfg = { |
| 473 | .name = "105 Series 1x1 BGN/BT", |
| 474 | IWL_DEVICE_135, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 475 | .ht_params = &iwl2000_ht_params, |
| 476 | }; |
| 477 | |
| 478 | MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX)); |
| 479 | MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX)); |
Wey-Yi Guy | b4ed221 | 2011-04-30 08:55:16 -0700 | [diff] [blame] | 480 | MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_MAX)); |