blob: 2282279cffc454c5089277a6cb1f279a60ad2dab [file] [log] [blame]
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -08001/******************************************************************************
2 *
Wey-Yi Guy901069c2011-04-05 09:42:00 -07003 * Copyright(c) 2008 - 2011 Intel Corporation. All rights reserved.
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -08004 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17 *
18 * The full GNU General Public License is included in this distribution in the
19 * file called LICENSE.
20 *
21 * Contact Information:
22 * Intel Linux Wireless <ilw@linux.intel.com>
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
27#include <linux/kernel.h>
28#include <linux/module.h>
29#include <linux/init.h>
30#include <linux/pci.h>
31#include <linux/dma-mapping.h>
32#include <linux/delay.h>
33#include <linux/skbuff.h>
34#include <linux/netdevice.h>
35#include <linux/wireless.h>
36#include <net/mac80211.h>
37#include <linux/etherdevice.h>
38#include <asm/unaligned.h>
39
40#include "iwl-eeprom.h"
41#include "iwl-dev.h"
42#include "iwl-core.h"
43#include "iwl-io.h"
44#include "iwl-sta.h"
45#include "iwl-agn.h"
46#include "iwl-helpers.h"
47#include "iwl-agn-hw.h"
48#include "iwl-6000-hw.h"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080049
50/* Highest firmware API version supported */
51#define IWL2030_UCODE_API_MAX 5
52#define IWL2000_UCODE_API_MAX 5
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -070053#define IWL105_UCODE_API_MAX 5
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080054
55/* Lowest firmware API version supported */
56#define IWL2030_UCODE_API_MIN 5
57#define IWL2000_UCODE_API_MIN 5
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -070058#define IWL105_UCODE_API_MIN 5
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080059
60#define IWL2030_FW_PRE "iwlwifi-2030-"
root1d5cc5552011-03-28 16:12:43 -070061#define IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE #api ".ucode"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080062
63#define IWL2000_FW_PRE "iwlwifi-2000-"
root1d5cc5552011-03-28 16:12:43 -070064#define IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE #api ".ucode"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080065
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -070066#define IWL105_FW_PRE "iwlwifi-105-"
67#define IWL105_MODULE_FIRMWARE(api) IWL105_FW_PRE #api ".ucode"
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -080068
69static void iwl2000_set_ct_threshold(struct iwl_priv *priv)
70{
71 /* want Celsius */
72 priv->hw_params.ct_kill_threshold = CT_KILL_THRESHOLD;
73 priv->hw_params.ct_kill_exit_threshold = CT_KILL_EXIT_THRESHOLD;
74}
75
76/* NIC configuration for 2000 series */
77static void iwl2000_nic_config(struct iwl_priv *priv)
78{
79 u16 radio_cfg;
80
81 radio_cfg = iwl_eeprom_query16(priv, EEPROM_RADIO_CONFIG);
82
83 /* write radio config values to register */
84 if (EEPROM_RF_CFG_TYPE_MSK(radio_cfg) <= EEPROM_RF_CONFIG_TYPE_MAX)
85 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
86 EEPROM_RF_CFG_TYPE_MSK(radio_cfg) |
87 EEPROM_RF_CFG_STEP_MSK(radio_cfg) |
88 EEPROM_RF_CFG_DASH_MSK(radio_cfg));
89
90 /* set CSR_HW_CONFIG_REG for uCode use */
91 iwl_set_bit(priv, CSR_HW_IF_CONFIG_REG,
92 CSR_HW_IF_CONFIG_REG_BIT_RADIO_SI |
93 CSR_HW_IF_CONFIG_REG_BIT_MAC_SI);
94
Wey-Yi Guy52e6b852011-01-18 08:58:48 -080095 if (priv->cfg->iq_invert)
96 iwl_set_bit(priv, CSR_GP_DRIVER_REG,
97 CSR_GP_DRIVER_REG_BIT_RADIO_IQ_INVER);
98
Wey-Yi Guydcf66402011-04-01 13:20:44 -070099 if (priv->cfg->disable_otp_refresh)
100 iwl_write_prph(priv, APMG_ANALOG_SVR_REG, 0x80000010);
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800101}
102
103static struct iwl_sensitivity_ranges iwl2000_sensitivity = {
104 .min_nrg_cck = 97,
105 .max_nrg_cck = 0, /* not used, set to 0 */
106 .auto_corr_min_ofdm = 80,
107 .auto_corr_min_ofdm_mrc = 128,
108 .auto_corr_min_ofdm_x1 = 105,
109 .auto_corr_min_ofdm_mrc_x1 = 192,
110
111 .auto_corr_max_ofdm = 145,
112 .auto_corr_max_ofdm_mrc = 232,
113 .auto_corr_max_ofdm_x1 = 110,
114 .auto_corr_max_ofdm_mrc_x1 = 232,
115
116 .auto_corr_min_cck = 125,
117 .auto_corr_max_cck = 175,
118 .auto_corr_min_cck_mrc = 160,
119 .auto_corr_max_cck_mrc = 310,
120 .nrg_th_cck = 97,
121 .nrg_th_ofdm = 100,
122
123 .barker_corr_th_min = 190,
124 .barker_corr_th_min_mrc = 390,
125 .nrg_th_cca = 62,
126};
127
128static int iwl2000_hw_set_hw_params(struct iwl_priv *priv)
129{
Don Fry9d143e92011-04-20 15:23:57 -0700130 if (iwlagn_mod_params.num_of_queues >= IWL_MIN_NUM_QUEUES &&
131 iwlagn_mod_params.num_of_queues <= IWLAGN_NUM_QUEUES)
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800132 priv->cfg->base_params->num_of_queues =
Don Fry9d143e92011-04-20 15:23:57 -0700133 iwlagn_mod_params.num_of_queues;
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800134
135 priv->hw_params.max_txq_num = priv->cfg->base_params->num_of_queues;
136 priv->hw_params.dma_chnl_num = FH50_TCSR_CHNL_NUM;
137 priv->hw_params.scd_bc_tbls_size =
138 priv->cfg->base_params->num_of_queues *
139 sizeof(struct iwlagn_scd_bc_tbl);
140 priv->hw_params.tfd_size = sizeof(struct iwl_tfd);
141 priv->hw_params.max_stations = IWLAGN_STATION_COUNT;
142 priv->contexts[IWL_RXON_CTX_BSS].bcast_sta_id = IWLAGN_BROADCAST_ID;
143
144 priv->hw_params.max_data_size = IWL60_RTC_DATA_SIZE;
145 priv->hw_params.max_inst_size = IWL60_RTC_INST_SIZE;
146
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800147 priv->hw_params.ht40_channel = BIT(IEEE80211_BAND_2GHZ) |
148 BIT(IEEE80211_BAND_5GHZ);
149 priv->hw_params.rx_wrt_ptr_reg = FH_RSCSR_CHNL0_WPTR;
150
151 priv->hw_params.tx_chains_num = num_of_ant(priv->cfg->valid_tx_ant);
152 if (priv->cfg->rx_with_siso_diversity)
153 priv->hw_params.rx_chains_num = 1;
154 else
155 priv->hw_params.rx_chains_num =
156 num_of_ant(priv->cfg->valid_rx_ant);
157 priv->hw_params.valid_tx_ant = priv->cfg->valid_tx_ant;
158 priv->hw_params.valid_rx_ant = priv->cfg->valid_rx_ant;
159
160 iwl2000_set_ct_threshold(priv);
161
162 /* Set initial sensitivity parameters */
163 /* Set initial calibration set */
164 priv->hw_params.sens = &iwl2000_sensitivity;
165 priv->hw_params.calib_init_cfg =
166 BIT(IWL_CALIB_XTAL) |
167 BIT(IWL_CALIB_LO) |
168 BIT(IWL_CALIB_TX_IQ) |
169 BIT(IWL_CALIB_BASE_BAND);
170 if (priv->cfg->need_dc_calib)
171 priv->hw_params.calib_rt_cfg |= BIT(IWL_CALIB_CFG_DC_IDX);
172 if (priv->cfg->need_temp_offset_calib)
173 priv->hw_params.calib_init_cfg |= BIT(IWL_CALIB_TEMP_OFFSET);
174
175 priv->hw_params.beacon_time_tsf_bits = IWLAGN_EXT_BEACON_TIME_POS;
176
177 return 0;
178}
179
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800180static struct iwl_lib_ops iwl2000_lib = {
181 .set_hw_params = iwl2000_hw_set_hw_params,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800182 .rx_handler_setup = iwlagn_rx_handler_setup,
Wey-Yi Guycaebbb72011-02-06 11:29:42 -0800183 .setup_deferred_work = iwlagn_bt_setup_deferred_work,
184 .cancel_deferred_work = iwlagn_bt_cancel_deferred_work,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800185 .is_valid_rtc_data_addr = iwlagn_hw_valid_rtc_data_addr,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800186 .send_tx_power = iwlagn_send_tx_power,
187 .update_chain_flags = iwl_update_chain_flags,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800188 .apm_ops = {
189 .init = iwl_apm_init,
190 .config = iwl2000_nic_config,
191 },
192 .eeprom_ops = {
193 .regulatory_bands = {
194 EEPROM_REG_BAND_1_CHANNELS,
195 EEPROM_REG_BAND_2_CHANNELS,
196 EEPROM_REG_BAND_3_CHANNELS,
197 EEPROM_REG_BAND_4_CHANNELS,
198 EEPROM_REG_BAND_5_CHANNELS,
199 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
Wey-Yi Guy5cab35e2011-04-06 15:55:27 -0700200 EEPROM_REGULATORY_BAND_NO_HT40,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800201 },
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800202 .query_addr = iwlagn_eeprom_query_addr,
203 .update_enhanced_txpower = iwlcore_eeprom_enhanced_txpower,
204 },
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800205 .temp_ops = {
206 .temperature = iwlagn_temperature,
207 },
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800208 .txfifo_flush = iwlagn_txfifo_flush,
209 .dev_txfifo_flush = iwlagn_dev_txfifo_flush,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800210};
211
212static const struct iwl_ops iwl2000_ops = {
213 .lib = &iwl2000_lib,
214 .hcmd = &iwlagn_hcmd,
215 .utils = &iwlagn_hcmd_utils,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800216};
217
218static const struct iwl_ops iwl2030_ops = {
219 .lib = &iwl2000_lib,
220 .hcmd = &iwlagn_bt_hcmd,
221 .utils = &iwlagn_hcmd_utils,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800222};
223
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700224static const struct iwl_ops iwl105_ops = {
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800225 .lib = &iwl2000_lib,
226 .hcmd = &iwlagn_hcmd,
227 .utils = &iwlagn_hcmd_utils,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800228};
229
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700230static const struct iwl_ops iwl135_ops = {
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800231 .lib = &iwl2000_lib,
232 .hcmd = &iwlagn_bt_hcmd,
233 .utils = &iwlagn_hcmd_utils,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800234};
235
236static struct iwl_base_params iwl2000_base_params = {
237 .eeprom_size = OTP_LOW_IMAGE_SIZE,
238 .num_of_queues = IWLAGN_NUM_QUEUES,
239 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
240 .pll_cfg_val = 0,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800241 .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
242 .shadow_ram_support = true,
243 .led_compensation = 51,
244 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800245 .adv_thermal_throttle = true,
246 .support_ct_kill_exit = true,
247 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
248 .chain_noise_scale = 1000,
249 .wd_timeout = IWL_DEF_WD_TIMEOUT,
250 .max_event_log_size = 512,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800251 .shadow_reg_enable = true,
252};
253
254
255static struct iwl_base_params iwl2030_base_params = {
256 .eeprom_size = OTP_LOW_IMAGE_SIZE,
257 .num_of_queues = IWLAGN_NUM_QUEUES,
258 .num_of_ampdu_queues = IWLAGN_NUM_AMPDU_QUEUES,
259 .pll_cfg_val = 0,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800260 .max_ll_items = OTP_MAX_LL_ITEMS_2x00,
261 .shadow_ram_support = true,
262 .led_compensation = 57,
263 .chain_noise_num_beacons = IWL_CAL_NUM_BEACONS,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800264 .adv_thermal_throttle = true,
265 .support_ct_kill_exit = true,
266 .plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
267 .chain_noise_scale = 1000,
268 .wd_timeout = IWL_LONG_WD_TIMEOUT,
269 .max_event_log_size = 512,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800270 .shadow_reg_enable = true,
271};
272
273static struct iwl_ht_params iwl2000_ht_params = {
274 .ht_greenfield_support = true,
275 .use_rts_for_aggregation = true, /* use rts/cts protection */
276};
277
278static struct iwl_bt_params iwl2030_bt_params = {
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800279 /* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
280 .advanced_bt_coexist = true,
281 .agg_time_limit = BT_AGG_THRESHOLD_DEF,
282 .bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
283 .bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
284 .bt_sco_disable = true,
Wey-Yi Guy60132702011-02-18 17:23:54 -0800285 .bt_session_2 = true,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800286};
287
288#define IWL_DEVICE_2000 \
289 .fw_name_pre = IWL2000_FW_PRE, \
290 .ucode_api_max = IWL2000_UCODE_API_MAX, \
291 .ucode_api_min = IWL2000_UCODE_API_MIN, \
292 .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \
293 .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
294 .ops = &iwl2000_ops, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800295 .base_params = &iwl2000_base_params, \
296 .need_dc_calib = true, \
297 .need_temp_offset_calib = true, \
Wey-Yi Guy52e6b852011-01-18 08:58:48 -0800298 .led_mode = IWL_LED_RF_STATE, \
Wey-Yi Guydcf66402011-04-01 13:20:44 -0700299 .iq_invert = true, \
300 .disable_otp_refresh = true \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800301
302struct iwl_cfg iwl2000_2bgn_cfg = {
303 .name = "2000 Series 2x2 BGN",
304 IWL_DEVICE_2000,
305 .ht_params = &iwl2000_ht_params,
306};
307
308struct iwl_cfg iwl2000_2bg_cfg = {
309 .name = "2000 Series 2x2 BG",
310 IWL_DEVICE_2000,
311};
312
313#define IWL_DEVICE_2030 \
314 .fw_name_pre = IWL2030_FW_PRE, \
315 .ucode_api_max = IWL2030_UCODE_API_MAX, \
316 .ucode_api_min = IWL2030_UCODE_API_MIN, \
317 .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \
318 .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
319 .ops = &iwl2030_ops, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800320 .base_params = &iwl2030_base_params, \
321 .bt_params = &iwl2030_bt_params, \
322 .need_dc_calib = true, \
323 .need_temp_offset_calib = true, \
324 .led_mode = IWL_LED_RF_STATE, \
Wey-Yi Guy52e6b852011-01-18 08:58:48 -0800325 .adv_pm = true, \
326 .iq_invert = true \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800327
328struct iwl_cfg iwl2030_2bgn_cfg = {
329 .name = "2000 Series 2x2 BGN/BT",
Wey-Yi Guy96234cc2011-01-24 11:44:42 -0800330 IWL_DEVICE_2030,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800331 .ht_params = &iwl2000_ht_params,
332};
333
334struct iwl_cfg iwl2030_2bg_cfg = {
335 .name = "2000 Series 2x2 BG/BT",
Wey-Yi Guy96234cc2011-01-24 11:44:42 -0800336 IWL_DEVICE_2030,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800337};
338
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700339#define IWL_DEVICE_105 \
340 .fw_name_pre = IWL105_FW_PRE, \
341 .ucode_api_max = IWL105_UCODE_API_MAX, \
342 .ucode_api_min = IWL105_UCODE_API_MIN, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800343 .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \
344 .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700345 .ops = &iwl105_ops, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800346 .base_params = &iwl2000_base_params, \
347 .need_dc_calib = true, \
348 .need_temp_offset_calib = true, \
349 .led_mode = IWL_LED_RF_STATE, \
350 .adv_pm = true, \
351 .rx_with_siso_diversity = true \
352
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700353struct iwl_cfg iwl105_bg_cfg = {
354 .name = "105 Series 1x1 BG",
355 IWL_DEVICE_105,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800356};
357
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700358struct iwl_cfg iwl105_bgn_cfg = {
359 .name = "105 Series 1x1 BGN",
360 IWL_DEVICE_105,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800361 .ht_params = &iwl2000_ht_params,
362};
363
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700364#define IWL_DEVICE_135 \
365 .fw_name_pre = IWL105_FW_PRE, \
366 .ucode_api_max = IWL105_UCODE_API_MAX, \
367 .ucode_api_min = IWL105_UCODE_API_MIN, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800368 .eeprom_ver = EEPROM_2000_EEPROM_VERSION, \
369 .eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION, \
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700370 .ops = &iwl135_ops, \
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800371 .base_params = &iwl2030_base_params, \
372 .bt_params = &iwl2030_bt_params, \
373 .need_dc_calib = true, \
374 .need_temp_offset_calib = true, \
375 .led_mode = IWL_LED_RF_STATE, \
376 .adv_pm = true, \
377 .rx_with_siso_diversity = true \
378
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700379struct iwl_cfg iwl135_bg_cfg = {
380 .name = "105 Series 1x1 BG/BT",
381 IWL_DEVICE_135,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800382};
383
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700384struct iwl_cfg iwl135_bgn_cfg = {
385 .name = "105 Series 1x1 BGN/BT",
386 IWL_DEVICE_135,
Wey-Yi Guyc5a5e182011-01-21 15:47:21 -0800387 .ht_params = &iwl2000_ht_params,
388};
389
390MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX));
391MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX));
Wey-Yi Guyb4ed2212011-04-30 08:55:16 -0700392MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_MAX));