iwl-2000.c 7.3 KB
Newer Older
1 2
/******************************************************************************
 *
W
Wey-Yi Guy 已提交
3
 * Copyright(c) 2008 - 2012 Intel Corporation. All rights reserved.
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of version 2 of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
 *
 * The full GNU General Public License is included in this distribution in the
 * file called LICENSE.
 *
 * Contact Information:
 *  Intel Linux Wireless <ilw@linux.intel.com>
 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
 *
 *****************************************************************************/

#include <linux/module.h>
28
#include <linux/stringify.h>
29
#include "iwl-config.h"
30
#include "iwl-cfg.h"
31
#include "iwl-dev.h" /* still needed */
32 33

/* Highest firmware API version supported */
34 35 36 37 38 39 40 41 42 43
#define IWL2030_UCODE_API_MAX 6
#define IWL2000_UCODE_API_MAX 6
#define IWL105_UCODE_API_MAX 6
#define IWL135_UCODE_API_MAX 6

/* Oldest version we won't warn about */
#define IWL2030_UCODE_API_OK 5
#define IWL2000_UCODE_API_OK 5
#define IWL105_UCODE_API_OK 5
#define IWL135_UCODE_API_OK 5
44 45 46 47

/* Lowest firmware API version supported */
#define IWL2030_UCODE_API_MIN 5
#define IWL2000_UCODE_API_MIN 5
W
Wey-Yi Guy 已提交
48
#define IWL105_UCODE_API_MIN 5
49
#define IWL135_UCODE_API_MIN 5
50 51

#define IWL2030_FW_PRE "iwlwifi-2030-"
52
#define IWL2030_MODULE_FIRMWARE(api) IWL2030_FW_PRE __stringify(api) ".ucode"
53 54

#define IWL2000_FW_PRE "iwlwifi-2000-"
55
#define IWL2000_MODULE_FIRMWARE(api) IWL2000_FW_PRE __stringify(api) ".ucode"
56

W
Wey-Yi Guy 已提交
57
#define IWL105_FW_PRE "iwlwifi-105-"
58
#define IWL105_MODULE_FIRMWARE(api) IWL105_FW_PRE __stringify(api) ".ucode"
59

60
#define IWL135_FW_PRE "iwlwifi-135-"
61
#define IWL135_MODULE_FIRMWARE(api) IWL135_FW_PRE __stringify(api) ".ucode"
62

63
static const struct iwl_base_params iwl2000_base_params = {
64 65 66 67 68 69 70 71 72 73 74 75 76
	.eeprom_size = OTP_LOW_IMAGE_SIZE,
	.num_of_queues = IWLAGN_NUM_QUEUES,
	.pll_cfg_val = 0,
	.max_ll_items = OTP_MAX_LL_ITEMS_2x00,
	.shadow_ram_support = true,
	.led_compensation = 51,
	.adv_thermal_throttle = true,
	.support_ct_kill_exit = true,
	.plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_DEF_WD_TIMEOUT,
	.max_event_log_size = 512,
	.shadow_reg_enable = true,
77
	.hd_v2 = true,
78 79 80
};


81
static const struct iwl_base_params iwl2030_base_params = {
82 83 84 85 86 87 88 89 90 91 92 93 94
	.eeprom_size = OTP_LOW_IMAGE_SIZE,
	.num_of_queues = IWLAGN_NUM_QUEUES,
	.pll_cfg_val = 0,
	.max_ll_items = OTP_MAX_LL_ITEMS_2x00,
	.shadow_ram_support = true,
	.led_compensation = 57,
	.adv_thermal_throttle = true,
	.support_ct_kill_exit = true,
	.plcp_delta_threshold = IWL_MAX_PLCP_ERR_THRESHOLD_DEF,
	.chain_noise_scale = 1000,
	.wd_timeout = IWL_LONG_WD_TIMEOUT,
	.max_event_log_size = 512,
	.shadow_reg_enable = true,
95
	.hd_v2 = true,
96 97
};

98
static const struct iwl_ht_params iwl2000_ht_params = {
99 100 101 102
	.ht_greenfield_support = true,
	.use_rts_for_aggregation = true, /* use rts/cts protection */
};

103
static const struct iwl_bt_params iwl2030_bt_params = {
104 105 106 107 108 109
	/* Due to bluetooth, we transmit 2.4 GHz probes only on antenna A */
	.advanced_bt_coexist = true,
	.agg_time_limit = BT_AGG_THRESHOLD_DEF,
	.bt_init_traffic_load = IWL_BT_COEX_TRAFFIC_LOAD_NONE,
	.bt_prio_boost = IWLAGN_BT_PRIO_BOOST_DEFAULT,
	.bt_sco_disable = true,
110
	.bt_session_2 = true,
111 112 113 114 115
};

#define IWL_DEVICE_2000						\
	.fw_name_pre = IWL2000_FW_PRE,				\
	.ucode_api_max = IWL2000_UCODE_API_MAX,			\
116
	.ucode_api_ok = IWL2000_UCODE_API_OK,			\
117
	.ucode_api_min = IWL2000_UCODE_API_MIN,			\
118
	.device_family = IWL_DEVICE_FAMILY_2000,		\
119 120
	.max_inst_size = IWL60_RTC_INST_SIZE,			\
	.max_data_size = IWL60_RTC_DATA_SIZE,			\
121 122 123 124
	.eeprom_ver = EEPROM_2000_EEPROM_VERSION,		\
	.eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,	\
	.base_params = &iwl2000_base_params,			\
	.need_temp_offset_calib = true,				\
125
	.temp_offset_v2 = true,					\
126
	.led_mode = IWL_LED_RF_STATE
127

