]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/net/wireless/intel/iwlwifi/cfg/9000.c
Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
[mirror_ubuntu-jammy-kernel.git] / drivers / net / wireless / intel / iwlwifi / cfg / 9000.c
CommitLineData
89374fe6
DH
1/******************************************************************************
2 *
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.
5 *
6 * GPL LICENSE SUMMARY
7 *
5da083d1 8 * Copyright(c) 2015-2017 Intel Deutschland GmbH
4c704534 9 * Copyright (C) 2018 - 2019 Intel Corporation
89374fe6
DH
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
13 * published by the Free Software Foundation.
14 *
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.
19 *
20 * BSD LICENSE
21 *
5da083d1 22 * Copyright(c) 2015-2017 Intel Deutschland GmbH
4c704534 23 * Copyright (C) 2018 - 2019 Intel Corporation
89374fe6
DH
24 * All rights reserved.
25 *
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
28 * are met:
29 *
30 * * Redistributions of source code must retain the above copyright
31 * notice, this list of conditions and the following disclaimer.
32 * * Redistributions in binary form must reproduce the above copyright
33 * notice, this list of conditions and the following disclaimer in
34 * the documentation and/or other materials provided with the
35 * distribution.
36 * * Neither the name Intel Corporation nor the names of its
37 * contributors may be used to endorse or promote products derived
38 * from this software without specific prior written permission.
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
41 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
42 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
43 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51 *
52 *****************************************************************************/
53
54#include <linux/module.h>
55#include <linux/stringify.h>
56#include "iwl-config.h"
86a2b204 57#include "fw/file.h"
593fae3e 58#include "iwl-prph.h"
89374fe6
DH
59
60/* Highest firmware API version supported */
5cc9543a 61#define IWL9000_UCODE_API_MAX 46
89374fe6 62
89374fe6 63/* Lowest firmware API version supported */
0f17e1bb 64#define IWL9000_UCODE_API_MIN 30
89374fe6
DH
65
66/* NVM versions */
67#define IWL9000_NVM_VERSION 0x0a1d
89374fe6
DH
68
69/* Memory offsets and lengths */
70#define IWL9000_DCCM_OFFSET 0x800000
71#define IWL9000_DCCM_LEN 0x18000
72#define IWL9000_DCCM2_OFFSET 0x880000
73#define IWL9000_DCCM2_LEN 0x8000
74#define IWL9000_SMEM_OFFSET 0x400000
75#define IWL9000_SMEM_LEN 0x68000
76
b7226f10
LC
77#define IWL9000_FW_PRE "iwlwifi-9000-pu-b0-jf-b0-"
78#define IWL9260_FW_PRE "iwlwifi-9260-th-b0-jf-b0-"
79#define IWL9000_MODULE_FIRMWARE(api) \
80 IWL9000_FW_PRE __stringify(api) ".ucode"
81#define IWL9260_MODULE_FIRMWARE(api) \
82 IWL9260_FW_PRE __stringify(api) ".ucode"
89374fe6 83
89374fe6 84static const struct iwl_base_params iwl9000_base_params = {
3e2b49d6 85 .eeprom_size = OTP_LOW_IMAGE_SIZE_32K,
6ae57b29 86 .num_of_queues = 31,
7b3e42ea 87 .max_tfd_queue_size = 256,
89374fe6
DH
88 .shadow_ram_support = true,
89 .led_compensation = 57,
90 .wd_timeout = IWL_LONG_WD_TIMEOUT,
91 .max_event_log_size = 512,
92 .shadow_reg_enable = true,
93 .pcie_l1_allowed = true,
94};
95
96static const struct iwl_ht_params iwl9000_ht_params = {
97 .stbc = true,
98 .ldpc = true,
57fbcce3 99 .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ),
89374fe6
DH
100};
101
102static const struct iwl_tt_params iwl9000_tt_params = {
103 .ct_kill_entry = 115,
104 .ct_kill_exit = 93,
105 .ct_kill_duration = 5,
106 .dynamic_smps_entry = 111,
107 .dynamic_smps_exit = 107,
108 .tx_protection_entry = 112,
109 .tx_protection_exit = 105,
110 .tx_backoff = {
111 {.temperature = 110, .backoff = 200},
112 {.temperature = 111, .backoff = 600},
113 {.temperature = 112, .backoff = 1200},
114 {.temperature = 113, .backoff = 2000},
115 {.temperature = 114, .backoff = 4000},
116 },
117 .support_ct_kill = true,
118 .support_dynamic_smps = true,
119 .support_tx_protection = true,
120 .support_tx_backoff = true,
121};
122
123#define IWL_DEVICE_9000 \
124 .ucode_api_max = IWL9000_UCODE_API_MAX, \
89374fe6 125 .ucode_api_min = IWL9000_UCODE_API_MIN, \
79b6c8fe
LC
126 .trans.device_family = IWL_DEVICE_FAMILY_9000, \
127 .trans.base_params = &iwl9000_base_params, \
89374fe6 128 .led_mode = IWL_LED_RF_STATE, \
4aeaccd6 129 .nvm_hw_section_num = 10, \
50624782 130 .non_shared_ant = ANT_B, \
89374fe6
DH
131 .dccm_offset = IWL9000_DCCM_OFFSET, \
132 .dccm_len = IWL9000_DCCM_LEN, \
133 .dccm2_offset = IWL9000_DCCM2_OFFSET, \
134 .dccm2_len = IWL9000_DCCM2_LEN, \
135 .smem_offset = IWL9000_SMEM_OFFSET, \
136 .smem_len = IWL9000_SMEM_LEN, \
5e6a98dc 137 .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \
89374fe6 138 .thermal_params = &iwl9000_tt_params, \
96a6497b 139 .apmg_not_supported = true, \
79b6c8fe 140 .trans.mq_rx_supported = true, \
17c867bf 141 .vht_mu_mimo_supported = true, \
1afb0ae4 142 .mac_addr_from_csr = true, \
79b6c8fe 143 .trans.rf_id = true, \
44fd09da 144 .nvm_type = IWL_NVM_EXT, \
3485e76e 145 .dbgc_supported = true, \
a8cbb46f 146 .min_umac_error_event_table = 0x800000, \
79b6c8fe 147 .trans.csr = &iwl_csr_v1, \
2d8c2615 148 .d3_debug_data_base_addr = 0x401000, \
09b0b990
LC
149 .d3_debug_data_length = 92 * 1024, \
150 .ht_params = &iwl9000_ht_params, \
151 .nvm_ver = IWL9000_NVM_VERSION, \
4c704534 152 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, \
593fae3e
SM
153 .mon_smem_regs = { \
154 .write_ptr = { \
155 .addr = LDBG_M2S_BUF_WPTR, \
156 .mask = LDBG_M2S_BUF_WPTR_VAL_MSK, \
157 }, \
158 .cycle_cnt = { \
159 .addr = LDBG_M2S_BUF_WRAP_CNT, \
160 .mask = LDBG_M2S_BUF_WRAP_CNT_VAL_MSK, \
161 }, \
162 }, \
163 .mon_dram_regs = { \
164 .write_ptr = { \
165 .addr = MON_BUFF_WRPTR_VER2, \
166 .mask = 0xffffffff, \
167 }, \
168 .cycle_cnt = { \
169 .addr = MON_BUFF_CYCLE_CNT_VER2, \
170 .mask = 0xffffffff, \
171 }, \
172 }
09b0b990 173
89374fe6 174
fe4a7249
OG
175const struct iwl_cfg iwl9160_2ac_cfg = {
176 .name = "Intel(R) Dual Band Wireless AC 9160",
b7226f10 177 .fw_name_pre = IWL9260_FW_PRE,
fe4a7249 178 IWL_DEVICE_9000,
fe4a7249
OG
179};
180
aea2a5f0 181const struct iwl_cfg iwl9260_2ac_cfg = {
486c96a7 182 .name = "Intel(R) Dual Band Wireless AC 9260",
b7226f10 183 .fw_name_pre = IWL9260_FW_PRE,
486c96a7 184 IWL_DEVICE_9000,
22ccabf1
OG
185};
186
98f0d01a
IZ
187const struct iwl_cfg iwl9260_2ac_160_cfg = {
188 .name = "Intel(R) Wireless-AC 9260 160MHz",
189 .fw_name_pre = IWL9260_FW_PRE,
190 IWL_DEVICE_9000,
191};
192
0a5257bc
EG
193const struct iwl_cfg iwl9260_killer_2ac_cfg = {
194 .name = "Killer (R) Wireless-AC 1550 Wireless Network Adapter (9260NGW)",
b7226f10 195 .fw_name_pre = IWL9260_FW_PRE,
0a5257bc 196 IWL_DEVICE_9000,
0a5257bc
EG
197};
198
22ccabf1
OG
199const struct iwl_cfg iwl9270_2ac_cfg = {
200 .name = "Intel(R) Dual Band Wireless AC 9270",
b7226f10 201 .fw_name_pre = IWL9260_FW_PRE,
22ccabf1 202 IWL_DEVICE_9000,
486c96a7
OG
203};
204
827e9ab8
OG
205const struct iwl_cfg iwl9460_2ac_cfg = {
206 .name = "Intel(R) Dual Band Wireless AC 9460",
b7226f10 207 .fw_name_pre = IWL9260_FW_PRE,
486c96a7 208 IWL_DEVICE_9000,
dbc89253
LC
209};
210
211const struct iwl_cfg iwl9460_2ac_cfg_soc = {
212 .name = "Intel(R) Dual Band Wireless AC 9460",
b7226f10 213 .fw_name_pre = IWL9000_FW_PRE,
dbc89253 214 IWL_DEVICE_9000,
486c96a7 215 .integrated = true,
dbc89253
LC
216 .soc_latency = 5000,
217};
218
219const struct iwl_cfg iwl9461_2ac_cfg_soc = {
b7226f10
LC
220 .name = "Intel(R) Dual Band Wireless AC 9461",
221 .fw_name_pre = IWL9000_FW_PRE,
222 IWL_DEVICE_9000,
223 .integrated = true,
224 .soc_latency = 5000,
dbc89253
LC
225};
226
227const struct iwl_cfg iwl9462_2ac_cfg_soc = {
b7226f10
LC
228 .name = "Intel(R) Dual Band Wireless AC 9462",
229 .fw_name_pre = IWL9000_FW_PRE,
230 IWL_DEVICE_9000,
231 .integrated = true,
232 .soc_latency = 5000,
1afb0ae4
HD
233};
234
89e4ad53
OG
235const struct iwl_cfg iwl9560_2ac_cfg = {
236 .name = "Intel(R) Dual Band Wireless AC 9560",
b7226f10 237 .fw_name_pre = IWL9260_FW_PRE,
89e4ad53 238 IWL_DEVICE_9000,
89e4ad53
OG
239};
240
98f0d01a
IZ
241const struct iwl_cfg iwl9560_2ac_160_cfg = {
242 .name = "Intel(R) Wireless-AC 9560 160MHz",
243 .fw_name_pre = IWL9260_FW_PRE,
244 IWL_DEVICE_9000,
245};
246
dbc89253
LC
247const struct iwl_cfg iwl9560_2ac_cfg_soc = {
248 .name = "Intel(R) Dual Band Wireless AC 9560",
b7226f10 249 .fw_name_pre = IWL9000_FW_PRE,
dbc89253 250 IWL_DEVICE_9000,
dbc89253
LC
251 .integrated = true,
252 .soc_latency = 5000,
253};
86a2b204 254
98f0d01a
IZ
255const struct iwl_cfg iwl9560_2ac_160_cfg_soc = {
256 .name = "Intel(R) Wireless-AC 9560 160MHz",
257 .fw_name_pre = IWL9000_FW_PRE,
258 IWL_DEVICE_9000,
259 .integrated = true,
260 .soc_latency = 5000,
261};
262
0a5257bc
EG
263const struct iwl_cfg iwl9560_killer_2ac_cfg_soc = {
264 .name = "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)",
b7226f10 265 .fw_name_pre = IWL9000_FW_PRE,
0a5257bc 266 IWL_DEVICE_9000,
0a5257bc
EG
267 .integrated = true,
268 .soc_latency = 5000,
269};
270
271const struct iwl_cfg iwl9560_killer_s_2ac_cfg_soc = {
272 .name = "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)",
b7226f10 273 .fw_name_pre = IWL9000_FW_PRE,
0a5257bc 274 IWL_DEVICE_9000,
0a5257bc
EG
275 .integrated = true,
276 .soc_latency = 5000,
277};
278
86a2b204
LC
279const struct iwl_cfg iwl9460_2ac_cfg_shared_clk = {
280 .name = "Intel(R) Dual Band Wireless AC 9460",
b7226f10 281 .fw_name_pre = IWL9000_FW_PRE,
86a2b204 282 IWL_DEVICE_9000,
86a2b204
LC
283 .integrated = true,
284 .soc_latency = 5000,
285 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
286};
287
288const struct iwl_cfg iwl9461_2ac_cfg_shared_clk = {
289 .name = "Intel(R) Dual Band Wireless AC 9461",
b7226f10 290 .fw_name_pre = IWL9000_FW_PRE,
86a2b204 291 IWL_DEVICE_9000,
86a2b204
LC
292 .integrated = true,
293 .soc_latency = 5000,
294 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
295};
296
297const struct iwl_cfg iwl9462_2ac_cfg_shared_clk = {
298 .name = "Intel(R) Dual Band Wireless AC 9462",
b7226f10 299 .fw_name_pre = IWL9000_FW_PRE,
86a2b204 300 IWL_DEVICE_9000,
86a2b204
LC
301 .integrated = true,
302 .soc_latency = 5000,
303 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
304};
305
306const struct iwl_cfg iwl9560_2ac_cfg_shared_clk = {
307 .name = "Intel(R) Dual Band Wireless AC 9560",
b7226f10 308 .fw_name_pre = IWL9000_FW_PRE,
86a2b204 309 IWL_DEVICE_9000,
86a2b204
LC
310 .integrated = true,
311 .soc_latency = 5000,
312 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
313};
314
98f0d01a
IZ
315const struct iwl_cfg iwl9560_2ac_160_cfg_shared_clk = {
316 .name = "Intel(R) Wireless-AC 9560 160MHz",
317 .fw_name_pre = IWL9000_FW_PRE,
318 IWL_DEVICE_9000,
319 .integrated = true,
320 .soc_latency = 5000,
321 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
322};
323
0a5257bc
EG
324const struct iwl_cfg iwl9560_killer_2ac_cfg_shared_clk = {
325 .name = "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)",
b7226f10 326 .fw_name_pre = IWL9000_FW_PRE,
0a5257bc 327 IWL_DEVICE_9000,
0a5257bc
EG
328 .integrated = true,
329 .soc_latency = 5000,
330 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
331};
332
333const struct iwl_cfg iwl9560_killer_s_2ac_cfg_shared_clk = {
334 .name = "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)",
b7226f10 335 .fw_name_pre = IWL9000_FW_PRE,
0a5257bc 336 IWL_DEVICE_9000,
0a5257bc
EG
337 .integrated = true,
338 .soc_latency = 5000,
339 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK
340};
341
b7226f10
LC
342MODULE_FIRMWARE(IWL9000_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));
343MODULE_FIRMWARE(IWL9260_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX));