Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 1 | /****************************************************************************** |
| 2 | * |
Wey-Yi Guy | 4e31826 | 2011-12-27 11:21:32 -0800 | [diff] [blame] | 3 | * Copyright(c) 2008 - 2012 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> |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 30 | #include <linux/delay.h> |
| 31 | #include <linux/skbuff.h> |
| 32 | #include <linux/netdevice.h> |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 33 | #include <net/mac80211.h> |
| 34 | #include <linux/etherdevice.h> |
| 35 | #include <asm/unaligned.h> |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 36 | #include <linux/stringify.h> |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 37 | |
| 38 | #include "iwl-eeprom.h" |
| 39 | #include "iwl-dev.h" |
| 40 | #include "iwl-core.h" |
| 41 | #include "iwl-io.h" |
Johannes Berg | a117512 | 2010-01-21 06:21:10 -0800 | [diff] [blame] | 42 | #include "iwl-agn.h" |
Wey-Yi Guy | 19e6cda | 2010-03-16 17:41:23 -0700 | [diff] [blame] | 43 | #include "iwl-agn-hw.h" |
Emmanuel Grumbach | bdfbf09 | 2011-07-08 08:46:16 -0700 | [diff] [blame] | 44 | #include "iwl-trans.h" |
Emmanuel Grumbach | 48f20d3 | 2011-08-25 23:10:36 -0700 | [diff] [blame] | 45 | #include "iwl-shared.h" |
Johannes Berg | cebcbd7 | 2011-09-15 11:46:46 -0700 | [diff] [blame] | 46 | #include "iwl-cfg.h" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 47 | |
| 48 | /* Highest firmware API version supported */ |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 49 | #define IWL6000_UCODE_API_MAX 6 |
Wey-Yi Guy | 62cb3c6 | 2010-09-28 17:43:10 -0700 | [diff] [blame] | 50 | #define IWL6050_UCODE_API_MAX 5 |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 51 | #define IWL6000G2_UCODE_API_MAX 6 |
| 52 | |
| 53 | /* Oldest version we won't warn about */ |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 54 | #define IWL6000_UCODE_API_OK 4 |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 55 | #define IWL6000G2_UCODE_API_OK 5 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 56 | |
| 57 | /* Lowest firmware API version supported */ |
Wey-Yi Guy | 4424642 | 2009-10-23 13:42:34 -0700 | [diff] [blame] | 58 | #define IWL6000_UCODE_API_MIN 4 |
| 59 | #define IWL6050_UCODE_API_MIN 4 |
Shanyu Zhao | 4b3e806 | 2010-04-07 18:06:36 -0700 | [diff] [blame] | 60 | #define IWL6000G2_UCODE_API_MIN 4 |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 61 | |
| 62 | #define IWL6000_FW_PRE "iwlwifi-6000-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 63 | #define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE __stringify(api) ".ucode" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 64 | |
| 65 | #define IWL6050_FW_PRE "iwlwifi-6050-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 66 | #define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE __stringify(api) ".ucode" |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 67 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 68 | #define IWL6005_FW_PRE "iwlwifi-6000g2a-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 69 | #define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE __stringify(api) ".ucode" |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 70 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 71 | #define IWL6030_FW_PRE "iwlwifi-6000g2b-" |
Evgeni Golov | 8fcbd4dc | 2011-06-12 05:34:31 -0700 | [diff] [blame] | 72 | #define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE __stringify(api) ".ucode" |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 73 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 74 | static void iwl6000_set_ct_threshold(struct iwl_priv *priv) |
| 75 | { |
| 76 | /* want Celsius */ |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 77 | hw_params(priv).ct_kill_threshold = CT_KILL_THRESHOLD; |
| 78 | hw_params(priv).ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD; |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 79 | } |
| 80 | |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 81 | static void iwl6050_additional_nic_config(struct iwl_priv *priv) |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 82 | { |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 83 | /* Indicate calibration version to uCode. */ |
Don Fry | ab36eab | 2011-11-30 15:37:32 -0800 | [diff] [blame] | 84 | if (iwl_eeprom_calib_version(priv->shrd) >= 6) |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 85 | iwl_set_bit(trans(priv), CSR_GP_DRIVER_REG, |
Abhijeet Kolekar | d575593 | 2010-02-18 22:03:05 -0800 | [diff] [blame] | 86 | CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6); |
| 87 | } |
| 88 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 89 | static void iwl6150_additional_nic_config(struct iwl_priv *priv) |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 90 | { |
| 91 | /* Indicate calibration version to uCode. */ |
Don Fry | ab36eab | 2011-11-30 15:37:32 -0800 | [diff] [blame] | 92 | if (iwl_eeprom_calib_version(priv->shrd) >= 6) |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 93 | iwl_set_bit(trans(priv), CSR_GP_DRIVER_REG, |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 94 | CSR_GP_DRIVER_REG_BIT_CALIB_VERSION6); |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 95 | iwl_set_bit(trans(priv), CSR_GP_DRIVER_REG, |
Shanyu Zhao | 02796d7 | 2010-09-14 16:23:42 -0700 | [diff] [blame] | 96 | CSR_GP_DRIVER_REG_BIT_6050_1x2); |
| 97 | } |
| 98 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 99 | /* NIC configuration for 6000 series */ |
| 100 | static void iwl6000_nic_config(struct iwl_priv *priv) |
| 101 | { |
Wey-Yi Guy | 86cb3b4 | 2011-06-14 15:23:39 -0700 | [diff] [blame] | 102 | iwl_rf_config(priv); |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 103 | |
| 104 | /* no locking required for register write */ |
Don Fry | 3862241 | 2011-12-16 07:07:36 -0800 | [diff] [blame] | 105 | if (cfg(priv)->pa_type == IWL_PA_INTERNAL) { |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 106 | /* 2x2 IPA phy type */ |
Emmanuel Grumbach | 1042db2 | 2012-01-03 16:56:15 +0200 | [diff] [blame] | 107 | iwl_write32(trans(priv), CSR_GP_DRIVER_REG, |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 108 | CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA); |
| 109 | } |
Shanyu Zhao | 6b5ce50 | 2010-09-14 16:23:32 -0700 | [diff] [blame] | 110 | /* do additional nic configuration if needed */ |
Don Fry | 3862241 | 2011-12-16 07:07:36 -0800 | [diff] [blame] | 111 | if (cfg(priv)->additional_nic_config) |
| 112 | cfg(priv)->additional_nic_config(priv); |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 115 | static struct iwl_sensitivity_ranges iwl6000_sensitivity = { |
Wey-Yi Guy | e7515ba | 2011-07-23 10:24:49 -0700 | [diff] [blame] | 116 | .min_nrg_cck = 110, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 117 | .max_nrg_cck = 0, /* not used, set to 0 */ |
| 118 | .auto_corr_min_ofdm = 80, |
| 119 | .auto_corr_min_ofdm_mrc = 128, |
| 120 | .auto_corr_min_ofdm_x1 = 105, |
| 121 | .auto_corr_min_ofdm_mrc_x1 = 192, |
| 122 | |
| 123 | .auto_corr_max_ofdm = 145, |
| 124 | .auto_corr_max_ofdm_mrc = 232, |
Wey-Yi Guy | 2494f63 | 2010-01-20 12:22:52 -0800 | [diff] [blame] | 125 | .auto_corr_max_ofdm_x1 = 110, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 126 | .auto_corr_max_ofdm_mrc_x1 = 232, |
| 127 | |
| 128 | .auto_corr_min_cck = 125, |
| 129 | .auto_corr_max_cck = 175, |
| 130 | .auto_corr_min_cck_mrc = 160, |
| 131 | .auto_corr_max_cck_mrc = 310, |
Wey-Yi Guy | e7515ba | 2011-07-23 10:24:49 -0700 | [diff] [blame] | 132 | .nrg_th_cck = 110, |
| 133 | .nrg_th_ofdm = 110, |
Wey-Yi Guy | 55036d6 | 2009-10-09 13:20:24 -0700 | [diff] [blame] | 134 | |
| 135 | .barker_corr_th_min = 190, |
Wey-Yi Guy | e7515ba | 2011-07-23 10:24:49 -0700 | [diff] [blame] | 136 | .barker_corr_th_min_mrc = 336, |
Wey-Yi Guy | 55036d6 | 2009-10-09 13:20:24 -0700 | [diff] [blame] | 137 | .nrg_th_cca = 62, |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 138 | }; |
| 139 | |
Emmanuel Grumbach | 6d4dec7 | 2012-02-17 10:52:03 -0800 | [diff] [blame] | 140 | static void iwl6000_hw_set_hw_params(struct iwl_priv *priv) |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 141 | { |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 142 | if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES && |
| 143 | iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES) |
Don Fry | 3862241 | 2011-12-16 07:07:36 -0800 | [diff] [blame] | 144 | cfg(priv)->base_params->num_of_queues = |
Don Fry | 9d143e9 | 2011-04-20 15:23:57 -0700 | [diff] [blame] | 145 | iwlagn_mod_params.num_of_queues; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 146 | |
Don Fry | 3862241 | 2011-12-16 07:07:36 -0800 | [diff] [blame] | 147 | hw_params(priv).max_txq_num = cfg(priv)->base_params->num_of_queues; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 148 | |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 149 | hw_params(priv).ht40_channel = BIT(IEEE80211_BAND_2GHZ) | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 150 | BIT(IEEE80211_BAND_5GHZ); |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 151 | |
Don Fry | 3862241 | 2011-12-16 07:07:36 -0800 | [diff] [blame] | 152 | hw_params(priv).tx_chains_num = num_of_ant(cfg(priv)->valid_tx_ant); |
| 153 | if (cfg(priv)->rx_with_siso_diversity) |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 154 | hw_params(priv).rx_chains_num = 1; |
Wey-Yi Guy | 17423ea | 2010-12-06 11:51:39 -0800 | [diff] [blame] | 155 | else |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 156 | hw_params(priv).rx_chains_num = |
Don Fry | 3862241 | 2011-12-16 07:07:36 -0800 | [diff] [blame] | 157 | num_of_ant(cfg(priv)->valid_rx_ant); |
| 158 | hw_params(priv).valid_tx_ant = cfg(priv)->valid_tx_ant; |
| 159 | hw_params(priv).valid_rx_ant = cfg(priv)->valid_rx_ant; |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 160 | |
Johannes Berg | 0453674 | 2010-09-22 18:02:08 +0200 | [diff] [blame] | 161 | iwl6000_set_ct_threshold(priv); |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 162 | |
| 163 | /* Set initial sensitivity parameters */ |
Emmanuel Grumbach | d618912 | 2011-08-25 23:10:39 -0700 | [diff] [blame] | 164 | hw_params(priv).sens = &iwl6000_sensitivity; |
Abhijeet Kolekar | 07f33f9 | 2010-01-22 14:22:47 -0800 | [diff] [blame] | 165 | |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 166 | } |
| 167 | |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 168 | static int iwl6000_hw_channel_switch(struct iwl_priv *priv, |
| 169 | struct ieee80211_channel_switch *ch_switch) |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 170 | { |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 171 | /* |
| 172 | * MULTI-FIXME |
Wey-Yi Guy | ade4c64 | 2011-10-10 07:27:11 -0700 | [diff] [blame] | 173 | * See iwlagn_mac_channel_switch. |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 174 | */ |
| 175 | struct iwl_rxon_context *ctx = &priv->contexts[IWL_RXON_CTX_BSS]; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 176 | struct iwl6000_channel_switch_cmd cmd; |
| 177 | const struct iwl_channel_info *ch_info; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 178 | u32 switch_time_in_usec, ucode_switch_time; |
| 179 | u16 ch; |
| 180 | u32 tsf_low; |
| 181 | u8 switch_count; |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 182 | u16 beacon_interval = le16_to_cpu(ctx->timing.beacon_interval); |
Johannes Berg | 8bd413e | 2010-08-23 10:46:40 +0200 | [diff] [blame] | 183 | struct ieee80211_vif *vif = ctx->vif; |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 184 | struct iwl_host_cmd hcmd = { |
| 185 | .id = REPLY_CHANNEL_SWITCH, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 186 | .len = { sizeof(cmd), }, |
Wey-Yi Guy | 3839f7c | 2010-05-18 09:18:06 -0700 | [diff] [blame] | 187 | .flags = CMD_SYNC, |
Johannes Berg | 3fa5073 | 2011-05-04 07:50:38 -0700 | [diff] [blame] | 188 | .data = { &cmd, }, |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 189 | }; |
| 190 | |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 191 | cmd.band = priv->band == IEEE80211_BAND_2GHZ; |
Shanyu Zhao | 81e9543 | 2010-07-28 13:40:27 -0700 | [diff] [blame] | 192 | ch = ch_switch->channel->hw_value; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 193 | IWL_DEBUG_11H(priv, "channel switch from %u to %u\n", |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 194 | ctx->active.channel, ch); |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 195 | cmd.channel = cpu_to_le16(ch); |
Johannes Berg | 246ed35 | 2010-08-23 10:46:32 +0200 | [diff] [blame] | 196 | cmd.rxon_flags = ctx->staging.flags; |
| 197 | cmd.rxon_filter_flags = ctx->staging.filter_flags; |
Wey-Yi Guy | 79d0732 | 2010-05-06 08:54:11 -0700 | [diff] [blame] | 198 | switch_count = ch_switch->count; |
| 199 | tsf_low = ch_switch->timestamp & 0x0ffffffff; |
| 200 | /* |
| 201 | * calculate the ucode channel switch time |
| 202 | * adding TSF as one of the factor for when to switch |
| 203 | */ |
| 204 | if ((priv->ucode_beacon_time > tsf_low) && beacon_interval) { |
| 205 | if (switch_count > ((priv->ucode_beacon_time - tsf_low) / |
| 206 | beacon_interval)) { |
| 207 | switch_count -= (priv->ucode_beacon_time - |
| 208 | tsf_low) / beacon_interval; |
| 209 | } else |
| 210 | switch_count = 0; |
| 211 | } |
| 212 | if (switch_count <= 1) |
| 213 | cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time); |
| 214 | else { |
| 215 | switch_time_in_usec = |
| 216 | vif->bss_conf.beacon_int * switch_count * TIME_UNIT; |
| 217 | ucode_switch_time = iwl_usecs_to_beacons(priv, |
| 218 | switch_time_in_usec, |
| 219 | beacon_interval); |
| 220 | cmd.switch_time = iwl_add_beacon_time(priv, |
| 221 | priv->ucode_beacon_time, |
| 222 | ucode_switch_time, |
| 223 | beacon_interval); |
| 224 | } |
| 225 | IWL_DEBUG_11H(priv, "uCode time for the switch is 0x%x\n", |
| 226 | cmd.switch_time); |
| 227 | ch_info = iwl_get_channel_info(priv, priv->band, ch); |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 228 | if (ch_info) |
| 229 | cmd.expect_beacon = is_channel_radar(ch_info); |
| 230 | else { |
| 231 | IWL_ERR(priv, "invalid 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 | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 233 | return -EFAULT; |
| 234 | } |
| 235 | |
Emmanuel Grumbach | e6bb4c9 | 2011-08-25 23:10:48 -0700 | [diff] [blame] | 236 | return iwl_trans_send_cmd(trans(priv), &hcmd); |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 237 | } |
| 238 | |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 239 | static struct iwl_lib_ops iwl6000_lib = { |
Wey-Yi Guy | f3a2a42 | 2009-09-11 10:38:11 -0700 | [diff] [blame] | 240 | .set_hw_params = iwl6000_hw_set_hw_params, |
Wey-Yi Guy | 4a56e96 | 2009-10-23 13:42:29 -0700 | [diff] [blame] | 241 | .set_channel_switch = iwl6000_hw_channel_switch, |
Fry, Donald H | e4c598b | 2011-07-08 08:46:18 -0700 | [diff] [blame] | 242 | .nic_config = iwl6000_nic_config, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 243 | .eeprom_ops = { |
| 244 | .regulatory_bands = { |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 245 | EEPROM_REG_BAND_1_CHANNELS, |
| 246 | EEPROM_REG_BAND_2_CHANNELS, |
| 247 | EEPROM_REG_BAND_3_CHANNELS, |
| 248 | EEPROM_REG_BAND_4_CHANNELS, |
| 249 | EEPROM_REG_BAND_5_CHANNELS, |
Shanyu Zhao | f2fa1b0 | 2010-04-07 18:37:52 -0700 | [diff] [blame] | 250 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
Wey-Yi Guy | e04ed0a | 2010-03-16 17:47:58 -0700 | [diff] [blame] | 251 | EEPROM_REG_BAND_52_HT40_CHANNELS |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 252 | }, |
Wey-Yi Guy | b39488a | 2011-08-25 23:10:33 -0700 | [diff] [blame] | 253 | .update_enhanced_txpower = iwl_eeprom_enhanced_txpower, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 254 | }, |
Wey-Yi Guy | 909fc3c | 2011-07-08 08:46:20 -0700 | [diff] [blame] | 255 | .temperature = iwlagn_temperature, |
Wey-Yi Guy | 672639d | 2009-07-24 11:13:01 -0700 | [diff] [blame] | 256 | }; |
| 257 | |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 258 | static struct iwl_lib_ops iwl6030_lib = { |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 259 | .set_hw_params = iwl6000_hw_set_hw_params, |
Emmanuel Grumbach | 8d30119 | 2011-07-03 15:45:34 +0300 | [diff] [blame] | 260 | .bt_rx_handler_setup = iwlagn_bt_rx_handler_setup, |
Emmanuel Grumbach | 6bd4dba | 2011-07-03 15:45:34 +0300 | [diff] [blame] | 261 | .bt_setup_deferred_work = iwlagn_bt_setup_deferred_work, |
Wey-Yi Guy | b6e116e | 2010-08-23 07:57:14 -0700 | [diff] [blame] | 262 | .cancel_deferred_work = iwlagn_bt_cancel_deferred_work, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 263 | .set_channel_switch = iwl6000_hw_channel_switch, |
Fry, Donald H | e4c598b | 2011-07-08 08:46:18 -0700 | [diff] [blame] | 264 | .nic_config = iwl6000_nic_config, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 265 | .eeprom_ops = { |
| 266 | .regulatory_bands = { |
| 267 | EEPROM_REG_BAND_1_CHANNELS, |
| 268 | EEPROM_REG_BAND_2_CHANNELS, |
| 269 | EEPROM_REG_BAND_3_CHANNELS, |
| 270 | EEPROM_REG_BAND_4_CHANNELS, |
| 271 | EEPROM_REG_BAND_5_CHANNELS, |
| 272 | EEPROM_6000_REG_BAND_24_HT40_CHANNELS, |
| 273 | EEPROM_REG_BAND_52_HT40_CHANNELS |
| 274 | }, |
Wey-Yi Guy | b39488a | 2011-08-25 23:10:33 -0700 | [diff] [blame] | 275 | .update_enhanced_txpower = iwl_eeprom_enhanced_txpower, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 276 | }, |
Wey-Yi Guy | 909fc3c | 2011-07-08 08:46:20 -0700 | [diff] [blame] | 277 | .temperature = iwlagn_temperature, |
Johannes Berg | 9e4afc2 | 2010-08-23 07:56:57 -0700 | [diff] [blame] | 278 | }; |
| 279 | |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 280 | static struct iwl_base_params iwl6000_base_params = { |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 281 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 282 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 283 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 284 | .pll_cfg_val = 0, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 285 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 286 | .shadow_ram_support = true, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 287 | .led_compensation = 51, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 288 | .adv_thermal_throttle = true, |
| 289 | .support_ct_kill_exit = true, |
| 290 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 291 | .chain_noise_scale = 1000, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 292 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 293 | .max_event_log_size = 512, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 294 | .shadow_reg_enable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 295 | }; |
| 296 | |
| 297 | static struct iwl_base_params iwl6050_base_params = { |
| 298 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 299 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 300 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 301 | .pll_cfg_val = 0, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 302 | .max_ll_items = OTP_MAX_LL_ITEMS_6x50, |
| 303 | .shadow_ram_support = true, |
| 304 | .led_compensation = 51, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 305 | .adv_thermal_throttle = true, |
| 306 | .support_ct_kill_exit = true, |
| 307 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 308 | .chain_noise_scale = 1500, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 309 | .wd_timeout = IWL_DEF_WD_TIMEOUT, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 310 | .max_event_log_size = 1024, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 311 | .shadow_reg_enable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 312 | }; |
Wey-Yi Guy | 4fb3324 | 2010-11-29 10:45:16 -0800 | [diff] [blame] | 313 | static struct iwl_base_params iwl6000_g2_base_params = { |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 314 | .eeprom_size = OTP_LOW_IMAGE_SIZE, |
| 315 | .num_of_queues = IWLAGN_NUM_QUEUES, |
| 316 | .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES, |
| 317 | .pll_cfg_val = 0, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 318 | .max_ll_items = OTP_MAX_LL_ITEMS_6x00, |
| 319 | .shadow_ram_support = true, |
Wey-Yi Guy | 4fb3324 | 2010-11-29 10:45:16 -0800 | [diff] [blame] | 320 | .led_compensation = 57, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 321 | .adv_thermal_throttle = true, |
| 322 | .support_ct_kill_exit = true, |
| 323 | .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF, |
| 324 | .chain_noise_scale = 1000, |
Stanislaw Gruszka | 22de94d | 2010-12-03 15:41:48 +0100 | [diff] [blame] | 325 | .wd_timeout = IWL_LONG_WD_TIMEOUT, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 326 | .max_event_log_size = 512, |
Wey-Yi Guy | f81c1f4 | 2010-11-10 09:56:50 -0800 | [diff] [blame] | 327 | .shadow_reg_enable = true, |
Wey-Yi Guy | de05ead | 2010-09-23 15:24:22 -0700 | [diff] [blame] | 328 | }; |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 329 | |
| 330 | static struct iwl_ht_params iwl6000_ht_params = { |
| 331 | .ht_greenfield_support = true, |
| 332 | .use_rts_for_aggregation = true, /* use rts/cts protection */ |
| 333 | }; |
| 334 | |
| 335 | static struct iwl_bt_params iwl6000_bt_params = { |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 336 | /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */ |
| 337 | .advanced_bt_coexist = true, |
Wey-Yi Guy | 66e863a5 | 2010-11-08 14:54:37 -0800 | [diff] [blame] | 338 | .agg_time_limit = BT_AGG_THRESHOLD_DEF, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 339 | .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE, |
| 340 | .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT, |
Wey-Yi Guy | e366176 | 2010-11-23 10:58:54 -0800 | [diff] [blame] | 341 | .bt_sco_disable = true, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 342 | }; |
| 343 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 344 | #define IWL_DEVICE_6005 \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 345 | .fw_name_pre = IWL6005_FW_PRE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 346 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 347 | .ucode_api_ok = IWL6000G2_UCODE_API_OK, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 348 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 349 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 350 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 351 | .eeprom_ver = EEPROM_6005_EEPROM_VERSION, \ |
| 352 | .eeprom_calib_ver = EEPROM_6005_TX_POWER_VERSION, \ |
Wey-Yi Guy | 90c300c | 2011-07-07 08:33:01 -0700 | [diff] [blame] | 353 | .lib = &iwl6000_lib, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 354 | .base_params = &iwl6000_g2_base_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 355 | .need_temp_offset_calib = true, \ |
| 356 | .led_mode = IWL_LED_RF_STATE |
| 357 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 358 | struct iwl_cfg iwl6005_2agn_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 359 | .name = "Intel(R) Centrino(R) Advanced-N 6205 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 360 | IWL_DEVICE_6005, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 361 | .ht_params = &iwl6000_ht_params, |
Jay Sternberg | 0b5af20 | 2010-03-17 16:16:12 -0700 | [diff] [blame] | 362 | }; |
| 363 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 364 | struct iwl_cfg iwl6005_2abg_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 365 | .name = "Intel(R) Centrino(R) Advanced-N 6205 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 366 | IWL_DEVICE_6005, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 367 | }; |
| 368 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 369 | struct iwl_cfg iwl6005_2bg_cfg = { |
Wey-Yi Guy | 55017ab | 2010-11-17 12:13:53 -0800 | [diff] [blame] | 370 | .name = "Intel(R) Centrino(R) Advanced-N 6205 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 371 | IWL_DEVICE_6005, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 372 | }; |
| 373 | |
Wey-Yi Guy | 6a9ae0d | 2011-08-25 23:10:56 -0700 | [diff] [blame] | 374 | struct iwl_cfg iwl6005_2agn_sff_cfg = { |
| 375 | .name = "Intel(R) Centrino(R) Advanced-N 6205S AGN", |
| 376 | IWL_DEVICE_6005, |
| 377 | .ht_params = &iwl6000_ht_params, |
| 378 | }; |
| 379 | |
Wey-Yi Guy | 5131a60 | 2011-10-10 07:27:00 -0700 | [diff] [blame] | 380 | struct iwl_cfg iwl6005_2agn_d_cfg = { |
| 381 | .name = "Intel(R) Centrino(R) Advanced-N 6205D AGN", |
| 382 | IWL_DEVICE_6005, |
| 383 | .ht_params = &iwl6000_ht_params, |
| 384 | }; |
| 385 | |
Wey-Yi Guy | 3789112 | 2012-02-22 10:21:09 -0800 | [diff] [blame^] | 386 | struct iwl_cfg iwl6005_2agn_mow1_cfg = { |
| 387 | .name = "Intel(R) Centrino(R) Advanced-N 6206 AGN", |
| 388 | IWL_DEVICE_6005, |
| 389 | .ht_params = &iwl6000_ht_params, |
| 390 | }; |
| 391 | struct iwl_cfg iwl6005_2agn_mow2_cfg = { |
| 392 | .name = "Intel(R) Centrino(R) Advanced-N 6207 AGN", |
| 393 | IWL_DEVICE_6005, |
| 394 | .ht_params = &iwl6000_ht_params, |
| 395 | }; |
| 396 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 397 | #define IWL_DEVICE_6030 \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 398 | .fw_name_pre = IWL6030_FW_PRE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 399 | .ucode_api_max = IWL6000G2_UCODE_API_MAX, \ |
Johannes Berg | ca9a460 | 2011-07-23 10:24:45 -0700 | [diff] [blame] | 400 | .ucode_api_ok = IWL6000G2_UCODE_API_OK, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 401 | .ucode_api_min = IWL6000G2_UCODE_API_MIN, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 402 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 403 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 404 | .eeprom_ver = EEPROM_6030_EEPROM_VERSION, \ |
| 405 | .eeprom_calib_ver = EEPROM_6030_TX_POWER_VERSION, \ |
Wey-Yi Guy | 90c300c | 2011-07-07 08:33:01 -0700 | [diff] [blame] | 406 | .lib = &iwl6030_lib, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 407 | .base_params = &iwl6000_g2_base_params, \ |
| 408 | .bt_params = &iwl6000_bt_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 409 | .need_temp_offset_calib = true, \ |
| 410 | .led_mode = IWL_LED_RF_STATE, \ |
Stanislaw Gruszka | cd017f2 | 2010-12-23 15:12:30 +0100 | [diff] [blame] | 411 | .adv_pm = true \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 412 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 413 | struct iwl_cfg iwl6030_2agn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 414 | .name = "Intel(R) Centrino(R) Advanced-N 6230 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 415 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 416 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 417 | }; |
| 418 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 419 | struct iwl_cfg iwl6030_2abg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 420 | .name = "Intel(R) Centrino(R) Advanced-N 6230 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 421 | IWL_DEVICE_6030, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 422 | }; |
| 423 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 424 | struct iwl_cfg iwl6030_2bgn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 425 | .name = "Intel(R) Centrino(R) Advanced-N 6230 BGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 426 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 427 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 9f6e1ba | 2010-05-11 15:21:54 -0700 | [diff] [blame] | 428 | }; |
| 429 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 430 | struct iwl_cfg iwl6030_2bg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 431 | .name = "Intel(R) Centrino(R) Advanced-N 6230 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 432 | IWL_DEVICE_6030, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 433 | }; |
| 434 | |
Wey-Yi Guy | d103e34 | 2011-03-10 03:17:16 -0800 | [diff] [blame] | 435 | struct iwl_cfg iwl6035_2agn_cfg = { |
Don Fry | 6195d13 | 2011-12-06 10:42:41 -0800 | [diff] [blame] | 436 | .name = "Intel(R) Centrino(R) Advanced-N 6235 AGN", |
Wey-Yi Guy | d103e34 | 2011-03-10 03:17:16 -0800 | [diff] [blame] | 437 | IWL_DEVICE_6030, |
| 438 | .ht_params = &iwl6000_ht_params, |
| 439 | }; |
| 440 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 441 | struct iwl_cfg iwl1030_bgn_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 442 | .name = "Intel(R) Centrino(R) Wireless-N 1030 BGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 443 | IWL_DEVICE_6030, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 444 | .ht_params = &iwl6000_ht_params, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 445 | }; |
| 446 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 447 | struct iwl_cfg iwl1030_bg_cfg = { |
Wey-Yi Guy | d2eceef | 2010-11-17 12:13:54 -0800 | [diff] [blame] | 448 | .name = "Intel(R) Centrino(R) Wireless-N 1030 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 449 | IWL_DEVICE_6030, |
| 450 | }; |
| 451 | |
| 452 | struct iwl_cfg iwl130_bgn_cfg = { |
| 453 | .name = "Intel(R) Centrino(R) Wireless-N 130 BGN", |
| 454 | IWL_DEVICE_6030, |
| 455 | .ht_params = &iwl6000_ht_params, |
| 456 | .rx_with_siso_diversity = true, |
| 457 | }; |
| 458 | |
| 459 | struct iwl_cfg iwl130_bg_cfg = { |
| 460 | .name = "Intel(R) Centrino(R) Wireless-N 130 BG", |
| 461 | IWL_DEVICE_6030, |
| 462 | .rx_with_siso_diversity = true, |
Shanyu Zhao | 1808972 | 2010-05-06 10:15:21 -0700 | [diff] [blame] | 463 | }; |
| 464 | |
Shanyu Zhao | 95b1301 | 2010-04-21 11:46:33 -0700 | [diff] [blame] | 465 | /* |
| 466 | * "i": Internal configuration, use internal Power Amplifier |
| 467 | */ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 468 | #define IWL_DEVICE_6000i \ |
| 469 | .fw_name_pre = IWL6000_FW_PRE, \ |
| 470 | .ucode_api_max = IWL6000_UCODE_API_MAX, \ |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 471 | .ucode_api_ok = IWL6000_UCODE_API_OK, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 472 | .ucode_api_min = IWL6000_UCODE_API_MIN, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 473 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 474 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 475 | .valid_tx_ant = ANT_BC, /* .cfg overwrite */ \ |
| 476 | .valid_rx_ant = ANT_BC, /* .cfg overwrite */ \ |
| 477 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, \ |
| 478 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, \ |
Wey-Yi Guy | 90c300c | 2011-07-07 08:33:01 -0700 | [diff] [blame] | 479 | .lib = &iwl6000_lib, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 480 | .base_params = &iwl6000_base_params, \ |
| 481 | .pa_type = IWL_PA_INTERNAL, \ |
| 482 | .led_mode = IWL_LED_BLINK |
| 483 | |
Wey-Yi Guy | 65b7998 | 2009-07-31 14:28:07 -0700 | [diff] [blame] | 484 | struct iwl_cfg iwl6000i_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 485 | .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 486 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 487 | .ht_params = &iwl6000_ht_params, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 488 | }; |
| 489 | |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 490 | struct iwl_cfg iwl6000i_2abg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 491 | .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 492 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 493 | }; |
| 494 | |
| 495 | struct iwl_cfg iwl6000i_2bg_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 496 | .name = "Intel(R) Centrino(R) Advanced-N 6200 BG", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 497 | IWL_DEVICE_6000i, |
Wey-Yi Guy | 5953a62 | 2009-09-17 10:43:53 -0700 | [diff] [blame] | 498 | }; |
| 499 | |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 500 | #define IWL_DEVICE_6050 \ |
| 501 | .fw_name_pre = IWL6050_FW_PRE, \ |
| 502 | .ucode_api_max = IWL6050_UCODE_API_MAX, \ |
| 503 | .ucode_api_min = IWL6050_UCODE_API_MIN, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 504 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 505 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | ff458ed | 2011-01-31 13:56:03 -0800 | [diff] [blame] | 506 | .valid_tx_ant = ANT_AB, /* .cfg overwrite */ \ |
| 507 | .valid_rx_ant = ANT_AB, /* .cfg overwrite */ \ |
Wey-Yi Guy | 90c300c | 2011-07-07 08:33:01 -0700 | [diff] [blame] | 508 | .lib = &iwl6000_lib, \ |
Wey-Yi Guy | e4305fe | 2011-07-06 16:28:47 -0700 | [diff] [blame] | 509 | .additional_nic_config = iwl6050_additional_nic_config, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 510 | .eeprom_ver = EEPROM_6050_EEPROM_VERSION, \ |
| 511 | .eeprom_calib_ver = EEPROM_6050_TX_POWER_VERSION, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 512 | .base_params = &iwl6050_base_params, \ |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 513 | .led_mode = IWL_LED_BLINK, \ |
| 514 | .internal_wimax_coex = true |
| 515 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 516 | struct iwl_cfg iwl6050_2agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 517 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN", |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 518 | IWL_DEVICE_6050, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 519 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 65af8de | 2010-12-08 07:51:50 -0800 | [diff] [blame] | 520 | }; |
| 521 | |
| 522 | struct iwl_cfg iwl6050_2abg_cfg = { |
| 523 | .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG", |
| 524 | IWL_DEVICE_6050, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 525 | }; |
| 526 | |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 527 | #define IWL_DEVICE_6150 \ |
| 528 | .fw_name_pre = IWL6050_FW_PRE, \ |
| 529 | .ucode_api_max = IWL6050_UCODE_API_MAX, \ |
| 530 | .ucode_api_min = IWL6050_UCODE_API_MIN, \ |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 531 | .max_inst_size = IWL60_RTC_INST_SIZE, \ |
| 532 | .max_data_size = IWL60_RTC_DATA_SIZE, \ |
Wey-Yi Guy | 90c300c | 2011-07-07 08:33:01 -0700 | [diff] [blame] | 533 | .lib = &iwl6000_lib, \ |
Wey-Yi Guy | e4305fe | 2011-07-06 16:28:47 -0700 | [diff] [blame] | 534 | .additional_nic_config = iwl6150_additional_nic_config, \ |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 535 | .eeprom_ver = EEPROM_6150_EEPROM_VERSION, \ |
| 536 | .eeprom_calib_ver = EEPROM_6150_TX_POWER_VERSION, \ |
| 537 | .base_params = &iwl6050_base_params, \ |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 538 | .led_mode = IWL_LED_BLINK, \ |
| 539 | .internal_wimax_coex = true |
| 540 | |
Wey-Yi Guy | 8b3ee29 | 2010-11-18 11:41:48 -0800 | [diff] [blame] | 541 | struct iwl_cfg iwl6150_bgn_cfg = { |
Wey-Yi Guy | f9dc646 | 2010-11-17 12:13:52 -0800 | [diff] [blame] | 542 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN", |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 543 | IWL_DEVICE_6150, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 544 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 1144181 | 2011-05-30 09:32:52 -0700 | [diff] [blame] | 545 | }; |
| 546 | |
| 547 | struct iwl_cfg iwl6150_bg_cfg = { |
| 548 | .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BG", |
| 549 | IWL_DEVICE_6150, |
Shanyu Zhao | 0326433 | 2010-06-29 17:27:27 -0700 | [diff] [blame] | 550 | }; |
| 551 | |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 552 | struct iwl_cfg iwl6000_3agn_cfg = { |
Shanyu Zhao | c11362c | 2010-03-05 17:05:20 -0800 | [diff] [blame] | 553 | .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN", |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 554 | .fw_name_pre = IWL6000_FW_PRE, |
| 555 | .ucode_api_max = IWL6000_UCODE_API_MAX, |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 556 | .ucode_api_ok = IWL6000_UCODE_API_OK, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 557 | .ucode_api_min = IWL6000_UCODE_API_MIN, |
Emmanuel Grumbach | dae66d0 | 2012-02-07 12:56:26 +0200 | [diff] [blame] | 558 | .max_inst_size = IWL60_RTC_INST_SIZE, |
| 559 | .max_data_size = IWL60_RTC_DATA_SIZE, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 560 | .eeprom_ver = EEPROM_6000_EEPROM_VERSION, |
| 561 | .eeprom_calib_ver = EEPROM_6000_TX_POWER_VERSION, |
Wey-Yi Guy | 90c300c | 2011-07-07 08:33:01 -0700 | [diff] [blame] | 562 | .lib = &iwl6000_lib, |
Wey-Yi Guy | 7cb1b08 | 2010-10-06 08:10:00 -0700 | [diff] [blame] | 563 | .base_params = &iwl6000_base_params, |
| 564 | .ht_params = &iwl6000_ht_params, |
Wey-Yi Guy | 564b344 | 2010-11-09 09:21:34 -0800 | [diff] [blame] | 565 | .led_mode = IWL_LED_BLINK, |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 566 | }; |
| 567 | |
Johannes Berg | b914811 | 2011-11-04 07:22:37 -0700 | [diff] [blame] | 568 | MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_OK)); |
Jay Sternberg | e122837 | 2009-01-19 15:30:34 -0800 | [diff] [blame] | 569 | MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX)); |
Wey-Yi Guy | 1956e1a | 2011-01-08 10:25:14 -0800 | [diff] [blame] | 570 | MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |
| 571 | MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX)); |