J
Johannes Berg 已提交
128
const struct iwl_cfg iwl2000_2bgn_cfg = {
129
	.name = "Intel(R) Centrino(R) Wireless-N 2200 BGN",
130 131 132 133
	IWL_DEVICE_2000,
	.ht_params = &iwl2000_ht_params,
};

J
Johannes Berg 已提交
134
const struct iwl_cfg iwl2000_2bgn_d_cfg = {
135
	.name = "Intel(R) Centrino(R) Wireless-N 2200D BGN",
136
	IWL_DEVICE_2000,
137
	.ht_params = &iwl2000_ht_params,
138 139
};

140 141 142
#define IWL_DEVICE_2030						\
	.fw_name_pre = IWL2030_FW_PRE,				\
	.ucode_api_max = IWL2030_UCODE_API_MAX,			\
143
	.ucode_api_ok = IWL2030_UCODE_API_OK,			\
144
	.ucode_api_min = IWL2030_UCODE_API_MIN,			\
145
	.device_family = IWL_DEVICE_FAMILY_2030,		\
146 147
	.max_inst_size = IWL60_RTC_INST_SIZE,			\
	.max_data_size = IWL60_RTC_DATA_SIZE,			\
148 149 150 151 152
	.eeprom_ver = EEPROM_2000_EEPROM_VERSION,		\
	.eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,	\
	.base_params = &iwl2030_base_params,			\
	.bt_params = &iwl2030_bt_params,			\
	.need_temp_offset_calib = true,				\
153
	.temp_offset_v2 = true,					\
154
	.led_mode = IWL_LED_RF_STATE,				\
155
	.adv_pm = true
156

J
Johannes Berg 已提交
157
const struct iwl_cfg iwl2030_2bgn_cfg = {
158
	.name = "Intel(R) Centrino(R) Wireless-N 2230 BGN",
159
	IWL_DEVICE_2030,
160 161 162
	.ht_params = &iwl2000_ht_params,
};

W
Wey-Yi Guy 已提交
163 164 165
#define IWL_DEVICE_105						\
	.fw_name_pre = IWL105_FW_PRE,				\
	.ucode_api_max = IWL105_UCODE_API_MAX,			\
166
	.ucode_api_ok = IWL105_UCODE_API_OK,			\
W
Wey-Yi Guy 已提交
167
	.ucode_api_min = IWL105_UCODE_API_MIN,			\
168
	.device_family = IWL_DEVICE_FAMILY_105,			\
169 170
	.max_inst_size = IWL60_RTC_INST_SIZE,			\
	.max_data_size = IWL60_RTC_DATA_SIZE,			\
171 172 173 174
	.eeprom_ver = EEPROM_2000_EEPROM_VERSION,		\
	.eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,	\
	.base_params = &iwl2000_base_params,			\
	.need_temp_offset_calib = true,				\
175
	.temp_offset_v2 = true,					\
176 177
	.led_mode = IWL_LED_RF_STATE,				\
	.adv_pm = true,						\
178
	.rx_with_siso_diversity = true
179

J
Johannes Berg 已提交
180
const struct iwl_cfg iwl105_bgn_cfg = {
181
	.name = "Intel(R) Centrino(R) Wireless-N 105 BGN",
W
Wey-Yi Guy 已提交
182
	IWL_DEVICE_105,
183 184 185
	.ht_params = &iwl2000_ht_params,
};

J
Johannes Berg 已提交
186
const struct iwl_cfg iwl105_bgn_d_cfg = {
187
	.name = "Intel(R) Centrino(R) Wireless-N 105D BGN",
188 189 190 191
	IWL_DEVICE_105,
	.ht_params = &iwl2000_ht_params,
};

W
Wey-Yi Guy 已提交
192
#define IWL_DEVICE_135						\
193 194
	.fw_name_pre = IWL135_FW_PRE,				\
	.ucode_api_max = IWL135_UCODE_API_MAX,			\
195
	.ucode_api_ok = IWL135_UCODE_API_OK,			\
196
	.ucode_api_min = IWL135_UCODE_API_MIN,			\
197
	.device_family = IWL_DEVICE_FAMILY_135,			\
198 199
	.max_inst_size = IWL60_RTC_INST_SIZE,			\
	.max_data_size = IWL60_RTC_DATA_SIZE,			\
200 201 202 203 204
	.eeprom_ver = EEPROM_2000_EEPROM_VERSION,		\
	.eeprom_calib_ver = EEPROM_2000_TX_POWER_VERSION,	\
	.base_params = &iwl2030_base_params,			\
	.bt_params = &iwl2030_bt_params,			\
	.need_temp_offset_calib = true,				\
205
	.temp_offset_v2 = true,					\
206 207
	.led_mode = IWL_LED_RF_STATE,				\
	.adv_pm = true,						\
208
	.rx_with_siso_diversity = true
209

J
Johannes Berg 已提交
210
const struct iwl_cfg iwl135_bgn_cfg = {
211
	.name = "Intel(R) Centrino(R) Wireless-N 135 BGN",
W
Wey-Yi Guy 已提交
212
	IWL_DEVICE_135,
213 214 215 216 217
	.ht_params = &iwl2000_ht_params,
};

MODULE_FIRMWARE(IWL2000_MODULE_FIRMWARE(IWL2000_UCODE_API_MAX));
MODULE_FIRMWARE(IWL2030_MODULE_FIRMWARE(IWL2030_UCODE_API_MAX));
W
Wey-Yi Guy 已提交
218
MODULE_FIRMWARE(IWL105_MODULE_FIRMWARE(IWL105_UCODE_API_MAX));
219
MODULE_FIRMWARE(IWL135_MODULE_FIRMWARE(IWL135_UCODE_API_MAX));