aboutsummaryrefslogtreecommitdiffstats
path: root/include/uapi/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/nl80211.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
index 5e405fd55a71..ac5b2d25f0fc 100644
--- a/include/uapi/linux/nl80211.h
+++ b/include/uapi/linux/nl80211.h
@@ -2342,9 +2342,30 @@ enum nl80211_band_attr {
2342 * using this channel as the primary or any of the secondary channels 2342 * using this channel as the primary or any of the secondary channels
2343 * isn't possible 2343 * isn't possible
2344 * @NL80211_FREQUENCY_ATTR_DFS_CAC_TIME: DFS CAC time in milliseconds. 2344 * @NL80211_FREQUENCY_ATTR_DFS_CAC_TIME: DFS CAC time in milliseconds.
2345 * @NL80211_FREQUENCY_ATTR_INDOOR_ONLY: Only indoor use is permitted on this
2346 * channel. A channel that has the INDOOR_ONLY attribute can only be
2347 * used when there is a clear assessment that the device is operating in
2348 * an indoor surroundings, i.e., it is connected to AC power (and not
2349 * through portable DC inverters) or is under the control of a master
2350 * that is acting as an AP and is connected to AC power.
2351 * @NL80211_FREQUENCY_ATTR_GO_CONCURRENT: GO operation is allowed on this
2352 * channel if it's connected concurrently to a BSS on the same channel on
2353 * the 2 GHz band or to a channel in the same UNII band (on the 5 GHz
2354 * band), and IEEE80211_CHAN_RADAR is not set. Instantiating a GO on a
2355 * channel that has the GO_CONCURRENT attribute set can be done when there
2356 * is a clear assessment that the device is operating under the guidance of
2357 * an authorized master, i.e., setting up a GO while the device is also
2358 * connected to an AP with DFS and radar detection on the UNII band (it is
2359 * up to user-space, i.e., wpa_supplicant to perform the required
2360 * verifications)
2345 * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number 2361 * @NL80211_FREQUENCY_ATTR_MAX: highest frequency attribute number
2346 * currently defined 2362 * currently defined
2347 * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use 2363 * @__NL80211_FREQUENCY_ATTR_AFTER_LAST: internal use
2364 *
2365 * See https://apps.fcc.gov/eas/comments/GetPublishedDocument.html?id=327&tn=528122
2366 * for more information on the FCC description of the relaxations allowed
2367 * by NL80211_FREQUENCY_ATTR_INDOOR_ONLY and
2368 * NL80211_FREQUENCY_ATTR_GO_CONCURRENT.
2348 */ 2369 */
2349enum nl80211_frequency_attr { 2370enum nl80211_frequency_attr {
2350 __NL80211_FREQUENCY_ATTR_INVALID, 2371 __NL80211_FREQUENCY_ATTR_INVALID,
@@ -2361,6 +2382,8 @@ enum nl80211_frequency_attr {
2361 NL80211_FREQUENCY_ATTR_NO_80MHZ, 2382 NL80211_FREQUENCY_ATTR_NO_80MHZ,
2362 NL80211_FREQUENCY_ATTR_NO_160MHZ, 2383 NL80211_FREQUENCY_ATTR_NO_160MHZ,
2363 NL80211_FREQUENCY_ATTR_DFS_CAC_TIME, 2384 NL80211_FREQUENCY_ATTR_DFS_CAC_TIME,
2385 NL80211_FREQUENCY_ATTR_INDOOR_ONLY,
2386 NL80211_FREQUENCY_ATTR_GO_CONCURRENT,
2364 2387
2365 /* keep last */ 2388 /* keep last */
2366 __NL80211_FREQUENCY_ATTR_AFTER_LAST, 2389 __NL80211_FREQUENCY_ATTR_AFTER_LAST,