1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2 /*
3  * Copyright (C) 2015-2017 Intel Deutschland GmbH
4  * Copyright (C) 2018-2020 Intel Corporation
5  */
6 #include <linux/module.h>
7 #include <linux/stringify.h>
8 #include "iwl-config.h"
9 #include "iwl-prph.h"
10 
11 /* Highest firmware API version supported */
12 #define IWL_22000_UCODE_API_MAX	60
13 
14 /* Lowest firmware API version supported */
15 #define IWL_22000_UCODE_API_MIN	39
16 
17 /* NVM versions */
18 #define IWL_22000_NVM_VERSION		0x0a1d
19 
20 /* Memory offsets and lengths */
21 #define IWL_22000_DCCM_OFFSET		0x800000 /* LMAC1 */
22 #define IWL_22000_DCCM_LEN		0x10000 /* LMAC1 */
23 #define IWL_22000_DCCM2_OFFSET		0x880000
24 #define IWL_22000_DCCM2_LEN		0x8000
25 #define IWL_22000_SMEM_OFFSET		0x400000
26 #define IWL_22000_SMEM_LEN		0xD0000
27 
28 #define IWL_QU_B_HR_B_FW_PRE		"iwlwifi-Qu-b0-hr-b0-"
29 #define IWL_QNJ_B_HR_B_FW_PRE		"iwlwifi-QuQnj-b0-hr-b0-"
30 #define IWL_QU_C_HR_B_FW_PRE		"iwlwifi-Qu-c0-hr-b0-"
31 #define IWL_QU_B_JF_B_FW_PRE		"iwlwifi-Qu-b0-jf-b0-"
32 #define IWL_QU_C_JF_B_FW_PRE		"iwlwifi-Qu-c0-jf-b0-"
33 #define IWL_QUZ_A_HR_B_FW_PRE		"iwlwifi-QuZ-a0-hr-b0-"
34 #define IWL_QUZ_A_JF_B_FW_PRE		"iwlwifi-QuZ-a0-jf-b0-"
35 #define IWL_QNJ_B_JF_B_FW_PRE		"iwlwifi-QuQnj-b0-jf-b0-"
36 #define IWL_CC_A_FW_PRE			"iwlwifi-cc-a0-"
37 #define IWL_SO_A_JF_B_FW_PRE		"iwlwifi-so-a0-jf-b0-"
38 #define IWL_SO_A_HR_B_FW_PRE		"iwlwifi-so-a0-hr-b0-"
39 #define IWL_SO_A_GF_A_FW_PRE		"iwlwifi-so-a0-gf-a0-"
40 #define IWL_TY_A_GF_A_FW_PRE		"iwlwifi-ty-a0-gf-a0-"
41 #define IWL_SO_A_GF4_A_FW_PRE		"iwlwifi-so-a0-gf4-a0-"
42 #define IWL_SNJ_A_GF4_A_FW_PRE		"iwlwifi-SoSnj-a0-gf4-a0-"
43 #define IWL_SNJ_A_GF_A_FW_PRE		"iwlwifi-SoSnj-a0-gf-a0-"
44 #define IWL_SNJ_A_HR_B_FW_PRE		"iwlwifi-SoSnj-a0-hr-b0-"
45 #define IWL_MA_A_GF_A_FW_PRE		"iwlwifi-ma-a0-gf-a0-"
46 #define IWL_MA_A_MR_A_FW_PRE		"iwlwifi-ma-a0-mr-a0-"
47 #define IWL_SNJ_A_MR_A_FW_PRE		"iwlwifi-SoSnj-a0-mr-a0-"
48 
49 #define IWL_QU_B_HR_B_MODULE_FIRMWARE(api) \
50 	IWL_QU_B_HR_B_FW_PRE __stringify(api) ".ucode"
51 #define IWL_QNJ_B_HR_B_MODULE_FIRMWARE(api)	\
52 	IWL_QNJ_B_HR_B_FW_PRE __stringify(api) ".ucode"
53 #define IWL_QUZ_A_HR_B_MODULE_FIRMWARE(api) \
54 	IWL_QUZ_A_HR_B_FW_PRE __stringify(api) ".ucode"
55 #define IWL_QUZ_A_JF_B_MODULE_FIRMWARE(api) \
56 	IWL_QUZ_A_JF_B_FW_PRE __stringify(api) ".ucode"
57 #define IWL_QU_C_HR_B_MODULE_FIRMWARE(api) \
58 	IWL_QU_C_HR_B_FW_PRE __stringify(api) ".ucode"
59 #define IWL_QU_B_JF_B_MODULE_FIRMWARE(api) \
60 	IWL_QU_B_JF_B_FW_PRE __stringify(api) ".ucode"
61 #define IWL_QNJ_B_JF_B_MODULE_FIRMWARE(api)		\
62 	IWL_QNJ_B_JF_B_FW_PRE __stringify(api) ".ucode"
63 #define IWL_CC_A_MODULE_FIRMWARE(api)			\
64 	IWL_CC_A_FW_PRE __stringify(api) ".ucode"
65 #define IWL_SO_A_JF_B_MODULE_FIRMWARE(api) \
66 	IWL_SO_A_JF_B_FW_PRE __stringify(api) ".ucode"
67 #define IWL_SO_A_HR_B_MODULE_FIRMWARE(api) \
68 	IWL_SO_A_HR_B_FW_PRE __stringify(api) ".ucode"
69 #define IWL_SO_A_GF_A_MODULE_FIRMWARE(api) \
70 	IWL_SO_A_GF_A_FW_PRE __stringify(api) ".ucode"
71 #define IWL_TY_A_GF_A_MODULE_FIRMWARE(api) \
72 	IWL_TY_A_GF_A_FW_PRE __stringify(api) ".ucode"
73 #define IWL_SNJ_A_GF4_A_MODULE_FIRMWARE(api) \
74 	IWL_SNJ_A_GF4_A_FW_PRE __stringify(api) ".ucode"
75 #define IWL_SNJ_A_GF_A_MODULE_FIRMWARE(api) \
76 	IWL_SNJ_A_GF_A_FW_PRE __stringify(api) ".ucode"
77 #define IWL_SNJ_A_HR_B_MODULE_FIRMWARE(api) \
78 	IWL_SNJ_A_HR_B_FW_PRE __stringify(api) ".ucode"
79 #define IWL_MA_A_GF_A_FW_MODULE_FIRMWARE(api) \
80 	IWL_MA_A_GF_A_FW_PRE __stringify(api) ".ucode"
81 #define IWL_MA_A_MR_A_FW_MODULE_FIRMWARE(api) \
82 	IWL_MA_A_MR_A_FW_PRE __stringify(api) ".ucode"
83 #define IWL_SNJ_A_MR_A_MODULE_FIRMWARE(api) \
84 	IWL_SNJ_A_MR_A_FW_PRE __stringify(api) ".ucode"
85 
86 static const struct iwl_base_params iwl_22000_base_params = {
87 	.eeprom_size = OTP_LOW_IMAGE_SIZE_32K,
88 	.num_of_queues = 512,
89 	.max_tfd_queue_size = 256,
90 	.shadow_ram_support = true,
91 	.led_compensation = 57,
92 	.wd_timeout = IWL_LONG_WD_TIMEOUT,
93 	.max_event_log_size = 512,
94 	.shadow_reg_enable = true,
95 	.pcie_l1_allowed = true,
96 };
97 
98 static const struct iwl_base_params iwl_ax210_base_params = {
99 	.eeprom_size = OTP_LOW_IMAGE_SIZE_32K,
100 	.num_of_queues = 512,
101 	.max_tfd_queue_size = 65536,
102 	.shadow_ram_support = true,
103 	.led_compensation = 57,
104 	.wd_timeout = IWL_LONG_WD_TIMEOUT,
105 	.max_event_log_size = 512,
106 	.shadow_reg_enable = true,
107 	.pcie_l1_allowed = true,
108 };
109 
110 static const struct iwl_ht_params iwl_22000_ht_params = {
111 	.stbc = true,
112 	.ldpc = true,
113 	.ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ) |
114 		      BIT(NL80211_BAND_6GHZ),
115 };
116 
117 #define IWL_DEVICE_22000_COMMON						\
118 	.ucode_api_max = IWL_22000_UCODE_API_MAX,			\
119 	.ucode_api_min = IWL_22000_UCODE_API_MIN,			\
120 	.led_mode = IWL_LED_RF_STATE,					\
121 	.nvm_hw_section_num = 10,					\
122 	.non_shared_ant = ANT_B,					\
123 	.dccm_offset = IWL_22000_DCCM_OFFSET,				\
124 	.dccm_len = IWL_22000_DCCM_LEN,					\
125 	.dccm2_offset = IWL_22000_DCCM2_OFFSET,				\
126 	.dccm2_len = IWL_22000_DCCM2_LEN,				\
127 	.smem_offset = IWL_22000_SMEM_OFFSET,				\
128 	.smem_len = IWL_22000_SMEM_LEN,					\
129 	.features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM,		\
130 	.apmg_not_supported = true,					\
131 	.trans.mq_rx_supported = true,					\
132 	.vht_mu_mimo_supported = true,					\
133 	.mac_addr_from_csr = true,					\
134 	.ht_params = &iwl_22000_ht_params,				\
135 	.nvm_ver = IWL_22000_NVM_VERSION,				\
136 	.max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K,		\
137 	.trans.use_tfh = true,						\
138 	.trans.rf_id = true,						\
139 	.trans.gen2 = true,						\
140 	.nvm_type = IWL_NVM_EXT,					\
141 	.dbgc_supported = true,						\
142 	.min_umac_error_event_table = 0x400000,				\
143 	.d3_debug_data_base_addr = 0x401000,				\
144 	.d3_debug_data_length = 60 * 1024,				\
145 	.mon_smem_regs = {						\
146 		.write_ptr = {						\
147 			.addr = LDBG_M2S_BUF_WPTR,			\
148 			.mask = LDBG_M2S_BUF_WPTR_VAL_MSK,		\
149 	},								\
150 		.cycle_cnt = {						\
151 			.addr = LDBG_M2S_BUF_WRAP_CNT,			\
152 			.mask = LDBG_M2S_BUF_WRAP_CNT_VAL_MSK,		\
153 		},							\
154 	}
155 
156 #define IWL_DEVICE_22500						\
157 	IWL_DEVICE_22000_COMMON,					\
158 	.trans.device_family = IWL_DEVICE_FAMILY_22000,			\
159 	.trans.base_params = &iwl_22000_base_params,			\
160 	.gp2_reg_addr = 0xa02c68,					\
161 	.mon_dram_regs = {						\
162 		.write_ptr = {						\
163 			.addr = MON_BUFF_WRPTR_VER2,			\
164 			.mask = 0xffffffff,				\
165 		},							\
166 		.cycle_cnt = {						\
167 			.addr = MON_BUFF_CYCLE_CNT_VER2,		\
168 			.mask = 0xffffffff,				\
169 		},							\
170 	}
171 
172 #define IWL_DEVICE_AX210						\
173 	IWL_DEVICE_22000_COMMON,					\
174 	.trans.umac_prph_offset = 0x300000,				\
175 	.trans.device_family = IWL_DEVICE_FAMILY_AX210,			\
176 	.trans.base_params = &iwl_ax210_base_params,			\
177 	.min_txq_size = 128,						\
178 	.gp2_reg_addr = 0xd02c68,					\
179 	.min_256_ba_txq_size = 1024,					\
180 	.mon_dram_regs = {						\
181 		.write_ptr = {						\
182 			.addr = DBGC_CUR_DBGBUF_STATUS,			\
183 			.mask = DBGC_CUR_DBGBUF_STATUS_OFFSET_MSK,	\
184 		},							\
185 		.cycle_cnt = {						\
186 			.addr = DBGC_DBGBUF_WRAP_AROUND,		\
187 			.mask = 0xffffffff,				\
188 		},							\
189 		.cur_frag = {						\
190 			.addr = DBGC_CUR_DBGBUF_STATUS,			\
191 			.mask = DBGC_CUR_DBGBUF_STATUS_IDX_MSK,		\
192 		},							\
193 	}
194 
195 const struct iwl_cfg_trans_params iwl_qnj_trans_cfg = {
196 	.mq_rx_supported = true,
197 	.use_tfh = true,
198 	.rf_id = true,
199 	.gen2 = true,
200 	.device_family = IWL_DEVICE_FAMILY_22000,
201 	.base_params = &iwl_22000_base_params,
202 };
203 
204 const struct iwl_cfg_trans_params iwl_qu_trans_cfg = {
205 	.mq_rx_supported = true,
206 	.use_tfh = true,
207 	.rf_id = true,
208 	.gen2 = true,
209 	.device_family = IWL_DEVICE_FAMILY_22000,
210 	.base_params = &iwl_22000_base_params,
211 	.integrated = true,
212 	.xtal_latency = 500,
213 	.ltr_delay = IWL_CFG_TRANS_LTR_DELAY_200US,
214 };
215 
216 const struct iwl_cfg_trans_params iwl_qu_medium_latency_trans_cfg = {
217 	.mq_rx_supported = true,
218 	.use_tfh = true,
219 	.rf_id = true,
220 	.gen2 = true,
221 	.device_family = IWL_DEVICE_FAMILY_22000,
222 	.base_params = &iwl_22000_base_params,
223 	.integrated = true,
224 	.xtal_latency = 1820,
225 	.ltr_delay = IWL_CFG_TRANS_LTR_DELAY_1820US,
226 };
227 
228 const struct iwl_cfg_trans_params iwl_qu_long_latency_trans_cfg = {
229 	.mq_rx_supported = true,
230 	.use_tfh = true,
231 	.rf_id = true,
232 	.gen2 = true,
233 	.device_family = IWL_DEVICE_FAMILY_22000,
234 	.base_params = &iwl_22000_base_params,
235 	.integrated = true,
236 	.xtal_latency = 12000,
237 	.low_latency_xtal = true,
238 	.ltr_delay = IWL_CFG_TRANS_LTR_DELAY_2500US,
239 };
240 
241 const struct iwl_cfg_trans_params iwl_snj_trans_cfg = {
242 	.mq_rx_supported = true,
243 	.use_tfh = true,
244 	.rf_id = true,
245 	.gen2 = true,
246 	.device_family = IWL_DEVICE_FAMILY_AX210,
247 	.base_params = &iwl_ax210_base_params,
248 	.umac_prph_offset = 0x300000,
249 };
250 
251 const struct iwl_cfg_trans_params iwl_so_trans_cfg = {
252 	.mq_rx_supported = true,
253 	.use_tfh = true,
254 	.rf_id = true,
255 	.gen2 = true,
256 	.device_family = IWL_DEVICE_FAMILY_AX210,
257 	.base_params = &iwl_ax210_base_params,
258 	.umac_prph_offset = 0x300000,
259 	.integrated = true,
260 	/* TODO: the following values need to be checked */
261 	.xtal_latency = 500,
262 	.ltr_delay = IWL_CFG_TRANS_LTR_DELAY_200US,
263 };
264 
265 const struct iwl_cfg_trans_params iwl_so_long_latency_trans_cfg = {
266 	.mq_rx_supported = true,
267 	.use_tfh = true,
268 	.rf_id = true,
269 	.gen2 = true,
270 	.device_family = IWL_DEVICE_FAMILY_AX210,
271 	.base_params = &iwl_ax210_base_params,
272 	.umac_prph_offset = 0x300000,
273 	.integrated = true,
274 	/* TODO: the following values need to be checked */
275 	.xtal_latency = 12000,
276 	.ltr_delay = IWL_CFG_TRANS_LTR_DELAY_2500US,
277 };
278 
279 /*
280  * If the device doesn't support HE, no need to have that many buffers.
281  * 22000 devices can split multiple frames into a single RB, so fewer are
282  * needed; AX210 cannot (but use smaller RBs by default) - these sizes
283  * were picked according to 8 MSDUs inside 256 A-MSDUs in an A-MPDU, with
284  * additional overhead to account for processing time.
285  */
286 #define IWL_NUM_RBDS_NON_HE		512
287 #define IWL_NUM_RBDS_22000_HE		2048
288 #define IWL_NUM_RBDS_AX210_HE		4096
289 
290 /*
291  * All JF radio modules are part of the 9000 series, but the MAC part
292  * looks more like 22000.  That's why this device is here, but called
293  * 9560 nevertheless.
294  */
295 const struct iwl_cfg iwl9560_qu_b0_jf_b0_cfg = {
296 	.fw_name_pre = IWL_QU_B_JF_B_FW_PRE,
297 	IWL_DEVICE_22500,
298 	.num_rbds = IWL_NUM_RBDS_NON_HE,
299 };
300 
301 const struct iwl_cfg iwl9560_qu_c0_jf_b0_cfg = {
302 	.fw_name_pre = IWL_QU_C_JF_B_FW_PRE,
303 	IWL_DEVICE_22500,
304 	.num_rbds = IWL_NUM_RBDS_NON_HE,
305 };
306 
307 const struct iwl_cfg iwl9560_quz_a0_jf_b0_cfg = {
308 	.fw_name_pre = IWL_QUZ_A_JF_B_FW_PRE,
309 	IWL_DEVICE_22500,
310 	/*
311 	 * This device doesn't support receiving BlockAck with a large bitmap
312 	 * so we need to restrict the size of transmitted aggregation to the
313 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
314 	 */
315 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
316 	.num_rbds = IWL_NUM_RBDS_NON_HE,
317 };
318 
319 const struct iwl_cfg iwl9560_qnj_b0_jf_b0_cfg = {
320 	.fw_name_pre = IWL_QNJ_B_JF_B_FW_PRE,
321 	IWL_DEVICE_22500,
322 	/*
323 	 * This device doesn't support receiving BlockAck with a large bitmap
324 	 * so we need to restrict the size of transmitted aggregation to the
325 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
326 	 */
327 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
328 	.num_rbds = IWL_NUM_RBDS_NON_HE,
329 };
330 
331 const struct iwl_cfg_trans_params iwl_ax200_trans_cfg = {
332 	.device_family = IWL_DEVICE_FAMILY_22000,
333 	.base_params = &iwl_22000_base_params,
334 	.mq_rx_supported = true,
335 	.use_tfh = true,
336 	.rf_id = true,
337 	.gen2 = true,
338 	.bisr_workaround = 1,
339 };
340 
341 const struct iwl_cfg_trans_params iwl_ma_trans_cfg = {
342 	.device_family = IWL_DEVICE_FAMILY_AX210,
343 	.base_params = &iwl_ax210_base_params,
344 	.mq_rx_supported = true,
345 	.use_tfh = true,
346 	.rf_id = true,
347 	.gen2 = true,
348 	.integrated = true,
349 	.umac_prph_offset = 0x300000
350 };
351 
352 const char iwl_ax101_name[] = "Intel(R) Wi-Fi 6 AX101";
353 const char iwl_ax200_name[] = "Intel(R) Wi-Fi 6 AX200 160MHz";
354 const char iwl_ax201_name[] = "Intel(R) Wi-Fi 6 AX201 160MHz";
355 const char iwl_ax211_name[] = "Intel(R) Wi-Fi 6 AX211 160MHz";
356 const char iwl_ax411_name[] = "Intel(R) Wi-Fi 6 AX411 160MHz";
357 const char iwl_ma_name[] = "Intel(R) Wi-Fi 6";
358 
359 const char iwl_ax200_killer_1650w_name[] =
360 	"Killer(R) Wi-Fi 6 AX1650w 160MHz Wireless Network Adapter (200D2W)";
361 const char iwl_ax200_killer_1650x_name[] =
362 	"Killer(R) Wi-Fi 6 AX1650x 160MHz Wireless Network Adapter (200NGW)";
363 const char iwl_ax201_killer_1650s_name[] =
364 	"Killer(R) Wi-Fi 6 AX1650s 160MHz Wireless Network Adapter (201D2W)";
365 const char iwl_ax201_killer_1650i_name[] =
366 	"Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW)";
367 
368 const struct iwl_cfg iwl_qu_b0_hr1_b0 = {
369 	.fw_name_pre = IWL_QU_B_HR_B_FW_PRE,
370 	IWL_DEVICE_22500,
371 	/*
372 	 * This device doesn't support receiving BlockAck with a large bitmap
373 	 * so we need to restrict the size of transmitted aggregation to the
374 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
375 	 */
376 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
377 	.tx_with_siso_diversity = true,
378 	.num_rbds = IWL_NUM_RBDS_22000_HE,
379 };
380 
381 const struct iwl_cfg iwl_ax201_cfg_qu_hr = {
382 	.name = "Intel(R) Wi-Fi 6 AX201 160MHz",
383 	.fw_name_pre = IWL_QU_B_HR_B_FW_PRE,
384 	IWL_DEVICE_22500,
385 	/*
386 	 * This device doesn't support receiving BlockAck with a large bitmap
387 	 * so we need to restrict the size of transmitted aggregation to the
388 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
389 	 */
390 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
391 	.num_rbds = IWL_NUM_RBDS_22000_HE,
392 };
393 
394 const struct iwl_cfg iwl_qu_c0_hr1_b0 = {
395 	.fw_name_pre = IWL_QU_C_HR_B_FW_PRE,
396 	IWL_DEVICE_22500,
397 	/*
398 	 * This device doesn't support receiving BlockAck with a large bitmap
399 	 * so we need to restrict the size of transmitted aggregation to the
400 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
401 	 */
402 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
403 	.tx_with_siso_diversity = true,
404 	.num_rbds = IWL_NUM_RBDS_22000_HE,
405 };
406 
407 const struct iwl_cfg iwl_ax201_cfg_qu_c0_hr_b0 = {
408 	.name = "Intel(R) Wi-Fi 6 AX201 160MHz",
409 	.fw_name_pre = IWL_QU_C_HR_B_FW_PRE,
410 	IWL_DEVICE_22500,
411 	/*
412 	 * This device doesn't support receiving BlockAck with a large bitmap
413 	 * so we need to restrict the size of transmitted aggregation to the
414 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
415 	 */
416 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
417 	.num_rbds = IWL_NUM_RBDS_22000_HE,
418 };
419 
420 const struct iwl_cfg iwl_quz_a0_hr1_b0 = {
421 	.fw_name_pre = IWL_QUZ_A_HR_B_FW_PRE,
422 	IWL_DEVICE_22500,
423 	/*
424 	 * This device doesn't support receiving BlockAck with a large bitmap
425 	 * so we need to restrict the size of transmitted aggregation to the
426 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
427 	 */
428 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
429 	.tx_with_siso_diversity = true,
430 	.num_rbds = IWL_NUM_RBDS_22000_HE,
431 };
432 
433 const struct iwl_cfg iwl_ax201_cfg_quz_hr = {
434 	.name = "Intel(R) Wi-Fi 6 AX201 160MHz",
435 	.fw_name_pre = IWL_QUZ_A_HR_B_FW_PRE,
436 	IWL_DEVICE_22500,
437 	/*
438          * This device doesn't support receiving BlockAck with a large bitmap
439          * so we need to restrict the size of transmitted aggregation to the
440          * HT size; mac80211 would otherwise pick the HE max (256) by default.
441          */
442 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
443 	.num_rbds = IWL_NUM_RBDS_22000_HE,
444 };
445 
446 const struct iwl_cfg iwl_ax1650s_cfg_quz_hr = {
447 	.name = "Killer(R) Wi-Fi 6 AX1650s 160MHz Wireless Network Adapter (201D2W)",
448 	.fw_name_pre = IWL_QUZ_A_HR_B_FW_PRE,
449 	IWL_DEVICE_22500,
450 	/*
451          * This device doesn't support receiving BlockAck with a large bitmap
452          * so we need to restrict the size of transmitted aggregation to the
453          * HT size; mac80211 would otherwise pick the HE max (256) by default.
454          */
455 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
456 	.num_rbds = IWL_NUM_RBDS_22000_HE,
457 };
458 
459 const struct iwl_cfg iwl_ax1650i_cfg_quz_hr = {
460 	.name = "Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW)",
461 	.fw_name_pre = IWL_QUZ_A_HR_B_FW_PRE,
462 	IWL_DEVICE_22500,
463 	/*
464          * This device doesn't support receiving BlockAck with a large bitmap
465          * so we need to restrict the size of transmitted aggregation to the
466          * HT size; mac80211 would otherwise pick the HE max (256) by default.
467          */
468 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
469 	.num_rbds = IWL_NUM_RBDS_22000_HE,
470 };
471 
472 const struct iwl_cfg iwl_ax200_cfg_cc = {
473 	.fw_name_pre = IWL_CC_A_FW_PRE,
474 	IWL_DEVICE_22500,
475 	/*
476 	 * This device doesn't support receiving BlockAck with a large bitmap
477 	 * so we need to restrict the size of transmitted aggregation to the
478 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
479 	 */
480 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
481 	.num_rbds = IWL_NUM_RBDS_22000_HE,
482 };
483 
484 const struct iwl_cfg killer1650s_2ax_cfg_qu_b0_hr_b0 = {
485 	.name = "Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW)",
486 	.fw_name_pre = IWL_QU_B_HR_B_FW_PRE,
487 	IWL_DEVICE_22500,
488 	/*
489 	 * This device doesn't support receiving BlockAck with a large bitmap
490 	 * so we need to restrict the size of transmitted aggregation to the
491 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
492 	 */
493 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
494 	.num_rbds = IWL_NUM_RBDS_22000_HE,
495 };
496 
497 const struct iwl_cfg killer1650i_2ax_cfg_qu_b0_hr_b0 = {
498 	.name = "Killer(R) Wi-Fi 6 AX1650s 160MHz Wireless Network Adapter (201D2W)",
499 	.fw_name_pre = IWL_QU_B_HR_B_FW_PRE,
500 	IWL_DEVICE_22500,
501 	/*
502 	 * This device doesn't support receiving BlockAck with a large bitmap
503 	 * so we need to restrict the size of transmitted aggregation to the
504 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
505 	 */
506 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
507 	.num_rbds = IWL_NUM_RBDS_22000_HE,
508 };
509 
510 const struct iwl_cfg killer1650s_2ax_cfg_qu_c0_hr_b0 = {
511 	.name = "Killer(R) Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW)",
512 	.fw_name_pre = IWL_QU_C_HR_B_FW_PRE,
513 	IWL_DEVICE_22500,
514 	/*
515 	 * This device doesn't support receiving BlockAck with a large bitmap
516 	 * so we need to restrict the size of transmitted aggregation to the
517 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
518 	 */
519 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
520 	.num_rbds = IWL_NUM_RBDS_22000_HE,
521 };
522 
523 const struct iwl_cfg killer1650i_2ax_cfg_qu_c0_hr_b0 = {
524 	.name = "Killer(R) Wi-Fi 6 AX1650s 160MHz Wireless Network Adapter (201D2W)",
525 	.fw_name_pre = IWL_QU_C_HR_B_FW_PRE,
526 	IWL_DEVICE_22500,
527 	/*
528 	 * This device doesn't support receiving BlockAck with a large bitmap
529 	 * so we need to restrict the size of transmitted aggregation to the
530 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
531 	 */
532 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
533 	.num_rbds = IWL_NUM_RBDS_22000_HE,
534 };
535 
536 const struct iwl_cfg iwl_qnj_b0_hr_b0_cfg = {
537 	.fw_name_pre = IWL_QNJ_B_HR_B_FW_PRE,
538 	IWL_DEVICE_22500,
539 	/*
540 	 * This device doesn't support receiving BlockAck with a large bitmap
541 	 * so we need to restrict the size of transmitted aggregation to the
542 	 * HT size; mac80211 would otherwise pick the HE max (256) by default.
543 	 */
544 	.max_tx_agg_size = IEEE80211_MAX_AMPDU_BUF_HT,
545 	.num_rbds = IWL_NUM_RBDS_22000_HE,
546 };
547 
548 const struct iwl_cfg iwlax210_2ax_cfg_so_jf_a0 = {
549 	.name = "Intel(R) Wireless-AC 9560 160MHz",
550 	.fw_name_pre = IWL_SO_A_JF_B_FW_PRE,
551 	IWL_DEVICE_AX210,
552 	.num_rbds = IWL_NUM_RBDS_NON_HE,
553 };
554 
555 const struct iwl_cfg iwlax210_2ax_cfg_so_hr_a0 = {
556 	.name = "Intel(R) Wi-Fi 6 AX210 160MHz",
557 	.fw_name_pre = IWL_SO_A_HR_B_FW_PRE,
558 	IWL_DEVICE_AX210,
559 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
560 };
561 
562 const struct iwl_cfg iwlax211_2ax_cfg_so_gf_a0 = {
563 	.name = iwl_ax211_name,
564 	.fw_name_pre = IWL_SO_A_GF_A_FW_PRE,
565 	.uhb_supported = true,
566 	IWL_DEVICE_AX210,
567 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
568 };
569 
570 const struct iwl_cfg iwlax211_2ax_cfg_so_gf_a0_long = {
571 	.name = iwl_ax211_name,
572 	.fw_name_pre = IWL_SO_A_GF_A_FW_PRE,
573 	.uhb_supported = true,
574 	IWL_DEVICE_AX210,
575 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
576 	.trans.xtal_latency = 12000,
577 	.trans.low_latency_xtal = true,
578 };
579 
580 const struct iwl_cfg iwlax210_2ax_cfg_ty_gf_a0 = {
581 	.name = "Intel(R) Wi-Fi 6 AX210 160MHz",
582 	.fw_name_pre = IWL_TY_A_GF_A_FW_PRE,
583 	.uhb_supported = true,
584 	IWL_DEVICE_AX210,
585 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
586 };
587 
588 const struct iwl_cfg iwlax411_2ax_cfg_so_gf4_a0 = {
589 	.name = iwl_ax411_name,
590 	.fw_name_pre = IWL_SO_A_GF4_A_FW_PRE,
591 	.uhb_supported = true,
592 	IWL_DEVICE_AX210,
593 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
594 };
595 
596 const struct iwl_cfg iwlax411_2ax_cfg_so_gf4_a0_long = {
597 	.name = iwl_ax411_name,
598 	.fw_name_pre = IWL_SO_A_GF4_A_FW_PRE,
599 	.uhb_supported = true,
600 	IWL_DEVICE_AX210,
601 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
602 	.trans.xtal_latency = 12000,
603 	.trans.low_latency_xtal = true,
604 };
605 
606 const struct iwl_cfg iwlax411_2ax_cfg_sosnj_gf4_a0 = {
607 	.name = iwl_ax411_name,
608 	.fw_name_pre = IWL_SNJ_A_GF4_A_FW_PRE,
609 	.uhb_supported = true,
610 	IWL_DEVICE_AX210,
611 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
612 };
613 
614 const struct iwl_cfg iwlax211_cfg_snj_gf_a0 = {
615 	.name = iwl_ax211_name,
616 	.fw_name_pre = IWL_SNJ_A_GF_A_FW_PRE,
617 	.uhb_supported = true,
618 	IWL_DEVICE_AX210,
619 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
620 };
621 
622 const struct iwl_cfg iwlax201_cfg_snj_hr_b0 = {
623 	.name = iwl_ax201_name,
624 	.fw_name_pre = IWL_QU_B_HR_B_FW_PRE,
625 	.uhb_supported = true,
626 	IWL_DEVICE_AX210,
627 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
628 };
629 
630 const struct iwl_cfg iwl_cfg_ma_a0_gf_a0 = {
631 	.fw_name_pre = IWL_MA_A_GF_A_FW_PRE,
632 	.uhb_supported = true,
633 	IWL_DEVICE_AX210,
634 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
635 };
636 
637 const struct iwl_cfg iwl_cfg_ma_a0_mr_a0 = {
638 	.fw_name_pre = IWL_MA_A_MR_A_FW_PRE,
639 	.uhb_supported = true,
640 	IWL_DEVICE_AX210,
641 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
642 };
643 
644 const struct iwl_cfg iwl_cfg_snj_a0_mr_a0 = {
645 	.fw_name_pre = IWL_SNJ_A_MR_A_FW_PRE,
646 	.uhb_supported = true,
647 	IWL_DEVICE_AX210,
648 	.num_rbds = IWL_NUM_RBDS_AX210_HE,
649 };
650 
651 MODULE_FIRMWARE(IWL_QU_B_HR_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
652 MODULE_FIRMWARE(IWL_QNJ_B_HR_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
653 MODULE_FIRMWARE(IWL_QU_C_HR_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
654 MODULE_FIRMWARE(IWL_QU_B_JF_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
655 MODULE_FIRMWARE(IWL_QUZ_A_HR_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
656 MODULE_FIRMWARE(IWL_QUZ_A_JF_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
657 MODULE_FIRMWARE(IWL_QNJ_B_JF_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
658 MODULE_FIRMWARE(IWL_CC_A_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
659 MODULE_FIRMWARE(IWL_SO_A_JF_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
660 MODULE_FIRMWARE(IWL_SO_A_HR_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
661 MODULE_FIRMWARE(IWL_SO_A_GF_A_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
662 MODULE_FIRMWARE(IWL_TY_A_GF_A_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
663 MODULE_FIRMWARE(IWL_SNJ_A_GF4_A_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
664 MODULE_FIRMWARE(IWL_SNJ_A_GF_A_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
665 MODULE_FIRMWARE(IWL_SNJ_A_HR_B_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
666 MODULE_FIRMWARE(IWL_MA_A_GF_A_FW_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
667 MODULE_FIRMWARE(IWL_MA_A_MR_A_FW_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
668 MODULE_FIRMWARE(IWL_SNJ_A_MR_A_MODULE_FIRMWARE(IWL_22000_UCODE_API_MAX));
669