]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mac80211: minstrel_ht: add support for rates with 4 spatial streams
authorFelix Fietkau <nbd@nbd.name>
Mon, 25 Mar 2019 08:50:15 +0000 (09:50 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Fri, 26 Apr 2019 11:02:11 +0000 (13:02 +0200)
This is needed for the upcoming driver for MT7615 4x4 802.11ac chipsets

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/mac80211/rc80211_minstrel_ht.c
net/mac80211/rc80211_minstrel_ht.h

index ccaf951e4e3122c1291f88f12dded5341f712b09..00a3a8ce27fe6c99e23ea6842eb7501fcdbefec2 100644 (file)
@@ -157,44 +157,54 @@ const struct mcs_group minstrel_mcs_groups[] = {
        MCS_GROUP(1, 0, BW_20, 5),
        MCS_GROUP(2, 0, BW_20, 4),
        MCS_GROUP(3, 0, BW_20, 4),
+       MCS_GROUP(4, 0, BW_20, 4),
 
        MCS_GROUP(1, 1, BW_20, 5),
        MCS_GROUP(2, 1, BW_20, 4),
        MCS_GROUP(3, 1, BW_20, 4),
+       MCS_GROUP(4, 1, BW_20, 4),
 
        MCS_GROUP(1, 0, BW_40, 4),
        MCS_GROUP(2, 0, BW_40, 4),
        MCS_GROUP(3, 0, BW_40, 4),
+       MCS_GROUP(4, 0, BW_40, 4),
 
        MCS_GROUP(1, 1, BW_40, 4),
        MCS_GROUP(2, 1, BW_40, 4),
        MCS_GROUP(3, 1, BW_40, 4),
+       MCS_GROUP(4, 1, BW_40, 4),
 
        CCK_GROUP(8),
 
        VHT_GROUP(1, 0, BW_20, 5),
        VHT_GROUP(2, 0, BW_20, 4),
        VHT_GROUP(3, 0, BW_20, 4),
+       VHT_GROUP(4, 0, BW_20, 4),
 
        VHT_GROUP(1, 1, BW_20, 5),
        VHT_GROUP(2, 1, BW_20, 4),
        VHT_GROUP(3, 1, BW_20, 4),
+       VHT_GROUP(4, 1, BW_20, 4),
 
        VHT_GROUP(1, 0, BW_40, 4),
        VHT_GROUP(2, 0, BW_40, 4),
        VHT_GROUP(3, 0, BW_40, 4),
+       VHT_GROUP(4, 0, BW_40, 3),
 
        VHT_GROUP(1, 1, BW_40, 4),
        VHT_GROUP(2, 1, BW_40, 4),
        VHT_GROUP(3, 1, BW_40, 4),
+       VHT_GROUP(4, 1, BW_40, 3),
 
        VHT_GROUP(1, 0, BW_80, 4),
        VHT_GROUP(2, 0, BW_80, 4),
        VHT_GROUP(3, 0, BW_80, 4),
+       VHT_GROUP(4, 0, BW_80, 2),
 
        VHT_GROUP(1, 1, BW_80, 4),
        VHT_GROUP(2, 1, BW_80, 4),
        VHT_GROUP(3, 1, BW_80, 4),
+       VHT_GROUP(4, 1, BW_80, 2),
 };
 
 static u8 sample_table[SAMPLE_COLUMNS][MCS_GROUP_RATES] __read_mostly;
index 26b7a3244b478ec329dafe198454b66c9dcbdd2f..f762e5ba7c2ed65095f0f05c2ffbf495b3dc4ff4 100644 (file)
@@ -13,7 +13,7 @@
  * The number of streams can be changed to 2 to reduce code
  * size and memory footprint.
  */
-#define MINSTREL_MAX_STREAMS           3
+#define MINSTREL_MAX_STREAMS           4
 #define MINSTREL_HT_STREAM_GROUPS      4 /* BW(=2) * SGI(=2) */
 #define MINSTREL_VHT_STREAM_GROUPS     6 /* BW(=3) * SGI(=2) */