aboutsummaryrefslogtreecommitdiffstats
path: root/net/wireless/util.c
diff options
context:
space:
mode:
authorJohn W. Linville <linville@tuxdriver.com>2009-12-09 16:43:52 -0500
committerJohn W. Linville <linville@tuxdriver.com>2009-12-21 11:27:31 -0500
commit254416aae70ab2e6b57fd79782c8a67196234d02 (patch)
treee28d54d1514634b591b54296b35bb9029e7b5a9c /net/wireless/util.c
parenta252e749f1ae17e43ccc5824f7b1b5854417c98b (diff)
wireless: report reasonable bitrate for MCS rates through wext
Previously, cfg80211 had reported "0" for MCS (i.e. 802.11n) bitrates through the wireless extensions interface. However, nl80211 was converting MCS rates into a reasonable bitrate number. This patch moves the nl80211 code to cfg80211 where it is now shared between both the nl80211 interface and the wireless extensions interface. Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/wireless/util.c')
-rw-r--r--net/wireless/util.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/net/wireless/util.c b/net/wireless/util.c
index 59361fdcb5d0..a3c841a255db 100644
--- a/net/wireless/util.c
+++ b/net/wireless/util.c
@@ -720,3 +720,36 @@ int cfg80211_change_iface(struct cfg80211_registered_device *rdev,
720 720
721 return err; 721 return err;
722} 722}
723
724u16 cfg80211_calculate_bitrate(struct rate_info *rate)
725{
726 int modulation, streams, bitrate;
727
728 if (!(rate->flags & RATE_INFO_FLAGS_MCS))
729 return rate->legacy;
730
731 /* the formula below does only work for MCS values smaller than 32 */
732 if (rate->mcs >= 32)
733 return 0;
734
735 modulation = rate->mcs & 7;
736 streams = (rate->mcs >> 3) + 1;
737
738 bitrate = (rate->flags & RATE_INFO_FLAGS_40_MHZ_WIDTH) ?
739 13500000 : 6500000;
740
741 if (modulation < 4)
742 bitrate *= (modulation + 1);
743 else if (modulation == 4)
744 bitrate *= (modulation + 2);
745 else
746 bitrate *= (modulation + 3);
747
748 bitrate *= streams;
749
750 if (rate->flags & RATE_INFO_FLAGS_SHORT_GI)
751 bitrate = (bitrate / 9) * 10;
752
753 /* do NOT round down here */
754 return (bitrate + 50000) / 100000;
755}