aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/cfg80211.h
diff options
context:
space:
mode:
authorEmmanuel Grumbach <emmanuel.grumbach@intel.com>2014-05-18 03:15:24 -0400
committerJohannes Berg <johannes.berg@intel.com>2014-05-22 03:58:49 -0400
commit67af9811539be83dbdc0739215d29af23c870405 (patch)
tree737b3e00be1c18e1c21c34eed17606d3839c5ed5 /include/net/cfg80211.h
parent4d3df547e836f9a75b8de2b788449823c8db1d6a (diff)
cfg80211: allow RSSI compensation
Channels in 2.4GHz band overlap, this means that if we send a probe request on channel 1 and then move to channel 2, we will hear the probe response on channel 2. In this case, the RSSI will be lower than if we had heard it on the channel on which it was sent (1 in this case). The firmware / low level driver can parse the channel in the DS IE or HT IE and compensate the RSSI so that it will still have a valid value even if we heard the frame on an adjacent channel. This can be done up to a certain offset. Add this offset as a configuration for the low level driver. A low level driver that can compensate the low RSSI in this case should assign the maximal offset for which the RSSI value is still valid. Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com> Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r--include/net/cfg80211.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
index a75fabd18502..920ec8c1ce54 100644
--- a/include/net/cfg80211.h
+++ b/include/net/cfg80211.h
@@ -2961,6 +2961,12 @@ struct wiphy_vendor_command {
2961 * and probe responses. This value should be set if the driver 2961 * and probe responses. This value should be set if the driver
2962 * wishes to limit the number of csa counters. Default (0) means 2962 * wishes to limit the number of csa counters. Default (0) means
2963 * infinite. 2963 * infinite.
2964 * @max_adj_channel_rssi_comp: max offset of between the channel on which the
2965 * frame was sent and the channel on which the frame was heard for which
2966 * the reported rssi is still valid. If a driver is able to compensate the
2967 * low rssi when a frame is heard on different channel, then it should set
2968 * this variable to the maximal offset for which it can compensate.
2969 * This value should be set in MHz.
2964 */ 2970 */
2965struct wiphy { 2971struct wiphy {
2966 /* assign these fields before you register the wiphy */ 2972 /* assign these fields before you register the wiphy */
@@ -3079,6 +3085,7 @@ struct wiphy {
3079 u16 max_ap_assoc_sta; 3085 u16 max_ap_assoc_sta;
3080 3086
3081 u8 max_num_csa_counters; 3087 u8 max_num_csa_counters;
3088 u8 max_adj_channel_rssi_comp;
3082 3089
3083 char priv[0] __aligned(NETDEV_ALIGN); 3090 char priv[0] __aligned(NETDEV_ALIGN);
3084}; 3091};