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 "fw/file.h" 10 #include "iwl-prph.h" 11 12 /* Highest firmware API version supported */ 13 #define IWL9000_UCODE_API_MAX 46 14 15 /* Lowest firmware API version supported */ 16 #define IWL9000_UCODE_API_MIN 30 17 18 /* NVM versions */ 19 #define IWL9000_NVM_VERSION 0x0a1d 20 21 /* Memory offsets and lengths */ 22 #define IWL9000_DCCM_OFFSET 0x800000 23 #define IWL9000_DCCM_LEN 0x18000 24 #define IWL9000_DCCM2_OFFSET 0x880000 25 #define IWL9000_DCCM2_LEN 0x8000 26 #define IWL9000_SMEM_OFFSET 0x400000 27 #define IWL9000_SMEM_LEN 0x68000 28 29 #define IWL9000_FW_PRE "iwlwifi-9000-pu-b0-jf-b0-" 30 #define IWL9260_FW_PRE "iwlwifi-9260-th-b0-jf-b0-" 31 #define IWL9000_MODULE_FIRMWARE(api) \ 32 IWL9000_FW_PRE __stringify(api) ".ucode" 33 #define IWL9260_MODULE_FIRMWARE(api) \ 34 IWL9260_FW_PRE __stringify(api) ".ucode" 35 36 static const struct iwl_base_params iwl9000_base_params = { 37 .eeprom_size = OTP_LOW_IMAGE_SIZE_32K, 38 .num_of_queues = 31, 39 .max_tfd_queue_size = 256, 40 .shadow_ram_support = true, 41 .led_compensation = 57, 42 .wd_timeout = IWL_LONG_WD_TIMEOUT, 43 .max_event_log_size = 512, 44 .shadow_reg_enable = true, 45 .pcie_l1_allowed = true, 46 }; 47 48 static const struct iwl_ht_params iwl9000_ht_params = { 49 .stbc = true, 50 .ldpc = true, 51 .ht40_bands = BIT(NL80211_BAND_2GHZ) | BIT(NL80211_BAND_5GHZ), 52 }; 53 54 static const struct iwl_tt_params iwl9000_tt_params = { 55 .ct_kill_entry = 115, 56 .ct_kill_exit = 93, 57 .ct_kill_duration = 5, 58 .dynamic_smps_entry = 111, 59 .dynamic_smps_exit = 107, 60 .tx_protection_entry = 112, 61 .tx_protection_exit = 105, 62 .tx_backoff = { 63 {.temperature = 110, .backoff = 200}, 64 {.temperature = 111, .backoff = 600}, 65 {.temperature = 112, .backoff = 1200}, 66 {.temperature = 113, .backoff = 2000}, 67 {.temperature = 114, .backoff = 4000}, 68 }, 69 .support_ct_kill = true, 70 .support_dynamic_smps = true, 71 .support_tx_protection = true, 72 .support_tx_backoff = true, 73 }; 74 75 #define IWL_DEVICE_9000 \ 76 .ucode_api_max = IWL9000_UCODE_API_MAX, \ 77 .ucode_api_min = IWL9000_UCODE_API_MIN, \ 78 .led_mode = IWL_LED_RF_STATE, \ 79 .nvm_hw_section_num = 10, \ 80 .non_shared_ant = ANT_B, \ 81 .dccm_offset = IWL9000_DCCM_OFFSET, \ 82 .dccm_len = IWL9000_DCCM_LEN, \ 83 .dccm2_offset = IWL9000_DCCM2_OFFSET, \ 84 .dccm2_len = IWL9000_DCCM2_LEN, \ 85 .smem_offset = IWL9000_SMEM_OFFSET, \ 86 .smem_len = IWL9000_SMEM_LEN, \ 87 .features = IWL_TX_CSUM_NETIF_FLAGS | NETIF_F_RXCSUM, \ 88 .thermal_params = &iwl9000_tt_params, \ 89 .apmg_not_supported = true, \ 90 .num_rbds = 512, \ 91 .vht_mu_mimo_supported = true, \ 92 .mac_addr_from_csr = true, \ 93 .nvm_type = IWL_NVM_EXT, \ 94 .dbgc_supported = true, \ 95 .min_umac_error_event_table = 0x800000, \ 96 .d3_debug_data_base_addr = 0x401000, \ 97 .d3_debug_data_length = 92 * 1024, \ 98 .ht_params = &iwl9000_ht_params, \ 99 .nvm_ver = IWL9000_NVM_VERSION, \ 100 .max_ht_ampdu_exponent = IEEE80211_HT_MAX_AMPDU_64K, \ 101 .mon_smem_regs = { \ 102 .write_ptr = { \ 103 .addr = LDBG_M2S_BUF_WPTR, \ 104 .mask = LDBG_M2S_BUF_WPTR_VAL_MSK, \ 105 }, \ 106 .cycle_cnt = { \ 107 .addr = LDBG_M2S_BUF_WRAP_CNT, \ 108 .mask = LDBG_M2S_BUF_WRAP_CNT_VAL_MSK, \ 109 }, \ 110 }, \ 111 .mon_dram_regs = { \ 112 .write_ptr = { \ 113 .addr = MON_BUFF_WRPTR_VER2, \ 114 .mask = 0xffffffff, \ 115 }, \ 116 .cycle_cnt = { \ 117 .addr = MON_BUFF_CYCLE_CNT_VER2, \ 118 .mask = 0xffffffff, \ 119 }, \ 120 } 121 122 const struct iwl_cfg_trans_params iwl9000_trans_cfg = { 123 .device_family = IWL_DEVICE_FAMILY_9000, 124 .base_params = &iwl9000_base_params, 125 .mq_rx_supported = true, 126 .rf_id = true, 127 }; 128 129 const struct iwl_cfg_trans_params iwl9560_trans_cfg = { 130 .device_family = IWL_DEVICE_FAMILY_9000, 131 .base_params = &iwl9000_base_params, 132 .mq_rx_supported = true, 133 .rf_id = true, 134 .integrated = true, 135 .xtal_latency = 650, 136 }; 137 138 const struct iwl_cfg_trans_params iwl9560_long_latency_trans_cfg = { 139 .device_family = IWL_DEVICE_FAMILY_9000, 140 .base_params = &iwl9000_base_params, 141 .mq_rx_supported = true, 142 .rf_id = true, 143 .integrated = true, 144 .xtal_latency = 2820, 145 }; 146 147 const struct iwl_cfg_trans_params iwl9560_shared_clk_trans_cfg = { 148 .device_family = IWL_DEVICE_FAMILY_9000, 149 .base_params = &iwl9000_base_params, 150 .mq_rx_supported = true, 151 .rf_id = true, 152 .integrated = true, 153 .xtal_latency = 670, 154 .extra_phy_cfg_flags = FW_PHY_CFG_SHARED_CLK 155 }; 156 157 const char iwl9162_name[] = "Intel(R) Wireless-AC 9162"; 158 const char iwl9260_name[] = "Intel(R) Wireless-AC 9260"; 159 const char iwl9260_1_name[] = "Intel(R) Wireless-AC 9260-1"; 160 const char iwl9270_name[] = "Intel(R) Wireless-AC 9270"; 161 const char iwl9461_name[] = "Intel(R) Wireless-AC 9461"; 162 const char iwl9462_name[] = "Intel(R) Wireless-AC 9462"; 163 const char iwl9560_name[] = "Intel(R) Wireless-AC 9560"; 164 const char iwl9162_160_name[] = "Intel(R) Wireless-AC 9162 160MHz"; 165 const char iwl9260_160_name[] = "Intel(R) Wireless-AC 9260 160MHz"; 166 const char iwl9270_160_name[] = "Intel(R) Wireless-AC 9270 160MHz"; 167 const char iwl9461_160_name[] = "Intel(R) Wireless-AC 9461 160MHz"; 168 const char iwl9462_160_name[] = "Intel(R) Wireless-AC 9462 160MHz"; 169 const char iwl9560_160_name[] = "Intel(R) Wireless-AC 9560 160MHz"; 170 171 const char iwl9260_killer_1550_name[] = 172 "Killer (R) Wireless-AC 1550 Wireless Network Adapter (9260NGW)"; 173 const char iwl9560_killer_1550i_name[] = 174 "Killer (R) Wireless-AC 1550i Wireless Network Adapter (9560NGW)"; 175 const char iwl9560_killer_1550s_name[] = 176 "Killer (R) Wireless-AC 1550s Wireless Network Adapter (9560NGW)"; 177 178 const struct iwl_cfg iwl9260_2ac_cfg = { 179 .fw_name_pre = IWL9260_FW_PRE, 180 IWL_DEVICE_9000, 181 }; 182 183 const struct iwl_cfg iwl9560_2ac_cfg_soc = { 184 .fw_name_pre = IWL9000_FW_PRE, 185 IWL_DEVICE_9000, 186 }; 187 188 MODULE_FIRMWARE(IWL9000_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 189 MODULE_FIRMWARE(IWL9260_MODULE_FIRMWARE(IWL9000_UCODE_API_MAX)); 190