diff options
Diffstat (limited to 'include/linux/nl80211.h')
-rw-r--r-- | include/linux/nl80211.h | 100 |
1 files changed, 99 insertions, 1 deletions
diff --git a/include/linux/nl80211.h b/include/linux/nl80211.h index 28ba20fda3e2..2c8701687336 100644 --- a/include/linux/nl80211.h +++ b/include/linux/nl80211.h | |||
@@ -52,6 +52,8 @@ | |||
52 | * %NL80211_ATTR_WIPHY_CHANNEL_TYPE, %NL80211_ATTR_WIPHY_RETRY_SHORT, | 52 | * %NL80211_ATTR_WIPHY_CHANNEL_TYPE, %NL80211_ATTR_WIPHY_RETRY_SHORT, |
53 | * %NL80211_ATTR_WIPHY_RETRY_LONG, %NL80211_ATTR_WIPHY_FRAG_THRESHOLD, | 53 | * %NL80211_ATTR_WIPHY_RETRY_LONG, %NL80211_ATTR_WIPHY_FRAG_THRESHOLD, |
54 | * and/or %NL80211_ATTR_WIPHY_RTS_THRESHOLD. | 54 | * and/or %NL80211_ATTR_WIPHY_RTS_THRESHOLD. |
55 | * However, for setting the channel, see %NL80211_CMD_SET_CHANNEL | ||
56 | * instead, the support here is for backward compatibility only. | ||
55 | * @NL80211_CMD_NEW_WIPHY: Newly created wiphy, response to get request | 57 | * @NL80211_CMD_NEW_WIPHY: Newly created wiphy, response to get request |
56 | * or rename notification. Has attributes %NL80211_ATTR_WIPHY and | 58 | * or rename notification. Has attributes %NL80211_ATTR_WIPHY and |
57 | * %NL80211_ATTR_WIPHY_NAME. | 59 | * %NL80211_ATTR_WIPHY_NAME. |
@@ -130,7 +132,7 @@ | |||
130 | * %NL80211_ATTR_REG_RULE_POWER_MAX_ANT_GAIN and | 132 | * %NL80211_ATTR_REG_RULE_POWER_MAX_ANT_GAIN and |
131 | * %NL80211_ATTR_REG_RULE_POWER_MAX_EIRP. | 133 | * %NL80211_ATTR_REG_RULE_POWER_MAX_EIRP. |
132 | * @NL80211_CMD_REQ_SET_REG: ask the wireless core to set the regulatory domain | 134 | * @NL80211_CMD_REQ_SET_REG: ask the wireless core to set the regulatory domain |
133 | * to the the specified ISO/IEC 3166-1 alpha2 country code. The core will | 135 | * to the specified ISO/IEC 3166-1 alpha2 country code. The core will |
134 | * store this as a valid request and then query userspace for it. | 136 | * store this as a valid request and then query userspace for it. |
135 | * | 137 | * |
136 | * @NL80211_CMD_GET_MESH_PARAMS: Get mesh networking properties for the | 138 | * @NL80211_CMD_GET_MESH_PARAMS: Get mesh networking properties for the |
@@ -323,6 +325,21 @@ | |||
323 | * the TX command and %NL80211_ATTR_FRAME includes the contents of the | 325 | * the TX command and %NL80211_ATTR_FRAME includes the contents of the |
324 | * frame. %NL80211_ATTR_ACK flag is included if the recipient acknowledged | 326 | * frame. %NL80211_ATTR_ACK flag is included if the recipient acknowledged |
325 | * the frame. | 327 | * the frame. |
328 | * @NL80211_CMD_SET_CQM: Connection quality monitor configuration. This command | ||
329 | * is used to configure connection quality monitoring notification trigger | ||
330 | * levels. | ||
331 | * @NL80211_CMD_NOTIFY_CQM: Connection quality monitor notification. This | ||
332 | * command is used as an event to indicate the that a trigger level was | ||
333 | * reached. | ||
334 | * @NL80211_CMD_SET_CHANNEL: Set the channel (using %NL80211_ATTR_WIPHY_FREQ | ||
335 | * and %NL80211_ATTR_WIPHY_CHANNEL_TYPE) the given interface (identifed | ||
336 | * by %NL80211_ATTR_IFINDEX) shall operate on. | ||
337 | * In case multiple channels are supported by the device, the mechanism | ||
338 | * with which it switches channels is implementation-defined. | ||
339 | * When a monitor interface is given, it can only switch channel while | ||
340 | * no other interfaces are operating to avoid disturbing the operation | ||
341 | * of any other interfaces, and other interfaces will again take | ||
342 | * precedence when they are used. | ||
326 | * | 343 | * |
327 | * @NL80211_CMD_MAX: highest used command number | 344 | * @NL80211_CMD_MAX: highest used command number |
328 | * @__NL80211_CMD_AFTER_LAST: internal use | 345 | * @__NL80211_CMD_AFTER_LAST: internal use |
@@ -419,6 +436,11 @@ enum nl80211_commands { | |||
419 | NL80211_CMD_SET_POWER_SAVE, | 436 | NL80211_CMD_SET_POWER_SAVE, |
420 | NL80211_CMD_GET_POWER_SAVE, | 437 | NL80211_CMD_GET_POWER_SAVE, |
421 | 438 | ||
439 | NL80211_CMD_SET_CQM, | ||
440 | NL80211_CMD_NOTIFY_CQM, | ||
441 | |||
442 | NL80211_CMD_SET_CHANNEL, | ||
443 | |||
422 | /* add new commands above here */ | 444 | /* add new commands above here */ |
423 | 445 | ||
424 | /* used to define NL80211_CMD_MAX below */ | 446 | /* used to define NL80211_CMD_MAX below */ |
@@ -691,6 +713,24 @@ enum nl80211_commands { | |||
691 | * @NL80211_ATTR_ACK: Flag attribute indicating that the frame was | 713 | * @NL80211_ATTR_ACK: Flag attribute indicating that the frame was |
692 | * acknowledged by the recipient. | 714 | * acknowledged by the recipient. |
693 | * | 715 | * |
716 | * @NL80211_ATTR_CQM: connection quality monitor configuration in a | ||
717 | * nested attribute with %NL80211_ATTR_CQM_* sub-attributes. | ||
718 | * | ||
719 | * @NL80211_ATTR_LOCAL_STATE_CHANGE: Flag attribute to indicate that a command | ||
720 | * is requesting a local authentication/association state change without | ||
721 | * invoking actual management frame exchange. This can be used with | ||
722 | * NL80211_CMD_AUTHENTICATE, NL80211_CMD_DEAUTHENTICATE, | ||
723 | * NL80211_CMD_DISASSOCIATE. | ||
724 | * | ||
725 | * @NL80211_ATTR_AP_ISOLATE: (AP mode) Do not forward traffic between stations | ||
726 | * connected to this BSS. | ||
727 | * | ||
728 | * @NL80211_ATTR_WIPHY_TX_POWER_SETTING: Transmit power setting type. See | ||
729 | * &enum nl80211_tx_power_setting for possible values. | ||
730 | * @NL80211_ATTR_WIPHY_TX_POWER_LEVEL: Transmit power level in signed mBm units. | ||
731 | * This is used in association with @NL80211_ATTR_WIPHY_TX_POWER_SETTING | ||
732 | * for non-automatic settings. | ||
733 | * | ||
694 | * @NL80211_ATTR_MAX: highest attribute number currently defined | 734 | * @NL80211_ATTR_MAX: highest attribute number currently defined |
695 | * @__NL80211_ATTR_AFTER_LAST: internal use | 735 | * @__NL80211_ATTR_AFTER_LAST: internal use |
696 | */ | 736 | */ |
@@ -842,6 +882,15 @@ enum nl80211_attrs { | |||
842 | 882 | ||
843 | NL80211_ATTR_PS_STATE, | 883 | NL80211_ATTR_PS_STATE, |
844 | 884 | ||
885 | NL80211_ATTR_CQM, | ||
886 | |||
887 | NL80211_ATTR_LOCAL_STATE_CHANGE, | ||
888 | |||
889 | NL80211_ATTR_AP_ISOLATE, | ||
890 | |||
891 | NL80211_ATTR_WIPHY_TX_POWER_SETTING, | ||
892 | NL80211_ATTR_WIPHY_TX_POWER_LEVEL, | ||
893 | |||
845 | /* add attributes here, update the policy in nl80211.c */ | 894 | /* add attributes here, update the policy in nl80211.c */ |
846 | 895 | ||
847 | __NL80211_ATTR_AFTER_LAST, | 896 | __NL80211_ATTR_AFTER_LAST, |
@@ -1583,4 +1632,53 @@ enum nl80211_ps_state { | |||
1583 | NL80211_PS_ENABLED, | 1632 | NL80211_PS_ENABLED, |
1584 | }; | 1633 | }; |
1585 | 1634 | ||
1635 | /** | ||
1636 | * enum nl80211_attr_cqm - connection quality monitor attributes | ||
1637 | * @__NL80211_ATTR_CQM_INVALID: invalid | ||
1638 | * @NL80211_ATTR_CQM_RSSI_THOLD: RSSI threshold in dBm. This value specifies | ||
1639 | * the threshold for the RSSI level at which an event will be sent. Zero | ||
1640 | * to disable. | ||
1641 | * @NL80211_ATTR_CQM_RSSI_HYST: RSSI hysteresis in dBm. This value specifies | ||
1642 | * the minimum amount the RSSI level must change after an event before a | ||
1643 | * new event may be issued (to reduce effects of RSSI oscillation). | ||
1644 | * @NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT: RSSI threshold event | ||
1645 | * @__NL80211_ATTR_CQM_AFTER_LAST: internal | ||
1646 | * @NL80211_ATTR_CQM_MAX: highest key attribute | ||
1647 | */ | ||
1648 | enum nl80211_attr_cqm { | ||
1649 | __NL80211_ATTR_CQM_INVALID, | ||
1650 | NL80211_ATTR_CQM_RSSI_THOLD, | ||
1651 | NL80211_ATTR_CQM_RSSI_HYST, | ||
1652 | NL80211_ATTR_CQM_RSSI_THRESHOLD_EVENT, | ||
1653 | |||
1654 | /* keep last */ | ||
1655 | __NL80211_ATTR_CQM_AFTER_LAST, | ||
1656 | NL80211_ATTR_CQM_MAX = __NL80211_ATTR_CQM_AFTER_LAST - 1 | ||
1657 | }; | ||
1658 | |||
1659 | /** | ||
1660 | * enum nl80211_cqm_rssi_threshold_event - RSSI threshold event | ||
1661 | * @NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW - The RSSI level is lower than the | ||
1662 | * configured threshold | ||
1663 | * @NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH - The RSSI is higher than the | ||
1664 | * configured threshold | ||
1665 | */ | ||
1666 | enum nl80211_cqm_rssi_threshold_event { | ||
1667 | NL80211_CQM_RSSI_THRESHOLD_EVENT_LOW, | ||
1668 | NL80211_CQM_RSSI_THRESHOLD_EVENT_HIGH, | ||
1669 | }; | ||
1670 | |||
1671 | |||
1672 | /** | ||
1673 | * enum nl80211_tx_power_setting - TX power adjustment | ||
1674 | * @NL80211_TX_POWER_AUTOMATIC: automatically determine transmit power | ||
1675 | * @NL80211_TX_POWER_LIMITED: limit TX power by the mBm parameter | ||
1676 | * @NL80211_TX_POWER_FIXED: fix TX power to the mBm parameter | ||
1677 | */ | ||
1678 | enum nl80211_tx_power_setting { | ||
1679 | NL80211_TX_POWER_AUTOMATIC, | ||
1680 | NL80211_TX_POWER_LIMITED, | ||
1681 | NL80211_TX_POWER_FIXED, | ||
1682 | }; | ||
1683 | |||
1586 | #endif /* __LINUX_NL80211_H */ | 1684 | #endif /* __LINUX_NL80211_H */ |