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 38 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 .shadow_ram_support = true, 99 .led_compensation = 57, 100 .wd_timeout = IWL_LONG_WD_TIMEOUT, 101 .max_event_log_size = 512, 102 .shadow_reg_enable = true, 103 .pcie_l1_allowed = true, 104 }; 105 106 static const struct iwl_ht_params iwl9000_ht_params = { 107 .stbc = true, 108 .ldpc = true, 109 .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ), 110 }; 111 112 static const struct iwl_tt_params iwl9000_tt_params = { 113 .ct_kill_entry = 115, 114 .ct_kill_exit = 93, 115 .ct_kill_duration = 5, 116 .dynamic_smps_entry = 111, 117 .dynamic_smps_exit = 107, 118 .tx_protection_entry = 112, 119 .tx_protection_exit = 105, 120 .tx_backoff = { 121 {.temperature = 110, .backoff = 200}, 122 {.temperature = 111, .backoff = 600}, 123 {.temperature = 112, .backoff = 1200}, 124 {.temperature = 113, .backoff = 2000}, 125 {.temperature = 114, .backoff = 4000}, 126 }, 127 .support_ct_kill = true, 128 .support_dynamic_smps = true, 129 .support_tx_protection = true, 130 .support_tx_backoff = true, 131 }; 132 133 #define IWL_DEVICE_9000 \ 134 .ucode_api_max = IWL9000_UCODE_API_MAX, \ 135 .ucode_api_min = IWL9000_UCODE_API_MIN, \ 136 .device_family = IWL_DEVICE_FAMILY_9000, \ 137 .base_params = &iwl9000_base_params, \ 138 .led_mode = IWL_LED_RF_STATE, \ 139 .nvm_hw_section_num = NVM_HW_SECTION_NUM_FAMILY_9000, \ 140 .non_shared_ant = ANT_B, \ 141 .dccm_offset = IWL9000_DCCM_OFFSET, \ 142 .dccm_len = IWL9000_DCCM_LEN, \ 143 .dccm2_offset = IWL9000_DCCM2_OFFSET, \ 144 .dccm2_len = IWL9000_DCCM2_LEN, \ 145 .smem_offset = IWL9000_SMEM_OFFSET, \ 146 .smem_len = IWL9000_SMEM_LEN, \ 147 .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \ 148 .thermal_params = &iwl9000_tt_params, \ 149 .apmg_not_supported = true, \ 150 .mq_rx_supported = true, \ 151 .vht_mu_mimo_supported = true, \ 152 .mac_addr_from_csr = true, \ 153 .rf_id = true, \ 154 .nvm_type = IWL_NVM_EXT, \ 155 .dbgc_supported = true, \ 156 .min_umac_error_event_table = 0x800000, \ 157 .csr = &iwl_csr_v1 158 159 const struct iwl_cfg iwl9160_2ac_cfg = { 160 .name = "Intel(R) Dual Band Wireless AC 9160", 161 .fw_name_pre = IWL9260A_FW_PRE, 162 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 163 IWL_DEVICE_9000, 164 .ht_params = &iwl9000_ht_params, 165 .nvm_ver = IWL9000_NVM_VERSION, 166 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 167 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 168 }; 169 170 const struct iwl_cfg iwl9260_2ac_cfg = { 171 .name = "Intel(R) Dual Band Wireless AC 9260", 172 .fw_name_pre = IWL9260A_FW_PRE, 173 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 174 IWL_DEVICE_9000, 175 .ht_params = &iwl9000_ht_params, 176 .nvm_ver = IWL9000_NVM_VERSION, 177 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 178 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 179 }; 180 181 const struct iwl_cfg iwl9270_2ac_cfg = { 182 .name = "Intel(R) Dual Band Wireless AC 9270", 183 .fw_name_pre = IWL9260A_FW_PRE, 184 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 185 IWL_DEVICE_9000, 186 .ht_params = &iwl9000_ht_params, 187 .nvm_ver = IWL9000_NVM_VERSION, 188 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 189 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 190 }; 191 192 const struct iwl_cfg iwl9460_2ac_cfg = { 193 .name = "Intel(R) Dual Band Wireless AC 9460", 194 .fw_name_pre = IWL9260A_FW_PRE, 195 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 196 IWL_DEVICE_9000, 197 .ht_params = &iwl9000_ht_params, 198 .nvm_ver = IWL9000_NVM_VERSION, 199 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 200 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 201 }; 202 203 const struct iwl_cfg iwl9460_2ac_cfg_soc = { 204 .name = "Intel(R) Dual Band Wireless AC 9460", 205 .fw_name_pre = IWL9000A_FW_PRE, 206 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 207 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 208 IWL_DEVICE_9000, 209 .ht_params = &iwl9000_ht_params, 210 .nvm_ver = IWL9000_NVM_VERSION, 211 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 212 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 213 .integrated = true, 214 .soc_latency = 5000, 215 }; 216 217 const struct iwl_cfg iwl9461_2ac_cfg_soc = { 218 .name = "Intel(R) Dual Band Wireless AC 9461", 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 iwl9462_2ac_cfg_soc = { 232 .name = "Intel(R) Dual Band Wireless AC 9462", 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 iwl9560_2ac_cfg = { 246 .name = "Intel(R) Dual Band Wireless AC 9560", 247 .fw_name_pre = IWL9260A_FW_PRE, 248 .fw_name_pre_b_or_c_step = IWL9260B_FW_PRE, 249 IWL_DEVICE_9000, 250 .ht_params = &iwl9000_ht_params, 251 .nvm_ver = IWL9000_NVM_VERSION, 252 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 253 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 254 }; 255 256 const struct iwl_cfg iwl9560_2ac_cfg_soc = { 257 .name = "Intel(R) Dual Band Wireless AC 9560", 258 .fw_name_pre = IWL9000A_FW_PRE, 259 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 260 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 261 IWL_DEVICE_9000, 262 .ht_params = &iwl9000_ht_params, 263 .nvm_ver = IWL9000_NVM_VERSION, 264 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 265 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 266 .integrated = true, 267 .soc_latency = 5000, 268 }; 269 270 const struct iwl_cfg iwl9460_2ac_cfg_shared_clk = { 271 .name = "Intel(R) Dual Band Wireless AC 9460", 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 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 283 }; 284 285 const struct iwl_cfg iwl9461_2ac_cfg_shared_clk = { 286 .name = "Intel(R) Dual Band Wireless AC 9461", 287 .fw_name_pre = IWL9000A_FW_PRE, 288 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 289 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 290 IWL_DEVICE_9000, 291 .ht_params = &iwl9000_ht_params, 292 .nvm_ver = IWL9000_NVM_VERSION, 293 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 294 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 295 .integrated = true, 296 .soc_latency = 5000, 297 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 298 }; 299 300 const struct iwl_cfg iwl9462_2ac_cfg_shared_clk = { 301 .name = "Intel(R) Dual Band Wireless AC 9462", 302 .fw_name_pre = IWL9000A_FW_PRE, 303 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 304 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 305 IWL_DEVICE_9000, 306 .ht_params = &iwl9000_ht_params, 307 .nvm_ver = IWL9000_NVM_VERSION, 308 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 309 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 310 .integrated = true, 311 .soc_latency = 5000, 312 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 313 }; 314 315 const struct iwl_cfg iwl9560_2ac_cfg_shared_clk = { 316 .name = "Intel(R) Dual Band Wireless AC 9560", 317 .fw_name_pre = IWL9000A_FW_PRE, 318 .fw_name_pre_b_or_c_step = IWL9000B_FW_PRE, 319 .fw_name_pre_rf_next_step = IWL9000RFB_FW_PRE, 320 IWL_DEVICE_9000, 321 .ht_params = &iwl9000_ht_params, 322 .nvm_ver = IWL9000_NVM_VERSION, 323 .nvm_calib_ver = IWL9000_TX_POWER_VERSION, 324 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, 325 .integrated = true, 326 .soc_latency = 5000, 327 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 328 }; 329 330 MODULE_FIRMWARE(IWL9000A_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 331 MODULE_FIRMWARE(IWL9000B_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 332 MODULE_FIRMWARE(IWL9000RFB_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 333 MODULE_FIRMWARE(IWL9260A_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 334 MODULE_FIRMWARE(IWL9260B_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 335