1 // SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause 2 /* 3 * Copyright (C) 2015-2017 Intel Deutschland GmbH 4 * Copyright (C) 2018-2025 Intel Corporation 5 */ 6 #include "iwl-config.h" 7 8 /* NVM versions */ 9 #define IWL_HR_NVM_VERSION 0x0a1d 10 11 #define IWL_DEVICE_HR \ 12 .led_mode = IWL_LED_RF_STATE, \ 13 .non_shared_ant = ANT_B, \ 14 .vht_mu_mimo_supported = true, \ 15 .ht_params = { \ 16 .stbc = true, \ 17 .ldpc = true, \ 18 .ht40_bands = BIT(NL80211_BAND_2GHZ) | \ 19 BIT(NL80211_BAND_5GHZ), \ 20 }, \ 21 .num_rbds = IWL_NUM_RBDS_HE, \ 22 .nvm_ver = IWL_HR_NVM_VERSION, \ 23 .nvm_type = IWL_NVM_EXT 24 25 const struct iwl_rf_cfg iwl_rf_hr1 = { 26 IWL_DEVICE_HR, 27 .tx_with_siso_diversity = true, 28 }; 29 30 const struct iwl_rf_cfg iwl_rf_hr = { 31 IWL_DEVICE_HR, 32 }; 33 34 const struct iwl_rf_cfg iwl_rf_hr_80mhz = { 35 IWL_DEVICE_HR, 36 .bw_limit = 80, 37 }; 38 39 const char iwl_ax101_name[] = "Intel(R) Wi-Fi 6 AX101"; 40 const char iwl_ax200_name[] = "Intel(R) Wi-Fi 6 AX200 160MHz"; 41 const char iwl_ax201_name[] = "Intel(R) Wi-Fi 6 AX201 160MHz"; 42 const char iwl_ax203_name[] = "Intel(R) Wi-Fi 6 AX203"; 43