aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi
diff options
context:
space:
mode:
authorJohannes Berg <johannes.berg@intel.com>2012-12-12 11:59:39 -0500
committerJohannes Berg <johannes.berg@intel.com>2013-02-15 03:41:38 -0500
commit50640f169372b9977487a328dedf13a8debedff7 (patch)
tree5ee6bf0cc8d936441049e94d48f7773a5fbdd420 /include/uapi
parentc7a6ee27abd46247c1c7edfc49fb935138da7875 (diff)
nl80211: advertise HT/VHT channel limitations
When drivers or regulatory have limitations on 40, 80 or 160 MHz channels, advertise these to userspace via nl80211. Also add a new feature flag to let userspace know this is supported. Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'include/uapi')
-rw-r--r--include/uapi/linux/nl80211.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index 90b7af86f392..3880f6ad7ed1 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -2041,6 +2041,16 @@ enum nl80211_band_attr {
2041 * (enum nl80211_dfs_state) 2041 * (enum nl80211_dfs_state)
2042 * @NL80211_FREQUENCY_ATTR_DFS_TIME: time in miliseconds for how long 2042 * @NL80211_FREQUENCY_ATTR_DFS_TIME: time in miliseconds for how long
2043 * this channel is in this DFS state. 2043 * this channel is in this DFS state.
2044 * @NL80211_FREQUENCY_ATTR_NO_HT40_MINUS: HT40- isn't possible with this
2045 * channel as the control channel
2046 * @NL80211_FREQUENCY_ATTR_NO_HT40_PLUS: HT40+ isn't possible with this
2047 * channel as the control channel
2048 * @NL80211_FREQUENCY_ATTR_NO_80MHZ: any 80 MHz channel using this channel
2049 * as the primary or any of the secondary channels isn't possible,
2050 * this includes 80+80 channels
2051 * @NL80211_FREQUENCY_ATTR_NO_160MHZ: any 160 MHz (but not 80+80) channel
2052 * using this channel as the primary or any of the secondary channels
2053 * isn't possible
2044 * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number 2054 * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number
2045 * currently defined 2055 * currently defined
2046 * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use 2056 * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use
@@ -2055,6 +2065,10 @@ enum nl80211_frequency_attr {
2055 NL80211_FREQUENCY_ATTR_MAX_TX_POWER, 2065 NL80211_FREQUENCY_ATTR_MAX_TX_POWER,
2056 NL80211_FREQUENCY_ATTR_DFS_STATE, 2066 NL80211_FREQUENCY_ATTR_DFS_STATE,
2057 NL80211_FREQUENCY_ATTR_DFS_TIME, 2067 NL80211_FREQUENCY_ATTR_DFS_TIME,
2068 NL80211_FREQUENCY_ATTR_NO_HT40_MINUS,
2069 NL80211_FREQUENCY_ATTR_NO_HT40_PLUS,
2070 NL80211_FREQUENCY_ATTR_NO_80MHZ,
2071 NL80211_FREQUENCY_ATTR_NO_160MHZ,
2058 2072
2059 /* keep last */ 2073 /* keep last */
2060 __NL80211_FREQUENCY_ATTR_AFTER_LAST, 2074 __NL80211_FREQUENCY_ATTR_AFTER_LAST,
@@ -3421,6 +3435,8 @@ enum nl80211_ap_sme_features {
3421 * Note that even for drivers that support this, the default is to add 3435 * Note that even for drivers that support this, the default is to add
3422 * stations in authenticated/associated state, so to add unauthenticated 3436 * stations in authenticated/associated state, so to add unauthenticated
3423 * stations the authenticated/associated bits have to be set in the mask. 3437 * stations the authenticated/associated bits have to be set in the mask.
3438 * @NL80211_FEATURE_ADVERTISE_CHAN_LIMITS: cfg80211 advertises channel limits
3439 * (HT40, VHT 80/160 MHz) if this flag is set
3424 */ 3440 */
3425enum nl80211_feature_flags { 3441enum nl80211_feature_flags {
3426 NL80211_FEATURE_SK_TX_STATUS = 1 << 0, 3442 NL80211_FEATURE_SK_TX_STATUS = 1 << 0,
@@ -3437,6 +3453,7 @@ enum nl80211_feature_flags {
3437 NL80211_FEATURE_P2P_GO_CTWIN = 1 << 11, 3453 NL80211_FEATURE_P2P_GO_CTWIN = 1 << 11,
3438 NL80211_FEATURE_P2P_GO_OPPPS = 1 << 12, 3454 NL80211_FEATURE_P2P_GO_OPPPS = 1 << 12,
3439 NL80211_FEATURE_FULL_AP_CLIENT_STATE = 1 << 13, 3455 NL80211_FEATURE_FULL_AP_CLIENT_STATE = 1 << 13,
3456 NL80211_FEATURE_ADVERTISE_CHAN_LIMITS = 1 << 14,
3440}; 3457};
3441 3458
3442/** 3459/**