15e303397SJohannes Berg // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 25e303397SJohannes Berg /* 35e303397SJohannes Berg * Copyright (C) 2015-2017 Intel Deutschland GmbH 45e303397SJohannes Berg * Copyright (C) 2018-2021, 2023, 2025 Intel Corporation 55e303397SJohannes Berg */ 65e303397SJohannes Berg #include "iwl-config.h" 75e303397SJohannes Berg 85e303397SJohannes Berg /* NVM versions */ 95e303397SJohannes Berg #define IWL_JF_NVM_VERSION 0x0a1d 105e303397SJohannes Berg 115e303397SJohannes Berg /* Memory offsets and lengths */ 125e303397SJohannes Berg #define IWL9000_DCCM_OFFSET 0x800000 135e303397SJohannes Berg #define IWL9000_DCCM_LEN 0x18000 145e303397SJohannes Berg #define IWL9000_DCCM2_OFFSET 0x880000 155e303397SJohannes Berg #define IWL9000_DCCM2_LEN 0x8000 165e303397SJohannes Berg 175e303397SJohannes Berg static const struct iwl_tt_params iwl_jf_tt_params = { 185e303397SJohannes Berg .ct_kill_entry = 115, 195e303397SJohannes Berg .ct_kill_exit = 93, 205e303397SJohannes Berg .ct_kill_duration = 5, 215e303397SJohannes Berg .dynamic_smps_entry = 111, 225e303397SJohannes Berg .dynamic_smps_exit = 107, 235e303397SJohannes Berg .tx_protection_entry = 112, 245e303397SJohannes Berg .tx_protection_exit = 105, 255e303397SJohannes Berg .tx_backoff = { 265e303397SJohannes Berg {.temperature = 110, .backoff = 200}, 275e303397SJohannes Berg {.temperature = 111, .backoff = 600}, 285e303397SJohannes Berg {.temperature = 112, .backoff = 1200}, 295e303397SJohannes Berg {.temperature = 113, .backoff = 2000}, 305e303397SJohannes Berg {.temperature = 114, .backoff = 4000}, 315e303397SJohannes Berg }, 325e303397SJohannes Berg .support_ct_kill = true, 335e303397SJohannes Berg .support_dynamic_smps = true, 345e303397SJohannes Berg .support_tx_protection = true, 355e303397SJohannes Berg .support_tx_backoff = true, 365e303397SJohannes Berg }; 375e303397SJohannes Berg 385e303397SJohannes Berg /* these values are ignored if not with Pu/Th MAC firmware, due to offload */ 395e303397SJohannes Berg #define IWL_DEVICE_JF_PU \ 405e303397SJohannes Berg .dccm_offset = IWL9000_DCCM_OFFSET, \ 415e303397SJohannes Berg .dccm_len = IWL9000_DCCM_LEN, \ 425e303397SJohannes Berg .dccm2_offset = IWL9000_DCCM2_OFFSET, \ 435e303397SJohannes Berg .dccm2_len = IWL9000_DCCM2_LEN, \ 445e303397SJohannes Berg .thermal_params = &iwl_jf_tt_params 455e303397SJohannes Berg 465e303397SJohannes Berg #define IWL_DEVICE_JF \ 475e303397SJohannes Berg IWL_DEVICE_JF_PU, \ 485e303397SJohannes Berg .led_mode = IWL_LED_RF_STATE, \ 495e303397SJohannes Berg .non_shared_ant = ANT_B, \ 505e303397SJohannes Berg .num_rbds = IWL_NUM_RBDS_NON_HE, \ 515e303397SJohannes Berg .vht_mu_mimo_supported = true, \ 525e303397SJohannes Berg .ht_params = { \ 535e303397SJohannes Berg .stbc = true, \ 545e303397SJohannes Berg .ldpc = true, \ 555e303397SJohannes Berg .ht40_bands = BIT(NL80211_BAND_2GHZ) | \ 565e303397SJohannes Berg BIT(NL80211_BAND_5GHZ), \ 575e303397SJohannes Berg }, \ 585e303397SJohannes Berg .nvm_ver = IWL_JF_NVM_VERSION, \ 595e303397SJohannes Berg .nvm_type = IWL_NVM_EXT 605e303397SJohannes Berg 61589ceda6SJohannes Berg const struct iwl_rf_cfg iwl_rf_jf = { 625e303397SJohannes Berg IWL_DEVICE_JF, 635e303397SJohannes Berg }; 645e303397SJohannes Berg 65589ceda6SJohannes Berg const struct iwl_rf_cfg iwl_rf_jf_80mhz = { 665e303397SJohannes Berg IWL_DEVICE_JF, 675e303397SJohannes Berg .bw_limit = 80, 685e303397SJohannes Berg }; 69*1d525368SJohannes Berg 70*1d525368SJohannes Berg const char iwl9260_name[] = "Intel(R) Wireless-AC 9260"; 71*1d525368SJohannes Berg const char iwl9461_name[] = "Intel(R) Wireless-AC 9461"; 72*1d525368SJohannes Berg const char iwl9462_name[] = "Intel(R) Wireless-AC 9462"; 73*1d525368SJohannes Berg const char iwl9560_name[] = "Intel(R) Wireless-AC 9560"; 74*1d525368SJohannes Berg const char iwl9260_160_name[] = "Intel(R) Wireless-AC 9260 160MHz"; 75*1d525368SJohannes Berg const char iwl9461_160_name[] = "Intel(R) Wireless-AC 9461 160MHz"; 76*1d525368SJohannes Berg const char iwl9462_160_name[] = "Intel(R) Wireless-AC 9462 160MHz"; 77*1d525368SJohannes Berg const char iwl9560_160_name[] = "Intel(R) Wireless-AC 9560 160MHz"; 78*1d525368SJohannes Berg 79*1d525368SJohannes Berg const char iwl9260_killer_1550_name[] = 80*1d525368SJohannes Berg "Killer(R) Wireless-AC 1550 Wireless Network Adapter (9260NGW) 160MHz"; 81*1d525368SJohannes Berg const char iwl9560_killer_1550i_name[] = 82*1d525368SJohannes Berg "Killer(R) Wireless-AC 1550i Wireless Network Adapter (9560NGW) 160MHz"; 83*1d525368SJohannes Berg const char iwl9560_killer_1550s_name[] = 84*1d525368SJohannes Berg "Killer(R) Wireless-AC 1550s Wireless Network Adapter (9560D2W) 160MHz"; 85