]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/wireless/intel/iwlwifi/iwl-6000.c
Merge tag 'nfc-next-4.7-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sameo...
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / wireless / intel / iwlwifi / iwl-6000.c
CommitLineData
e1228374
JS
1/******************************************************************************
2 *
51368bf7 3 * Copyright(c) 2008 - 2014 Intel Corporation. All rights reserved.
e1228374
JS
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:
d01c5366 22 * Intel Linux Wireless <linuxwifi@intel.com>
e1228374
JS
23 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24 *
25 *****************************************************************************/
26
e1228374 27#include <linux/module.h>
8fcbd4dc 28#include <linux/stringify.h>
e9676695 29#include "iwl-config.h"
0db19cde 30#include "iwl-agn-hw.h"
1023fdc4 31#include "dvm/commands.h" /* needed for BT for now */
e1228374
JS
32
33/* Highest firmware API version supported */
b9148115 34#define IWL6000_UCODE_API_MAX 6
62cb3c6a 35#define IWL6050_UCODE_API_MAX 5
ca9a4605 36#define IWL6000G2_UCODE_API_MAX 6
d2c8b15d 37#define IWL6035_UCODE_API_MAX 6
ca9a4605 38
e1228374 39/* Lowest firmware API version supported */
44246421
WYG
40#define IWL6000_UCODE_API_MIN 4
41#define IWL6050_UCODE_API_MIN 4
d2c8b15d
MV
42#define IWL6000G2_UCODE_API_MIN 5
43#define IWL6035_UCODE_API_MIN 6
e1228374 44
586aed96
JB
45/* EEPROM versions */
46#define EEPROM_6000_TX_POWER_VERSION (4)
47#define EEPROM_6000_EEPROM_VERSION (0x423)
48#define EEPROM_6050_TX_POWER_VERSION (4)
49#define EEPROM_6050_EEPROM_VERSION (0x532)
50#define EEPROM_6150_TX_POWER_VERSION (6)
51#define EEPROM_6150_EEPROM_VERSION (0x553)
52#define EEPROM_6005_TX_POWER_VERSION (6)
53#define EEPROM_6005_EEPROM_VERSION (0x709)
54#define EEPROM_6030_TX_POWER_VERSION (6)
55#define EEPROM_6030_EEPROM_VERSION (0x709)
56#define EEPROM_6035_TX_POWER_VERSION (6)
57#define EEPROM_6035_EEPROM_VERSION (0x753)
58
e1228374 59#define IWL6000_FW_PRE "iwlwifi-6000-"
8fcbd4dc 60#define IWL6000_MODULE_FIRMWARE(api) IWL6000_FW_PRE __stringify(api) ".ucode"
e1228374
JS
61
62#define IWL6050_FW_PRE "iwlwifi-6050-"
8fcbd4dc 63#define IWL6050_MODULE_FIRMWARE(api) IWL6050_FW_PRE __stringify(api) ".ucode"
e1228374 64
1956e1ad 65#define IWL6005_FW_PRE "iwlwifi-6000g2a-"
8fcbd4dc 66#define IWL6005_MODULE_FIRMWARE(api) IWL6005_FW_PRE __stringify(api) ".ucode"
95b13014 67
1956e1ad 68#define IWL6030_FW_PRE "iwlwifi-6000g2b-"
8fcbd4dc 69#define IWL6030_MODULE_FIRMWARE(api) IWL6030_FW_PRE __stringify(api) ".ucode"
1808972f 70
6794f3ee 71static const struct iwl_base_params iwl6000_base_params = {
0b5af201 72 .eeprom_size = OTP_LOW_IMAGE_SIZE,
0b5af201 73 .num_of_queues = IWLAGN_NUM_QUEUES,
0b5af201 74 .pll_cfg_val = 0,
0b5af201
JS
75 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
76 .shadow_ram_support = true,
0b5af201 77 .led_compensation = 51,
22de94de 78 .wd_timeout = IWL_DEF_WD_TIMEOUT,
95b13014 79 .max_event_log_size = 512,
66a77072 80 .shadow_reg_enable = false, /* TODO: fix bugs using this feature */
e03bbb62 81 .scd_chain_ext_wa = true,
0b5af201
JS
82};
83
6794f3ee 84static const struct iwl_base_params iwl6050_base_params = {
1808972f 85 .eeprom_size = OTP_LOW_IMAGE_SIZE,
1808972f 86 .num_of_queues = IWLAGN_NUM_QUEUES,
1808972f 87 .pll_cfg_val = 0,
7cb1b088 88 .max_ll_items = OTP_MAX_LL_ITEMS_6x50,
1808972f
SZ
89 .shadow_ram_support = true,
90 .led_compensation = 51,
22de94de 91 .wd_timeout = IWL_DEF_WD_TIMEOUT,
7cb1b088 92 .max_event_log_size = 1024,
66a77072 93 .shadow_reg_enable = false, /* TODO: fix bugs using this feature */
e03bbb62 94 .scd_chain_ext_wa = true,
7cb1b088 95};
6794f3ee
JB
96
97static const struct iwl_base_params iwl6000_g2_base_params = {
de05ead8
WYG
98 .eeprom_size = OTP_LOW_IMAGE_SIZE,
99 .num_of_queues = IWLAGN_NUM_QUEUES,
de05ead8 100 .pll_cfg_val = 0,
de05ead8
WYG
101 .max_ll_items = OTP_MAX_LL_ITEMS_6x00,
102 .shadow_ram_support = true,
4fb33244 103 .led_compensation = 57,
22de94de 104 .wd_timeout = IWL_LONG_WD_TIMEOUT,
de05ead8 105 .max_event_log_size = 512,
66a77072 106 .shadow_reg_enable = false, /* TODO: fix bugs using this feature */
e03bbb62 107 .scd_chain_ext_wa = true,
de05ead8 108};
7cb1b088 109
6794f3ee 110static const struct iwl_ht_params iwl6000_ht_params = {
7cb1b088
WYG
111 .ht_greenfield_support = true,
112 .use_rts_for_aggregation = true, /* use rts/cts protection */
57fbcce3 113 .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ),
7cb1b088
WYG
114};
115
26a7ca9a
JB
116static const struct iwl_eeprom_params iwl6000_eeprom_params = {
117 .regulatory_bands = {
118 EEPROM_REG_BAND_1_CHANNELS,
119 EEPROM_REG_BAND_2_CHANNELS,
120 EEPROM_REG_BAND_3_CHANNELS,
121 EEPROM_REG_BAND_4_CHANNELS,
122 EEPROM_REG_BAND_5_CHANNELS,
123 EEPROM_6000_REG_BAND_24_HT40_CHANNELS,
124 EEPROM_REG_BAND_52_HT40_CHANNELS
125 },
126 .enhanced_txpower = true,
127};
128
65af8dea 129#define IWL_DEVICE_6005 \
ca9a4605 130 .fw_name_pre = IWL6005_FW_PRE, \
65af8dea
WYG
131 .ucode_api_max = IWL6000G2_UCODE_API_MAX, \
132 .ucode_api_min = IWL6000G2_UCODE_API_MIN, \
2d771cb6 133 .device_family = IWL_DEVICE_FAMILY_6005, \
dae66d0d
EG
134 .max_inst_size = IWL60_RTC_INST_SIZE, \
135 .max_data_size = IWL60_RTC_DATA_SIZE, \
b7998c8b
EL
136 .nvm_ver = EEPROM_6005_EEPROM_VERSION, \
137 .nvm_calib_ver = EEPROM_6005_TX_POWER_VERSION, \
65af8dea 138 .base_params = &iwl6000_g2_base_params, \
26a7ca9a 139 .eeprom_params = &iwl6000_eeprom_params, \
540623ca
EG
140 .led_mode = IWL_LED_RF_STATE, \
141 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
65af8dea 142
706c4ff6 143const struct iwl_cfg iwl6005_2agn_cfg = {
55017ab8 144 .name = "Intel(R) Centrino(R) Advanced-N 6205 AGN",
65af8dea 145 IWL_DEVICE_6005,
7cb1b088 146 .ht_params = &iwl6000_ht_params,
7cb1b088
WYG
147};
148
706c4ff6 149const struct iwl_cfg iwl6005_2abg_cfg = {
55017ab8 150 .name = "Intel(R) Centrino(R) Advanced-N 6205 ABG",
65af8dea 151 IWL_DEVICE_6005,
1808972f
SZ
152};
153
706c4ff6 154const struct iwl_cfg iwl6005_2bg_cfg = {
55017ab8 155 .name = "Intel(R) Centrino(R) Advanced-N 6205 BG",
65af8dea
WYG
156 IWL_DEVICE_6005,
157};
158
706c4ff6 159const struct iwl_cfg iwl6005_2agn_sff_cfg = {
6a9ae0dc
WYG
160 .name = "Intel(R) Centrino(R) Advanced-N 6205S AGN",
161 IWL_DEVICE_6005,
162 .ht_params = &iwl6000_ht_params,
163};
164
706c4ff6 165const struct iwl_cfg iwl6005_2agn_d_cfg = {
5131a600
WYG
166 .name = "Intel(R) Centrino(R) Advanced-N 6205D AGN",
167 IWL_DEVICE_6005,
168 .ht_params = &iwl6000_ht_params,
169};
170
706c4ff6 171const struct iwl_cfg iwl6005_2agn_mow1_cfg = {
37891123
WYG
172 .name = "Intel(R) Centrino(R) Advanced-N 6206 AGN",
173 IWL_DEVICE_6005,
174 .ht_params = &iwl6000_ht_params,
175};
706c4ff6
JB
176
177const struct iwl_cfg iwl6005_2agn_mow2_cfg = {
37891123
WYG
178 .name = "Intel(R) Centrino(R) Advanced-N 6207 AGN",
179 IWL_DEVICE_6005,
180 .ht_params = &iwl6000_ht_params,
181};
182
65af8dea 183#define IWL_DEVICE_6030 \
ca9a4605 184 .fw_name_pre = IWL6030_FW_PRE, \
65af8dea
WYG
185 .ucode_api_max = IWL6000G2_UCODE_API_MAX, \
186 .ucode_api_min = IWL6000G2_UCODE_API_MIN, \
2d771cb6 187 .device_family = IWL_DEVICE_FAMILY_6030, \
dae66d0d
EG
188 .max_inst_size = IWL60_RTC_INST_SIZE, \
189 .max_data_size = IWL60_RTC_DATA_SIZE, \
b7998c8b
EL
190 .nvm_ver = EEPROM_6030_EEPROM_VERSION, \
191 .nvm_calib_ver = EEPROM_6030_TX_POWER_VERSION, \
65af8dea 192 .base_params = &iwl6000_g2_base_params, \
26a7ca9a 193 .eeprom_params = &iwl6000_eeprom_params, \
540623ca
EG
194 .led_mode = IWL_LED_RF_STATE, \
195 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
1808972f 196
706c4ff6 197const struct iwl_cfg iwl6030_2agn_cfg = {
d2eceef0 198 .name = "Intel(R) Centrino(R) Advanced-N 6230 AGN",
65af8dea 199 IWL_DEVICE_6030,
7cb1b088 200 .ht_params = &iwl6000_ht_params,
1808972f
SZ
201};
202
706c4ff6 203const struct iwl_cfg iwl6030_2abg_cfg = {
d2eceef0 204 .name = "Intel(R) Centrino(R) Advanced-N 6230 ABG",
65af8dea 205 IWL_DEVICE_6030,
1808972f
SZ
206};
207
706c4ff6 208const struct iwl_cfg iwl6030_2bgn_cfg = {
d2eceef0 209 .name = "Intel(R) Centrino(R) Advanced-N 6230 BGN",
65af8dea 210 IWL_DEVICE_6030,
7cb1b088 211 .ht_params = &iwl6000_ht_params,
9f6e1baf
SZ
212};
213
706c4ff6 214const struct iwl_cfg iwl6030_2bg_cfg = {
d2eceef0 215 .name = "Intel(R) Centrino(R) Advanced-N 6230 BG",
65af8dea 216 IWL_DEVICE_6030,
1808972f
SZ
217};
218
d2c8b15d
MV
219#define IWL_DEVICE_6035 \
220 .fw_name_pre = IWL6030_FW_PRE, \
221 .ucode_api_max = IWL6035_UCODE_API_MAX, \
d2c8b15d
MV
222 .ucode_api_min = IWL6035_UCODE_API_MIN, \
223 .device_family = IWL_DEVICE_FAMILY_6030, \
224 .max_inst_size = IWL60_RTC_INST_SIZE, \
225 .max_data_size = IWL60_RTC_DATA_SIZE, \
b7998c8b
EL
226 .nvm_ver = EEPROM_6030_EEPROM_VERSION, \
227 .nvm_calib_ver = EEPROM_6030_TX_POWER_VERSION, \
d2c8b15d 228 .base_params = &iwl6000_g2_base_params, \
3c70d087 229 .eeprom_params = &iwl6000_eeprom_params, \
540623ca
EG
230 .led_mode = IWL_LED_RF_STATE, \
231 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
d2c8b15d 232
706c4ff6 233const struct iwl_cfg iwl6035_2agn_cfg = {
6195d135 234 .name = "Intel(R) Centrino(R) Advanced-N 6235 AGN",
d2c8b15d 235 IWL_DEVICE_6035,
d103e344
WYG
236 .ht_params = &iwl6000_ht_params,
237};
238
08a5dd38
EG
239const struct iwl_cfg iwl6035_2agn_sff_cfg = {
240 .name = "Intel(R) Centrino(R) Ultimate-N 6235 AGN",
241 IWL_DEVICE_6035,
242 .ht_params = &iwl6000_ht_params,
243};
244
706c4ff6 245const struct iwl_cfg iwl1030_bgn_cfg = {
d2eceef0 246 .name = "Intel(R) Centrino(R) Wireless-N 1030 BGN",
65af8dea 247 IWL_DEVICE_6030,
7cb1b088 248 .ht_params = &iwl6000_ht_params,
1808972f
SZ
249};
250
706c4ff6 251const struct iwl_cfg iwl1030_bg_cfg = {
d2eceef0 252 .name = "Intel(R) Centrino(R) Wireless-N 1030 BG",
65af8dea
WYG
253 IWL_DEVICE_6030,
254};
255
706c4ff6 256const struct iwl_cfg iwl130_bgn_cfg = {
65af8dea
WYG
257 .name = "Intel(R) Centrino(R) Wireless-N 130 BGN",
258 IWL_DEVICE_6030,
259 .ht_params = &iwl6000_ht_params,
260 .rx_with_siso_diversity = true,
261};
262
706c4ff6 263const struct iwl_cfg iwl130_bg_cfg = {
65af8dea
WYG
264 .name = "Intel(R) Centrino(R) Wireless-N 130 BG",
265 IWL_DEVICE_6030,
266 .rx_with_siso_diversity = true,
1808972f
SZ
267};
268
95b13014
SZ
269/*
270 * "i": Internal configuration, use internal Power Amplifier
271 */
65af8dea
WYG
272#define IWL_DEVICE_6000i \
273 .fw_name_pre = IWL6000_FW_PRE, \
274 .ucode_api_max = IWL6000_UCODE_API_MAX, \
275 .ucode_api_min = IWL6000_UCODE_API_MIN, \
2d771cb6 276 .device_family = IWL_DEVICE_FAMILY_6000i, \
dae66d0d
EG
277 .max_inst_size = IWL60_RTC_INST_SIZE, \
278 .max_data_size = IWL60_RTC_DATA_SIZE, \
65af8dea
WYG
279 .valid_tx_ant = ANT_BC, /* .cfg overwrite */ \
280 .valid_rx_ant = ANT_BC, /* .cfg overwrite */ \
b7998c8b
EL
281 .nvm_ver = EEPROM_6000_EEPROM_VERSION, \
282 .nvm_calib_ver = EEPROM_6000_TX_POWER_VERSION, \
65af8dea 283 .base_params = &iwl6000_base_params, \
26a7ca9a 284 .eeprom_params = &iwl6000_eeprom_params, \
540623ca
EG
285 .led_mode = IWL_LED_BLINK, \
286 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
65af8dea 287
706c4ff6 288const struct iwl_cfg iwl6000i_2agn_cfg = {
c11362c0 289 .name = "Intel(R) Centrino(R) Advanced-N 6200 AGN",
65af8dea 290 IWL_DEVICE_6000i,
7cb1b088 291 .ht_params = &iwl6000_ht_params,
e1228374
JS
292};
293
706c4ff6 294const struct iwl_cfg iwl6000i_2abg_cfg = {
c11362c0 295 .name = "Intel(R) Centrino(R) Advanced-N 6200 ABG",
65af8dea 296 IWL_DEVICE_6000i,
5953a62e
WYG
297};
298
706c4ff6 299const struct iwl_cfg iwl6000i_2bg_cfg = {
c11362c0 300 .name = "Intel(R) Centrino(R) Advanced-N 6200 BG",
65af8dea
WYG
301 IWL_DEVICE_6000i,
302};
303
304#define IWL_DEVICE_6050 \
305 .fw_name_pre = IWL6050_FW_PRE, \
306 .ucode_api_max = IWL6050_UCODE_API_MAX, \
307 .ucode_api_min = IWL6050_UCODE_API_MIN, \
2d771cb6 308 .device_family = IWL_DEVICE_FAMILY_6050, \
dae66d0d
EG
309 .max_inst_size = IWL60_RTC_INST_SIZE, \
310 .max_data_size = IWL60_RTC_DATA_SIZE, \
ff458edc
WYG
311 .valid_tx_ant = ANT_AB, /* .cfg overwrite */ \
312 .valid_rx_ant = ANT_AB, /* .cfg overwrite */ \
b7998c8b
EL
313 .nvm_ver = EEPROM_6050_EEPROM_VERSION, \
314 .nvm_calib_ver = EEPROM_6050_TX_POWER_VERSION, \
65af8dea 315 .base_params = &iwl6050_base_params, \
26a7ca9a 316 .eeprom_params = &iwl6000_eeprom_params, \
65af8dea 317 .led_mode = IWL_LED_BLINK, \
540623ca
EG
318 .internal_wimax_coex = true, \
319 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
5953a62e 320
706c4ff6 321const struct iwl_cfg iwl6050_2agn_cfg = {
c11362c0 322 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 AGN",
65af8dea 323 IWL_DEVICE_6050,
7cb1b088 324 .ht_params = &iwl6000_ht_params,
65af8dea
WYG
325};
326
706c4ff6 327const struct iwl_cfg iwl6050_2abg_cfg = {
65af8dea
WYG
328 .name = "Intel(R) Centrino(R) Advanced-N + WiMAX 6250 ABG",
329 IWL_DEVICE_6050,
03264339
SZ
330};
331
1144181c
WYG
332#define IWL_DEVICE_6150 \
333 .fw_name_pre = IWL6050_FW_PRE, \
334 .ucode_api_max = IWL6050_UCODE_API_MAX, \
335 .ucode_api_min = IWL6050_UCODE_API_MIN, \
2d771cb6 336 .device_family = IWL_DEVICE_FAMILY_6150, \
dae66d0d
EG
337 .max_inst_size = IWL60_RTC_INST_SIZE, \
338 .max_data_size = IWL60_RTC_DATA_SIZE, \
b7998c8b
EL
339 .nvm_ver = EEPROM_6150_EEPROM_VERSION, \
340 .nvm_calib_ver = EEPROM_6150_TX_POWER_VERSION, \
1144181c 341 .base_params = &iwl6050_base_params, \
26a7ca9a 342 .eeprom_params = &iwl6000_eeprom_params, \
1144181c 343 .led_mode = IWL_LED_BLINK, \
540623ca
EG
344 .internal_wimax_coex = true, \
345 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K
1144181c 346
706c4ff6 347const struct iwl_cfg iwl6150_bgn_cfg = {
f9dc6467 348 .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BGN",
1144181c 349 IWL_DEVICE_6150,
7cb1b088 350 .ht_params = &iwl6000_ht_params,
1144181c
WYG
351};
352
706c4ff6 353const struct iwl_cfg iwl6150_bg_cfg = {
1144181c
WYG
354 .name = "Intel(R) Centrino(R) Wireless-N + WiMAX 6150 BG",
355 IWL_DEVICE_6150,
e1228374
JS
356};
357
706c4ff6 358const struct iwl_cfg iwl6000_3agn_cfg = {
c11362c0 359 .name = "Intel(R) Centrino(R) Ultimate-N 6300 AGN",
e1228374
JS
360 .fw_name_pre = IWL6000_FW_PRE,
361 .ucode_api_max = IWL6000_UCODE_API_MAX,
362 .ucode_api_min = IWL6000_UCODE_API_MIN,
2d771cb6 363 .device_family = IWL_DEVICE_FAMILY_6000,
dae66d0d
EG
364 .max_inst_size = IWL60_RTC_INST_SIZE,
365 .max_data_size = IWL60_RTC_DATA_SIZE,
b7998c8b
EL
366 .nvm_ver = EEPROM_6000_EEPROM_VERSION,
367 .nvm_calib_ver = EEPROM_6000_TX_POWER_VERSION,
7cb1b088 368 .base_params = &iwl6000_base_params,
26a7ca9a 369 .eeprom_params = &iwl6000_eeprom_params,
7cb1b088 370 .ht_params = &iwl6000_ht_params,
564b344c 371 .led_mode = IWL_LED_BLINK,
e1228374
JS
372};
373
9d9b21d1
EG
374MODULE_FIRMWARE(IWL6000_MODULE_FIRMWARE(IWL6000_UCODE_API_MAX));
375MODULE_FIRMWARE(IWL6050_MODULE_FIRMWARE(IWL6050_UCODE_API_MAX));
376MODULE_FIRMWARE(IWL6005_MODULE_FIRMWARE(IWL6000G2_UCODE_API_MAX));
377MODULE_FIRMWARE(IWL6030_MODULE_FIRMWARE(IWL6000G2B_UCODE_API_MAX));