1 /******************************************************************************
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.
8 * Copyright(c) 2015-2017 Intel Deutschland GmbH
9 * Copyright (C) 2018 - 2019 Intel Corporation
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.
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.
22 * Copyright(c) 2015-2017 Intel Deutschland GmbH
23 * Copyright (C) 2018 - 2019 Intel Corporation
24 * All rights reserved.
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
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
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.
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.
52 *****************************************************************************/
54 #include <linux/module.h>
55 #include <linux/stringify.h>
56 #include "iwl-config.h"
60 /* Highest firmware API version supported */
61 #define IWL9000_UCODE_API_MAX 46
63 /* Lowest firmware API version supported */
64 #define IWL9000_UCODE_API_MIN 30
67 #define IWL9000_NVM_VERSION 0x0a1d
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
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"
84 static const struct iwl_base_params iwl9000_base_params
= {
85 .eeprom_size
= OTP_LOW_IMAGE_SIZE_32K
,
87 .max_tfd_queue_size
= 256,
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,
96 static const struct iwl_ht_params iwl9000_ht_params
= {
99 .ht40_bands
= BIT(NL80211_BAND_2GHZ
) | BIT(NL80211_BAND_5GHZ
),
102 static const struct iwl_tt_params iwl9000_tt_params
= {
103 .ct_kill_entry
= 115,
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,
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},
117 .support_ct_kill
= true,
118 .support_dynamic_smps
= true,
119 .support_tx_protection
= true,
120 .support_tx_backoff
= true,
123 #define IWL_DEVICE_9000 \
124 .ucode_api_max = IWL9000_UCODE_API_MAX, \
125 .ucode_api_min = IWL9000_UCODE_API_MIN, \
126 .trans.device_family = IWL_DEVICE_FAMILY_9000, \
127 .trans.base_params = &iwl9000_base_params, \
128 .led_mode = IWL_LED_RF_STATE, \
129 .nvm_hw_section_num = 10, \
130 .non_shared_ant = ANT_B, \
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, \
137 .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \
138 .thermal_params = &iwl9000_tt_params, \
139 .apmg_not_supported = true, \
140 .trans.mq_rx_supported = true, \
142 .vht_mu_mimo_supported = true, \
143 .mac_addr_from_csr = true, \
144 .trans.rf_id = true, \
145 .nvm_type = IWL_NVM_EXT, \
146 .dbgc_supported = true, \
147 .min_umac_error_event_table = 0x800000, \
148 .d3_debug_data_base_addr = 0x401000, \
149 .d3_debug_data_length = 92 * 1024, \
150 .ht_params = &iwl9000_ht_params, \
151 .nvm_ver = IWL9000_NVM_VERSION, \
152 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, \
155 .addr = LDBG_M2S_BUF_WPTR, \
156 .mask = LDBG_M2S_BUF_WPTR_VAL_MSK, \
159 .addr = LDBG_M2S_BUF_WRAP_CNT, \
160 .mask = LDBG_M2S_BUF_WRAP_CNT_VAL_MSK, \
165 .addr = MON_BUFF_WRPTR_VER2, \
166 .mask = 0xffffffff, \
169 .addr = MON_BUFF_CYCLE_CNT_VER2, \
170 .mask = 0xffffffff, \
174 const struct iwl_cfg_trans_params iwl9000_trans_cfg
= {
175 .device_family
= IWL_DEVICE_FAMILY_9000
,
176 .base_params
= &iwl9000_base_params
,
177 .mq_rx_supported
= true,
181 const struct iwl_cfg iwl9160_2ac_cfg
= {
182 .name
= "Intel(R) Dual Band Wireless AC 9160",
183 .fw_name_pre
= IWL9260_FW_PRE
,
187 const struct iwl_cfg iwl9260_2ac_cfg
= {
188 .name
= "Intel(R) Dual Band Wireless AC 9260",
189 .fw_name_pre
= IWL9260_FW_PRE
,
193 const char iwl9260_160_name
[] = "Intel(R) Wireless-AC 9260 160MHz";
194 const char iwl9560_160_name
[] = "Intel(R) Wireless-AC 9560 160MHz";
196 const struct iwl_cfg iwl9260_2ac_160_cfg
= {
197 .fw_name_pre
= IWL9260_FW_PRE
,
201 const struct iwl_cfg iwl9260_killer_2ac_cfg
= {
202 .name
= "Killer (R) Wireless-AC 1550 Wireless Network Adapter (9260NGW)",
203 .fw_name_pre
= IWL9260_FW_PRE
,
207 const struct iwl_cfg iwl9270_2ac_cfg
= {
208 .name
= "Intel(R) Dual Band Wireless AC 9270",
209 .fw_name_pre
= IWL9260_FW_PRE
,
213 const struct iwl_cfg iwl9460_2ac_cfg
= {
214 .name
= "Intel(R) Dual Band Wireless AC 9460",
215 .fw_name_pre
= IWL9260_FW_PRE
,
219 const struct iwl_cfg iwl9460_2ac_cfg_soc
= {
220 .name
= "Intel(R) Dual Band Wireless AC 9460",
221 .fw_name_pre
= IWL9000_FW_PRE
,
227 const struct iwl_cfg iwl9461_2ac_cfg_soc
= {
228 .name
= "Intel(R) Dual Band Wireless AC 9461",
229 .fw_name_pre
= IWL9000_FW_PRE
,
235 const struct iwl_cfg iwl9462_2ac_cfg_soc
= {
236 .name
= "Intel(R) Dual Band Wireless AC 9462",
237 .fw_name_pre
= IWL9000_FW_PRE
,
243 const struct iwl_cfg iwl9560_2ac_cfg
= {
244 .name
= "Intel(R) Dual Band Wireless AC 9560",
245 .fw_name_pre
= IWL9260_FW_PRE
,
249 const struct iwl_cfg iwl9560_2ac_160_cfg
= {
250 .name
= "Intel(R) Wireless-AC 9560 160MHz",
251 .fw_name_pre
= IWL9260_FW_PRE
,
255 const struct iwl_cfg iwl9560_2ac_cfg_soc
= {
256 .name
= "Intel(R) Dual Band Wireless AC 9560",
257 .fw_name_pre
= IWL9000_FW_PRE
,
263 const struct iwl_cfg iwl9560_2ac_160_cfg_soc
= {
264 .name
= "Intel(R) Wireless-AC 9560 160MHz",
265 .fw_name_pre
= IWL9000_FW_PRE
,
271 const struct iwl_cfg iwl9560_killer_2ac_cfg_soc
= {
272 .name
= "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)",
273 .fw_name_pre
= IWL9000_FW_PRE
,
279 const struct iwl_cfg iwl9560_killer_s_2ac_cfg_soc
= {
280 .name
= "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)",
281 .fw_name_pre
= IWL9000_FW_PRE
,
287 const struct iwl_cfg iwl9460_2ac_cfg_shared_clk
= {
288 .name
= "Intel(R) Dual Band Wireless AC 9460",
289 .fw_name_pre
= IWL9000_FW_PRE
,
293 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
296 const struct iwl_cfg iwl9461_2ac_cfg_shared_clk
= {
297 .name
= "Intel(R) Dual Band Wireless AC 9461",
298 .fw_name_pre
= IWL9000_FW_PRE
,
302 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
305 const struct iwl_cfg iwl9462_2ac_cfg_shared_clk
= {
306 .name
= "Intel(R) Dual Band Wireless AC 9462",
307 .fw_name_pre
= IWL9000_FW_PRE
,
311 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
314 const struct iwl_cfg iwl9560_2ac_cfg_shared_clk
= {
315 .name
= "Intel(R) Dual Band Wireless AC 9560",
316 .fw_name_pre
= IWL9000_FW_PRE
,
320 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
323 const struct iwl_cfg iwl9560_2ac_160_cfg_shared_clk
= {
324 .name
= "Intel(R) Wireless-AC 9560 160MHz",
325 .fw_name_pre
= IWL9000_FW_PRE
,
329 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
332 const struct iwl_cfg iwl9560_killer_2ac_cfg_shared_clk
= {
333 .name
= "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)",
334 .fw_name_pre
= IWL9000_FW_PRE
,
338 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
341 const struct iwl_cfg iwl9560_killer_s_2ac_cfg_shared_clk
= {
342 .name
= "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)",
343 .fw_name_pre
= IWL9000_FW_PRE
,
347 .extra_phy_cfg_flags
= FW_PHY_CFG_SHARED_CLK
350 MODULE_FIRMWARE(IWL9000_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX
));
351 MODULE_FIRMWARE(IWL9260_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX
));