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 46 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 68 /* Memory offsets and lengths */ 69 #define IWL9000_DCCM_OFFSET 0x800000 70 #define IWL9000_DCCM_LEN 0x18000 71 #define IWL9000_DCCM2_OFFSET 0x880000 72 #define IWL9000_DCCM2_LEN 0x8000 73 #define IWL9000_SMEM_OFFSET 0x400000 74 #define IWL9000_SMEM_LEN 0x68000 75 76 #define IWL9000_FW_PRE "iwlwifi-9000-pu-b0-jf-b0-" 77 #define IWL9260_FW_PRE "iwlwifi-9260-th-b0-jf-b0-" 78 #define IWL9000_MODULE_FIRMWARE(api) \ 79 IWL9000_FW_PRE __stringify(api) ".ucode" 80 #define IWL9260_MODULE_FIRMWARE(api) \ 81 IWL9260_FW_PRE __stringify(api) ".ucode" 82 83 static const struct iwl_base_params iwl9000_base_params = { 84 .eeprom_size = OTP_LOW_IMAGE_SIZE_32K, 85 .num_of_queues = 31, 86 .max_tfd_queue_size = 256, 87 .shadow_ram_support = true, 88 .led_compensation = 57, 89 .wd_timeout = IWL_LONG_WD_TIMEOUT, 90 .max_event_log_size = 512, 91 .shadow_reg_enable = true, 92 .pcie_l1_allowed = true, 93 }; 94 95 static const struct iwl_ht_params iwl9000_ht_params = { 96 .stbc = true, 97 .ldpc = true, 98 .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ), 99 }; 100 101 static const struct iwl_tt_params iwl9000_tt_params = { 102 .ct_kill_entry = 115, 103 .ct_kill_exit = 93, 104 .ct_kill_duration = 5, 105 .dynamic_smps_entry = 111, 106 .dynamic_smps_exit = 107, 107 .tx_protection_entry = 112, 108 .tx_protection_exit = 105, 109 .tx_backoff = { 110 {.temperature = 110, .backoff = 200}, 111 {.temperature = 111, .backoff = 600}, 112 {.temperature = 112, .backoff = 1200}, 113 {.temperature = 113, .backoff = 2000}, 114 {.temperature = 114, .backoff = 4000}, 115 }, 116 .support_ct_kill = true, 117 .support_dynamic_smps = true, 118 .support_tx_protection = true, 119 .support_tx_backoff = true, 120 }; 121 122 #define IWL_DEVICE_9000 \ 123 .ucode_api_max = IWL9000_UCODE_API_MAX, \ 124 .ucode_api_min = IWL9000_UCODE_API_MIN, \ 125 .device_family = IWL_DEVICE_FAMILY_9000, \ 126 .base_params = &iwl9000_base_params, \ 127 .led_mode = IWL_LED_RF_STATE, \ 128 .nvm_hw_section_num = 10, \ 129 .non_shared_ant = ANT_B, \ 130 .dccm_offset = IWL9000_DCCM_OFFSET, \ 131 .dccm_len = IWL9000_DCCM_LEN, \ 132 .dccm2_offset = IWL9000_DCCM2_OFFSET, \ 133 .dccm2_len = IWL9000_DCCM2_LEN, \ 134 .smem_offset = IWL9000_SMEM_OFFSET, \ 135 .smem_len = IWL9000_SMEM_LEN, \ 136 .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \ 137 .thermal_params = &iwl9000_tt_params, \ 138 .apmg_not_supported = true, \ 139 .mq_rx_supported = true, \ 140 .vht_mu_mimo_supported = true, \ 141 .mac_addr_from_csr = true, \ 142 .rf_id = true, \ 143 .nvm_type = IWL_NVM_EXT, \ 144 .dbgc_supported = true, \ 145 .min_umac_error_event_table = 0x800000, \ 146 .csr = &iwl_csr_v1, \ 147 .d3_debug_data_base_addr = 0x401000, \ 148 .d3_debug_data_length = 92 * 1024, \ 149 .ht_params = &iwl9000_ht_params, \ 150 .nvm_ver = IWL9000_NVM_VERSION, \ 151 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K 152 153 154 const struct iwl_cfg iwl9160_2ac_cfg = { 155 .name = "Intel(R) Dual Band Wireless AC 9160", 156 .fw_name_pre = IWL9260_FW_PRE, 157 IWL_DEVICE_9000, 158 }; 159 160 const struct iwl_cfg iwl9260_2ac_cfg = { 161 .name = "Intel(R) Dual Band Wireless AC 9260", 162 .fw_name_pre = IWL9260_FW_PRE, 163 IWL_DEVICE_9000, 164 }; 165 166 const struct iwl_cfg iwl9260_2ac_160_cfg = { 167 .name = "Intel(R) Wireless-AC 9260 160MHz", 168 .fw_name_pre = IWL9260_FW_PRE, 169 IWL_DEVICE_9000, 170 }; 171 172 const struct iwl_cfg iwl9260_killer_2ac_cfg = { 173 .name = "Killer (R) Wireless-AC 1550 Wireless Network Adapter (9260NGW)", 174 .fw_name_pre = IWL9260_FW_PRE, 175 IWL_DEVICE_9000, 176 }; 177 178 const struct iwl_cfg iwl9270_2ac_cfg = { 179 .name = "Intel(R) Dual Band Wireless AC 9270", 180 .fw_name_pre = IWL9260_FW_PRE, 181 IWL_DEVICE_9000, 182 }; 183 184 const struct iwl_cfg iwl9460_2ac_cfg = { 185 .name = "Intel(R) Dual Band Wireless AC 9460", 186 .fw_name_pre = IWL9260_FW_PRE, 187 IWL_DEVICE_9000, 188 }; 189 190 const struct iwl_cfg iwl9460_2ac_cfg_soc = { 191 .name = "Intel(R) Dual Band Wireless AC 9460", 192 .fw_name_pre = IWL9000_FW_PRE, 193 IWL_DEVICE_9000, 194 .integrated = true, 195 .soc_latency = 5000, 196 }; 197 198 const struct iwl_cfg iwl9461_2ac_cfg_soc = { 199 .name = "Intel(R) Dual Band Wireless AC 9461", 200 .fw_name_pre = IWL9000_FW_PRE, 201 IWL_DEVICE_9000, 202 .integrated = true, 203 .soc_latency = 5000, 204 }; 205 206 const struct iwl_cfg iwl9462_2ac_cfg_soc = { 207 .name = "Intel(R) Dual Band Wireless AC 9462", 208 .fw_name_pre = IWL9000_FW_PRE, 209 IWL_DEVICE_9000, 210 .integrated = true, 211 .soc_latency = 5000, 212 }; 213 214 const struct iwl_cfg iwl9560_2ac_cfg = { 215 .name = "Intel(R) Dual Band Wireless AC 9560", 216 .fw_name_pre = IWL9260_FW_PRE, 217 IWL_DEVICE_9000, 218 }; 219 220 const struct iwl_cfg iwl9560_2ac_160_cfg = { 221 .name = "Intel(R) Wireless-AC 9560 160MHz", 222 .fw_name_pre = IWL9260_FW_PRE, 223 IWL_DEVICE_9000, 224 }; 225 226 const struct iwl_cfg iwl9560_2ac_cfg_soc = { 227 .name = "Intel(R) Dual Band Wireless AC 9560", 228 .fw_name_pre = IWL9000_FW_PRE, 229 IWL_DEVICE_9000, 230 .integrated = true, 231 .soc_latency = 5000, 232 }; 233 234 const struct iwl_cfg iwl9560_2ac_160_cfg_soc = { 235 .name = "Intel(R) Wireless-AC 9560 160MHz", 236 .fw_name_pre = IWL9000_FW_PRE, 237 IWL_DEVICE_9000, 238 .integrated = true, 239 .soc_latency = 5000, 240 }; 241 242 const struct iwl_cfg iwl9560_killer_2ac_cfg_soc = { 243 .name = "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)", 244 .fw_name_pre = IWL9000_FW_PRE, 245 IWL_DEVICE_9000, 246 .integrated = true, 247 .soc_latency = 5000, 248 }; 249 250 const struct iwl_cfg iwl9560_killer_s_2ac_cfg_soc = { 251 .name = "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)", 252 .fw_name_pre = IWL9000_FW_PRE, 253 IWL_DEVICE_9000, 254 .integrated = true, 255 .soc_latency = 5000, 256 }; 257 258 const struct iwl_cfg iwl9460_2ac_cfg_shared_clk = { 259 .name = "Intel(R) Dual Band Wireless AC 9460", 260 .fw_name_pre = IWL9000_FW_PRE, 261 IWL_DEVICE_9000, 262 .integrated = true, 263 .soc_latency = 5000, 264 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 265 }; 266 267 const struct iwl_cfg iwl9461_2ac_cfg_shared_clk = { 268 .name = "Intel(R) Dual Band Wireless AC 9461", 269 .fw_name_pre = IWL9000_FW_PRE, 270 IWL_DEVICE_9000, 271 .integrated = true, 272 .soc_latency = 5000, 273 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 274 }; 275 276 const struct iwl_cfg iwl9462_2ac_cfg_shared_clk = { 277 .name = "Intel(R) Dual Band Wireless AC 9462", 278 .fw_name_pre = IWL9000_FW_PRE, 279 IWL_DEVICE_9000, 280 .integrated = true, 281 .soc_latency = 5000, 282 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 283 }; 284 285 const struct iwl_cfg iwl9560_2ac_cfg_shared_clk = { 286 .name = "Intel(R) Dual Band Wireless AC 9560", 287 .fw_name_pre = IWL9000_FW_PRE, 288 IWL_DEVICE_9000, 289 .integrated = true, 290 .soc_latency = 5000, 291 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 292 }; 293 294 const struct iwl_cfg iwl9560_2ac_160_cfg_shared_clk = { 295 .name = "Intel(R) Wireless-AC 9560 160MHz", 296 .fw_name_pre = IWL9000_FW_PRE, 297 IWL_DEVICE_9000, 298 .integrated = true, 299 .soc_latency = 5000, 300 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 301 }; 302 303 const struct iwl_cfg iwl9560_killer_2ac_cfg_shared_clk = { 304 .name = "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)", 305 .fw_name_pre = IWL9000_FW_PRE, 306 IWL_DEVICE_9000, 307 .integrated = true, 308 .soc_latency = 5000, 309 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 310 }; 311 312 const struct iwl_cfg iwl9560_killer_s_2ac_cfg_shared_clk = { 313 .name = "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)", 314 .fw_name_pre = IWL9000_FW_PRE, 315 IWL_DEVICE_9000, 316 .integrated = true, 317 .soc_latency = 5000, 318 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 319 }; 320 321 MODULE_FIRMWARE(IWL9000_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 322 MODULE_FIRMWARE(IWL9260_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 323