blob: c5f244f3d747741202e71415f11459458120d692 [file] [log] [blame]
Jay Sternberge1228372009-01-19 15:30:34 -08001/******************************************************************************
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 Guyf3a2a422009-09-11 10:38:11 -070047#include "iwl-6000-hw.h"
Johannes Berge932a602009-10-02 13:44:03 -070048#include "iwl-agn-led.h"
Jay Sternberge1228372009-01-19 15:30:34 -080049
50/* Highest firmware API version supported */
Wey-Yi Guyfcbaf8b2009-08-21 13:34:18 -070051#define IWL6000_UCODE_API_MAX 4
52#define IWL6050_UCODE_API_MAX 4
Jay Sternberge1228372009-01-19 15:30:34 -080053
54/* Lowest firmware API version supported */
Wey-Yi Guy44246422009-10-23 13:42:34 -070055#define IWL6000_UCODE_API_MIN 4
56#define IWL6050_UCODE_API_MIN 4
Jay Sternberge1228372009-01-19 15:30:34 -080057
58#define IWL6000_FW_PRE "iwlwifi-6000-"
59#define _IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE #api ".ucode"
60#define IWL6000_MODULE_FIRMWARE(api) _IWL6000_MODULE_FIRMWARE(api)
61
62#define IWL6050_FW_PRE "iwlwifi-6050-"
63#define _IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE #api ".ucode"
64#define IWL6050_MODULE_FIRMWARE(api) _IWL6050_MODULE_FIRMWARE(api)
65
Wey-Yi Guy672639d2009-07-24 11:13:01 -070066static void iwl6000_set_ct_threshold(struct iwl_priv *priv)
67{
68 /* want Celsius */
69 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
70 priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
71}
72
Wey-Yi Guy65b79982009-07-31 14:28:07 -070073/* NIC configuration for 6000 series */
74static void iwl6000_nic_config(struct iwl_priv *priv)
75{
Wey-Yi Guy9371d4e2009-09-11 10:38:10 -070076 u16 radio_cfg;
77
78 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
79
80 /* write radio config values to register */
81 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
82 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
83 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
84 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
85 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
86
87 /* set CSR_HW_CONFIG_REG for uCode use */
88 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
89 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
90 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
Wey-Yi Guy65b79982009-07-31 14:28:07 -070091
92 /* no locking required for register write */
Wey-Yi Guy740e7f52009-11-06 14:52:55 -080093 if (priv->cfg->pa_type == IWL_PA_INTERNAL) {
Wey-Yi Guy65b79982009-07-31 14:28:07 -070094 /* 2x2 IPA phy type */
95 iwl_write32(priv, CSR_GP_DRIVER_REG,
96 CSR_GP_DRIVER_REG_BIT_RADIO_SKU_2x2_IPA);
97 }
98 /* else do nothing, uCode configured */
99}
100
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700101static struct iwl_sensitivity_ranges iwl6000_sensitivity = {
102 .min_nrg_cck = 97,
103 .max_nrg_cck = 0, /* not used, set to 0 */
104 .auto_corr_min_ofdm = 80,
105 .auto_corr_min_ofdm_mrc = 128,
106 .auto_corr_min_ofdm_x1 = 105,
107 .auto_corr_min_ofdm_mrc_x1 = 192,
108
109 .auto_corr_max_ofdm = 145,
110 .auto_corr_max_ofdm_mrc = 232,
111 .auto_corr_max_ofdm_x1 = 145,
112 .auto_corr_max_ofdm_mrc_x1 = 232,
113
114 .auto_corr_min_cck = 125,
115 .auto_corr_max_cck = 175,
116 .auto_corr_min_cck_mrc = 160,
117 .auto_corr_max_cck_mrc = 310,
118 .nrg_th_cck = 97,
119 .nrg_th_ofdm = 100,
Wey-Yi Guy55036d62009-10-09 13:20:24 -0700120
121 .barker_corr_th_min = 190,
122 .barker_corr_th_min_mrc = 390,
123 .nrg_th_cca = 62,
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700124};
125
126static int iwl6000_hw_set_hw_params(struct iwl_priv *priv)
127{
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700128 if (priv->cfg->mod_params->num_of_queues >= IWL_MIN_NUM_QUEUES &&
129 priv->cfg->mod_params->num_of_queues <= IWL50_NUM_QUEUES)
130 priv->cfg->num_of_queues =
131 priv->cfg->mod_params->num_of_queues;
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700132
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700133 priv->hw_params.max_txq_num = priv->cfg->num_of_queues;
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700134 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
135 priv->hw_params.scd_bc_tbls_size =
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700136 priv->cfg->num_of_queues *
137 sizeof(struct iwl5000_scd_bc_tbl);
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700138 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
139 priv->hw_params.max_stations = IWL5000_STATION_COUNT;
140 priv->hw_params.bcast_sta_id = IWL5000_BROADCAST_ID;
141
142 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
143 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
144
145 priv->hw_params.max_bsm_size = 0;
146 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
147 BIT(IEEE80211_BAND_5GHZ);
148 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
149
150 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
151 priv->hw_params.rx_chains_num = num_of_ant(priv->cfg->valid_rx_ant);
152 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
153 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
154
155 if (priv->cfg->ops->lib->temp_ops.set_ct_kill)
156 priv->cfg->ops->lib->temp_ops.set_ct_kill(priv);
157
158 /* Set initial sensitivity parameters */
159 /* Set initial calibration set */
160 priv->hw_params.sens = &iwl6000_sensitivity;
161 priv->hw_params.calib_init_cfg =
162 BIT(IWL_CALIB_XTAL) |
163 BIT(IWL_CALIB_LO) |
164 BIT(IWL_CALIB_TX_IQ) |
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700165 BIT(IWL_CALIB_BASE_BAND);
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700166 return 0;
167}
168
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700169static int iwl6000_hw_channel_switch(struct iwl_priv *priv, u16 channel)
170{
171 struct iwl6000_channel_switch_cmd cmd;
172 const struct iwl_channel_info *ch_info;
173 struct iwl_host_cmd hcmd = {
174 .id = REPLY_CHANNEL_SWITCH,
175 .len = sizeof(cmd),
176 .flags = CMD_SIZE_HUGE,
177 .data = &cmd,
178 };
179
180 IWL_DEBUG_11H(priv, "channel switch from %d to %d\n",
181 priv->active_rxon.channel, channel);
182
183 cmd.band = priv->band == IEEE80211_BAND_2GHZ;
184 cmd.channel = cpu_to_le16(channel);
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800185 cmd.rxon_flags = priv->staging_rxon.flags;
186 cmd.rxon_filter_flags = priv->staging_rxon.filter_flags;
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700187 cmd.switch_time = cpu_to_le32(priv->ucode_beacon_time);
188 ch_info = iwl_get_channel_info(priv, priv->band, channel);
189 if (ch_info)
190 cmd.expect_beacon = is_channel_radar(ch_info);
191 else {
192 IWL_ERR(priv, "invalid channel switch from %u to %u\n",
193 priv->active_rxon.channel, channel);
194 return -EFAULT;
195 }
Wey-Yi Guy0924e5192009-11-06 14:52:54 -0800196 priv->switch_rxon.channel = cpu_to_le16(channel);
197 priv->switch_rxon.switch_in_progress = true;
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700198
199 return iwl_send_cmd_sync(priv, &hcmd);
200}
201
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700202static struct iwl_lib_ops iwl6000_lib = {
Wey-Yi Guyf3a2a422009-09-11 10:38:11 -0700203 .set_hw_params = iwl6000_hw_set_hw_params,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700204 .txq_update_byte_cnt_tbl = iwl5000_txq_update_byte_cnt_tbl,
205 .txq_inval_byte_cnt_tbl = iwl5000_txq_inval_byte_cnt_tbl,
206 .txq_set_sched = iwl5000_txq_set_sched,
207 .txq_agg_enable = iwl5000_txq_agg_enable,
208 .txq_agg_disable = iwl5000_txq_agg_disable,
209 .txq_attach_buf_to_tfd = iwl_hw_txq_attach_buf_to_tfd,
210 .txq_free_tfd = iwl_hw_txq_free_tfd,
211 .txq_init = iwl_hw_tx_queue_init,
212 .rx_handler_setup = iwl5000_rx_handler_setup,
213 .setup_deferred_work = iwl5000_setup_deferred_work,
214 .is_valid_rtc_data_addr = iwl5000_hw_valid_rtc_data_addr,
215 .load_ucode = iwl5000_load_ucode,
Reinette Chatreb7a79402009-09-25 14:24:23 -0700216 .dump_nic_event_log = iwl_dump_nic_event_log,
217 .dump_nic_error_log = iwl_dump_nic_error_log,
Wey-Yi Guy696bdee2009-12-10 14:37:25 -0800218 .dump_csr = iwl_dump_csr,
Wey-Yi Guy1b3eb822010-01-15 13:43:39 -0800219 .dump_fh = iwl_dump_fh,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700220 .init_alive_start = iwl5000_init_alive_start,
221 .alive_notify = iwl5000_alive_notify,
222 .send_tx_power = iwl5000_send_tx_power,
223 .update_chain_flags = iwl_update_chain_flags,
Wey-Yi Guy4a56e962009-10-23 13:42:29 -0700224 .set_channel_switch = iwl6000_hw_channel_switch,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700225 .apm_ops = {
Ben Cahillfadb3582009-10-23 13:42:21 -0700226 .init = iwl_apm_init,
Abhijeet Kolekard68b6032009-10-02 13:44:04 -0700227 .stop = iwl_apm_stop,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700228 .config = iwl6000_nic_config,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700229 .set_pwr_src = iwl_set_pwr_src,
230 },
231 .eeprom_ops = {
232 .regulatory_bands = {
233 EEPROM_5000_REG_BAND_1_CHANNELS,
234 EEPROM_5000_REG_BAND_2_CHANNELS,
235 EEPROM_5000_REG_BAND_3_CHANNELS,
236 EEPROM_5000_REG_BAND_4_CHANNELS,
237 EEPROM_5000_REG_BAND_5_CHANNELS,
Wey-Yi Guy7aafef12009-08-07 15:41:38 -0700238 EEPROM_5000_REG_BAND_24_HT40_CHANNELS,
239 EEPROM_5000_REG_BAND_52_HT40_CHANNELS
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700240 },
241 .verify_signature = iwlcore_eeprom_verify_signature,
242 .acquire_semaphore = iwlcore_eeprom_acquire_semaphore,
243 .release_semaphore = iwlcore_eeprom_release_semaphore,
244 .calib_version = iwl5000_eeprom_calib_version,
245 .query_addr = iwl5000_eeprom_query_addr,
Wey-Yi Guyab9fd1b2009-08-21 13:34:23 -0700246 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700247 },
248 .post_associate = iwl_post_associate,
249 .isr = iwl_isr_ict,
250 .config_ap = iwl_config_ap,
251 .temp_ops = {
252 .temperature = iwl5000_temperature,
253 .set_ct_kill = iwl6000_set_ct_threshold,
254 },
255};
256
Emese Revfy45d5d802009-12-14 00:59:53 +0100257static const struct iwl_ops iwl6000_ops = {
Jay Sternbergcc0f5552009-07-17 09:30:16 -0700258 .ucode = &iwl5000_ucode,
Wey-Yi Guy672639d2009-07-24 11:13:01 -0700259 .lib = &iwl6000_lib,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800260 .hcmd = &iwl5000_hcmd,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700261 .utils = &iwl5000_hcmd_utils,
Johannes Berge932a602009-10-02 13:44:03 -0700262 .led = &iwlagn_led_ops,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800263};
264
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700265static struct iwl_hcmd_utils_ops iwl6050_hcmd_utils = {
266 .get_hcmd_size = iwl5000_get_hcmd_size,
267 .build_addsta_hcmd = iwl5000_build_addsta_hcmd,
268 .rts_tx_cmd_flag = iwl5000_rts_tx_cmd_flag,
269 .calc_rssi = iwl5000_calc_rssi,
270};
271
Emese Revfy45d5d802009-12-14 00:59:53 +0100272static const struct iwl_ops iwl6050_ops = {
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700273 .ucode = &iwl5000_ucode,
274 .lib = &iwl6000_lib,
275 .hcmd = &iwl5000_hcmd,
276 .utils = &iwl6050_hcmd_utils,
277 .led = &iwlagn_led_ops,
278};
279
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700280/*
281 * "i": Internal configuration, use internal Power Amplifier
282 */
283struct iwl_cfg iwl6000i_2agn_cfg = {
284 .name = "6000 Series 2x2 AGN",
285 .fw_name_pre = IWL6000_FW_PRE,
286 .ucode_api_max = IWL6000_UCODE_API_MAX,
287 .ucode_api_min = IWL6000_UCODE_API_MIN,
288 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
289 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700290 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700291 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700292 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700293 .num_of_queues = IWL50_NUM_QUEUES,
294 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700295 .mod_params = &iwl50_mod_params,
296 .valid_tx_ant = ANT_BC,
297 .valid_rx_ant = ANT_BC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700298 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700299 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700300 .use_bsm = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700301 .pa_type = IWL_PA_INTERNAL,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700302 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
303 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700304 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700305 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700306 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700307 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700308 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700309 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700310 .support_ct_kill_exit = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800311};
312
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700313struct iwl_cfg iwl6000i_2abg_cfg = {
314 .name = "6000 Series 2x2 ABG",
315 .fw_name_pre = IWL6000_FW_PRE,
316 .ucode_api_max = IWL6000_UCODE_API_MAX,
317 .ucode_api_min = IWL6000_UCODE_API_MIN,
318 .sku = IWL_SKU_A|IWL_SKU_G,
319 .ops = &iwl6000_ops,
320 .eeprom_size = OTP_LOW_IMAGE_SIZE,
321 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
322 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700323 .num_of_queues = IWL50_NUM_QUEUES,
324 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700325 .mod_params = &iwl50_mod_params,
326 .valid_tx_ant = ANT_BC,
327 .valid_rx_ant = ANT_BC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700328 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700329 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700330 .use_bsm = false,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700331 .pa_type = IWL_PA_INTERNAL,
332 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
333 .shadow_ram_support = true,
334 .ht_greenfield_support = true,
335 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700336 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700337 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700338 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700339 .support_ct_kill_exit = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700340};
341
342struct iwl_cfg iwl6000i_2bg_cfg = {
343 .name = "6000 Series 2x2 BG",
344 .fw_name_pre = IWL6000_FW_PRE,
345 .ucode_api_max = IWL6000_UCODE_API_MAX,
346 .ucode_api_min = IWL6000_UCODE_API_MIN,
347 .sku = IWL_SKU_G,
348 .ops = &iwl6000_ops,
349 .eeprom_size = OTP_LOW_IMAGE_SIZE,
350 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
351 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700352 .num_of_queues = IWL50_NUM_QUEUES,
353 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700354 .mod_params = &iwl50_mod_params,
355 .valid_tx_ant = ANT_BC,
356 .valid_rx_ant = ANT_BC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700357 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700358 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700359 .use_bsm = false,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700360 .pa_type = IWL_PA_INTERNAL,
361 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
362 .shadow_ram_support = true,
363 .ht_greenfield_support = true,
364 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700365 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700366 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700367 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700368 .support_ct_kill_exit = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700369};
370
Jay Sternberge1228372009-01-19 15:30:34 -0800371struct iwl_cfg iwl6050_2agn_cfg = {
372 .name = "6050 Series 2x2 AGN",
373 .fw_name_pre = IWL6050_FW_PRE,
374 .ucode_api_max = IWL6050_UCODE_API_MAX,
375 .ucode_api_min = IWL6050_UCODE_API_MIN,
376 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700377 .ops = &iwl6050_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700378 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700379 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Jay Sternberge1228372009-01-19 15:30:34 -0800380 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700381 .num_of_queues = IWL50_NUM_QUEUES,
382 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Jay Sternberge1228372009-01-19 15:30:34 -0800383 .mod_params = &iwl50_mod_params,
Jay Sternberg542cc792009-05-08 13:44:46 -0700384 .valid_tx_ant = ANT_AB,
385 .valid_rx_ant = ANT_AB,
Ben Cahillfadb3582009-10-23 13:42:21 -0700386 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700387 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700388 .use_bsm = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700389 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700390 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700391 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700392 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700393 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700394 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700395 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700396 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700397 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700398 .support_ct_kill_exit = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800399};
400
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700401struct iwl_cfg iwl6050_2abg_cfg = {
402 .name = "6050 Series 2x2 ABG",
403 .fw_name_pre = IWL6050_FW_PRE,
404 .ucode_api_max = IWL6050_UCODE_API_MAX,
405 .ucode_api_min = IWL6050_UCODE_API_MIN,
406 .sku = IWL_SKU_A|IWL_SKU_G,
Wey-Yi Guy9444b182009-10-16 14:25:57 -0700407 .ops = &iwl6050_ops,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700408 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy32b7e242009-10-16 14:25:51 -0700409 .eeprom_ver = EEPROM_6050_EEPROM_VERSION,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700410 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700411 .num_of_queues = IWL50_NUM_QUEUES,
412 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700413 .mod_params = &iwl50_mod_params,
414 .valid_tx_ant = ANT_AB,
415 .valid_rx_ant = ANT_AB,
Ben Cahillfadb3582009-10-23 13:42:21 -0700416 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700417 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700418 .use_bsm = false,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700419 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy3ab312a2009-10-16 14:25:52 -0700420 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700421 .shadow_ram_support = true,
422 .ht_greenfield_support = true,
423 .led_compensation = 51,
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700424 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700425 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700426 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700427 .support_ct_kill_exit = true,
Wey-Yi Guy5953a622009-09-17 10:43:53 -0700428};
429
Jay Sternberge1228372009-01-19 15:30:34 -0800430struct iwl_cfg iwl6000_3agn_cfg = {
431 .name = "6000 Series 3x3 AGN",
432 .fw_name_pre = IWL6000_FW_PRE,
433 .ucode_api_max = IWL6000_UCODE_API_MAX,
434 .ucode_api_min = IWL6000_UCODE_API_MIN,
435 .sku = IWL_SKU_A|IWL_SKU_G|IWL_SKU_N,
Jay Sternberg29f35c12009-01-29 11:09:16 -0800436 .ops = &iwl6000_ops,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700437 .eeprom_size = OTP_LOW_IMAGE_SIZE,
Wey-Yi Guy1f4b9662009-09-17 10:43:46 -0700438 .eeprom_ver = EEPROM_6000_EEPROM_VERSION,
Jay Sternberge1228372009-01-19 15:30:34 -0800439 .eeprom_calib_ver = EEPROM_5000_TX_POWER_VERSION,
Wey-Yi Guy88804e22009-10-09 13:20:28 -0700440 .num_of_queues = IWL50_NUM_QUEUES,
441 .num_of_ampdu_queues = IWL50_NUM_AMPDU_QUEUES,
Jay Sternberge1228372009-01-19 15:30:34 -0800442 .mod_params = &iwl50_mod_params,
Jay Sternbergc0bac762009-02-02 16:21:14 -0800443 .valid_tx_ant = ANT_ABC,
444 .valid_rx_ant = ANT_ABC,
Ben Cahillfadb3582009-10-23 13:42:21 -0700445 .pll_cfg_val = 0,
Ben Cahilla6c5c732009-10-30 14:36:07 -0700446 .set_l0s = true,
Ben Cahillfadb3582009-10-23 13:42:21 -0700447 .use_bsm = false,
Wey-Yi Guy65b79982009-07-31 14:28:07 -0700448 .pa_type = IWL_PA_SYSTEM,
Wey-Yi Guy415e4992009-08-13 13:30:54 -0700449 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
450 .shadow_ram_support = true,
Daniel C Halperinb2617932009-08-13 13:30:59 -0700451 .ht_greenfield_support = true,
Wey-Yi Guyf2d0d0e2009-09-11 10:38:14 -0700452 .led_compensation = 51,
Wey-Yi Guy47eef9b2009-09-17 10:43:44 -0700453 .use_rts_for_ht = true, /* use rts/cts protection */
Wey-Yi Guyd8c07e72009-09-25 14:24:26 -0700454 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Johannes Berg78f5fb72009-09-25 14:24:27 -0700455 .supports_idle = true,
Wey-Yi Guy6047b4f2009-10-23 13:42:27 -0700456 .adv_thermal_throttle = true,
Wey-Yi Guy480e8402009-10-23 13:42:28 -0700457 .support_ct_kill_exit = true,
Jay Sternberge1228372009-01-19 15:30:34 -0800458};
459
Jay Sternberge1228372009-01-19 15:30:34 -0800460MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
461MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));