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 * 8 * Copyright(c) 2015-2017 Intel Deutschland GmbH 9 * Copyright (C) 2018 Intel Corporation 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 * 22 * Copyright(c) 2015-2017 Intel Deutschland GmbH 23 * Copyright (C) 2018 Intel Corporation 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" 57 #include "fw/file.h" 58 59 /* Highest firmware API version supported */ 60 #define IWL9000_UCODE_API_MAX 41 61 62 /* Lowest firmware API version supported */ 63 #define IWL9000_UCODE_API_MIN 30 64 65 /* NVM versions */ 66 #define IWL9000_NVM_VERSION 0x0a1d 67 #define IWL9000_TX_POWER_VERSION 0xffff /* meaningless */ 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 77 #define IWL9000A_FW_PRE "iwlwifi-9000-pu-a0-jf-a0-" 78 #define IWL9000B_FW_PRE "iwlwifi-9000-pu-b0-jf-b0-" 79 #define IWL9000RFB_FW_PRE "iwlwifi-9000-pu-a0-jf-b0-" 80 #define IWL9260A_FW_PRE "iwlwifi-9260-th-a0-jf-a0-" 81 #define IWL9260B_FW_PRE "iwlwifi-9260-th-b0-jf-b0-" 82 #define IWL9000A_MODULE_FIRMWARE(api) \ 83 IWL9000A_FW_PRE __stringify(api) ".ucode" 84 #define IWL9000B_MODULE_FIRMWARE(api) \ 85 IWL9000B_FW_PRE __stringify(api) ".ucode" 86 #define IWL9000RFB_MODULE_FIRMWARE(api) \ 87 IWL9000RFB_FW_PRE __stringify(api) ".ucode" 88 #define IWL9260A_MODULE_FIRMWARE(api) \ 89 IWL9260A_FW_PRE __stringify(api) ".ucode" 90 #define IWL9260B_MODULE_FIRMWARE(api) \ 91 IWL9260B_FW_PRE __stringify(api) ".ucode" 92 93 #define NVM_HW_SECTION_NUM_FAMILY_9000 10 94 95 static const struct iwl_base_params iwl9000_base_params = { 96 .eeprom_size = OTP_LOW_IMAGE_SIZE_FAMILY_9000, 97 .num_of_queues = 31, 98 .max_tfd_queue_size = 256, 99 .shadow_ram_support = true, 100 .led_compensation = 57, 101 .wd_timeout = IWL_LONG_WD_TIMEOUT, 102 .max_event_log_size = 512, 103 .shadow_reg_enable = true, 104 .pcie_l1_allowed = true, 105 }; 106 107 static const struct iwl_ht_params iwl9000_ht_params = { 108 .stbc = true, 109 .ldpc = true, 110 .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ), 111 }; 112 113 static const struct iwl_tt_params iwl9000_tt_params = { 114 .ct_kill_entry = 115, 115 .ct_kill_exit = 93, 116 .ct_kill_duration = 5, 117 .dynamic_smps_entry = 111, 118 .dynamic_smps_exit = 107, 119 .tx_protection_entry = 112, 120 .tx_protection_exit = 105, 121 .tx_backoff = { 122 {.temperature = 110, .backoff = 200}, 123 {.temperature = 111, .backoff = 600}, 124 {.temperature = 112, .backoff = 1200}, 125 {.temperature = 113, .backoff = 2000}, 126 {.temperature = 114, .backoff = 4000}, 127 }, 128 .support_ct_kill = true, 129 .support_dynamic_smps = true, 130 .support_tx_protection = true, 131 .support_tx_backoff = true, 132 }; 133 134 #define IWL_DEVICE_9000 \ 135 .ucode_api_max = IWL9000_UCODE_API_MAX, \ 136 .ucode_api_min = IWL9000_UCODE_API_MIN, \ 137 .device_family = IWL_DEVICE_FAMILY_9000, \ 138 .base_params = &iwl9000_base_params, \ 139 .led_mode = IWL_LED_RF_STATE, \ 140 .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_9000, \ 141 .non_shared_ant = ANT_B, \ 142 .dccm_offset = IWL9000_DCCM_OFFSET, \ 143 .dccm_len = IWL9000_DCCM_LEN, \ 144 .dccm2_offset = IWL9000_DCCM2_OFFSET, \ 145 .dccm2_len = IWL9000_DCCM2_LEN, \ 146 .smem_offset = IWL9000_SMEM_OFFSET, \ 147 .smem_len = IWL9000_SMEM_LEN, \ 148 .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \ 149 .thermal_params = &iwl9000_tt_params, \ 150 .apmg_not_supported = true, \ 151 .mq_rx_supported = true, \ 152 .vht_mu_mimo_supported = true, \ 153 .mac_addr_from_csr = true, \ 154 .rf_id = true, \ 155 .nvm_type = IWL_NVM_EXT, \ 156 .dbgc_supported = true, \ 157 .min_umac_error_event_table = 0x800000, \ 158 .csr = &iwl_csr_v1, \ 159 .d3_debug_data_base_addr = 0x401000, \ 160 .d3_debug_data_length = 92 * 1024 161 162 const struct iwl_cfg iwl9160_2ac_cfg = { 163 .name = "Intel(R) Dual Band Wireless AC 9160", 164 .fw_name_pre = IWL9260A_FW_PRE, 165 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 166 IWL_DEVICE_9000, 167 .ht_params = &iwl9000_ht_params, 168 .nvm_ver = IWL9000_NVM_VERSION, 169 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 170 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 171 }; 172 173 const struct iwl_cfg iwl9260_2ac_cfg = { 174 .name = "Intel(R) Dual Band Wireless AC 9260", 175 .fw_name_pre = IWL9260A_FW_PRE, 176 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 177 IWL_DEVICE_9000, 178 .ht_params = &iwl9000_ht_params, 179 .nvm_ver = IWL9000_NVM_VERSION, 180 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 181 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 182 }; 183 184 const struct iwl_cfg iwl9260_killer_2ac_cfg = { 185 .name = "Killer (R) Wireless-AC 1550 Wireless Network Adapter (9260NGW)", 186 .fw_name_pre = IWL9260A_FW_PRE, 187 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 188 IWL_DEVICE_9000, 189 .ht_params = &iwl9000_ht_params, 190 .nvm_ver = IWL9000_NVM_VERSION, 191 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 192 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 193 }; 194 195 const struct iwl_cfg iwl9270_2ac_cfg = { 196 .name = "Intel(R) Dual Band Wireless AC 9270", 197 .fw_name_pre = IWL9260A_FW_PRE, 198 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 199 IWL_DEVICE_9000, 200 .ht_params = &iwl9000_ht_params, 201 .nvm_ver = IWL9000_NVM_VERSION, 202 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 203 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 204 }; 205 206 const struct iwl_cfg iwl9460_2ac_cfg = { 207 .name = "Intel(R) Dual Band Wireless AC 9460", 208 .fw_name_pre = IWL9260A_FW_PRE, 209 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 210 IWL_DEVICE_9000, 211 .ht_params = &iwl9000_ht_params, 212 .nvm_ver = IWL9000_NVM_VERSION, 213 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 214 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 215 }; 216 217 const struct iwl_cfg iwl9460_2ac_cfg_soc = { 218 .name = "Intel(R) Dual Band Wireless AC 9460", 219 .fw_name_pre = IWL9000A_FW_PRE, 220 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 221 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 222 IWL_DEVICE_9000, 223 .ht_params = &iwl9000_ht_params, 224 .nvm_ver = IWL9000_NVM_VERSION, 225 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 226 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 227 .integrated = true, 228 .soc_latency = 5000, 229 }; 230 231 const struct iwl_cfg iwl9461_2ac_cfg_soc = { 232 .name = "Intel(R) Dual Band Wireless AC 9461", 233 .fw_name_pre = IWL9000A_FW_PRE, 234 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 235 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 236 IWL_DEVICE_9000, 237 .ht_params = &iwl9000_ht_params, 238 .nvm_ver = IWL9000_NVM_VERSION, 239 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 240 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 241 .integrated = true, 242 .soc_latency = 5000, 243 }; 244 245 const struct iwl_cfg iwl9462_2ac_cfg_soc = { 246 .name = "Intel(R) Dual Band Wireless AC 9462", 247 .fw_name_pre = IWL9000A_FW_PRE, 248 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 249 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 250 IWL_DEVICE_9000, 251 .ht_params = &iwl9000_ht_params, 252 .nvm_ver = IWL9000_NVM_VERSION, 253 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 254 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 255 .integrated = true, 256 .soc_latency = 5000, 257 }; 258 259 const struct iwl_cfg iwl9560_2ac_cfg = { 260 .name = "Intel(R) Dual Band Wireless AC 9560", 261 .fw_name_pre = IWL9260A_FW_PRE, 262 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 263 IWL_DEVICE_9000, 264 .ht_params = &iwl9000_ht_params, 265 .nvm_ver = IWL9000_NVM_VERSION, 266 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 267 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 268 }; 269 270 const struct iwl_cfg iwl9560_2ac_cfg_soc = { 271 .name = "Intel(R) Dual Band Wireless AC 9560", 272 .fw_name_pre = IWL9000A_FW_PRE, 273 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 274 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 275 IWL_DEVICE_9000, 276 .ht_params = &iwl9000_ht_params, 277 .nvm_ver = IWL9000_NVM_VERSION, 278 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 279 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 280 .integrated = true, 281 .soc_latency = 5000, 282 }; 283 284 const struct iwl_cfg iwl9560_killer_2ac_cfg_soc = { 285 .name = "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)", 286 .fw_name_pre = IWL9000A_FW_PRE, 287 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 288 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 289 IWL_DEVICE_9000, 290 .ht_params = &iwl9000_ht_params, 291 .nvm_ver = IWL9000_NVM_VERSION, 292 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 293 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 294 .integrated = true, 295 .soc_latency = 5000, 296 }; 297 298 const struct iwl_cfg iwl9560_killer_s_2ac_cfg_soc = { 299 .name = "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)", 300 .fw_name_pre = IWL9000A_FW_PRE, 301 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 302 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 303 IWL_DEVICE_9000, 304 .ht_params = &iwl9000_ht_params, 305 .nvm_ver = IWL9000_NVM_VERSION, 306 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 307 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 308 .integrated = true, 309 .soc_latency = 5000, 310 }; 311 312 const struct iwl_cfg iwl9460_2ac_cfg_shared_clk = { 313 .name = "Intel(R) Dual Band Wireless AC 9460", 314 .fw_name_pre = IWL9000A_FW_PRE, 315 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 316 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 317 IWL_DEVICE_9000, 318 .ht_params = &iwl9000_ht_params, 319 .nvm_ver = IWL9000_NVM_VERSION, 320 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 321 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 322 .integrated = true, 323 .soc_latency = 5000, 324 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 325 }; 326 327 const struct iwl_cfg iwl9461_2ac_cfg_shared_clk = { 328 .name = "Intel(R) Dual Band Wireless AC 9461", 329 .fw_name_pre = IWL9000A_FW_PRE, 330 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 331 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 332 IWL_DEVICE_9000, 333 .ht_params = &iwl9000_ht_params, 334 .nvm_ver = IWL9000_NVM_VERSION, 335 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 336 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 337 .integrated = true, 338 .soc_latency = 5000, 339 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 340 }; 341 342 const struct iwl_cfg iwl9462_2ac_cfg_shared_clk = { 343 .name = "Intel(R) Dual Band Wireless AC 9462", 344 .fw_name_pre = IWL9000A_FW_PRE, 345 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 346 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 347 IWL_DEVICE_9000, 348 .ht_params = &iwl9000_ht_params, 349 .nvm_ver = IWL9000_NVM_VERSION, 350 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 351 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 352 .integrated = true, 353 .soc_latency = 5000, 354 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 355 }; 356 357 const struct iwl_cfg iwl9560_2ac_cfg_shared_clk = { 358 .name = "Intel(R) Dual Band Wireless AC 9560", 359 .fw_name_pre = IWL9000A_FW_PRE, 360 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 361 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 362 IWL_DEVICE_9000, 363 .ht_params = &iwl9000_ht_params, 364 .nvm_ver = IWL9000_NVM_VERSION, 365 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 366 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 367 .integrated = true, 368 .soc_latency = 5000, 369 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 370 }; 371 372 const struct iwl_cfg iwl9560_killer_2ac_cfg_shared_clk = { 373 .name = "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)", 374 .fw_name_pre = IWL9000A_FW_PRE, 375 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 376 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 377 IWL_DEVICE_9000, 378 .ht_params = &iwl9000_ht_params, 379 .nvm_ver = IWL9000_NVM_VERSION, 380 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 381 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 382 .integrated = true, 383 .soc_latency = 5000, 384 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 385 }; 386 387 const struct iwl_cfg iwl9560_killer_s_2ac_cfg_shared_clk = { 388 .name = "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)", 389 .fw_name_pre = IWL9000A_FW_PRE, 390 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 391 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 392 IWL_DEVICE_9000, 393 .ht_params = &iwl9000_ht_params, 394 .nvm_ver = IWL9000_NVM_VERSION, 395 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 396 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 397 .integrated = true, 398 .soc_latency = 5000, 399 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 400 }; 401 402 MODULE_FIRMWARE(IWL9000A_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 403 MODULE_FIRMWARE(IWL9000B_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 404 MODULE_FIRMWARE(IWL9000RFB_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 405 MODULE_FIRMWARE(IWL9260A_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 406 MODULE_FIRMWARE(IWL9260B_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 407