Jay Sternberg | e122837 | 2009-01-19 15:30:34 -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. |
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" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 49 | |
| 50 | /* Highest firmware API version supported */ |
Wey-Yi Guy | fcbaf8b | 2009-08-21 13:34:18 -0700 | [diff] [blame] | 51 | #define IWL6000_UCODE_API_MAX 4 |
Wey-Yi Guy | 62cb3c6 | 2010-09-28 17:43:10 -0700 | [diff] [blame] | 52 | #define IWL6050_UCODE_API_MAX 5 |
Johannes Berg | 670245e | 2010-08-23 07:56:55 -0700 | [diff] [blame] | 53 | #define IWL6000G2_UCODE_API_MAX 5 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 54 | |
| 55 | /* Lowest firmware API version supported */ |
Wey-Yi Guy | 4424642 | 2009-10-23 13:42:34 -0700 | [diff] [blame] | 56 | #define IWL6000_UCODE_API_MIN 4 |
| 57 | #define IWL6050_UCODE_API_MIN 4 |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 58 | #define IWL6000G2_UCODE_API_MIN 4 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 59 | |
| 60 | #define IWL6000_FW_PRE "iwlwifi-6000-" |
root | 1d5cc555 | 2011-03-28 16:12:43 -0700 | [diff] [blame] | 61 | #define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 62 | |
| 63 | #define IWL6050_FW_PRE "iwlwifi-6050-" |
root | 1d5cc555 | 2011-03-28 16:12:43 -0700 | [diff] [blame] | 64 | #define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 65 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 66 | #define IWL6005_FW_PRE "iwlwifi-6000g2a-" |
root | 1d5cc555 | 2011-03-28 16:12:43 -0700 | [diff] [blame] | 67 | #define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE #api ".ucode" |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 68 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 69 | #define IWL6030_FW_PRE "iwlwifi-6000g2b-" |
root | 1d5cc555 | 2011-03-28 16:12:43 -0700 | [diff] [blame] | 70 | #define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE #api ".ucode" |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 71 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 72 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) |
| 73 | { |
| 74 | /* want Celsius */ |
| 75 | priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD; |
| 76 | priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD; |
| 77 | } |
| 78 | |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 79 | static void iwl6050_additional_nic_config(struct iwl_priv *priv) |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 80 | { |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 81 | /* Indicate calibration version to uCode. */ |
Don Fry | 16b80b7 | 2011-04-20 15:25:14 -0700 | [diff] [blame] | 82 | if (iwlagn_eeprom_calib_version(priv) >= 6) |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 83 | iwl_set_bit(priv, CSR_GP_DRIVER_REG, |
| 84 | CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6); |
| 85 | } |
| 86 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 87 | static void iwl6150_additional_nic_config(struct iwl_priv *priv) |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 88 | { |
| 89 | /* Indicate calibration version to uCode. */ |
Don Fry | 16b80b7 | 2011-04-20 15:25:14 -0700 | [diff] [blame] | 90 | if (iwlagn_eeprom_calib_version(priv) >= 6) |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 91 | iwl_set_bit(priv, CSR_GP_DRIVER_REG, |
| 92 | CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6); |
| 93 | iwl_set_bit(priv, CSR_GP_DRIVER_REG, |
| 94 | CSR_GP_DRIVER_REG_BIT_6050_1x2); |
| 95 | } |
| 96 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 97 | /* NIC configuration for 6000 series */ |
| 98 | static void iwl6000_nic_config(struct iwl_priv *priv) |
| 99 | { |
Wey-Yi Guy | 9371d4e | 2009-09-11 10:38:10 -0700 | [diff] [blame] | 100 | u16 radio_cfg; |
| 101 | |
| 102 | radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG); |
| 103 | |
| 104 | /* write radio config values to register */ |
| 105 | if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX) |
| 106 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 107 | EEPROM_RF_CFG_TYPE_MSK(radio_cfg) | |
| 108 | EEPROM_RF_CFG_STEP_MSK(radio_cfg) | |
| 109 | EEPROM_RF_CFG_DASH_MSK(radio_cfg)); |
| 110 | |
| 111 | /* set CSR_HW_CONFIG_REG for uCode use */ |
| 112 | iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG, |
| 113 | CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI | |
| 114 | CSR_HW_IF_CONFIG_REG_BIT_MAC_SI); |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 115 | |
| 116 | /* no locking required for register write */ |
Wey-Yi Guy | 740e7f5 | 2009-11-06 14:52:55 -0800 | [diff] [blame] | 117 | if (priv->cfg->pa_type == IWL_PA_INTERNAL) { |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 118 | /* 2x2 IPA phy type */ |
| 119 | iwl_write32(priv, CSR_GP_DRIVER_REG, |
| 120 | CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA); |
| 121 | } |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 122 | /* do additional nic configuration if needed */ |
| 123 | if (priv->cfg->ops->nic && |
| 124 | priv->cfg->ops->nic->additional_nic_config) { |
| 125 | priv->cfg->ops->nic->additional_nic_config(priv); |
| 126 | } |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 127 | } |
| 128 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 129 | static struct iwl_sensitivity_ranges iwl6000_sensitivity = { |
| 130 | .min_nrg_cck = 97, |
| 131 | .max_nrg_cck = 0, /* not used, set to 0 */ |
| 132 | .auto_corr_min_ofdm = 80, |
| 133 | .auto_corr_min_ofdm_mrc = 128, |
| 134 | .auto_corr_min_ofdm_x1 = 105, |
| 135 | .auto_corr_min_ofdm_mrc_x1 = 192, |
| 136 | |
| 137 | .auto_corr_max_ofdm = 145, |
| 138 | .auto_corr_max_ofdm_mrc = 232, |
Wey-Yi Guy | 2494f63 | 2010-01-20 12:22:52 -0800 | [diff] [blame] | 139 | .auto_corr_max_ofdm_x1 = 110, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 140 | .auto_corr_max_ofdm_mrc_x1 = 232, |
| 141 | |
| 142 | .auto_corr_min_cck = 125, |
| 143 | .auto_corr_max_cck = 175, |
| 144 | .auto_corr_min_cck_mrc = 160, |
| 145 | .auto_corr_max_cck_mrc = 310, |
| 146 | .nrg_th_cck = 97, |
| 147 | .nrg_th_ofdm = 100, |
Wey-Yi Guy | 55036d6 | 2009-10-09 13:20:24 -0700 | [diff] [blame] | 148 | |
| 149 | .barker_corr_th_min = 190, |
| 150 | .barker_corr_th_min_mrc = 390, |
| 151 | .nrg_th_cca = 62, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 152 | }; |
| 153 | |
| 154 | static int iwl6000_hw_set_hw_params(struct iwl_priv *priv) |
| 155 | { |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 156 | if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES && |
| 157 | iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES) |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 158 | priv->cfg->base_params->num_of_queues = |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 159 | iwlagn_mod_params.num_of_queues; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 160 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 161 | priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 162 | priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM; |
| 163 | priv->hw_params.scd_bc_tbls_size = |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 164 | priv->cfg->base_params->num_of_queues * |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 165 | sizeof(struct iwlagn_scd_bc_tbl); |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 166 | priv->hw_params.tfd_size = sizeof(struct iwl_tfd); |
Wey-Yi Guy | bf3c7fd | 2010-06-24 14:08:05 -0700 | [diff] [blame] | 167 | priv->hw_params.max_stations = IWLAGN_STATION_COUNT; |
Johannes Berg | a194e32 | 2010-08-27 08:53:46 -0700 | [diff] [blame] | 168 | priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 169 | |
| 170 | priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE; |
| 171 | priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE; |
| 172 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 173 | priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
| 174 | BIT(IEEE80211_BAND_5GHZ); |
| 175 | priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR; |
| 176 | |
| 177 | priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant); |
Wey-Yi Guy | 17423ea | 2010-12-06 11:51:39 -0800 | [diff] [blame] | 178 | if (priv->cfg->rx_with_siso_diversity) |
| 179 | priv->hw_params.rx_chains_num = 1; |
| 180 | else |
| 181 | priv->hw_params.rx_chains_num = |
| 182 | num_of_ant(priv->cfg->valid_rx_ant); |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 183 | priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant; |
| 184 | priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant; |
| 185 | |
Johannes Berg | 0453674 | 2010-09-22 18:02:08 +0200 | [diff] [blame] | 186 | iwl6000_set_ct_threshold(priv); |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 187 | |
| 188 | /* Set initial sensitivity parameters */ |
| 189 | /* Set initial calibration set */ |
| 190 | priv->hw_params.sens = &iwl6000_sensitivity; |
Wey-Yi Guy | e517736a | 2010-04-19 18:49:40 -0700 | [diff] [blame] | 191 | priv->hw_params.calib_init_cfg = |
| 192 | BIT(IWL_CALIB_XTAL) | |
| 193 | BIT(IWL_CALIB_LO) | |
| 194 | BIT(IWL_CALIB_TX_IQ) | |
| 195 | BIT(IWL_CALIB_BASE_BAND); |
Wey-Yi Guy | 178d159 | 2010-06-15 16:14:53 -0700 | [diff] [blame] | 196 | if (priv->cfg->need_dc_calib) |
Shanyu Zhao | 6d6a1af | 2010-09-14 18:13:31 -0700 | [diff] [blame] | 197 | priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX); |
Shanyu Zhao | bf53f93 | 2010-09-21 16:54:01 -0700 | [diff] [blame] | 198 | if (priv->cfg->need_temp_offset_calib) |
| 199 | priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET); |
Abhijeet Kolekar | 07f33f9 | 2010-01-22 14:22:47 -0800 | [diff] [blame] | 200 | |
Wey-Yi Guy | a0ee74c | 2010-05-06 08:54:10 -0700 | [diff] [blame] | 201 | priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS; |
| 202 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 203 | return 0; |
| 204 | } |
| 205 | |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 206 | static int iwl6000_hw_channel_switch(struct iwl_priv *priv, |
| 207 | struct ieee80211_channel_switch *ch_switch) |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 208 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 209 | /* |
| 210 | * MULTI-FIXME |
| 211 | * See iwl_mac_channel_switch. |
| 212 | */ |
| 213 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 214 | struct iwl6000_channel_switch_cmd cmd; |
| 215 | const struct iwl_channel_info *ch_info; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 216 | u32 switch_time_in_usec, ucode_switch_time; |
| 217 | u16 ch; |
| 218 | u32 tsf_low; |
| 219 | u8 switch_count; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 220 | u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval); |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 221 | struct ieee80211_vif *vif = ctx->vif; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 222 | struct iwl_host_cmd hcmd = { |
| 223 | .id = REPLY_CHANNEL_SWITCH, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 224 | .len = { sizeof(cmd), }, |
Wey-Yi Guy | 3839f7c | 2010-05-18 09:18:06 -0700 | [diff] [blame] | 225 | .flags = CMD_SYNC, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 226 | .data = { &cmd, }, |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 227 | }; |
| 228 | |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 229 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
Shanyu Zhao | 81e9543 | 2010-07-28 13:40:27 -0700 | [diff] [blame] | 230 | ch = ch_switch->channel->hw_value; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 231 | IWL_DEBUG_11H(priv, "channel switch from %u to %u\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 232 | ctx->active.channel, ch); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 233 | cmd.channel = cpu_to_le16(ch); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 234 | cmd.rxon_flags = ctx->staging.flags; |
| 235 | cmd.rxon_filter_flags = ctx->staging.filter_flags; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 236 | switch_count = ch_switch->count; |
| 237 | tsf_low = ch_switch->timestamp & 0x0ffffffff; |
| 238 | /* |
| 239 | * calculate the ucode channel switch time |
| 240 | * adding TSF as one of the factor for when to switch |
| 241 | */ |
| 242 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { |
| 243 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / |
| 244 | beacon_interval)) { |
| 245 | switch_count -= (priv->ucode_beacon_time - |
| 246 | tsf_low) / beacon_interval; |
| 247 | } else |
| 248 | switch_count = 0; |
| 249 | } |
| 250 | if (switch_count <= 1) |
| 251 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); |
| 252 | else { |
| 253 | switch_time_in_usec = |
| 254 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; |
| 255 | ucode_switch_time = iwl_usecs_to_beacons(priv, |
| 256 | switch_time_in_usec, |
| 257 | beacon_interval); |
| 258 | cmd.switch_time = iwl_add_beacon_time(priv, |
| 259 | priv->ucode_beacon_time, |
| 260 | ucode_switch_time, |
| 261 | beacon_interval); |
| 262 | } |
| 263 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", |
| 264 | cmd.switch_time); |
| 265 | ch_info = iwl_get_channel_info(priv, priv->band, ch); |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 266 | if (ch_info) |
| 267 | cmd.expect_beacon = is_channel_radar(ch_info); |
| 268 | else { |
| 269 | IWL_ERR(priv, "invalid channel switch from %u to %u\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 270 | ctx->active.channel, ch); |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 271 | return -EFAULT; |
| 272 | } |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 273 | priv->switch_rxon.channel = cmd.channel; |
Wey-Yi Guy | 0924e519 | 2009-11-06 14:52:54 -0800 | [diff] [blame] | 274 | priv->switch_rxon.switch_in_progress = true; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 275 | |
| 276 | return iwl_send_cmd_sync(priv, &hcmd); |
| 277 | } |
| 278 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 279 | static struct iwl_lib_ops iwl6000_lib = { |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 280 | .set_hw_params = iwl6000_hw_set_hw_params, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 281 | .rx_handler_setup = iwlagn_rx_handler_setup, |
| 282 | .setup_deferred_work = iwlagn_setup_deferred_work, |
| 283 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 284 | .send_tx_power = iwlagn_send_tx_power, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 285 | .update_chain_flags = iwl_update_chain_flags, |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 286 | .set_channel_switch = iwl6000_hw_channel_switch, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 287 | .apm_ops = { |
Ben Cahill | fadb358 | 2009-10-23 13:42:21 -0700 | [diff] [blame] | 288 | .init = iwl_apm_init, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 289 | .config = iwl6000_nic_config, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 290 | }, |
| 291 | .eeprom_ops = { |
| 292 | .regulatory_bands = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 293 | EEPROM_REG_BAND_1_CHANNELS, |
| 294 | EEPROM_REG_BAND_2_CHANNELS, |
| 295 | EEPROM_REG_BAND_3_CHANNELS, |
| 296 | EEPROM_REG_BAND_4_CHANNELS, |
| 297 | EEPROM_REG_BAND_5_CHANNELS, |
Shanyu Zhao | f2fa1b0 | 2010-04-07 18:37:52 -0700 | [diff] [blame] | 298 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 299 | EEPROM_REG_BAND_52_HT40_CHANNELS |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 300 | }, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 301 | .query_addr = iwlagn_eeprom_query_addr, |
Wey-Yi Guy | ab9fd1b | 2009-08-21 13:34:23 -0700 | [diff] [blame] | 302 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 303 | }, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 304 | .temp_ops = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 305 | .temperature = iwlagn_temperature, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 306 | }, |
Wey-Yi Guy | 716c74b | 2010-06-24 13:22:36 -0700 | [diff] [blame] | 307 | .txfifo_flush = iwlagn_txfifo_flush, |
Wey-Yi Guy | 6555063 | 2010-06-24 13:18:35 -0700 | [diff] [blame] | 308 | .dev_txfifo_flush = iwlagn_dev_txfifo_flush, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 309 | }; |
| 310 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 311 | static struct iwl_lib_ops iwl6030_lib = { |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 312 | .set_hw_params = iwl6000_hw_set_hw_params, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 313 | .rx_handler_setup = iwlagn_bt_rx_handler_setup, |
| 314 | .setup_deferred_work = iwlagn_bt_setup_deferred_work, |
| 315 | .cancel_deferred_work = iwlagn_bt_cancel_deferred_work, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 316 | .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 317 | .send_tx_power = iwlagn_send_tx_power, |
| 318 | .update_chain_flags = iwl_update_chain_flags, |
| 319 | .set_channel_switch = iwl6000_hw_channel_switch, |
| 320 | .apm_ops = { |
| 321 | .init = iwl_apm_init, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 322 | .config = iwl6000_nic_config, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 323 | }, |
| 324 | .eeprom_ops = { |
| 325 | .regulatory_bands = { |
| 326 | EEPROM_REG_BAND_1_CHANNELS, |
| 327 | EEPROM_REG_BAND_2_CHANNELS, |
| 328 | EEPROM_REG_BAND_3_CHANNELS, |
| 329 | EEPROM_REG_BAND_4_CHANNELS, |
| 330 | EEPROM_REG_BAND_5_CHANNELS, |
| 331 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
| 332 | EEPROM_REG_BAND_52_HT40_CHANNELS |
| 333 | }, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 334 | .query_addr = iwlagn_eeprom_query_addr, |
| 335 | .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower, |
| 336 | }, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 337 | .temp_ops = { |
| 338 | .temperature = iwlagn_temperature, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 339 | }, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 340 | .txfifo_flush = iwlagn_txfifo_flush, |
| 341 | .dev_txfifo_flush = iwlagn_dev_txfifo_flush, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 342 | }; |
| 343 | |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 344 | static struct iwl_nic_ops iwl6050_nic_ops = { |
| 345 | .additional_nic_config = &iwl6050_additional_nic_config, |
| 346 | }; |
| 347 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 348 | static struct iwl_nic_ops iwl6150_nic_ops = { |
| 349 | .additional_nic_config = &iwl6150_additional_nic_config, |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 350 | }; |
| 351 | |
Emese Revfy | 45d5d80 | 2009-12-14 00:59:53 +0100 | [diff] [blame] | 352 | static const struct iwl_ops iwl6000_ops = { |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 353 | .lib = &iwl6000_lib, |
Wey-Yi Guy | 7dc77db | 2010-03-16 10:23:31 -0700 | [diff] [blame] | 354 | .hcmd = &iwlagn_hcmd, |
| 355 | .utils = &iwlagn_hcmd_utils, |
Jay Sternberg | 29f35c1 | 2009-01-29 11:09:16 -0800 | [diff] [blame] | 356 | }; |
| 357 | |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 358 | static const struct iwl_ops iwl6050_ops = { |
| 359 | .lib = &iwl6000_lib, |
| 360 | .hcmd = &iwlagn_hcmd, |
| 361 | .utils = &iwlagn_hcmd_utils, |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 362 | .nic = &iwl6050_nic_ops, |
| 363 | }; |
| 364 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 365 | static const struct iwl_ops iwl6150_ops = { |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 366 | .lib = &iwl6000_lib, |
| 367 | .hcmd = &iwlagn_hcmd, |
| 368 | .utils = &iwlagn_hcmd_utils, |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 369 | .nic = &iwl6150_nic_ops, |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 370 | }; |
| 371 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 372 | static const struct iwl_ops iwl6030_ops = { |
| 373 | .lib = &iwl6030_lib, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 374 | .hcmd = &iwlagn_bt_hcmd, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 375 | .utils = &iwlagn_hcmd_utils, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 376 | }; |
| 377 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 378 | static struct iwl_base_params iwl6000_base_params = { |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 379 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 380 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 381 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 382 | .pll_cfg_val = 0, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 383 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 384 | .shadow_ram_support = true, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 385 | .led_compensation = 51, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 386 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 387 | .adv_thermal_throttle = true, |
| 388 | .support_ct_kill_exit = true, |
| 389 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 390 | .chain_noise_scale = 1000, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 391 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 392 | .max_event_log_size = 512, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 393 | .shadow_reg_enable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 394 | }; |
| 395 | |
| 396 | static struct iwl_base_params iwl6050_base_params = { |
| 397 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 398 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 399 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 400 | .pll_cfg_val = 0, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 401 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, |
| 402 | .shadow_ram_support = true, |
| 403 | .led_compensation = 51, |
| 404 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 405 | .adv_thermal_throttle = true, |
| 406 | .support_ct_kill_exit = true, |
| 407 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 408 | .chain_noise_scale = 1500, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 409 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 410 | .max_event_log_size = 1024, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 411 | .shadow_reg_enable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 412 | }; |
Wey-Yi Guy | 4fb3324 | 2010-11-29 10:45:16 -0800 | [diff] [blame] | 413 | static struct iwl_base_params iwl6000_g2_base_params = { |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 414 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 415 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 416 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 417 | .pll_cfg_val = 0, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 418 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 419 | .shadow_ram_support = true, |
Wey-Yi Guy | 4fb3324 | 2010-11-29 10:45:16 -0800 | [diff] [blame] | 420 | .led_compensation = 57, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 421 | .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 422 | .adv_thermal_throttle = true, |
| 423 | .support_ct_kill_exit = true, |
| 424 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 425 | .chain_noise_scale = 1000, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 426 | .wd_timeout = IWL_LONG_WD_TIMEOUT, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 427 | .max_event_log_size = 512, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 428 | .shadow_reg_enable = true, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 429 | }; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 430 | |
| 431 | static struct iwl_ht_params iwl6000_ht_params = { |
| 432 | .ht_greenfield_support = true, |
| 433 | .use_rts_for_aggregation = true, /* use rts/cts protection */ |
| 434 | }; |
| 435 | |
| 436 | static struct iwl_bt_params iwl6000_bt_params = { |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 437 | /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */ |
| 438 | .advanced_bt_coexist = true, |
Wey-Yi Guy | 66e863a5 | 2010-11-08 14:54:37 -0800 | [diff] [blame] | 439 | .agg_time_limit = BT_AGG_THRESHOLD_DEF, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 440 | .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE, |
| 441 | .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT, |
Wey-Yi Guy | e366176 | 2010-11-23 10:58:54 -0800 | [diff] [blame] | 442 | .bt_sco_disable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 443 | }; |
| 444 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 445 | #define IWL_DEVICE_6005 \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 446 | .fw_name_pre = IWL6005_FW_PRE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 447 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ |
| 448 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 449 | .eeprom_ver = EEPROM_6005_EEPROM_VERSION, \ |
| 450 | .eeprom_calib_ver = EEPROM_6005_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 451 | .ops = &iwl6000_ops, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 452 | .base_params = &iwl6000_g2_base_params, \ |
| 453 | .need_dc_calib = true, \ |
| 454 | .need_temp_offset_calib = true, \ |
| 455 | .led_mode = IWL_LED_RF_STATE |
| 456 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 457 | struct iwl_cfg iwl6005_2agn_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 458 | .name = "Intel(R) Centrino(R) Advanced-N 6205 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 459 | IWL_DEVICE_6005, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 460 | .ht_params = &iwl6000_ht_params, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 461 | }; |
| 462 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 463 | struct iwl_cfg iwl6005_2abg_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 464 | .name = "Intel(R) Centrino(R) Advanced-N 6205 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 465 | IWL_DEVICE_6005, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 466 | }; |
| 467 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 468 | struct iwl_cfg iwl6005_2bg_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 469 | .name = "Intel(R) Centrino(R) Advanced-N 6205 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 470 | IWL_DEVICE_6005, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 471 | }; |
| 472 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 473 | #define IWL_DEVICE_6030 \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 474 | .fw_name_pre = IWL6030_FW_PRE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 475 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ |
| 476 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 477 | .eeprom_ver = EEPROM_6030_EEPROM_VERSION, \ |
| 478 | .eeprom_calib_ver = EEPROM_6030_TX_POWER_VERSION, \ |
| 479 | .ops = &iwl6030_ops, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 480 | .base_params = &iwl6000_g2_base_params, \ |
| 481 | .bt_params = &iwl6000_bt_params, \ |
| 482 | .need_dc_calib = true, \ |
| 483 | .need_temp_offset_calib = true, \ |
| 484 | .led_mode = IWL_LED_RF_STATE, \ |
Stanislaw Gruszka | cd017f2 | 2010-12-23 15:12:30 +0100 | [diff] [blame] | 485 | .adv_pm = true \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 486 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 487 | struct iwl_cfg iwl6030_2agn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 488 | .name = "Intel(R) Centrino(R) Advanced-N 6230 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 489 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 490 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 491 | }; |
| 492 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 493 | struct iwl_cfg iwl6030_2abg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 494 | .name = "Intel(R) Centrino(R) Advanced-N 6230 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 495 | IWL_DEVICE_6030, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 496 | }; |
| 497 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 498 | struct iwl_cfg iwl6030_2bgn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 499 | .name = "Intel(R) Centrino(R) Advanced-N 6230 BGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 500 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 501 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 502 | }; |
| 503 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 504 | struct iwl_cfg iwl6030_2bg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 505 | .name = "Intel(R) Centrino(R) Advanced-N 6230 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 506 | IWL_DEVICE_6030, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 507 | }; |
| 508 | |
Wey-Yi Guy | d103e34 | 2011-03-10 03:17:16 -0800 | [diff] [blame] | 509 | struct iwl_cfg iwl6035_2agn_cfg = { |
| 510 | .name = "6035 Series 2x2 AGN/BT", |
| 511 | IWL_DEVICE_6030, |
| 512 | .ht_params = &iwl6000_ht_params, |
| 513 | }; |
| 514 | |
| 515 | struct iwl_cfg iwl6035_2abg_cfg = { |
| 516 | .name = "6035 Series 2x2 ABG/BT", |
| 517 | IWL_DEVICE_6030, |
| 518 | }; |
| 519 | |
| 520 | struct iwl_cfg iwl6035_2bg_cfg = { |
| 521 | .name = "6035 Series 2x2 BG/BT", |
| 522 | IWL_DEVICE_6030, |
| 523 | }; |
| 524 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 525 | struct iwl_cfg iwl1030_bgn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 526 | .name = "Intel(R) Centrino(R) Wireless-N 1030 BGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 527 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 528 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 529 | }; |
| 530 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 531 | struct iwl_cfg iwl1030_bg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 532 | .name = "Intel(R) Centrino(R) Wireless-N 1030 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 533 | IWL_DEVICE_6030, |
| 534 | }; |
| 535 | |
| 536 | struct iwl_cfg iwl130_bgn_cfg = { |
| 537 | .name = "Intel(R) Centrino(R) Wireless-N 130 BGN", |
| 538 | IWL_DEVICE_6030, |
| 539 | .ht_params = &iwl6000_ht_params, |
| 540 | .rx_with_siso_diversity = true, |
| 541 | }; |
| 542 | |
| 543 | struct iwl_cfg iwl130_bg_cfg = { |
| 544 | .name = "Intel(R) Centrino(R) Wireless-N 130 BG", |
| 545 | IWL_DEVICE_6030, |
| 546 | .rx_with_siso_diversity = true, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 547 | }; |
| 548 | |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 549 | /* |
| 550 | * "i": Internal configuration, use internal Power Amplifier |
| 551 | */ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 552 | #define IWL_DEVICE_6000i \ |
| 553 | .fw_name_pre = IWL6000_FW_PRE, \ |
| 554 | .ucode_api_max = IWL6000_UCODE_API_MAX, \ |
| 555 | .ucode_api_min = IWL6000_UCODE_API_MIN, \ |
| 556 | .valid_tx_ant = ANT_BC, /* .cfg overwrite */ \ |
| 557 | .valid_rx_ant = ANT_BC, /* .cfg overwrite */ \ |
| 558 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, \ |
| 559 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, \ |
| 560 | .ops = &iwl6000_ops, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 561 | .base_params = &iwl6000_base_params, \ |
| 562 | .pa_type = IWL_PA_INTERNAL, \ |
| 563 | .led_mode = IWL_LED_BLINK |
| 564 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 565 | struct iwl_cfg iwl6000i_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 566 | .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 567 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 568 | .ht_params = &iwl6000_ht_params, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 569 | }; |
| 570 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 571 | struct iwl_cfg iwl6000i_2abg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 572 | .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 573 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 574 | }; |
| 575 | |
| 576 | struct iwl_cfg iwl6000i_2bg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 577 | .name = "Intel(R) Centrino(R) Advanced-N 6200 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 578 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 579 | }; |
| 580 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 581 | #define IWL_DEVICE_6050 \ |
| 582 | .fw_name_pre = IWL6050_FW_PRE, \ |
| 583 | .ucode_api_max = IWL6050_UCODE_API_MAX, \ |
| 584 | .ucode_api_min = IWL6050_UCODE_API_MIN, \ |
Wey-Yi Guy | ff458ed | 2011-01-31 13:56:03 -0800 | [diff] [blame] | 585 | .valid_tx_ant = ANT_AB, /* .cfg overwrite */ \ |
| 586 | .valid_rx_ant = ANT_AB, /* .cfg overwrite */ \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 587 | .ops = &iwl6050_ops, \ |
| 588 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, \ |
| 589 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 590 | .base_params = &iwl6050_base_params, \ |
| 591 | .need_dc_calib = true, \ |
| 592 | .led_mode = IWL_LED_BLINK, \ |
| 593 | .internal_wimax_coex = true |
| 594 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 595 | struct iwl_cfg iwl6050_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 596 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 597 | IWL_DEVICE_6050, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 598 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 599 | }; |
| 600 | |
| 601 | struct iwl_cfg iwl6050_2abg_cfg = { |
| 602 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG", |
| 603 | IWL_DEVICE_6050, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 604 | }; |
| 605 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 606 | struct iwl_cfg iwl6150_bgn_cfg = { |
Wey-Yi Guy | f9dc646 | 2010-11-17 12:13:52 -0800 | [diff] [blame] | 607 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN", |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 608 | .fw_name_pre = IWL6050_FW_PRE, |
| 609 | .ucode_api_max = IWL6050_UCODE_API_MAX, |
| 610 | .ucode_api_min = IWL6050_UCODE_API_MIN, |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 611 | .eeprom_ver = EEPROM_6150_EEPROM_VERSION, |
| 612 | .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION, |
| 613 | .ops = &iwl6150_ops, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 614 | .base_params = &iwl6050_base_params, |
| 615 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 616 | .need_dc_calib = true, |
Wey-Yi Guy | 564b344 | 2010-11-09 09:21:34 -0800 | [diff] [blame] | 617 | .led_mode = IWL_LED_RF_STATE, |
Wey-Yi Guy | 50619ac | 2010-12-07 08:06:31 -0800 | [diff] [blame] | 618 | .internal_wimax_coex = true, |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 619 | }; |
| 620 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 621 | struct iwl_cfg iwl6000_3agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 622 | .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN", |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 623 | .fw_name_pre = IWL6000_FW_PRE, |
| 624 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
| 625 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 626 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 627 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
| 628 | .ops = &iwl6000_ops, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 629 | .base_params = &iwl6000_base_params, |
| 630 | .ht_params = &iwl6000_ht_params, |
| 631 | .need_dc_calib = true, |
Wey-Yi Guy | 564b344 | 2010-11-09 09:21:34 -0800 | [diff] [blame] | 632 | .led_mode = IWL_LED_BLINK, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 633 | }; |
| 634 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 635 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX)); |
| 636 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 637 | MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |
| 638 | MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |