]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/net/wireless/iwlwifi/iwl-7000.c
Merge remote-tracking branches 'spi/topic/dw', 'spi/topic/dw-mid', 'spi/topic/fsl...
[mirror_ubuntu-hirsute-kernel.git] / drivers / net / wireless / iwlwifi / iwl-7000.c
CommitLineData
99cd4714
JB
1/******************************************************************************
2 *
410dc5aa
EG
3 * This file is provided under a dual BSD/GPLv2 license. When using or
4 * redistributing this file, you may do so under either license.
99cd4714 5 *
410dc5aa
EG
6 * GPL LICENSE SUMMARY
7 *
51368bf7 8 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
8b4139dc 9 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
410dc5aa
EG
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of version 2 of the GNU General Public License as
99cd4714
JB
13 * published by the Free Software Foundation.
14 *
410dc5aa
EG
15 * This program is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
99cd4714 19 *
410dc5aa
EG
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110,
23 * USA
99cd4714 24 *
410dc5aa
EG
25 * The full GNU General Public License is included in this distribution
26 * in the file called COPYING.
99cd4714
JB
27 *
28 * Contact Information:
29 * Intel Linux Wireless <ilw@linux.intel.com>
30 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
31 *
410dc5aa
EG
32 * BSD LICENSE
33 *
51368bf7 34 * Copyright(c) 2012 - 2014 Intel Corporation. All rights reserved.
8b4139dc 35 * Copyright(c) 2013 - 2014 Intel Mobile Communications GmbH
410dc5aa
EG
36 * All rights reserved.
37 *
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
40 * are met:
41 *
42 * * Redistributions of source code must retain the above copyright
43 * notice, this list of conditions and the following disclaimer.
44 * * Redistributions in binary form must reproduce the above copyright
45 * notice, this list of conditions and the following disclaimer in
46 * the documentation and/or other materials provided with the
47 * distribution.
48 * * Neither the name Intel Corporation nor the names of its
49 * contributors may be used to endorse or promote products derived
50 * from this software without specific prior written permission.
51 *
52 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
99cd4714
JB
64 *****************************************************************************/
65
66#include <linux/module.h>
67#include <linux/stringify.h>
68#include "iwl-config.h"
69#include "iwl-agn-hw.h"
99cd4714
JB
70
71/* Highest firmware API version supported */
628a2918
JB
72#define IWL7260_UCODE_API_MAX 17
73#define IWL7265_UCODE_API_MAX 19
74#define IWL7265D_UCODE_API_MAX 19
99cd4714
JB
75
76/* Oldest version we won't warn about */
3c1f84a1 77#define IWL7260_UCODE_API_OK 13
628a2918
JB
78#define IWL7265_UCODE_API_OK 13
79#define IWL7265D_UCODE_API_OK 13
99cd4714
JB
80
81/* Lowest firmware API version supported */
3c1f84a1 82#define IWL7260_UCODE_API_MIN 13
628a2918
JB
83#define IWL7265_UCODE_API_MIN 13
84#define IWL7265D_UCODE_API_MIN 13
99cd4714
JB
85
86/* NVM versions */
87#define IWL7260_NVM_VERSION 0x0a1d
88#define IWL7260_TX_POWER_VERSION 0xffff /* meaningless */
89#define IWL3160_NVM_VERSION 0x709
90#define IWL3160_TX_POWER_VERSION 0xffff /* meaningless */
498abba6
OG
91#define IWL3165_NVM_VERSION 0x709
92#define IWL3165_TX_POWER_VERSION 0xffff /* meaningless */
c4aee085
EH
93#define IWL7265_NVM_VERSION 0x0a1d
94#define IWL7265_TX_POWER_VERSION 0xffff /* meaningless */
e70af8e0
EG
95#define IWL7265D_NVM_VERSION 0x0c11
96#define IWL7265_TX_POWER_VERSION 0xffff /* meaningless */
99cd4714 97
f53bf4c7
LK
98/* DCCM offsets and lengths */
99#define IWL7000_DCCM_OFFSET 0x800000
100#define IWL7260_DCCM_LEN 0x14000
101#define IWL3160_DCCM_LEN 0x10000
102#define IWL7265_DCCM_LEN 0x17A00
103
99cd4714
JB
104#define IWL7260_FW_PRE "iwlwifi-7260-"
105#define IWL7260_MODULE_FIRMWARE(api) IWL7260_FW_PRE __stringify(api) ".ucode"
106
107#define IWL3160_FW_PRE "iwlwifi-3160-"
108#define IWL3160_MODULE_FIRMWARE(api) IWL3160_FW_PRE __stringify(api) ".ucode"
109
c4aee085
EH
110#define IWL7265_FW_PRE "iwlwifi-7265-"
111#define IWL7265_MODULE_FIRMWARE(api) IWL7265_FW_PRE __stringify(api) ".ucode"
112
3fd0d3c1 113#define IWL7265D_FW_PRE "iwlwifi-7265D-"
a443f5e1 114#define IWL7265D_MODULE_FIRMWARE(api) IWL7265D_FW_PRE __stringify(api) ".ucode"
3fd0d3c1 115
ae2b21b0
EH
116#define NVM_HW_SECTION_NUM_FAMILY_7000 0
117
99cd4714 118static const struct iwl_base_params iwl7000_base_params = {
30085544 119 .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_7000,
79f68280 120 .num_of_queues = 31,
99cd4714
JB
121 .pll_cfg_val = 0,
122 .shadow_ram_support = true,
123 .led_compensation = 57,
99cd4714
JB
124 .wd_timeout = IWL_LONG_WD_TIMEOUT,
125 .max_event_log_size = 512,
b415210b 126 .shadow_reg_enable = true,
f2532b04 127 .pcie_l1_allowed = true,
e7f76340 128 .apmg_wake_up_wa = true,
99cd4714
JB
129};
130
3444682a
CRI
131static const struct iwl_tt_params iwl7000_high_temp_tt_params = {
132 .ct_kill_entry = 118,
133 .ct_kill_exit = 96,
134 .ct_kill_duration = 5,
135 .dynamic_smps_entry = 114,
136 .dynamic_smps_exit = 110,
137 .tx_protection_entry = 114,
138 .tx_protection_exit = 108,
139 .tx_backoff = {
140 {.temperature = 112, .backoff = 300},
141 {.temperature = 113, .backoff = 800},
142 {.temperature = 114, .backoff = 1500},
143 {.temperature = 115, .backoff = 3000},
144 {.temperature = 116, .backoff = 5000},
145 {.temperature = 117, .backoff = 10000},
146 },
147 .support_ct_kill = true,
148 .support_dynamic_smps = true,
149 .support_tx_protection = true,
150 .support_tx_backoff = true,
151};
152
99cd4714 153static const struct iwl_ht_params iwl7000_ht_params = {
183d281d 154 .stbc = true,
99cd4714
JB
155 .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
156};
157
628a2918 158#define IWL_DEVICE_7000_COMMON \
99cd4714
JB
159 .device_family = IWL_DEVICE_FAMILY_7000, \
160 .max_inst_size = IWL60_RTC_INST_SIZE, \
161 .max_data_size = IWL60_RTC_DATA_SIZE, \
162 .base_params = &iwl7000_base_params, \
ae2b21b0 163 .led_mode = IWL_LED_RF_STATE, \
bbab7582 164 .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_7000, \
c064ddf3 165 .non_shared_ant = ANT_A, \
f53bf4c7
LK
166 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, \
167 .dccm_offset = IWL7000_DCCM_OFFSET
99cd4714 168
628a2918
JB
169#define IWL_DEVICE_7000 \
170 IWL_DEVICE_7000_COMMON, \
171 .ucode_api_max = IWL7260_UCODE_API_MAX, \
172 .ucode_api_ok = IWL7260_UCODE_API_OK, \
173 .ucode_api_min = IWL7260_UCODE_API_MIN
174
175#define IWL_DEVICE_7005 \
176 IWL_DEVICE_7000_COMMON, \
177 .ucode_api_max = IWL7265_UCODE_API_MAX, \
178 .ucode_api_ok = IWL7265_UCODE_API_OK, \
179 .ucode_api_min = IWL7265_UCODE_API_MIN
180
181#define IWL_DEVICE_7005D \
182 IWL_DEVICE_7000_COMMON, \
183 .ucode_api_max = IWL7265D_UCODE_API_MAX, \
184 .ucode_api_ok = IWL7265D_UCODE_API_OK, \
185 .ucode_api_min = IWL7265D_UCODE_API_MIN
186
99cd4714 187const struct iwl_cfg iwl7260_2ac_cfg = {
93fc6411 188 .name = "Intel(R) Dual Band Wireless AC 7260",
99cd4714
JB
189 .fw_name_pre = IWL7260_FW_PRE,
190 IWL_DEVICE_7000,
191 .ht_params = &iwl7000_ht_params,
192 .nvm_ver = IWL7260_NVM_VERSION,
193 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
6960a059 194 .host_interrupt_operation_mode = true,
a812cba9 195 .lp_xtal_workaround = true,
f53bf4c7 196 .dccm_len = IWL7260_DCCM_LEN,
99cd4714
JB
197};
198
6be497f2
EL
199const struct iwl_cfg iwl7260_2ac_cfg_high_temp = {
200 .name = "Intel(R) Dual Band Wireless AC 7260",
201 .fw_name_pre = IWL7260_FW_PRE,
202 IWL_DEVICE_7000,
203 .ht_params = &iwl7000_ht_params,
204 .nvm_ver = IWL7260_NVM_VERSION,
205 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
206 .high_temp = true,
6960a059 207 .host_interrupt_operation_mode = true,
a812cba9 208 .lp_xtal_workaround = true,
f53bf4c7 209 .dccm_len = IWL7260_DCCM_LEN,
3444682a 210 .thermal_params = &iwl7000_high_temp_tt_params,
6be497f2
EL
211};
212
93fc6411
OG
213const struct iwl_cfg iwl7260_2n_cfg = {
214 .name = "Intel(R) Dual Band Wireless N 7260",
215 .fw_name_pre = IWL7260_FW_PRE,
216 IWL_DEVICE_7000,
217 .ht_params = &iwl7000_ht_params,
218 .nvm_ver = IWL7260_NVM_VERSION,
219 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
6960a059 220 .host_interrupt_operation_mode = true,
a812cba9 221 .lp_xtal_workaround = true,
f53bf4c7 222 .dccm_len = IWL7260_DCCM_LEN,
93fc6411
OG
223};
224
225const struct iwl_cfg iwl7260_n_cfg = {
226 .name = "Intel(R) Wireless N 7260",
227 .fw_name_pre = IWL7260_FW_PRE,
228 IWL_DEVICE_7000,
229 .ht_params = &iwl7000_ht_params,
230 .nvm_ver = IWL7260_NVM_VERSION,
231 .nvm_calib_ver = IWL7260_TX_POWER_VERSION,
6960a059 232 .host_interrupt_operation_mode = true,
a812cba9 233 .lp_xtal_workaround = true,
f53bf4c7 234 .dccm_len = IWL7260_DCCM_LEN,
93fc6411
OG
235};
236
237const struct iwl_cfg iwl3160_2ac_cfg = {
238 .name = "Intel(R) Dual Band Wireless AC 3160",
239 .fw_name_pre = IWL3160_FW_PRE,
240 IWL_DEVICE_7000,
241 .ht_params = &iwl7000_ht_params,
242 .nvm_ver = IWL3160_NVM_VERSION,
243 .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
6960a059 244 .host_interrupt_operation_mode = true,
f53bf4c7 245 .dccm_len = IWL3160_DCCM_LEN,
93fc6411
OG
246};
247
248const struct iwl_cfg iwl3160_2n_cfg = {
249 .name = "Intel(R) Dual Band Wireless N 3160",
250 .fw_name_pre = IWL3160_FW_PRE,
251 IWL_DEVICE_7000,
252 .ht_params = &iwl7000_ht_params,
253 .nvm_ver = IWL3160_NVM_VERSION,
254 .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
6960a059 255 .host_interrupt_operation_mode = true,
f53bf4c7 256 .dccm_len = IWL3160_DCCM_LEN,
93fc6411
OG
257};
258
259const struct iwl_cfg iwl3160_n_cfg = {
260 .name = "Intel(R) Wireless N 3160",
99cd4714
JB
261 .fw_name_pre = IWL3160_FW_PRE,
262 IWL_DEVICE_7000,
263 .ht_params = &iwl7000_ht_params,
264 .nvm_ver = IWL3160_NVM_VERSION,
265 .nvm_calib_ver = IWL3160_TX_POWER_VERSION,
6960a059 266 .host_interrupt_operation_mode = true,
f53bf4c7 267 .dccm_len = IWL3160_DCCM_LEN,
99cd4714
JB
268};
269
8e0dc206
IY
270static const struct iwl_pwr_tx_backoff iwl7265_pwr_tx_backoffs[] = {
271 {.pwr = 1600, .backoff = 0},
272 {.pwr = 1300, .backoff = 467},
273 {.pwr = 900, .backoff = 1900},
274 {.pwr = 800, .backoff = 2630},
275 {.pwr = 700, .backoff = 3720},
276 {.pwr = 600, .backoff = 5550},
277 {.pwr = 500, .backoff = 9350},
278 {0},
279};
280
a3576ff2
ES
281static const struct iwl_ht_params iwl7265_ht_params = {
282 .stbc = true,
283 .ldpc = true,
284 .ht40_bands = BIT(IEEE80211_BAND_2GHZ) | BIT(IEEE80211_BAND_5GHZ),
285};
286
498abba6
OG
287const struct iwl_cfg iwl3165_2ac_cfg = {
288 .name = "Intel(R) Dual Band Wireless AC 3165",
ed659187 289 .fw_name_pre = IWL7265D_FW_PRE,
628a2918 290 IWL_DEVICE_7005D,
498abba6
OG
291 .ht_params = &iwl7000_ht_params,
292 .nvm_ver = IWL3165_NVM_VERSION,
293 .nvm_calib_ver = IWL3165_TX_POWER_VERSION,
294 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 295 .dccm_len = IWL7265_DCCM_LEN,
498abba6
OG
296};
297
c4aee085
EH
298const struct iwl_cfg iwl7265_2ac_cfg = {
299 .name = "Intel(R) Dual Band Wireless AC 7265",
300 .fw_name_pre = IWL7265_FW_PRE,
628a2918 301 IWL_DEVICE_7005,
a3576ff2 302 .ht_params = &iwl7265_ht_params,
c4aee085
EH
303 .nvm_ver = IWL7265_NVM_VERSION,
304 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
8e0dc206 305 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 306 .dccm_len = IWL7265_DCCM_LEN,
c4aee085
EH
307};
308
53e88cb1
OG
309const struct iwl_cfg iwl7265_2n_cfg = {
310 .name = "Intel(R) Dual Band Wireless N 7265",
311 .fw_name_pre = IWL7265_FW_PRE,
628a2918 312 IWL_DEVICE_7005,
a3576ff2 313 .ht_params = &iwl7265_ht_params,
53e88cb1
OG
314 .nvm_ver = IWL7265_NVM_VERSION,
315 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
8e0dc206 316 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 317 .dccm_len = IWL7265_DCCM_LEN,
53e88cb1
OG
318};
319
320const struct iwl_cfg iwl7265_n_cfg = {
321 .name = "Intel(R) Wireless N 7265",
322 .fw_name_pre = IWL7265_FW_PRE,
628a2918 323 IWL_DEVICE_7005,
a3576ff2 324 .ht_params = &iwl7265_ht_params,
53e88cb1
OG
325 .nvm_ver = IWL7265_NVM_VERSION,
326 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
8e0dc206 327 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 328 .dccm_len = IWL7265_DCCM_LEN,
53e88cb1
OG
329};
330
3fd0d3c1
JB
331const struct iwl_cfg iwl7265d_2ac_cfg = {
332 .name = "Intel(R) Dual Band Wireless AC 7265",
333 .fw_name_pre = IWL7265D_FW_PRE,
628a2918 334 IWL_DEVICE_7005D,
3fd0d3c1 335 .ht_params = &iwl7265_ht_params,
e70af8e0 336 .nvm_ver = IWL7265D_NVM_VERSION,
3fd0d3c1
JB
337 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
338 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 339 .dccm_len = IWL7265_DCCM_LEN,
3fd0d3c1
JB
340};
341
342const struct iwl_cfg iwl7265d_2n_cfg = {
343 .name = "Intel(R) Dual Band Wireless N 7265",
344 .fw_name_pre = IWL7265D_FW_PRE,
628a2918 345 IWL_DEVICE_7005D,
3fd0d3c1 346 .ht_params = &iwl7265_ht_params,
e70af8e0 347 .nvm_ver = IWL7265D_NVM_VERSION,
3fd0d3c1
JB
348 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
349 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 350 .dccm_len = IWL7265_DCCM_LEN,
3fd0d3c1
JB
351};
352
353const struct iwl_cfg iwl7265d_n_cfg = {
354 .name = "Intel(R) Wireless N 7265",
355 .fw_name_pre = IWL7265D_FW_PRE,
628a2918 356 IWL_DEVICE_7005D,
3fd0d3c1 357 .ht_params = &iwl7265_ht_params,
e70af8e0 358 .nvm_ver = IWL7265D_NVM_VERSION,
3fd0d3c1
JB
359 .nvm_calib_ver = IWL7265_TX_POWER_VERSION,
360 .pwr_tx_backoffs = iwl7265_pwr_tx_backoffs,
f53bf4c7 361 .dccm_len = IWL7265_DCCM_LEN,
3fd0d3c1
JB
362};
363
99cd4714 364MODULE_FIRMWARE(IWL7260_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
b5a48134 365MODULE_FIRMWARE(IWL3160_MODULE_FIRMWARE(IWL7260_UCODE_API_OK));
628a2918
JB
366MODULE_FIRMWARE(IWL7265_MODULE_FIRMWARE(IWL7265_UCODE_API_OK));
367MODULE_FIRMWARE(IWL7265D_MODULE_FIRMWARE(IWL7265D_UCODE_API_OK));