wifi: iwlwifi: mvm: advertise 320 MHz in 6 GHz only conditionally
authorJohannes Berg <johannes.berg@intel.com>
Tue, 22 Nov 2022 20:10:38 +0000 (22:10 +0200)
committerGregory Greenman <gregory.greenman@intel.com>
Mon, 28 Nov 2022 15:53:27 +0000 (17:53 +0200)
We can't have it in AP mode unless for debug, since we don't have
160 MHz in HE PHY capabilities, and also set it only in 6 GHz even
if (unlike in HE) it's always defined.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Link: https://lore.kernel.org/r/20221122220713.293ef3e5a1c4.I867526a6bd3f93ee50076ff359436dfb5ec6101c@changeid
Signed-off-by: Gregory Greenman <gregory.greenman@intel.com>
drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c

index e83382d..b59e61a 100644 (file)
@@ -873,6 +873,10 @@ iwl_nvm_fixup_sband_iftd(struct iwl_trans *trans,
                        IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_IN_2G;
                break;
        case NL80211_BAND_6GHZ:
+               if (!is_ap || iwlwifi_mod_params.nvm_file)
+                       iftype_data->eht_cap.eht_cap_elem.phy_cap_info[0] |=
+                               IEEE80211_EHT_PHY_CAP0_320MHZ_IN_6GHZ;
+               fallthrough;
        case NL80211_BAND_5GHZ:
                iftype_data->he_cap.he_cap_elem.phy_cap_info[0] |=
                        IEEE80211_HE_PHY_CAP0_CHANNEL_WIDTH_SET_40MHZ_80MHZ_IN_5G;