Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b296005c authored by Johannes Berg's avatar Johannes Berg
Browse files

mac80211_hwsim: advertise VHT support



If the number of channels is > 1, which means that
hwsim will use mac80211 channel contexts, it can
also advertise VHT support.

Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 7173a1fa
Loading
Loading
Loading
Loading
+28 −0
Original line number Original line Diff line number Diff line
@@ -2208,6 +2208,34 @@ static int __init init_mac80211_hwsim(void)
			sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
			sband->ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;


			hw->wiphy->bands[band] = sband;
			hw->wiphy->bands[band] = sband;

			if (channels == 1)
				continue;

			sband->vht_cap.vht_supported = true;
			sband->vht_cap.cap =
				IEEE80211_VHT_CAP_MAX_MPDU_LENGTH_11454 |
				IEEE80211_VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ |
				IEEE80211_VHT_CAP_RXLDPC |
				IEEE80211_VHT_CAP_SHORT_GI_80 |
				IEEE80211_VHT_CAP_SHORT_GI_160 |
				IEEE80211_VHT_CAP_TXSTBC |
				IEEE80211_VHT_CAP_RXSTBC_1 |
				IEEE80211_VHT_CAP_RXSTBC_2 |
				IEEE80211_VHT_CAP_RXSTBC_3 |
				IEEE80211_VHT_CAP_RXSTBC_4 |
				IEEE80211_VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT;
			sband->vht_cap.vht_mcs.rx_mcs_map =
				cpu_to_le16(IEEE80211_VHT_MCS_SUPPORT_0_8 << 0 |
					    IEEE80211_VHT_MCS_SUPPORT_0_8 << 2 |
					    IEEE80211_VHT_MCS_SUPPORT_0_9 << 4 |
					    IEEE80211_VHT_MCS_SUPPORT_0_8 << 6 |
					    IEEE80211_VHT_MCS_SUPPORT_0_8 << 8 |
					    IEEE80211_VHT_MCS_SUPPORT_0_9 << 10 |
					    IEEE80211_VHT_MCS_SUPPORT_0_9 << 12 |
					    IEEE80211_VHT_MCS_SUPPORT_0_8 << 14);
			sband->vht_cap.vht_mcs.tx_mcs_map =
				sband->vht_cap.vht_mcs.rx_mcs_map;
		}
		}
		/* By default all radios are belonging to the first group */
		/* By default all radios are belonging to the first group */
		data->group = 1;
		data->group = 1;