Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
| 3 | * Copyright(c) 2008-2009 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-helpers.h" |
| 46 | #include "iwl-5000-hw.h" |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 47 | #include "iwl-6000-hw.h" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 48 | |
| 49 | /* Highest firmware API version supported */ |
Wey-Yi Guy | fcbaf8b | 2009-08-21 13:34:18 -0700 | [diff] [blame] | 50 | #define IWL6000_UCODE_API_MAX 4 |
| 51 | #define IWL6050_UCODE_API_MAX 4 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 52 | |
| 53 | /* Lowest firmware API version supported */ |
| 54 | #define IWL6000_UCODE_API_MIN 1 |
| 55 | #define IWL6050_UCODE_API_MIN 1 |
| 56 | |
| 57 | #define IWL6000_FW_PRE "iwlwifi-6000-" |
| 58 | #define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode" |
| 59 | #define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api) |
| 60 | |
| 61 | #define IWL6050_FW_PRE "iwlwifi-6050-" |
| 62 | #define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode" |
| 63 | #define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api) |
| 64 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 65 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) |
| 66 | { |
| 67 | /* want Celsius */ |
| 68 | priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD; |
| 69 | priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD; |
| 70 | } |
| 71 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 72 | /* NIC configuration for 6000 series */ |
| 73 | static void iwl6000_nic_config(struct iwl_priv *priv) |
| 74 | { |
Wey-Yi Guy | 9371d4e | 2009-09-11 10:38:10 -0700 | [diff] [blame] | 75 | u16 radio_cfg; |
| 76 | |
| 77 | radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG); |
| 78 | |
| 79 | /* write radio config values to register */ |
| 80 | if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX) |
| 81 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 82 | EEPROM_RF_CFG_TYPE_MSK(radio_cfg) | |
| 83 | EEPROM_RF_CFG_STEP_MSK(radio_cfg) | |
| 84 | EEPROM_RF_CFG_DASH_MSK(radio_cfg)); |
| 85 | |
| 86 | /* set CSR_HW_CONFIG_REG for uCode use */ |
| 87 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 88 | CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI | |
| 89 | CSR_HW_IF_CONFIG_REG_BIT_MAC_SI); |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 90 | |
| 91 | /* no locking required for register write */ |
| 92 | if (priv->cfg->pa_type == IWL_PA_HYBRID) { |
| 93 | /* 2x2 hybrid phy type */ |
| 94 | iwl_write32(priv, CSR_GP_DRIVER_REG, |
| 95 | CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_HYB); |
| 96 | } else if (priv->cfg->pa_type == IWL_PA_INTERNAL) { |
| 97 | /* 2x2 IPA phy type */ |
| 98 | iwl_write32(priv, CSR_GP_DRIVER_REG, |
| 99 | CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA); |
| 100 | } |
| 101 | /* else do nothing, uCode configured */ |
| 102 | } |
| 103 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 104 | static struct iwl_sensitivity_ranges iwl6000_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 = 145, |
| 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 | |
| 125 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) |
| 126 | { |
| 127 | if ((priv->cfg->mod_params->num_of_queues > IWL50_NUM_QUEUES) || |
| 128 | (priv->cfg->mod_params->num_of_queues < IWL_MIN_NUM_QUEUES)) { |
| 129 | IWL_ERR(priv, |
| 130 | "invalid queues_num, should be between %d and %d\n", |
| 131 | IWL_MIN_NUM_QUEUES, IWL50_NUM_QUEUES); |
| 132 | return -EINVAL; |
| 133 | } |
| 134 | |
| 135 | priv->hw_params.max_txq_num = priv->cfg->mod_params->num_of_queues; |
| 136 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
| 137 | priv->hw_params.scd_bc_tbls_size = |
| 138 | IWL50_NUM_QUEUES * sizeof(struct iwl5000_scd_bc_tbl); |
| 139 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
| 140 | priv->hw_params.max_stations = IWL5000_STATION_COUNT; |
| 141 | priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID; |
| 142 | |
| 143 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; |
| 144 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; |
| 145 | |
| 146 | priv->hw_params.max_bsm_size = 0; |
| 147 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
| 148 | BIT(IEEE80211_BAND_5GHZ); |
| 149 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; |
| 150 | |
| 151 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); |
| 152 | priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant); |
| 153 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; |
| 154 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; |
| 155 | |
| 156 | if (priv->cfg->ops->lib->temp_ops.set_ct_kill) |
| 157 | priv->cfg->ops->lib->temp_ops.set_ct_kill(priv); |
| 158 | |
| 159 | /* Set initial sensitivity parameters */ |
| 160 | /* Set initial calibration set */ |
| 161 | priv->hw_params.sens = &iwl6000_sensitivity; |
| 162 | priv->hw_params.calib_init_cfg = |
| 163 | BIT(IWL_CALIB_XTAL) | |
| 164 | BIT(IWL_CALIB_LO) | |
| 165 | BIT(IWL_CALIB_TX_IQ) | |
| 166 | BIT(IWL_CALIB_TX_IQ_PERD) | |
| 167 | BIT(IWL_CALIB_BASE_BAND); |
| 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 172 | static struct iwl_lib_ops iwl6000_lib = { |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 173 | .set_hw_params = iwl6000_hw_set_hw_params, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 174 | .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl, |
| 175 | .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl, |
| 176 | .txq_set_sched = iwl5000_txq_set_sched, |
| 177 | .txq_agg_enable = iwl5000_txq_agg_enable, |
| 178 | .txq_agg_disable = iwl5000_txq_agg_disable, |
| 179 | .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd, |
| 180 | .txq_free_tfd = iwl_hw_txq_free_tfd, |
| 181 | .txq_init = iwl_hw_tx_queue_init, |
| 182 | .rx_handler_setup = iwl5000_rx_handler_setup, |
| 183 | .setup_deferred_work = iwl5000_setup_deferred_work, |
| 184 | .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr, |
| 185 | .load_ucode = iwl5000_load_ucode, |
Reinette Chatre | b7a7940 | 2009-09-25 14:24:23 -0700 | [diff] [blame] | 186 | .dump_nic_event_log = iwl_dump_nic_event_log, |
| 187 | .dump_nic_error_log = iwl_dump_nic_error_log, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 188 | .init_alive_start = iwl5000_init_alive_start, |
| 189 | .alive_notify = iwl5000_alive_notify, |
| 190 | .send_tx_power = iwl5000_send_tx_power, |
| 191 | .update_chain_flags = iwl_update_chain_flags, |
| 192 | .apm_ops = { |
| 193 | .init = iwl5000_apm_init, |
| 194 | .reset = iwl5000_apm_reset, |
| 195 | .stop = iwl5000_apm_stop, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 196 | .config = iwl6000_nic_config, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 197 | .set_pwr_src = iwl_set_pwr_src, |
| 198 | }, |
| 199 | .eeprom_ops = { |
| 200 | .regulatory_bands = { |
| 201 | EEPROM_5000_REG_BAND_1_CHANNELS, |
| 202 | EEPROM_5000_REG_BAND_2_CHANNELS, |
| 203 | EEPROM_5000_REG_BAND_3_CHANNELS, |
| 204 | EEPROM_5000_REG_BAND_4_CHANNELS, |
| 205 | EEPROM_5000_REG_BAND_5_CHANNELS, |
Wey-Yi Guy | 7aafef1 | 2009-08-07 15:41:38 -0700 | [diff] [blame] | 206 | EEPROM_5000_REG_BAND_24_HT40_CHANNELS, |
| 207 | EEPROM_5000_REG_BAND_52_HT40_CHANNELS |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 208 | }, |
| 209 | .verify_signature = iwlcore_eeprom_verify_signature, |
| 210 | .acquire_semaphore = iwlcore_eeprom_acquire_semaphore, |
| 211 | .release_semaphore = iwlcore_eeprom_release_semaphore, |
| 212 | .calib_version = iwl5000_eeprom_calib_version, |
| 213 | .query_addr = iwl5000_eeprom_query_addr, |
Wey-Yi Guy | ab9fd1b | 2009-08-21 13:34:23 -0700 | [diff] [blame] | 214 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 215 | }, |
| 216 | .post_associate = iwl_post_associate, |
| 217 | .isr = iwl_isr_ict, |
| 218 | .config_ap = iwl_config_ap, |
| 219 | .temp_ops = { |
| 220 | .temperature = iwl5000_temperature, |
| 221 | .set_ct_kill = iwl6000_set_ct_threshold, |
| 222 | }, |
| 223 | }; |
| 224 | |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 225 | static struct iwl_hcmd_utils_ops iwl6000_hcmd_utils = { |
| 226 | .get_hcmd_size = iwl5000_get_hcmd_size, |
| 227 | .build_addsta_hcmd = iwl5000_build_addsta_hcmd, |
| 228 | .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag, |
| 229 | .calc_rssi = iwl5000_calc_rssi, |
| 230 | }; |
| 231 | |
| 232 | static struct iwl_ops iwl6000_ops = { |
Jay Sternberg | cc0f555 | 2009-07-17 09:30:16 -0700 | [diff] [blame] | 233 | .ucode = &iwl5000_ucode, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 234 | .lib = &iwl6000_lib, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 235 | .hcmd = &iwl5000_hcmd, |
| 236 | .utils = &iwl6000_hcmd_utils, |
| 237 | }; |
| 238 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 239 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 240 | /* |
| 241 | * "h": Hybrid configuration, use both internal and external Power Amplifier |
| 242 | */ |
| 243 | struct iwl_cfg iwl6000h_2agn_cfg = { |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 244 | .name = "6000 Series 2x2 AGN", |
| 245 | .fw_name_pre = IWL6000_FW_PRE, |
| 246 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 247 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 248 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 249 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 250 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 251 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 252 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 253 | .mod_params = &iwl50_mod_params, |
Jay Sternberg | 542cc79 | 2009-05-08 13:44:46 -0700 | [diff] [blame] | 254 | .valid_tx_ant = ANT_AB, |
| 255 | .valid_rx_ant = ANT_AB, |
Jay Sternberg | 050681b | 2009-01-29 11:09:13 -0800 | [diff] [blame] | 256 | .need_pll_cfg = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 257 | .pa_type = IWL_PA_HYBRID, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 258 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 259 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 260 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 261 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 262 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 263 | }; |
| 264 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame^] | 265 | struct iwl_cfg iwl6000h_2abg_cfg = { |
| 266 | .name = "6000 Series 2x2 ABG", |
| 267 | .fw_name_pre = IWL6000_FW_PRE, |
| 268 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 269 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 270 | .sku = IWL_SKU_A|IWL_SKU_G, |
| 271 | .ops = &iwl6000_ops, |
| 272 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 273 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 274 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 275 | .mod_params = &iwl50_mod_params, |
| 276 | .valid_tx_ant = ANT_AB, |
| 277 | .valid_rx_ant = ANT_AB, |
| 278 | .need_pll_cfg = false, |
| 279 | .pa_type = IWL_PA_HYBRID, |
| 280 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 281 | .shadow_ram_support = true, |
| 282 | .ht_greenfield_support = true, |
| 283 | .led_compensation = 51, |
| 284 | }; |
| 285 | |
| 286 | struct iwl_cfg iwl6000h_2bg_cfg = { |
| 287 | .name = "6000 Series 2x2 BG", |
| 288 | .fw_name_pre = IWL6000_FW_PRE, |
| 289 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 290 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 291 | .sku = IWL_SKU_G, |
| 292 | .ops = &iwl6000_ops, |
| 293 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 294 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 295 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 296 | .mod_params = &iwl50_mod_params, |
| 297 | .valid_tx_ant = ANT_AB, |
| 298 | .valid_rx_ant = ANT_AB, |
| 299 | .need_pll_cfg = false, |
| 300 | .pa_type = IWL_PA_HYBRID, |
| 301 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 302 | .shadow_ram_support = true, |
| 303 | .ht_greenfield_support = true, |
| 304 | .led_compensation = 51, |
| 305 | }; |
| 306 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 307 | /* |
| 308 | * "i": Internal configuration, use internal Power Amplifier |
| 309 | */ |
| 310 | struct iwl_cfg iwl6000i_2agn_cfg = { |
| 311 | .name = "6000 Series 2x2 AGN", |
| 312 | .fw_name_pre = IWL6000_FW_PRE, |
| 313 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 314 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 315 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
| 316 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 317 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 318 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 319 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 320 | .mod_params = &iwl50_mod_params, |
| 321 | .valid_tx_ant = ANT_BC, |
| 322 | .valid_rx_ant = ANT_BC, |
| 323 | .need_pll_cfg = false, |
| 324 | .pa_type = IWL_PA_INTERNAL, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 325 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 326 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 327 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 328 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 329 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 330 | }; |
| 331 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame^] | 332 | struct iwl_cfg iwl6000i_2abg_cfg = { |
| 333 | .name = "6000 Series 2x2 ABG", |
| 334 | .fw_name_pre = IWL6000_FW_PRE, |
| 335 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 336 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 337 | .sku = IWL_SKU_A|IWL_SKU_G, |
| 338 | .ops = &iwl6000_ops, |
| 339 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 340 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 341 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 342 | .mod_params = &iwl50_mod_params, |
| 343 | .valid_tx_ant = ANT_BC, |
| 344 | .valid_rx_ant = ANT_BC, |
| 345 | .need_pll_cfg = false, |
| 346 | .pa_type = IWL_PA_INTERNAL, |
| 347 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 348 | .shadow_ram_support = true, |
| 349 | .ht_greenfield_support = true, |
| 350 | .led_compensation = 51, |
| 351 | }; |
| 352 | |
| 353 | struct iwl_cfg iwl6000i_2bg_cfg = { |
| 354 | .name = "6000 Series 2x2 BG", |
| 355 | .fw_name_pre = IWL6000_FW_PRE, |
| 356 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 357 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 358 | .sku = IWL_SKU_G, |
| 359 | .ops = &iwl6000_ops, |
| 360 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 361 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 362 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 363 | .mod_params = &iwl50_mod_params, |
| 364 | .valid_tx_ant = ANT_BC, |
| 365 | .valid_rx_ant = ANT_BC, |
| 366 | .need_pll_cfg = false, |
| 367 | .pa_type = IWL_PA_INTERNAL, |
| 368 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 369 | .shadow_ram_support = true, |
| 370 | .ht_greenfield_support = true, |
| 371 | .led_compensation = 51, |
| 372 | }; |
| 373 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 374 | struct iwl_cfg iwl6050_2agn_cfg = { |
| 375 | .name = "6050 Series 2x2 AGN", |
| 376 | .fw_name_pre = IWL6050_FW_PRE, |
| 377 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
| 378 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
| 379 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 380 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 381 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 382 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 383 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 384 | .mod_params = &iwl50_mod_params, |
Jay Sternberg | 542cc79 | 2009-05-08 13:44:46 -0700 | [diff] [blame] | 385 | .valid_tx_ant = ANT_AB, |
| 386 | .valid_rx_ant = ANT_AB, |
Jay Sternberg | 050681b | 2009-01-29 11:09:13 -0800 | [diff] [blame] | 387 | .need_pll_cfg = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 388 | .pa_type = IWL_PA_SYSTEM, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 389 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 390 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 391 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 392 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 393 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 394 | }; |
| 395 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame^] | 396 | struct iwl_cfg iwl6050_2abg_cfg = { |
| 397 | .name = "6050 Series 2x2 ABG", |
| 398 | .fw_name_pre = IWL6050_FW_PRE, |
| 399 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
| 400 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
| 401 | .sku = IWL_SKU_A|IWL_SKU_G, |
| 402 | .ops = &iwl6000_ops, |
| 403 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 404 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 405 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 406 | .mod_params = &iwl50_mod_params, |
| 407 | .valid_tx_ant = ANT_AB, |
| 408 | .valid_rx_ant = ANT_AB, |
| 409 | .need_pll_cfg = false, |
| 410 | .pa_type = IWL_PA_SYSTEM, |
| 411 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 412 | .shadow_ram_support = true, |
| 413 | .ht_greenfield_support = true, |
| 414 | .led_compensation = 51, |
| 415 | }; |
| 416 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 417 | struct iwl_cfg iwl6000_3agn_cfg = { |
| 418 | .name = "6000 Series 3x3 AGN", |
| 419 | .fw_name_pre = IWL6000_FW_PRE, |
| 420 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 421 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
| 422 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 423 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 424 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 425 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 426 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 427 | .mod_params = &iwl50_mod_params, |
Jay Sternberg | c0bac76 | 2009-02-02 16:21:14 -0800 | [diff] [blame] | 428 | .valid_tx_ant = ANT_ABC, |
| 429 | .valid_rx_ant = ANT_ABC, |
Jay Sternberg | 050681b | 2009-01-29 11:09:13 -0800 | [diff] [blame] | 430 | .need_pll_cfg = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 431 | .pa_type = IWL_PA_SYSTEM, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 432 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 433 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 434 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 435 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 436 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 437 | }; |
| 438 | |
| 439 | struct iwl_cfg iwl6050_3agn_cfg = { |
| 440 | .name = "6050 Series 3x3 AGN", |
| 441 | .fw_name_pre = IWL6050_FW_PRE, |
| 442 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
| 443 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
| 444 | .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 445 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 446 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Wey-Yi Guy | 1f4b966 | 2009-09-17 10:43:46 -0700 | [diff] [blame] | 447 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 448 | .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION, |
| 449 | .mod_params = &iwl50_mod_params, |
Jay Sternberg | c0bac76 | 2009-02-02 16:21:14 -0800 | [diff] [blame] | 450 | .valid_tx_ant = ANT_ABC, |
| 451 | .valid_rx_ant = ANT_ABC, |
Jay Sternberg | 050681b | 2009-01-29 11:09:13 -0800 | [diff] [blame] | 452 | .need_pll_cfg = false, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 453 | .pa_type = IWL_PA_SYSTEM, |
Wey-Yi Guy | 415e499 | 2009-08-13 13:30:54 -0700 | [diff] [blame] | 454 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 455 | .shadow_ram_support = true, |
Daniel C Halperin | b261793 | 2009-08-13 13:30:59 -0700 | [diff] [blame] | 456 | .ht_greenfield_support = true, |
Wey-Yi Guy | f2d0d0e | 2009-09-11 10:38:14 -0700 | [diff] [blame] | 457 | .led_compensation = 51, |
Wey-Yi Guy | 47eef9b | 2009-09-17 10:43:44 -0700 | [diff] [blame] | 458 | .use_rts_for_ht = true, /* use rts/cts protection */ |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 459 | }; |
| 460 | |
| 461 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
| 462 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |