Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright(c) 2008 - 2010 Intel Corporation. All rights reserved. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms of version 2 of the GNU General Public License as |
| 7 | * published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License along with |
| 15 | * this program; if not, write to the Free Software Foundation, Inc., |
| 16 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA |
| 17 | * |
| 18 | * The full GNU General Public License is included in this distribution in the |
| 19 | * file called LICENSE. |
| 20 | * |
| 21 | * Contact Information: |
| 22 | * Intel 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" |
| 49 | #include "iwl-agn-led.h" |
| 50 | #include "iwl-agn-debugfs.h" |
| 51 | |
| 52 | /* Highest firmware API version supported */ |
| 53 | #define IWL2030_UCODE_API_MAX 5 |
| 54 | #define IWL2000_UCODE_API_MAX 5 |
| 55 | #define IWL200_UCODE_API_MAX 5 |
| 56 | |
| 57 | /* Lowest firmware API version supported */ |
| 58 | #define IWL2030_UCODE_API_MIN 5 |
| 59 | #define IWL2000_UCODE_API_MIN 5 |
| 60 | #define IWL200_UCODE_API_MIN 5 |
| 61 | |
| 62 | #define IWL2030_FW_PRE "iwlwifi-2030-" |
| 63 | #define _IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE #api ".ucode" |
| 64 | #define IWL2030_MODULE_FIRMWARE(api) _IWL2030_MODULE_FIRMWARE(api) |
| 65 | |
| 66 | #define IWL2000_FW_PRE "iwlwifi-2000-" |
| 67 | #define _IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE #api ".ucode" |
| 68 | #define IWL2000_MODULE_FIRMWARE(api) _IWL2000_MODULE_FIRMWARE(api) |
| 69 | |
| 70 | #define IWL200_FW_PRE "iwlwifi-200-" |
| 71 | #define _IWL200_MODULE_FIRMWARE(api) IWL200_FW_PRE #api ".ucode" |
| 72 | #define IWL200_MODULE_FIRMWARE(api) _IWL200_MODULE_FIRMWARE(api) |
| 73 | |
| 74 | static void iwl2000_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 | |
| 81 | /* NIC configuration for 2000 series */ |
| 82 | static void iwl2000_nic_config(struct iwl_priv *priv) |
| 83 | { |
| 84 | u16 radio_cfg; |
| 85 | |
| 86 | radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG); |
| 87 | |
| 88 | /* write radio config values to register */ |
| 89 | if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX) |
| 90 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 91 | EEPROM_RF_CFG_TYPE_MSK(radio_cfg) | |
| 92 | EEPROM_RF_CFG_STEP_MSK(radio_cfg) | |
| 93 | EEPROM_RF_CFG_DASH_MSK(radio_cfg)); |
| 94 | |
| 95 | /* set CSR_HW_CONFIG_REG for uCode use */ |
| 96 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 97 | CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI | |
| 98 | CSR_HW_IF_CONFIG_REG_BIT_MAC_SI); |
| 99 | |
Wey-Yi Guy | 52e6b85 | 2011-01-18 08:58:48 -0800 | [diff] [blame] | 100 | if (priv->cfg->iq_invert) |
| 101 | iwl_set_bit(priv, CSR_GP_DRIVER_REG, |
| 102 | CSR_GP_DRIVER_REG_BIT_RADIO_IQ_INVER); |
| 103 | |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | static struct iwl_sensitivity_ranges iwl2000_sensitivity = { |
| 107 | .min_nrg_cck = 97, |
| 108 | .max_nrg_cck = 0, /* not used, set to 0 */ |
| 109 | .auto_corr_min_ofdm = 80, |
| 110 | .auto_corr_min_ofdm_mrc = 128, |
| 111 | .auto_corr_min_ofdm_x1 = 105, |
| 112 | .auto_corr_min_ofdm_mrc_x1 = 192, |
| 113 | |
| 114 | .auto_corr_max_ofdm = 145, |
| 115 | .auto_corr_max_ofdm_mrc = 232, |
| 116 | .auto_corr_max_ofdm_x1 = 110, |
| 117 | .auto_corr_max_ofdm_mrc_x1 = 232, |
| 118 | |
| 119 | .auto_corr_min_cck = 125, |
| 120 | .auto_corr_max_cck = 175, |
| 121 | .auto_corr_min_cck_mrc = 160, |
| 122 | .auto_corr_max_cck_mrc = 310, |
| 123 | .nrg_th_cck = 97, |
| 124 | .nrg_th_ofdm = 100, |
| 125 | |
| 126 | .barker_corr_th_min = 190, |
| 127 | .barker_corr_th_min_mrc = 390, |
| 128 | .nrg_th_cca = 62, |
| 129 | }; |
| 130 | |
| 131 | static int iwl2000_hw_set_hw_params(struct iwl_priv *priv) |
| 132 | { |
| 133 | if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES && |
| 134 | priv->cfg->mod_params->num_of_queues <= IWLAGN_NUM_QUEUES) |
| 135 | priv->cfg->base_params->num_of_queues = |
| 136 | priv->cfg->mod_params->num_of_queues; |
| 137 | |
| 138 | priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues; |
| 139 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
| 140 | priv->hw_params.scd_bc_tbls_size = |
| 141 | priv->cfg->base_params->num_of_queues * |
| 142 | sizeof(struct iwlagn_scd_bc_tbl); |
| 143 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
| 144 | priv->hw_params.max_stations = IWLAGN_STATION_COUNT; |
| 145 | priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID; |
| 146 | |
| 147 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; |
| 148 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; |
| 149 | |
| 150 | priv->hw_params.max_bsm_size = 0; |
| 151 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
| 152 | BIT(IEEE80211_BAND_5GHZ); |
| 153 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; |
| 154 | |
| 155 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); |
| 156 | if (priv->cfg->rx_with_siso_diversity) |
| 157 | priv->hw_params.rx_chains_num = 1; |
| 158 | else |
| 159 | priv->hw_params.rx_chains_num = |
| 160 | num_of_ant(priv->cfg->valid_rx_ant); |
| 161 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; |
| 162 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; |
| 163 | |
| 164 | iwl2000_set_ct_threshold(priv); |
| 165 | |
| 166 | /* Set initial sensitivity parameters */ |
| 167 | /* Set initial calibration set */ |
| 168 | priv->hw_params.sens = &iwl2000_sensitivity; |
| 169 | priv->hw_params.calib_init_cfg = |
| 170 | BIT(IWL_CALIB_XTAL) | |
| 171 | BIT(IWL_CALIB_LO) | |
| 172 | BIT(IWL_CALIB_TX_IQ) | |
| 173 | BIT(IWL_CALIB_BASE_BAND); |
| 174 | if (priv->cfg->need_dc_calib) |
| 175 | priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX); |
| 176 | if (priv->cfg->need_temp_offset_calib) |
| 177 | priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET); |
| 178 | |
| 179 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; |
| 180 | |
| 181 | return 0; |
| 182 | } |
| 183 | |
| 184 | static int iwl2030_hw_channel_switch(struct iwl_priv *priv, |
| 185 | struct ieee80211_channel_switch *ch_switch) |
| 186 | { |
| 187 | /* |
| 188 | * MULTI-FIXME |
| 189 | * See iwl_mac_channel_switch. |
| 190 | */ |
| 191 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
| 192 | struct iwl6000_channel_switch_cmd cmd; |
| 193 | const struct iwl_channel_info *ch_info; |
| 194 | u32 switch_time_in_usec, ucode_switch_time; |
| 195 | u16 ch; |
| 196 | u32 tsf_low; |
| 197 | u8 switch_count; |
| 198 | u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval); |
| 199 | struct ieee80211_vif *vif = ctx->vif; |
| 200 | struct iwl_host_cmd hcmd = { |
| 201 | .id = REPLY_CHANNEL_SWITCH, |
| 202 | .len = sizeof(cmd), |
| 203 | .flags = CMD_SYNC, |
| 204 | .data = &cmd, |
| 205 | }; |
| 206 | |
| 207 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
| 208 | ch = ch_switch->channel->hw_value; |
| 209 | IWL_DEBUG_11H(priv, "channel switch from %u to %u\n", |
| 210 | ctx->active.channel, ch); |
| 211 | cmd.channel = cpu_to_le16(ch); |
| 212 | cmd.rxon_flags = ctx->staging.flags; |
| 213 | cmd.rxon_filter_flags = ctx->staging.filter_flags; |
| 214 | switch_count = ch_switch->count; |
| 215 | tsf_low = ch_switch->timestamp & 0x0ffffffff; |
| 216 | /* |
| 217 | * calculate the ucode channel switch time |
| 218 | * adding TSF as one of the factor for when to switch |
| 219 | */ |
| 220 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { |
| 221 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / |
| 222 | beacon_interval)) { |
| 223 | switch_count -= (priv->ucode_beacon_time - |
| 224 | tsf_low) / beacon_interval; |
| 225 | } else |
| 226 | switch_count = 0; |
| 227 | } |
| 228 | if (switch_count <= 1) |
| 229 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); |
| 230 | else { |
| 231 | switch_time_in_usec = |
| 232 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; |
| 233 | ucode_switch_time = iwl_usecs_to_beacons(priv, |
| 234 | switch_time_in_usec, |
| 235 | beacon_interval); |
| 236 | cmd.switch_time = iwl_add_beacon_time(priv, |
| 237 | priv->ucode_beacon_time, |
| 238 | ucode_switch_time, |
| 239 | beacon_interval); |
| 240 | } |
| 241 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", |
| 242 | cmd.switch_time); |
| 243 | ch_info = iwl_get_channel_info(priv, priv->band, ch); |
| 244 | if (ch_info) |
| 245 | cmd.expect_beacon = is_channel_radar(ch_info); |
| 246 | else { |
| 247 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
| 248 | ctx->active.channel, ch); |
| 249 | return -EFAULT; |
| 250 | } |
| 251 | priv->switch_rxon.channel = cmd.channel; |
| 252 | priv->switch_rxon.switch_in_progress = true; |
| 253 | |
| 254 | return iwl_send_cmd_sync(priv, &hcmd); |
| 255 | } |
| 256 | |
| 257 | static struct iwl_lib_ops iwl2000_lib = { |
| 258 | .set_hw_params = iwl2000_hw_set_hw_params, |
| 259 | .txq_update_byte_cnt_tbl = iwlagn_txq_update_byte_cnt_tbl, |
| 260 | .txq_inval_byte_cnt_tbl = iwlagn_txq_inval_byte_cnt_tbl, |
| 261 | .txq_set_sched = iwlagn_txq_set_sched, |
| 262 | .txq_agg_enable = iwlagn_txq_agg_enable, |
| 263 | .txq_agg_disable = iwlagn_txq_agg_disable, |
| 264 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
| 265 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
| 266 | .txq_init = iwl_hw_tx_queue_init, |
| 267 | .rx_handler_setup = iwlagn_rx_handler_setup, |
Wey-Yi Guy | caebbb7 | 2011-02-06 11:29:42 -0800 | [diff] [blame] | 268 | .setup_deferred_work = iwlagn_bt_setup_deferred_work, |
| 269 | .cancel_deferred_work = iwlagn_bt_cancel_deferred_work, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 270 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
| 271 | .load_ucode = iwlagn_load_ucode, |
| 272 | .dump_nic_event_log = iwl_dump_nic_event_log, |
| 273 | .dump_nic_error_log = iwl_dump_nic_error_log, |
| 274 | .dump_csr = iwl_dump_csr, |
| 275 | .dump_fh = iwl_dump_fh, |
| 276 | .init_alive_start = iwlagn_init_alive_start, |
| 277 | .alive_notify = iwlagn_alive_notify, |
| 278 | .send_tx_power = iwlagn_send_tx_power, |
| 279 | .update_chain_flags = iwl_update_chain_flags, |
| 280 | .set_channel_switch = iwl2030_hw_channel_switch, |
| 281 | .apm_ops = { |
| 282 | .init = iwl_apm_init, |
| 283 | .config = iwl2000_nic_config, |
| 284 | }, |
| 285 | .eeprom_ops = { |
| 286 | .regulatory_bands = { |
| 287 | EEPROM_REG_BAND_1_CHANNELS, |
| 288 | EEPROM_REG_BAND_2_CHANNELS, |
| 289 | EEPROM_REG_BAND_3_CHANNELS, |
| 290 | EEPROM_REG_BAND_4_CHANNELS, |
| 291 | EEPROM_REG_BAND_5_CHANNELS, |
| 292 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
| 293 | EEPROM_REG_BAND_52_HT40_CHANNELS |
| 294 | }, |
| 295 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, |
| 296 | .release_semaphore = iwlcore_eeprom_release_semaphore, |
| 297 | .calib_version = iwlagn_eeprom_calib_version, |
| 298 | .query_addr = iwlagn_eeprom_query_addr, |
| 299 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
| 300 | }, |
| 301 | .isr_ops = { |
| 302 | .isr = iwl_isr_ict, |
| 303 | .free = iwl_free_isr_ict, |
| 304 | .alloc = iwl_alloc_isr_ict, |
| 305 | .reset = iwl_reset_ict, |
| 306 | .disable = iwl_disable_ict, |
| 307 | }, |
| 308 | .temp_ops = { |
| 309 | .temperature = iwlagn_temperature, |
| 310 | }, |
| 311 | .debugfs_ops = { |
| 312 | .rx_stats_read = iwl_ucode_rx_stats_read, |
| 313 | .tx_stats_read = iwl_ucode_tx_stats_read, |
| 314 | .general_stats_read = iwl_ucode_general_stats_read, |
| 315 | .bt_stats_read = iwl_ucode_bt_stats_read, |
| 316 | .reply_tx_error = iwl_reply_tx_error_read, |
| 317 | }, |
| 318 | .check_plcp_health = iwl_good_plcp_health, |
| 319 | .check_ack_health = iwl_good_ack_health, |
| 320 | .txfifo_flush = iwlagn_txfifo_flush, |
| 321 | .dev_txfifo_flush = iwlagn_dev_txfifo_flush, |
| 322 | .tt_ops = { |
| 323 | .lower_power_detection = iwl_tt_is_low_power_state, |
| 324 | .tt_power_mode = iwl_tt_current_power_mode, |
| 325 | .ct_kill_check = iwl_check_for_ct_kill, |
| 326 | } |
| 327 | }; |
| 328 | |
| 329 | static const struct iwl_ops iwl2000_ops = { |
| 330 | .lib = &iwl2000_lib, |
| 331 | .hcmd = &iwlagn_hcmd, |
| 332 | .utils = &iwlagn_hcmd_utils, |
| 333 | .led = &iwlagn_led_ops, |
| 334 | .ieee80211_ops = &iwlagn_hw_ops, |
| 335 | }; |
| 336 | |
| 337 | static const struct iwl_ops iwl2030_ops = { |
| 338 | .lib = &iwl2000_lib, |
| 339 | .hcmd = &iwlagn_bt_hcmd, |
| 340 | .utils = &iwlagn_hcmd_utils, |
| 341 | .led = &iwlagn_led_ops, |
| 342 | .ieee80211_ops = &iwlagn_hw_ops, |
| 343 | }; |
| 344 | |
| 345 | static const struct iwl_ops iwl200_ops = { |
| 346 | .lib = &iwl2000_lib, |
| 347 | .hcmd = &iwlagn_hcmd, |
| 348 | .utils = &iwlagn_hcmd_utils, |
| 349 | .led = &iwlagn_led_ops, |
| 350 | .ieee80211_ops = &iwlagn_hw_ops, |
| 351 | }; |
| 352 | |
| 353 | static const struct iwl_ops iwl230_ops = { |
| 354 | .lib = &iwl2000_lib, |
| 355 | .hcmd = &iwlagn_bt_hcmd, |
| 356 | .utils = &iwlagn_hcmd_utils, |
| 357 | .led = &iwlagn_led_ops, |
| 358 | .ieee80211_ops = &iwlagn_hw_ops, |
| 359 | }; |
| 360 | |
| 361 | static struct iwl_base_params iwl2000_base_params = { |
| 362 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 363 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 364 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 365 | .pll_cfg_val = 0, |
| 366 | .set_l0s = true, |
| 367 | .use_bsm = false, |
| 368 | .max_ll_items = OTP_MAX_LL_ITEMS_2x00, |
| 369 | .shadow_ram_support = true, |
| 370 | .led_compensation = 51, |
| 371 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 372 | .adv_thermal_throttle = true, |
| 373 | .support_ct_kill_exit = true, |
| 374 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 375 | .chain_noise_scale = 1000, |
| 376 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
| 377 | .max_event_log_size = 512, |
| 378 | .ucode_tracing = true, |
| 379 | .sensitivity_calib_by_driver = true, |
| 380 | .chain_noise_calib_by_driver = true, |
| 381 | .shadow_reg_enable = true, |
| 382 | }; |
| 383 | |
| 384 | |
| 385 | static struct iwl_base_params iwl2030_base_params = { |
| 386 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 387 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 388 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 389 | .pll_cfg_val = 0, |
| 390 | .set_l0s = true, |
| 391 | .use_bsm = false, |
| 392 | .max_ll_items = OTP_MAX_LL_ITEMS_2x00, |
| 393 | .shadow_ram_support = true, |
| 394 | .led_compensation = 57, |
| 395 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 396 | .adv_thermal_throttle = true, |
| 397 | .support_ct_kill_exit = true, |
| 398 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 399 | .chain_noise_scale = 1000, |
| 400 | .wd_timeout = IWL_LONG_WD_TIMEOUT, |
| 401 | .max_event_log_size = 512, |
| 402 | .ucode_tracing = true, |
| 403 | .sensitivity_calib_by_driver = true, |
| 404 | .chain_noise_calib_by_driver = true, |
| 405 | .shadow_reg_enable = true, |
| 406 | }; |
| 407 | |
| 408 | static struct iwl_ht_params iwl2000_ht_params = { |
| 409 | .ht_greenfield_support = true, |
| 410 | .use_rts_for_aggregation = true, /* use rts/cts protection */ |
| 411 | }; |
| 412 | |
| 413 | static struct iwl_bt_params iwl2030_bt_params = { |
| 414 | .bt_statistics = true, |
| 415 | /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */ |
| 416 | .advanced_bt_coexist = true, |
| 417 | .agg_time_limit = BT_AGG_THRESHOLD_DEF, |
| 418 | .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE, |
| 419 | .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT, |
| 420 | .bt_sco_disable = true, |
Wey-Yi Guy | 6013270 | 2011-02-18 17:23:54 -0800 | [diff] [blame^] | 421 | .bt_session_2 = true, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 422 | }; |
| 423 | |
| 424 | #define IWL_DEVICE_2000 \ |
| 425 | .fw_name_pre = IWL2000_FW_PRE, \ |
| 426 | .ucode_api_max = IWL2000_UCODE_API_MAX, \ |
| 427 | .ucode_api_min = IWL2000_UCODE_API_MIN, \ |
| 428 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 429 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
| 430 | .ops = &iwl2000_ops, \ |
| 431 | .mod_params = &iwlagn_mod_params, \ |
| 432 | .base_params = &iwl2000_base_params, \ |
| 433 | .need_dc_calib = true, \ |
| 434 | .need_temp_offset_calib = true, \ |
Wey-Yi Guy | 52e6b85 | 2011-01-18 08:58:48 -0800 | [diff] [blame] | 435 | .led_mode = IWL_LED_RF_STATE, \ |
| 436 | .iq_invert = true \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 437 | |
| 438 | struct iwl_cfg iwl2000_2bgn_cfg = { |
| 439 | .name = "2000 Series 2x2 BGN", |
| 440 | IWL_DEVICE_2000, |
| 441 | .ht_params = &iwl2000_ht_params, |
| 442 | }; |
| 443 | |
| 444 | struct iwl_cfg iwl2000_2bg_cfg = { |
| 445 | .name = "2000 Series 2x2 BG", |
| 446 | IWL_DEVICE_2000, |
| 447 | }; |
| 448 | |
| 449 | #define IWL_DEVICE_2030 \ |
| 450 | .fw_name_pre = IWL2030_FW_PRE, \ |
| 451 | .ucode_api_max = IWL2030_UCODE_API_MAX, \ |
| 452 | .ucode_api_min = IWL2030_UCODE_API_MIN, \ |
| 453 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 454 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
| 455 | .ops = &iwl2030_ops, \ |
| 456 | .mod_params = &iwlagn_mod_params, \ |
| 457 | .base_params = &iwl2030_base_params, \ |
| 458 | .bt_params = &iwl2030_bt_params, \ |
| 459 | .need_dc_calib = true, \ |
| 460 | .need_temp_offset_calib = true, \ |
| 461 | .led_mode = IWL_LED_RF_STATE, \ |
Wey-Yi Guy | 52e6b85 | 2011-01-18 08:58:48 -0800 | [diff] [blame] | 462 | .adv_pm = true, \ |
| 463 | .iq_invert = true \ |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 464 | |
| 465 | struct iwl_cfg iwl2030_2bgn_cfg = { |
| 466 | .name = "2000 Series 2x2 BGN/BT", |
Wey-Yi Guy | 96234cc | 2011-01-24 11:44:42 -0800 | [diff] [blame] | 467 | IWL_DEVICE_2030, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 468 | .ht_params = &iwl2000_ht_params, |
| 469 | }; |
| 470 | |
| 471 | struct iwl_cfg iwl2030_2bg_cfg = { |
| 472 | .name = "2000 Series 2x2 BG/BT", |
Wey-Yi Guy | 96234cc | 2011-01-24 11:44:42 -0800 | [diff] [blame] | 473 | IWL_DEVICE_2030, |
Wey-Yi Guy | c5a5e18 | 2011-01-21 15:47:21 -0800 | [diff] [blame] | 474 | }; |
| 475 | |
| 476 | #define IWL_DEVICE_6035 \ |
| 477 | .fw_name_pre = IWL2030_FW_PRE, \ |
| 478 | .ucode_api_max = IWL2030_UCODE_API_MAX, \ |
| 479 | .ucode_api_min = IWL2030_UCODE_API_MIN, \ |
| 480 | .eeprom_ver = EEPROM_6035_EEPROM_VERSION, \ |
| 481 | .eeprom_calib_ver = EEPROM_6035_TX_POWER_VERSION, \ |
| 482 | .ops = &iwl2030_ops, \ |
| 483 | .mod_params = &iwlagn_mod_params, \ |
| 484 | .base_params = &iwl2030_base_params, \ |
| 485 | .bt_params = &iwl2030_bt_params, \ |
| 486 | .need_dc_calib = true, \ |
| 487 | .need_temp_offset_calib = true, \ |
| 488 | .led_mode = IWL_LED_RF_STATE, \ |
| 489 | .adv_pm = true \ |
| 490 | |
| 491 | struct iwl_cfg iwl6035_2agn_cfg = { |
| 492 | .name = "2000 Series 2x2 AGN/BT", |
| 493 | IWL_DEVICE_6035, |
| 494 | .ht_params = &iwl2000_ht_params, |
| 495 | }; |
| 496 | |
| 497 | struct iwl_cfg iwl6035_2abg_cfg = { |
| 498 | .name = "2000 Series 2x2 ABG/BT", |
| 499 | IWL_DEVICE_6035, |
| 500 | }; |
| 501 | |
| 502 | struct iwl_cfg iwl6035_2bg_cfg = { |
| 503 | .name = "2000 Series 2x2 BG/BT", |
| 504 | IWL_DEVICE_6035, |
| 505 | }; |
| 506 | |
| 507 | #define IWL_DEVICE_200 \ |
| 508 | .fw_name_pre = IWL200_FW_PRE, \ |
| 509 | .ucode_api_max = IWL200_UCODE_API_MAX, \ |
| 510 | .ucode_api_min = IWL200_UCODE_API_MIN, \ |
| 511 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 512 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
| 513 | .ops = &iwl200_ops, \ |
| 514 | .mod_params = &iwlagn_mod_params, \ |
| 515 | .base_params = &iwl2000_base_params, \ |
| 516 | .need_dc_calib = true, \ |
| 517 | .need_temp_offset_calib = true, \ |
| 518 | .led_mode = IWL_LED_RF_STATE, \ |
| 519 | .adv_pm = true, \ |
| 520 | .rx_with_siso_diversity = true \ |
| 521 | |
| 522 | struct iwl_cfg iwl200_bg_cfg = { |
| 523 | .name = "200 Series 1x1 BG", |
| 524 | IWL_DEVICE_200, |
| 525 | }; |
| 526 | |
| 527 | struct iwl_cfg iwl200_bgn_cfg = { |
| 528 | .name = "200 Series 1x1 BGN", |
| 529 | IWL_DEVICE_200, |
| 530 | .ht_params = &iwl2000_ht_params, |
| 531 | }; |
| 532 | |
| 533 | #define IWL_DEVICE_230 \ |
| 534 | .fw_name_pre = IWL200_FW_PRE, \ |
| 535 | .ucode_api_max = IWL200_UCODE_API_MAX, \ |
| 536 | .ucode_api_min = IWL200_UCODE_API_MIN, \ |
| 537 | .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \ |
| 538 | .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \ |
| 539 | .ops = &iwl230_ops, \ |
| 540 | .mod_params = &iwlagn_mod_params, \ |
| 541 | .base_params = &iwl2030_base_params, \ |
| 542 | .bt_params = &iwl2030_bt_params, \ |
| 543 | .need_dc_calib = true, \ |
| 544 | .need_temp_offset_calib = true, \ |
| 545 | .led_mode = IWL_LED_RF_STATE, \ |
| 546 | .adv_pm = true, \ |
| 547 | .rx_with_siso_diversity = true \ |
| 548 | |
| 549 | struct iwl_cfg iwl230_bg_cfg = { |
| 550 | .name = "200 Series 1x1 BG/BT", |
| 551 | IWL_DEVICE_230, |
| 552 | }; |
| 553 | |
| 554 | struct iwl_cfg iwl230_bgn_cfg = { |
| 555 | .name = "200 Series 1x1 BGN/BT", |
| 556 | IWL_DEVICE_230, |
| 557 | .ht_params = &iwl2000_ht_params, |
| 558 | }; |
| 559 | |
| 560 | MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX)); |
| 561 | MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX)); |
| 562 | MODULE_FIRMWARE(IWL200_MODULE_FIRMWARE(IWL200_UCODE_API_MAX)); |