Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Qualcomm Atheros OUI and vendor specific assignments |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, Qualcomm Atheros, Inc. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4 | * Copyright (c) 2018-2020, The Linux Foundation |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 5 | * |
| 6 | * This software may be distributed under the terms of the BSD license. |
| 7 | * See README for more details. |
| 8 | */ |
| 9 | |
| 10 | #ifndef QCA_VENDOR_H |
| 11 | #define QCA_VENDOR_H |
| 12 | |
| 13 | /* |
| 14 | * This file is a registry of identifier assignments from the Qualcomm Atheros |
| 15 | * OUI 00:13:74 for purposes other than MAC address assignment. New identifiers |
| 16 | * can be assigned through normal review process for changes to the upstream |
| 17 | * hostap.git repository. |
| 18 | */ |
| 19 | |
| 20 | #define OUI_QCA 0x001374 |
| 21 | |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 22 | #ifndef BIT |
| 23 | #define BIT(x) (1U << (x)) |
| 24 | #endif |
| 25 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 26 | /** |
Dmitry Shmidt | f9bdef9 | 2014-04-25 10:46:36 -0700 | [diff] [blame] | 27 | * enum qca_radiotap_vendor_ids - QCA radiotap vendor namespace IDs |
| 28 | */ |
| 29 | enum qca_radiotap_vendor_ids { |
| 30 | QCA_RADIOTAP_VID_WLANTEST = 0, |
| 31 | }; |
| 32 | |
| 33 | /** |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 34 | * enum qca_nl80211_vendor_subcmds - QCA nl80211 vendor command identifiers |
| 35 | * |
| 36 | * @QCA_NL80211_VENDOR_SUBCMD_UNSPEC: Reserved value 0 |
| 37 | * |
| 38 | * @QCA_NL80211_VENDOR_SUBCMD_TEST: Test command/event |
| 39 | * |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 40 | * @QCA_NL80211_VENDOR_SUBCMD_ROAMING: Set roaming policy for drivers that use |
| 41 | * internal BSS-selection. This command uses |
| 42 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY to specify the new roaming policy |
| 43 | * for the current connection (i.e., changes policy set by the nl80211 |
| 44 | * Connect command). @QCA_WLAN_VENDOR_ATTR_MAC_ADDR may optionally be |
| 45 | * included to indicate which BSS to use in case roaming is disabled. |
| 46 | * |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 47 | * @QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY: Recommendation of frequency |
| 48 | * ranges to avoid to reduce issues due to interference or internal |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 49 | * co-existence information in the driver. These frequencies aim to |
| 50 | * minimize the traffic but not to totally avoid the traffic. That said |
| 51 | * for a P2P use case, these frequencies are allowed for the P2P |
| 52 | * discovery/negotiation but avoid the group to get formed on these |
| 53 | * frequencies. The event data structure is defined in |
| 54 | * struct qca_avoid_freq_list. |
Dmitry Shmidt | d11f019 | 2014-03-24 12:09:47 -0700 | [diff] [blame] | 55 | * |
| 56 | * @QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY: Command to check driver support |
| 57 | * for DFS offloading. |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 58 | * |
| 59 | * @QCA_NL80211_VENDOR_SUBCMD_NAN: NAN command/event which is used to pass |
| 60 | * NAN Request/Response and NAN Indication messages. These messages are |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 61 | * interpreted between the framework and the firmware component. While |
| 62 | * sending the command from userspace to the driver, payload is not |
| 63 | * encapsulated inside any attribute. Attribute QCA_WLAN_VENDOR_ATTR_NAN |
| 64 | * is used when receiving vendor events in userspace from the driver. |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 65 | * |
| 66 | * @QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_SET_KEY: Set key operation that can be |
| 67 | * used to configure PMK to the driver even when not connected. This can |
| 68 | * be used to request offloading of key management operations. Only used |
| 69 | * if device supports QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD. |
| 70 | * |
| 71 | * @QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_ROAM_AUTH: An extended version of |
| 72 | * NL80211_CMD_ROAM event with optional attributes including information |
| 73 | * from offloaded key management operation. Uses |
| 74 | * enum qca_wlan_vendor_attr_roam_auth attributes. Only used |
| 75 | * if device supports QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD. |
| 76 | * |
| 77 | * @QCA_NL80211_VENDOR_SUBCMD_DO_ACS: ACS command/event which is used to |
| 78 | * invoke the ACS function in device and pass selected channels to |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 79 | * hostapd. Uses enum qca_wlan_vendor_attr_acs_offload attributes. |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 80 | * |
| 81 | * @QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES: Command to get the features |
| 82 | * supported by the driver. enum qca_wlan_vendor_features defines |
| 83 | * the possible features. |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 84 | * |
| 85 | * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_STARTED: Event used by driver, |
| 86 | * which supports DFS offloading, to indicate a channel availability check |
| 87 | * start. |
| 88 | * |
| 89 | * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_FINISHED: Event used by driver, |
| 90 | * which supports DFS offloading, to indicate a channel availability check |
| 91 | * completion. |
| 92 | * |
| 93 | * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_ABORTED: Event used by driver, |
| 94 | * which supports DFS offloading, to indicate that the channel availability |
| 95 | * check aborted, no change to the channel status. |
| 96 | * |
| 97 | * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_NOP_FINISHED: Event used by |
| 98 | * driver, which supports DFS offloading, to indicate that the |
| 99 | * Non-Occupancy Period for this channel is over, channel becomes usable. |
| 100 | * |
| 101 | * @QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_RADAR_DETECTED: Event used by driver, |
| 102 | * which supports DFS offloading, to indicate a radar pattern has been |
| 103 | * detected. The channel is now unusable. |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 104 | * |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 105 | * @QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_INFO: Get information from the driver. |
| 106 | * Attributes defined in enum qca_wlan_vendor_attr_get_wifi_info. |
| 107 | * |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 108 | * @QCA_NL80211_VENDOR_SUBCMD_GET_LOGGER_FEATURE_SET: Get the feature bitmap |
| 109 | * based on enum wifi_logger_supported_features. Attributes defined in |
| 110 | * enum qca_wlan_vendor_attr_get_logger_features. |
| 111 | * |
| 112 | * @QCA_NL80211_VENDOR_SUBCMD_GET_RING_DATA: Get the ring data from a particular |
| 113 | * logger ring, QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_RING_ID is passed as the |
| 114 | * attribute for this command. Attributes defined in |
| 115 | * enum qca_wlan_vendor_attr_wifi_logger_start. |
| 116 | * |
| 117 | * @QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_CAPABILITIES: Get the supported TDLS |
| 118 | * capabilities of the driver, parameters includes the attributes defined |
| 119 | * in enum qca_wlan_vendor_attr_tdls_get_capabilities. |
| 120 | * |
| 121 | * @QCA_NL80211_VENDOR_SUBCMD_OFFLOADED_PACKETS: Vendor command used to offload |
| 122 | * sending of certain periodic IP packet to firmware, attributes defined in |
| 123 | * enum qca_wlan_vendor_attr_offloaded_packets. |
| 124 | * |
| 125 | * @QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI: Command used to configure RSSI |
| 126 | * monitoring, defines min and max RSSI which are configured for RSSI |
| 127 | * monitoring. Also used to notify the RSSI breach and provides the BSSID |
| 128 | * and RSSI value that was breached. Attributes defined in |
| 129 | * enum qca_wlan_vendor_attr_rssi_monitoring. |
| 130 | * |
| 131 | * @QCA_NL80211_VENDOR_SUBCMD_NDP: Command used for performing various NAN |
| 132 | * Data Path (NDP) related operations, attributes defined in |
| 133 | * enum qca_wlan_vendor_attr_ndp_params. |
| 134 | * |
| 135 | * @QCA_NL80211_VENDOR_SUBCMD_ND_OFFLOAD: Command used to enable/disable |
| 136 | * Neighbour Discovery offload, attributes defined in |
| 137 | * enum qca_wlan_vendor_attr_nd_offload. |
| 138 | * |
| 139 | * @QCA_NL80211_VENDOR_SUBCMD_PACKET_FILTER: Used to set/get the various |
| 140 | * configuration parameter for BPF packet filter, attributes defined in |
| 141 | * enum qca_wlan_vendor_attr_packet_filter. |
| 142 | * |
| 143 | * @QCA_NL80211_VENDOR_SUBCMD_GET_BUS_SIZE: Gets the driver-firmware |
| 144 | * maximum supported size, attributes defined in |
| 145 | * enum qca_wlan_vendor_drv_info. |
| 146 | * |
| 147 | * @QCA_NL80211_VENDOR_SUBCMD_GET_WAKE_REASON_STATS: Command to get various |
| 148 | * data about wake reasons and datapath IP statistics, attributes defined |
| 149 | * in enum qca_wlan_vendor_attr_wake_stats. |
| 150 | * |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 151 | * @QCA_NL80211_VENDOR_SUBCMD_OCB_SET_CONFIG: Command used to set configuration |
| 152 | * for IEEE 802.11 communicating outside the context of a basic service |
| 153 | * set, called OCB command. Uses the attributes defines in |
| 154 | * enum qca_wlan_vendor_attr_ocb_set_config. |
| 155 | * |
| 156 | * @QCA_NL80211_VENDOR_SUBCMD_OCB_SET_UTC_TIME: Command used to set OCB |
| 157 | * UTC time. Use the attributes defines in |
| 158 | * enum qca_wlan_vendor_attr_ocb_set_utc_time. |
| 159 | * |
| 160 | * @QCA_NL80211_VENDOR_SUBCMD_OCB_START_TIMING_ADVERT: Command used to start |
| 161 | * sending OCB timing advert frames. Uses the attributes defines in |
| 162 | * enum qca_wlan_vendor_attr_ocb_start_timing_advert. |
| 163 | * |
| 164 | * @QCA_NL80211_VENDOR_SUBCMD_OCB_STOP_TIMING_ADVERT: Command used to stop |
| 165 | * OCB timing advert. Uses the attributes defines in |
| 166 | * enum qca_wlan_vendor_attr_ocb_stop_timing_advert. |
| 167 | * |
| 168 | * @QCA_NL80211_VENDOR_SUBCMD_OCB_GET_TSF_TIMER: Command used to get TSF |
| 169 | * timer value. Uses the attributes defines in |
| 170 | * enum qca_wlan_vendor_attr_ocb_get_tsf_resp. |
| 171 | * |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 172 | * @QCA_NL80211_VENDOR_SUBCMD_LINK_PROPERTIES: Command/event to update the |
| 173 | * link properties of the respective interface. As an event, is used |
| 174 | * to notify the connected station's status. The attributes for this |
| 175 | * command are defined in enum qca_wlan_vendor_attr_link_properties. |
| 176 | * |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 177 | * @QCA_NL80211_VENDOR_SUBCMD_SETBAND: Command to configure the enabled band(s) |
| 178 | * to the driver. This command sets the band(s) through either the |
| 179 | * attribute QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE or |
| 180 | * QCA_WLAN_VENDOR_ATTR_SETBAND_MASK (or both). |
| 181 | * QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE refers enum qca_set_band as unsigned |
| 182 | * integer values and QCA_WLAN_VENDOR_ATTR_SETBAND_MASK refers it as 32 |
| 183 | * bit unsigned bitmask values. The allowed values for |
| 184 | * QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE are limited to QCA_SETBAND_AUTO, |
| 185 | * QCA_SETBAND_5G, and QCA_SETBAND_2G. Other values/bitmasks are valid for |
| 186 | * QCA_WLAN_VENDOR_ATTR_SETBAND_MASK. The attribute |
| 187 | * QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE is deprecated and the recommendation |
| 188 | * is to use the QCA_WLAN_VENDOR_ATTR_SETBAND_MASK. If the both attributes |
| 189 | * are included for backwards compatibility, the configurations through |
| 190 | * QCA_WLAN_VENDOR_ATTR_SETBAND_MASK will take the precedence with drivers |
| 191 | * that support both attributes. |
| 192 | * |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 193 | * @QCA_NL80211_VENDOR_SUBCMD_ACS_POLICY: This command is used to configure |
| 194 | * DFS policy and channel hint for ACS operation. This command uses the |
| 195 | * attributes defined in enum qca_wlan_vendor_attr_acs_config and |
| 196 | * enum qca_acs_dfs_mode. |
| 197 | * |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 198 | * @QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_START: Command used to |
| 199 | * start the P2P Listen offload function in device and pass the listen |
| 200 | * channel, period, interval, count, device types, and vendor specific |
| 201 | * information elements to the device driver and firmware. |
| 202 | * Uses the attributes defines in |
| 203 | * enum qca_wlan_vendor_attr_p2p_listen_offload. |
| 204 | * |
| 205 | * @QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_STOP: Command/event used to |
| 206 | * indicate stop request/response of the P2P Listen offload function in |
| 207 | * device. As an event, it indicates either the feature stopped after it |
| 208 | * was already running or feature has actually failed to start. Uses the |
| 209 | * attributes defines in enum qca_wlan_vendor_attr_p2p_listen_offload. |
| 210 | * |
| 211 | * @QCA_NL80211_VENDOR_SUBCMD_SAP_CONDITIONAL_CHAN_SWITCH: After AP starts |
| 212 | * beaconing, this sub command provides the driver, the frequencies on the |
| 213 | * 5 GHz band to check for any radar activity. Driver selects one channel |
| 214 | * from this priority list provided through |
| 215 | * @QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_FREQ_LIST and starts |
| 216 | * to check for radar activity on it. If no radar activity is detected |
| 217 | * during the channel availability check period, driver internally switches |
| 218 | * to the selected frequency of operation. If the frequency is zero, driver |
| 219 | * internally selects a channel. The status of this conditional switch is |
| 220 | * indicated through an event using the same sub command through |
| 221 | * @QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_STATUS. Attributes are |
| 222 | * listed in qca_wlan_vendor_attr_sap_conditional_chan_switch. |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 223 | * |
| 224 | * @QCA_NL80211_VENDOR_SUBCMD_GPIO_CONFIG_COMMAND: Set GPIO pins. This uses the |
| 225 | * attributes defined in enum qca_wlan_gpio_attr. |
| 226 | * |
| 227 | * @QCA_NL80211_VENDOR_SUBCMD_GET_HW_CAPABILITY: Fetch hardware capabilities. |
| 228 | * This uses @QCA_WLAN_VENDOR_ATTR_GET_HW_CAPABILITY to indicate which |
| 229 | * capabilities are to be fetched and other |
| 230 | * enum qca_wlan_vendor_attr_get_hw_capability attributes to return the |
| 231 | * requested capabilities. |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 232 | * |
| 233 | * @QCA_NL80211_VENDOR_SUBCMD_LL_STATS_EXT: Link layer statistics extension. |
| 234 | * enum qca_wlan_vendor_attr_ll_stats_ext attributes are used with this |
| 235 | * command and event. |
| 236 | * |
| 237 | * @QCA_NL80211_VENDOR_SUBCMD_LOC_GET_CAPA: Get capabilities for |
| 238 | * indoor location features. Capabilities are reported in |
| 239 | * QCA_WLAN_VENDOR_ATTR_LOC_CAPA. |
| 240 | * |
| 241 | * @QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION: Start an FTM |
| 242 | * (fine timing measurement) session with one or more peers. |
| 243 | * Specify Session cookie in QCA_WLAN_VENDOR_ATTR_FTM_SESSION_COOKIE and |
| 244 | * peer information in QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEERS. |
| 245 | * On success, 0 or more QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT |
| 246 | * events will be reported, followed by |
| 247 | * QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE event to indicate |
| 248 | * end of session. |
| 249 | * Refer to IEEE P802.11-REVmc/D7.0, 11.24.6 |
| 250 | * |
| 251 | * @QCA_NL80211_VENDOR_SUBCMD_FTM_ABORT_SESSION: Abort a running session. |
| 252 | * A QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE will be reported with |
| 253 | * status code indicating session was aborted. |
| 254 | * |
| 255 | * @QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT: Event with measurement |
| 256 | * results for one peer. Results are reported in |
| 257 | * QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEER_RESULTS. |
| 258 | * |
| 259 | * @QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE: Event triggered when |
| 260 | * FTM session is finished, either successfully or aborted by |
| 261 | * request. |
| 262 | * |
| 263 | * @QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER: Configure FTM responder |
| 264 | * mode. QCA_WLAN_VENDOR_ATTR_FTM_RESPONDER_ENABLE specifies whether |
| 265 | * to enable or disable the responder. LCI/LCR reports can be |
| 266 | * configured with QCA_WLAN_VENDOR_ATTR_FTM_LCI and |
| 267 | * QCA_WLAN_VENDOR_ATTR_FTM_LCR. Can be called multiple |
| 268 | * times to update the LCI/LCR reports. |
| 269 | * |
| 270 | * @QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS: Perform a standalone AOA (angle of |
| 271 | * arrival) measurement with a single peer. Specify peer MAC address in |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 272 | * QCA_WLAN_VENDOR_ATTR_MAC_ADDR and optionally frequency (MHz) in |
| 273 | * QCA_WLAN_VENDOR_ATTR_FREQ (if not specified, locate peer in kernel |
| 274 | * scan results cache and use the frequency from there). |
| 275 | * Also specify measurement type in QCA_WLAN_VENDOR_ATTR_AOA_TYPE. |
| 276 | * Measurement result is reported in |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 277 | * QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT event. |
| 278 | * |
| 279 | * @QCA_NL80211_VENDOR_SUBCMD_AOA_ABORT_MEAS: Abort an AOA measurement. Specify |
| 280 | * peer MAC address in QCA_WLAN_VENDOR_ATTR_MAC_ADDR. |
| 281 | * |
| 282 | * @QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT: Event that reports |
| 283 | * the AOA measurement result. |
| 284 | * Peer MAC address reported in QCA_WLAN_VENDOR_ATTR_MAC_ADDR. |
| 285 | * success/failure status is reported in |
| 286 | * QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS. |
| 287 | * Measurement data is reported in QCA_WLAN_VENDOR_ATTR_AOA_MEAS_RESULT. |
| 288 | * The antenna array(s) used in the measurement are reported in |
| 289 | * QCA_WLAN_VENDOR_ATTR_LOC_ANTENNA_ARRAY_MASK. |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 290 | * |
| 291 | * @QCA_NL80211_VENDOR_SUBCMD_ENCRYPTION_TEST: Encrypt/decrypt the given |
| 292 | * data as per the given parameters. |
| 293 | * |
| 294 | * @QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI: Get antenna RSSI value for a |
| 295 | * specific chain. |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 296 | * |
| 297 | * @QCA_NL80211_VENDOR_SUBCMD_DMG_RF_GET_SECTOR_CFG: Get low level |
| 298 | * configuration for a DMG RF sector. Specify sector index in |
| 299 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_INDEX, sector type in |
| 300 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE and RF modules |
| 301 | * to return sector information for in |
| 302 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_MODULE_MASK. Returns sector configuration |
| 303 | * in QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG. Also return the |
| 304 | * exact time where information was captured in |
| 305 | * QCA_WLAN_VENDOR_ATTR_TSF. |
| 306 | * |
| 307 | * @QCA_NL80211_VENDOR_SUBCMD_DMG_RF_SET_SECTOR_CFG: Set low level |
| 308 | * configuration for a DMG RF sector. Specify sector index in |
| 309 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_INDEX, sector type in |
| 310 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE and sector configuration |
| 311 | * for one or more DMG RF modules in |
| 312 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG. |
| 313 | * |
| 314 | * @QCA_NL80211_VENDOR_SUBCMD_DMG_RF_GET_SELECTED_SECTOR: Get selected |
| 315 | * DMG RF sector for a station. This is the sector that the HW |
| 316 | * will use to communicate with the station. Specify the MAC address |
| 317 | * of associated station/AP/PCP in QCA_WLAN_VENDOR_ATTR_MAC_ADDR (not |
| 318 | * needed for unassociated station). Specify sector type to return in |
| 319 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE. Returns the selected |
| 320 | * sector index in QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_INDEX. |
| 321 | * Also return the exact time where the information was captured |
| 322 | * in QCA_WLAN_VENDOR_ATTR_TSF. |
| 323 | * |
| 324 | * @QCA_NL80211_VENDOR_SUBCMD_DMG_RF_SET_SELECTED_SECTOR: Set the |
| 325 | * selected DMG RF sector for a station. This is the sector that |
| 326 | * the HW will use to communicate with the station. |
| 327 | * Specify the MAC address of associated station/AP/PCP in |
| 328 | * QCA_WLAN_VENDOR_ATTR_MAC_ADDR, the sector type to select in |
| 329 | * QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE and the sector index |
| 330 | * in QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_INDEX. |
| 331 | * The selected sector will be locked such that it will not be |
| 332 | * modified like it normally does (for example when station |
| 333 | * moves around). To unlock the selected sector for a station |
| 334 | * pass the special value 0xFFFF in the sector index. To unlock |
| 335 | * all connected stations also pass a broadcast MAC address. |
| 336 | * |
| 337 | * @QCA_NL80211_VENDOR_SUBCMD_CONFIGURE_TDLS: Configure the TDLS behavior |
| 338 | * in the host driver. The different TDLS configurations are defined |
| 339 | * by the attributes in enum qca_wlan_vendor_attr_tdls_configuration. |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 340 | * |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 341 | * @QCA_NL80211_VENDOR_SUBCMD_GET_HE_CAPABILITIES: Query device IEEE 802.11ax HE |
| 342 | * capabilities. The response uses the attributes defined in |
| 343 | * enum qca_wlan_vendor_attr_get_he_capabilities. |
| 344 | * |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 345 | * @QCA_NL80211_VENDOR_SUBCMD_ABORT_SCAN: Abort an ongoing vendor scan that was |
| 346 | * started with QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN. This command |
| 347 | * carries the scan cookie of the corresponding scan request. The scan |
| 348 | * cookie is represented by QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 349 | * |
| 350 | * @QCA_NL80211_VENDOR_SUBCMD_SET_SAR_LIMITS: Set the Specific |
| 351 | * Absorption Rate (SAR) power limits. A critical regulation for |
| 352 | * FCC compliance, OEMs require methods to set SAR limits on TX |
| 353 | * power of WLAN/WWAN. enum qca_vendor_attr_sar_limits |
| 354 | * attributes are used with this command. |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 355 | * |
| 356 | * @QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS: This command/event is used by the |
| 357 | * host driver for offloading the implementation of Auto Channel Selection |
| 358 | * (ACS) to an external user space entity. This interface is used as the |
| 359 | * event from the host driver to the user space entity and also as the |
| 360 | * request from the user space entity to the host driver. The event from |
| 361 | * the host driver is used by the user space entity as an indication to |
| 362 | * start the ACS functionality. The attributes used by this event are |
| 363 | * represented by the enum qca_wlan_vendor_attr_external_acs_event. |
| 364 | * User space entity uses the same interface to inform the host driver with |
| 365 | * selected channels after the ACS operation using the attributes defined |
| 366 | * by enum qca_wlan_vendor_attr_external_acs_channels. |
| 367 | * |
| 368 | * @QCA_NL80211_VENDOR_SUBCMD_CHIP_PWRSAVE_FAILURE: Vendor event carrying the |
| 369 | * requisite information leading to a power save failure. The information |
| 370 | * carried as part of this event is represented by the |
| 371 | * enum qca_attr_chip_power_save_failure attributes. |
| 372 | * |
| 373 | * @QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_SET: Start/Stop the NUD statistics |
| 374 | * collection. Uses attributes defined in enum qca_attr_nud_stats_set. |
| 375 | * |
| 376 | * @QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_GET: Get the NUD statistics. These |
| 377 | * statistics are represented by the enum qca_attr_nud_stats_get |
| 378 | * attributes. |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 379 | * |
| 380 | * @QCA_NL80211_VENDOR_SUBCMD_FETCH_BSS_TRANSITION_STATUS: Sub-command to fetch |
| 381 | * the BSS transition status, whether accept or reject, for a list of |
| 382 | * candidate BSSIDs provided by the userspace. This uses the vendor |
| 383 | * attributes QCA_WLAN_VENDOR_ATTR_BTM_MBO_TRANSITION_REASON and |
| 384 | * QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO. The userspace shall specify |
| 385 | * the attributes QCA_WLAN_VENDOR_ATTR_BTM_MBO_TRANSITION_REASON and an |
| 386 | * array of QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_BSSID nested in |
| 387 | * QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO in the request. In the response |
| 388 | * the driver shall specify array of |
| 389 | * QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_BSSID and |
| 390 | * QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_STATUS pairs nested in |
| 391 | * QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO. |
| 392 | * |
| 393 | * @QCA_NL80211_VENDOR_SUBCMD_SET_TRACE_LEVEL: Set the trace level for a |
| 394 | * specific QCA module. The trace levels are represented by |
| 395 | * enum qca_attr_trace_level attributes. |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 396 | * |
| 397 | * @QCA_NL80211_VENDOR_SUBCMD_BRP_SET_ANT_LIMIT: Set the Beam Refinement |
| 398 | * Protocol antenna limit in different modes. See enum |
| 399 | * qca_wlan_vendor_attr_brp_ant_limit_mode. |
| 400 | * |
| 401 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START: Start spectral scan. The scan |
| 402 | * parameters are specified by enum qca_wlan_vendor_attr_spectral_scan. |
| 403 | * This returns a cookie (%QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_COOKIE) |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 404 | * identifying the operation in success case. In failure cases an |
| 405 | * error code (%QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_ERROR_CODE) |
| 406 | * describing the reason for the failure is returned. |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 407 | * |
| 408 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_STOP: Stop spectral scan. This uses |
| 409 | * a cookie (%QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_COOKIE) from |
| 410 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START to identify the scan to |
| 411 | * be stopped. |
| 412 | * |
| 413 | * @QCA_NL80211_VENDOR_SUBCMD_ACTIVE_TOS: Set the active Type Of Service on the |
| 414 | * specific interface. This can be used to modify some of the low level |
| 415 | * scan parameters (off channel dwell time, home channel time) in the |
| 416 | * driver/firmware. These parameters are maintained within the host driver. |
| 417 | * This command is valid only when the interface is in the connected state. |
| 418 | * These scan parameters shall be reset by the driver/firmware once |
| 419 | * disconnected. The attributes used with this command are defined in |
| 420 | * enum qca_wlan_vendor_attr_active_tos. |
| 421 | * |
| 422 | * @QCA_NL80211_VENDOR_SUBCMD_HANG: Event indicating to the user space that the |
| 423 | * driver has detected an internal failure. This event carries the |
| 424 | * information indicating the reason that triggered this detection. The |
| 425 | * attributes for this command are defined in |
| 426 | * enum qca_wlan_vendor_attr_hang. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 427 | * |
| 428 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CONFIG: Get the current values |
| 429 | * of spectral parameters used. The spectral scan parameters are specified |
| 430 | * by enum qca_wlan_vendor_attr_spectral_scan. |
| 431 | * |
| 432 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_DIAG_STATS: Get the debug stats |
| 433 | * for spectral scan functionality. The debug stats are specified by |
| 434 | * enum qca_wlan_vendor_attr_spectral_diag_stats. |
| 435 | * |
| 436 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CAP_INFO: Get spectral |
| 437 | * scan system capabilities. The capabilities are specified |
| 438 | * by enum qca_wlan_vendor_attr_spectral_cap. |
| 439 | * |
| 440 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_STATUS: Get the current |
| 441 | * status of spectral scan. The status values are specified |
| 442 | * by enum qca_wlan_vendor_attr_spectral_scan_status. |
| 443 | * |
| 444 | * @QCA_NL80211_VENDOR_SUBCMD_PEER_FLUSH_PENDING: Sub-command to flush |
| 445 | * peer pending packets. Specify the peer MAC address in |
| 446 | * QCA_WLAN_VENDOR_ATTR_PEER_ADDR and the access category of the packets |
| 447 | * in QCA_WLAN_VENDOR_ATTR_AC. The attributes are listed |
| 448 | * in enum qca_wlan_vendor_attr_flush_pending. |
| 449 | * |
| 450 | * @QCA_NL80211_VENDOR_SUBCMD_GET_RROP_INFO: Get vendor specific Representative |
| 451 | * RF Operating Parameter (RROP) information. The attributes for this |
| 452 | * information are defined in enum qca_wlan_vendor_attr_rrop_info. This is |
| 453 | * intended for use by external Auto Channel Selection applications. |
| 454 | * |
| 455 | * @QCA_NL80211_VENDOR_SUBCMD_GET_SAR_LIMITS: Get the Specific Absorption Rate |
| 456 | * (SAR) power limits. This is a companion to the command |
| 457 | * @QCA_NL80211_VENDOR_SUBCMD_SET_SAR_LIMITS and is used to retrieve the |
| 458 | * settings currently in use. The attributes returned by this command are |
| 459 | * defined by enum qca_vendor_attr_sar_limits. |
| 460 | * |
| 461 | * @QCA_NL80211_VENDOR_SUBCMD_WLAN_MAC_INFO: Provides the current behavior of |
| 462 | * the WLAN hardware MAC. Also, provides the WLAN netdev interface |
| 463 | * information attached to the respective MAC. |
| 464 | * This works both as a query (user space asks the current mode) or event |
| 465 | * interface (driver advertising the current mode to the user space). |
| 466 | * Driver does not trigger this event for temporary hardware mode changes. |
| 467 | * Mode changes w.r.t Wi-Fi connection update (VIZ creation / deletion, |
| 468 | * channel change, etc.) are updated with this event. Attributes for this |
| 469 | * interface are defined in enum qca_wlan_vendor_attr_mac. |
| 470 | * |
| 471 | * @QCA_NL80211_VENDOR_SUBCMD_SET_QDEPTH_THRESH: Set MSDU queue depth threshold |
| 472 | * per peer per TID. Attributes for this command are define in |
| 473 | * enum qca_wlan_set_qdepth_thresh_attr. |
| 474 | * @QCA_NL80211_VENDOR_SUBCMD_THERMAL_CMD: Provides the thermal shutdown action |
| 475 | * guide for WLAN driver. Request to suspend of driver and FW if the |
| 476 | * temperature is higher than the suspend threshold; resume action is |
| 477 | * requested to driver if the temperature is lower than the resume |
| 478 | * threshold. In user poll mode, request temperature data by user. For test |
| 479 | * purpose, getting thermal shutdown configuration parameters is needed. |
| 480 | * Attributes for this interface are defined in |
| 481 | * enum qca_wlan_vendor_attr_thermal_cmd. |
| 482 | * @QCA_NL80211_VENDOR_SUBCMD_THERMAL_EVENT: Thermal events reported from |
| 483 | * driver. Thermal temperature and indication of resume completion are |
| 484 | * reported as thermal events. The attributes for this command are defined |
| 485 | * in enum qca_wlan_vendor_attr_thermal_event. |
| 486 | * |
| 487 | * @QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION: Sub command to set WiFi |
| 488 | * test configuration. Attributes for this command are defined in |
| 489 | * enum qca_wlan_vendor_attr_wifi_test_config. |
| 490 | * |
| 491 | * @QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER: This command is used to configure an |
| 492 | * RX filter to receive frames from stations that are active on the |
| 493 | * operating channel, but not associated with the local device (e.g., STAs |
| 494 | * associated with other APs). Filtering is done based on a list of BSSIDs |
| 495 | * and STA MAC addresses added by the user. This command is also used to |
| 496 | * fetch the statistics of unassociated stations. The attributes used with |
| 497 | * this command are defined in enum qca_wlan_vendor_attr_bss_filter. |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 498 | * |
| 499 | * @QCA_NL80211_VENDOR_SUBCMD_NAN_EXT: An extendable version of NAN vendor |
| 500 | * command. The earlier command for NAN, QCA_NL80211_VENDOR_SUBCMD_NAN, |
| 501 | * carried a payload which was a binary blob of data. The command was not |
| 502 | * extendable to send more information. The newer version carries the |
| 503 | * legacy blob encapsulated within an attribute and can be extended with |
| 504 | * additional vendor attributes that can enhance the NAN command interface. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 505 | * @QCA_NL80211_VENDOR_SUBCMD_ROAM_SCAN_EVENT: Event to indicate scan triggered |
| 506 | * or stopped within driver/firmware in order to initiate roaming. The |
| 507 | * attributes used with this event are defined in enum |
| 508 | * qca_wlan_vendor_attr_roam_scan. Some drivers may not send these events |
| 509 | * in few cases, e.g., if the host processor is sleeping when this event |
| 510 | * is generated in firmware. |
| 511 | * |
| 512 | * @QCA_NL80211_VENDOR_SUBCMD_PEER_CFR_CAPTURE_CFG: This command is used to |
| 513 | * configure parameters per peer to capture Channel Frequency Response |
| 514 | * (CFR) and enable Periodic CFR capture. The attributes for this command |
| 515 | * are defined in enum qca_wlan_vendor_peer_cfr_capture_attr. |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 516 | * |
| 517 | * @QCA_NL80211_VENDOR_SUBCMD_THROUGHPUT_CHANGE_EVENT: Event to indicate changes |
| 518 | * in throughput dynamically. The driver estimates the throughput based on |
| 519 | * number of packets being transmitted/received per second and indicates |
| 520 | * the changes in throughput to user space. Userspace tools can use this |
| 521 | * information to configure kernel's TCP parameters in order to achieve |
| 522 | * peak throughput. Optionally, the driver will also send guidance on |
| 523 | * modifications to kernel's TCP parameters which can be referred by |
| 524 | * userspace tools. The attributes used with this event are defined in enum |
| 525 | * qca_wlan_vendor_attr_throughput_change. |
| 526 | * |
| 527 | * @QCA_NL80211_VENDOR_SUBCMD_COEX_CONFIG: This command is used to set |
| 528 | * priorities among different types of traffic during coex scenarios. |
| 529 | * Current supported prioritization is among WLAN/BT/ZIGBEE with different |
| 530 | * profiles mentioned in enum qca_coex_config_profiles. The associated |
| 531 | * attributes used with this command are defined in enum |
| 532 | * qca_vendor_attr_coex_config. |
| 533 | * |
| 534 | * Based on the config provided, FW will boost the weight and prioritize |
| 535 | * the traffic for that subsystem (WLAN/BT/Zigbee). |
| 536 | * |
| 537 | * @QCA_NL80211_VENDOR_SUBCMD_GET_SUPPORTED_AKMS: This command is used to query |
| 538 | * the supported AKM suite selectorss from the driver. It returns the list |
| 539 | * of supported AKMs in the attribute NL80211_ATTR_AKM_SUITES. |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 540 | * @QCA_NL80211_VENDOR_SUBCMD_GET_FW_STATE: This command is used to get firmware |
| 541 | * state from the driver. It returns the firmware state in the attribute |
| 542 | * QCA_WLAN_VENDOR_ATTR_FW_STATE. |
| 543 | * @QCA_NL80211_VENDOR_SUBCMD_PEER_STATS_CACHE_FLUSH: This vendor subcommand |
| 544 | * is used by the driver to flush per-peer cached statistics to user space |
| 545 | * application. This interface is used as an event from the driver to |
| 546 | * user space application. Attributes for this event are specified in |
| 547 | * enum qca_wlan_vendor_attr_peer_stats_cache_params. |
| 548 | * QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_DATA attribute is expected to be |
| 549 | * sent in the event. |
| 550 | * @QCA_NL80211_VENDOR_SUBCMD_MPTA_HELPER_CONFIG: This sub command is used to |
| 551 | * improve the success rate of Zigbee joining network. |
| 552 | * Due to PTA master limitation, Zigbee joining network success rate is |
| 553 | * low while WLAN is working. The WLAN driver needs to configure some |
| 554 | * parameters including Zigbee state and specific WLAN periods to enhance |
| 555 | * PTA master. All these parameters are delivered by the attributes |
| 556 | * defined in enum qca_mpta_helper_vendor_attr. |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 557 | * @QCA_NL80211_VENDOR_SUBCMD_BEACON_REPORTING: This sub command is used to |
| 558 | * implement Beacon frame reporting feature. |
| 559 | * |
| 560 | * Userspace can request the driver/firmware to periodically report |
| 561 | * received Beacon frames whose BSSID is same as the current connected |
| 562 | * BSS's MAC address. |
| 563 | * |
| 564 | * In case the STA seamlessly (without sending disconnect indication to |
| 565 | * userspace) roams to a different BSS, Beacon frame reporting will be |
| 566 | * automatically enabled for the Beacon frames whose BSSID is same as the |
| 567 | * MAC address of the new BSS. Beacon reporting will be stopped when the |
| 568 | * STA is disconnected (when the disconnect indication is sent to |
| 569 | * userspace) and need to be explicitly enabled by userspace for next |
| 570 | * connection. |
| 571 | * |
| 572 | * When a Beacon frame matching configured conditions is received, and if |
| 573 | * userspace has requested to send asynchronous beacon reports, the |
| 574 | * driver/firmware will encapsulate the details of the Beacon frame in an |
| 575 | * event and send it to userspace along with updating the BSS information |
| 576 | * in cfg80211 scan cache, otherwise driver will only update the cfg80211 |
| 577 | * scan cache with the information from the received Beacon frame but will |
| 578 | * not send any active report to userspace. |
| 579 | * |
| 580 | * The userspace can request the driver/firmware to stop reporting Beacon |
| 581 | * frames. If the driver/firmware is not able to receive Beacon frames due |
| 582 | * to other Wi-Fi operations such as off-channel activities, etc., the |
| 583 | * driver/firmware will send a pause event to userspace and stop reporting |
| 584 | * Beacon frames. Whether the beacon reporting will be automatically |
| 585 | * resumed or not by the driver/firmware later will be reported to |
| 586 | * userspace using the QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_AUTO_RESUMES |
| 587 | * flag. The beacon reporting shall be resumed for all the cases except |
| 588 | * either when userspace sets |
| 589 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_DO_NOT_RESUME flag in the command |
| 590 | * which triggered the current beacon reporting or during any disconnection |
| 591 | * case as indicated by setting |
| 592 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_PAUSE_REASON to |
| 593 | * QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_DISCONNECTED by the |
| 594 | * driver. |
| 595 | * |
| 596 | * After QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_PAUSE event is received |
| 597 | * by userspace with QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_AUTO_RESUMES |
| 598 | * flag not set, the next first |
| 599 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO event from the driver |
| 600 | * shall be considered as un-pause event. |
| 601 | * |
| 602 | * All the attributes used with this command are defined in |
| 603 | * enum qca_wlan_vendor_attr_beacon_reporting_params. |
| 604 | * @QCA_NL80211_VENDOR_SUBCMD_INTEROP_ISSUES_AP: In practice, some APs have |
| 605 | * interop issues with the DUT. This sub command is used to transfer the |
| 606 | * AP info between the driver and user space. This works both as a command |
| 607 | * and an event. As a command, it configures the stored list of APs from |
| 608 | * user space to firmware; as an event, it indicates the AP info detected |
| 609 | * by the firmware to user space for persistent storage. The attributes |
| 610 | * defined in enum qca_vendor_attr_interop_issues_ap are used to deliver |
| 611 | * the parameters. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 612 | * @QCA_NL80211_VENDOR_SUBCMD_OEM_DATA: This command/event is used to |
| 613 | * send/receive OEM data binary blobs to/from application/service to/from |
| 614 | * firmware. The attributes defined in enum |
| 615 | * qca_wlan_vendor_attr_oem_data_params are used to deliver the |
| 616 | * parameters. |
| 617 | * @QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY_EXT: This command/event is used |
| 618 | * to send/receive avoid frequency data using |
| 619 | * enum qca_wlan_vendor_attr_avoid_frequency_ext. |
| 620 | * This new command is alternative to existing command |
| 621 | * QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY since existing command/event |
| 622 | * is using stream of bytes instead of structured data using vendor |
| 623 | * attributes. |
| 624 | * |
| 625 | * @QCA_NL80211_VENDOR_SUBCMD_ADD_STA_NODE: This vendor subcommand is used to |
| 626 | * add the STA node details in driver/firmware. Attributes for this event |
| 627 | * are specified in enum qca_wlan_vendor_attr_add_sta_node_params. |
| 628 | * @QCA_NL80211_VENDOR_SUBCMD_BTC_CHAIN_MODE: This command is used to set BT |
| 629 | * coex chain mode from application/service. |
| 630 | * The attributes defined in enum qca_vendor_attr_btc_chain_mode are used |
| 631 | * to deliver the parameters. |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 632 | * |
| 633 | * @QCA_NL80211_VENDOR_SUBCMD_GET_STA_INFO: This vendor subcommand is used to |
| 634 | * get information of a station from driver to userspace. This command can |
| 635 | * be used in both STA and AP modes. For STA mode, it provides information |
| 636 | * of the current association when in connected state or the last |
| 637 | * association when in disconnected state. For AP mode, only information |
| 638 | * of the currently connected stations is available. This command uses |
| 639 | * attributes defined in enum qca_wlan_vendor_attr_get_sta_info. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 640 | * |
| 641 | * @QCA_NL80211_VENDOR_SUBCMD_REQUEST_SAR_LIMITS_EVENT: This acts as an event. |
| 642 | * Host drivers can request the user space entity to set the SAR power |
| 643 | * limits with this event. Accordingly, the user space entity is expected |
| 644 | * to set the SAR power limits. Host drivers can retry this event to the |
| 645 | * user space for the SAR power limits configuration from user space. If |
| 646 | * the driver does not get the SAR power limits from user space for all |
| 647 | * the retried attempts, it can configure a default SAR power limit. |
| 648 | * |
| 649 | * @QCA_NL80211_VENDOR_SUBCMD_UPDATE_STA_INFO: This acts as a vendor event and |
| 650 | * is used to update the information about the station from the driver to |
| 651 | * userspace. Uses attributes from enum |
| 652 | * qca_wlan_vendor_attr_update_sta_info. |
| 653 | * |
| 654 | * @QCA_NL80211_VENDOR_SUBCMD_DRIVER_DISCONNECT_REASON: This acts as an event. |
| 655 | * The host driver initiates the disconnection for scenarios such as beacon |
| 656 | * miss, NUD failure, peer kick out, etc. The disconnection indication |
| 657 | * through cfg80211_disconnected() expects the reason codes from enum |
| 658 | * ieee80211_reasoncode which does not signify these various reasons why |
| 659 | * the driver has triggered the disconnection. This event will be used to |
| 660 | * send the driver specific reason codes by the host driver to userspace. |
| 661 | * Host drivers should trigger this event and pass the respective reason |
| 662 | * code immediately prior to triggering cfg80211_disconnected(). The |
| 663 | * attributes used with this event are defined in enum |
| 664 | * qca_wlan_vendor_attr_driver_disconnect_reason. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 665 | * |
| 666 | * @QCA_NL80211_VENDOR_SUBCMD_CONFIG_TSPEC: This vendor subcommand is used to |
| 667 | * add/delete TSPEC for each AC. One command is for one specific AC only. |
| 668 | * This command can only be used in STA mode and the STA must be |
| 669 | * associated with an AP when the command is issued. Uses attributes |
| 670 | * defined in enum qca_wlan_vendor_attr_config_tspec. |
| 671 | * |
| 672 | * @QCA_NL80211_VENDOR_SUBCMD_CONFIG_TWT: Vendor subcommand to configure TWT. |
| 673 | * Uses attributes defined in enum qca_wlan_vendor_attr_config_twt. |
| 674 | * |
| 675 | * @QCA_NL80211_VENDOR_SUBCMD_GETBAND: Command to get the enabled band(s) from |
| 676 | * the driver. The band configurations obtained are referred through |
| 677 | * QCA_WLAN_VENDOR_ATTR_SETBAND_MASK. |
| 678 | * |
| 679 | * @QCA_NL80211_VENDOR_SUBCMD_MEDIUM_ASSESS: Vendor subcommand/event for medium |
| 680 | * assessment. |
| 681 | * Uses attributes defined in enum qca_wlan_vendor_attr_medium_assess. |
| 682 | * |
| 683 | * @QCA_NL80211_VENDOR_SUBCMD_UPDATE_SSID: This acts as a vendor event and is |
| 684 | * used to update SSID information in hostapd when it is updated in the |
| 685 | * driver. Uses the attribute NL80211_ATTR_SSID. |
| 686 | * |
| 687 | * @QCA_NL80211_VENDOR_SUBCMD_WIFI_FW_STATS: This vendor subcommand is used by |
| 688 | * the driver to send opaque data from the firmware to userspace. The |
| 689 | * driver sends an event to userspace whenever such data is received from |
| 690 | * the firmware. |
| 691 | * |
| 692 | * QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA is used as the attribute to |
| 693 | * send this opaque data for this event. |
| 694 | * |
| 695 | * The format of the opaque data is specific to the particular firmware |
| 696 | * version and there is no guarantee of the format remaining same. |
| 697 | * |
| 698 | * @QCA_NL80211_VENDOR_SUBCMD_MBSSID_TX_VDEV_STATUS: This acts as an event. |
| 699 | * The host driver selects Tx VDEV, and notifies user. The attributes |
| 700 | * used with this event are defined in enum |
| 701 | * qca_wlan_vendor_attr_mbssid_tx_vdev_status. |
| 702 | * |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 703 | */ |
| 704 | enum qca_nl80211_vendor_subcmds { |
| 705 | QCA_NL80211_VENDOR_SUBCMD_UNSPEC = 0, |
| 706 | QCA_NL80211_VENDOR_SUBCMD_TEST = 1, |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 707 | /* subcmds 2..8 not yet allocated */ |
| 708 | QCA_NL80211_VENDOR_SUBCMD_ROAMING = 9, |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 709 | QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY = 10, |
Dmitry Shmidt | d11f019 | 2014-03-24 12:09:47 -0700 | [diff] [blame] | 710 | QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY = 11, |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 711 | QCA_NL80211_VENDOR_SUBCMD_NAN = 12, |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 712 | QCA_NL80211_VENDOR_SUBCMD_STATS_EXT = 13, |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 713 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_SET = 14, |
| 714 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET = 15, |
| 715 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_CLR = 16, |
| 716 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_RADIO_RESULTS = 17, |
| 717 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_IFACE_RESULTS = 18, |
| 718 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_PEERS_RESULTS = 19, |
| 719 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_START = 20, |
| 720 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_STOP = 21, |
| 721 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_VALID_CHANNELS = 22, |
| 722 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_CAPABILITIES = 23, |
| 723 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_CACHED_RESULTS = 24, |
| 724 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_SCAN_RESULTS_AVAILABLE = 25, |
| 725 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_FULL_SCAN_RESULT = 26, |
| 726 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_SCAN_EVENT = 27, |
| 727 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_AP_FOUND = 28, |
| 728 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_SET_BSSID_HOTLIST = 29, |
| 729 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_RESET_BSSID_HOTLIST = 30, |
| 730 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_SIGNIFICANT_CHANGE = 31, |
| 731 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_SET_SIGNIFICANT_CHANGE = 32, |
| 732 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_RESET_SIGNIFICANT_CHANGE = 33, |
| 733 | QCA_NL80211_VENDOR_SUBCMD_TDLS_ENABLE = 34, |
| 734 | QCA_NL80211_VENDOR_SUBCMD_TDLS_DISABLE = 35, |
| 735 | QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_STATUS = 36, |
| 736 | QCA_NL80211_VENDOR_SUBCMD_TDLS_STATE = 37, |
| 737 | QCA_NL80211_VENDOR_SUBCMD_GET_SUPPORTED_FEATURES = 38, |
| 738 | QCA_NL80211_VENDOR_SUBCMD_SCANNING_MAC_OUI = 39, |
| 739 | QCA_NL80211_VENDOR_SUBCMD_NO_DFS_FLAG = 40, |
| 740 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_AP_LOST = 41, |
| 741 | QCA_NL80211_VENDOR_SUBCMD_GET_CONCURRENCY_MATRIX = 42, |
| 742 | /* 43..49 - reserved for QCA */ |
| 743 | QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_SET_KEY = 50, |
| 744 | QCA_NL80211_VENDOR_SUBCMD_KEY_MGMT_ROAM_AUTH = 51, |
| 745 | QCA_NL80211_VENDOR_SUBCMD_APFIND = 52, |
Dmitry Shmidt | 9d9e602 | 2015-04-23 10:34:55 -0700 | [diff] [blame] | 746 | /* 53 - reserved - was used by QCA, but not in use anymore */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 747 | QCA_NL80211_VENDOR_SUBCMD_DO_ACS = 54, |
| 748 | QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES = 55, |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 749 | QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_STARTED = 56, |
| 750 | QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_FINISHED = 57, |
| 751 | QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_ABORTED = 58, |
| 752 | QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_CAC_NOP_FINISHED = 59, |
| 753 | QCA_NL80211_VENDOR_SUBCMD_DFS_OFFLOAD_RADAR_DETECTED = 60, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 754 | QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_INFO = 61, |
| 755 | QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_START = 62, |
| 756 | QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_MEMORY_DUMP = 63, |
| 757 | QCA_NL80211_VENDOR_SUBCMD_ROAM = 64, |
| 758 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_SET_SSID_HOTLIST = 65, |
| 759 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_RESET_SSID_HOTLIST = 66, |
| 760 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_SSID_FOUND = 67, |
| 761 | QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_SSID_LOST = 68, |
| 762 | QCA_NL80211_VENDOR_SUBCMD_PNO_SET_LIST = 69, |
| 763 | QCA_NL80211_VENDOR_SUBCMD_PNO_SET_PASSPOINT_LIST = 70, |
| 764 | QCA_NL80211_VENDOR_SUBCMD_PNO_RESET_PASSPOINT_LIST = 71, |
| 765 | QCA_NL80211_VENDOR_SUBCMD_PNO_NETWORK_FOUND = 72, |
| 766 | QCA_NL80211_VENDOR_SUBCMD_PNO_PASSPOINT_NETWORK_FOUND = 73, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 767 | /* Wi-Fi configuration subcommands */ |
| 768 | QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION = 74, |
| 769 | QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_CONFIGURATION = 75, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 770 | QCA_NL80211_VENDOR_SUBCMD_GET_LOGGER_FEATURE_SET = 76, |
| 771 | QCA_NL80211_VENDOR_SUBCMD_GET_RING_DATA = 77, |
| 772 | QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_CAPABILITIES = 78, |
| 773 | QCA_NL80211_VENDOR_SUBCMD_OFFLOADED_PACKETS = 79, |
| 774 | QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI = 80, |
| 775 | QCA_NL80211_VENDOR_SUBCMD_NDP = 81, |
| 776 | QCA_NL80211_VENDOR_SUBCMD_ND_OFFLOAD = 82, |
| 777 | QCA_NL80211_VENDOR_SUBCMD_PACKET_FILTER = 83, |
| 778 | QCA_NL80211_VENDOR_SUBCMD_GET_BUS_SIZE = 84, |
| 779 | QCA_NL80211_VENDOR_SUBCMD_GET_WAKE_REASON_STATS = 85, |
| 780 | /* 86-90 - reserved for QCA */ |
Dmitry Shmidt | 4dd28dc | 2015-03-10 11:21:43 -0700 | [diff] [blame] | 781 | QCA_NL80211_VENDOR_SUBCMD_DATA_OFFLOAD = 91, |
Dmitry Shmidt | 9d9e602 | 2015-04-23 10:34:55 -0700 | [diff] [blame] | 782 | QCA_NL80211_VENDOR_SUBCMD_OCB_SET_CONFIG = 92, |
| 783 | QCA_NL80211_VENDOR_SUBCMD_OCB_SET_UTC_TIME = 93, |
| 784 | QCA_NL80211_VENDOR_SUBCMD_OCB_START_TIMING_ADVERT = 94, |
| 785 | QCA_NL80211_VENDOR_SUBCMD_OCB_STOP_TIMING_ADVERT = 95, |
| 786 | QCA_NL80211_VENDOR_SUBCMD_OCB_GET_TSF_TIMER = 96, |
| 787 | QCA_NL80211_VENDOR_SUBCMD_DCC_GET_STATS = 97, |
| 788 | QCA_NL80211_VENDOR_SUBCMD_DCC_CLEAR_STATS = 98, |
| 789 | QCA_NL80211_VENDOR_SUBCMD_DCC_UPDATE_NDL = 99, |
| 790 | QCA_NL80211_VENDOR_SUBCMD_DCC_STATS_EVENT = 100, |
Dmitry Shmidt | 05df46a | 2015-05-19 11:02:01 -0700 | [diff] [blame] | 791 | QCA_NL80211_VENDOR_SUBCMD_LINK_PROPERTIES = 101, |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 792 | QCA_NL80211_VENDOR_SUBCMD_GW_PARAM_CONFIG = 102, |
| 793 | QCA_NL80211_VENDOR_SUBCMD_GET_PREFERRED_FREQ_LIST = 103, |
| 794 | QCA_NL80211_VENDOR_SUBCMD_SET_PROBABLE_OPER_CHANNEL = 104, |
| 795 | QCA_NL80211_VENDOR_SUBCMD_SETBAND = 105, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 796 | QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN = 106, |
| 797 | QCA_NL80211_VENDOR_SUBCMD_SCAN_DONE = 107, |
| 798 | QCA_NL80211_VENDOR_SUBCMD_OTA_TEST = 108, |
| 799 | QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_SCALE = 109, |
| 800 | /* 110..114 - reserved for QCA */ |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame] | 801 | QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB = 115, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 802 | QCA_NL80211_VENDOR_SUBCMD_ACS_POLICY = 116, |
| 803 | /* 117 - reserved for QCA */ |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 804 | QCA_NL80211_VENDOR_SUBCMD_SET_SAP_CONFIG = 118, |
Dmitry Shmidt | 1702232 | 2016-04-06 13:28:42 -0700 | [diff] [blame] | 805 | QCA_NL80211_VENDOR_SUBCMD_TSF = 119, |
| 806 | QCA_NL80211_VENDOR_SUBCMD_WISA = 120, |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 807 | /* 121 - reserved for QCA */ |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 808 | QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_START = 122, |
| 809 | QCA_NL80211_VENDOR_SUBCMD_P2P_LISTEN_OFFLOAD_STOP = 123, |
| 810 | QCA_NL80211_VENDOR_SUBCMD_SAP_CONDITIONAL_CHAN_SWITCH = 124, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 811 | QCA_NL80211_VENDOR_SUBCMD_GPIO_CONFIG_COMMAND = 125, |
| 812 | QCA_NL80211_VENDOR_SUBCMD_GET_HW_CAPABILITY = 126, |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 813 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_EXT = 127, |
| 814 | /* FTM/indoor location subcommands */ |
| 815 | QCA_NL80211_VENDOR_SUBCMD_LOC_GET_CAPA = 128, |
| 816 | QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION = 129, |
| 817 | QCA_NL80211_VENDOR_SUBCMD_FTM_ABORT_SESSION = 130, |
| 818 | QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT = 131, |
| 819 | QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE = 132, |
| 820 | QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER = 133, |
| 821 | QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS = 134, |
| 822 | QCA_NL80211_VENDOR_SUBCMD_AOA_ABORT_MEAS = 135, |
| 823 | QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT = 136, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 824 | QCA_NL80211_VENDOR_SUBCMD_ENCRYPTION_TEST = 137, |
| 825 | QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI = 138, |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 826 | /* DMG low level RF sector operations */ |
| 827 | QCA_NL80211_VENDOR_SUBCMD_DMG_RF_GET_SECTOR_CFG = 139, |
| 828 | QCA_NL80211_VENDOR_SUBCMD_DMG_RF_SET_SECTOR_CFG = 140, |
| 829 | QCA_NL80211_VENDOR_SUBCMD_DMG_RF_GET_SELECTED_SECTOR = 141, |
| 830 | QCA_NL80211_VENDOR_SUBCMD_DMG_RF_SET_SELECTED_SECTOR = 142, |
| 831 | QCA_NL80211_VENDOR_SUBCMD_CONFIGURE_TDLS = 143, |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 832 | QCA_NL80211_VENDOR_SUBCMD_GET_HE_CAPABILITIES = 144, |
Dmitry Shmidt | abb90a3 | 2016-12-05 15:34:39 -0800 | [diff] [blame] | 833 | QCA_NL80211_VENDOR_SUBCMD_ABORT_SCAN = 145, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 834 | QCA_NL80211_VENDOR_SUBCMD_SET_SAR_LIMITS = 146, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 835 | QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS = 147, |
| 836 | QCA_NL80211_VENDOR_SUBCMD_CHIP_PWRSAVE_FAILURE = 148, |
| 837 | QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_SET = 149, |
| 838 | QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_GET = 150, |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 839 | QCA_NL80211_VENDOR_SUBCMD_FETCH_BSS_TRANSITION_STATUS = 151, |
| 840 | QCA_NL80211_VENDOR_SUBCMD_SET_TRACE_LEVEL = 152, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 841 | QCA_NL80211_VENDOR_SUBCMD_BRP_SET_ANT_LIMIT = 153, |
| 842 | QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START = 154, |
| 843 | QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_STOP = 155, |
| 844 | QCA_NL80211_VENDOR_SUBCMD_ACTIVE_TOS = 156, |
| 845 | QCA_NL80211_VENDOR_SUBCMD_HANG = 157, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 846 | QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CONFIG = 158, |
| 847 | QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_DIAG_STATS = 159, |
| 848 | QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CAP_INFO = 160, |
| 849 | QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_STATUS = 161, |
| 850 | /* Flush peer pending data */ |
| 851 | QCA_NL80211_VENDOR_SUBCMD_PEER_FLUSH_PENDING = 162, |
| 852 | QCA_NL80211_VENDOR_SUBCMD_GET_RROP_INFO = 163, |
| 853 | QCA_NL80211_VENDOR_SUBCMD_GET_SAR_LIMITS = 164, |
| 854 | QCA_NL80211_VENDOR_SUBCMD_WLAN_MAC_INFO = 165, |
| 855 | QCA_NL80211_VENDOR_SUBCMD_SET_QDEPTH_THRESH = 166, |
| 856 | /* Thermal shutdown commands to protect wifi chip */ |
| 857 | QCA_NL80211_VENDOR_SUBCMD_THERMAL_CMD = 167, |
| 858 | QCA_NL80211_VENDOR_SUBCMD_THERMAL_EVENT = 168, |
| 859 | /* Wi-Fi test configuration subcommand */ |
| 860 | QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION = 169, |
| 861 | /* Frame filter operations for other BSSs/unassociated STAs */ |
| 862 | QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER = 170, |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 863 | QCA_NL80211_VENDOR_SUBCMD_NAN_EXT = 171, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 864 | QCA_NL80211_VENDOR_SUBCMD_ROAM_SCAN_EVENT = 172, |
| 865 | QCA_NL80211_VENDOR_SUBCMD_PEER_CFR_CAPTURE_CFG = 173, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 866 | QCA_NL80211_VENDOR_SUBCMD_THROUGHPUT_CHANGE_EVENT = 174, |
| 867 | QCA_NL80211_VENDOR_SUBCMD_COEX_CONFIG = 175, |
| 868 | QCA_NL80211_VENDOR_SUBCMD_GET_SUPPORTED_AKMS = 176, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 869 | QCA_NL80211_VENDOR_SUBCMD_GET_FW_STATE = 177, |
| 870 | QCA_NL80211_VENDOR_SUBCMD_PEER_STATS_CACHE_FLUSH = 178, |
| 871 | QCA_NL80211_VENDOR_SUBCMD_MPTA_HELPER_CONFIG = 179, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 872 | QCA_NL80211_VENDOR_SUBCMD_BEACON_REPORTING = 180, |
| 873 | QCA_NL80211_VENDOR_SUBCMD_INTEROP_ISSUES_AP = 181, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 874 | QCA_NL80211_VENDOR_SUBCMD_OEM_DATA = 182, |
| 875 | QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY_EXT = 183, |
| 876 | QCA_NL80211_VENDOR_SUBCMD_ADD_STA_NODE = 184, |
| 877 | QCA_NL80211_VENDOR_SUBCMD_BTC_CHAIN_MODE = 185, |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 878 | QCA_NL80211_VENDOR_SUBCMD_GET_STA_INFO = 186, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 879 | QCA_NL80211_VENDOR_SUBCMD_GET_SAR_LIMITS_EVENT = 187, |
| 880 | QCA_NL80211_VENDOR_SUBCMD_UPDATE_STA_INFO = 188, |
| 881 | QCA_NL80211_VENDOR_SUBCMD_DRIVER_DISCONNECT_REASON = 189, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 882 | QCA_NL80211_VENDOR_SUBCMD_CONFIG_TSPEC = 190, |
| 883 | QCA_NL80211_VENDOR_SUBCMD_CONFIG_TWT = 191, |
| 884 | QCA_NL80211_VENDOR_SUBCMD_GETBAND = 192, |
| 885 | QCA_NL80211_VENDOR_SUBCMD_MEDIUM_ASSESS = 193, |
| 886 | QCA_NL80211_VENDOR_SUBCMD_UPDATE_SSID = 194, |
| 887 | QCA_NL80211_VENDOR_SUBCMD_WIFI_FW_STATS = 195, |
| 888 | QCA_NL80211_VENDOR_SUBCMD_MBSSID_TX_VDEV_STATUS = 196, |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 889 | }; |
| 890 | |
Dmitry Shmidt | d11f019 | 2014-03-24 12:09:47 -0700 | [diff] [blame] | 891 | enum qca_wlan_vendor_attr { |
| 892 | QCA_WLAN_VENDOR_ATTR_INVALID = 0, |
| 893 | /* used by QCA_NL80211_VENDOR_SUBCMD_DFS_CAPABILITY */ |
| 894 | QCA_WLAN_VENDOR_ATTR_DFS = 1, |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 895 | /* Used only when driver sends vendor events to the userspace under the |
| 896 | * command QCA_NL80211_VENDOR_SUBCMD_NAN. Not used when userspace sends |
| 897 | * commands to the driver. |
| 898 | */ |
Dmitry Shmidt | 21de214 | 2014-04-08 10:50:52 -0700 | [diff] [blame] | 899 | QCA_WLAN_VENDOR_ATTR_NAN = 2, |
Dmitry Shmidt | 7832adb | 2014-04-29 10:53:02 -0700 | [diff] [blame] | 900 | /* used by QCA_NL80211_VENDOR_SUBCMD_STATS_EXT */ |
| 901 | QCA_WLAN_VENDOR_ATTR_STATS_EXT = 3, |
Dmitry Shmidt | 09f57ba | 2014-06-10 16:07:13 -0700 | [diff] [blame] | 902 | /* used by QCA_NL80211_VENDOR_SUBCMD_STATS_EXT */ |
| 903 | QCA_WLAN_VENDOR_ATTR_IFINDEX = 4, |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 904 | /* used by QCA_NL80211_VENDOR_SUBCMD_ROAMING, u32 with values defined |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 905 | * by enum qca_roaming_policy. |
| 906 | */ |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 907 | QCA_WLAN_VENDOR_ATTR_ROAMING_POLICY = 5, |
| 908 | QCA_WLAN_VENDOR_ATTR_MAC_ADDR = 6, |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 909 | /* used by QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES */ |
| 910 | QCA_WLAN_VENDOR_ATTR_FEATURE_FLAGS = 7, |
Dmitry Shmidt | 7f65602 | 2015-02-25 14:36:37 -0800 | [diff] [blame] | 911 | QCA_WLAN_VENDOR_ATTR_TEST = 8, |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 912 | /* used by QCA_NL80211_VENDOR_SUBCMD_GET_FEATURES */ |
| 913 | /* Unsigned 32-bit value. */ |
| 914 | QCA_WLAN_VENDOR_ATTR_CONCURRENCY_CAPA = 9, |
| 915 | /* Unsigned 32-bit value */ |
| 916 | QCA_WLAN_VENDOR_ATTR_MAX_CONCURRENT_CHANNELS_2_4_BAND = 10, |
| 917 | /* Unsigned 32-bit value */ |
| 918 | QCA_WLAN_VENDOR_ATTR_MAX_CONCURRENT_CHANNELS_5_0_BAND = 11, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 919 | /* Unsigned 32-bit value from enum qca_set_band. The allowed values for |
| 920 | * this attribute are limited to QCA_SETBAND_AUTO, QCA_SETBAND_5G, and |
| 921 | * QCA_SETBAND_2G. This attribute is deprecated. Recommendation is to |
| 922 | * use QCA_WLAN_VENDOR_ATTR_SETBAND_MASK instead. |
| 923 | */ |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 924 | QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE = 12, |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 925 | /* Dummy (NOP) attribute for 64 bit padding */ |
| 926 | QCA_WLAN_VENDOR_ATTR_PAD = 13, |
| 927 | /* Unique FTM session cookie (Unsigned 64 bit). Specified in |
| 928 | * QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION. Reported in |
| 929 | * the session in QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT and |
| 930 | * QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE. |
| 931 | */ |
| 932 | QCA_WLAN_VENDOR_ATTR_FTM_SESSION_COOKIE = 14, |
| 933 | /* Indoor location capabilities, returned by |
| 934 | * QCA_NL80211_VENDOR_SUBCMD_LOC_GET_CAPA. |
| 935 | * see enum qca_wlan_vendor_attr_loc_capa. |
| 936 | */ |
| 937 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA = 15, |
| 938 | /* Array of nested attributes containing information about each peer |
| 939 | * in FTM measurement session. See enum qca_wlan_vendor_attr_peer_info |
| 940 | * for supported attributes for each peer. |
| 941 | */ |
| 942 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEERS = 16, |
| 943 | /* Array of nested attributes containing measurement results for |
| 944 | * one or more peers, reported by the |
| 945 | * QCA_NL80211_VENDOR_SUBCMD_FTM_MEAS_RESULT event. |
| 946 | * See enum qca_wlan_vendor_attr_peer_result for list of supported |
| 947 | * attributes. |
| 948 | */ |
| 949 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PEER_RESULTS = 17, |
| 950 | /* Flag attribute for enabling or disabling responder functionality. */ |
| 951 | QCA_WLAN_VENDOR_ATTR_FTM_RESPONDER_ENABLE = 18, |
| 952 | /* Used in the QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER |
| 953 | * command to specify the LCI report that will be sent by |
| 954 | * the responder during a measurement exchange. The format is |
| 955 | * defined in IEEE P802.11-REVmc/D7.0, 9.4.2.22.10. |
| 956 | */ |
| 957 | QCA_WLAN_VENDOR_ATTR_FTM_LCI = 19, |
| 958 | /* Used in the QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER |
| 959 | * command to specify the location civic report that will |
| 960 | * be sent by the responder during a measurement exchange. |
| 961 | * The format is defined in IEEE P802.11-REVmc/D7.0, 9.4.2.22.13. |
| 962 | */ |
| 963 | QCA_WLAN_VENDOR_ATTR_FTM_LCR = 20, |
| 964 | /* Session/measurement completion status code, |
| 965 | * reported in QCA_NL80211_VENDOR_SUBCMD_FTM_SESSION_DONE and |
| 966 | * QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT |
| 967 | * see enum qca_vendor_attr_loc_session_status. |
| 968 | */ |
| 969 | QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS = 21, |
| 970 | /* Initial dialog token used by responder (0 if not specified), |
| 971 | * unsigned 8 bit value. |
| 972 | */ |
| 973 | QCA_WLAN_VENDOR_ATTR_FTM_INITIAL_TOKEN = 22, |
| 974 | /* AOA measurement type. Requested in QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS |
| 975 | * and optionally in QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION if |
| 976 | * AOA measurements are needed as part of an FTM session. |
| 977 | * Reported by QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS_RESULT. See |
| 978 | * enum qca_wlan_vendor_attr_aoa_type. |
| 979 | */ |
| 980 | QCA_WLAN_VENDOR_ATTR_AOA_TYPE = 23, |
| 981 | /* A bit mask (unsigned 32 bit value) of antenna arrays used |
| 982 | * by indoor location measurements. Refers to the antenna |
| 983 | * arrays described by QCA_VENDOR_ATTR_LOC_CAPA_ANTENNA_ARRAYS. |
| 984 | */ |
| 985 | QCA_WLAN_VENDOR_ATTR_LOC_ANTENNA_ARRAY_MASK = 24, |
| 986 | /* AOA measurement data. Its contents depends on the AOA measurement |
| 987 | * type and antenna array mask: |
| 988 | * QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE: array of U16 values, |
| 989 | * phase of the strongest CIR path for each antenna in the measured |
| 990 | * array(s). |
| 991 | * QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE_AMP: array of 2 U16 |
| 992 | * values, phase and amplitude of the strongest CIR path for each |
| 993 | * antenna in the measured array(s). |
| 994 | */ |
| 995 | QCA_WLAN_VENDOR_ATTR_AOA_MEAS_RESULT = 25, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 996 | /* Used in QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI command |
| 997 | * to specify the chain number (unsigned 32 bit value) to inquire |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 998 | * the corresponding antenna RSSI value |
| 999 | */ |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 1000 | QCA_WLAN_VENDOR_ATTR_CHAIN_INDEX = 26, |
| 1001 | /* Used in QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI command |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1002 | * to report the specific antenna RSSI value (unsigned 32 bit value) |
| 1003 | */ |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 1004 | QCA_WLAN_VENDOR_ATTR_CHAIN_RSSI = 27, |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1005 | /* Frequency in MHz, various uses. Unsigned 32 bit value */ |
| 1006 | QCA_WLAN_VENDOR_ATTR_FREQ = 28, |
| 1007 | /* TSF timer value, unsigned 64 bit value. |
| 1008 | * May be returned by various commands. |
| 1009 | */ |
| 1010 | QCA_WLAN_VENDOR_ATTR_TSF = 29, |
| 1011 | /* DMG RF sector index, unsigned 16 bit number. Valid values are |
| 1012 | * 0..127 for sector indices or 65535 as special value used to |
| 1013 | * unlock sector selection in |
| 1014 | * QCA_NL80211_VENDOR_SUBCMD_DMG_RF_SET_SELECTED_SECTOR. |
| 1015 | */ |
| 1016 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_INDEX = 30, |
| 1017 | /* DMG RF sector type, unsigned 8 bit value. One of the values |
| 1018 | * in enum qca_wlan_vendor_attr_dmg_rf_sector_type. |
| 1019 | */ |
| 1020 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE = 31, |
| 1021 | /* Bitmask of DMG RF modules for which information is requested. Each |
| 1022 | * bit corresponds to an RF module with the same index as the bit |
| 1023 | * number. Unsigned 32 bit number but only low 8 bits can be set since |
| 1024 | * all DMG chips currently have up to 8 RF modules. |
| 1025 | */ |
| 1026 | QCA_WLAN_VENDOR_ATTR_DMG_RF_MODULE_MASK = 32, |
| 1027 | /* Array of nested attributes where each entry is DMG RF sector |
| 1028 | * configuration for a single RF module. |
| 1029 | * Attributes for each entry are taken from enum |
| 1030 | * qca_wlan_vendor_attr_dmg_rf_sector_cfg. |
| 1031 | * Specified in QCA_NL80211_VENDOR_SUBCMD_DMG_RF_SET_SECTOR_CFG |
| 1032 | * and returned by QCA_NL80211_VENDOR_SUBCMD_DMG_RF_GET_SECTOR_CFG. |
| 1033 | */ |
| 1034 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG = 33, |
| 1035 | /* Used in QCA_NL80211_VENDOR_SUBCMD_STATS_EXT command |
| 1036 | * to report frame aggregation statistics to userspace. |
| 1037 | */ |
| 1038 | QCA_WLAN_VENDOR_ATTR_RX_AGGREGATION_STATS_HOLES_NUM = 34, |
| 1039 | QCA_WLAN_VENDOR_ATTR_RX_AGGREGATION_STATS_HOLES_INFO = 35, |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 1040 | /* Unsigned 8-bit value representing MBO transition reason code as |
| 1041 | * provided by the AP used by subcommand |
| 1042 | * QCA_NL80211_VENDOR_SUBCMD_FETCH_BSS_TRANSITION_STATUS. This is |
| 1043 | * specified by the userspace in the request to the driver. |
| 1044 | */ |
| 1045 | QCA_WLAN_VENDOR_ATTR_BTM_MBO_TRANSITION_REASON = 36, |
| 1046 | /* Array of nested attributes, BSSID and status code, used by subcommand |
| 1047 | * QCA_NL80211_VENDOR_SUBCMD_FETCH_BSS_TRANSITION_STATUS, where each |
| 1048 | * entry is taken from enum qca_wlan_vendor_attr_btm_candidate_info. |
| 1049 | * The userspace space specifies the list/array of candidate BSSIDs in |
| 1050 | * the order of preference in the request. The driver specifies the |
| 1051 | * status code, for each BSSID in the list, in the response. The |
| 1052 | * acceptable candidates are listed in the order preferred by the |
| 1053 | * driver. |
| 1054 | */ |
| 1055 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO = 37, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1056 | /* Used in QCA_NL80211_VENDOR_SUBCMD_BRP_SET_ANT_LIMIT command |
| 1057 | * See enum qca_wlan_vendor_attr_brp_ant_limit_mode. |
| 1058 | */ |
| 1059 | QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE = 38, |
| 1060 | /* Used in QCA_NL80211_VENDOR_SUBCMD_BRP_SET_ANT_LIMIT command |
| 1061 | * to define the number of antennas to use for BRP. |
| 1062 | * different purpose in each ANT_LIMIT_MODE: |
| 1063 | * DISABLE - ignored |
| 1064 | * EFFECTIVE - upper limit to number of antennas to be used |
| 1065 | * FORCE - exact number of antennas to be used |
| 1066 | * unsigned 8 bit value |
| 1067 | */ |
| 1068 | QCA_WLAN_VENDOR_ATTR_BRP_ANT_NUM_LIMIT = 39, |
| 1069 | /* Used in QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI command |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1070 | * to report the corresponding antenna index to the chain RSSI value |
| 1071 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1072 | QCA_WLAN_VENDOR_ATTR_ANTENNA_INFO = 40, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 1073 | /* Used in QCA_NL80211_VENDOR_SUBCMD_GET_CHAIN_RSSI command to report |
| 1074 | * the specific antenna EVM value (unsigned 32 bit value). With a |
| 1075 | * determinate group of antennas, the driver specifies the EVM value |
| 1076 | * for each antenna ID, and application extract them in user space. |
| 1077 | */ |
| 1078 | QCA_WLAN_VENDOR_ATTR_CHAIN_EVM = 41, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 1079 | /* |
| 1080 | * Used in QCA_NL80211_VENDOR_SUBCMD_GET_FW_STATE command to report |
| 1081 | * wlan firmware current state. FW state is an unsigned 8 bit value, |
| 1082 | * one of the values in enum qca_wlan_vendor_attr_fw_state. |
| 1083 | */ |
| 1084 | QCA_WLAN_VENDOR_ATTR_FW_STATE = 42, |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1085 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 1086 | /* Unsigned 32-bitmask value from enum qca_set_band. Substitutes the |
| 1087 | * attribute QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE for which only a subset |
| 1088 | * of single values from enum qca_set_band are valid. This attribute |
| 1089 | * uses bitmask combinations to define the respective allowed band |
| 1090 | * combinations and this attributes takes precedence over |
| 1091 | * QCA_WLAN_VENDOR_ATTR_SETBAND_VALUE if both attributes are included. |
| 1092 | */ |
| 1093 | QCA_WLAN_VENDOR_ATTR_SETBAND_MASK = 43, |
| 1094 | |
Dmitry Shmidt | d11f019 | 2014-03-24 12:09:47 -0700 | [diff] [blame] | 1095 | /* keep last */ |
| 1096 | QCA_WLAN_VENDOR_ATTR_AFTER_LAST, |
| 1097 | QCA_WLAN_VENDOR_ATTR_MAX = QCA_WLAN_VENDOR_ATTR_AFTER_LAST - 1, |
| 1098 | }; |
| 1099 | |
Dmitry Shmidt | 661b4f7 | 2014-09-29 14:58:27 -0700 | [diff] [blame] | 1100 | enum qca_roaming_policy { |
| 1101 | QCA_ROAMING_NOT_ALLOWED, |
| 1102 | QCA_ROAMING_ALLOWED_WITHIN_ESS, |
| 1103 | }; |
| 1104 | |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 1105 | /** |
| 1106 | * enum qca_roam_reason - Represents the reason codes for roaming. Used by |
| 1107 | * QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_REASON. |
| 1108 | * |
| 1109 | * @QCA_ROAM_REASON_UNKNOWN: Any reason that do not classify under the below |
| 1110 | * reasons. |
| 1111 | * |
| 1112 | * @QCA_ROAM_REASON_PER: Roam triggered when packet error rates (PER) breached |
| 1113 | * the configured threshold. |
| 1114 | * |
| 1115 | * @QCA_ROAM_REASON_BEACON_MISS: Roam triggered due to the continuous configured |
| 1116 | * beacon misses from the then connected AP. |
| 1117 | * |
| 1118 | * @QCA_ROAM_REASON_POOR_RSSI: Roam triggered due to the poor RSSI reported |
| 1119 | * by the connected AP. |
| 1120 | * |
| 1121 | * @QCA_ROAM_REASON_BETTER_RSSI: Roam triggered for finding a BSS with a better |
| 1122 | * RSSI than the connected BSS. Here the RSSI of the current BSS is not poor. |
| 1123 | * |
| 1124 | * @QCA_ROAM_REASON_CONGESTION: Roam triggered considering the connected channel |
| 1125 | * or environment being very noisy or congested. |
| 1126 | * |
| 1127 | * @QCA_ROAM_REASON_EXPLICIT_REQUEST: Roam triggered due to an explicit request |
| 1128 | * from the user (user space). |
| 1129 | * |
| 1130 | * @QCA_ROAM_REASON_BTM: Roam triggered due to BTM Request frame received from |
| 1131 | * the connected AP. |
| 1132 | * |
| 1133 | * @QCA_ROAM_REASON_BSS_LOAD: Roam triggered due to the channel utilization |
| 1134 | * breaching out the configured threshold. |
| 1135 | */ |
| 1136 | enum qca_roam_reason { |
| 1137 | QCA_ROAM_REASON_UNKNOWN, |
| 1138 | QCA_ROAM_REASON_PER, |
| 1139 | QCA_ROAM_REASON_BEACON_MISS, |
| 1140 | QCA_ROAM_REASON_POOR_RSSI, |
| 1141 | QCA_ROAM_REASON_BETTER_RSSI, |
| 1142 | QCA_ROAM_REASON_CONGESTION, |
| 1143 | QCA_ROAM_REASON_USER_TRIGGER, |
| 1144 | QCA_ROAM_REASON_BTM, |
| 1145 | QCA_ROAM_REASON_BSS_LOAD, |
| 1146 | }; |
| 1147 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1148 | enum qca_wlan_vendor_attr_roam_auth { |
| 1149 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_INVALID = 0, |
| 1150 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_BSSID, |
| 1151 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_REQ_IE, |
| 1152 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_RESP_IE, |
| 1153 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AUTHORIZED, |
| 1154 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_KEY_REPLAY_CTR, |
| 1155 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PTK_KCK, |
| 1156 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PTK_KEK, |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame] | 1157 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_SUBNET_STATUS, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1158 | /* Indicates the status of re-association requested by user space for |
| 1159 | * the BSSID specified by QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_BSSID. |
| 1160 | * Type u16. |
| 1161 | * Represents the status code from AP. Use |
| 1162 | * %WLAN_STATUS_UNSPECIFIED_FAILURE if the device cannot give you the |
| 1163 | * real status code for failures. |
| 1164 | */ |
| 1165 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_STATUS, |
| 1166 | /* This attribute indicates that the old association was maintained when |
| 1167 | * a re-association is requested by user space and that re-association |
| 1168 | * attempt fails (i.e., cannot connect to the requested BSS, but can |
| 1169 | * remain associated with the BSS with which the association was in |
| 1170 | * place when being requested to roam). Used along with |
| 1171 | * WLAN_VENDOR_ATTR_ROAM_AUTH_STATUS to indicate the current |
| 1172 | * re-association status. Type flag. |
| 1173 | * This attribute is applicable only for re-association failure cases. |
| 1174 | */ |
| 1175 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_RETAIN_CONNECTION, |
| 1176 | /* This attribute specifies the PMK if one was newly generated during |
| 1177 | * FILS roaming. This is added to the PMKSA cache and is used in |
| 1178 | * subsequent connections with PMKSA caching. |
| 1179 | */ |
| 1180 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PMK = 11, |
| 1181 | /* This attribute specifies the PMKID used/generated for the current |
| 1182 | * FILS roam. This is used in subsequent connections with PMKSA caching. |
| 1183 | */ |
| 1184 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PMKID = 12, |
| 1185 | /* A 16-bit unsigned value specifying the next sequence number to use |
| 1186 | * in ERP message in the currently associated realm. This is used in |
| 1187 | * doing subsequent ERP based connections in the same realm. |
| 1188 | */ |
| 1189 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_FILS_ERP_NEXT_SEQ_NUM = 13, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 1190 | /* A 16-bit unsigned value representing the reasons for the roaming. |
| 1191 | * Defined by enum qca_roam_reason. |
| 1192 | */ |
| 1193 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_REASON = 14, |
| 1194 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1195 | /* keep last */ |
| 1196 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AFTER_LAST, |
| 1197 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_MAX = |
| 1198 | QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AFTER_LAST - 1 |
| 1199 | }; |
| 1200 | |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1201 | enum qca_wlan_vendor_attr_p2p_listen_offload { |
| 1202 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_INVALID = 0, |
| 1203 | /* A 32-bit unsigned value; the P2P listen frequency (MHz); must be one |
| 1204 | * of the social channels. |
| 1205 | */ |
| 1206 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_CHANNEL, |
| 1207 | /* A 32-bit unsigned value; the P2P listen offload period (ms). |
| 1208 | */ |
| 1209 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_PERIOD, |
| 1210 | /* A 32-bit unsigned value; the P2P listen interval duration (ms). |
| 1211 | */ |
| 1212 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_INTERVAL, |
| 1213 | /* A 32-bit unsigned value; number of interval times the firmware needs |
| 1214 | * to run the offloaded P2P listen operation before it stops. |
| 1215 | */ |
| 1216 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_COUNT, |
| 1217 | /* An array of arbitrary binary data with one or more 8-byte values. |
| 1218 | * The device types include both primary and secondary device types. |
| 1219 | */ |
| 1220 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_DEVICE_TYPES, |
| 1221 | /* An array of unsigned 8-bit characters; vendor information elements. |
| 1222 | */ |
| 1223 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_VENDOR_IE, |
| 1224 | /* A 32-bit unsigned value; a control flag to indicate whether listen |
| 1225 | * results need to be flushed to wpa_supplicant. |
| 1226 | */ |
| 1227 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_CTRL_FLAG, |
| 1228 | /* A 8-bit unsigned value; reason code for P2P listen offload stop |
| 1229 | * event. |
| 1230 | */ |
| 1231 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_STOP_REASON, |
| 1232 | /* keep last */ |
| 1233 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_AFTER_LAST, |
| 1234 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_MAX = |
| 1235 | QCA_WLAN_VENDOR_ATTR_P2P_LISTEN_OFFLOAD_AFTER_LAST - 1 |
| 1236 | }; |
| 1237 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1238 | /** |
| 1239 | * enum qca_wlan_vendor_attr_acs_offload - Defines attributes to be used with |
| 1240 | * vendor command/event QCA_NL80211_VENDOR_SUBCMD_DO_ACS. |
| 1241 | * |
| 1242 | * @QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL: Required (u8). |
| 1243 | * Used with event to notify the primary channel number selected in ACS |
| 1244 | * operation. |
| 1245 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 1246 | * QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL is deprecated; use |
| 1247 | * QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_FREQUENCY instead. |
| 1248 | * To maintain backward compatibility, QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL |
| 1249 | * is still used if either of the driver or user space application doesn't |
| 1250 | * support the 6 GHz band. |
| 1251 | * |
| 1252 | * @QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL: Required (u8). |
| 1253 | * Used with event to notify the secondary channel number selected in ACS |
| 1254 | * operation. |
| 1255 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 1256 | * QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL is deprecated; use |
| 1257 | * QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_FREQUENCY instead. |
| 1258 | * To maintain backward compatibility, |
| 1259 | * QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL is still used if either of |
| 1260 | * the driver or user space application doesn't support 6 GHz band. |
| 1261 | * |
| 1262 | * @QCA_WLAN_VENDOR_ATTR_ACS_HW_MODE: Required (u8). |
| 1263 | * (a) Used with command to configure hw_mode from |
| 1264 | * enum qca_wlan_vendor_acs_hw_mode for ACS operation. |
| 1265 | * (b) Also used with event to notify the hw_mode of selected primary channel |
| 1266 | * in ACS operation. |
| 1267 | * |
| 1268 | * @QCA_WLAN_VENDOR_ATTR_ACS_HT_ENABLED: Flag attribute. |
| 1269 | * Used with command to configure ACS operation for HT mode. |
| 1270 | * Disable (flag attribute not present) - HT disabled and |
| 1271 | * Enable (flag attribute present) - HT enabled. |
| 1272 | * |
| 1273 | * @QCA_WLAN_VENDOR_ATTR_ACS_HT40_ENABLED: Flag attribute. |
| 1274 | * Used with command to configure ACS operation for HT40 mode. |
| 1275 | * Disable (flag attribute not present) - HT40 disabled and |
| 1276 | * Enable (flag attribute present) - HT40 enabled. |
| 1277 | * |
| 1278 | * @QCA_WLAN_VENDOR_ATTR_ACS_VHT_ENABLED: Flag attribute. |
| 1279 | * Used with command to configure ACS operation for VHT mode. |
| 1280 | * Disable (flag attribute not present) - VHT disabled and |
| 1281 | * Enable (flag attribute present) - VHT enabled. |
| 1282 | * |
| 1283 | * @QCA_WLAN_VENDOR_ATTR_ACS_CHWIDTH: Optional (u16) with command and |
| 1284 | * mandatory with event. |
| 1285 | * If specified in command path, ACS operation is configured with the given |
| 1286 | * channel width (in MHz). |
| 1287 | * In event path, specifies the channel width of the primary channel selected. |
| 1288 | * |
| 1289 | * @QCA_WLAN_VENDOR_ATTR_ACS_CH_LIST: Required and type is NLA_UNSPEC. |
| 1290 | * Used with command to configure channel list using an array of |
| 1291 | * channel numbers (u8). |
| 1292 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 1293 | * the driver mandates use of QCA_WLAN_VENDOR_ATTR_ACS_FREQ_LIST whereas |
| 1294 | * QCA_WLAN_VENDOR_ATTR_ACS_CH_LIST is optional. |
| 1295 | * |
| 1296 | * @QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_CHANNEL: Required (u8). |
| 1297 | * Used with event to notify the VHT segment 0 center channel number selected in |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1298 | * ACS operation. The value is the index of the channel center frequency for |
| 1299 | * 20 MHz, 40 MHz, and 80 MHz channels. The value is the center frequency index |
| 1300 | * of the primary 80 MHz segment for 160 MHz and 80+80 MHz channels. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1301 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 1302 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_CHANNEL is deprecated; use |
| 1303 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_FREQUENCY instead. |
| 1304 | * To maintain backward compatibility, |
| 1305 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_CHANNEL is still used if either of |
| 1306 | * the driver or user space application doesn't support the 6 GHz band. |
| 1307 | * |
| 1308 | * @QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_CHANNEL: Required (u8). |
| 1309 | * Used with event to notify the VHT segment 1 center channel number selected in |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1310 | * ACS operation. The value is zero for 20 MHz, 40 MHz, and 80 MHz channels. |
| 1311 | * The value is the index of the channel center frequency for 160 MHz channels |
| 1312 | * and the center frequency index of the secondary 80 MHz segment for 80+80 MHz |
| 1313 | * channels. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1314 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 1315 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_CHANNEL is deprecated; use |
| 1316 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_FREQUENCY instead. |
| 1317 | * To maintain backward compatibility, |
| 1318 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_CHANNEL is still used if either of |
| 1319 | * the driver or user space application doesn't support the 6 GHz band. |
| 1320 | * |
| 1321 | * @QCA_WLAN_VENDOR_ATTR_ACS_FREQ_LIST: Required and type is NLA_UNSPEC. |
| 1322 | * Used with command to configure the channel list using an array of channel |
| 1323 | * center frequencies in MHz (u32). |
| 1324 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 1325 | * the driver first parses the frequency list and if it fails to get a frequency |
| 1326 | * list, parses the channel list specified using |
| 1327 | * QCA_WLAN_VENDOR_ATTR_ACS_CH_LIST (considers only 2 GHz and 5 GHz channels in |
| 1328 | * QCA_WLAN_VENDOR_ATTR_ACS_CH_LIST). |
| 1329 | * |
| 1330 | * @QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_FREQUENCY: Required (u32). |
| 1331 | * Used with event to notify the primary channel center frequency (MHz) selected |
| 1332 | * in ACS operation. |
| 1333 | * Note: If the driver supports the 6 GHz band, the event sent from the driver |
| 1334 | * includes this attribute along with QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL. |
| 1335 | * |
| 1336 | * @QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_FREQUENCY: Required (u32). |
| 1337 | * Used with event to notify the secondary channel center frequency (MHz) |
| 1338 | * selected in ACS operation. |
| 1339 | * Note: If the driver supports the 6 GHz band, the event sent from the driver |
| 1340 | * includes this attribute along with |
| 1341 | * QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL. |
| 1342 | * |
| 1343 | * @QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_FREQUENCY: Required (u32). |
| 1344 | * Used with event to notify the VHT segment 0 center channel frequency (MHz) |
| 1345 | * selected in ACS operation. |
| 1346 | * Note: If the driver supports the 6 GHz band, the event sent from the driver |
| 1347 | * includes this attribute along with |
| 1348 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_CHANNEL. |
| 1349 | * |
| 1350 | * @QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_FREQUENCY: Required (u32). |
| 1351 | * Used with event to notify the VHT segment 1 center channel frequency (MHz) |
| 1352 | * selected in ACS operation. |
| 1353 | * Note: If the driver supports the 6 GHz band, the event sent from the driver |
| 1354 | * includes this attribute along with |
| 1355 | * QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_CHANNEL. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1356 | * |
| 1357 | * @QCA_WLAN_VENDOR_ATTR_ACS_EDMG_ENABLED: Flag attribute. |
| 1358 | * Used with command to notify the driver of EDMG request for ACS |
| 1359 | * operation. |
| 1360 | * |
| 1361 | * @QCA_WLAN_VENDOR_ATTR_ACS_EDMG_CHANNEL: Optional (u8). |
| 1362 | * Used with event to notify the EDMG channel number selected in ACS |
| 1363 | * operation. |
| 1364 | * EDMG primary channel is indicated by QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1365 | */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1366 | enum qca_wlan_vendor_attr_acs_offload { |
| 1367 | QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_INVALID = 0, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1368 | QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_CHANNEL = 1, |
| 1369 | QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_CHANNEL = 2, |
| 1370 | QCA_WLAN_VENDOR_ATTR_ACS_HW_MODE = 3, |
| 1371 | QCA_WLAN_VENDOR_ATTR_ACS_HT_ENABLED = 4, |
| 1372 | QCA_WLAN_VENDOR_ATTR_ACS_HT40_ENABLED = 5, |
| 1373 | QCA_WLAN_VENDOR_ATTR_ACS_VHT_ENABLED = 6, |
| 1374 | QCA_WLAN_VENDOR_ATTR_ACS_CHWIDTH = 7, |
| 1375 | QCA_WLAN_VENDOR_ATTR_ACS_CH_LIST = 8, |
| 1376 | QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_CHANNEL = 9, |
| 1377 | QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_CHANNEL = 10, |
| 1378 | QCA_WLAN_VENDOR_ATTR_ACS_FREQ_LIST = 11, |
| 1379 | QCA_WLAN_VENDOR_ATTR_ACS_PRIMARY_FREQUENCY = 12, |
| 1380 | QCA_WLAN_VENDOR_ATTR_ACS_SECONDARY_FREQUENCY = 13, |
| 1381 | QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG0_CENTER_FREQUENCY = 14, |
| 1382 | QCA_WLAN_VENDOR_ATTR_ACS_VHT_SEG1_CENTER_FREQUENCY = 15, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1383 | QCA_WLAN_VENDOR_ATTR_ACS_EDMG_ENABLED = 16, |
| 1384 | QCA_WLAN_VENDOR_ATTR_ACS_EDMG_CHANNEL = 17, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1385 | |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1386 | /* keep last */ |
| 1387 | QCA_WLAN_VENDOR_ATTR_ACS_AFTER_LAST, |
| 1388 | QCA_WLAN_VENDOR_ATTR_ACS_MAX = |
| 1389 | QCA_WLAN_VENDOR_ATTR_ACS_AFTER_LAST - 1 |
| 1390 | }; |
| 1391 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1392 | /** |
| 1393 | * enum qca_wlan_vendor_acs_hw_mode - Defines HW mode to be used with the |
| 1394 | * vendor command/event QCA_NL80211_VENDOR_SUBCMD_DO_ACS. |
| 1395 | * |
| 1396 | * @QCA_ACS_MODE_IEEE80211B: 802.11b mode |
| 1397 | * @QCA_ACS_MODE_IEEE80211G: 802.11g mode |
| 1398 | * @QCA_ACS_MODE_IEEE80211A: 802.11a mode |
| 1399 | * @QCA_ACS_MODE_IEEE80211AD: 802.11ad mode |
| 1400 | * @QCA_ACS_MODE_IEEE80211ANY: all modes |
| 1401 | * @QCA_ACS_MODE_IEEE80211AX: 802.11ax mode |
| 1402 | */ |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1403 | enum qca_wlan_vendor_acs_hw_mode { |
| 1404 | QCA_ACS_MODE_IEEE80211B, |
| 1405 | QCA_ACS_MODE_IEEE80211G, |
| 1406 | QCA_ACS_MODE_IEEE80211A, |
| 1407 | QCA_ACS_MODE_IEEE80211AD, |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 1408 | QCA_ACS_MODE_IEEE80211ANY, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1409 | QCA_ACS_MODE_IEEE80211AX, |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1410 | }; |
| 1411 | |
| 1412 | /** |
| 1413 | * enum qca_wlan_vendor_features - Vendor device/driver feature flags |
| 1414 | * |
| 1415 | * @QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD: Device supports key |
| 1416 | * management offload, a mechanism where the station's firmware |
| 1417 | * does the exchange with the AP to establish the temporal keys |
| 1418 | * after roaming, rather than having the user space wpa_supplicant do it. |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 1419 | * @QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY: Device supports automatic |
| 1420 | * band selection based on channel selection results. |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1421 | * @QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS: Device supports |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1422 | * simultaneous off-channel operations. |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1423 | * @QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD: Device supports P2P |
| 1424 | * Listen offload; a mechanism where the station's firmware takes care of |
| 1425 | * responding to incoming Probe Request frames received from other P2P |
| 1426 | * Devices whilst in Listen state, rather than having the user space |
| 1427 | * wpa_supplicant do it. Information from received P2P requests are |
| 1428 | * forwarded from firmware to host whenever the host processor wakes up. |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1429 | * @QCA_WLAN_VENDOR_FEATURE_OCE_STA: Device supports all OCE non-AP STA |
| 1430 | * specific features. |
| 1431 | * @QCA_WLAN_VENDOR_FEATURE_OCE_AP: Device supports all OCE AP specific |
| 1432 | * features. |
| 1433 | * @QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON: Device supports OCE STA-CFON |
| 1434 | * specific features only. If a Device sets this bit but not the |
| 1435 | * %QCA_WLAN_VENDOR_FEATURE_OCE_AP, the userspace shall assume that |
| 1436 | * this Device may not support all OCE AP functionalities but can support |
| 1437 | * only OCE STA-CFON functionalities. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1438 | * @QCA_WLAN_VENDOR_FEATURE_SELF_MANAGED_REGULATORY: Device supports self |
| 1439 | * managed regulatory. |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 1440 | * @QCA_WLAN_VENDOR_FEATURE_TWT: Device supports TWT (Target Wake Time). |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1441 | * @QCA_WLAN_VENDOR_FEATURE_11AX: Device supports 802.11ax (HE) |
| 1442 | * @QCA_WLAN_VENDOR_FEATURE_6GHZ_SUPPORT: Device supports 6 GHz band operation |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1443 | * @QCA_WLAN_VENDOR_FEATURE_THERMAL_CONFIG: Device is capable of receiving |
| 1444 | * and applying thermal configuration through |
| 1445 | * %QCA_WLAN_VENDOR_ATTR_THERMAL_LEVEL and |
| 1446 | * %QCA_WLAN_VENDOR_ATTR_THERMAL_COMPLETION_WINDOW attributes from |
| 1447 | * userspace. |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1448 | * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits |
| 1449 | */ |
| 1450 | enum qca_wlan_vendor_features { |
| 1451 | QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD = 0, |
Dmitry Shmidt | b1e5210 | 2015-05-29 12:36:29 -0700 | [diff] [blame] | 1452 | QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY = 1, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1453 | QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS = 2, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1454 | QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD = 3, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1455 | QCA_WLAN_VENDOR_FEATURE_OCE_STA = 4, |
| 1456 | QCA_WLAN_VENDOR_FEATURE_OCE_AP = 5, |
| 1457 | QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON = 6, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1458 | QCA_WLAN_VENDOR_FEATURE_SELF_MANAGED_REGULATORY = 7, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 1459 | QCA_WLAN_VENDOR_FEATURE_TWT = 8, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 1460 | QCA_WLAN_VENDOR_FEATURE_11AX = 9, |
| 1461 | QCA_WLAN_VENDOR_FEATURE_6GHZ_SUPPORT = 10, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1462 | QCA_WLAN_VENDOR_FEATURE_THERMAL_CONFIG = 11, |
Dmitry Shmidt | 6c0da2b | 2015-01-05 13:08:17 -0800 | [diff] [blame] | 1463 | NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */ |
| 1464 | }; |
| 1465 | |
Dmitry Shmidt | 4dd28dc | 2015-03-10 11:21:43 -0700 | [diff] [blame] | 1466 | /** |
| 1467 | * enum qca_wlan_vendor_attr_data_offload_ind - Vendor Data Offload Indication |
| 1468 | * |
| 1469 | * @QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_SESSION: Session corresponding to |
| 1470 | * the offloaded data. |
| 1471 | * @QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_PROTOCOL: Protocol of the offloaded |
| 1472 | * data. |
| 1473 | * @QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_EVENT: Event type for the data offload |
| 1474 | * indication. |
| 1475 | */ |
| 1476 | enum qca_wlan_vendor_attr_data_offload_ind { |
| 1477 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_INVALID = 0, |
| 1478 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_SESSION, |
| 1479 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_PROTOCOL, |
| 1480 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_EVENT, |
| 1481 | |
| 1482 | /* keep last */ |
| 1483 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_AFTER_LAST, |
| 1484 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_MAX = |
| 1485 | QCA_WLAN_VENDOR_ATTR_DATA_OFFLOAD_IND_AFTER_LAST - 1 |
| 1486 | }; |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 1487 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 1488 | /** |
| 1489 | * enum qca_wlan_vendor_attr_ocb_set_config - Vendor subcmd attributes to set |
| 1490 | * OCB config |
| 1491 | * |
| 1492 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_COUNT: Number of channels in the |
| 1493 | * configuration |
| 1494 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_SIZE: Size of the schedule |
| 1495 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_ARRAY: Array of channels |
| 1496 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_ARRAY: Array of channels to be |
| 1497 | * scheduled |
| 1498 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_CHANNEL_ARRAY: Array of NDL channel |
| 1499 | * information |
| 1500 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_ACTIVE_STATE_ARRAY: Array of NDL |
| 1501 | * active state configuration |
| 1502 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_FLAGS: Configuration flags such as |
| 1503 | * OCB_CONFIG_FLAG_80211_FRAME_MODE |
| 1504 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_DEF_TX_PARAM: Default TX parameters to |
| 1505 | * use in the case that a packet is sent without a TX control header |
| 1506 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_TA_MAX_DURATION: Max duration after the |
| 1507 | * last TA received that the local time set by TA is synchronous to other |
| 1508 | * communicating OCB STAs. |
| 1509 | */ |
| 1510 | enum qca_wlan_vendor_attr_ocb_set_config { |
| 1511 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_INVALID = 0, |
| 1512 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_COUNT = 1, |
| 1513 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_SIZE = 2, |
| 1514 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_ARRAY = 3, |
| 1515 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_ARRAY = 4, |
| 1516 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_CHANNEL_ARRAY = 5, |
| 1517 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_ACTIVE_STATE_ARRAY = 6, |
| 1518 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_FLAGS = 7, |
| 1519 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_DEF_TX_PARAM = 8, |
| 1520 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_TA_MAX_DURATION = 9, |
| 1521 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_AFTER_LAST, |
| 1522 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_MAX = |
| 1523 | QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_AFTER_LAST - 1 |
| 1524 | }; |
| 1525 | |
| 1526 | /** |
| 1527 | * enum qca_wlan_vendor_attr_ocb_set_utc_time - Vendor subcmd attributes to set |
| 1528 | * UTC time |
| 1529 | * |
| 1530 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_VALUE: The UTC time as an array of |
| 1531 | * 10 bytes |
| 1532 | * @QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_ERROR: The time error as an array of |
| 1533 | * 5 bytes |
| 1534 | */ |
| 1535 | enum qca_wlan_vendor_attr_ocb_set_utc_time { |
| 1536 | QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_INVALID = 0, |
| 1537 | QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_VALUE = 1, |
| 1538 | QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_ERROR = 2, |
| 1539 | QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_AFTER_LAST, |
| 1540 | QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_MAX = |
| 1541 | QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_AFTER_LAST - 1 |
| 1542 | }; |
| 1543 | |
| 1544 | /** |
| 1545 | * enum qca_wlan_vendor_attr_ocb_start_timing_advert - Vendor subcmd attributes |
| 1546 | * to start sending timing advert frames |
| 1547 | * |
| 1548 | * @QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_CHANNEL_FREQ: Cannel frequency |
| 1549 | * on which to send the frames |
| 1550 | * @QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_REPEAT_RATE: Number of times |
| 1551 | * the frame is sent in 5 seconds |
| 1552 | */ |
| 1553 | enum qca_wlan_vendor_attr_ocb_start_timing_advert { |
| 1554 | QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_INVALID = 0, |
| 1555 | QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_CHANNEL_FREQ = 1, |
| 1556 | QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_REPEAT_RATE = 2, |
| 1557 | QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_AFTER_LAST, |
| 1558 | QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_MAX = |
| 1559 | QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_AFTER_LAST - 1 |
| 1560 | }; |
| 1561 | |
| 1562 | /** |
| 1563 | * enum qca_wlan_vendor_attr_ocb_stop_timing_advert - Vendor subcmd attributes |
| 1564 | * to stop timing advert |
| 1565 | * |
| 1566 | * @QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_CHANNEL_FREQ: The channel |
| 1567 | * frequency on which to stop the timing advert |
| 1568 | */ |
| 1569 | enum qca_wlan_vendor_attr_ocb_stop_timing_advert { |
| 1570 | QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_INVALID = 0, |
| 1571 | QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_CHANNEL_FREQ = 1, |
| 1572 | QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_AFTER_LAST, |
| 1573 | QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_MAX = |
| 1574 | QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_AFTER_LAST - 1 |
| 1575 | }; |
| 1576 | |
| 1577 | /** |
| 1578 | * enum qca_wlan_vendor_attr_ocb_get_tsf_response - Vendor subcmd attributes to |
| 1579 | * get TSF timer value |
| 1580 | * |
| 1581 | * @QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_HIGH: Higher 32 bits of the |
| 1582 | * timer |
| 1583 | * @QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_LOW: Lower 32 bits of the timer |
| 1584 | */ |
| 1585 | enum qca_wlan_vendor_attr_ocb_get_tsf_resp { |
| 1586 | QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_INVALID = 0, |
| 1587 | QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_HIGH = 1, |
| 1588 | QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_LOW = 2, |
| 1589 | QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_AFTER_LAST, |
| 1590 | QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_MAX = |
| 1591 | QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_AFTER_LAST - 1 |
| 1592 | }; |
| 1593 | |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 1594 | enum qca_vendor_attr_get_preferred_freq_list { |
| 1595 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_INVALID, |
| 1596 | /* A 32-unsigned value; the interface type/mode for which the preferred |
| 1597 | * frequency list is requested (see enum qca_iface_type for possible |
| 1598 | * values); used in GET_PREFERRED_FREQ_LIST command from user-space to |
| 1599 | * kernel and in the kernel response back to user-space. |
| 1600 | */ |
| 1601 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_IFACE_TYPE, |
| 1602 | /* An array of 32-unsigned values; values are frequency (MHz); sent |
| 1603 | * from kernel space to user space. |
| 1604 | */ |
| 1605 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1606 | /* An array of nested values as per enum qca_wlan_vendor_attr_pcl |
| 1607 | * attribute. Each element contains frequency (MHz), weight, and flag |
| 1608 | * bit mask indicating how the frequency should be used in P2P |
| 1609 | * negotiation; sent from kernel space to user space. |
| 1610 | */ |
| 1611 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_WEIGHED_PCL, |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 1612 | /* keep last */ |
| 1613 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_AFTER_LAST, |
| 1614 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_MAX = |
| 1615 | QCA_WLAN_VENDOR_ATTR_GET_PREFERRED_FREQ_LIST_AFTER_LAST - 1 |
| 1616 | }; |
| 1617 | |
| 1618 | enum qca_vendor_attr_probable_oper_channel { |
| 1619 | QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_INVALID, |
| 1620 | /* 32-bit unsigned value; indicates the connection/iface type likely to |
| 1621 | * come on this channel (see enum qca_iface_type). |
| 1622 | */ |
| 1623 | QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_IFACE_TYPE, |
| 1624 | /* 32-bit unsigned value; the frequency (MHz) of the probable channel */ |
| 1625 | QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_FREQ, |
| 1626 | /* keep last */ |
| 1627 | QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_AFTER_LAST, |
| 1628 | QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_MAX = |
| 1629 | QCA_WLAN_VENDOR_ATTR_PROBABLE_OPER_CHANNEL_AFTER_LAST - 1 |
| 1630 | }; |
| 1631 | |
| 1632 | enum qca_iface_type { |
| 1633 | QCA_IFACE_TYPE_STA, |
| 1634 | QCA_IFACE_TYPE_AP, |
| 1635 | QCA_IFACE_TYPE_P2P_CLIENT, |
| 1636 | QCA_IFACE_TYPE_P2P_GO, |
| 1637 | QCA_IFACE_TYPE_IBSS, |
| 1638 | QCA_IFACE_TYPE_TDLS, |
| 1639 | }; |
| 1640 | |
| 1641 | enum qca_set_band { |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 1642 | QCA_SETBAND_AUTO = 0, |
| 1643 | QCA_SETBAND_5G = BIT(0), |
| 1644 | QCA_SETBAND_2G = BIT(1), |
| 1645 | QCA_SETBAND_6G = BIT(2), |
Ravi Joshi | e6ccb16 | 2015-07-16 17:45:41 -0700 | [diff] [blame] | 1646 | }; |
| 1647 | |
Dmitry Shmidt | 1702232 | 2016-04-06 13:28:42 -0700 | [diff] [blame] | 1648 | /** |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1649 | * enum qca_access_policy - Access control policy |
| 1650 | * |
| 1651 | * Access control policy is applied on the configured IE |
| 1652 | * (QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE). |
| 1653 | * To be set with QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY. |
| 1654 | * |
| 1655 | * @QCA_ACCESS_POLICY_ACCEPT_UNLESS_LISTED: Deny Wi-Fi connections which match |
| 1656 | * the specific configuration (IE) set, i.e., allow all the |
| 1657 | * connections which do not match the configuration. |
| 1658 | * @QCA_ACCESS_POLICY_DENY_UNLESS_LISTED: Accept Wi-Fi connections which match |
| 1659 | * the specific configuration (IE) set, i.e., deny all the |
| 1660 | * connections which do not match the configuration. |
| 1661 | */ |
| 1662 | enum qca_access_policy { |
| 1663 | QCA_ACCESS_POLICY_ACCEPT_UNLESS_LISTED, |
| 1664 | QCA_ACCESS_POLICY_DENY_UNLESS_LISTED, |
| 1665 | }; |
| 1666 | |
| 1667 | /** |
Dmitry Shmidt | 1702232 | 2016-04-06 13:28:42 -0700 | [diff] [blame] | 1668 | * enum qca_vendor_attr_get_tsf: Vendor attributes for TSF capture |
| 1669 | * @QCA_WLAN_VENDOR_ATTR_TSF_CMD: enum qca_tsf_operation (u32) |
| 1670 | * @QCA_WLAN_VENDOR_ATTR_TSF_TIMER_VALUE: Unsigned 64 bit TSF timer value |
| 1671 | * @QCA_WLAN_VENDOR_ATTR_TSF_SOC_TIMER_VALUE: Unsigned 64 bit Synchronized |
| 1672 | * SOC timer value at TSF capture |
| 1673 | */ |
| 1674 | enum qca_vendor_attr_tsf_cmd { |
| 1675 | QCA_WLAN_VENDOR_ATTR_TSF_INVALID = 0, |
| 1676 | QCA_WLAN_VENDOR_ATTR_TSF_CMD, |
| 1677 | QCA_WLAN_VENDOR_ATTR_TSF_TIMER_VALUE, |
| 1678 | QCA_WLAN_VENDOR_ATTR_TSF_SOC_TIMER_VALUE, |
| 1679 | QCA_WLAN_VENDOR_ATTR_TSF_AFTER_LAST, |
| 1680 | QCA_WLAN_VENDOR_ATTR_TSF_MAX = |
| 1681 | QCA_WLAN_VENDOR_ATTR_TSF_AFTER_LAST - 1 |
| 1682 | }; |
| 1683 | |
| 1684 | /** |
| 1685 | * enum qca_tsf_operation: TSF driver commands |
| 1686 | * @QCA_TSF_CAPTURE: Initiate TSF Capture |
| 1687 | * @QCA_TSF_GET: Get TSF capture value |
| 1688 | * @QCA_TSF_SYNC_GET: Initiate TSF capture and return with captured value |
| 1689 | */ |
| 1690 | enum qca_tsf_cmd { |
| 1691 | QCA_TSF_CAPTURE, |
| 1692 | QCA_TSF_GET, |
| 1693 | QCA_TSF_SYNC_GET, |
| 1694 | }; |
| 1695 | |
| 1696 | /** |
| 1697 | * enum qca_vendor_attr_wisa_cmd |
| 1698 | * @QCA_WLAN_VENDOR_ATTR_WISA_MODE: WISA mode value (u32) |
| 1699 | * WISA setup vendor commands |
| 1700 | */ |
| 1701 | enum qca_vendor_attr_wisa_cmd { |
| 1702 | QCA_WLAN_VENDOR_ATTR_WISA_INVALID = 0, |
| 1703 | QCA_WLAN_VENDOR_ATTR_WISA_MODE, |
| 1704 | QCA_WLAN_VENDOR_ATTR_WISA_AFTER_LAST, |
| 1705 | QCA_WLAN_VENDOR_ATTR_WISA_MAX = |
| 1706 | QCA_WLAN_VENDOR_ATTR_WISA_AFTER_LAST - 1 |
| 1707 | }; |
| 1708 | |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1709 | /* IEEE 802.11 Vendor Specific elements */ |
| 1710 | |
| 1711 | /** |
| 1712 | * enum qca_vendor_element_id - QCA Vendor Specific element types |
| 1713 | * |
| 1714 | * These values are used to identify QCA Vendor Specific elements. The |
| 1715 | * payload of the element starts with the three octet OUI (OUI_QCA) and |
| 1716 | * is followed by a single octet type which is defined by this enum. |
| 1717 | * |
| 1718 | * @QCA_VENDOR_ELEM_P2P_PREF_CHAN_LIST: P2P preferred channel list. |
| 1719 | * This element can be used to specify preference order for supported |
| 1720 | * channels. The channels in this list are in preference order (the first |
| 1721 | * one has the highest preference) and are described as a pair of |
| 1722 | * (global) Operating Class and Channel Number (each one octet) fields. |
| 1723 | * |
| 1724 | * This extends the standard P2P functionality by providing option to have |
| 1725 | * more than one preferred operating channel. When this element is present, |
| 1726 | * it replaces the preference indicated in the Operating Channel attribute. |
| 1727 | * For supporting other implementations, the Operating Channel attribute is |
| 1728 | * expected to be used with the highest preference channel. Similarly, all |
| 1729 | * the channels included in this Preferred channel list element are |
| 1730 | * expected to be included in the Channel List attribute. |
| 1731 | * |
| 1732 | * This vendor element may be included in GO Negotiation Request, P2P |
| 1733 | * Invitation Request, and Provision Discovery Request frames. |
Dmitry Shmidt | 4ae50e6 | 2016-06-27 13:48:39 -0700 | [diff] [blame] | 1734 | * |
| 1735 | * @QCA_VENDOR_ELEM_HE_CAPAB: HE Capabilities element. |
| 1736 | * This element can be used for pre-standard publication testing of HE |
| 1737 | * before P802.11ax draft assigns the element ID. The payload of this |
| 1738 | * vendor specific element is defined by the latest P802.11ax draft. |
| 1739 | * Please note that the draft is still work in progress and this element |
| 1740 | * payload is subject to change. |
| 1741 | * |
| 1742 | * @QCA_VENDOR_ELEM_HE_OPER: HE Operation element. |
| 1743 | * This element can be used for pre-standard publication testing of HE |
| 1744 | * before P802.11ax draft assigns the element ID. The payload of this |
| 1745 | * vendor specific element is defined by the latest P802.11ax draft. |
| 1746 | * Please note that the draft is still work in progress and this element |
| 1747 | * payload is subject to change. |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1748 | * |
| 1749 | * @QCA_VENDOR_ELEM_RAPS: RAPS element (OFDMA-based Random Access Parameter Set |
| 1750 | * element). |
| 1751 | * This element can be used for pre-standard publication testing of HE |
| 1752 | * before P802.11ax draft assigns the element ID extension. The payload of |
| 1753 | * this vendor specific element is defined by the latest P802.11ax draft |
| 1754 | * (not including the Element ID Extension field). Please note that the |
| 1755 | * draft is still work in progress and this element payload is subject to |
| 1756 | * change. |
| 1757 | * |
| 1758 | * @QCA_VENDOR_ELEM_MU_EDCA_PARAMS: MU EDCA Parameter Set element. |
| 1759 | * This element can be used for pre-standard publication testing of HE |
| 1760 | * before P802.11ax draft assigns the element ID extension. The payload of |
| 1761 | * this vendor specific element is defined by the latest P802.11ax draft |
| 1762 | * (not including the Element ID Extension field). Please note that the |
| 1763 | * draft is still work in progress and this element payload is subject to |
| 1764 | * change. |
| 1765 | * |
| 1766 | * @QCA_VENDOR_ELEM_BSS_COLOR_CHANGE: BSS Color Change Announcement element. |
| 1767 | * This element can be used for pre-standard publication testing of HE |
| 1768 | * before P802.11ax draft assigns the element ID extension. The payload of |
| 1769 | * this vendor specific element is defined by the latest P802.11ax draft |
| 1770 | * (not including the Element ID Extension field). Please note that the |
| 1771 | * draft is still work in progress and this element payload is subject to |
| 1772 | * change. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 1773 | * |
| 1774 | * @QCA_VENDOR_ELEM_ALLPLAY: Allplay element |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1775 | */ |
| 1776 | enum qca_vendor_element_id { |
| 1777 | QCA_VENDOR_ELEM_P2P_PREF_CHAN_LIST = 0, |
Dmitry Shmidt | 4ae50e6 | 2016-06-27 13:48:39 -0700 | [diff] [blame] | 1778 | QCA_VENDOR_ELEM_HE_CAPAB = 1, |
| 1779 | QCA_VENDOR_ELEM_HE_OPER = 2, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 1780 | QCA_VENDOR_ELEM_RAPS = 3, |
| 1781 | QCA_VENDOR_ELEM_MU_EDCA_PARAMS = 4, |
| 1782 | QCA_VENDOR_ELEM_BSS_COLOR_CHANGE = 5, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 1783 | QCA_VENDOR_ELEM_ALLPLAY = 6, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1784 | }; |
| 1785 | |
| 1786 | /** |
| 1787 | * enum qca_wlan_vendor_attr_scan - Specifies vendor scan attributes |
| 1788 | * |
| 1789 | * @QCA_WLAN_VENDOR_ATTR_SCAN_IE: IEs that should be included as part of scan |
| 1790 | * @QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES: Nested unsigned 32-bit attributes |
| 1791 | * with frequencies to be scanned (in MHz) |
| 1792 | * @QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS: Nested attribute with SSIDs to be scanned |
| 1793 | * @QCA_WLAN_VENDOR_ATTR_SCAN_SUPP_RATES: Nested array attribute of supported |
| 1794 | * rates to be included |
| 1795 | * @QCA_WLAN_VENDOR_ATTR_SCAN_TX_NO_CCK_RATE: flag used to send probe requests |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1796 | * at non CCK rate in 2GHz band |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1797 | * @QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS: Unsigned 32-bit scan flags |
| 1798 | * @QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE: Unsigned 64-bit cookie provided by the |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1799 | * driver for the specific scan request |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1800 | * @QCA_WLAN_VENDOR_ATTR_SCAN_STATUS: Unsigned 8-bit status of the scan |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1801 | * request decoded as in enum scan_status |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1802 | * @QCA_WLAN_VENDOR_ATTR_SCAN_MAC: 6-byte MAC address to use when randomisation |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1803 | * scan flag is set |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1804 | * @QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK: 6-byte MAC address mask to be used with |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1805 | * randomisation |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 1806 | * @QCA_WLAN_VENDOR_ATTR_SCAN_BSSID: 6-byte MAC address representing the |
| 1807 | * specific BSSID to scan for. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1808 | * @QCA_WLAN_VENDOR_ATTR_SCAN_DWELL_TIME: Unsigned 64-bit dwell time in |
| 1809 | * microseconds. This is a common value which applies across all |
| 1810 | * frequencies specified by QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES. |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1811 | */ |
| 1812 | enum qca_wlan_vendor_attr_scan { |
| 1813 | QCA_WLAN_VENDOR_ATTR_SCAN_INVALID_PARAM = 0, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 1814 | QCA_WLAN_VENDOR_ATTR_SCAN_IE = 1, |
| 1815 | QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES = 2, |
| 1816 | QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS = 3, |
| 1817 | QCA_WLAN_VENDOR_ATTR_SCAN_SUPP_RATES = 4, |
| 1818 | QCA_WLAN_VENDOR_ATTR_SCAN_TX_NO_CCK_RATE = 5, |
| 1819 | QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS = 6, |
| 1820 | QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE = 7, |
| 1821 | QCA_WLAN_VENDOR_ATTR_SCAN_STATUS = 8, |
| 1822 | QCA_WLAN_VENDOR_ATTR_SCAN_MAC = 9, |
| 1823 | QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK = 10, |
| 1824 | QCA_WLAN_VENDOR_ATTR_SCAN_BSSID = 11, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 1825 | QCA_WLAN_VENDOR_ATTR_SCAN_DWELL_TIME = 12, |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1826 | QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST, |
| 1827 | QCA_WLAN_VENDOR_ATTR_SCAN_MAX = |
| 1828 | QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST - 1 |
| 1829 | }; |
| 1830 | |
| 1831 | /** |
| 1832 | * enum scan_status - Specifies the valid values the vendor scan attribute |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1833 | * QCA_WLAN_VENDOR_ATTR_SCAN_STATUS can take |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1834 | * |
| 1835 | * @VENDOR_SCAN_STATUS_NEW_RESULTS: implies the vendor scan is successful with |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1836 | * new scan results |
Dmitry Shmidt | d80a401 | 2015-11-05 16:35:40 -0800 | [diff] [blame] | 1837 | * @VENDOR_SCAN_STATUS_ABORTED: implies the vendor scan was aborted in-between |
| 1838 | */ |
| 1839 | enum scan_status { |
| 1840 | VENDOR_SCAN_STATUS_NEW_RESULTS, |
| 1841 | VENDOR_SCAN_STATUS_ABORTED, |
| 1842 | VENDOR_SCAN_STATUS_MAX, |
| 1843 | }; |
| 1844 | |
| 1845 | /** |
| 1846 | * enum qca_vendor_attr_ota_test - Specifies the values for vendor |
| 1847 | * command QCA_NL80211_VENDOR_SUBCMD_OTA_TEST |
| 1848 | * @QCA_WLAN_VENDOR_ATTR_OTA_TEST_ENABLE: enable ota test |
| 1849 | */ |
| 1850 | enum qca_vendor_attr_ota_test { |
| 1851 | QCA_WLAN_VENDOR_ATTR_OTA_TEST_INVALID, |
| 1852 | /* 8-bit unsigned value to indicate if OTA test is enabled */ |
| 1853 | QCA_WLAN_VENDOR_ATTR_OTA_TEST_ENABLE, |
| 1854 | /* keep last */ |
| 1855 | QCA_WLAN_VENDOR_ATTR_OTA_TEST_AFTER_LAST, |
| 1856 | QCA_WLAN_VENDOR_ATTR_OTA_TEST_MAX = |
| 1857 | QCA_WLAN_VENDOR_ATTR_OTA_TEST_AFTER_LAST - 1 |
| 1858 | }; |
| 1859 | |
| 1860 | /** |
| 1861 | * enum qca_vendor_attr_txpower_scale - vendor sub commands index |
| 1862 | * |
| 1863 | * @QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE: scaling value |
| 1864 | */ |
| 1865 | enum qca_vendor_attr_txpower_scale { |
| 1866 | QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_INVALID, |
| 1867 | /* 8-bit unsigned value to indicate the scaling of tx power */ |
| 1868 | QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE, |
| 1869 | /* keep last */ |
| 1870 | QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_AFTER_LAST, |
| 1871 | QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_MAX = |
| 1872 | QCA_WLAN_VENDOR_ATTR_TXPOWER_SCALE_AFTER_LAST - 1 |
| 1873 | }; |
| 1874 | |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame] | 1875 | /** |
| 1876 | * enum qca_vendor_attr_txpower_decr_db - Attributes for TX power decrease |
| 1877 | * |
| 1878 | * These attributes are used with QCA_NL80211_VENDOR_SUBCMD_SET_TXPOWER_DECR_DB. |
| 1879 | */ |
| 1880 | enum qca_vendor_attr_txpower_decr_db { |
| 1881 | QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_INVALID, |
| 1882 | /* 8-bit unsigned value to indicate the reduction of TX power in dB for |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1883 | * a virtual interface. |
| 1884 | */ |
Dmitry Shmidt | d7ff03d | 2015-12-04 14:49:35 -0800 | [diff] [blame] | 1885 | QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB, |
| 1886 | /* keep last */ |
| 1887 | QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_AFTER_LAST, |
| 1888 | QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_MAX = |
| 1889 | QCA_WLAN_VENDOR_ATTR_TXPOWER_DECR_DB_AFTER_LAST - 1 |
| 1890 | }; |
| 1891 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1892 | /* Attributes for data used by |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1893 | * QCA_NL80211_VENDOR_SUBCMD_SET_WIFI_CONFIGURATION and |
| 1894 | * QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_CONFIGURATION subcommands. |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1895 | */ |
| 1896 | enum qca_wlan_vendor_attr_config { |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1897 | QCA_WLAN_VENDOR_ATTR_CONFIG_INVALID = 0, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1898 | /* Unsigned 32-bit value to set the DTIM period. |
| 1899 | * Whether the wifi chipset wakes at every dtim beacon or a multiple of |
| 1900 | * the DTIM period. If DTIM is set to 3, the STA shall wake up every 3 |
| 1901 | * DTIM beacons. |
| 1902 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1903 | QCA_WLAN_VENDOR_ATTR_CONFIG_DYNAMIC_DTIM = 1, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1904 | /* Unsigned 32-bit value to set the wifi_iface stats averaging factor |
| 1905 | * used to calculate statistics like average the TSF offset or average |
| 1906 | * number of frame leaked. |
| 1907 | * For instance, upon Beacon frame reception: |
| 1908 | * current_avg = ((beacon_TSF - TBTT) * factor + previous_avg * (0x10000 - factor) ) / 0x10000 |
| 1909 | * For instance, when evaluating leaky APs: |
| 1910 | * current_avg = ((num frame received within guard time) * factor + previous_avg * (0x10000 - factor)) / 0x10000 |
| 1911 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1912 | QCA_WLAN_VENDOR_ATTR_CONFIG_STATS_AVG_FACTOR = 2, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1913 | /* Unsigned 32-bit value to configure guard time, i.e., when |
| 1914 | * implementing IEEE power management based on frame control PM bit, how |
| 1915 | * long the driver waits before shutting down the radio and after |
| 1916 | * receiving an ACK frame for a Data frame with PM bit set. |
| 1917 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1918 | QCA_WLAN_VENDOR_ATTR_CONFIG_GUARD_TIME = 3, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1919 | /* Unsigned 32-bit value to change the FTM capability dynamically */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1920 | QCA_WLAN_VENDOR_ATTR_CONFIG_FINE_TIME_MEASUREMENT = 4, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1921 | /* Unsigned 16-bit value to configure maximum TX rate dynamically */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1922 | QCA_WLAN_VENDOR_ATTR_CONF_TX_RATE = 5, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1923 | /* Unsigned 32-bit value to configure the number of continuous |
| 1924 | * Beacon Miss which shall be used by the firmware to penalize |
| 1925 | * the RSSI. |
| 1926 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1927 | QCA_WLAN_VENDOR_ATTR_CONFIG_PENALIZE_AFTER_NCONS_BEACON_MISS = 6, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1928 | /* Unsigned 8-bit value to configure the channel avoidance indication |
| 1929 | * behavior. Firmware to send only one indication and ignore duplicate |
| 1930 | * indications when set to avoid multiple Apps wakeups. |
| 1931 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1932 | QCA_WLAN_VENDOR_ATTR_CONFIG_CHANNEL_AVOIDANCE_IND = 7, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1933 | /* 8-bit unsigned value to configure the maximum TX MPDU for |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1934 | * aggregation. |
| 1935 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1936 | QCA_WLAN_VENDOR_ATTR_CONFIG_TX_MPDU_AGGREGATION = 8, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 1937 | /* 8-bit unsigned value to configure the maximum RX MPDU for |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1938 | * aggregation. |
| 1939 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1940 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_MPDU_AGGREGATION = 9, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1941 | /* 8-bit unsigned value to configure the Non aggregrate/11g sw |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1942 | * retry threshold (0 disable, 31 max). |
| 1943 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1944 | QCA_WLAN_VENDOR_ATTR_CONFIG_NON_AGG_RETRY = 10, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1945 | /* 8-bit unsigned value to configure the aggregrate sw |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1946 | * retry threshold (0 disable, 31 max). |
| 1947 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1948 | QCA_WLAN_VENDOR_ATTR_CONFIG_AGG_RETRY = 11, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1949 | /* 8-bit unsigned value to configure the MGMT frame |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1950 | * retry threshold (0 disable, 31 max). |
| 1951 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1952 | QCA_WLAN_VENDOR_ATTR_CONFIG_MGMT_RETRY = 12, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1953 | /* 8-bit unsigned value to configure the CTRL frame |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1954 | * retry threshold (0 disable, 31 max). |
| 1955 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1956 | QCA_WLAN_VENDOR_ATTR_CONFIG_CTRL_RETRY = 13, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1957 | /* 8-bit unsigned value to configure the propagation delay for |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1958 | * 2G/5G band (0~63, units in us) |
| 1959 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1960 | QCA_WLAN_VENDOR_ATTR_CONFIG_PROPAGATION_DELAY = 14, |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 1961 | /* Unsigned 32-bit value to configure the number of unicast TX fail |
| 1962 | * packet count. The peer is disconnected once this threshold is |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1963 | * reached. |
| 1964 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1965 | QCA_WLAN_VENDOR_ATTR_CONFIG_TX_FAIL_COUNT = 15, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1966 | /* Attribute used to set scan default IEs to the driver. |
| 1967 | * |
| 1968 | * These IEs can be used by scan operations that will be initiated by |
| 1969 | * the driver/firmware. |
| 1970 | * |
| 1971 | * For further scan requests coming to the driver, these IEs should be |
| 1972 | * merged with the IEs received along with scan request coming to the |
| 1973 | * driver. If a particular IE is present in the scan default IEs but not |
| 1974 | * present in the scan request, then that IE should be added to the IEs |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1975 | * sent in the Probe Request frames for that scan request. |
| 1976 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1977 | QCA_WLAN_VENDOR_ATTR_CONFIG_SCAN_DEFAULT_IES = 16, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1978 | /* Unsigned 32-bit attribute for generic commands */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1979 | QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_COMMAND = 17, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1980 | /* Unsigned 32-bit value attribute for generic commands */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1981 | QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_VALUE = 18, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1982 | /* Unsigned 32-bit data attribute for generic command response */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1983 | QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA = 19, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1984 | /* Unsigned 32-bit length attribute for |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1985 | * QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA |
| 1986 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1987 | QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_LENGTH = 20, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1988 | /* Unsigned 32-bit flags attribute for |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1989 | * QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_DATA |
| 1990 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1991 | QCA_WLAN_VENDOR_ATTR_CONFIG_GENERIC_FLAGS = 21, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1992 | /* Unsigned 32-bit, defining the access policy. |
| 1993 | * See enum qca_access_policy. Used with |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 1994 | * QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE_LIST. |
| 1995 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 1996 | QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY = 22, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 1997 | /* Sets the list of full set of IEs for which a specific access policy |
| 1998 | * has to be applied. Used along with |
| 1999 | * QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY to control the access. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2000 | * Zero length payload can be used to clear this access constraint. |
| 2001 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2002 | QCA_WLAN_VENDOR_ATTR_CONFIG_ACCESS_POLICY_IE_LIST = 23, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2003 | /* Unsigned 32-bit, specifies the interface index (netdev) for which the |
| 2004 | * corresponding configurations are applied. If the interface index is |
| 2005 | * not specified, the configurations are attributed to the respective |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2006 | * wiphy. |
| 2007 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2008 | QCA_WLAN_VENDOR_ATTR_CONFIG_IFINDEX = 24, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2009 | /* 8-bit unsigned value to trigger QPower: 1-Enable, 0-Disable */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2010 | QCA_WLAN_VENDOR_ATTR_CONFIG_QPOWER = 25, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2011 | /* 8-bit unsigned value to configure the driver and below layers to |
| 2012 | * ignore the assoc disallowed set by APs while connecting |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2013 | * 1-Ignore, 0-Don't ignore |
| 2014 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2015 | QCA_WLAN_VENDOR_ATTR_CONFIG_IGNORE_ASSOC_DISALLOWED = 26, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2016 | /* 32-bit unsigned value to trigger antenna diversity features: |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2017 | * 1-Enable, 0-Disable |
| 2018 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2019 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_ENA = 27, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2020 | /* 32-bit unsigned value to configure specific chain antenna */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2021 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_CHAIN = 28, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2022 | /* 32-bit unsigned value to trigger cycle selftest |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2023 | * 1-Enable, 0-Disable |
| 2024 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2025 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_SELFTEST = 29, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2026 | /* 32-bit unsigned to configure the cycle time of selftest |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2027 | * the unit is micro-second |
| 2028 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2029 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_SELFTEST_INTVL = 30, |
| 2030 | /* 32-bit unsigned value to set reorder timeout for AC_VO */ |
| 2031 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_REORDER_TIMEOUT_VOICE = 31, |
| 2032 | /* 32-bit unsigned value to set reorder timeout for AC_VI */ |
| 2033 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_REORDER_TIMEOUT_VIDEO = 32, |
| 2034 | /* 32-bit unsigned value to set reorder timeout for AC_BE */ |
| 2035 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_REORDER_TIMEOUT_BESTEFFORT = 33, |
| 2036 | /* 32-bit unsigned value to set reorder timeout for AC_BK */ |
| 2037 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_REORDER_TIMEOUT_BACKGROUND = 34, |
| 2038 | /* 6-byte MAC address to point out the specific peer */ |
| 2039 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_PEER_MAC = 35, |
| 2040 | /* 32-bit unsigned value to set window size for specific peer */ |
| 2041 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_BLOCKSIZE_WINLIMIT = 36, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 2042 | /* 8-bit unsigned value to set the beacon miss threshold in 2.4 GHz */ |
| 2043 | QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_24 = 37, |
| 2044 | /* 8-bit unsigned value to set the beacon miss threshold in 5 GHz */ |
| 2045 | QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_MISS_THRESHOLD_5 = 38, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 2046 | /* 32-bit unsigned value to configure 5 or 10 MHz channel width for |
| 2047 | * station device while in disconnect state. The attribute use the |
| 2048 | * value of enum nl80211_chan_width: NL80211_CHAN_WIDTH_5 means 5 MHz, |
| 2049 | * NL80211_CHAN_WIDTH_10 means 10 MHz. If set, the device work in 5 or |
| 2050 | * 10 MHz channel width, the station will not connect to a BSS using 20 |
| 2051 | * MHz or higher bandwidth. Set to NL80211_CHAN_WIDTH_20_NOHT to |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2052 | * clear this constraint. |
| 2053 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 2054 | QCA_WLAN_VENDOR_ATTR_CONFIG_SUB20_CHAN_WIDTH = 39, |
| 2055 | /* 32-bit unsigned value to configure the propagation absolute delay |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2056 | * for 2G/5G band (units in us) |
| 2057 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 2058 | QCA_WLAN_VENDOR_ATTR_CONFIG_PROPAGATION_ABS_DELAY = 40, |
| 2059 | /* 32-bit unsigned value to set probe period */ |
| 2060 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_PROBE_PERIOD = 41, |
| 2061 | /* 32-bit unsigned value to set stay period */ |
| 2062 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_STAY_PERIOD = 42, |
| 2063 | /* 32-bit unsigned value to set snr diff */ |
| 2064 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_SNR_DIFF = 43, |
| 2065 | /* 32-bit unsigned value to set probe dwell time */ |
| 2066 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_PROBE_DWELL_TIME = 44, |
| 2067 | /* 32-bit unsigned value to set mgmt snr weight */ |
| 2068 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_MGMT_SNR_WEIGHT = 45, |
| 2069 | /* 32-bit unsigned value to set data snr weight */ |
| 2070 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_DATA_SNR_WEIGHT = 46, |
| 2071 | /* 32-bit unsigned value to set ack snr weight */ |
| 2072 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANT_DIV_ACK_SNR_WEIGHT = 47, |
| 2073 | /* 32-bit unsigned value to configure the listen interval. |
| 2074 | * This is in units of beacon intervals. This configuration alters |
| 2075 | * the negotiated listen interval with the AP during the connection. |
| 2076 | * It is highly recommended to configure a value less than or equal to |
| 2077 | * the one negotiated during the association. Configuring any greater |
| 2078 | * value can have adverse effects (frame loss, AP disassociating STA, |
| 2079 | * etc.). |
| 2080 | */ |
| 2081 | QCA_WLAN_VENDOR_ATTR_CONFIG_LISTEN_INTERVAL = 48, |
| 2082 | /* |
| 2083 | * 8 bit unsigned value that is set on an AP/GO virtual interface to |
| 2084 | * disable operations that would cause the AP/GO to leave its operating |
| 2085 | * channel. |
| 2086 | * |
| 2087 | * This will restrict the scans to the AP/GO operating channel and the |
| 2088 | * channels of the other band, if DBS is supported.A STA/CLI interface |
| 2089 | * brought up after this setting is enabled, will be restricted to |
| 2090 | * connecting to devices only on the AP/GO interface's operating channel |
| 2091 | * or on the other band in DBS case. P2P supported channel list is |
| 2092 | * modified, to only include AP interface's operating-channel and the |
| 2093 | * channels of the other band if DBS is supported. |
| 2094 | * |
| 2095 | * These restrictions are only applicable as long as the AP/GO interface |
| 2096 | * is alive. If the AP/GO interface is brought down then this |
| 2097 | * setting/restriction is forgotten. |
| 2098 | * |
| 2099 | * If this variable is set on an AP/GO interface while a multi-channel |
| 2100 | * concurrent session is active, it has no effect on the operation of |
| 2101 | * the current interfaces, other than restricting the scan to the AP/GO |
| 2102 | * operating channel and the other band channels if DBS is supported. |
| 2103 | * However, if the STA is brought down and restarted then the new STA |
| 2104 | * connection will either be formed on the AP/GO channel or on the |
| 2105 | * other band in a DBS case. This is because of the scan being |
| 2106 | * restricted on these channels as mentioned above. |
| 2107 | * |
| 2108 | * 1-Restrict / 0-Don't restrict offchannel operations. |
| 2109 | */ |
| 2110 | QCA_WLAN_VENDOR_ATTR_CONFIG_RESTRICT_OFFCHANNEL = 49, |
| 2111 | /* |
| 2112 | * 8 bit unsigned value to enable/disable LRO (Large Receive Offload) |
| 2113 | * on an interface. |
| 2114 | * 1 - Enable, 0 - Disable. |
| 2115 | */ |
| 2116 | QCA_WLAN_VENDOR_ATTR_CONFIG_LRO = 50, |
| 2117 | |
| 2118 | /* |
| 2119 | * 8 bit unsigned value to globally enable/disable scan |
| 2120 | * 1 - Enable, 0 - Disable. |
| 2121 | */ |
| 2122 | QCA_WLAN_VENDOR_ATTR_CONFIG_SCAN_ENABLE = 51, |
| 2123 | |
| 2124 | /* 8-bit unsigned value to set the total beacon miss count |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2125 | * This parameter will set the total beacon miss count. |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 2126 | */ |
| 2127 | QCA_WLAN_VENDOR_ATTR_CONFIG_TOTAL_BEACON_MISS_COUNT = 52, |
| 2128 | |
| 2129 | /* Unsigned 32-bit value to configure the number of continuous |
| 2130 | * Beacon Miss which shall be used by the firmware to penalize |
| 2131 | * the RSSI for BTC. |
| 2132 | */ |
| 2133 | QCA_WLAN_VENDOR_ATTR_CONFIG_PENALIZE_AFTER_NCONS_BEACON_MISS_BTC = 53, |
| 2134 | |
| 2135 | /* 8-bit unsigned value to configure the driver and below layers to |
| 2136 | * enable/disable all FILS features. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2137 | * 0-enable, 1-disable |
| 2138 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 2139 | QCA_WLAN_VENDOR_ATTR_CONFIG_DISABLE_FILS = 54, |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 2140 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2141 | /* 16-bit unsigned value to configure the level of WLAN latency |
| 2142 | * module. See enum qca_wlan_vendor_attr_config_latency_level. |
| 2143 | */ |
| 2144 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL = 55, |
| 2145 | |
| 2146 | /* 8-bit unsigned value indicating the driver to use the RSNE as-is from |
| 2147 | * the connect interface. Exclusively used for the scenarios where the |
| 2148 | * device is used as a test bed device with special functionality and |
| 2149 | * not recommended for production. This helps driver to not validate the |
| 2150 | * RSNE passed from user space and thus allow arbitrary IE data to be |
| 2151 | * used for testing purposes. |
| 2152 | * 1-enable, 0-disable. |
| 2153 | * Applications set/reset this configuration. If not reset, this |
| 2154 | * parameter remains in use until the driver is unloaded. |
| 2155 | */ |
| 2156 | QCA_WLAN_VENDOR_ATTR_CONFIG_RSN_IE = 56, |
| 2157 | |
| 2158 | /* 8-bit unsigned value to trigger green Tx power saving. |
| 2159 | * 1-Enable, 0-Disable |
| 2160 | */ |
| 2161 | QCA_WLAN_VENDOR_ATTR_CONFIG_GTX = 57, |
| 2162 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 2163 | /* Attribute to configure disconnect IEs to the driver. |
| 2164 | * This carries an array of unsigned 8-bit characters. |
| 2165 | * |
| 2166 | * If this is configured, driver shall fill the IEs in disassoc/deauth |
| 2167 | * frame. |
| 2168 | * These IEs are expected to be considered only for the next |
| 2169 | * immediate disconnection (disassoc/deauth frame) originated by |
| 2170 | * the DUT, irrespective of the entity (user space/driver/firmware) |
| 2171 | * triggering the disconnection. |
| 2172 | * The host drivers are not expected to use the IEs set through |
| 2173 | * this interface for further disconnections after the first immediate |
| 2174 | * disconnection initiated post the configuration. |
| 2175 | * If the IEs are also updated through cfg80211 interface (after the |
| 2176 | * enhancement to cfg80211_disconnect), host driver is expected to |
| 2177 | * take the union of IEs from both of these interfaces and send in |
| 2178 | * further disassoc/deauth frames. |
| 2179 | */ |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 2180 | QCA_WLAN_VENDOR_ATTR_CONFIG_DISCONNECT_IES = 58, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 2181 | |
| 2182 | /* 8-bit unsigned value for ELNA bypass. |
| 2183 | * 1-Enable, 0-Disable |
| 2184 | */ |
| 2185 | QCA_WLAN_VENDOR_ATTR_CONFIG_ELNA_BYPASS = 59, |
| 2186 | |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 2187 | /* 8-bit unsigned value. This attribute enables/disables the host driver |
| 2188 | * to send the Beacon Report Response with failure reason for the |
| 2189 | * scenarios where STA cannot honor the Beacon Report Request from AP. |
| 2190 | * 1-Enable, 0-Disable. |
| 2191 | */ |
| 2192 | QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_REPORT_FAIL = 60, |
| 2193 | |
| 2194 | /* 8-bit unsigned value. This attribute enables/disables the host driver |
| 2195 | * to send roam reason information in the Reassociation Request frame to |
| 2196 | * the target AP when roaming within the same ESS. |
| 2197 | * 1-Enable, 0-Disable. |
| 2198 | */ |
| 2199 | QCA_WLAN_VENDOR_ATTR_CONFIG_ROAM_REASON = 61, |
| 2200 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2201 | /* 32-bit unsigned value to configure different PHY modes to the |
| 2202 | * driver/firmware. The possible values are defined in |
| 2203 | * enum qca_wlan_vendor_phy_mode. The configuration will be reset to |
| 2204 | * default value, i.e., QCA_WLAN_VENDOR_PHY_MODE_AUTO upon restarting |
| 2205 | * the driver. |
| 2206 | */ |
| 2207 | QCA_WLAN_VENDOR_ATTR_CONFIG_PHY_MODE = 62, |
| 2208 | |
| 2209 | /* 8-bit unsigned value to configure the maximum supported channel width |
| 2210 | * for STA mode. If this value is configured when STA is in connected |
| 2211 | * state, it should not exceed the negotiated channel width. If it is |
| 2212 | * configured when STA is in disconnected state, the configured value |
| 2213 | * will take effect for the next immediate connection. |
| 2214 | * Possible values are: |
| 2215 | * NL80211_CHAN_WIDTH_20 |
| 2216 | * NL80211_CHAN_WIDTH_40 |
| 2217 | * NL80211_CHAN_WIDTH_80 |
| 2218 | * NL80211_CHAN_WIDTH_80P80 |
| 2219 | * NL80211_CHAN_WIDTH_160 |
| 2220 | */ |
| 2221 | QCA_WLAN_VENDOR_ATTR_CONFIG_CHANNEL_WIDTH = 63, |
| 2222 | |
| 2223 | /* 8-bit unsigned value to enable/disable dynamic bandwidth adjustment. |
| 2224 | * This attribute is only applicable for STA mode. When dynamic |
| 2225 | * bandwidth adjustment is disabled, STA will use static channel width |
| 2226 | * the value of which is negotiated during connection. |
| 2227 | * 1-enable (default), 0-disable |
| 2228 | */ |
| 2229 | QCA_WLAN_VENDOR_ATTR_CONFIG_DYNAMIC_BW = 64, |
| 2230 | |
| 2231 | /* 8-bit unsigned value to configure the maximum number of subframes of |
| 2232 | * TX MSDU for aggregation. Possible values are 0-31. When set to 0, |
| 2233 | * it is decided by the hardware. |
| 2234 | */ |
| 2235 | QCA_WLAN_VENDOR_ATTR_CONFIG_TX_MSDU_AGGREGATION = 65, |
| 2236 | |
| 2237 | /* 8-bit unsigned value to configure the maximum number of subframes of |
| 2238 | * RX MSDU for aggregation. Possible values are 0-31. When set to 0, |
| 2239 | * it is decided by the hardware. |
| 2240 | */ |
| 2241 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_MSDU_AGGREGATION = 66, |
| 2242 | |
| 2243 | /* 8-bit unsigned value. This attribute is used to dynamically |
| 2244 | * enable/disable the LDPC capability of the device. When configured in |
| 2245 | * the disconnected state, the updated configuration will be considered |
| 2246 | * for the immediately following connection attempt. If this |
| 2247 | * configuration is modified while the device is in the connected state, |
| 2248 | * the LDPC TX will be updated with this configuration immediately, |
| 2249 | * while the LDPC RX configuration update will take place starting from |
| 2250 | * the subsequent association attempt. |
| 2251 | * 1-Enable, 0-Disable. |
| 2252 | */ |
| 2253 | QCA_WLAN_VENDOR_ATTR_CONFIG_LDPC = 67, |
| 2254 | |
| 2255 | /* 8-bit unsigned value. This attribute is used to dynamically |
| 2256 | * enable/disable the TX STBC capability of the device. When configured |
| 2257 | * in the disconnected state, the updated configuration will be |
| 2258 | * considered for the immediately following connection attempt. If the |
| 2259 | * connection is formed with TX STBC enabled and if this configuration |
| 2260 | * is disabled during that association, the TX will be impacted |
| 2261 | * immediately. Further connection attempts will disable TX STBC. |
| 2262 | * However, enabling the TX STBC for a connected session with disabled |
| 2263 | * capability is not allowed and will fail. |
| 2264 | * 1-Enable, 0-Disable. |
| 2265 | */ |
| 2266 | QCA_WLAN_VENDOR_ATTR_CONFIG_TX_STBC = 68, |
| 2267 | |
| 2268 | /* 8-bit unsigned value. This attribute is used to dynamically |
| 2269 | * enable/disable the RX STBC capability of the device. When configured |
| 2270 | * in the disconnected state, the updated configuration will be |
| 2271 | * considered for the immediately following connection attempt. If the |
| 2272 | * configuration is modified in the connected state, there will be no |
| 2273 | * impact for the current association, but further connection attempts |
| 2274 | * will use the updated configuration. |
| 2275 | * 1-Enable, 0-Disable. |
| 2276 | */ |
| 2277 | QCA_WLAN_VENDOR_ATTR_CONFIG_RX_STBC = 69, |
| 2278 | |
| 2279 | /* 8-bit unsigned value. This attribute is used to dynamically configure |
| 2280 | * the number of spatial streams. When configured in the disconnected |
| 2281 | * state, the updated configuration will be considered for the |
| 2282 | * immediately following connection attempt. If the NSS is updated after |
| 2283 | * the connection, the updated NSS value is notified to the peer using |
| 2284 | * the Operating Mode Notification/Spatial Multiplexing Power Save |
| 2285 | * frame. The updated NSS value after the connection shall not be |
| 2286 | * greater than the one negotiated during the connection. Any such |
| 2287 | * higher value configuration shall be returned with a failure. |
| 2288 | */ |
| 2289 | QCA_WLAN_VENDOR_ATTR_CONFIG_NSS = 70, |
| 2290 | /* 8-bit unsigned value to trigger Optimized Power Management: |
| 2291 | * 1-Enable, 0-Disable |
| 2292 | */ |
| 2293 | QCA_WLAN_VENDOR_ATTR_CONFIG_OPTIMIZED_POWER_MANAGEMENT = 71, |
| 2294 | |
| 2295 | /* 8-bit unsigned value. This attribute takes the QoS/access category |
| 2296 | * value represented by the enum qca_wlan_ac_type and expects the driver |
| 2297 | * to upgrade the UDP frames to this access category. The value of |
| 2298 | * QCA_WLAN_AC_ALL is invalid for this attribute. This will override the |
| 2299 | * DSCP value configured in the frame with the intention to only upgrade |
| 2300 | * the access category. That said, it is not intended to downgrade the |
| 2301 | * access category for the frames. |
| 2302 | * Set the value to QCA_WLAN_AC_BK if the QoS upgrade needs to be |
| 2303 | * disabled, as BK is of the lowest priority and an upgrade to it does |
| 2304 | * not result in any changes for the frames. |
| 2305 | */ |
| 2306 | QCA_WLAN_VENDOR_ATTR_CONFIG_UDP_QOS_UPGRADE = 72, |
| 2307 | |
| 2308 | /* 8-bit unsigned value. This attribute is used to dynamically configure |
| 2309 | * the number of chains to be used for transmitting data. This |
| 2310 | * configuration is allowed only when in connected state and will be |
| 2311 | * effective until disconnected. The driver rejects this configuration |
| 2312 | * if the number of spatial streams being used in the current connection |
| 2313 | * cannot be supported by this configuration. |
| 2314 | */ |
| 2315 | QCA_WLAN_VENDOR_ATTR_CONFIG_NUM_TX_CHAINS = 73, |
| 2316 | /* 8-bit unsigned value. This attribute is used to dynamically configure |
| 2317 | * the number of chains to be used for receiving data. This |
| 2318 | * configuration is allowed only when in connected state and will be |
| 2319 | * effective until disconnected. The driver rejects this configuration |
| 2320 | * if the number of spatial streams being used in the current connection |
| 2321 | * cannot be supported by this configuration. |
| 2322 | */ |
| 2323 | QCA_WLAN_VENDOR_ATTR_CONFIG_NUM_RX_CHAINS = 74, |
| 2324 | |
| 2325 | /* 8-bit unsigned value to configure ANI setting type. |
| 2326 | * See &enum qca_wlan_ani_setting for possible values. |
| 2327 | */ |
| 2328 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANI_SETTING = 75, |
| 2329 | /* 32-bit signed value to configure ANI level. This is used when |
| 2330 | * ANI settings type is &QCA_WLAN_ANI_SETTING_FIXED. |
| 2331 | * The set and get of ANI level with &QCA_WLAN_ANI_SETTING_AUTO |
| 2332 | * is invalid, the driver will return a failure. |
| 2333 | */ |
| 2334 | QCA_WLAN_VENDOR_ATTR_CONFIG_ANI_LEVEL = 76, |
| 2335 | |
Dmitry Shmidt | 849734c | 2016-05-27 09:59:01 -0700 | [diff] [blame] | 2336 | /* keep last */ |
| 2337 | QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST, |
| 2338 | QCA_WLAN_VENDOR_ATTR_CONFIG_MAX = |
| 2339 | QCA_WLAN_VENDOR_ATTR_CONFIG_AFTER_LAST - 1, |
| 2340 | }; |
| 2341 | |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 2342 | /* Compatibility defines for previously used incorrect enum |
| 2343 | * qca_wlan_vendor_attr_config names. These values should not be used in any |
| 2344 | * new implementation. */ |
| 2345 | #define QCA_WLAN_VENDOR_ATTR_DISCONNECT_IES \ |
| 2346 | QCA_WLAN_VENDOR_ATTR_CONFIG_DISCONNECT_IES |
| 2347 | #define QCA_WLAN_VENDOR_ATTR_BEACON_REPORT_FAIL \ |
| 2348 | QCA_WLAN_VENDOR_ATTR_CONFIG_BEACON_REPORT_FAIL |
| 2349 | |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 2350 | /** |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2351 | * enum qca_wlan_ani_setting - ANI setting type |
| 2352 | * @QCA_WLAN_ANI_SETTING_AUTO: Automatically determine ANI level |
| 2353 | * @QCA_WLAN_ANI_SETTING_FIXED: Fix ANI level to the dBm parameter |
| 2354 | */ |
| 2355 | enum qca_wlan_ani_setting { |
| 2356 | QCA_WLAN_ANI_SETTING_AUTO = 0, |
| 2357 | QCA_WLAN_ANI_SETTING_FIXED = 1, |
| 2358 | }; |
| 2359 | |
| 2360 | /** |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 2361 | * enum qca_wlan_vendor_attr_sap_config - Parameters for AP configuration |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 2362 | * |
| 2363 | * @QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_CHANNEL: Optional (u8) |
| 2364 | * Channel number on which Access Point should restart. |
| 2365 | * Note: If both the driver and user space application supports the 6 GHz band, |
| 2366 | * this attribute is deprecated and QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_FREQUENCY |
| 2367 | * should be used. |
| 2368 | * To maintain backward compatibility, QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_CHANNEL |
| 2369 | * is still used if either of the driver or user space application doesn't |
| 2370 | * support the 6 GHz band. |
| 2371 | * |
| 2372 | * @QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_FREQUENCY: Optional (u32) |
| 2373 | * Channel center frequency (MHz) on which the access point should restart. |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 2374 | */ |
| 2375 | enum qca_wlan_vendor_attr_sap_config { |
| 2376 | QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_INVALID = 0, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 2377 | QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_CHANNEL = 1, |
| 2378 | |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 2379 | /* List of frequencies on which AP is expected to operate. |
| 2380 | * This is irrespective of ACS configuration. This list is a priority |
| 2381 | * based one and is looked for before the AP is created to ensure the |
| 2382 | * best concurrency sessions (avoid MCC and use DBS/SCC) co-exist in |
| 2383 | * the system. |
| 2384 | */ |
| 2385 | QCA_WLAN_VENDOR_ATTR_SAP_MANDATORY_FREQUENCY_LIST = 2, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 2386 | QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_FREQUENCY = 3, |
Dmitry Shmidt | d5ab1b5 | 2016-06-21 12:38:41 -0700 | [diff] [blame] | 2387 | |
| 2388 | QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_AFTER_LAST, |
| 2389 | QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_MAX = |
| 2390 | QCA_WLAN_VENDOR_ATTR_SAP_CONFIG_AFTER_LAST - 1, |
| 2391 | }; |
| 2392 | |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 2393 | /** |
| 2394 | * enum qca_wlan_vendor_attr_sap_conditional_chan_switch - Parameters for AP |
| 2395 | * conditional channel switch |
| 2396 | */ |
| 2397 | enum qca_wlan_vendor_attr_sap_conditional_chan_switch { |
| 2398 | QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_INVALID = 0, |
| 2399 | /* Priority based frequency list (an array of u32 values in host byte |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2400 | * order) |
| 2401 | */ |
Dmitry Shmidt | 58d12ad | 2016-07-28 10:07:03 -0700 | [diff] [blame] | 2402 | QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_FREQ_LIST = 1, |
| 2403 | /* Status of the conditional switch (u32). |
| 2404 | * 0: Success, Non-zero: Failure |
| 2405 | */ |
| 2406 | QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_STATUS = 2, |
| 2407 | |
| 2408 | QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_AFTER_LAST, |
| 2409 | QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_MAX = |
| 2410 | QCA_WLAN_VENDOR_ATTR_SAP_CONDITIONAL_CHAN_SWITCH_AFTER_LAST - 1, |
| 2411 | }; |
| 2412 | |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2413 | /** |
| 2414 | * enum qca_wlan_gpio_attr - Parameters for GPIO configuration |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2415 | * |
| 2416 | * @QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND: Required (u32) |
| 2417 | * value to specify the GPIO command. Please refer to enum qca_gpio_cmd_type |
| 2418 | * for the available values. |
| 2419 | * |
| 2420 | * @QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_PINNUM: Required (u32) |
| 2421 | * value to specify the GPIO number. |
| 2422 | * This is required, when %QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND is |
| 2423 | * %QCA_WLAN_VENDOR_GPIO_CONFIG or %QCA_WLAN_VENDOR_GPIO_OUTPUT. |
| 2424 | * |
| 2425 | * @QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_VALUE: Required (u32) |
| 2426 | * value to specify the GPIO output level. Please refer to enum qca_gpio_value |
| 2427 | * for the available values. |
| 2428 | * This is required, when %QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND is |
| 2429 | * %QCA_WLAN_VENDOR_GPIO_OUTPUT. |
| 2430 | * |
| 2431 | * @QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_PULL_TYPE: Required (u32) |
| 2432 | * value to specify the GPIO pull type. Please refer to enum qca_gpio_pull_type |
| 2433 | * for the available values. |
| 2434 | * This is required, when %QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND is |
| 2435 | * %QCA_WLAN_VENDOR_GPIO_CONFIG. |
| 2436 | * |
| 2437 | * @QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_INTR_MODE: Required (u32) |
| 2438 | * value to specify the GPIO interrupt mode. Please refer to enum |
| 2439 | * qca_gpio_interrupt_mode for the available values. |
| 2440 | * This is required, when %QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND is |
| 2441 | * %QCA_WLAN_VENDOR_GPIO_CONFIG. |
| 2442 | * |
| 2443 | * @QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_DIR: Required (u32) |
| 2444 | * value to specify the GPIO direction. Please refer to enum qca_gpio_direction |
| 2445 | * for the available values. |
| 2446 | * This is required, when %QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND is |
| 2447 | * %QCA_WLAN_VENDOR_GPIO_CONFIG. |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2448 | */ |
| 2449 | enum qca_wlan_gpio_attr { |
| 2450 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_INVALID = 0, |
| 2451 | /* Unsigned 32-bit attribute for GPIO command */ |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2452 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_COMMAND = 1, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2453 | /* Unsigned 32-bit attribute for GPIO PIN number to configure */ |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2454 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_PINNUM = 2, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2455 | /* Unsigned 32-bit attribute for GPIO value to configure */ |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2456 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_VALUE = 3, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2457 | /* Unsigned 32-bit attribute for GPIO pull type */ |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2458 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_PULL_TYPE = 4, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2459 | /* Unsigned 32-bit attribute for GPIO interrupt mode */ |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2460 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_INTR_MODE = 5, |
| 2461 | /* Unsigned 32-bit attribute for GPIO direction to configure */ |
| 2462 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_DIR = 6, |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2463 | |
| 2464 | /* keep last */ |
| 2465 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_LAST, |
| 2466 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_MAX = |
| 2467 | QCA_WLAN_VENDOR_ATTR_GPIO_PARAM_LAST - 1 |
| 2468 | }; |
| 2469 | |
| 2470 | /** |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 2471 | * enum gpio_cmd_type - GPIO configuration command type |
| 2472 | * @QCA_WLAN_VENDOR_GPIO_CONFIG: Set GPIO configuration info |
| 2473 | * @QCA_WLAN_VENDOR_GPIO_OUTPUT: Set GPIO output level |
| 2474 | */ |
| 2475 | enum qca_gpio_cmd_type { |
| 2476 | QCA_WLAN_VENDOR_GPIO_CONFIG = 0, |
| 2477 | QCA_WLAN_VENDOR_GPIO_OUTPUT = 1, |
| 2478 | }; |
| 2479 | |
| 2480 | /** |
| 2481 | * enum qca_gpio_pull_type - GPIO pull type |
| 2482 | * @QCA_WLAN_GPIO_PULL_NONE: Set GPIO pull type to none |
| 2483 | * @QCA_WLAN_GPIO_PULL_UP: Set GPIO pull up |
| 2484 | * @QCA_WLAN_GPIO_PULL_DOWN: Set GPIO pull down |
| 2485 | */ |
| 2486 | enum qca_gpio_pull_type { |
| 2487 | QCA_WLAN_GPIO_PULL_NONE = 0, |
| 2488 | QCA_WLAN_GPIO_PULL_UP = 1, |
| 2489 | QCA_WLAN_GPIO_PULL_DOWN = 2, |
| 2490 | QCA_WLAN_GPIO_PULL_MAX, |
| 2491 | }; |
| 2492 | |
| 2493 | /** |
| 2494 | * enum qca_gpio_direction - GPIO direction |
| 2495 | * @QCA_WLAN_GPIO_INPUT: Set GPIO as input mode |
| 2496 | * @QCA_WLAN_GPIO_OUTPUT: Set GPIO as output mode |
| 2497 | * @QCA_WLAN_GPIO_VALUE_MAX: Invalid value |
| 2498 | */ |
| 2499 | enum qca_gpio_direction { |
| 2500 | QCA_WLAN_GPIO_INPUT = 0, |
| 2501 | QCA_WLAN_GPIO_OUTPUT = 1, |
| 2502 | QCA_WLAN_GPIO_DIR_MAX, |
| 2503 | }; |
| 2504 | |
| 2505 | /** |
| 2506 | * enum qca_gpio_value - GPIO Value |
| 2507 | * @QCA_WLAN_GPIO_LEVEL_LOW: set gpio output level to low |
| 2508 | * @QCA_WLAN_GPIO_LEVEL_HIGH: set gpio output level to high |
| 2509 | * @QCA_WLAN_GPIO_LEVEL_MAX: Invalid value |
| 2510 | */ |
| 2511 | enum qca_gpio_value { |
| 2512 | QCA_WLAN_GPIO_LEVEL_LOW = 0, |
| 2513 | QCA_WLAN_GPIO_LEVEL_HIGH = 1, |
| 2514 | QCA_WLAN_GPIO_LEVEL_MAX, |
| 2515 | }; |
| 2516 | |
| 2517 | /** |
| 2518 | * enum gpio_interrupt_mode - GPIO interrupt mode |
| 2519 | * @QCA_WLAN_GPIO_INTMODE_DISABLE: Disable interrupt trigger |
| 2520 | * @QCA_WLAN_GPIO_INTMODE_RISING_EDGE: Interrupt with GPIO rising edge trigger |
| 2521 | * @QCA_WLAN_GPIO_INTMODE_FALLING_EDGE: Interrupt with GPIO falling edge trigger |
| 2522 | * @QCA_WLAN_GPIO_INTMODE_BOTH_EDGE: Interrupt with GPIO both edge trigger |
| 2523 | * @QCA_WLAN_GPIO_INTMODE_LEVEL_LOW: Interrupt with GPIO level low trigger |
| 2524 | * @QCA_WLAN_GPIO_INTMODE_LEVEL_HIGH: Interrupt with GPIO level high trigger |
| 2525 | * @QCA_WLAN_GPIO_INTMODE_MAX: Invalid value |
| 2526 | */ |
| 2527 | enum qca_gpio_interrupt_mode { |
| 2528 | QCA_WLAN_GPIO_INTMODE_DISABLE = 0, |
| 2529 | QCA_WLAN_GPIO_INTMODE_RISING_EDGE = 1, |
| 2530 | QCA_WLAN_GPIO_INTMODE_FALLING_EDGE = 2, |
| 2531 | QCA_WLAN_GPIO_INTMODE_BOTH_EDGE = 3, |
| 2532 | QCA_WLAN_GPIO_INTMODE_LEVEL_LOW = 4, |
| 2533 | QCA_WLAN_GPIO_INTMODE_LEVEL_HIGH = 5, |
| 2534 | QCA_WLAN_GPIO_INTMODE_MAX, |
| 2535 | }; |
| 2536 | |
| 2537 | /** |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2538 | * qca_wlan_set_qdepth_thresh_attr - Parameters for setting |
| 2539 | * MSDUQ depth threshold per peer per tid in the target |
| 2540 | * |
| 2541 | * Associated Vendor Command: |
| 2542 | * QCA_NL80211_VENDOR_SUBCMD_SET_QDEPTH_THRESH |
| 2543 | */ |
| 2544 | enum qca_wlan_set_qdepth_thresh_attr { |
| 2545 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_INVALID = 0, |
| 2546 | /* 6-byte MAC address */ |
| 2547 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_MAC_ADDR, |
| 2548 | /* Unsigned 32-bit attribute for holding the TID */ |
| 2549 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_TID, |
| 2550 | /* Unsigned 32-bit attribute for holding the update mask |
| 2551 | * bit 0 - Update high priority msdu qdepth threshold |
| 2552 | * bit 1 - Update low priority msdu qdepth threshold |
| 2553 | * bit 2 - Update UDP msdu qdepth threshold |
| 2554 | * bit 3 - Update Non UDP msdu qdepth threshold |
| 2555 | * rest of bits are reserved |
| 2556 | */ |
| 2557 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_UPDATE_MASK, |
| 2558 | /* Unsigned 32-bit attribute for holding the threshold value */ |
| 2559 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_VALUE, |
| 2560 | |
| 2561 | /* keep last */ |
| 2562 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_LAST, |
| 2563 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_MAX = |
| 2564 | QCA_WLAN_VENDOR_ATTR_QDEPTH_THRESH_LAST - 1, |
| 2565 | }; |
| 2566 | |
| 2567 | /** |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 2568 | * enum qca_acs_dfs_mode - Defines different types of DFS channel |
| 2569 | * configurations for ACS operation. |
| 2570 | * |
| 2571 | * @QCA_ACS_DFS_MODE_NONE: Refer to invalid DFS mode |
| 2572 | * @QCA_ACS_DFS_MODE_ENABLE: Consider DFS channels in ACS operation |
| 2573 | * @QCA_ACS_DFS_MODE_DISABLE: Do not consider DFS channels in ACS operation |
| 2574 | * @QCA_ACS_DFS_MODE_DEPRIORITIZE: Deprioritize DFS channels in ACS operation |
| 2575 | */ |
| 2576 | enum qca_acs_dfs_mode { |
| 2577 | QCA_ACS_DFS_MODE_NONE = 0, |
| 2578 | QCA_ACS_DFS_MODE_ENABLE = 1, |
| 2579 | QCA_ACS_DFS_MODE_DISABLE = 2, |
| 2580 | QCA_ACS_DFS_MODE_DEPRIORITIZE = 3, |
| 2581 | }; |
| 2582 | |
| 2583 | /** |
| 2584 | * enum qca_wlan_vendor_attr_acs_config - Defines Configuration attributes |
| 2585 | * used by the vendor command QCA_NL80211_VENDOR_SUBCMD_ACS_POLICY. |
| 2586 | * |
| 2587 | * @QCA_WLAN_VENDOR_ATTR_ACS_DFS_MODE: Required (u8) |
| 2588 | * DFS mode for ACS operation from enum qca_acs_dfs_mode. |
| 2589 | * |
| 2590 | * @QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT: Required (u8) |
| 2591 | * channel number hint for ACS operation, if valid channel is specified then |
| 2592 | * ACS operation gives priority to this channel. |
| 2593 | * Note: If both the driver and user space application supports the 6 GHz band, |
| 2594 | * this attribute is deprecated and QCA_WLAN_VENDOR_ATTR_ACS_FREQUENCY_HINT |
| 2595 | * should be used. |
| 2596 | * To maintain backward compatibility, QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT |
| 2597 | * is still used if either of the driver or user space application doesn't |
| 2598 | * support the 6 GHz band. |
| 2599 | * |
| 2600 | * @QCA_WLAN_VENDOR_ATTR_ACS_FREQUENCY_HINT: Required (u32). |
| 2601 | * Channel center frequency (MHz) hint for ACS operation, if a valid center |
| 2602 | * frequency is specified, ACS operation gives priority to this channel. |
| 2603 | */ |
| 2604 | enum qca_wlan_vendor_attr_acs_config { |
| 2605 | QCA_WLAN_VENDOR_ATTR_ACS_MODE_INVALID = 0, |
| 2606 | QCA_WLAN_VENDOR_ATTR_ACS_DFS_MODE = 1, |
| 2607 | QCA_WLAN_VENDOR_ATTR_ACS_CHANNEL_HINT = 2, |
| 2608 | QCA_WLAN_VENDOR_ATTR_ACS_FREQUENCY_HINT = 3, |
| 2609 | |
| 2610 | QCA_WLAN_VENDOR_ATTR_ACS_DFS_AFTER_LAST, |
| 2611 | QCA_WLAN_VENDOR_ATTR_ACS_DFS_MAX = |
| 2612 | QCA_WLAN_VENDOR_ATTR_ACS_DFS_AFTER_LAST - 1, |
| 2613 | }; |
| 2614 | |
| 2615 | /** |
Dmitry Shmidt | 7f2c753 | 2016-08-15 09:48:12 -0700 | [diff] [blame] | 2616 | * enum qca_wlan_vendor_attr_get_hw_capability - Wi-Fi hardware capability |
| 2617 | */ |
| 2618 | enum qca_wlan_vendor_attr_get_hw_capability { |
| 2619 | QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_INVALID, |
| 2620 | /* Antenna isolation |
| 2621 | * An attribute used in the response. |
| 2622 | * The content of this attribute is encoded in a byte array. Each byte |
| 2623 | * value is an antenna isolation value. The array length is the number |
| 2624 | * of antennas. |
| 2625 | */ |
| 2626 | QCA_WLAN_VENDOR_ATTR_ANTENNA_ISOLATION, |
| 2627 | /* Request HW capability |
| 2628 | * An attribute used in the request. |
| 2629 | * The content of this attribute is a u32 array for one or more of |
| 2630 | * hardware capabilities (attribute IDs) that are being requested. Each |
| 2631 | * u32 value has a value from this |
| 2632 | * enum qca_wlan_vendor_attr_get_hw_capability |
| 2633 | * identifying which capabilities are requested. |
| 2634 | */ |
| 2635 | QCA_WLAN_VENDOR_ATTR_GET_HW_CAPABILITY, |
| 2636 | |
| 2637 | /* keep last */ |
| 2638 | QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_AFTER_LAST, |
| 2639 | QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_MAX = |
| 2640 | QCA_WLAN_VENDOR_ATTR_HW_CAPABILITY_AFTER_LAST - 1, |
| 2641 | }; |
| 2642 | |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2643 | /** |
| 2644 | * enum qca_wlan_vendor_attr_ll_stats_ext - Attributes for MAC layer monitoring |
| 2645 | * offload which is an extension for LL_STATS. |
| 2646 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_PERIOD: Monitoring period. Unit in ms. |
| 2647 | * If MAC counters do not exceed the threshold, FW will report monitored |
| 2648 | * link layer counters periodically as this setting. The first report is |
| 2649 | * always triggered by this timer. |
| 2650 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_THRESHOLD: It is a percentage (1-99). |
| 2651 | * For each MAC layer counter, FW holds two copies. One is the current value. |
| 2652 | * The other is the last report. Once a current counter's increment is larger |
| 2653 | * than the threshold, FW will indicate that counter to host even if the |
| 2654 | * monitoring timer does not expire. |
| 2655 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_CHG: Peer STA power state change |
| 2656 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TID: TID of MSDU |
| 2657 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NUM_MSDU: Count of MSDU with the same |
| 2658 | * failure code. |
| 2659 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_STATUS: TX failure code |
| 2660 | * 1: TX packet discarded |
| 2661 | * 2: No ACK |
| 2662 | * 3: Postpone |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2663 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_MAC_ADDRESS: peer MAC address |
| 2664 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_STATE: Peer STA current state |
| 2665 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_GLOBAL: Global threshold. |
| 2666 | * Threshold for all monitored parameters. If per counter dedicated threshold |
| 2667 | * is not enabled, this threshold will take effect. |
| 2668 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_EVENT_MODE: Indicate what triggers this |
| 2669 | * event, PERORID_TIMEOUT == 1, THRESH_EXCEED == 0. |
| 2670 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_ID: interface ID |
| 2671 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ID: peer ID |
| 2672 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BITMAP: bitmap for TX counters |
| 2673 | * Bit0: TX counter unit in MSDU |
| 2674 | * Bit1: TX counter unit in MPDU |
| 2675 | * Bit2: TX counter unit in PPDU |
| 2676 | * Bit3: TX counter unit in byte |
| 2677 | * Bit4: Dropped MSDUs |
| 2678 | * Bit5: Dropped Bytes |
| 2679 | * Bit6: MPDU retry counter |
| 2680 | * Bit7: MPDU failure counter |
| 2681 | * Bit8: PPDU failure counter |
| 2682 | * Bit9: MPDU aggregation counter |
| 2683 | * Bit10: MCS counter for ACKed MPDUs |
| 2684 | * Bit11: MCS counter for Failed MPDUs |
| 2685 | * Bit12: TX Delay counter |
| 2686 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BITMAP: bitmap for RX counters |
| 2687 | * Bit0: MAC RX counter unit in MPDU |
| 2688 | * Bit1: MAC RX counter unit in byte |
| 2689 | * Bit2: PHY RX counter unit in PPDU |
| 2690 | * Bit3: PHY RX counter unit in byte |
| 2691 | * Bit4: Disorder counter |
| 2692 | * Bit5: Retry counter |
| 2693 | * Bit6: Duplication counter |
| 2694 | * Bit7: Discard counter |
| 2695 | * Bit8: MPDU aggregation size counter |
| 2696 | * Bit9: MCS counter |
| 2697 | * Bit10: Peer STA power state change (wake to sleep) counter |
| 2698 | * Bit11: Peer STA power save counter, total time in PS mode |
| 2699 | * Bit12: Probe request counter |
| 2700 | * Bit13: Other management frames counter |
| 2701 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS_BITMAP: bitmap for CCA |
| 2702 | * Bit0: Idle time |
| 2703 | * Bit1: TX time |
| 2704 | * Bit2: time RX in current bss |
| 2705 | * Bit3: Out of current bss time |
| 2706 | * Bit4: Wireless medium busy time |
| 2707 | * Bit5: RX in bad condition time |
| 2708 | * Bit6: TX in bad condition time |
| 2709 | * Bit7: time wlan card not available |
| 2710 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_SIGNAL_BITMAP: bitmap for signal |
| 2711 | * Bit0: Per channel SNR counter |
| 2712 | * Bit1: Per channel noise floor counter |
| 2713 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_NUM: number of peers |
| 2714 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CHANNEL_NUM: number of channels |
| 2715 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_AC_RX_NUM: number of RX stats |
| 2716 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS: per channel BSS CCA stats |
| 2717 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER: container for per PEER stats |
| 2718 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MSDU: Number of total TX MSDUs |
| 2719 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MPDU: Number of total TX MPDUs |
| 2720 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_PPDU: Number of total TX PPDUs |
| 2721 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BYTES: bytes of TX data |
| 2722 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP: Number of dropped TX packets |
| 2723 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP_BYTES: Bytes dropped |
| 2724 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_RETRY: waiting time without an ACK |
| 2725 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_ACK: number of MPDU not-ACKed |
| 2726 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_BACK: number of PPDU not-ACKed |
| 2727 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR_NUM: |
| 2728 | * aggregation stats buffer length |
| 2729 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS_NUM: length of mcs stats |
| 2730 | * buffer for ACKed MPDUs. |
| 2731 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS_NUM: length of mcs stats |
| 2732 | * buffer for failed MPDUs. |
| 2733 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_DELAY_ARRAY_SIZE: |
| 2734 | * length of delay stats array. |
| 2735 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR: TX aggregation stats |
| 2736 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS: MCS stats for ACKed MPDUs |
| 2737 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS: MCS stats for failed MPDUs |
| 2738 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DELAY: tx delay stats |
| 2739 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU: MPDUs received |
| 2740 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_BYTES: bytes received |
| 2741 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU: PPDU received |
| 2742 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU_BYTES: PPDU bytes received |
| 2743 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_LOST: packets lost |
| 2744 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_RETRY: number of RX packets |
| 2745 | * flagged as retransmissions |
| 2746 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DUP: number of RX packets |
| 2747 | * flagged as duplicated |
| 2748 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DISCARD: number of RX |
| 2749 | * packets discarded |
| 2750 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR_NUM: length of RX aggregation |
| 2751 | * stats buffer. |
| 2752 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS_NUM: length of RX mcs |
| 2753 | * stats buffer. |
| 2754 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS: RX mcs stats buffer |
| 2755 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR: aggregation stats buffer |
| 2756 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_TIMES: times STAs go to sleep |
| 2757 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_DURATION: STAs' total sleep time |
| 2758 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PROBE_REQ: number of probe |
| 2759 | * requests received |
| 2760 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MGMT: number of other mgmt |
| 2761 | * frames received |
| 2762 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IDLE_TIME: Percentage of idle time |
| 2763 | * there is no TX, nor RX, nor interference. |
| 2764 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_TIME: percentage of time |
| 2765 | * transmitting packets. |
| 2766 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_TIME: percentage of time |
| 2767 | * for receiving. |
| 2768 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BUSY: percentage of time |
| 2769 | * interference detected. |
| 2770 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BAD: percentage of time |
| 2771 | * receiving packets with errors. |
| 2772 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BAD: percentage of time |
| 2773 | * TX no-ACK. |
| 2774 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NO_AVAIL: percentage of time |
| 2775 | * the chip is unable to work in normal conditions. |
| 2776 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IN_BSS_TIME: percentage of time |
| 2777 | * receiving packets in current BSS. |
| 2778 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_OUT_BSS_TIME: percentage of time |
| 2779 | * receiving packets not in current BSS. |
| 2780 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ANT_NUM: number of antennas |
| 2781 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_SIGNAL: |
| 2782 | * This is a container for per antenna signal stats. |
| 2783 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_SNR: per antenna SNR value |
| 2784 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_NF: per antenna NF value |
| 2785 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_RSSI_BEACON: RSSI of beacon |
| 2786 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_SNR_BEACON: SNR of beacon |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2787 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_REPORT_TIME: u64 |
| 2788 | * Absolute timestamp from 1970/1/1, unit in ms. After receiving the |
| 2789 | * message, user layer APP could call gettimeofday to get another |
| 2790 | * timestamp and calculate transfer delay for the message. |
| 2791 | * @QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_MEASUREMENT_TIME: u32 |
| 2792 | * Real period for this measurement, unit in us. |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2793 | */ |
| 2794 | enum qca_wlan_vendor_attr_ll_stats_ext { |
| 2795 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_INVALID = 0, |
| 2796 | |
| 2797 | /* Attributes for configurations */ |
| 2798 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_PERIOD, |
| 2799 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CFG_THRESHOLD, |
| 2800 | |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2801 | /* Peer STA power state change */ |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2802 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_CHG, |
| 2803 | |
| 2804 | /* TX failure event */ |
| 2805 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TID, |
| 2806 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NUM_MSDU, |
| 2807 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_STATUS, |
| 2808 | |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2809 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_STATE, |
| 2810 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_MAC_ADDRESS, |
| 2811 | |
| 2812 | /* MAC counters */ |
| 2813 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_GLOBAL, |
| 2814 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_EVENT_MODE, |
| 2815 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_ID, |
| 2816 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ID, |
| 2817 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BITMAP, |
| 2818 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BITMAP, |
| 2819 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS_BITMAP, |
| 2820 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_SIGNAL_BITMAP, |
| 2821 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_NUM, |
| 2822 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CHANNEL_NUM, |
| 2823 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_CCA_BSS, |
| 2824 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER, |
| 2825 | |
| 2826 | /* Sub-attributes for PEER_AC_TX */ |
| 2827 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MSDU, |
| 2828 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_MPDU, |
| 2829 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_PPDU, |
| 2830 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BYTES, |
| 2831 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP, |
| 2832 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DROP_BYTES, |
| 2833 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_RETRY, |
| 2834 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_ACK, |
| 2835 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_NO_BACK, |
| 2836 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR_NUM, |
| 2837 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS_NUM, |
| 2838 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS_NUM, |
| 2839 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_AGGR, |
| 2840 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_SUCC_MCS, |
| 2841 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_FAIL_MCS, |
| 2842 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_DELAY_ARRAY_SIZE, |
| 2843 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_DELAY, |
| 2844 | |
| 2845 | /* Sub-attributes for PEER_AC_RX */ |
| 2846 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU, |
| 2847 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_BYTES, |
| 2848 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU, |
| 2849 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PPDU_BYTES, |
| 2850 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_LOST, |
| 2851 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_RETRY, |
| 2852 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DUP, |
| 2853 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MPDU_DISCARD, |
| 2854 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR_NUM, |
| 2855 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS_NUM, |
| 2856 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MCS, |
| 2857 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_AGGR, |
| 2858 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_TIMES, |
| 2859 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_PS_DURATION, |
| 2860 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_PROBE_REQ, |
| 2861 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_MGMT, |
| 2862 | |
| 2863 | /* Sub-attributes for CCA_BSS */ |
| 2864 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IDLE_TIME, |
| 2865 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_TIME, |
| 2866 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_TIME, |
| 2867 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BUSY, |
| 2868 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_RX_BAD, |
| 2869 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_TX_BAD, |
| 2870 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_NO_AVAIL, |
| 2871 | |
| 2872 | /* sub-attribute for BSS_RX_TIME */ |
| 2873 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IN_BSS_TIME, |
| 2874 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_OUT_BSS_TIME, |
| 2875 | |
| 2876 | /* Sub-attributes for PEER_SIGNAL */ |
| 2877 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_ANT_NUM, |
| 2878 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_PEER_SIGNAL, |
| 2879 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_SNR, |
| 2880 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_ANT_NF, |
| 2881 | |
| 2882 | /* Sub-attributes for IFACE_BSS */ |
| 2883 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_RSSI_BEACON, |
| 2884 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_IFACE_SNR_BEACON, |
| 2885 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2886 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_REPORT_TIME, |
| 2887 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_MEASUREMENT_TIME, |
| 2888 | |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2889 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_LAST, |
| 2890 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_MAX = |
| 2891 | QCA_WLAN_VENDOR_ATTR_LL_STATS_EXT_LAST - 1 |
| 2892 | }; |
| 2893 | |
| 2894 | /* Attributes for FTM commands and events */ |
| 2895 | |
| 2896 | /** |
| 2897 | * enum qca_wlan_vendor_attr_loc_capa - Indoor location capabilities |
| 2898 | * |
| 2899 | * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAGS: Various flags. See |
| 2900 | * enum qca_wlan_vendor_attr_loc_capa_flags. |
| 2901 | * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_SESSIONS: Maximum number |
| 2902 | * of measurement sessions that can run concurrently. |
| 2903 | * Default is one session (no session concurrency). |
| 2904 | * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_PEERS: The total number of unique |
| 2905 | * peers that are supported in running sessions. For example, |
| 2906 | * if the value is 8 and maximum number of sessions is 2, you can |
| 2907 | * have one session with 8 unique peers, or 2 sessions with 4 unique |
| 2908 | * peers each, and so on. |
| 2909 | * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_BURSTS_EXP: Maximum number |
| 2910 | * of bursts per peer, as an exponent (2^value). Default is 0, |
| 2911 | * meaning no multi-burst support. |
| 2912 | * @QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_MEAS_PER_BURST: Maximum number |
| 2913 | * of measurement exchanges allowed in a single burst. |
| 2914 | * @QCA_WLAN_VENDOR_ATTR_AOA_CAPA_SUPPORTED_TYPES: Supported AOA measurement |
| 2915 | * types. A bit mask (unsigned 32 bit value), each bit corresponds |
| 2916 | * to an AOA type as defined by enum qca_vendor_attr_aoa_type. |
| 2917 | */ |
| 2918 | enum qca_wlan_vendor_attr_loc_capa { |
| 2919 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_INVALID, |
| 2920 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAGS, |
| 2921 | QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_SESSIONS, |
| 2922 | QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_PEERS, |
| 2923 | QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_NUM_BURSTS_EXP, |
| 2924 | QCA_WLAN_VENDOR_ATTR_FTM_CAPA_MAX_MEAS_PER_BURST, |
| 2925 | QCA_WLAN_VENDOR_ATTR_AOA_CAPA_SUPPORTED_TYPES, |
| 2926 | /* keep last */ |
| 2927 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_AFTER_LAST, |
| 2928 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_MAX = |
| 2929 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_AFTER_LAST - 1, |
| 2930 | }; |
| 2931 | |
| 2932 | /** |
| 2933 | * enum qca_wlan_vendor_attr_loc_capa_flags: Indoor location capability flags |
| 2934 | * |
| 2935 | * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_RESPONDER: Set if driver |
| 2936 | * can be configured as an FTM responder (for example, an AP that |
| 2937 | * services FTM requests). QCA_NL80211_VENDOR_SUBCMD_FTM_CFG_RESPONDER |
| 2938 | * will be supported if set. |
| 2939 | * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_INITIATOR: Set if driver |
| 2940 | * can run FTM sessions. QCA_NL80211_VENDOR_SUBCMD_FTM_START_SESSION |
| 2941 | * will be supported if set. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 2942 | * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_ASAP: Set if FTM responder |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2943 | * supports immediate (ASAP) response. |
| 2944 | * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA: Set if driver supports standalone |
| 2945 | * AOA measurement using QCA_NL80211_VENDOR_SUBCMD_AOA_MEAS. |
| 2946 | * @QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA_IN_FTM: Set if driver supports |
| 2947 | * requesting AOA measurements as part of an FTM session. |
| 2948 | */ |
| 2949 | enum qca_wlan_vendor_attr_loc_capa_flags { |
| 2950 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_RESPONDER = 1 << 0, |
| 2951 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_FTM_INITIATOR = 1 << 1, |
| 2952 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_ASAP = 1 << 2, |
| 2953 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA = 1 << 3, |
| 2954 | QCA_WLAN_VENDOR_ATTR_LOC_CAPA_FLAG_AOA_IN_FTM = 1 << 4, |
| 2955 | }; |
| 2956 | |
| 2957 | /** |
| 2958 | * enum qca_wlan_vendor_attr_ftm_peer_info: Information about |
| 2959 | * a single peer in a measurement session. |
| 2960 | * |
| 2961 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MAC_ADDR: The MAC address of the peer. |
| 2962 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAGS: Various flags related |
| 2963 | * to measurement. See enum qca_wlan_vendor_attr_ftm_peer_meas_flags. |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2964 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_PARAMS: Nested attribute of |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2965 | * FTM measurement parameters, as specified by IEEE P802.11-REVmc/D7.0 |
| 2966 | * 9.4.2.167. See enum qca_wlan_vendor_attr_ftm_meas_param for |
| 2967 | * list of supported attributes. |
| 2968 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_SECURE_TOKEN_ID: Initial token ID for |
| 2969 | * secure measurement. |
| 2970 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_AOA_BURST_PERIOD: Request AOA |
| 2971 | * measurement every <value> bursts. If 0 or not specified, |
| 2972 | * AOA measurements will be disabled for this peer. |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2973 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_FREQ: Frequency in MHz where |
| 2974 | * the measurement frames are exchanged. Optional; if not |
| 2975 | * specified, try to locate the peer in the kernel scan |
| 2976 | * results cache and use frequency from there. |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2977 | */ |
| 2978 | enum qca_wlan_vendor_attr_ftm_peer_info { |
| 2979 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_INVALID, |
| 2980 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MAC_ADDR, |
| 2981 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAGS, |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 2982 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_PARAMS, |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2983 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_SECURE_TOKEN_ID, |
| 2984 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_AOA_BURST_PERIOD, |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 2985 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_FREQ, |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 2986 | /* keep last */ |
| 2987 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_AFTER_LAST, |
| 2988 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MAX = |
| 2989 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_AFTER_LAST - 1, |
| 2990 | }; |
| 2991 | |
| 2992 | /** |
| 2993 | * enum qca_wlan_vendor_attr_ftm_peer_meas_flags: Measurement request flags, |
| 2994 | * per-peer |
| 2995 | * |
| 2996 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_ASAP: If set, request |
| 2997 | * immediate (ASAP) response from peer. |
| 2998 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCI: If set, request |
| 2999 | * LCI report from peer. The LCI report includes the absolute |
| 3000 | * location of the peer in "official" coordinates (similar to GPS). |
| 3001 | * See IEEE P802.11-REVmc/D7.0, 11.24.6.7 for more information. |
| 3002 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCR: If set, request |
| 3003 | * Location civic report from peer. The LCR includes the location |
| 3004 | * of the peer in free-form format. See IEEE P802.11-REVmc/D7.0, |
| 3005 | * 11.24.6.7 for more information. |
| 3006 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_SECURE: If set, |
| 3007 | * request a secure measurement. |
| 3008 | * QCA_WLAN_VENDOR_ATTR_FTM_PEER_SECURE_TOKEN_ID must also be provided. |
| 3009 | */ |
| 3010 | enum qca_wlan_vendor_attr_ftm_peer_meas_flags { |
| 3011 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_ASAP = 1 << 0, |
| 3012 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCI = 1 << 1, |
| 3013 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_LCR = 1 << 2, |
| 3014 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_MEAS_FLAG_SECURE = 1 << 3, |
| 3015 | }; |
| 3016 | |
| 3017 | /** |
| 3018 | * enum qca_wlan_vendor_attr_ftm_meas_param: Measurement parameters |
| 3019 | * |
| 3020 | * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_MEAS_PER_BURST: Number of measurements |
| 3021 | * to perform in a single burst. |
| 3022 | * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_NUM_BURSTS_EXP: Number of bursts to |
| 3023 | * perform, specified as an exponent (2^value). |
| 3024 | * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_DURATION: Duration of burst |
| 3025 | * instance, as specified in IEEE P802.11-REVmc/D7.0, 9.4.2.167. |
| 3026 | * @QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_PERIOD: Time between bursts, |
| 3027 | * as specified in IEEE P802.11-REVmc/D7.0, 9.4.2.167. Must |
| 3028 | * be larger than QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_DURATION. |
| 3029 | */ |
| 3030 | enum qca_wlan_vendor_attr_ftm_meas_param { |
| 3031 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_INVALID, |
| 3032 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_MEAS_PER_BURST, |
| 3033 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_NUM_BURSTS_EXP, |
| 3034 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_DURATION, |
| 3035 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_BURST_PERIOD, |
| 3036 | /* keep last */ |
| 3037 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_AFTER_LAST, |
| 3038 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_MAX = |
| 3039 | QCA_WLAN_VENDOR_ATTR_FTM_PARAM_AFTER_LAST - 1, |
| 3040 | }; |
| 3041 | |
| 3042 | /** |
| 3043 | * enum qca_wlan_vendor_attr_ftm_peer_result: Per-peer results |
| 3044 | * |
| 3045 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MAC_ADDR: MAC address of the reported |
| 3046 | * peer. |
| 3047 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS: Status of measurement |
| 3048 | * request for this peer. |
| 3049 | * See enum qca_wlan_vendor_attr_ftm_peer_result_status. |
| 3050 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAGS: Various flags related |
| 3051 | * to measurement results for this peer. |
| 3052 | * See enum qca_wlan_vendor_attr_ftm_peer_result_flags. |
| 3053 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_VALUE_SECONDS: Specified when |
| 3054 | * request failed and peer requested not to send an additional request |
| 3055 | * for this number of seconds. |
| 3056 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCI: LCI report when received |
| 3057 | * from peer. In the format specified by IEEE P802.11-REVmc/D7.0, |
| 3058 | * 9.4.2.22.10. |
| 3059 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCR: Location civic report when |
| 3060 | * received from peer. In the format specified by IEEE P802.11-REVmc/D7.0, |
| 3061 | * 9.4.2.22.13. |
| 3062 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS_PARAMS: Reported when peer |
| 3063 | * overridden some measurement request parameters. See |
| 3064 | * enum qca_wlan_vendor_attr_ftm_meas_param. |
| 3065 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AOA_MEAS: AOA measurement |
| 3066 | * for this peer. Same contents as @QCA_WLAN_VENDOR_ATTR_AOA_MEAS_RESULT. |
| 3067 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS: Array of measurement |
| 3068 | * results. Each entry is a nested attribute defined |
| 3069 | * by enum qca_wlan_vendor_attr_ftm_meas. |
| 3070 | */ |
| 3071 | enum qca_wlan_vendor_attr_ftm_peer_result { |
| 3072 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_INVALID, |
| 3073 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MAC_ADDR, |
| 3074 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS, |
| 3075 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAGS, |
| 3076 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_VALUE_SECONDS, |
| 3077 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCI, |
| 3078 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_LCR, |
| 3079 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS_PARAMS, |
| 3080 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AOA_MEAS, |
| 3081 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS, |
| 3082 | /* keep last */ |
| 3083 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AFTER_LAST, |
| 3084 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MAX = |
| 3085 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_AFTER_LAST - 1, |
| 3086 | }; |
| 3087 | |
| 3088 | /** |
| 3089 | * enum qca_wlan_vendor_attr_ftm_peer_result_status |
| 3090 | * |
| 3091 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_OK: Request sent ok and results |
| 3092 | * will be provided. Peer may have overridden some measurement parameters, |
| 3093 | * in which case overridden parameters will be report by |
| 3094 | * QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_MEAS_PARAM attribute. |
| 3095 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INCAPABLE: Peer is incapable |
| 3096 | * of performing the measurement request. No more results will be sent |
| 3097 | * for this peer in this session. |
| 3098 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_FAILED: Peer reported request |
| 3099 | * failed, and requested not to send an additional request for number |
| 3100 | * of seconds specified by QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_VALUE_SECONDS |
| 3101 | * attribute. |
| 3102 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INVALID: Request validation |
| 3103 | * failed. Request was not sent over the air. |
| 3104 | */ |
| 3105 | enum qca_wlan_vendor_attr_ftm_peer_result_status { |
| 3106 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_OK, |
| 3107 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INCAPABLE, |
| 3108 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_FAILED, |
| 3109 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_STATUS_INVALID, |
| 3110 | }; |
| 3111 | |
| 3112 | /** |
| 3113 | * enum qca_wlan_vendor_attr_ftm_peer_result_flags: Various flags |
| 3114 | * for measurement result, per-peer |
| 3115 | * |
| 3116 | * @QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAG_DONE: If set, |
| 3117 | * measurement completed for this peer. No more results will be reported |
| 3118 | * for this peer in this session. |
| 3119 | */ |
| 3120 | enum qca_wlan_vendor_attr_ftm_peer_result_flags { |
| 3121 | QCA_WLAN_VENDOR_ATTR_FTM_PEER_RES_FLAG_DONE = 1 << 0, |
| 3122 | }; |
| 3123 | |
| 3124 | /** |
| 3125 | * enum qca_vendor_attr_loc_session_status: Session completion status code |
| 3126 | * |
| 3127 | * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_OK: Session completed |
| 3128 | * successfully. |
| 3129 | * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_ABORTED: Session aborted |
| 3130 | * by request. |
| 3131 | * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_INVALID: Session request |
| 3132 | * was invalid and was not started. |
| 3133 | * @QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_FAILED: Session had an error |
| 3134 | * and did not complete normally (for example out of resources). |
| 3135 | */ |
| 3136 | enum qca_vendor_attr_loc_session_status { |
| 3137 | QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_OK, |
| 3138 | QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_ABORTED, |
| 3139 | QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_INVALID, |
| 3140 | QCA_WLAN_VENDOR_ATTR_LOC_SESSION_STATUS_FAILED, |
| 3141 | }; |
| 3142 | |
| 3143 | /** |
| 3144 | * enum qca_wlan_vendor_attr_ftm_meas: Single measurement data |
| 3145 | * |
| 3146 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T1: Time of departure (TOD) of FTM packet as |
| 3147 | * recorded by responder, in picoseconds. |
| 3148 | * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information. |
| 3149 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T2: Time of arrival (TOA) of FTM packet at |
| 3150 | * initiator, in picoseconds. |
| 3151 | * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information. |
| 3152 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T3: TOD of ACK packet as recorded by |
| 3153 | * initiator, in picoseconds. |
| 3154 | * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information. |
| 3155 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T4: TOA of ACK packet at |
| 3156 | * responder, in picoseconds. |
| 3157 | * See IEEE P802.11-REVmc/D7.0, 11.24.6.4 for more information. |
| 3158 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_RSSI: RSSI (signal level) as recorded |
| 3159 | * during this measurement exchange. Optional and will be provided if |
| 3160 | * the hardware can measure it. |
| 3161 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOD_ERR: TOD error reported by |
| 3162 | * responder. Not always provided. |
| 3163 | * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information. |
| 3164 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOA_ERR: TOA error reported by |
| 3165 | * responder. Not always provided. |
| 3166 | * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information. |
| 3167 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOD_ERR: TOD error measured by |
| 3168 | * initiator. Not always provided. |
| 3169 | * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information. |
| 3170 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOA_ERR: TOA error measured by |
| 3171 | * initiator. Not always provided. |
| 3172 | * See IEEE P802.11-REVmc/D7.0, 9.6.8.33 for more information. |
| 3173 | * @QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PAD: Dummy attribute for padding. |
| 3174 | */ |
| 3175 | enum qca_wlan_vendor_attr_ftm_meas { |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 3176 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INVALID, |
Dmitry Shmidt | 7d17530 | 2016-09-06 13:11:34 -0700 | [diff] [blame] | 3177 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T1, |
| 3178 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T2, |
| 3179 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T3, |
| 3180 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_T4, |
| 3181 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_RSSI, |
| 3182 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOD_ERR, |
| 3183 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_TOA_ERR, |
| 3184 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOD_ERR, |
| 3185 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_INITIATOR_TOA_ERR, |
| 3186 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_PAD, |
| 3187 | /* keep last */ |
| 3188 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_AFTER_LAST, |
| 3189 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_MAX = |
| 3190 | QCA_WLAN_VENDOR_ATTR_FTM_MEAS_AFTER_LAST - 1, |
| 3191 | }; |
| 3192 | |
| 3193 | /** |
| 3194 | * enum qca_wlan_vendor_attr_aoa_type - AOA measurement type |
| 3195 | * |
| 3196 | * @QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE: Phase of the strongest |
| 3197 | * CIR (channel impulse response) path for each antenna. |
| 3198 | * @QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE_AMP: Phase and amplitude |
| 3199 | * of the strongest CIR path for each antenna. |
| 3200 | */ |
| 3201 | enum qca_wlan_vendor_attr_aoa_type { |
| 3202 | QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE, |
| 3203 | QCA_WLAN_VENDOR_ATTR_AOA_TYPE_TOP_CIR_PHASE_AMP, |
| 3204 | QCA_WLAN_VENDOR_ATTR_AOA_TYPE_MAX |
| 3205 | }; |
| 3206 | |
Dmitry Shmidt | aca489e | 2016-09-28 15:44:14 -0700 | [diff] [blame] | 3207 | /** |
| 3208 | * enum qca_wlan_vendor_attr_encryption_test - Attributes to |
| 3209 | * validate encryption engine |
| 3210 | * |
| 3211 | * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_NEEDS_DECRYPTION: Flag attribute. |
| 3212 | * This will be included if the request is for decryption; if not included, |
| 3213 | * the request is treated as a request for encryption by default. |
| 3214 | * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_CIPHER: Unsigned 32-bit value |
| 3215 | * indicating the key cipher suite. Takes same values as |
| 3216 | * NL80211_ATTR_KEY_CIPHER. |
| 3217 | * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_KEYID: Unsigned 8-bit value |
| 3218 | * Key Id to be used for encryption |
| 3219 | * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_TK: Array of 8-bit values. |
| 3220 | * Key (TK) to be used for encryption/decryption |
| 3221 | * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_PN: Array of 8-bit values. |
| 3222 | * Packet number to be specified for encryption/decryption |
| 3223 | * 6 bytes for TKIP/CCMP/GCMP. |
| 3224 | * @QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_DATA: Array of 8-bit values |
| 3225 | * representing the 802.11 packet (header + payload + FCS) that |
| 3226 | * needs to be encrypted/decrypted. |
| 3227 | * Encrypted/decrypted response from the driver will also be sent |
| 3228 | * to userspace with the same attribute. |
| 3229 | */ |
| 3230 | enum qca_wlan_vendor_attr_encryption_test { |
| 3231 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_INVALID = 0, |
| 3232 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_NEEDS_DECRYPTION, |
| 3233 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_CIPHER, |
| 3234 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_KEYID, |
| 3235 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_TK, |
| 3236 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_PN, |
| 3237 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_DATA, |
| 3238 | |
| 3239 | /* keep last */ |
| 3240 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_AFTER_LAST, |
| 3241 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_MAX = |
| 3242 | QCA_WLAN_VENDOR_ATTR_ENCRYPTION_TEST_AFTER_LAST - 1 |
| 3243 | }; |
| 3244 | |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3245 | /** |
| 3246 | * enum qca_wlan_vendor_attr_dmg_rf_sector_type - Type of |
| 3247 | * sector for DMG RF sector operations. |
| 3248 | * |
| 3249 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE_RX: RX sector |
| 3250 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE_TX: TX sector |
| 3251 | */ |
| 3252 | enum qca_wlan_vendor_attr_dmg_rf_sector_type { |
| 3253 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE_RX, |
| 3254 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE_TX, |
| 3255 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_TYPE_MAX |
| 3256 | }; |
| 3257 | |
| 3258 | /** |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 3259 | * enum qca_wlan_vendor_attr_fw_state - State of firmware |
| 3260 | * |
| 3261 | * @QCA_WLAN_VENDOR_ATTR_FW_STATE_ERROR: FW is in bad state |
| 3262 | * @QCA_WLAN_VENDOR_ATTR_FW_STATE_ACTIVE: FW is active |
| 3263 | */ |
| 3264 | enum qca_wlan_vendor_attr_fw_state { |
| 3265 | QCA_WLAN_VENDOR_ATTR_FW_STATE_ERROR, |
| 3266 | QCA_WLAN_VENDOR_ATTR_FW_STATE_ACTIVE, |
| 3267 | QCA_WLAN_VENDOR_ATTR_FW_STATE_MAX |
| 3268 | }; |
| 3269 | |
| 3270 | /** |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 3271 | * BRP antenna limit mode |
| 3272 | * |
| 3273 | * @QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_DISABLE: Disable BRP force |
| 3274 | * antenna limit, BRP will be performed as usual. |
| 3275 | * @QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_EFFECTIVE: Define maximal |
| 3276 | * antennas limit. the hardware may use less antennas than the |
| 3277 | * maximum limit. |
| 3278 | * @QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_FORCE: The hardware will |
| 3279 | * use exactly the specified number of antennas for BRP. |
| 3280 | */ |
| 3281 | enum qca_wlan_vendor_attr_brp_ant_limit_mode { |
| 3282 | QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_DISABLE, |
| 3283 | QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_EFFECTIVE, |
| 3284 | QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_FORCE, |
| 3285 | QCA_WLAN_VENDOR_ATTR_BRP_ANT_LIMIT_MODE_MAX |
| 3286 | }; |
| 3287 | |
| 3288 | /** |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3289 | * enum qca_wlan_vendor_attr_dmg_rf_sector_cfg - Attributes for |
| 3290 | * DMG RF sector configuration for a single RF module. |
| 3291 | * The values are defined in a compact way which closely matches |
| 3292 | * the way it is stored in HW registers. |
| 3293 | * The configuration provides values for 32 antennas and 8 distribution |
| 3294 | * amplifiers, and together describes the characteristics of the RF |
| 3295 | * sector - such as a beam in some direction with some gain. |
| 3296 | * |
| 3297 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_MODULE_INDEX: Index |
| 3298 | * of RF module for this configuration. |
| 3299 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_ETYPE0: Bit 0 of edge |
| 3300 | * amplifier gain index. Unsigned 32 bit number containing |
| 3301 | * bits for all 32 antennas. |
| 3302 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_ETYPE1: Bit 1 of edge |
| 3303 | * amplifier gain index. Unsigned 32 bit number containing |
| 3304 | * bits for all 32 antennas. |
| 3305 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_ETYPE2: Bit 2 of edge |
| 3306 | * amplifier gain index. Unsigned 32 bit number containing |
| 3307 | * bits for all 32 antennas. |
| 3308 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_PSH_HI: Phase values |
| 3309 | * for first 16 antennas, 2 bits per antenna. |
| 3310 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_PSH_LO: Phase values |
| 3311 | * for last 16 antennas, 2 bits per antenna. |
| 3312 | * @QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_DTYPE_X16: Contains |
| 3313 | * DTYPE values (3 bits) for each distribution amplifier, followed |
| 3314 | * by X16 switch bits for each distribution amplifier. There are |
| 3315 | * total of 8 distribution amplifiers. |
| 3316 | */ |
| 3317 | enum qca_wlan_vendor_attr_dmg_rf_sector_cfg { |
| 3318 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_INVALID = 0, |
| 3319 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_MODULE_INDEX = 1, |
| 3320 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_ETYPE0 = 2, |
| 3321 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_ETYPE1 = 3, |
| 3322 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_ETYPE2 = 4, |
| 3323 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_PSH_HI = 5, |
| 3324 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_PSH_LO = 6, |
| 3325 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_DTYPE_X16 = 7, |
| 3326 | |
| 3327 | /* keep last */ |
| 3328 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_AFTER_LAST, |
| 3329 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_MAX = |
| 3330 | QCA_WLAN_VENDOR_ATTR_DMG_RF_SECTOR_CFG_AFTER_LAST - 1 |
| 3331 | }; |
| 3332 | |
| 3333 | enum qca_wlan_vendor_attr_ll_stats_set { |
| 3334 | QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_INVALID = 0, |
| 3335 | /* Unsigned 32-bit value */ |
| 3336 | QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_MPDU_SIZE_THRESHOLD = 1, |
| 3337 | QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_CONFIG_AGGRESSIVE_STATS_GATHERING = 2, |
| 3338 | /* keep last */ |
| 3339 | QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_AFTER_LAST, |
| 3340 | QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_MAX = |
| 3341 | QCA_WLAN_VENDOR_ATTR_LL_STATS_SET_AFTER_LAST - 1, |
| 3342 | }; |
| 3343 | |
| 3344 | enum qca_wlan_vendor_attr_ll_stats_clr { |
| 3345 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_INVALID = 0, |
| 3346 | /* Unsigned 32bit bitmap for clearing statistics |
| 3347 | * All radio statistics 0x00000001 |
| 3348 | * cca_busy_time (within radio statistics) 0x00000002 |
| 3349 | * All channel stats (within radio statistics) 0x00000004 |
| 3350 | * All scan statistics (within radio statistics) 0x00000008 |
| 3351 | * All interface statistics 0x00000010 |
| 3352 | * All tx rate statistics (within interface statistics) 0x00000020 |
| 3353 | * All ac statistics (with in interface statistics) 0x00000040 |
| 3354 | * All contention (min, max, avg) statistics (within ac statisctics) |
| 3355 | * 0x00000080. |
| 3356 | */ |
| 3357 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_REQ_MASK = 1, |
| 3358 | /* Unsigned 8 bit value: Request to stop statistics collection */ |
| 3359 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_REQ = 2, |
| 3360 | |
| 3361 | /* Unsigned 32 bit bitmap: Response from the driver |
| 3362 | * for the cleared statistics |
| 3363 | */ |
| 3364 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_RSP_MASK = 3, |
| 3365 | /* Unsigned 8 bit value: Response from driver/firmware |
| 3366 | * for the stop request |
| 3367 | */ |
| 3368 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_CONFIG_STOP_RSP = 4, |
| 3369 | /* keep last */ |
| 3370 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_AFTER_LAST, |
| 3371 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_MAX = |
| 3372 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CLR_AFTER_LAST - 1, |
| 3373 | }; |
| 3374 | |
| 3375 | enum qca_wlan_vendor_attr_ll_stats_get { |
| 3376 | QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_INVALID = 0, |
| 3377 | /* Unsigned 32 bit value provided by the caller issuing the GET stats |
| 3378 | * command. When reporting the stats results, the driver uses the same |
| 3379 | * value to indicate which GET request the results correspond to. |
| 3380 | */ |
| 3381 | QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_ID = 1, |
| 3382 | /* Unsigned 32 bit value - bit mask to identify what statistics are |
| 3383 | * requested for retrieval. |
| 3384 | * Radio Statistics 0x00000001 |
| 3385 | * Interface Statistics 0x00000020 |
| 3386 | * All Peer Statistics 0x00000040 |
| 3387 | * Peer Statistics 0x00000080 |
| 3388 | */ |
| 3389 | QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_CONFIG_REQ_MASK = 2, |
| 3390 | /* keep last */ |
| 3391 | QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_AFTER_LAST, |
| 3392 | QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_MAX = |
| 3393 | QCA_WLAN_VENDOR_ATTR_LL_STATS_GET_AFTER_LAST - 1, |
| 3394 | }; |
| 3395 | |
| 3396 | enum qca_wlan_vendor_attr_ll_stats_results { |
| 3397 | QCA_WLAN_VENDOR_ATTR_LL_STATS_INVALID = 0, |
| 3398 | /* Unsigned 32bit value. Used by the driver; must match the request id |
| 3399 | * provided with the QCA_NL80211_VENDOR_SUBCMD_LL_STATS_GET command. |
| 3400 | */ |
| 3401 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RESULTS_REQ_ID = 1, |
| 3402 | |
| 3403 | /* Unsigned 32 bit value */ |
| 3404 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_BEACON_RX = 2, |
| 3405 | /* Unsigned 32 bit value */ |
| 3406 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_RX = 3, |
| 3407 | /* Unsigned 32 bit value */ |
| 3408 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_RX = 4, |
| 3409 | /* Unsigned 32 bit value */ |
| 3410 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_MGMT_ACTION_TX = 5, |
| 3411 | /* Signed 32 bit value */ |
| 3412 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_MGMT = 6, |
| 3413 | /* Signed 32 bit value */ |
| 3414 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_DATA = 7, |
| 3415 | /* Signed 32 bit value */ |
| 3416 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RSSI_ACK = 8, |
| 3417 | |
| 3418 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_* are |
| 3419 | * nested within the interface stats. |
| 3420 | */ |
| 3421 | |
| 3422 | /* Interface mode, e.g., STA, SOFTAP, IBSS, etc. |
| 3423 | * Type = enum wifi_interface_mode. |
| 3424 | */ |
| 3425 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MODE = 9, |
| 3426 | /* Interface MAC address. An array of 6 Unsigned int8 */ |
| 3427 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_MAC_ADDR = 10, |
| 3428 | /* Type = enum wifi_connection_state, e.g., DISCONNECTED, |
| 3429 | * AUTHENTICATING, etc. valid for STA, CLI only. |
| 3430 | */ |
| 3431 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_STATE = 11, |
| 3432 | /* Type = enum wifi_roam_state. Roaming state, e.g., IDLE or ACTIVE |
| 3433 | */ |
| 3434 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_ROAMING = 12, |
| 3435 | /* Unsigned 32 bit value. WIFI_CAPABILITY_XXX */ |
| 3436 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_CAPABILITIES = 13, |
| 3437 | /* NULL terminated SSID. An array of 33 Unsigned 8bit values */ |
| 3438 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_SSID = 14, |
| 3439 | /* BSSID. An array of 6 unsigned 8 bit values */ |
| 3440 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_BSSID = 15, |
| 3441 | /* Country string advertised by AP. An array of 3 unsigned 8 bit |
| 3442 | * values. |
| 3443 | */ |
| 3444 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_AP_COUNTRY_STR = 16, |
| 3445 | /* Country string for this association. An array of 3 unsigned 8 bit |
| 3446 | * values. |
| 3447 | */ |
| 3448 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_INFO_COUNTRY_STR = 17, |
| 3449 | |
| 3450 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_* could |
| 3451 | * be nested within the interface stats. |
| 3452 | */ |
| 3453 | |
| 3454 | /* Type = enum wifi_traffic_ac, e.g., V0, VI, BE and BK */ |
| 3455 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_AC = 18, |
| 3456 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3457 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MPDU = 19, |
| 3458 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3459 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MPDU = 20, |
| 3460 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3461 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_MCAST = 21, |
| 3462 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3463 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_MCAST = 22, |
| 3464 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3465 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RX_AMPDU = 23, |
| 3466 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3467 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_TX_AMPDU = 24, |
| 3468 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3469 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_MPDU_LOST = 25, |
| 3470 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3471 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES = 26, |
| 3472 | /* Unsigned int 32 value corresponding to respective AC */ |
| 3473 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_SHORT = 27, |
| 3474 | /* Unsigned int 32 values corresponding to respective AC */ |
| 3475 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_RETRIES_LONG = 28, |
| 3476 | /* Unsigned int 32 values corresponding to respective AC */ |
| 3477 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MIN = 29, |
| 3478 | /* Unsigned int 32 values corresponding to respective AC */ |
| 3479 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_MAX = 30, |
| 3480 | /* Unsigned int 32 values corresponding to respective AC */ |
| 3481 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_TIME_AVG = 31, |
| 3482 | /* Unsigned int 32 values corresponding to respective AC */ |
| 3483 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_CONTENTION_NUM_SAMPLES = 32, |
| 3484 | /* Unsigned 32 bit value. Number of peers */ |
| 3485 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_NUM_PEERS = 33, |
| 3486 | |
| 3487 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_* are |
| 3488 | * nested within the interface stats. |
| 3489 | */ |
| 3490 | |
| 3491 | /* Type = enum wifi_peer_type. Peer type, e.g., STA, AP, P2P GO etc. */ |
| 3492 | QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_TYPE = 34, |
| 3493 | /* MAC addr corresponding to respective peer. An array of 6 unsigned |
| 3494 | * 8 bit values. |
| 3495 | */ |
| 3496 | QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_MAC_ADDRESS = 35, |
| 3497 | /* Unsigned int 32 bit value representing capabilities corresponding |
| 3498 | * to respective peer. |
| 3499 | */ |
| 3500 | QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_CAPABILITIES = 36, |
| 3501 | /* Unsigned 32 bit value. Number of rates */ |
| 3502 | QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_NUM_RATES = 37, |
| 3503 | |
| 3504 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_* |
| 3505 | * are nested within the rate stat. |
| 3506 | */ |
| 3507 | |
| 3508 | /* Wi-Fi Rate - separate attributes defined for individual fields */ |
| 3509 | |
| 3510 | /* Unsigned int 8 bit value; 0: OFDM, 1:CCK, 2:HT 3:VHT 4..7 reserved */ |
| 3511 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_PREAMBLE = 38, |
| 3512 | /* Unsigned int 8 bit value; 0:1x1, 1:2x2, 3:3x3, 4:4x4 */ |
| 3513 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_NSS = 39, |
| 3514 | /* Unsigned int 8 bit value; 0:20 MHz, 1:40 MHz, 2:80 MHz, 3:160 MHz */ |
| 3515 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BW = 40, |
| 3516 | /* Unsigned int 8 bit value; OFDM/CCK rate code would be as per IEEE Std |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3517 | * in the units of 0.5 Mbps HT/VHT it would be MCS index |
| 3518 | */ |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3519 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MCS_INDEX = 41, |
| 3520 | |
| 3521 | /* Unsigned 32 bit value. Bit rate in units of 100 kbps */ |
| 3522 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_BIT_RATE = 42, |
| 3523 | |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3524 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_STAT_* could be |
| 3525 | * nested within the peer info stats. |
| 3526 | */ |
| 3527 | |
| 3528 | /* Unsigned int 32 bit value. Number of successfully transmitted data |
| 3529 | * packets, i.e., with ACK received corresponding to the respective |
| 3530 | * rate. |
| 3531 | */ |
| 3532 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_TX_MPDU = 43, |
| 3533 | /* Unsigned int 32 bit value. Number of received data packets |
| 3534 | * corresponding to the respective rate. |
| 3535 | */ |
| 3536 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RX_MPDU = 44, |
| 3537 | /* Unsigned int 32 bit value. Number of data packet losses, i.e., no ACK |
| 3538 | * received corresponding to the respective rate. |
| 3539 | */ |
| 3540 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_MPDU_LOST = 45, |
| 3541 | /* Unsigned int 32 bit value. Total number of data packet retries for |
| 3542 | * the respective rate. |
| 3543 | */ |
| 3544 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES = 46, |
| 3545 | /* Unsigned int 32 bit value. Total number of short data packet retries |
| 3546 | * for the respective rate. |
| 3547 | */ |
| 3548 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_SHORT = 47, |
| 3549 | /* Unsigned int 32 bit value. Total number of long data packet retries |
| 3550 | * for the respective rate. |
| 3551 | */ |
| 3552 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_RETRIES_LONG = 48, |
| 3553 | |
| 3554 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ID = 49, |
| 3555 | /* Unsigned 32 bit value. Total number of msecs the radio is awake |
| 3556 | * accruing over time. |
| 3557 | */ |
| 3558 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME = 50, |
| 3559 | /* Unsigned 32 bit value. Total number of msecs the radio is |
| 3560 | * transmitting accruing over time. |
| 3561 | */ |
| 3562 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_TX_TIME = 51, |
| 3563 | /* Unsigned 32 bit value. Total number of msecs the radio is in active |
| 3564 | * receive accruing over time. |
| 3565 | */ |
| 3566 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_RX_TIME = 52, |
| 3567 | /* Unsigned 32 bit value. Total number of msecs the radio is awake due |
| 3568 | * to all scan accruing over time. |
| 3569 | */ |
| 3570 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_SCAN = 53, |
| 3571 | /* Unsigned 32 bit value. Total number of msecs the radio is awake due |
| 3572 | * to NAN accruing over time. |
| 3573 | */ |
| 3574 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_NBD = 54, |
| 3575 | /* Unsigned 32 bit value. Total number of msecs the radio is awake due |
| 3576 | * to GSCAN accruing over time. |
| 3577 | */ |
| 3578 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_GSCAN = 55, |
| 3579 | /* Unsigned 32 bit value. Total number of msecs the radio is awake due |
| 3580 | * to roam scan accruing over time. |
| 3581 | */ |
| 3582 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_ROAM_SCAN = 56, |
| 3583 | /* Unsigned 32 bit value. Total number of msecs the radio is awake due |
| 3584 | * to PNO scan accruing over time. |
| 3585 | */ |
| 3586 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_PNO_SCAN = 57, |
| 3587 | /* Unsigned 32 bit value. Total number of msecs the radio is awake due |
| 3588 | * to Hotspot 2.0 scans and GAS exchange accruing over time. |
| 3589 | */ |
| 3590 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_ON_TIME_HS20 = 58, |
| 3591 | /* Unsigned 32 bit value. Number of channels. */ |
| 3592 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_NUM_CHANNELS = 59, |
| 3593 | |
| 3594 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_* could |
| 3595 | * be nested within the channel stats. |
| 3596 | */ |
| 3597 | |
| 3598 | /* Type = enum wifi_channel_width. Channel width, e.g., 20, 40, 80 */ |
| 3599 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_WIDTH = 60, |
| 3600 | /* Unsigned 32 bit value. Primary 20 MHz channel. */ |
| 3601 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ = 61, |
| 3602 | /* Unsigned 32 bit value. Center frequency (MHz) first segment. */ |
| 3603 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ0 = 62, |
| 3604 | /* Unsigned 32 bit value. Center frequency (MHz) second segment. */ |
| 3605 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_INFO_CENTER_FREQ1 = 63, |
| 3606 | |
| 3607 | /* Attributes of type QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_* could be |
| 3608 | * nested within the radio stats. |
| 3609 | */ |
| 3610 | |
| 3611 | /* Unsigned int 32 bit value representing total number of msecs the |
| 3612 | * radio is awake on that channel accruing over time, corresponding to |
| 3613 | * the respective channel. |
| 3614 | */ |
| 3615 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_ON_TIME = 64, |
| 3616 | /* Unsigned int 32 bit value representing total number of msecs the CCA |
| 3617 | * register is busy accruing over time corresponding to the respective |
| 3618 | * channel. |
| 3619 | */ |
| 3620 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_CCA_BUSY_TIME = 65, |
| 3621 | |
| 3622 | QCA_WLAN_VENDOR_ATTR_LL_STATS_NUM_RADIOS = 66, |
| 3623 | |
| 3624 | /* Signifies the nested list of channel attributes |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 3625 | * QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_* |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3626 | */ |
| 3627 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO = 67, |
| 3628 | |
| 3629 | /* Signifies the nested list of peer info attributes |
| 3630 | * QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_* |
| 3631 | */ |
| 3632 | QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO = 68, |
| 3633 | |
| 3634 | /* Signifies the nested list of rate info attributes |
| 3635 | * QCA_WLAN_VENDOR_ATTR_LL_STATS_RATE_* |
| 3636 | */ |
| 3637 | QCA_WLAN_VENDOR_ATTR_LL_STATS_PEER_INFO_RATE_INFO = 69, |
| 3638 | |
| 3639 | /* Signifies the nested list of wmm info attributes |
| 3640 | * QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_* |
| 3641 | */ |
| 3642 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_INFO = 70, |
| 3643 | |
| 3644 | /* Unsigned 8 bit value. Used by the driver; if set to 1, it indicates |
| 3645 | * that more stats, e.g., peers or radio, are to follow in the next |
| 3646 | * QCA_NL80211_VENDOR_SUBCMD_LL_STATS_*_RESULTS event. |
| 3647 | * Otherwise, it is set to 0. |
| 3648 | */ |
| 3649 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RESULTS_MORE_DATA = 71, |
| 3650 | |
| 3651 | /* Unsigned 64 bit value */ |
| 3652 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_AVERAGE_TSF_OFFSET = 72, |
| 3653 | |
| 3654 | /* Unsigned 32 bit value */ |
| 3655 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_LEAKY_AP_DETECTED = 73, |
| 3656 | |
| 3657 | /* Unsigned 32 bit value */ |
| 3658 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_LEAKY_AP_AVG_NUM_FRAMES_LEAKED = 74, |
| 3659 | |
| 3660 | /* Unsigned 32 bit value */ |
| 3661 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_LEAKY_AP_GUARD_TIME = 75, |
| 3662 | |
| 3663 | /* Unsigned 32 bit value */ |
| 3664 | QCA_WLAN_VENDOR_ATTR_LL_STATS_TYPE = 76, |
| 3665 | |
| 3666 | /* Unsigned 32 bit value */ |
| 3667 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_NUM_TX_LEVELS = 77, |
| 3668 | |
| 3669 | /* Number of msecs the radio spent in transmitting for each power level |
| 3670 | */ |
| 3671 | QCA_WLAN_VENDOR_ATTR_LL_STATS_RADIO_TX_TIME_PER_LEVEL = 78, |
| 3672 | |
| 3673 | /* Unsigned 32 bit value */ |
| 3674 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RTS_SUCC_CNT = 79, |
| 3675 | /* Unsigned 32 bit value */ |
| 3676 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_RTS_FAIL_CNT = 80, |
| 3677 | /* Unsigned 32 bit value */ |
| 3678 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_PPDU_SUCC_CNT = 81, |
| 3679 | /* Unsigned 32 bit value */ |
| 3680 | QCA_WLAN_VENDOR_ATTR_LL_STATS_IFACE_PPDU_FAIL_CNT = 82, |
| 3681 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3682 | /* Unsigned int 32 value. |
| 3683 | * Pending MSDUs corresponding to respective AC. |
| 3684 | */ |
| 3685 | QCA_WLAN_VENDOR_ATTR_LL_STATS_WMM_AC_PENDING_MSDU = 83, |
| 3686 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 3687 | /* u32 value representing total time in milliseconds for which the radio |
| 3688 | * is transmitting on this channel. This attribute will be nested |
| 3689 | * within QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO. |
| 3690 | */ |
| 3691 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_TX_TIME = 84, |
| 3692 | /* u32 value representing total time in milliseconds for which the radio |
| 3693 | * is receiving all 802.11 frames intended for this device on this |
| 3694 | * channel. This attribute will be nested within |
| 3695 | * QCA_WLAN_VENDOR_ATTR_LL_STATS_CH_INFO. |
| 3696 | */ |
| 3697 | QCA_WLAN_VENDOR_ATTR_LL_STATS_CHANNEL_RX_TIME = 85, |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3698 | /* keep last */ |
| 3699 | QCA_WLAN_VENDOR_ATTR_LL_STATS_AFTER_LAST, |
| 3700 | QCA_WLAN_VENDOR_ATTR_LL_STATS_MAX = |
| 3701 | QCA_WLAN_VENDOR_ATTR_LL_STATS_AFTER_LAST - 1, |
| 3702 | }; |
| 3703 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3704 | enum qca_wlan_vendor_attr_ll_stats_type { |
Dmitry Shmidt | 9839ecd | 2016-11-07 11:05:47 -0800 | [diff] [blame] | 3705 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_INVALID = 0, |
| 3706 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_RADIO = 1, |
| 3707 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_IFACE = 2, |
| 3708 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_PEERS = 3, |
| 3709 | |
| 3710 | /* keep last */ |
| 3711 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_AFTER_LAST, |
| 3712 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_MAX = |
| 3713 | QCA_NL80211_VENDOR_SUBCMD_LL_STATS_TYPE_AFTER_LAST - 1, |
| 3714 | }; |
| 3715 | |
| 3716 | /** |
| 3717 | * enum qca_wlan_vendor_attr_tdls_configuration - Attributes for |
| 3718 | * TDLS configuration to the host driver. |
| 3719 | * |
| 3720 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TRIGGER_MODE: Configure the TDLS trigger |
| 3721 | * mode in the host driver. enum qca_wlan_vendor_tdls_trigger_mode |
| 3722 | * represents the different TDLS trigger modes. |
| 3723 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TX_STATS_PERIOD: Duration (u32) within |
| 3724 | * which QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TX_THRESHOLD number |
| 3725 | * of packets shall meet the criteria for implicit TDLS setup. |
| 3726 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TX_THRESHOLD: Number (u32) of Tx/Rx packets |
| 3727 | * within a duration QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TX_STATS_PERIOD |
| 3728 | * to initiate a TDLS setup. |
| 3729 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_DISCOVERY_PERIOD: Time (u32) to initiate |
| 3730 | * a TDLS Discovery to the peer. |
| 3731 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_MAX_DISCOVERY_ATTEMPT: Max number (u32) of |
| 3732 | * discovery attempts to know the TDLS capability of the peer. A peer is |
| 3733 | * marked as TDLS not capable if there is no response for all the attempts. |
| 3734 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IDLE_TIMEOUT: Represents a duration (u32) |
| 3735 | * within which QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IDLE_PACKET_THRESHOLD |
| 3736 | * number of TX / RX frames meet the criteria for TDLS teardown. |
| 3737 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IDLE_PACKET_THRESHOLD: Minimum number (u32) |
| 3738 | * of Tx/Rx packets within a duration |
| 3739 | * QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IDLE_TIMEOUT to tear down a TDLS link. |
| 3740 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_SETUP_RSSI_THRESHOLD: Threshold |
| 3741 | * corresponding to the RSSI of the peer below which a TDLS setup is |
| 3742 | * triggered. |
| 3743 | * @QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TEARDOWN_RSSI_THRESHOLD: Threshold |
| 3744 | * corresponding to the RSSI of the peer above which a TDLS teardown is |
| 3745 | * triggered. |
| 3746 | */ |
| 3747 | enum qca_wlan_vendor_attr_tdls_configuration { |
| 3748 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_INVALID = 0, |
| 3749 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TRIGGER_MODE = 1, |
| 3750 | |
| 3751 | /* Attributes configuring the TDLS Implicit Trigger */ |
| 3752 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TX_STATS_PERIOD = 2, |
| 3753 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TX_THRESHOLD = 3, |
| 3754 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_DISCOVERY_PERIOD = 4, |
| 3755 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_MAX_DISCOVERY_ATTEMPT = 5, |
| 3756 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IDLE_TIMEOUT = 6, |
| 3757 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IDLE_PACKET_THRESHOLD = 7, |
| 3758 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_SETUP_RSSI_THRESHOLD = 8, |
| 3759 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TEARDOWN_RSSI_THRESHOLD = 9, |
| 3760 | |
| 3761 | /* keep last */ |
| 3762 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_AFTER_LAST, |
| 3763 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_MAX = |
| 3764 | QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_AFTER_LAST - 1 |
| 3765 | }; |
| 3766 | |
| 3767 | /** |
| 3768 | * enum qca_wlan_vendor_tdls_trigger_mode: Represents the TDLS trigger mode in |
| 3769 | * the driver |
| 3770 | * |
| 3771 | * The following are the different values for |
| 3772 | * QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_TRIGGER_MODE. |
| 3773 | * |
| 3774 | * @QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_EXPLICIT: The trigger to initiate/teardown |
| 3775 | * the TDLS connection to a respective peer comes from the user space. |
| 3776 | * wpa_supplicant provides the commands TDLS_SETUP, TDLS_TEARDOWN, |
| 3777 | * TDLS_DISCOVER to do this. |
| 3778 | * @QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_IMPLICIT: Host driver triggers this TDLS |
| 3779 | * setup/teardown to the eligible peer once the configured criteria |
| 3780 | * (such as TX/RX threshold, RSSI) is met. The attributes |
| 3781 | * in QCA_WLAN_VENDOR_ATTR_TDLS_CONFIG_IMPLICIT_PARAMS correspond to |
| 3782 | * the different configuration criteria for the TDLS trigger from the |
| 3783 | * host driver. |
| 3784 | * @QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_EXTERNAL: Enables the driver to trigger |
| 3785 | * the TDLS setup / teardown through the implicit mode only to the |
| 3786 | * configured MAC addresses (wpa_supplicant, with tdls_external_control=1, |
| 3787 | * configures the MAC address through TDLS_SETUP / TDLS_TEARDOWN commands). |
| 3788 | * External mode works on top of the implicit mode. Thus the host driver |
| 3789 | * is expected to configure in TDLS Implicit mode too to operate in |
| 3790 | * External mode. |
| 3791 | * Configuring External mode alone without Implicit mode is invalid. |
| 3792 | * |
| 3793 | * All the above implementations work as expected only when the host driver |
| 3794 | * advertises the capability WPA_DRIVER_FLAGS_TDLS_EXTERNAL_SETUP - representing |
| 3795 | * that the TDLS message exchange is not internal to the host driver, but |
| 3796 | * depends on wpa_supplicant to do the message exchange. |
| 3797 | */ |
| 3798 | enum qca_wlan_vendor_tdls_trigger_mode { |
| 3799 | QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_EXPLICIT = 1 << 0, |
| 3800 | QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_IMPLICIT = 1 << 1, |
| 3801 | QCA_WLAN_VENDOR_TDLS_TRIGGER_MODE_EXTERNAL = 1 << 2, |
| 3802 | }; |
| 3803 | |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3804 | /** |
| 3805 | * enum qca_vendor_attr_sar_limits_selections - Source of SAR power limits |
| 3806 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF0: Select SAR profile #0 |
| 3807 | * that is hard-coded in the Board Data File (BDF). |
| 3808 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF1: Select SAR profile #1 |
| 3809 | * that is hard-coded in the Board Data File (BDF). |
| 3810 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF2: Select SAR profile #2 |
| 3811 | * that is hard-coded in the Board Data File (BDF). |
| 3812 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF3: Select SAR profile #3 |
| 3813 | * that is hard-coded in the Board Data File (BDF). |
| 3814 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF4: Select SAR profile #4 |
| 3815 | * that is hard-coded in the Board Data File (BDF). |
| 3816 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_NONE: Do not select any |
| 3817 | * source of SAR power limits, thereby disabling the SAR power |
| 3818 | * limit feature. |
| 3819 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_USER: Select the SAR power |
| 3820 | * limits configured by %QCA_NL80211_VENDOR_SUBCMD_SET_SAR. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3821 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_V2_0: Select the SAR power |
| 3822 | * limits version 2.0 configured by %QCA_NL80211_VENDOR_SUBCMD_SET_SAR. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3823 | * |
| 3824 | * This enumerates the valid set of values that may be supplied for |
| 3825 | * attribute %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT in an instance of |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3826 | * the %QCA_NL80211_VENDOR_SUBCMD_SET_SAR_LIMITS vendor command or in |
| 3827 | * the response to an instance of the |
| 3828 | * %QCA_NL80211_VENDOR_SUBCMD_GET_SAR_LIMITS vendor command. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3829 | */ |
| 3830 | enum qca_vendor_attr_sar_limits_selections { |
| 3831 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF0 = 0, |
| 3832 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF1 = 1, |
| 3833 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF2 = 2, |
| 3834 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF3 = 3, |
| 3835 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_BDF4 = 4, |
| 3836 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_NONE = 5, |
| 3837 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_USER = 6, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3838 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_V2_0 = 7, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3839 | }; |
| 3840 | |
| 3841 | /** |
| 3842 | * enum qca_vendor_attr_sar_limits_spec_modulations - |
| 3843 | * SAR limits specification modulation |
| 3844 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION_CCK - |
| 3845 | * CCK modulation |
| 3846 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION_OFDM - |
| 3847 | * OFDM modulation |
| 3848 | * |
| 3849 | * This enumerates the valid set of values that may be supplied for |
| 3850 | * attribute %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION in an |
| 3851 | * instance of attribute %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC in an |
| 3852 | * instance of the %QCA_NL80211_VENDOR_SUBCMD_SET_SAR_LIMITS vendor |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3853 | * command or in the response to an instance of the |
| 3854 | * %QCA_NL80211_VENDOR_SUBCMD_GET_SAR_LIMITS vendor command. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3855 | */ |
| 3856 | enum qca_vendor_attr_sar_limits_spec_modulations { |
| 3857 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION_CCK = 0, |
| 3858 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION_OFDM = 1, |
| 3859 | }; |
| 3860 | |
| 3861 | /** |
| 3862 | * enum qca_vendor_attr_sar_limits - Attributes for SAR power limits |
| 3863 | * |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 3864 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SAR_ENABLE: Optional (u32) value to |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3865 | * select which SAR power limit table should be used. Valid |
| 3866 | * values are enumerated in enum |
| 3867 | * %qca_vendor_attr_sar_limits_selections. The existing SAR |
| 3868 | * power limit selection is unchanged if this attribute is not |
| 3869 | * present. |
| 3870 | * |
| 3871 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_NUM_SPECS: Optional (u32) value |
| 3872 | * which specifies the number of SAR power limit specifications |
| 3873 | * which will follow. |
| 3874 | * |
| 3875 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC: Nested array of SAR power |
| 3876 | * limit specifications. The number of specifications is |
| 3877 | * specified by @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_NUM_SPECS. Each |
| 3878 | * specification contains a set of |
| 3879 | * QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_* attributes. A |
| 3880 | * specification is uniquely identified by the attributes |
| 3881 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_BAND, |
| 3882 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_CHAIN, and |
| 3883 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION and always |
| 3884 | * contains as a payload the attribute |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3885 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT, |
| 3886 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT_INDEX. |
| 3887 | * Either %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT or |
| 3888 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT_INDEX is |
| 3889 | * needed based upon the value of |
| 3890 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SAR_ENABLE. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3891 | * |
| 3892 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_BAND: Optional (u32) value to |
| 3893 | * indicate for which band this specification applies. Valid |
| 3894 | * values are enumerated in enum %nl80211_band (although not all |
| 3895 | * bands may be supported by a given device). If the attribute is |
| 3896 | * not supplied then the specification will be applied to all |
| 3897 | * supported bands. |
| 3898 | * |
| 3899 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_CHAIN: Optional (u32) value |
| 3900 | * to indicate for which antenna chain this specification |
| 3901 | * applies, i.e. 1 for chain 1, 2 for chain 2, etc. If the |
| 3902 | * attribute is not supplied then the specification will be |
| 3903 | * applied to all chains. |
| 3904 | * |
| 3905 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION: Optional (u32) |
| 3906 | * value to indicate for which modulation scheme this |
| 3907 | * specification applies. Valid values are enumerated in enum |
| 3908 | * %qca_vendor_attr_sar_limits_spec_modulations. If the attribute |
| 3909 | * is not supplied then the specification will be applied to all |
| 3910 | * modulation schemes. |
| 3911 | * |
| 3912 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT: Required (u32) |
| 3913 | * value to specify the actual power limit value in units of 0.5 |
| 3914 | * dBm (i.e., a value of 11 represents 5.5 dBm). |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3915 | * This is required, when %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT is |
| 3916 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_USER. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3917 | * |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3918 | * @QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT_INDEX: Required (u32) |
| 3919 | * value to indicate SAR V2 indices (0 - 11) to select SAR V2 profiles. |
| 3920 | * This is required, when %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT is |
| 3921 | * %QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SELECT_V2_0. |
| 3922 | * |
| 3923 | * These attributes are used with %QCA_NL80211_VENDOR_SUBCMD_SET_SAR_LIMITS |
| 3924 | * and %QCA_NL80211_VENDOR_SUBCMD_GET_SAR_LIMITS. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3925 | */ |
| 3926 | enum qca_vendor_attr_sar_limits { |
| 3927 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_INVALID = 0, |
| 3928 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SAR_ENABLE = 1, |
| 3929 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_NUM_SPECS = 2, |
| 3930 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC = 3, |
| 3931 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_BAND = 4, |
| 3932 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_CHAIN = 5, |
| 3933 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_MODULATION = 6, |
| 3934 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT = 7, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 3935 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_SPEC_POWER_LIMIT_INDEX = 8, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3936 | |
| 3937 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_AFTER_LAST, |
| 3938 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_MAX = |
| 3939 | QCA_WLAN_VENDOR_ATTR_SAR_LIMITS_AFTER_LAST - 1 |
| 3940 | }; |
| 3941 | |
| 3942 | /** |
| 3943 | * enum qca_wlan_vendor_attr_get_wifi_info: Attributes for data used by |
| 3944 | * QCA_NL80211_VENDOR_SUBCMD_GET_WIFI_INFO sub command. |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 3945 | * |
| 3946 | * @QCA_WLAN_VENDOR_ATTR_WIFI_INFO_DRIVER_VERSION: In a request this attribute |
| 3947 | * should be set to any U8 value to indicate that the driver version |
| 3948 | * should be returned. When enabled in this manner, in a response this |
| 3949 | * attribute will contain a string representation of the driver version. |
| 3950 | * |
| 3951 | * @QCA_WLAN_VENDOR_ATTR_WIFI_INFO_FIRMWARE_VERSION: In a request this attribute |
| 3952 | * should be set to any U8 value to indicate that the firmware version |
| 3953 | * should be returned. When enabled in this manner, in a response this |
| 3954 | * attribute will contain a string representation of the firmware version. |
| 3955 | * |
| 3956 | * @QCA_WLAN_VENDOR_ATTR_WIFI_INFO_RADIO_INDEX: In a request this attribute |
| 3957 | * should be set to any U32 value to indicate that the current radio |
| 3958 | * index should be returned. When enabled in this manner, in a response |
| 3959 | * this attribute will contain a U32 radio index value. |
| 3960 | * |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3961 | */ |
| 3962 | enum qca_wlan_vendor_attr_get_wifi_info { |
| 3963 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_INVALID = 0, |
| 3964 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_DRIVER_VERSION = 1, |
| 3965 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_FIRMWARE_VERSION = 2, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 3966 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_RADIO_INDEX = 3, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 3967 | |
| 3968 | /* keep last */ |
| 3969 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_AFTER_LAST, |
| 3970 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_MAX = |
| 3971 | QCA_WLAN_VENDOR_ATTR_WIFI_INFO_GET_AFTER_LAST - 1, |
| 3972 | }; |
| 3973 | |
| 3974 | /* |
| 3975 | * enum qca_wlan_vendor_attr_wifi_logger_start: Attributes for data used by |
| 3976 | * QCA_NL80211_VENDOR_SUBCMD_WIFI_LOGGER_START sub command. |
| 3977 | */ |
| 3978 | enum qca_wlan_vendor_attr_wifi_logger_start { |
| 3979 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_INVALID = 0, |
| 3980 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_RING_ID = 1, |
| 3981 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_VERBOSE_LEVEL = 2, |
| 3982 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_FLAGS = 3, |
| 3983 | |
| 3984 | /* keep last */ |
| 3985 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_AFTER_LAST, |
| 3986 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_GET_MAX = |
| 3987 | QCA_WLAN_VENDOR_ATTR_WIFI_LOGGER_START_AFTER_LAST - 1, |
| 3988 | }; |
| 3989 | |
| 3990 | enum qca_wlan_vendor_attr_logger_results { |
| 3991 | QCA_WLAN_VENDOR_ATTR_LOGGER_RESULTS_INVALID = 0, |
| 3992 | |
| 3993 | /* Unsigned 32-bit value; must match the request Id supplied by |
| 3994 | * Wi-Fi HAL in the corresponding subcmd NL msg. |
| 3995 | */ |
| 3996 | QCA_WLAN_VENDOR_ATTR_LOGGER_RESULTS_REQUEST_ID = 1, |
| 3997 | |
| 3998 | /* Unsigned 32-bit value; used to indicate the size of memory |
| 3999 | * dump to be allocated. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 4000 | */ |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4001 | QCA_WLAN_VENDOR_ATTR_LOGGER_RESULTS_MEMDUMP_SIZE = 2, |
| 4002 | |
| 4003 | /* keep last */ |
| 4004 | QCA_WLAN_VENDOR_ATTR_LOGGER_RESULTS_AFTER_LAST, |
| 4005 | QCA_WLAN_VENDOR_ATTR_LOGGER_RESULTS_MAX = |
| 4006 | QCA_WLAN_VENDOR_ATTR_LOGGER_RESULTS_AFTER_LAST - 1, |
| 4007 | }; |
| 4008 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4009 | /** |
| 4010 | * enum qca_scan_freq_list_type: Frequency list types |
| 4011 | * |
| 4012 | * @QCA_PREFERRED_SCAN_FREQ_LIST: The driver shall use the scan frequency list |
| 4013 | * specified with attribute QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST as |
| 4014 | * a preferred frequency list for roaming. |
| 4015 | * |
| 4016 | * @QCA_SPECIFIC_SCAN_FREQ_LIST: The driver shall use the frequency list |
| 4017 | * specified with attribute QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST as |
| 4018 | * a specific frequency list for roaming. |
| 4019 | */ |
| 4020 | enum qca_scan_freq_list_type { |
| 4021 | QCA_PREFERRED_SCAN_FREQ_LIST = 1, |
| 4022 | QCA_SPECIFIC_SCAN_FREQ_LIST = 2, |
| 4023 | }; |
| 4024 | |
| 4025 | /** |
| 4026 | * enum qca_vendor_attr_scan_freq_list_scheme: Frequency list scheme |
| 4027 | * |
| 4028 | * @QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST: Nested attribute of u32 values |
| 4029 | * List of frequencies in MHz to be considered for a roam scan. |
| 4030 | * |
| 4031 | * @QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST_TYPE: Unsigned 32-bit value. |
| 4032 | * Type of frequency list scheme being configured/gotten as defined by the |
| 4033 | * enum qca_scan_freq_list_type. |
| 4034 | */ |
| 4035 | enum qca_vendor_attr_scan_freq_list_scheme { |
| 4036 | QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST = 1, |
| 4037 | QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST_TYPE = 2, |
| 4038 | |
| 4039 | /* keep last */ |
| 4040 | QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST_SCHEME_AFTER_LAST, |
| 4041 | QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST_SCHEME_MAX = |
| 4042 | QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST_SCHEME_AFTER_LAST - 1, |
| 4043 | }; |
| 4044 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4045 | /** |
| 4046 | * enum qca_roam_scan_scheme: Scan scheme |
| 4047 | * |
| 4048 | * @QCA_ROAM_SCAN_SCHEME_NO_SCAN: No frequencies specified to scan. |
| 4049 | * Indicates the driver to not scan on a Roam Trigger scenario, but |
| 4050 | * disconnect. E.g., on a BTM request from the AP the driver/firmware shall |
| 4051 | * disconnect from the current connected AP by notifying a failure |
| 4052 | * code in the BTM response. |
| 4053 | * |
| 4054 | * @QCA_ROAM_SCAN_SCHEME_PARTIAL_SCAN: Indicates the driver/firmware to |
| 4055 | * trigger partial frequency scans. These frequencies are the ones learned |
| 4056 | * or maintained by the driver based on the probability of finding the |
| 4057 | * BSSIDs in the ESS for which the roaming is triggered. |
| 4058 | * |
| 4059 | * @QCA_ROAM_SCAN_SCHEME_FULL_SCAN: Indicates the driver/firmware to |
| 4060 | * trigger the scan on all the valid frequencies to find better |
| 4061 | * candidates to roam. |
| 4062 | */ |
| 4063 | enum qca_roam_scan_scheme { |
| 4064 | QCA_ROAM_SCAN_SCHEME_NO_SCAN = 0, |
| 4065 | QCA_ROAM_SCAN_SCHEME_PARTIAL_SCAN = 1, |
| 4066 | QCA_ROAM_SCAN_SCHEME_FULL_SCAN = 2, |
| 4067 | }; |
| 4068 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4069 | /* |
| 4070 | * enum qca_vendor_roam_triggers: Bitmap of roaming triggers |
| 4071 | * |
| 4072 | * @QCA_ROAM_TRIGGER_REASON_PER: Set if the roam has to be triggered based on |
| 4073 | * a bad packet error rates (PER). |
| 4074 | * @QCA_ROAM_TRIGGER_REASON_BEACON_MISS: Set if the roam has to be triggered |
| 4075 | * based on beacon misses from the connected AP. |
| 4076 | * @QCA_ROAM_TRIGGER_REASON_POOR_RSSI: Set if the roam has to be triggered |
| 4077 | * due to poor RSSI of the connected AP. |
| 4078 | * @QCA_ROAM_TRIGGER_REASON_BETTER_RSSI: Set if the roam has to be triggered |
| 4079 | * upon finding a BSSID with a better RSSI than the connected BSSID. |
| 4080 | * Here the RSSI of the current BSSID need not be poor. |
| 4081 | * @QCA_ROAM_TRIGGER_REASON_PERIODIC: Set if the roam has to be triggered |
| 4082 | * by triggering a periodic scan to find a better AP to roam. |
| 4083 | * @QCA_ROAM_TRIGGER_REASON_DENSE: Set if the roam has to be triggered |
| 4084 | * when the connected channel environment is too noisy/congested. |
| 4085 | * @QCA_ROAM_TRIGGER_REASON_BTM: Set if the roam has to be triggered |
| 4086 | * when BTM Request frame is received from the connected AP. |
| 4087 | * @QCA_ROAM_TRIGGER_REASON_BSS_LOAD: Set if the roam has to be triggered |
| 4088 | * when the channel utilization is goes above the configured threshold. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4089 | * @QCA_ROAM_TRIGGER_REASON_USER_TRIGGER: Set if the roam has to be triggered |
| 4090 | * based on the request from the user (space). |
| 4091 | * @QCA_ROAM_TRIGGER_REASON_DEAUTH: Set if the roam has to be triggered when |
| 4092 | * device receives Deauthentication/Disassociation frame from connected AP. |
| 4093 | * @QCA_ROAM_TRIGGER_REASON_IDLE: Set if the roam has to be triggered when the |
| 4094 | * device is in idle state (no TX/RX) and suspend mode, if the current RSSI |
| 4095 | * is determined to be a poor one. |
| 4096 | * @QCA_ROAM_TRIGGER_REASON_TX_FAILURES: Set if the roam has to be triggered |
| 4097 | * based on continuous TX Data frame failures to the connected AP. |
| 4098 | * @QCA_ROAM_TRIGGER_REASON_EXTERNAL_SCAN: Set if the roam has to be triggered |
| 4099 | * based on the scan results obtained from an external scan (not triggered |
| 4100 | * to aim roaming). |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4101 | * |
| 4102 | * Set the corresponding roam trigger reason bit to consider it for roam |
| 4103 | * trigger. |
| 4104 | * Userspace can set multiple bits and send to the driver. The driver shall |
| 4105 | * consider all of them to trigger/initiate a roam scan. |
| 4106 | */ |
| 4107 | enum qca_vendor_roam_triggers { |
| 4108 | QCA_ROAM_TRIGGER_REASON_PER = 1 << 0, |
| 4109 | QCA_ROAM_TRIGGER_REASON_BEACON_MISS = 1 << 1, |
| 4110 | QCA_ROAM_TRIGGER_REASON_POOR_RSSI = 1 << 2, |
| 4111 | QCA_ROAM_TRIGGER_REASON_BETTER_RSSI = 1 << 3, |
| 4112 | QCA_ROAM_TRIGGER_REASON_PERIODIC = 1 << 4, |
| 4113 | QCA_ROAM_TRIGGER_REASON_DENSE = 1 << 5, |
| 4114 | QCA_ROAM_TRIGGER_REASON_BTM = 1 << 6, |
| 4115 | QCA_ROAM_TRIGGER_REASON_BSS_LOAD = 1 << 7, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4116 | QCA_ROAM_TRIGGER_REASON_USER_TRIGGER = 1 << 8, |
| 4117 | QCA_ROAM_TRIGGER_REASON_DEAUTH = 1 << 9, |
| 4118 | QCA_ROAM_TRIGGER_REASON_IDLE = 1 << 10, |
| 4119 | QCA_ROAM_TRIGGER_REASON_TX_FAILURES = 1 << 11, |
| 4120 | QCA_ROAM_TRIGGER_REASON_EXTERNAL_SCAN = 1 << 12, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4121 | }; |
| 4122 | |
| 4123 | /** |
| 4124 | * enum qca_vendor_attr_roam_candidate_selection_criteria: |
| 4125 | * |
| 4126 | * Each attribute carries a weightage in percentage (%). |
| 4127 | * |
| 4128 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_RSSI: Unsigned 8-bit value. |
| 4129 | * Represents the weightage to be given for the RSSI selection |
| 4130 | * criteria among other parameters. |
| 4131 | * |
| 4132 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_RATE: Unsigned 8-bit value. |
| 4133 | * Represents the weightage to be given for the rate selection |
| 4134 | * criteria among other parameters. |
| 4135 | * |
| 4136 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_BW: Unsigned 8-bit value. |
| 4137 | * Represents the weightage to be given for the band width selection |
| 4138 | * criteria among other parameters. |
| 4139 | * |
| 4140 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_BAND: Unsigned 8-bit value. |
| 4141 | * Represents the weightage to be given for the band selection |
| 4142 | * criteria among other parameters. |
| 4143 | * |
| 4144 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_NSS: Unsigned 8-bit value. |
| 4145 | * Represents the weightage to be given for the NSS selection |
| 4146 | * criteria among other parameters. |
| 4147 | * |
| 4148 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_CHAN_CONGESTION: Unsigned 8-bit value. |
| 4149 | * Represents the weightage to be given for the channel congestion |
| 4150 | * selection criteria among other parameters. |
| 4151 | * |
| 4152 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_BEAMFORMING: Unsigned 8-bit value. |
| 4153 | * Represents the weightage to be given for the beamforming selection |
| 4154 | * criteria among other parameters. |
| 4155 | * |
| 4156 | * @QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_OCE_WAN: Unsigned 8-bit value. |
| 4157 | * Represents the weightage to be given for the OCE selection |
| 4158 | * criteria among other parameters. |
| 4159 | */ |
| 4160 | enum qca_vendor_attr_roam_candidate_selection_criteria { |
| 4161 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_RSSI = 1, |
| 4162 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_RATE = 2, |
| 4163 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_BW = 3, |
| 4164 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_BAND = 4, |
| 4165 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_NSS = 5, |
| 4166 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_CHAN_CONGESTION = 6, |
| 4167 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_BEAMFORMING = 7, |
| 4168 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_SCORE_OCE_WAN = 8, |
| 4169 | |
| 4170 | /* keep last */ |
| 4171 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_RATE_AFTER_LAST, |
| 4172 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_RATE_MAX = |
| 4173 | QCA_ATTR_ROAM_CAND_SEL_CRITERIA_RATE_AFTER_LAST - 1, |
| 4174 | }; |
| 4175 | |
| 4176 | /** |
| 4177 | * enum qca_vendor_attr_roam_control - Attributes to carry roam configuration |
| 4178 | * The following attributes are used to set/get/clear the respective |
| 4179 | * configurations to/from the driver. |
| 4180 | * For the get, the attribute for the configuration to be queried shall |
| 4181 | * carry any of its acceptable values to the driver. In return, the driver |
| 4182 | * shall send the configured values within the same attribute to the user |
| 4183 | * space. |
| 4184 | * |
| 4185 | * @QCA_ATTR_ROAM_CONTROL_ENABLE: Unsigned 8-bit value. |
| 4186 | * Signifies to enable/disable roam control in driver. |
| 4187 | * 1-enable, 0-disable |
| 4188 | * Enable: Mandates the driver to do the further roams using the |
| 4189 | * configuration parameters set through |
| 4190 | * QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_SET. |
| 4191 | * Disable: Disables the driver/firmware roaming triggered through |
| 4192 | * QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_SET. Further roaming is |
| 4193 | * expected to continue with the default configurations. |
| 4194 | * |
| 4195 | * @QCA_ATTR_ROAM_CONTROL_STATUS: Unsigned 8-bit value. |
| 4196 | * This is used along with QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_GET. |
| 4197 | * Roam control status is obtained through this attribute. |
| 4198 | * |
| 4199 | * @QCA_ATTR_ROAM_CONTROL_CLEAR_ALL: Flag attribute to indicate the |
| 4200 | * complete config set through QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_SET |
| 4201 | * is to be cleared in the driver. |
| 4202 | * This is used along with QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_CLEAR |
| 4203 | * and shall be ignored if used with other sub commands. |
| 4204 | * If this attribute is specified along with subcmd |
| 4205 | * QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_CLEAR, the driver shall ignore |
| 4206 | * all other attributes, if there are any. |
| 4207 | * If this attribute is not specified when the subcmd |
| 4208 | * QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_CLEAR is sent, the driver shall |
| 4209 | * clear the data corresponding to the attributes specified. |
| 4210 | * |
| 4211 | * @QCA_ATTR_ROAM_CONTROL_FREQ_LIST_SCHEME: Nested attribute to carry the |
| 4212 | * list of frequencies and its type, represented by |
| 4213 | * enum qca_vendor_attr_scan_freq_list_scheme. |
| 4214 | * Frequency list and its type are mandatory for this attribute to set |
| 4215 | * the frequencies. |
| 4216 | * Frequency type is mandatory for this attribute to get the frequencies |
| 4217 | * and the frequency list is obtained through |
| 4218 | * QCA_ATTR_ROAM_CONTROL_SCAN_FREQ_LIST. |
| 4219 | * Frequency list type is mandatory for this attribute to clear the |
| 4220 | * frequencies. |
| 4221 | * |
| 4222 | * @QCA_ATTR_ROAM_CONTROL_SCAN_PERIOD: Unsigned 32-bit value. |
| 4223 | * Carries the value of scan period in seconds to set. |
| 4224 | * The value of scan period is obtained with the same attribute for get. |
| 4225 | * Clears the scan period in the driver when specified with clear command. |
| 4226 | * Scan period is the idle time in seconds between each subsequent |
| 4227 | * channel scans. |
| 4228 | * |
| 4229 | * @QCA_ATTR_ROAM_CONTROL_FULL_SCAN_PERIOD: Unsigned 32-bit value. |
| 4230 | * Carries the value of full scan period in seconds to set. |
| 4231 | * The value of full scan period is obtained with the same attribute for |
| 4232 | * get. |
| 4233 | * Clears the full scan period in the driver when specified with clear |
| 4234 | * command. Full scan period is the idle period in seconds between two |
| 4235 | * successive full channel roam scans. |
| 4236 | * |
| 4237 | * @QCA_ATTR_ROAM_CONTROL_TRIGGERS: Unsigned 32-bit value. |
| 4238 | * Carries a bitmap of the roam triggers specified in |
| 4239 | * enum qca_vendor_roam_triggers. |
| 4240 | * The driver shall enable roaming by enabling corresponding roam triggers |
| 4241 | * based on the trigger bits sent with this attribute. |
| 4242 | * If this attribute is not configured, the driver shall proceed with |
| 4243 | * default behavior. |
| 4244 | * The bitmap configured is obtained with the same attribute for get. |
| 4245 | * Clears the bitmap configured in driver when specified with clear |
| 4246 | * command. |
| 4247 | * |
| 4248 | * @QCA_ATTR_ROAM_CONTROL_SELECTION_CRITERIA: Nested attribute signifying the |
| 4249 | * weightage in percentage (%) to be given for each selection criteria. |
| 4250 | * Different roam candidate selection criteria are represented by |
| 4251 | * enum qca_vendor_attr_roam_candidate_selection_criteria. |
| 4252 | * The driver shall select the roam candidate based on corresponding |
| 4253 | * candidate selection scores sent. |
| 4254 | * |
| 4255 | * An empty nested attribute is used to indicate that no specific |
| 4256 | * preference score/criteria is configured (i.e., to disable this mechanism |
| 4257 | * in the set case and to show that the mechanism is disabled in the get |
| 4258 | * case). |
| 4259 | * |
| 4260 | * Userspace can send multiple attributes out of this enum to the driver. |
| 4261 | * Since this attribute represents the weight/percentage of preference for |
| 4262 | * the respective selection criteria, it is preferred to configure 100% |
| 4263 | * total weightage. The value in each attribute or cumulative weight of the |
| 4264 | * values in all the nested attributes should not exceed 100%. The driver |
| 4265 | * shall reject such configuration. |
| 4266 | * |
| 4267 | * If the weights configured through this attribute are less than 100%, |
| 4268 | * the driver shall honor the weights (x%) passed for the corresponding |
| 4269 | * selection criteria and choose/distribute rest of the weight (100-x)% |
| 4270 | * for the other selection criteria, based on its internal logic. |
| 4271 | * |
| 4272 | * The selection criteria configured is obtained with the same |
| 4273 | * attribute for get. |
| 4274 | * |
| 4275 | * Clears the selection criteria configured in the driver when specified |
| 4276 | * with clear command. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4277 | * |
| 4278 | * @QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME: Unsigned 32-bit value. |
| 4279 | * Represents value of the scan frequency scheme from enum |
| 4280 | * qca_roam_scan_scheme. |
| 4281 | * It's an optional attribute. If this attribute is not configured, the |
| 4282 | * driver shall proceed with default behavior. |
| 4283 | * |
| 4284 | * @QCA_ATTR_ROAM_CONTROL_CONNECTED_RSSI_THRESHOLD: Signed 32-bit value in dBm, |
| 4285 | * signifying the RSSI threshold of the current connected AP, indicating |
| 4286 | * the driver to trigger roam only when the current connected AP's RSSI |
| 4287 | * is less than this threshold. |
| 4288 | * |
| 4289 | * @QCA_ATTR_ROAM_CONTROL_CANDIDATE_RSSI_THRESHOLD: Signed 32-bit value in dBm, |
| 4290 | * signifying the RSSI threshold of the candidate AP, indicating |
| 4291 | * the driver to trigger roam only to the candidate AP with RSSI |
| 4292 | * better than this threshold. |
| 4293 | * |
| 4294 | * @QCA_ATTR_ROAM_CONTROL_USER_REASON: Unsigned 32-bit value. Represents the |
| 4295 | * user defined reason code to be sent to the AP in response to AP's |
| 4296 | * request to trigger the roam if the roaming cannot be triggered. |
| 4297 | * Applies to all the scenarios of AP assisted roaming (e.g., BTM). |
| 4298 | * |
| 4299 | * @QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME_TRIGGERS: Unsigned 32-bit value. |
| 4300 | * Carries a bitmap of the roam triggers specified in |
| 4301 | * enum qca_vendor_roam_triggers. |
| 4302 | * Represents the roam triggers for which the specific scan scheme from |
| 4303 | * enum qca_roam_scan_scheme has to be applied. |
| 4304 | * It's an optional attribute. If this attribute is not configured, but |
| 4305 | * QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME is specified, the scan scheme |
| 4306 | * specified through QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME is applicable for |
| 4307 | * all the roams. |
| 4308 | * If both QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME and |
| 4309 | * QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME_TRIGGERS are not specified, the |
| 4310 | * driver shall proceed with the default behavior. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4311 | */ |
| 4312 | enum qca_vendor_attr_roam_control { |
| 4313 | QCA_ATTR_ROAM_CONTROL_ENABLE = 1, |
| 4314 | QCA_ATTR_ROAM_CONTROL_STATUS = 2, |
| 4315 | QCA_ATTR_ROAM_CONTROL_CLEAR_ALL = 3, |
| 4316 | QCA_ATTR_ROAM_CONTROL_FREQ_LIST_SCHEME= 4, |
| 4317 | QCA_ATTR_ROAM_CONTROL_SCAN_PERIOD = 5, |
| 4318 | QCA_ATTR_ROAM_CONTROL_FULL_SCAN_PERIOD = 6, |
| 4319 | QCA_ATTR_ROAM_CONTROL_TRIGGERS = 7, |
| 4320 | QCA_ATTR_ROAM_CONTROL_SELECTION_CRITERIA = 8, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4321 | QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME = 9, |
| 4322 | QCA_ATTR_ROAM_CONTROL_CONNECTED_RSSI_THRESHOLD = 10, |
| 4323 | QCA_ATTR_ROAM_CONTROL_CANDIDATE_RSSI_THRESHOLD = 11, |
| 4324 | QCA_ATTR_ROAM_CONTROL_USER_REASON = 12, |
| 4325 | QCA_ATTR_ROAM_CONTROL_SCAN_SCHEME_TRIGGERS = 13, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4326 | |
| 4327 | /* keep last */ |
| 4328 | QCA_ATTR_ROAM_CONTROL_AFTER_LAST, |
| 4329 | QCA_ATTR_ROAM_CONTROL_MAX = |
| 4330 | QCA_ATTR_ROAM_CONTROL_AFTER_LAST - 1, |
| 4331 | }; |
| 4332 | |
| 4333 | /* |
| 4334 | * enum qca_wlan_vendor_attr_roaming_config_params: Attributes for data used by |
| 4335 | * QCA_NL80211_VENDOR_SUBCMD_ROAM sub command. |
| 4336 | * |
| 4337 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_SUBCMD: Unsigned 32-bit value. |
| 4338 | * Represents the different roam sub commands referred by |
| 4339 | * enum qca_wlan_vendor_roaming_subcmd. |
| 4340 | * |
| 4341 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_REQ_ID: Unsigned 32-bit value. |
| 4342 | * Represents the Request ID for the specific set of commands. |
| 4343 | * This also helps to map specific set of commands to the respective |
| 4344 | * ID / client. e.g., helps to identify the user entity configuring the |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4345 | * ignored BSSIDs and accordingly clear the respective ones with the |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4346 | * matching ID. |
| 4347 | * |
| 4348 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID_NUM_NETWORKS: Unsigned |
| 4349 | * 32-bit value.Represents the number of whitelist SSIDs configured. |
| 4350 | * |
| 4351 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID_LIST: Nested attribute |
| 4352 | * to carry the list of Whitelist SSIDs. |
| 4353 | * |
| 4354 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID: SSID (binary attribute, |
| 4355 | * 0..32 octets). Represents the white list SSID. Whitelist SSIDs |
| 4356 | * represent the list of SSIDs to which the firmware/driver can consider |
| 4357 | * to roam to. |
| 4358 | * |
| 4359 | * The following PARAM_A_BAND_XX attributes are applied to 5GHz BSSIDs when |
| 4360 | * comparing with a 2.4GHz BSSID. They are not applied when comparing two |
| 4361 | * 5GHz BSSIDs.The following attributes are set through the Roaming SUBCMD - |
| 4362 | * QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_GSCAN_ROAM_PARAMS. |
| 4363 | * |
| 4364 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_BOOST_THRESHOLD: Signed 32-bit |
| 4365 | * value, RSSI threshold above which 5GHz RSSI is favored. |
| 4366 | * |
| 4367 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_PENALTY_THRESHOLD: Signed 32-bit |
| 4368 | * value, RSSI threshold below which 5GHz RSSI is penalized. |
| 4369 | * |
| 4370 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_BOOST_FACTOR: Unsigned 32-bit |
| 4371 | * value, factor by which 5GHz RSSI is boosted. |
| 4372 | * boost=(RSSI_measured-5GHz_boost_threshold)*5GHz_boost_factor |
| 4373 | * |
| 4374 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_PENALTY_FACTOR: Unsigned 32-bit |
| 4375 | * value, factor by which 5GHz RSSI is penalized. |
| 4376 | * penalty=(5GHz_penalty_threshold-RSSI_measured)*5GHz_penalty_factor |
| 4377 | * |
| 4378 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_MAX_BOOST: Unsigned 32-bit |
| 4379 | * value, maximum boost that can be applied to a 5GHz RSSI. |
| 4380 | * |
| 4381 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_LAZY_ROAM_HISTERESYS: Unsigned 32-bit |
| 4382 | * value, boost applied to current BSSID to ensure the currently |
| 4383 | * associated BSSID is favored so as to prevent ping-pong situations. |
| 4384 | * |
| 4385 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_ALERT_ROAM_RSSI_TRIGGER: Signed 32-bit |
| 4386 | * value, RSSI below which "Alert" roam is enabled. |
| 4387 | * "Alert" mode roaming - firmware is "urgently" hunting for another BSSID |
| 4388 | * because the RSSI is low, or because many successive beacons have been |
| 4389 | * lost or other bad link conditions. |
| 4390 | * |
| 4391 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_ENABLE: Unsigned 32-bit |
| 4392 | * value. 1-Enable, 0-Disable. Represents "Lazy" mode, where |
| 4393 | * firmware is hunting for a better BSSID or white listed SSID even though |
| 4394 | * the RSSI of the link is good. The parameters enabling the roaming are |
| 4395 | * configured through the PARAM_A_BAND_XX attrbutes. |
| 4396 | * |
| 4397 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PREFS: Nested attribute, |
| 4398 | * represents the BSSIDs preferred over others while evaluating them |
| 4399 | * for the roaming. |
| 4400 | * |
| 4401 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_NUM_BSSID: Unsigned |
| 4402 | * 32-bit value. Represents the number of preferred BSSIDs set. |
| 4403 | * |
| 4404 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_BSSID: 6-byte MAC |
| 4405 | * address representing the BSSID to be preferred. |
| 4406 | * |
| 4407 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_RSSI_MODIFIER: Signed |
| 4408 | * 32-bit value, representing the modifier to be applied to the RSSI of |
| 4409 | * the BSSID for the purpose of comparing it with other roam candidate. |
| 4410 | * |
| 4411 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS: Nested attribute, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4412 | * represents the BSSIDs to get ignored for roaming. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4413 | * |
| 4414 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_NUM_BSSID: Unsigned |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4415 | * 32-bit value, represents the number of ignored BSSIDs. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4416 | * |
| 4417 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_BSSID: 6-byte MAC |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4418 | * address representing the ignored BSSID. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4419 | * |
| 4420 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_HINT: Flag attribute, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4421 | * indicates this request to ignore the BSSID as a hint to the driver. The |
| 4422 | * driver can select this BSSID in the worst case (when no other BSSIDs are |
| 4423 | * better). |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4424 | * |
| 4425 | * @QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_CONTROL: Nested attribute to |
| 4426 | * set/get/clear the roam control config as |
| 4427 | * defined @enum qca_vendor_attr_roam_control. |
| 4428 | */ |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4429 | enum qca_wlan_vendor_attr_roaming_config_params { |
| 4430 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_INVALID = 0, |
| 4431 | |
| 4432 | QCA_WLAN_VENDOR_ATTR_ROAMING_SUBCMD = 1, |
| 4433 | QCA_WLAN_VENDOR_ATTR_ROAMING_REQ_ID = 2, |
| 4434 | |
| 4435 | /* Attributes for wifi_set_ssid_white_list */ |
| 4436 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID_NUM_NETWORKS = 3, |
| 4437 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID_LIST = 4, |
| 4438 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID = 5, |
| 4439 | |
| 4440 | /* Attributes for set_roam_params */ |
| 4441 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_BOOST_THRESHOLD = 6, |
| 4442 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_PENALTY_THRESHOLD = 7, |
| 4443 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_BOOST_FACTOR = 8, |
| 4444 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_PENALTY_FACTOR = 9, |
| 4445 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_A_BAND_MAX_BOOST = 10, |
| 4446 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_LAZY_ROAM_HISTERESYS = 11, |
| 4447 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_ALERT_ROAM_RSSI_TRIGGER = 12, |
| 4448 | |
| 4449 | /* Attribute for set_lazy_roam */ |
| 4450 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_ENABLE = 13, |
| 4451 | |
| 4452 | /* Attribute for set_lazy_roam with preferences */ |
| 4453 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PREFS = 14, |
| 4454 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_NUM_BSSID = 15, |
| 4455 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_BSSID = 16, |
| 4456 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_RSSI_MODIFIER = 17, |
| 4457 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4458 | /* Attribute for setting ignored BSSID parameters */ |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4459 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS = 18, |
| 4460 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_NUM_BSSID = 19, |
| 4461 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_BSSID = 20, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4462 | /* Flag attribute indicates this entry as a hint */ |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 4463 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_HINT = 21, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4464 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4465 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_CONTROL = 22, |
| 4466 | |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4467 | /* keep last */ |
| 4468 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_AFTER_LAST, |
| 4469 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_MAX = |
| 4470 | QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_AFTER_LAST - 1, |
| 4471 | }; |
| 4472 | |
| 4473 | /* |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4474 | * enum qca_wlan_vendor_roaming_subcmd: Referred by |
| 4475 | * QCA_WLAN_VENDOR_ATTR_ROAMING_SUBCMD. |
| 4476 | * |
| 4477 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_SSID_WHITE_LIST: Sub command to |
| 4478 | * configure the white list SSIDs. These are configured through |
| 4479 | * the following attributes. |
| 4480 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID_NUM_NETWORKS, |
| 4481 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID_LIST, |
| 4482 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_WHITE_LIST_SSID |
| 4483 | * |
| 4484 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_GSCAN_ROAM_PARAMS: Sub command to |
| 4485 | * configure the Roam params. These parameters are evaluated on the GScan |
| 4486 | * results. Refers the attributes PARAM_A_BAND_XX above to configure the |
| 4487 | * params. |
| 4488 | * |
| 4489 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_LAZY_ROAM: Sets the Lazy roam. Uses |
| 4490 | * the attribute QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_LAZY_ROAM_ENABLE |
| 4491 | * to enable/disable Lazy roam. |
| 4492 | * |
| 4493 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_BSSID_PREFS: Sets the BSSID |
| 4494 | * preference. Contains the attribute |
| 4495 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PREFS to set the BSSID |
| 4496 | * preference. |
| 4497 | * |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 4498 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_BLACKLIST_BSSID: Sets the list of BSSIDs |
| 4499 | * to ignore in roaming decision. Uses |
| 4500 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS to set the list. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4501 | * |
| 4502 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_SET: Command to set the |
| 4503 | * roam control config to the driver with the attribute |
| 4504 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_CONTROL. |
| 4505 | * |
| 4506 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_GET: Command to obtain the |
| 4507 | * roam control config from driver with the attribute |
| 4508 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_CONTROL. |
| 4509 | * For the get, the attribute for the configuration to be queried shall |
| 4510 | * carry any of its acceptable value to the driver. In return, the driver |
| 4511 | * shall send the configured values within the same attribute to the user |
| 4512 | * space. |
| 4513 | * |
| 4514 | * @QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_CLEAR: Command to clear the |
| 4515 | * roam control config in the driver with the attribute |
| 4516 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_CONTROL. |
| 4517 | * The driver shall continue with its default roaming behavior when data |
| 4518 | * corresponding to an attribute is cleared. |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4519 | */ |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4520 | enum qca_wlan_vendor_roaming_subcmd { |
| 4521 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_INVALID = 0, |
| 4522 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_SSID_WHITE_LIST = 1, |
| 4523 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_GSCAN_ROAM_PARAMS = 2, |
| 4524 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_LAZY_ROAM = 3, |
| 4525 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_BSSID_PREFS = 4, |
| 4526 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_BSSID_PARAMS = 5, |
| 4527 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_BLACKLIST_BSSID = 6, |
| 4528 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_SET = 7, |
| 4529 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_GET = 8, |
| 4530 | QCA_WLAN_VENDOR_ROAMING_SUBCMD_CONTROL_CLEAR = 9, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4531 | }; |
| 4532 | |
| 4533 | enum qca_wlan_vendor_attr_gscan_config_params { |
| 4534 | QCA_WLAN_VENDOR_ATTR_GSCAN_SUBCMD_CONFIG_PARAM_INVALID = 0, |
| 4535 | |
| 4536 | /* Unsigned 32-bit value */ |
| 4537 | QCA_WLAN_VENDOR_ATTR_GSCAN_SUBCMD_CONFIG_PARAM_REQUEST_ID = 1, |
| 4538 | |
| 4539 | /* Attributes for data used by |
| 4540 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_VALID_CHANNELS sub command. |
| 4541 | */ |
| 4542 | /* Unsigned 32-bit value */ |
| 4543 | QCA_WLAN_VENDOR_ATTR_GSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_WIFI_BAND |
| 4544 | = 2, |
| 4545 | /* Unsigned 32-bit value */ |
| 4546 | QCA_WLAN_VENDOR_ATTR_GSCAN_GET_VALID_CHANNELS_CONFIG_PARAM_MAX_CHANNELS |
| 4547 | = 3, |
| 4548 | |
| 4549 | /* Attributes for input params used by |
| 4550 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_START sub command. |
| 4551 | */ |
| 4552 | |
| 4553 | /* Unsigned 32-bit value; channel frequency */ |
| 4554 | QCA_WLAN_VENDOR_ATTR_GSCAN_CHANNEL_SPEC_CHANNEL = 4, |
| 4555 | /* Unsigned 32-bit value; dwell time in ms. */ |
| 4556 | QCA_WLAN_VENDOR_ATTR_GSCAN_CHANNEL_SPEC_DWELL_TIME = 5, |
| 4557 | /* Unsigned 8-bit value; 0: active; 1: passive; N/A for DFS */ |
| 4558 | QCA_WLAN_VENDOR_ATTR_GSCAN_CHANNEL_SPEC_PASSIVE = 6, |
| 4559 | /* Unsigned 8-bit value; channel class */ |
| 4560 | QCA_WLAN_VENDOR_ATTR_GSCAN_CHANNEL_SPEC_CLASS = 7, |
| 4561 | |
| 4562 | /* Unsigned 8-bit value; bucket index, 0 based */ |
| 4563 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_INDEX = 8, |
| 4564 | /* Unsigned 8-bit value; band. */ |
| 4565 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_BAND = 9, |
| 4566 | /* Unsigned 32-bit value; desired period, in ms. */ |
| 4567 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_PERIOD = 10, |
| 4568 | /* Unsigned 8-bit value; report events semantics. */ |
| 4569 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_REPORT_EVENTS = 11, |
| 4570 | /* Unsigned 32-bit value. Followed by a nested array of |
| 4571 | * GSCAN_CHANNEL_SPEC_* attributes. |
| 4572 | */ |
| 4573 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS = 12, |
| 4574 | |
| 4575 | /* Array of QCA_WLAN_VENDOR_ATTR_GSCAN_CHANNEL_SPEC_* attributes. |
| 4576 | * Array size: QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS |
| 4577 | */ |
| 4578 | QCA_WLAN_VENDOR_ATTR_GSCAN_CHANNEL_SPEC = 13, |
| 4579 | |
| 4580 | /* Unsigned 32-bit value; base timer period in ms. */ |
| 4581 | QCA_WLAN_VENDOR_ATTR_GSCAN_SCAN_CMD_PARAMS_BASE_PERIOD = 14, |
| 4582 | /* Unsigned 32-bit value; number of APs to store in each scan in the |
| 4583 | * BSSID/RSSI history buffer (keep the highest RSSI APs). |
| 4584 | */ |
| 4585 | QCA_WLAN_VENDOR_ATTR_GSCAN_SCAN_CMD_PARAMS_MAX_AP_PER_SCAN = 15, |
| 4586 | /* Unsigned 8-bit value; in %, when scan buffer is this much full, wake |
| 4587 | * up AP. |
| 4588 | */ |
| 4589 | QCA_WLAN_VENDOR_ATTR_GSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD_PERCENT |
| 4590 | = 16, |
| 4591 | |
| 4592 | /* Unsigned 8-bit value; number of scan bucket specs; followed by a |
| 4593 | * nested array of_GSCAN_BUCKET_SPEC_* attributes and values. The size |
| 4594 | * of the array is determined by NUM_BUCKETS. |
| 4595 | */ |
| 4596 | QCA_WLAN_VENDOR_ATTR_GSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS = 17, |
| 4597 | |
| 4598 | /* Array of QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_* attributes. |
| 4599 | * Array size: QCA_WLAN_VENDOR_ATTR_GSCAN_SCAN_CMD_PARAMS_NUM_BUCKETS |
| 4600 | */ |
| 4601 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC = 18, |
| 4602 | |
| 4603 | /* Unsigned 8-bit value */ |
| 4604 | QCA_WLAN_VENDOR_ATTR_GSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_FLUSH |
| 4605 | = 19, |
| 4606 | /* Unsigned 32-bit value; maximum number of results to be returned. */ |
| 4607 | QCA_WLAN_VENDOR_ATTR_GSCAN_GET_CACHED_SCAN_RESULTS_CONFIG_PARAM_MAX |
| 4608 | = 20, |
| 4609 | |
| 4610 | /* An array of 6 x unsigned 8-bit value */ |
| 4611 | QCA_WLAN_VENDOR_ATTR_GSCAN_AP_THRESHOLD_PARAM_BSSID = 21, |
| 4612 | /* Signed 32-bit value */ |
| 4613 | QCA_WLAN_VENDOR_ATTR_GSCAN_AP_THRESHOLD_PARAM_RSSI_LOW = 22, |
| 4614 | /* Signed 32-bit value */ |
| 4615 | QCA_WLAN_VENDOR_ATTR_GSCAN_AP_THRESHOLD_PARAM_RSSI_HIGH = 23, |
| 4616 | /* Unsigned 32-bit value */ |
| 4617 | QCA_WLAN_VENDOR_ATTR_GSCAN_AP_THRESHOLD_PARAM_CHANNEL = 24, |
| 4618 | |
| 4619 | /* Number of hotlist APs as unsigned 32-bit value, followed by a nested |
| 4620 | * array of AP_THRESHOLD_PARAM attributes and values. The size of the |
| 4621 | * array is determined by NUM_AP. |
| 4622 | */ |
| 4623 | QCA_WLAN_VENDOR_ATTR_GSCAN_BSSID_HOTLIST_PARAMS_NUM_AP = 25, |
| 4624 | |
| 4625 | /* Array of QCA_WLAN_VENDOR_ATTR_GSCAN_AP_THRESHOLD_PARAM_* attributes. |
| 4626 | * Array size: QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_NUM_CHANNEL_SPECS |
| 4627 | */ |
| 4628 | QCA_WLAN_VENDOR_ATTR_GSCAN_AP_THRESHOLD_PARAM = 26, |
| 4629 | |
| 4630 | /* Unsigned 32-bit value; number of samples for averaging RSSI. */ |
| 4631 | QCA_WLAN_VENDOR_ATTR_GSCAN_SIGNIFICANT_CHANGE_PARAMS_RSSI_SAMPLE_SIZE |
| 4632 | = 27, |
| 4633 | /* Unsigned 32-bit value; number of samples to confirm AP loss. */ |
| 4634 | QCA_WLAN_VENDOR_ATTR_GSCAN_SIGNIFICANT_CHANGE_PARAMS_LOST_AP_SAMPLE_SIZE |
| 4635 | = 28, |
| 4636 | /* Unsigned 32-bit value; number of APs breaching threshold. */ |
| 4637 | QCA_WLAN_VENDOR_ATTR_GSCAN_SIGNIFICANT_CHANGE_PARAMS_MIN_BREACHING = 29, |
| 4638 | /* Unsigned 32-bit value; number of APs. Followed by an array of |
| 4639 | * AP_THRESHOLD_PARAM attributes. Size of the array is NUM_AP. |
| 4640 | */ |
| 4641 | QCA_WLAN_VENDOR_ATTR_GSCAN_SIGNIFICANT_CHANGE_PARAMS_NUM_AP = 30, |
| 4642 | /* Unsigned 32-bit value; number of samples to confirm AP loss. */ |
| 4643 | QCA_WLAN_VENDOR_ATTR_GSCAN_BSSID_HOTLIST_PARAMS_LOST_AP_SAMPLE_SIZE |
| 4644 | = 31, |
| 4645 | /* Unsigned 32-bit value. If max_period is non zero or different than |
| 4646 | * period, then this bucket is an exponential backoff bucket. |
| 4647 | */ |
| 4648 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_MAX_PERIOD = 32, |
| 4649 | /* Unsigned 32-bit value. */ |
| 4650 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_BASE = 33, |
| 4651 | /* Unsigned 32-bit value. For exponential back off bucket, number of |
| 4652 | * scans to perform for a given period. |
| 4653 | */ |
| 4654 | QCA_WLAN_VENDOR_ATTR_GSCAN_BUCKET_SPEC_STEP_COUNT = 34, |
| 4655 | /* Unsigned 8-bit value; in number of scans, wake up AP after these |
| 4656 | * many scans. |
| 4657 | */ |
| 4658 | QCA_WLAN_VENDOR_ATTR_GSCAN_SCAN_CMD_PARAMS_REPORT_THRESHOLD_NUM_SCANS |
| 4659 | = 35, |
| 4660 | |
| 4661 | /* Attributes for data used by |
| 4662 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_SET_SSID_HOTLIST sub command. |
| 4663 | */ |
| 4664 | /* Unsigned 3-2bit value; number of samples to confirm SSID loss. */ |
| 4665 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_HOTLIST_PARAMS_LOST_SSID_SAMPLE_SIZE |
| 4666 | = 36, |
| 4667 | /* Number of hotlist SSIDs as unsigned 32-bit value, followed by a |
| 4668 | * nested array of SSID_THRESHOLD_PARAM_* attributes and values. The |
| 4669 | * size of the array is determined by NUM_SSID. |
| 4670 | */ |
| 4671 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_HOTLIST_PARAMS_NUM_SSID = 37, |
| 4672 | /* Array of QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_THRESHOLD_PARAM_* |
| 4673 | * attributes. |
| 4674 | * Array size: QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_HOTLIST_PARAMS_NUM_SSID |
| 4675 | */ |
| 4676 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_THRESHOLD_PARAM = 38, |
| 4677 | |
| 4678 | /* An array of 33 x unsigned 8-bit value; NULL terminated SSID */ |
| 4679 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_THRESHOLD_PARAM_SSID = 39, |
| 4680 | /* Unsigned 8-bit value */ |
| 4681 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_THRESHOLD_PARAM_BAND = 40, |
| 4682 | /* Signed 32-bit value */ |
| 4683 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_THRESHOLD_PARAM_RSSI_LOW = 41, |
| 4684 | /* Signed 32-bit value */ |
| 4685 | QCA_WLAN_VENDOR_ATTR_GSCAN_SSID_THRESHOLD_PARAM_RSSI_HIGH = 42, |
| 4686 | /* Unsigned 32-bit value; a bitmask with additional gscan config flag. |
| 4687 | */ |
| 4688 | QCA_WLAN_VENDOR_ATTR_GSCAN_CONFIGURATION_FLAGS = 43, |
| 4689 | |
| 4690 | /* keep last */ |
| 4691 | QCA_WLAN_VENDOR_ATTR_GSCAN_SUBCMD_CONFIG_PARAM_AFTER_LAST, |
| 4692 | QCA_WLAN_VENDOR_ATTR_GSCAN_SUBCMD_CONFIG_PARAM_MAX = |
| 4693 | QCA_WLAN_VENDOR_ATTR_GSCAN_SUBCMD_CONFIG_PARAM_AFTER_LAST - 1, |
| 4694 | }; |
| 4695 | |
| 4696 | enum qca_wlan_vendor_attr_gscan_results { |
| 4697 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_INVALID = 0, |
| 4698 | |
| 4699 | /* Unsigned 32-bit value; must match the request Id supplied by |
| 4700 | * Wi-Fi HAL in the corresponding subcmd NL msg. |
| 4701 | */ |
| 4702 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_REQUEST_ID = 1, |
| 4703 | |
| 4704 | /* Unsigned 32-bit value; used to indicate the status response from |
| 4705 | * firmware/driver for the vendor sub-command. |
| 4706 | */ |
| 4707 | QCA_WLAN_VENDOR_ATTR_GSCAN_STATUS = 2, |
| 4708 | |
| 4709 | /* GSCAN Valid Channels attributes */ |
| 4710 | /* Unsigned 32bit value; followed by a nested array of CHANNELS. */ |
| 4711 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_CHANNELS = 3, |
| 4712 | /* An array of NUM_CHANNELS x unsigned 32-bit value integers |
| 4713 | * representing channel numbers. |
| 4714 | */ |
| 4715 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CHANNELS = 4, |
| 4716 | |
| 4717 | /* GSCAN Capabilities attributes */ |
| 4718 | /* Unsigned 32-bit value */ |
| 4719 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_SCAN_CACHE_SIZE = 5, |
| 4720 | /* Unsigned 32-bit value */ |
| 4721 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_SCAN_BUCKETS = 6, |
| 4722 | /* Unsigned 32-bit value */ |
| 4723 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_AP_CACHE_PER_SCAN |
| 4724 | = 7, |
| 4725 | /* Unsigned 32-bit value */ |
| 4726 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_RSSI_SAMPLE_SIZE |
| 4727 | = 8, |
| 4728 | /* Signed 32-bit value */ |
| 4729 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_SCAN_REPORTING_THRESHOLD |
| 4730 | = 9, |
| 4731 | /* Unsigned 32-bit value */ |
| 4732 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_HOTLIST_BSSIDS = 10, |
| 4733 | /* Unsigned 32-bit value */ |
| 4734 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_SIGNIFICANT_WIFI_CHANGE_APS |
| 4735 | = 11, |
| 4736 | /* Unsigned 32-bit value */ |
| 4737 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_BSSID_HISTORY_ENTRIES |
| 4738 | = 12, |
| 4739 | |
| 4740 | /* GSCAN Attributes used with |
| 4741 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_SCAN_RESULTS_AVAILABLE sub-command. |
| 4742 | */ |
| 4743 | |
| 4744 | /* Unsigned 32-bit value */ |
| 4745 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE = 13, |
| 4746 | |
| 4747 | /* GSCAN attributes used with |
| 4748 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_FULL_SCAN_RESULT sub-command. |
| 4749 | */ |
| 4750 | |
| 4751 | /* An array of NUM_RESULTS_AVAILABLE x |
| 4752 | * QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_* |
| 4753 | */ |
| 4754 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_LIST = 14, |
| 4755 | |
| 4756 | /* Unsigned 64-bit value; age of sample at the time of retrieval */ |
| 4757 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_TIME_STAMP = 15, |
| 4758 | /* 33 x unsigned 8-bit value; NULL terminated SSID */ |
| 4759 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_SSID = 16, |
| 4760 | /* An array of 6 x unsigned 8-bit value */ |
| 4761 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_BSSID = 17, |
| 4762 | /* Unsigned 32-bit value; channel frequency in MHz */ |
| 4763 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_CHANNEL = 18, |
| 4764 | /* Signed 32-bit value */ |
| 4765 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_RSSI = 19, |
| 4766 | /* Unsigned 32-bit value */ |
| 4767 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_RTT = 20, |
| 4768 | /* Unsigned 32-bit value */ |
| 4769 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_RTT_SD = 21, |
| 4770 | /* Unsigned 16-bit value */ |
| 4771 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_BEACON_PERIOD = 22, |
| 4772 | /* Unsigned 16-bit value */ |
| 4773 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_CAPABILITY = 23, |
| 4774 | /* Unsigned 32-bit value; size of the IE DATA blob */ |
| 4775 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_IE_LENGTH = 24, |
| 4776 | /* An array of IE_LENGTH x unsigned 8-bit value; blob of all the |
| 4777 | * information elements found in the beacon; this data should be a |
| 4778 | * packed list of wifi_information_element objects, one after the |
| 4779 | * other. |
| 4780 | */ |
| 4781 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_IE_DATA = 25, |
| 4782 | |
| 4783 | /* Unsigned 8-bit value; set by driver to indicate more scan results are |
| 4784 | * available. |
| 4785 | */ |
| 4786 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_RESULT_MORE_DATA = 26, |
| 4787 | |
| 4788 | /* GSCAN attributes for |
| 4789 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_SCAN_EVENT sub-command. |
| 4790 | */ |
| 4791 | /* Unsigned 8-bit value */ |
| 4792 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_EVENT_TYPE = 27, |
| 4793 | /* Unsigned 32-bit value */ |
| 4794 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SCAN_EVENT_STATUS = 28, |
| 4795 | |
| 4796 | /* GSCAN attributes for |
| 4797 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_HOTLIST_AP_FOUND sub-command. |
| 4798 | */ |
| 4799 | /* Use attr QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE |
| 4800 | * to indicate number of results. |
| 4801 | * Also, use QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_LIST to indicate the |
| 4802 | * list of results. |
| 4803 | */ |
| 4804 | |
| 4805 | /* GSCAN attributes for |
| 4806 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_SIGNIFICANT_CHANGE sub-command. |
| 4807 | */ |
| 4808 | /* An array of 6 x unsigned 8-bit value */ |
| 4809 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_BSSID = 29, |
| 4810 | /* Unsigned 32-bit value */ |
| 4811 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_CHANNEL |
| 4812 | = 30, |
| 4813 | /* Unsigned 32-bit value. */ |
| 4814 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_NUM_RSSI |
| 4815 | = 31, |
| 4816 | /* A nested array of signed 32-bit RSSI values. Size of the array is |
| 4817 | * determined by (NUM_RSSI of SIGNIFICANT_CHANGE_RESULT_NUM_RSSI. |
| 4818 | */ |
| 4819 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_SIGNIFICANT_CHANGE_RESULT_RSSI_LIST |
| 4820 | = 32, |
| 4821 | |
| 4822 | /* GSCAN attributes used with |
| 4823 | * QCA_NL80211_VENDOR_SUBCMD_GSCAN_GET_CACHED_RESULTS sub-command. |
| 4824 | */ |
| 4825 | /* Use attr QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE |
| 4826 | * to indicate number of gscan cached results returned. |
| 4827 | * Also, use QCA_WLAN_VENDOR_ATTR_GSCAN_CACHED_RESULTS_LIST to indicate |
| 4828 | * the list of gscan cached results. |
| 4829 | */ |
| 4830 | |
| 4831 | /* An array of NUM_RESULTS_AVAILABLE x |
| 4832 | * QCA_NL80211_VENDOR_ATTR_GSCAN_CACHED_RESULTS_* |
| 4833 | */ |
| 4834 | QCA_WLAN_VENDOR_ATTR_GSCAN_CACHED_RESULTS_LIST = 33, |
| 4835 | /* Unsigned 32-bit value; a unique identifier for the scan unit. */ |
| 4836 | QCA_WLAN_VENDOR_ATTR_GSCAN_CACHED_RESULTS_SCAN_ID = 34, |
| 4837 | /* Unsigned 32-bit value; a bitmask w/additional information about scan. |
| 4838 | */ |
| 4839 | QCA_WLAN_VENDOR_ATTR_GSCAN_CACHED_RESULTS_FLAGS = 35, |
| 4840 | /* Use attr QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE |
| 4841 | * to indicate number of wifi scan results/bssids retrieved by the scan. |
| 4842 | * Also, use QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_LIST to indicate the |
| 4843 | * list of wifi scan results returned for each cached result block. |
| 4844 | */ |
| 4845 | |
| 4846 | /* GSCAN attributes for |
| 4847 | * QCA_NL80211_VENDOR_SUBCMD_PNO_NETWORK_FOUND sub-command. |
| 4848 | */ |
| 4849 | /* Use QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE for |
| 4850 | * number of results. |
| 4851 | * Use QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_LIST to indicate the nested |
| 4852 | * list of wifi scan results returned for each |
| 4853 | * wifi_passpoint_match_result block. |
| 4854 | * Array size: QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_NUM_RESULTS_AVAILABLE. |
| 4855 | */ |
| 4856 | |
| 4857 | /* GSCAN attributes for |
| 4858 | * QCA_NL80211_VENDOR_SUBCMD_PNO_PASSPOINT_NETWORK_FOUND sub-command. |
| 4859 | */ |
| 4860 | /* Unsigned 32-bit value */ |
| 4861 | QCA_WLAN_VENDOR_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_NETWORK_FOUND_NUM_MATCHES |
| 4862 | = 36, |
| 4863 | /* A nested array of |
| 4864 | * QCA_WLAN_VENDOR_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_MATCH_* |
| 4865 | * attributes. Array size = |
| 4866 | * *_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_NETWORK_FOUND_NUM_MATCHES. |
| 4867 | */ |
| 4868 | QCA_WLAN_VENDOR_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_MATCH_RESULT_LIST = 37, |
| 4869 | |
| 4870 | /* Unsigned 32-bit value; network block id for the matched network */ |
| 4871 | QCA_WLAN_VENDOR_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_MATCH_ID = 38, |
| 4872 | /* Use QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_LIST to indicate the nested |
| 4873 | * list of wifi scan results returned for each |
| 4874 | * wifi_passpoint_match_result block. |
| 4875 | */ |
| 4876 | /* Unsigned 32-bit value */ |
| 4877 | QCA_WLAN_VENDOR_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_MATCH_ANQP_LEN = 39, |
| 4878 | /* An array size of PASSPOINT_MATCH_ANQP_LEN of unsigned 8-bit values; |
| 4879 | * ANQP data in the information_element format. |
| 4880 | */ |
| 4881 | QCA_WLAN_VENDOR_ATTR_GSCAN_PNO_RESULTS_PASSPOINT_MATCH_ANQP = 40, |
| 4882 | |
| 4883 | /* Unsigned 32-bit value; a GSCAN Capabilities attribute. */ |
| 4884 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_HOTLIST_SSIDS = 41, |
| 4885 | /* Unsigned 32-bit value; a GSCAN Capabilities attribute. */ |
| 4886 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_NUM_EPNO_NETS = 42, |
| 4887 | /* Unsigned 32-bit value; a GSCAN Capabilities attribute. */ |
| 4888 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_NUM_EPNO_NETS_BY_SSID |
| 4889 | = 43, |
| 4890 | /* Unsigned 32-bit value; a GSCAN Capabilities attribute. */ |
| 4891 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_CAPABILITIES_MAX_NUM_WHITELISTED_SSID |
| 4892 | = 44, |
| 4893 | |
| 4894 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_BUCKETS_SCANNED = 45, |
| 4895 | |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 4896 | /* Unsigned 32-bit value; a GSCAN Capabilities attribute. |
| 4897 | * This is used to limit the maximum number of BSSIDs while sending |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 4898 | * the vendor command QCA_NL80211_VENDOR_SUBCMD_ROAM with subcmd |
| 4899 | * QCA_WLAN_VENDOR_ROAMING_SUBCMD_SET_BLACKLIST_BSSID and attribute |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 4900 | * QCA_WLAN_VENDOR_ATTR_ROAMING_PARAM_SET_BSSID_PARAMS_NUM_BSSID. |
| 4901 | */ |
| 4902 | QCA_WLAN_VENDOR_ATTR_GSCAN_MAX_NUM_BLACKLISTED_BSSID = 46, |
| 4903 | |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4904 | /* keep last */ |
| 4905 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_AFTER_LAST, |
| 4906 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_MAX = |
| 4907 | QCA_WLAN_VENDOR_ATTR_GSCAN_RESULTS_AFTER_LAST - 1, |
| 4908 | }; |
| 4909 | |
| 4910 | enum qca_wlan_vendor_attr_pno_config_params { |
| 4911 | QCA_WLAN_VENDOR_ATTR_PNO_INVALID = 0, |
| 4912 | /* Attributes for data used by |
| 4913 | * QCA_NL80211_VENDOR_SUBCMD_PNO_SET_PASSPOINT_LIST sub command. |
| 4914 | */ |
| 4915 | /* Unsigned 32-bit value */ |
| 4916 | QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_LIST_PARAM_NUM = 1, |
| 4917 | /* Array of nested QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_NETWORK_PARAM_* |
| 4918 | * attributes. Array size = |
| 4919 | * QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_LIST_PARAM_NUM. |
| 4920 | */ |
| 4921 | QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_LIST_PARAM_NETWORK_ARRAY = 2, |
| 4922 | |
| 4923 | /* Unsigned 32-bit value */ |
| 4924 | QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_NETWORK_PARAM_ID = 3, |
| 4925 | /* An array of 256 x unsigned 8-bit value; NULL terminated UTF-8 encoded |
| 4926 | * realm, 0 if unspecified. |
| 4927 | */ |
| 4928 | QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_NETWORK_PARAM_REALM = 4, |
| 4929 | /* An array of 16 x unsigned 32-bit value; roaming consortium ids to |
| 4930 | * match, 0 if unspecified. |
| 4931 | */ |
| 4932 | QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_NETWORK_PARAM_ROAM_CNSRTM_ID = 5, |
| 4933 | /* An array of 6 x unsigned 8-bit value; MCC/MNC combination, 0s if |
| 4934 | * unspecified. |
| 4935 | */ |
| 4936 | QCA_WLAN_VENDOR_ATTR_PNO_PASSPOINT_NETWORK_PARAM_ROAM_PLMN = 6, |
| 4937 | |
| 4938 | /* Attributes for data used by |
| 4939 | * QCA_NL80211_VENDOR_SUBCMD_PNO_SET_LIST sub command. |
| 4940 | */ |
| 4941 | /* Unsigned 32-bit value */ |
| 4942 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_NUM_NETWORKS = 7, |
| 4943 | /* Array of nested |
| 4944 | * QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_NETWORK_* |
| 4945 | * attributes. Array size = |
| 4946 | * QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_NUM_NETWORKS. |
| 4947 | */ |
| 4948 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_NETWORKS_LIST = 8, |
| 4949 | /* An array of 33 x unsigned 8-bit value; NULL terminated SSID */ |
| 4950 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_NETWORK_SSID = 9, |
| 4951 | /* Signed 8-bit value; threshold for considering this SSID as found, |
| 4952 | * required granularity for this threshold is 4 dBm to 8 dBm. |
| 4953 | */ |
| 4954 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_NETWORK_RSSI_THRESHOLD |
| 4955 | = 10, |
| 4956 | /* Unsigned 8-bit value; WIFI_PNO_FLAG_XXX */ |
| 4957 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_NETWORK_FLAGS = 11, |
| 4958 | /* Unsigned 8-bit value; auth bit field for matching WPA IE */ |
| 4959 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_NETWORK_AUTH_BIT = 12, |
| 4960 | /* Unsigned 8-bit to indicate ePNO type; |
| 4961 | * It takes values from qca_wlan_epno_type |
| 4962 | */ |
| 4963 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_TYPE = 13, |
| 4964 | |
| 4965 | /* Nested attribute to send the channel list */ |
| 4966 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_CHANNEL_LIST = 14, |
| 4967 | |
| 4968 | /* Unsigned 32-bit value; indicates the interval between PNO scan |
| 4969 | * cycles in msec. |
| 4970 | */ |
| 4971 | QCA_WLAN_VENDOR_ATTR_PNO_SET_LIST_PARAM_EPNO_SCAN_INTERVAL = 15, |
| 4972 | QCA_WLAN_VENDOR_ATTR_EPNO_MIN5GHZ_RSSI = 16, |
| 4973 | QCA_WLAN_VENDOR_ATTR_EPNO_MIN24GHZ_RSSI = 17, |
| 4974 | QCA_WLAN_VENDOR_ATTR_EPNO_INITIAL_SCORE_MAX = 18, |
| 4975 | QCA_WLAN_VENDOR_ATTR_EPNO_CURRENT_CONNECTION_BONUS = 19, |
| 4976 | QCA_WLAN_VENDOR_ATTR_EPNO_SAME_NETWORK_BONUS = 20, |
| 4977 | QCA_WLAN_VENDOR_ATTR_EPNO_SECURE_BONUS = 21, |
| 4978 | QCA_WLAN_VENDOR_ATTR_EPNO_BAND5GHZ_BONUS = 22, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 4979 | /* Unsigned 32-bit value, representing the PNO Request ID */ |
| 4980 | QCA_WLAN_VENDOR_ATTR_PNO_CONFIG_REQUEST_ID = 23, |
Dmitry Shmidt | 2933359 | 2017-01-09 12:27:11 -0800 | [diff] [blame] | 4981 | |
| 4982 | /* keep last */ |
| 4983 | QCA_WLAN_VENDOR_ATTR_PNO_AFTER_LAST, |
| 4984 | QCA_WLAN_VENDOR_ATTR_PNO_MAX = |
| 4985 | QCA_WLAN_VENDOR_ATTR_PNO_AFTER_LAST - 1, |
| 4986 | }; |
| 4987 | |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 4988 | /** |
| 4989 | * qca_wlan_vendor_acs_select_reason: This represents the different reasons why |
| 4990 | * the ACS has to be triggered. These values are used by |
| 4991 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_REASON and |
| 4992 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_REASON |
| 4993 | */ |
| 4994 | enum qca_wlan_vendor_acs_select_reason { |
| 4995 | /* Represents the reason that the ACS triggered during the AP start */ |
| 4996 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_INIT, |
| 4997 | /* Represents the reason that DFS found with the current channel */ |
| 4998 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_DFS, |
| 4999 | /* Represents the reason that LTE co-exist in the current band. */ |
| 5000 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_LTE_COEX, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 5001 | /* Represents the reason that generic, uncategorized interference has |
| 5002 | * been found in the current channel. |
| 5003 | */ |
| 5004 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_GENERIC_INTERFERENCE, |
| 5005 | /* Represents the reason that excessive 802.11 interference has been |
| 5006 | * found in the current channel. |
| 5007 | */ |
| 5008 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_80211_INTERFERENCE, |
| 5009 | /* Represents the reason that generic Continuous Wave (CW) interference |
| 5010 | * has been found in the current channel. |
| 5011 | */ |
| 5012 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_CW_INTERFERENCE, |
| 5013 | /* Represents the reason that Microwave Oven (MWO) interference has been |
| 5014 | * found in the current channel. |
| 5015 | */ |
| 5016 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_MWO_INTERFERENCE, |
| 5017 | /* Represents the reason that generic Frequency-Hopping Spread Spectrum |
| 5018 | * (FHSS) interference has been found in the current channel. This may |
| 5019 | * include 802.11 waveforms. |
| 5020 | */ |
| 5021 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_FHSS_INTERFERENCE, |
| 5022 | /* Represents the reason that non-802.11 generic Frequency-Hopping |
| 5023 | * Spread Spectrum (FHSS) interference has been found in the current |
| 5024 | * channel. |
| 5025 | */ |
| 5026 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_NON_80211_FHSS_INTERFERENCE, |
| 5027 | /* Represents the reason that generic Wideband (WB) interference has |
| 5028 | * been found in the current channel. This may include 802.11 waveforms. |
| 5029 | */ |
| 5030 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_WB_INTERFERENCE, |
| 5031 | /* Represents the reason that non-802.11 generic Wideband (WB) |
| 5032 | * interference has been found in the current channel. |
| 5033 | */ |
| 5034 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_NON_80211_WB_INTERFERENCE, |
| 5035 | /* Represents the reason that Jammer interference has been found in the |
| 5036 | * current channel. |
| 5037 | */ |
| 5038 | QCA_WLAN_VENDOR_ACS_SELECT_REASON_JAMMER_INTERFERENCE, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5039 | }; |
| 5040 | |
| 5041 | /** |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5042 | * qca_wlan_vendor_attr_external_acs_policy: Attribute values for |
| 5043 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_POLICY to the vendor subcmd |
| 5044 | * QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS. This represents the |
| 5045 | * external ACS policies to select the channels w.r.t. the PCL weights. |
| 5046 | * (QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_PCL represents the channels and |
| 5047 | * their PCL weights.) |
| 5048 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_POLICY_PCL_MANDATORY: Mandatory to |
| 5049 | * select a channel with non-zero PCL weight. |
| 5050 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_POLICY_PCL_PREFERRED: Prefer a |
| 5051 | * channel with non-zero PCL weight. |
| 5052 | * |
| 5053 | */ |
| 5054 | enum qca_wlan_vendor_attr_external_acs_policy { |
| 5055 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_POLICY_PCL_PREFERRED, |
| 5056 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_POLICY_PCL_MANDATORY, |
| 5057 | }; |
| 5058 | |
| 5059 | /** |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5060 | * qca_wlan_vendor_channel_prop_flags: This represent the flags for a channel. |
| 5061 | * This is used by QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FLAGS. |
| 5062 | */ |
| 5063 | enum qca_wlan_vendor_channel_prop_flags { |
| 5064 | /* Bits 0, 1, 2, and 3 are reserved */ |
| 5065 | |
| 5066 | /* Turbo channel */ |
| 5067 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_TURBO = 1 << 4, |
| 5068 | /* CCK channel */ |
| 5069 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_CCK = 1 << 5, |
| 5070 | /* OFDM channel */ |
| 5071 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_OFDM = 1 << 6, |
| 5072 | /* 2.4 GHz spectrum channel. */ |
| 5073 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_2GHZ = 1 << 7, |
| 5074 | /* 5 GHz spectrum channel */ |
| 5075 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_5GHZ = 1 << 8, |
| 5076 | /* Only passive scan allowed */ |
| 5077 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_PASSIVE = 1 << 9, |
| 5078 | /* Dynamic CCK-OFDM channel */ |
| 5079 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_DYN = 1 << 10, |
| 5080 | /* GFSK channel (FHSS PHY) */ |
| 5081 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_GFSK = 1 << 11, |
| 5082 | /* Radar found on channel */ |
| 5083 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_RADAR = 1 << 12, |
| 5084 | /* 11a static turbo channel only */ |
| 5085 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_STURBO = 1 << 13, |
| 5086 | /* Half rate channel */ |
| 5087 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HALF = 1 << 14, |
| 5088 | /* Quarter rate channel */ |
| 5089 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_QUARTER = 1 << 15, |
| 5090 | /* HT 20 channel */ |
| 5091 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HT20 = 1 << 16, |
| 5092 | /* HT 40 with extension channel above */ |
| 5093 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HT40PLUS = 1 << 17, |
| 5094 | /* HT 40 with extension channel below */ |
| 5095 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HT40MINUS = 1 << 18, |
| 5096 | /* HT 40 intolerant */ |
| 5097 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HT40INTOL = 1 << 19, |
| 5098 | /* VHT 20 channel */ |
| 5099 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_VHT20 = 1 << 20, |
| 5100 | /* VHT 40 with extension channel above */ |
| 5101 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_VHT40PLUS = 1 << 21, |
| 5102 | /* VHT 40 with extension channel below */ |
| 5103 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_VHT40MINUS = 1 << 22, |
| 5104 | /* VHT 80 channel */ |
| 5105 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_VHT80 = 1 << 23, |
| 5106 | /* HT 40 intolerant mark bit for ACS use */ |
| 5107 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HT40INTOLMARK = 1 << 24, |
| 5108 | /* Channel temporarily blocked due to noise */ |
| 5109 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_BLOCKED = 1 << 25, |
| 5110 | /* VHT 160 channel */ |
| 5111 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_VHT160 = 1 << 26, |
| 5112 | /* VHT 80+80 channel */ |
| 5113 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_VHT80_80 = 1 << 27, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5114 | /* HE 20 channel */ |
| 5115 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE20 = 1 << 28, |
| 5116 | /* HE 40 with extension channel above */ |
| 5117 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40PLUS = 1 << 29, |
| 5118 | /* HE 40 with extension channel below */ |
| 5119 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40MINUS = 1 << 30, |
| 5120 | /* HE 40 intolerant */ |
| 5121 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40INTOL = 1 << 31, |
| 5122 | }; |
| 5123 | |
| 5124 | /** |
| 5125 | * qca_wlan_vendor_channel_prop_flags_2: This represents the flags for a |
| 5126 | * channel, and is a continuation of qca_wlan_vendor_channel_prop_flags. This is |
| 5127 | * used by QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FLAGS_2. |
| 5128 | */ |
| 5129 | enum qca_wlan_vendor_channel_prop_flags_2 { |
| 5130 | /* HE 40 intolerant mark bit for ACS use */ |
| 5131 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE40INTOLMARK = 1 << 0, |
| 5132 | /* HE 80 channel */ |
| 5133 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE80 = 1 << 1, |
| 5134 | /* HE 160 channel */ |
| 5135 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE160 = 1 << 2, |
| 5136 | /* HE 80+80 channel */ |
| 5137 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_HE80_80 = 1 << 3, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5138 | }; |
| 5139 | |
| 5140 | /** |
| 5141 | * qca_wlan_vendor_channel_prop_flags_ext: This represent the extended flags for |
| 5142 | * each channel. This is used by |
| 5143 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FLAG_EXT. |
| 5144 | */ |
| 5145 | enum qca_wlan_vendor_channel_prop_flags_ext { |
| 5146 | /* Radar found on channel */ |
| 5147 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_RADAR_FOUND = 1 << 0, |
| 5148 | /* DFS required on channel */ |
| 5149 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_DFS = 1 << 1, |
| 5150 | /* DFS required on channel for 2nd band of 80+80 */ |
| 5151 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_DFS_CFREQ2 = 1 << 2, |
| 5152 | /* If channel has been checked for DFS */ |
| 5153 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_DFS_CLEAR = 1 << 3, |
| 5154 | /* Excluded in 802.11d */ |
| 5155 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_11D_EXCLUDED = 1 << 4, |
| 5156 | /* Channel Switch Announcement received on this channel */ |
| 5157 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_CSA_RECEIVED = 1 << 5, |
| 5158 | /* Ad-hoc is not allowed */ |
| 5159 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_DISALLOW_ADHOC = 1 << 6, |
| 5160 | /* Station only channel */ |
| 5161 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_DISALLOW_HOSTAP = 1 << 7, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 5162 | /* DFS radar history for client device (STA mode) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5163 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_HISTORY_RADAR = 1 << 8, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 5164 | /* DFS CAC valid for client device (STA mode) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5165 | QCA_WLAN_VENDOR_CHANNEL_PROP_FLAG_EXT_CAC_VALID = 1 << 9, |
| 5166 | }; |
| 5167 | |
| 5168 | /** |
| 5169 | * qca_wlan_vendor_external_acs_event_chan_info_attr: Represents per channel |
| 5170 | * information. These attributes are sent as part of |
| 5171 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_CHAN_INFO. Each set of the following |
| 5172 | * attributes correspond to a single channel. |
| 5173 | */ |
| 5174 | enum qca_wlan_vendor_external_acs_event_chan_info_attr { |
| 5175 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_INVALID = 0, |
| 5176 | |
| 5177 | /* A bitmask (u32) with flags specified in |
| 5178 | * enum qca_wlan_vendor_channel_prop_flags. |
| 5179 | */ |
| 5180 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FLAGS = 1, |
| 5181 | /* A bitmask (u32) with flags specified in |
| 5182 | * enum qca_wlan_vendor_channel_prop_flags_ext. |
| 5183 | */ |
| 5184 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FLAG_EXT = 2, |
| 5185 | /* frequency in MHz (u32) */ |
| 5186 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ = 3, |
| 5187 | /* maximum regulatory transmission power (u32) */ |
| 5188 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_MAX_REG_POWER = 4, |
| 5189 | /* maximum transmission power (u32) */ |
| 5190 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_MAX_POWER = 5, |
| 5191 | /* minimum transmission power (u32) */ |
| 5192 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_MIN_POWER = 6, |
| 5193 | /* regulatory class id (u8) */ |
| 5194 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_REG_CLASS_ID = 7, |
| 5195 | /* maximum antenna gain in (u8) */ |
| 5196 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_ANTENNA_GAIN = 8, |
| 5197 | /* VHT segment 0 (u8) */ |
| 5198 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_VHT_SEG_0 = 9, |
| 5199 | /* VHT segment 1 (u8) */ |
| 5200 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_VHT_SEG_1 = 10, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5201 | /* A bitmask (u32) with flags specified in |
| 5202 | * enum qca_wlan_vendor_channel_prop_flags_2. |
| 5203 | */ |
| 5204 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FLAGS_2 = 11, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5205 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 5206 | /* |
| 5207 | * VHT segment 0 in MHz (u32) and the attribute is mandatory. |
| 5208 | * Note: Event QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS includes |
| 5209 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_0 |
| 5210 | * along with |
| 5211 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_VHT_SEG_0. |
| 5212 | * |
| 5213 | * If both the driver and user-space application supports the 6 GHz |
| 5214 | * band, QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_VHT_SEG_0 |
| 5215 | * is deprecated and |
| 5216 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_0 |
| 5217 | * should be used. |
| 5218 | * |
| 5219 | * To maintain backward compatibility, |
| 5220 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_0 |
| 5221 | * is still used if either of the driver or user space application |
| 5222 | * doesn't support the 6 GHz band. |
| 5223 | */ |
| 5224 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_0 = 12, |
| 5225 | |
| 5226 | /* |
| 5227 | * VHT segment 1 in MHz (u32) and the attribute is mandatory. |
| 5228 | * Note: Event QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS includes |
| 5229 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_1 |
| 5230 | * along with |
| 5231 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_VHT_SEG_1. |
| 5232 | * |
| 5233 | * If both the driver and user-space application supports the 6 GHz |
| 5234 | * band, QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_VHT_SEG_1 |
| 5235 | * is deprecated and |
| 5236 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_1 |
| 5237 | * should be considered. |
| 5238 | * |
| 5239 | * To maintain backward compatibility, |
| 5240 | * QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_1 |
| 5241 | * is still used if either of the driver or user space application |
| 5242 | * doesn't support the 6 GHz band. |
| 5243 | */ |
| 5244 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_FREQ_VHT_SEG_1 = 13, |
| 5245 | |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5246 | /* keep last */ |
| 5247 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_LAST, |
| 5248 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_MAX = |
| 5249 | QCA_WLAN_VENDOR_EXTERNAL_ACS_EVENT_CHAN_INFO_ATTR_LAST - 1, |
| 5250 | }; |
| 5251 | |
| 5252 | /** |
| 5253 | * qca_wlan_vendor_attr_pcl: Represents attributes for |
| 5254 | * preferred channel list (PCL). These attributes are sent as part of |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5255 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_PCL and |
| 5256 | * QCA_NL80211_VENDOR_SUBCMD_GET_PREFERRED_FREQ_LIST. |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5257 | */ |
| 5258 | enum qca_wlan_vendor_attr_pcl { |
| 5259 | QCA_WLAN_VENDOR_ATTR_PCL_INVALID = 0, |
| 5260 | |
| 5261 | /* Channel number (u8) */ |
| 5262 | QCA_WLAN_VENDOR_ATTR_PCL_CHANNEL = 1, |
| 5263 | /* Channel weightage (u8) */ |
| 5264 | QCA_WLAN_VENDOR_ATTR_PCL_WEIGHT = 2, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5265 | /* Channel frequency (u32) in MHz */ |
| 5266 | QCA_WLAN_VENDOR_ATTR_PCL_FREQ = 3, |
| 5267 | /* Channel flags (u32) |
| 5268 | * bit 0 set: channel to be used for GO role, |
| 5269 | * bit 1 set: channel to be used on CLI role, |
| 5270 | * bit 2 set: channel must be considered for operating channel |
| 5271 | * selection & peer chosen operating channel should be |
| 5272 | * one of the channels with this flag set, |
| 5273 | * bit 3 set: channel should be excluded in GO negotiation |
| 5274 | */ |
| 5275 | QCA_WLAN_VENDOR_ATTR_PCL_FLAG = 4, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5276 | }; |
| 5277 | |
| 5278 | /** |
| 5279 | * qca_wlan_vendor_attr_external_acs_event: Attribute to vendor sub-command |
| 5280 | * QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS. This attribute will be sent by |
| 5281 | * host driver. |
| 5282 | */ |
| 5283 | enum qca_wlan_vendor_attr_external_acs_event { |
| 5284 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_INVALID = 0, |
| 5285 | |
| 5286 | /* This reason (u8) refers to enum qca_wlan_vendor_acs_select_reason. |
| 5287 | * This helps ACS module to understand why ACS needs to be started. |
| 5288 | */ |
| 5289 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_REASON = 1, |
| 5290 | /* Flag attribute to indicate if driver supports spectral scanning */ |
| 5291 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_IS_SPECTRAL_SUPPORTED = 2, |
| 5292 | /* Flag attribute to indicate if 11ac is offloaded to firmware */ |
| 5293 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_IS_OFFLOAD_ENABLED = 3, |
| 5294 | /* Flag attribute to indicate if driver provides additional channel |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5295 | * capability as part of scan operation |
| 5296 | */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5297 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_ADD_CHAN_STATS_SUPPORT = 4, |
| 5298 | /* Flag attribute to indicate interface status is UP */ |
| 5299 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_AP_UP = 5, |
| 5300 | /* Operating mode (u8) of interface. Takes one of enum nl80211_iftype |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5301 | * values. |
| 5302 | */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5303 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_SAP_MODE = 6, |
| 5304 | /* Channel width (u8). It takes one of enum nl80211_chan_width values. |
| 5305 | * This is the upper bound of channel width. ACS logic should try to get |
| 5306 | * a channel with the specified width and if not found, look for lower |
| 5307 | * values. |
| 5308 | */ |
| 5309 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_CHAN_WIDTH = 7, |
| 5310 | /* This (u8) will hold values of one of enum nl80211_bands */ |
| 5311 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_BAND = 8, |
| 5312 | /* PHY/HW mode (u8). Takes one of enum qca_wlan_vendor_acs_hw_mode |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5313 | * values |
| 5314 | */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5315 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_PHY_MODE = 9, |
| 5316 | /* Array of (u32) supported frequency list among which ACS should choose |
| 5317 | * best frequency. |
| 5318 | */ |
| 5319 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_FREQ_LIST = 10, |
| 5320 | /* Preferred channel list by the driver which will have array of nested |
| 5321 | * values as per enum qca_wlan_vendor_attr_pcl attribute. |
| 5322 | */ |
| 5323 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_PCL = 11, |
| 5324 | /* Array of nested attribute for each channel. It takes attr as defined |
| 5325 | * in enum qca_wlan_vendor_external_acs_event_chan_info_attr. |
| 5326 | */ |
| 5327 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_CHAN_INFO = 12, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5328 | /* External ACS policy such as PCL mandatory, PCL preferred, etc. |
| 5329 | * It uses values defined in enum |
| 5330 | * qca_wlan_vendor_attr_external_acs_policy. |
| 5331 | */ |
| 5332 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_POLICY = 13, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5333 | /* Reference RF Operating Parameter (RROP) availability information |
| 5334 | * (u16). It uses values defined in enum |
| 5335 | * qca_wlan_vendor_attr_rropavail_info. |
| 5336 | */ |
| 5337 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_RROPAVAIL_INFO = 14, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5338 | |
| 5339 | /* keep last */ |
| 5340 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_LAST, |
| 5341 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_MAX = |
| 5342 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_EVENT_LAST - 1, |
| 5343 | }; |
| 5344 | |
| 5345 | /** |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 5346 | * enum qca_wlan_vendor_attr_external_acs_channels: Attributes to vendor subcmd |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5347 | * QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS. This carries a list of channels |
| 5348 | * in priority order as decided after ACS operation in userspace. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 5349 | * |
| 5350 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_REASON: Required (u8). |
| 5351 | * One of reason code from enum qca_wlan_vendor_acs_select_reason. |
| 5352 | * |
| 5353 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_LIST: Required |
| 5354 | * Array of nested values for each channel with following attributes: |
| 5355 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_PRIMARY, |
| 5356 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_SECONDARY, |
| 5357 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG0, |
| 5358 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG1, |
| 5359 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_WIDTH |
| 5360 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 5361 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_LIST is deprecated and use |
| 5362 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_LIST. |
| 5363 | * To maintain backward compatibility, |
| 5364 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_LIST |
| 5365 | * is still used if either of the driver or user space application doesn't |
| 5366 | * support the 6 GHz band. |
| 5367 | * |
| 5368 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_PRIMARY: Required (u8). |
| 5369 | * Primary channel number |
| 5370 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 5371 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_PRIMARY is deprecated and use |
| 5372 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_PRIMARY. |
| 5373 | * To maintain backward compatibility, |
| 5374 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_PRIMARY |
| 5375 | * is still used if either of the driver or user space application doesn't |
| 5376 | * support the 6 GHz band. |
| 5377 | * |
| 5378 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_SECONDARY: Required (u8). |
| 5379 | * Secondary channel number, required only for 160 and 80+80 MHz bandwidths. |
| 5380 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 5381 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_SECONDARY is deprecated and use |
| 5382 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_SECONDARY. |
| 5383 | * To maintain backward compatibility, |
| 5384 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_SECONDARY |
| 5385 | * is still used if either of the driver or user space application |
| 5386 | * doesn't support the 6 GHz band. |
| 5387 | * |
| 5388 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG0: Required (u8). |
| 5389 | * VHT seg0 channel number |
| 5390 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 5391 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG0 is deprecated and use |
| 5392 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG0. |
| 5393 | * To maintain backward compatibility, |
| 5394 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG0 |
| 5395 | * is still used if either of the driver or user space application |
| 5396 | * doesn't support the 6 GHz band. |
| 5397 | * |
| 5398 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG1: Required (u8). |
| 5399 | * VHT seg1 channel number |
| 5400 | * Note: If both the driver and user-space application supports the 6 GHz band, |
| 5401 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG1 is deprecated and use |
| 5402 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG1. |
| 5403 | * To maintain backward compatibility, |
| 5404 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG1 |
| 5405 | * is still used if either of the driver or user space application |
| 5406 | * doesn't support the 6 GHz band. |
| 5407 | * |
| 5408 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_WIDTH: Required (u8). |
| 5409 | * Takes one of enum nl80211_chan_width values. |
| 5410 | * |
| 5411 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_LIST: Required |
| 5412 | * Array of nested values for each channel with following attributes: |
| 5413 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_PRIMARY in MHz (u32), |
| 5414 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_SECONDARY in MHz (u32), |
| 5415 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG0 in MHz (u32), |
| 5416 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG1 in MHz (u32), |
| 5417 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_WIDTH |
| 5418 | * Note: If user-space application has no support of the 6 GHz band, this |
| 5419 | * attribute is optional. |
| 5420 | * |
| 5421 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_PRIMARY: Required (u32) |
| 5422 | * Primary channel frequency in MHz |
| 5423 | * Note: If user-space application has no support of the 6 GHz band, this |
| 5424 | * attribute is optional. |
| 5425 | * |
| 5426 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_SECONDARY: Required (u32) |
| 5427 | * Secondary channel frequency in MHz used for HT 40 MHz channels. |
| 5428 | * Note: If user-space application has no support of the 6 GHz band, this |
| 5429 | * attribute is optional. |
| 5430 | * |
| 5431 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG0: Required (u32) |
| 5432 | * VHT seg0 channel frequency in MHz |
| 5433 | * Note: If user-space application has no support of the 6GHz band, this |
| 5434 | * attribute is optional. |
| 5435 | * |
| 5436 | * @QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG1: Required (u32) |
| 5437 | * VHT seg1 channel frequency in MHz |
| 5438 | * Note: If user-space application has no support of the 6 GHz band, this |
| 5439 | * attribute is optional. |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5440 | */ |
| 5441 | enum qca_wlan_vendor_attr_external_acs_channels { |
| 5442 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_INVALID = 0, |
| 5443 | |
| 5444 | /* One of reason code (u8) from enum qca_wlan_vendor_acs_select_reason |
| 5445 | */ |
| 5446 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_REASON = 1, |
| 5447 | |
| 5448 | /* Array of nested values for each channel with following attributes: |
| 5449 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_BAND, |
| 5450 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_PRIMARY, |
| 5451 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_SECONDARY, |
| 5452 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG0, |
| 5453 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG1, |
| 5454 | * QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_WIDTH |
| 5455 | */ |
| 5456 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_LIST = 2, |
| 5457 | /* This (u8) will hold values of one of enum nl80211_bands */ |
| 5458 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_BAND = 3, |
| 5459 | /* Primary channel (u8) */ |
| 5460 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_PRIMARY = 4, |
| 5461 | /* Secondary channel (u8) used for HT 40 MHz channels */ |
| 5462 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_SECONDARY = 5, |
| 5463 | /* VHT seg0 channel (u8) */ |
| 5464 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG0 = 6, |
| 5465 | /* VHT seg1 channel (u8) */ |
| 5466 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_CENTER_SEG1 = 7, |
| 5467 | /* Channel width (u8). Takes one of enum nl80211_chan_width values. */ |
| 5468 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_WIDTH = 8, |
| 5469 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 5470 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_LIST = 9, |
| 5471 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_PRIMARY = 10, |
| 5472 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_SECONDARY = 11, |
| 5473 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG0 = 12, |
| 5474 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_FREQUENCY_CENTER_SEG1 = 13, |
| 5475 | |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5476 | /* keep last */ |
| 5477 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_LAST, |
| 5478 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_MAX = |
| 5479 | QCA_WLAN_VENDOR_ATTR_EXTERNAL_ACS_CHANNEL_LAST - 1 |
| 5480 | }; |
| 5481 | |
| 5482 | enum qca_chip_power_save_failure_reason { |
| 5483 | /* Indicates if the reason for the failure is due to a protocol |
| 5484 | * layer/module. |
| 5485 | */ |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5486 | QCA_CHIP_POWER_SAVE_FAILURE_REASON_PROTOCOL = 0, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5487 | /* Indicates if the reason for the failure is due to a hardware issue. |
| 5488 | */ |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5489 | QCA_CHIP_POWER_SAVE_FAILURE_REASON_HARDWARE = 1, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5490 | }; |
| 5491 | |
| 5492 | /** |
| 5493 | * qca_attr_chip_power_save_failure: Attributes to vendor subcmd |
| 5494 | * QCA_NL80211_VENDOR_SUBCMD_CHIP_PWRSAVE_FAILURE. This carries the requisite |
| 5495 | * information leading to the power save failure. |
| 5496 | */ |
| 5497 | enum qca_attr_chip_power_save_failure { |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5498 | QCA_ATTR_CHIP_POWER_SAVE_FAILURE_INVALID = 0, |
| 5499 | /* Reason to cause the power save failure. |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5500 | * These reasons are represented by |
| 5501 | * enum qca_chip_power_save_failure_reason. |
| 5502 | */ |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5503 | QCA_ATTR_CHIP_POWER_SAVE_FAILURE_REASON = 1, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5504 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5505 | /* keep last */ |
| 5506 | QCA_ATTR_CHIP_POWER_SAVE_FAILURE_LAST, |
| 5507 | QCA_ATTR_CHIP_POWER_SAVE_FAILURE_MAX = |
| 5508 | QCA_ATTR_CHIP_POWER_SAVE_FAILURE_LAST - 1, |
| 5509 | }; |
| 5510 | |
| 5511 | /** |
| 5512 | * qca_wlan_vendor_nud_stats_data_pkt_flags: Flag representing the various |
| 5513 | * data types for which the stats have to get collected. |
| 5514 | */ |
| 5515 | enum qca_wlan_vendor_nud_stats_data_pkt_flags { |
| 5516 | QCA_WLAN_VENDOR_NUD_STATS_DATA_ARP = 1 << 0, |
| 5517 | QCA_WLAN_VENDOR_NUD_STATS_DATA_DNS = 1 << 1, |
| 5518 | QCA_WLAN_VENDOR_NUD_STATS_DATA_TCP_HANDSHAKE = 1 << 2, |
| 5519 | QCA_WLAN_VENDOR_NUD_STATS_DATA_ICMPV4 = 1 << 3, |
| 5520 | QCA_WLAN_VENDOR_NUD_STATS_DATA_ICMPV6 = 1 << 4, |
| 5521 | /* Used by QCA_ATTR_NUD_STATS_PKT_TYPE only in nud stats get |
| 5522 | * to represent the stats of respective data type. |
| 5523 | */ |
| 5524 | QCA_WLAN_VENDOR_NUD_STATS_DATA_TCP_SYN = 1 << 5, |
| 5525 | QCA_WLAN_VENDOR_NUD_STATS_DATA_TCP_SYN_ACK = 1 << 6, |
| 5526 | QCA_WLAN_VENDOR_NUD_STATS_DATA_TCP_ACK = 1 << 7, |
| 5527 | }; |
| 5528 | |
| 5529 | enum qca_wlan_vendor_nud_stats_set_data_pkt_info { |
| 5530 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_INVALID = 0, |
| 5531 | /* Represents the data packet type to be monitored (u32). |
| 5532 | * Host driver tracks the stats corresponding to each data frame |
| 5533 | * represented by these flags. |
| 5534 | * These data packets are represented by |
| 5535 | * enum qca_wlan_vendor_nud_stats_data_pkt_flags |
| 5536 | */ |
| 5537 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_TYPE = 1, |
| 5538 | /* Name corresponding to the DNS frame for which the respective DNS |
| 5539 | * stats have to get monitored (string). Max string length 255. |
| 5540 | */ |
| 5541 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_DNS_DOMAIN_NAME = 2, |
| 5542 | /* source port on which the respective proto stats have to get |
| 5543 | * collected (u32). |
| 5544 | */ |
| 5545 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_SRC_PORT = 3, |
| 5546 | /* destination port on which the respective proto stats have to get |
| 5547 | * collected (u32). |
| 5548 | */ |
| 5549 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_DEST_PORT = 4, |
| 5550 | /* IPv4 address for which the destined data packets have to be |
| 5551 | * monitored. (in network byte order), u32. |
| 5552 | */ |
| 5553 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_DEST_IPV4 = 5, |
| 5554 | /* IPv6 address for which the destined data packets have to be |
| 5555 | * monitored. (in network byte order), 16 bytes array. |
| 5556 | */ |
| 5557 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_DEST_IPV6 = 6, |
| 5558 | |
| 5559 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_LAST, |
| 5560 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_MAX = |
| 5561 | QCA_ATTR_NUD_STATS_DATA_PKT_INFO_LAST - 1, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5562 | }; |
| 5563 | |
| 5564 | /** |
| 5565 | * qca_wlan_vendor_attr_nud_stats_set: Attributes to vendor subcmd |
| 5566 | * QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_SET. This carries the requisite |
| 5567 | * information to start/stop the NUD statistics collection. |
| 5568 | */ |
| 5569 | enum qca_attr_nud_stats_set { |
| 5570 | QCA_ATTR_NUD_STATS_SET_INVALID = 0, |
| 5571 | |
| 5572 | /* Flag to start/stop the NUD statistics collection. |
| 5573 | * Start - If included, Stop - If not included |
| 5574 | */ |
| 5575 | QCA_ATTR_NUD_STATS_SET_START = 1, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5576 | /* IPv4 address of the default gateway (in network byte order), u32 */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5577 | QCA_ATTR_NUD_STATS_GW_IPV4 = 2, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5578 | /* Represents the list of data packet types to be monitored. |
| 5579 | * Host driver tracks the stats corresponding to each data frame |
| 5580 | * represented by these flags. |
| 5581 | * These data packets are represented by |
| 5582 | * enum qca_wlan_vendor_nud_stats_set_data_pkt_info |
| 5583 | */ |
| 5584 | QCA_ATTR_NUD_STATS_SET_DATA_PKT_INFO = 3, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5585 | |
| 5586 | /* keep last */ |
| 5587 | QCA_ATTR_NUD_STATS_SET_LAST, |
| 5588 | QCA_ATTR_NUD_STATS_SET_MAX = |
| 5589 | QCA_ATTR_NUD_STATS_SET_LAST - 1, |
| 5590 | }; |
| 5591 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5592 | enum qca_attr_nud_data_stats { |
| 5593 | QCA_ATTR_NUD_DATA_STATS_INVALID = 0, |
| 5594 | /* Data packet type for which the stats are collected (u32). |
| 5595 | * Represented by enum qca_wlan_vendor_nud_stats_data_pkt_flags |
| 5596 | */ |
| 5597 | QCA_ATTR_NUD_STATS_PKT_TYPE = 1, |
| 5598 | /* Name corresponding to the DNS frame for which the respective DNS |
| 5599 | * stats are monitored (string). Max string length 255. |
| 5600 | */ |
| 5601 | QCA_ATTR_NUD_STATS_PKT_DNS_DOMAIN_NAME = 2, |
| 5602 | /* source port on which the respective proto stats are collected (u32). |
| 5603 | */ |
| 5604 | QCA_ATTR_NUD_STATS_PKT_SRC_PORT = 3, |
| 5605 | /* destination port on which the respective proto stats are collected |
| 5606 | * (u32). |
| 5607 | */ |
| 5608 | QCA_ATTR_NUD_STATS_PKT_DEST_PORT = 4, |
| 5609 | /* IPv4 address for which the destined data packets have to be |
| 5610 | * monitored. (in network byte order), u32. |
| 5611 | */ |
| 5612 | QCA_ATTR_NUD_STATS_PKT_DEST_IPV4 = 5, |
| 5613 | /* IPv6 address for which the destined data packets have to be |
| 5614 | * monitored. (in network byte order), 16 bytes array. |
| 5615 | */ |
| 5616 | QCA_ATTR_NUD_STATS_PKT_DEST_IPV6 = 6, |
| 5617 | /* Data packet Request count received from netdev (u32). */ |
| 5618 | QCA_ATTR_NUD_STATS_PKT_REQ_COUNT_FROM_NETDEV = 7, |
| 5619 | /* Data packet Request count sent to lower MAC from upper MAC (u32). */ |
| 5620 | QCA_ATTR_NUD_STATS_PKT_REQ_COUNT_TO_LOWER_MAC = 8, |
| 5621 | /* Data packet Request count received by lower MAC from upper MAC |
| 5622 | * (u32) |
| 5623 | */ |
| 5624 | QCA_ATTR_NUD_STATS_PKT_REQ_RX_COUNT_BY_LOWER_MAC = 9, |
| 5625 | /* Data packet Request count successfully transmitted by the device |
| 5626 | * (u32) |
| 5627 | */ |
| 5628 | QCA_ATTR_NUD_STATS_PKT_REQ_COUNT_TX_SUCCESS = 10, |
| 5629 | /* Data packet Response count received by lower MAC (u32) */ |
| 5630 | QCA_ATTR_NUD_STATS_PKT_RSP_RX_COUNT_BY_LOWER_MAC = 11, |
| 5631 | /* Data packet Response count received by upper MAC (u32) */ |
| 5632 | QCA_ATTR_NUD_STATS_PKT_RSP_RX_COUNT_BY_UPPER_MAC = 12, |
| 5633 | /* Data packet Response count delivered to netdev (u32) */ |
| 5634 | QCA_ATTR_NUD_STATS_PKT_RSP_COUNT_TO_NETDEV = 13, |
| 5635 | /* Data Packet Response count that are dropped out of order (u32) */ |
| 5636 | QCA_ATTR_NUD_STATS_PKT_RSP_COUNT_OUT_OF_ORDER_DROP = 14, |
| 5637 | |
| 5638 | /* keep last */ |
| 5639 | QCA_ATTR_NUD_DATA_STATS_LAST, |
| 5640 | QCA_ATTR_NUD_DATA_STATS_MAX = |
| 5641 | QCA_ATTR_NUD_DATA_STATS_LAST - 1, |
| 5642 | }; |
| 5643 | |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5644 | /** |
| 5645 | * qca_attr_nud_stats_get: Attributes to vendor subcmd |
| 5646 | * QCA_NL80211_VENDOR_SUBCMD_NUD_STATS_GET. This carries the requisite |
| 5647 | * NUD statistics collected when queried. |
| 5648 | */ |
| 5649 | enum qca_attr_nud_stats_get { |
| 5650 | QCA_ATTR_NUD_STATS_GET_INVALID = 0, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5651 | /* ARP Request count from netdev (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5652 | QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_FROM_NETDEV = 1, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5653 | /* ARP Request count sent to lower MAC from upper MAC (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5654 | QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_TO_LOWER_MAC = 2, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5655 | /* ARP Request count received by lower MAC from upper MAC (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5656 | QCA_ATTR_NUD_STATS_ARP_REQ_RX_COUNT_BY_LOWER_MAC = 3, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5657 | /* ARP Request count successfully transmitted by the device (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5658 | QCA_ATTR_NUD_STATS_ARP_REQ_COUNT_TX_SUCCESS = 4, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5659 | /* ARP Response count received by lower MAC (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5660 | QCA_ATTR_NUD_STATS_ARP_RSP_RX_COUNT_BY_LOWER_MAC = 5, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5661 | /* ARP Response count received by upper MAC (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5662 | QCA_ATTR_NUD_STATS_ARP_RSP_RX_COUNT_BY_UPPER_MAC = 6, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5663 | /* ARP Response count delivered to netdev (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5664 | QCA_ATTR_NUD_STATS_ARP_RSP_COUNT_TO_NETDEV = 7, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5665 | /* ARP Response count dropped due to out of order reception (u32) */ |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5666 | QCA_ATTR_NUD_STATS_ARP_RSP_COUNT_OUT_OF_ORDER_DROP = 8, |
| 5667 | /* Flag indicating if the station's link to the AP is active. |
| 5668 | * Active Link - If included, Inactive link - If not included |
| 5669 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5670 | QCA_ATTR_NUD_STATS_AP_LINK_ACTIVE = 9, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5671 | /* Flag indicating if there is any duplicate address detected (DAD). |
| 5672 | * Yes - If detected, No - If not detected. |
| 5673 | */ |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5674 | QCA_ATTR_NUD_STATS_IS_DAD = 10, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5675 | /* List of Data packet types for which the stats are requested. |
| 5676 | * This list does not carry ARP stats as they are done by the |
| 5677 | * above attributes. Represented by enum qca_attr_nud_data_stats. |
| 5678 | */ |
| 5679 | QCA_ATTR_NUD_STATS_DATA_PKT_STATS = 11, |
Paul Stewart | 092955c | 2017-02-06 09:13:09 -0800 | [diff] [blame] | 5680 | |
| 5681 | /* keep last */ |
| 5682 | QCA_ATTR_NUD_STATS_GET_LAST, |
| 5683 | QCA_ATTR_NUD_STATS_GET_MAX = |
| 5684 | QCA_ATTR_NUD_STATS_GET_LAST - 1, |
| 5685 | }; |
| 5686 | |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 5687 | enum qca_wlan_btm_candidate_status { |
| 5688 | QCA_STATUS_ACCEPT = 0, |
| 5689 | QCA_STATUS_REJECT_EXCESSIVE_FRAME_LOSS_EXPECTED = 1, |
| 5690 | QCA_STATUS_REJECT_EXCESSIVE_DELAY_EXPECTED = 2, |
| 5691 | QCA_STATUS_REJECT_INSUFFICIENT_QOS_CAPACITY = 3, |
| 5692 | QCA_STATUS_REJECT_LOW_RSSI = 4, |
| 5693 | QCA_STATUS_REJECT_HIGH_INTERFERENCE = 5, |
| 5694 | QCA_STATUS_REJECT_UNKNOWN = 6, |
| 5695 | }; |
| 5696 | |
| 5697 | enum qca_wlan_vendor_attr_btm_candidate_info { |
| 5698 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_INVALID = 0, |
| 5699 | |
| 5700 | /* 6-byte MAC address representing the BSSID of transition candidate */ |
| 5701 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_BSSID = 1, |
| 5702 | /* Unsigned 32-bit value from enum qca_wlan_btm_candidate_status |
| 5703 | * returned by the driver. It says whether the BSSID provided in |
| 5704 | * QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_BSSID is acceptable by |
| 5705 | * the driver, if not it specifies the reason for rejection. |
| 5706 | * Note that the user-space can overwrite the transition reject reason |
| 5707 | * codes provided by driver based on more information. |
| 5708 | */ |
| 5709 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_STATUS = 2, |
| 5710 | |
| 5711 | /* keep last */ |
| 5712 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_AFTER_LAST, |
| 5713 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_MAX = |
| 5714 | QCA_WLAN_VENDOR_ATTR_BTM_CANDIDATE_INFO_AFTER_LAST - 1, |
| 5715 | }; |
| 5716 | |
| 5717 | enum qca_attr_trace_level { |
| 5718 | QCA_ATTR_TRACE_LEVEL_INVALID = 0, |
| 5719 | /* |
| 5720 | * Nested array of the following attributes: |
| 5721 | * QCA_ATTR_TRACE_LEVEL_MODULE, |
| 5722 | * QCA_ATTR_TRACE_LEVEL_MASK. |
| 5723 | */ |
| 5724 | QCA_ATTR_TRACE_LEVEL_PARAM = 1, |
| 5725 | /* |
| 5726 | * Specific QCA host driver module. Please refer to the QCA host |
| 5727 | * driver implementation to get the specific module ID. |
| 5728 | */ |
| 5729 | QCA_ATTR_TRACE_LEVEL_MODULE = 2, |
| 5730 | /* Different trace level masks represented in the QCA host driver. */ |
| 5731 | QCA_ATTR_TRACE_LEVEL_MASK = 3, |
| 5732 | |
| 5733 | /* keep last */ |
| 5734 | QCA_ATTR_TRACE_LEVEL_AFTER_LAST, |
| 5735 | QCA_ATTR_TRACE_LEVEL_MAX = |
| 5736 | QCA_ATTR_TRACE_LEVEL_AFTER_LAST - 1, |
| 5737 | }; |
| 5738 | |
| 5739 | /** |
| 5740 | * enum qca_wlan_vendor_attr_get_he_capabilities - IEEE 802.11ax HE capabilities |
| 5741 | */ |
| 5742 | enum qca_wlan_vendor_attr_get_he_capabilities { |
| 5743 | QCA_WLAN_VENDOR_ATTR_HE_CAPABILITIES_INVALID = 0, |
| 5744 | /* Whether HE capabilities is supported |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5745 | * (u8 attribute: 0 = not supported, 1 = supported) |
| 5746 | */ |
Dmitry Shmidt | ebd93af | 2017-02-21 13:40:44 -0800 | [diff] [blame] | 5747 | QCA_WLAN_VENDOR_ATTR_HE_SUPPORTED = 1, |
| 5748 | /* HE PHY capabilities, array of 3 u32 values */ |
| 5749 | QCA_WLAN_VENDOR_ATTR_PHY_CAPAB = 2, |
| 5750 | /* HE MAC capabilities (u32 attribute) */ |
| 5751 | QCA_WLAN_VENDOR_ATTR_MAC_CAPAB = 3, |
| 5752 | /* HE MCS map (u32 attribute) */ |
| 5753 | QCA_WLAN_VENDOR_ATTR_HE_MCS = 4, |
| 5754 | /* Number of SS (u32 attribute) */ |
| 5755 | QCA_WLAN_VENDOR_ATTR_NUM_SS = 5, |
| 5756 | /* RU count (u32 attribute) */ |
| 5757 | QCA_WLAN_VENDOR_ATTR_RU_IDX_MASK = 6, |
| 5758 | /* PPE threshold data, array of 8 u32 values */ |
| 5759 | QCA_WLAN_VENDOR_ATTR_PPE_THRESHOLD = 7, |
| 5760 | |
| 5761 | /* keep last */ |
| 5762 | QCA_WLAN_VENDOR_ATTR_HE_CAPABILITIES_AFTER_LAST, |
| 5763 | QCA_WLAN_VENDOR_ATTR_HE_CAPABILITIES_MAX = |
| 5764 | QCA_WLAN_VENDOR_ATTR_HE_CAPABILITIES_AFTER_LAST - 1, |
| 5765 | }; |
| 5766 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5767 | /** |
| 5768 | * enum qca_wlan_vendor_attr_spectral_scan - Spectral scan config parameters |
| 5769 | */ |
| 5770 | enum qca_wlan_vendor_attr_spectral_scan { |
| 5771 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_INVALID = 0, |
| 5772 | /* Number of times the chip enters spectral scan mode before |
| 5773 | * deactivating spectral scans. When set to 0, chip will enter spectral |
| 5774 | * scan mode continuously. u32 attribute. |
| 5775 | */ |
| 5776 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_SCAN_COUNT = 1, |
| 5777 | /* Spectral scan period. Period increment resolution is 256*Tclk, |
| 5778 | * where Tclk = 1/44 MHz (Gmode), 1/40 MHz (Amode). u32 attribute. |
| 5779 | */ |
| 5780 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_SCAN_PERIOD = 2, |
| 5781 | /* Spectral scan priority. u32 attribute. */ |
| 5782 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_PRIORITY = 3, |
| 5783 | /* Number of FFT data points to compute. u32 attribute. */ |
| 5784 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_FFT_SIZE = 4, |
| 5785 | /* Enable targeted gain change before starting the spectral scan FFT. |
| 5786 | * u32 attribute. |
| 5787 | */ |
| 5788 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_GC_ENA = 5, |
| 5789 | /* Restart a queued spectral scan. u32 attribute. */ |
| 5790 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RESTART_ENA = 6, |
| 5791 | /* Noise floor reference number for the calculation of bin power. |
| 5792 | * u32 attribute. |
| 5793 | */ |
| 5794 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_NOISE_FLOOR_REF = 7, |
| 5795 | /* Disallow spectral scan triggers after TX/RX packets by setting |
| 5796 | * this delay value to roughly SIFS time period or greater. |
| 5797 | * u32 attribute. |
| 5798 | */ |
| 5799 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_INIT_DELAY = 8, |
| 5800 | /* Number of strong bins (inclusive) per sub-channel, below |
| 5801 | * which a signal is declared a narrow band tone. u32 attribute. |
| 5802 | */ |
| 5803 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_NB_TONE_THR = 9, |
| 5804 | /* Specify the threshold over which a bin is declared strong (for |
| 5805 | * scan bandwidth analysis). u32 attribute. |
| 5806 | */ |
| 5807 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_STR_BIN_THR = 10, |
| 5808 | /* Spectral scan report mode. u32 attribute. */ |
| 5809 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_WB_RPT_MODE = 11, |
| 5810 | /* RSSI report mode, if the ADC RSSI is below |
| 5811 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RSSI_THR, |
| 5812 | * then FFTs will not trigger, but timestamps and summaries get |
| 5813 | * reported. u32 attribute. |
| 5814 | */ |
| 5815 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RSSI_RPT_MODE = 12, |
| 5816 | /* ADC RSSI must be greater than or equal to this threshold (signed dB) |
| 5817 | * to ensure spectral scan reporting with normal error code. |
| 5818 | * u32 attribute. |
| 5819 | */ |
| 5820 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RSSI_THR = 13, |
| 5821 | /* Format of frequency bin magnitude for spectral scan triggered FFTs: |
| 5822 | * 0: linear magnitude, 1: log magnitude (20*log10(lin_mag)). |
| 5823 | * u32 attribute. |
| 5824 | */ |
| 5825 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_PWR_FORMAT = 14, |
| 5826 | /* Format of FFT report to software for spectral scan triggered FFTs. |
| 5827 | * 0: No FFT report (only spectral scan summary report) |
| 5828 | * 1: 2-dword summary of metrics for each completed FFT + spectral scan |
| 5829 | * report |
| 5830 | * 2: 2-dword summary of metrics for each completed FFT + 1x-oversampled |
| 5831 | * bins (in-band) per FFT + spectral scan summary report |
| 5832 | * 3: 2-dword summary of metrics for each completed FFT + 2x-oversampled |
| 5833 | * bins (all) per FFT + spectral scan summary report |
| 5834 | * u32 attribute. |
| 5835 | */ |
| 5836 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_RPT_MODE = 15, |
| 5837 | /* Number of LSBs to shift out in order to scale the FFT bins. |
| 5838 | * u32 attribute. |
| 5839 | */ |
| 5840 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_BIN_SCALE = 16, |
| 5841 | /* Set to 1 (with spectral_scan_pwr_format=1), to report bin magnitudes |
| 5842 | * in dBm power. u32 attribute. |
| 5843 | */ |
| 5844 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DBM_ADJ = 17, |
| 5845 | /* Per chain enable mask to select input ADC for search FFT. |
| 5846 | * u32 attribute. |
| 5847 | */ |
| 5848 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_CHN_MASK = 18, |
| 5849 | /* An unsigned 64-bit integer provided by host driver to identify the |
| 5850 | * spectral scan request. This attribute is included in the scan |
| 5851 | * response message for @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START |
| 5852 | * and used as an attribute in |
| 5853 | * @QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_STOP to identify the |
| 5854 | * specific scan to be stopped. |
| 5855 | */ |
| 5856 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_COOKIE = 19, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5857 | /* Skip interval for FFT reports. u32 attribute */ |
| 5858 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_FFT_PERIOD = 20, |
| 5859 | /* Set to report only one set of FFT results. |
| 5860 | * u32 attribute. |
| 5861 | */ |
| 5862 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_SHORT_REPORT = 21, |
| 5863 | /* Debug level for spectral module in driver. |
| 5864 | * 0 : Verbosity level 0 |
| 5865 | * 1 : Verbosity level 1 |
| 5866 | * 2 : Verbosity level 2 |
| 5867 | * 3 : Matched filterID display |
| 5868 | * 4 : One time dump of FFT report |
| 5869 | * u32 attribute. |
| 5870 | */ |
| 5871 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DEBUG_LEVEL = 22, |
| 5872 | /* Type of spectral scan request. u32 attribute. |
| 5873 | * It uses values defined in enum |
| 5874 | * qca_wlan_vendor_attr_spectral_scan_request_type. |
| 5875 | */ |
| 5876 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE = 23, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 5877 | /* This specifies the frequency span over which spectral |
| 5878 | * scan would be carried out. Its value depends on the |
| 5879 | * value of QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_MODE and |
| 5880 | * the relation is as follows. |
| 5881 | * QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_NORMAL |
| 5882 | * Not applicable. Spectral scan would happen in the |
| 5883 | * operating span. |
| 5884 | * QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_AGILE |
| 5885 | * Center frequency (in MHz) of the span of interest or |
| 5886 | * for convenience, center frequency (in MHz) of any channel |
Hai Shalom | b755a2a | 2020-04-23 21:49:02 -0700 | [diff] [blame] | 5887 | * in the span of interest. For 80+80 MHz agile spectral scan |
| 5888 | * request it represents center frequency (in MHz) of the primary |
| 5889 | * 80 MHz span or for convenience, center frequency (in MHz) of any |
| 5890 | * channel in the primary 80 MHz span. If agile spectral scan is |
| 5891 | * initiated without setting a valid frequency it returns the |
| 5892 | * error code |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 5893 | * (QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_NOT_INITIALIZED). |
| 5894 | * u32 attribute. |
| 5895 | */ |
| 5896 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_FREQUENCY = 24, |
| 5897 | /* Spectral scan mode. u32 attribute. |
| 5898 | * It uses values defined in enum qca_wlan_vendor_spectral_scan_mode. |
| 5899 | * If this attribute is not present, it is assumed to be |
| 5900 | * normal mode (QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_NORMAL). |
| 5901 | */ |
| 5902 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_MODE = 25, |
| 5903 | /* Spectral scan error code. u32 attribute. |
| 5904 | * It uses values defined in enum |
| 5905 | * qca_wlan_vendor_spectral_scan_error_code. |
| 5906 | * This attribute is included only in failure scenarios. |
| 5907 | */ |
| 5908 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_ERROR_CODE = 26, |
| 5909 | /* 8-bit unsigned value to enable/disable debug of the |
| 5910 | * Spectral DMA ring. |
| 5911 | * 1-enable, 0-disable |
| 5912 | */ |
| 5913 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DMA_RING_DEBUG = 27, |
| 5914 | /* 8-bit unsigned value to enable/disable debug of the |
| 5915 | * Spectral DMA buffers. |
| 5916 | * 1-enable, 0-disable |
| 5917 | */ |
| 5918 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_DMA_BUFFER_DEBUG = 28, |
Hai Shalom | b755a2a | 2020-04-23 21:49:02 -0700 | [diff] [blame] | 5919 | /* This specifies the frequency span over which spectral scan would be |
| 5920 | * carried out. Its value depends on the value of |
| 5921 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_MODE and the relation is as |
| 5922 | * follows. |
| 5923 | * QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_NORMAL |
| 5924 | * Not applicable. Spectral scan would happen in the operating span. |
| 5925 | * QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_AGILE |
| 5926 | * This attribute is applicable only for agile spectral scan |
| 5927 | * requests in 80+80 MHz mode. It represents center frequency (in |
| 5928 | * MHz) of the secondary 80 MHz span or for convenience, center |
| 5929 | * frequency (in MHz) of any channel in the secondary 80 MHz span. |
| 5930 | * u32 attribute. |
| 5931 | */ |
| 5932 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_FREQUENCY_2 = 29, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 5933 | |
| 5934 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_AFTER_LAST, |
| 5935 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_MAX = |
| 5936 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CONFIG_AFTER_LAST - 1, |
| 5937 | }; |
| 5938 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 5939 | /** |
| 5940 | * enum qca_wlan_vendor_attr_spectral_diag_stats - Used by the vendor command |
| 5941 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_DIAG_STATS. |
| 5942 | */ |
| 5943 | enum qca_wlan_vendor_attr_spectral_diag_stats { |
| 5944 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_INVALID = 0, |
| 5945 | /* Number of spectral TLV signature mismatches. |
| 5946 | * u64 attribute. |
| 5947 | */ |
| 5948 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_SIG_MISMATCH = 1, |
| 5949 | /* Number of spectral phyerror events with insufficient length when |
| 5950 | * parsing for secondary 80 search FFT report. u64 attribute. |
| 5951 | */ |
| 5952 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_SEC80_SFFT_INSUFFLEN = 2, |
| 5953 | /* Number of spectral phyerror events without secondary 80 |
| 5954 | * search FFT report. u64 attribute. |
| 5955 | */ |
| 5956 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_NOSEC80_SFFT = 3, |
| 5957 | /* Number of spectral phyerror events with vht operation segment 1 id |
| 5958 | * mismatches in search fft report. u64 attribute. |
| 5959 | */ |
| 5960 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_VHTSEG1ID_MISMATCH = 4, |
| 5961 | /* Number of spectral phyerror events with vht operation segment 2 id |
| 5962 | * mismatches in search fft report. u64 attribute. |
| 5963 | */ |
| 5964 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_VHTSEG2ID_MISMATCH = 5, |
| 5965 | |
| 5966 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_AFTER_LAST, |
| 5967 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_MAX = |
| 5968 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_DIAG_AFTER_LAST - 1, |
| 5969 | }; |
| 5970 | |
| 5971 | /** |
| 5972 | * enum qca_wlan_vendor_attr_spectral_cap - Used by the vendor command |
| 5973 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CAP_INFO. |
| 5974 | */ |
| 5975 | enum qca_wlan_vendor_attr_spectral_cap { |
| 5976 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_INVALID = 0, |
| 5977 | /* Flag attribute to indicate phydiag capability */ |
| 5978 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_PHYDIAG = 1, |
| 5979 | /* Flag attribute to indicate radar detection capability */ |
| 5980 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_RADAR = 2, |
| 5981 | /* Flag attribute to indicate spectral capability */ |
| 5982 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_SPECTRAL = 3, |
| 5983 | /* Flag attribute to indicate advanced spectral capability */ |
| 5984 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_ADVANCED_SPECTRAL = 4, |
| 5985 | /* Spectral hardware generation. u32 attribute. |
| 5986 | * It uses values defined in enum |
| 5987 | * qca_wlan_vendor_spectral_scan_cap_hw_gen. |
| 5988 | */ |
| 5989 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_HW_GEN = 5, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 5990 | /* Spectral bin scaling formula ID. u16 attribute. |
| 5991 | * It uses values defined in enum |
| 5992 | * qca_wlan_vendor_spectral_scan_cap_formula_id. |
| 5993 | */ |
| 5994 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_FORMULA_ID = 6, |
| 5995 | /* Spectral bin scaling param - low level offset. |
| 5996 | * s16 attribute. |
| 5997 | */ |
| 5998 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_LOW_LEVEL_OFFSET = 7, |
| 5999 | /* Spectral bin scaling param - high level offset. |
| 6000 | * s16 attribute. |
| 6001 | */ |
| 6002 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_HIGH_LEVEL_OFFSET = 8, |
| 6003 | /* Spectral bin scaling param - RSSI threshold. |
| 6004 | * s16 attribute. |
| 6005 | */ |
| 6006 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_RSSI_THR = 9, |
| 6007 | /* Spectral bin scaling param - default AGC max gain. |
| 6008 | * u8 attribute. |
| 6009 | */ |
| 6010 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_DEFAULT_AGC_MAX_GAIN = 10, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 6011 | /* Flag attribute to indicate agile spectral scan capability |
| 6012 | * for 20/40/80 MHz modes. |
| 6013 | */ |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 6014 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_AGILE_SPECTRAL = 11, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 6015 | /* Flag attribute to indicate agile spectral scan capability |
| 6016 | * for 160 MHz mode. |
| 6017 | */ |
| 6018 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_AGILE_SPECTRAL_160 = 12, |
| 6019 | /* Flag attribute to indicate agile spectral scan capability |
| 6020 | * for 80+80 MHz mode. |
| 6021 | */ |
| 6022 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_AGILE_SPECTRAL_80_80 = 13, |
Hai Shalom | b755a2a | 2020-04-23 21:49:02 -0700 | [diff] [blame] | 6023 | /* Number of spectral detectors used for scan in 20 MHz. |
| 6024 | * u32 attribute. |
| 6025 | */ |
| 6026 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_NUM_DETECTORS_20_MHZ = 14, |
| 6027 | /* Number of spectral detectors used for scan in 40 MHz. |
| 6028 | * u32 attribute. |
| 6029 | */ |
| 6030 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_NUM_DETECTORS_40_MHZ = 15, |
| 6031 | /* Number of spectral detectors used for scan in 80 MHz. |
| 6032 | * u32 attribute. |
| 6033 | */ |
| 6034 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_NUM_DETECTORS_80_MHZ = 16, |
| 6035 | /* Number of spectral detectors used for scan in 160 MHz. |
| 6036 | * u32 attribute. |
| 6037 | */ |
| 6038 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_NUM_DETECTORS_160_MHZ = 17, |
| 6039 | /* Number of spectral detectors used for scan in 80+80 MHz. |
| 6040 | * u32 attribute. |
| 6041 | */ |
| 6042 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_NUM_DETECTORS_80P80_MHZ = 18, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6043 | |
| 6044 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_AFTER_LAST, |
| 6045 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_MAX = |
| 6046 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_AFTER_LAST - 1, |
| 6047 | }; |
| 6048 | |
| 6049 | /** |
| 6050 | * enum qca_wlan_vendor_attr_spectral_scan_status - used by the vendor command |
| 6051 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_STATUS. |
| 6052 | */ |
| 6053 | enum qca_wlan_vendor_attr_spectral_scan_status { |
| 6054 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_INVALID = 0, |
| 6055 | /* Flag attribute to indicate whether spectral scan is enabled */ |
| 6056 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_IS_ENABLED = 1, |
| 6057 | /* Flag attribute to indicate whether spectral scan is in progress*/ |
| 6058 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_IS_ACTIVE = 2, |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 6059 | /* Spectral scan mode. u32 attribute. |
| 6060 | * It uses values defined in enum qca_wlan_vendor_spectral_scan_mode. |
| 6061 | * If this attribute is not present, normal mode |
| 6062 | * (QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_NORMAL is assumed to be |
| 6063 | * requested. |
| 6064 | */ |
| 6065 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_MODE = 3, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6066 | |
| 6067 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_AFTER_LAST, |
| 6068 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_MAX = |
| 6069 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_AFTER_LAST - 1, |
| 6070 | }; |
| 6071 | |
| 6072 | /** |
| 6073 | * qca_wlan_vendor_attr_spectral_scan_request_type: Attribute values for |
| 6074 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE to the vendor subcmd |
| 6075 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START. This represents the |
| 6076 | * spectral scan request types. |
| 6077 | * @QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE_SCAN_AND_CONFIG: Request to |
| 6078 | * set the spectral parameters and start scan. |
| 6079 | * @QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE_SCAN: Request to |
| 6080 | * only set the spectral parameters. |
| 6081 | * @QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE_CONFIG: Request to |
| 6082 | * only start the spectral scan. |
| 6083 | */ |
| 6084 | enum qca_wlan_vendor_attr_spectral_scan_request_type { |
| 6085 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE_SCAN_AND_CONFIG, |
| 6086 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE_SCAN, |
| 6087 | QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_REQUEST_TYPE_CONFIG, |
| 6088 | }; |
| 6089 | |
| 6090 | /** |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 6091 | * qca_wlan_vendor_spectral_scan_mode: Attribute values for |
| 6092 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_MODE in the vendor subcmd |
| 6093 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START and |
| 6094 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_STATUS_MODE in the vendor subcmd |
| 6095 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_STATUS. This represents the |
| 6096 | * spectral scan modes. |
| 6097 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_NORMAL: Normal spectral scan: |
| 6098 | * spectral scan in the current operating span. |
| 6099 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_AGILE: Agile spectral scan: |
| 6100 | * spectral scan in the configured agile span. |
| 6101 | */ |
| 6102 | enum qca_wlan_vendor_spectral_scan_mode { |
| 6103 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_NORMAL = 0, |
| 6104 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_MODE_AGILE = 1, |
| 6105 | }; |
| 6106 | |
| 6107 | /** |
| 6108 | * qca_wlan_vendor_spectral_scan_error_code: Attribute values for |
| 6109 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_ERROR_CODE in the vendor subcmd |
| 6110 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_START. |
| 6111 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_UNSUPPORTED: Changing the value |
| 6112 | * of a parameter is not supported. |
| 6113 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_MODE_UNSUPPORTED: Requested spectral scan |
| 6114 | * mode is not supported. |
| 6115 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_INVALID_VALUE: A parameter |
| 6116 | * has invalid value. |
| 6117 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_NOT_INITIALIZED: A parameter |
| 6118 | * is not initialized. |
| 6119 | */ |
| 6120 | enum qca_wlan_vendor_spectral_scan_error_code { |
| 6121 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_UNSUPPORTED = 0, |
| 6122 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_MODE_UNSUPPORTED = 1, |
| 6123 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_INVALID_VALUE = 2, |
| 6124 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_ERR_PARAM_NOT_INITIALIZED = 3, |
| 6125 | }; |
| 6126 | |
| 6127 | /** |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6128 | * qca_wlan_vendor_spectral_scan_cap_hw_gen: Attribute values for |
| 6129 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_HW_GEN to the vendor subcmd |
| 6130 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CAP_INFO. This represents the |
| 6131 | * spectral hardware generation. |
| 6132 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_HW_GEN_1: generation 1 |
| 6133 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_HW_GEN_2: generation 2 |
| 6134 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_HW_GEN_3: generation 3 |
| 6135 | */ |
| 6136 | enum qca_wlan_vendor_spectral_scan_cap_hw_gen { |
| 6137 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_HW_GEN_1 = 0, |
| 6138 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_HW_GEN_2 = 1, |
| 6139 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_HW_GEN_3 = 2, |
| 6140 | }; |
| 6141 | |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 6142 | enum qca_wlan_vendor_tos { |
| 6143 | QCA_WLAN_VENDOR_TOS_BK = 0, |
| 6144 | QCA_WLAN_VENDOR_TOS_BE = 1, |
| 6145 | QCA_WLAN_VENDOR_TOS_VI = 2, |
| 6146 | QCA_WLAN_VENDOR_TOS_VO = 3, |
| 6147 | }; |
| 6148 | |
| 6149 | /** |
| 6150 | * enum qca_wlan_vendor_attr_active_tos - Used by the vendor command |
| 6151 | * QCA_NL80211_VENDOR_SUBCMD_ACTIVE_TOS. |
| 6152 | */ |
| 6153 | enum qca_wlan_vendor_attr_active_tos { |
| 6154 | QCA_WLAN_VENDOR_ATTR_ACTIVE_TOS_INVALID = 0, |
| 6155 | /* Type Of Service - Represented by qca_wlan_vendor_tos */ |
| 6156 | QCA_WLAN_VENDOR_ATTR_ACTIVE_TOS = 1, |
| 6157 | /* Flag attribute representing the start (attribute included) or stop |
| 6158 | * (attribute not included) of the respective TOS. |
| 6159 | */ |
| 6160 | QCA_WLAN_VENDOR_ATTR_ACTIVE_TOS_START = 2, |
| 6161 | }; |
| 6162 | |
| 6163 | enum qca_wlan_vendor_hang_reason { |
| 6164 | /* Unspecified reason */ |
| 6165 | QCA_WLAN_HANG_REASON_UNSPECIFIED = 0, |
| 6166 | /* No Map for the MAC entry for the received frame */ |
| 6167 | QCA_WLAN_HANG_RX_HASH_NO_ENTRY_FOUND = 1, |
| 6168 | /* Peer deletion timeout happened */ |
| 6169 | QCA_WLAN_HANG_PEER_DELETION_TIMEDOUT = 2, |
| 6170 | /* Peer unmap timeout */ |
| 6171 | QCA_WLAN_HANG_PEER_UNMAP_TIMEDOUT = 3, |
| 6172 | /* Scan request timed out */ |
| 6173 | QCA_WLAN_HANG_SCAN_REQ_EXPIRED = 4, |
| 6174 | /* Consecutive Scan attempt failures */ |
| 6175 | QCA_WLAN_HANG_SCAN_ATTEMPT_FAILURES = 5, |
| 6176 | /* Unable to get the message buffer */ |
| 6177 | QCA_WLAN_HANG_GET_MSG_BUFF_FAILURE = 6, |
| 6178 | /* Current command processing is timedout */ |
| 6179 | QCA_WLAN_HANG_ACTIVE_LIST_TIMEOUT = 7, |
| 6180 | /* Timeout for an ACK from FW for suspend request */ |
| 6181 | QCA_WLAN_HANG_SUSPEND_TIMEOUT = 8, |
| 6182 | /* Timeout for an ACK from FW for resume request */ |
| 6183 | QCA_WLAN_HANG_RESUME_TIMEOUT = 9, |
| 6184 | /* Transmission timeout for consecutive data frames */ |
| 6185 | QCA_WLAN_HANG_TRANSMISSIONS_TIMEOUT = 10, |
| 6186 | /* Timeout for the TX completion status of data frame */ |
| 6187 | QCA_WLAN_HANG_TX_COMPLETE_TIMEOUT = 11, |
| 6188 | /* DXE failure for TX/RX, DXE resource unavailability */ |
| 6189 | QCA_WLAN_HANG_DXE_FAILURE = 12, |
| 6190 | /* WMI pending commands exceed the maximum count */ |
| 6191 | QCA_WLAN_HANG_WMI_EXCEED_MAX_PENDING_CMDS = 13, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6192 | /* Timeout for peer STA connection accept command's response from the |
| 6193 | * FW in AP mode. This command is triggered when a STA (peer) connects |
| 6194 | * to AP (DUT). |
| 6195 | */ |
| 6196 | QCA_WLAN_HANG_AP_STA_CONNECT_REQ_TIMEOUT = 14, |
| 6197 | /* Timeout for the AP connection accept command's response from the FW |
| 6198 | * in STA mode. This command is triggered when the STA (DUT) connects |
| 6199 | * to an AP (peer). |
| 6200 | */ |
| 6201 | QCA_WLAN_HANG_STA_AP_CONNECT_REQ_TIMEOUT = 15, |
| 6202 | /* Timeout waiting for the response to the MAC HW mode change command |
| 6203 | * sent to FW as a part of MAC mode switch among DBS (Dual Band |
| 6204 | * Simultaneous), SCC (Single Channel Concurrency), and MCC (Multi |
| 6205 | * Channel Concurrency) mode. |
| 6206 | */ |
| 6207 | QCA_WLAN_HANG_MAC_HW_MODE_CHANGE_TIMEOUT = 16, |
| 6208 | /* Timeout waiting for the response from FW to configure the MAC HW's |
| 6209 | * mode. This operation is to configure the single/two MACs in either |
| 6210 | * SCC/MCC/DBS mode. |
| 6211 | */ |
| 6212 | QCA_WLAN_HANG_MAC_HW_MODE_CONFIG_TIMEOUT = 17, |
| 6213 | /* Timeout waiting for response of VDEV start command from the FW */ |
| 6214 | QCA_WLAN_HANG_VDEV_START_RESPONSE_TIMED_OUT = 18, |
| 6215 | /* Timeout waiting for response of VDEV restart command from the FW */ |
| 6216 | QCA_WLAN_HANG_VDEV_RESTART_RESPONSE_TIMED_OUT = 19, |
| 6217 | /* Timeout waiting for response of VDEV stop command from the FW */ |
| 6218 | QCA_WLAN_HANG_VDEV_STOP_RESPONSE_TIMED_OUT = 20, |
| 6219 | /* Timeout waiting for response of VDEV delete command from the FW */ |
| 6220 | QCA_WLAN_HANG_VDEV_DELETE_RESPONSE_TIMED_OUT = 21, |
| 6221 | /* Timeout waiting for response of peer all delete request command to |
| 6222 | * the FW on a specific VDEV. |
| 6223 | */ |
| 6224 | QCA_WLAN_HANG_VDEV_PEER_DELETE_ALL_RESPONSE_TIMED_OUT = 22, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 6225 | }; |
| 6226 | |
| 6227 | /** |
| 6228 | * enum qca_wlan_vendor_attr_hang - Used by the vendor command |
| 6229 | * QCA_NL80211_VENDOR_SUBCMD_HANG. |
| 6230 | */ |
| 6231 | enum qca_wlan_vendor_attr_hang { |
| 6232 | QCA_WLAN_VENDOR_ATTR_HANG_INVALID = 0, |
| 6233 | /* Reason for the hang - u32 attribute with a value from enum |
| 6234 | * qca_wlan_vendor_hang_reason. |
| 6235 | */ |
| 6236 | QCA_WLAN_VENDOR_ATTR_HANG_REASON = 1, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6237 | /* The binary blob data associated with the hang reason specified by |
| 6238 | * QCA_WLAN_VENDOR_ATTR_HANG_REASON. This binary data is expected to |
| 6239 | * contain the required dump to analyze the reason for the hang. |
| 6240 | * NLA_BINARY attribute, the max size is 1024 bytes. |
| 6241 | */ |
| 6242 | QCA_WLAN_VENDOR_ATTR_HANG_REASON_DATA = 2, |
Dmitry Shmidt | d2986c2 | 2017-10-23 14:22:09 -0700 | [diff] [blame] | 6243 | |
| 6244 | QCA_WLAN_VENDOR_ATTR_HANG_AFTER_LAST, |
| 6245 | QCA_WLAN_VENDOR_ATTR_HANG_MAX = |
| 6246 | QCA_WLAN_VENDOR_ATTR_HANG_AFTER_LAST - 1, |
| 6247 | }; |
| 6248 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6249 | /** |
| 6250 | * enum qca_wlan_vendor_attr_flush_pending - Attributes for |
| 6251 | * flushing pending traffic in firmware. |
| 6252 | * |
| 6253 | * @QCA_WLAN_VENDOR_ATTR_PEER_ADDR: Configure peer MAC address. |
| 6254 | * @QCA_WLAN_VENDOR_ATTR_AC: Configure access category of the pending |
| 6255 | * packets. It is u8 value with bit 0~3 represent AC_BE, AC_BK, |
| 6256 | * AC_VI, AC_VO respectively. Set the corresponding bit to 1 to |
| 6257 | * flush packets with access category. |
| 6258 | */ |
| 6259 | enum qca_wlan_vendor_attr_flush_pending { |
| 6260 | QCA_WLAN_VENDOR_ATTR_FLUSH_PENDING_INVALID = 0, |
| 6261 | QCA_WLAN_VENDOR_ATTR_PEER_ADDR = 1, |
| 6262 | QCA_WLAN_VENDOR_ATTR_AC = 2, |
| 6263 | |
| 6264 | /* keep last */ |
| 6265 | QCA_WLAN_VENDOR_ATTR_FLUSH_PENDING_AFTER_LAST, |
| 6266 | QCA_WLAN_VENDOR_ATTR_FLUSH_PENDING_MAX = |
| 6267 | QCA_WLAN_VENDOR_ATTR_FLUSH_PENDING_AFTER_LAST - 1, |
| 6268 | }; |
| 6269 | |
| 6270 | /** |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 6271 | * qca_wlan_vendor_spectral_scan_cap_formula_id: Attribute values for |
| 6272 | * QCA_WLAN_VENDOR_ATTR_SPECTRAL_SCAN_CAP_FORMULA_ID in the vendor subcmd |
| 6273 | * QCA_NL80211_VENDOR_SUBCMD_SPECTRAL_SCAN_GET_CAP_INFO. This represents the |
| 6274 | * Spectral bin scaling formula ID. |
| 6275 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_NO_SCALING: No scaling |
| 6276 | * @QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_AGC_GAIN_RSSI_CORR_BASED: AGC gain |
| 6277 | * and RSSI threshold based formula. |
| 6278 | */ |
| 6279 | enum qca_wlan_vendor_spectral_scan_cap_formula_id { |
| 6280 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_NO_SCALING = 0, |
| 6281 | QCA_WLAN_VENDOR_SPECTRAL_SCAN_CAP_AGC_GAIN_RSSI_CORR_BASED = 1, |
| 6282 | }; |
| 6283 | |
| 6284 | /** |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6285 | * enum qca_wlan_vendor_attr_rropavail_info - Specifies whether Representative |
| 6286 | * RF Operating Parameter (RROP) information is available, and if so, at which |
| 6287 | * point in the application-driver interaction sequence it can be retrieved by |
| 6288 | * the application from the driver. This point may vary by architecture and |
| 6289 | * other factors. This is a u16 value. |
| 6290 | */ |
| 6291 | enum qca_wlan_vendor_attr_rropavail_info { |
| 6292 | /* RROP information is unavailable. */ |
| 6293 | QCA_WLAN_VENDOR_ATTR_RROPAVAIL_INFO_UNAVAILABLE, |
| 6294 | /* RROP information is available and the application can retrieve the |
| 6295 | * information after receiving an QCA_NL80211_VENDOR_SUBCMD_EXTERNAL_ACS |
| 6296 | * event from the driver. |
| 6297 | */ |
| 6298 | QCA_WLAN_VENDOR_ATTR_RROPAVAIL_INFO_EXTERNAL_ACS_START, |
| 6299 | /* RROP information is available only after a vendor specific scan |
| 6300 | * (requested using QCA_NL80211_VENDOR_SUBCMD_TRIGGER_SCAN) has |
| 6301 | * successfully completed. The application can retrieve the information |
| 6302 | * after receiving the QCA_NL80211_VENDOR_SUBCMD_SCAN_DONE event from |
| 6303 | * the driver. |
| 6304 | */ |
| 6305 | QCA_WLAN_VENDOR_ATTR_RROPAVAIL_INFO_VSCAN_END, |
| 6306 | }; |
| 6307 | |
| 6308 | /** |
| 6309 | * enum qca_wlan_vendor_attr_rrop_info - Specifies vendor specific |
| 6310 | * Representative RF Operating Parameter (RROP) information. It is sent for the |
| 6311 | * vendor command QCA_NL80211_VENDOR_SUBCMD_GET_RROP_INFO. This information is |
| 6312 | * intended for use by external Auto Channel Selection applications. It provides |
| 6313 | * guidance values for some RF parameters that are used by the system during |
| 6314 | * operation. These values could vary by channel, band, radio, and so on. |
| 6315 | */ |
| 6316 | enum qca_wlan_vendor_attr_rrop_info { |
| 6317 | QCA_WLAN_VENDOR_ATTR_RROP_INFO_INVALID = 0, |
| 6318 | |
| 6319 | /* Representative Tx Power List (RTPL) which has an array of nested |
| 6320 | * values as per attributes in enum qca_wlan_vendor_attr_rtplinst. |
| 6321 | */ |
| 6322 | QCA_WLAN_VENDOR_ATTR_RROP_INFO_RTPL = 1, |
| 6323 | |
| 6324 | QCA_WLAN_VENDOR_ATTR_RROP_INFO_AFTER_LAST, |
| 6325 | QCA_WLAN_VENDOR_ATTR_RROP_INFO_MAX = |
| 6326 | QCA_WLAN_VENDOR_ATTR_RROP_INFO_AFTER_LAST - 1 |
| 6327 | }; |
| 6328 | |
| 6329 | /** |
| 6330 | * enum qca_wlan_vendor_attr_rtplinst - Specifies attributes for individual list |
| 6331 | * entry instances in the Representative Tx Power List (RTPL). It provides |
| 6332 | * simplified power values intended for helping external Auto channel Selection |
| 6333 | * applications compare potential Tx power performance between channels, other |
| 6334 | * operating conditions remaining identical. These values are not necessarily |
| 6335 | * the actual Tx power values that will be used by the system. They are also not |
| 6336 | * necessarily the max or average values that will be used. Instead, they are |
| 6337 | * relative, summarized keys for algorithmic use computed by the driver or |
| 6338 | * underlying firmware considering a number of vendor specific factors. |
| 6339 | */ |
| 6340 | enum qca_wlan_vendor_attr_rtplinst { |
| 6341 | QCA_WLAN_VENDOR_ATTR_RTPLINST_INVALID = 0, |
| 6342 | |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6343 | /* Primary channel number (u8). |
| 6344 | * Note: If both the driver and user space application support the |
| 6345 | * 6 GHz band, this attribute is deprecated and |
| 6346 | * QCA_WLAN_VENDOR_ATTR_RTPLINST_PRIMARY_FREQUENCY should be used. To |
| 6347 | * maintain backward compatibility, |
| 6348 | * QCA_WLAN_VENDOR_ATTR_RTPLINST_PRIMARY is still used if either the |
| 6349 | * driver or user space application or both do not support the 6 GHz |
| 6350 | * band. |
| 6351 | */ |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6352 | QCA_WLAN_VENDOR_ATTR_RTPLINST_PRIMARY = 1, |
| 6353 | /* Representative Tx power in dBm (s32) with emphasis on throughput. */ |
| 6354 | QCA_WLAN_VENDOR_ATTR_RTPLINST_TXPOWER_THROUGHPUT = 2, |
| 6355 | /* Representative Tx power in dBm (s32) with emphasis on range. */ |
| 6356 | QCA_WLAN_VENDOR_ATTR_RTPLINST_TXPOWER_RANGE = 3, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6357 | /* Primary channel center frequency (u32) in MHz */ |
| 6358 | QCA_WLAN_VENDOR_ATTR_RTPLINST_PRIMARY_FREQUENCY = 4, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6359 | |
| 6360 | QCA_WLAN_VENDOR_ATTR_RTPLINST_AFTER_LAST, |
| 6361 | QCA_WLAN_VENDOR_ATTR_RTPLINST_MAX = |
| 6362 | QCA_WLAN_VENDOR_ATTR_RTPLINST_AFTER_LAST - 1, |
| 6363 | }; |
| 6364 | |
| 6365 | /** |
| 6366 | * enum qca_wlan_vendor_attr_config_latency_level - Level for |
| 6367 | * wlan latency module. |
| 6368 | * |
| 6369 | * There will be various of Wi-Fi functionality like scan/roaming/adaptive |
| 6370 | * power saving which would causing data exchange out of service, this |
| 6371 | * would be a big impact on latency. For latency sensitive applications over |
| 6372 | * Wi-Fi are intolerant to such operations and thus would configure them |
| 6373 | * to meet their respective needs. It is well understood by such applications |
| 6374 | * that altering the default behavior would degrade the Wi-Fi functionality |
| 6375 | * w.r.t the above pointed WLAN operations. |
| 6376 | * |
| 6377 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_NORMAL: |
| 6378 | * Default WLAN operation level which throughput orientated. |
| 6379 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_MODERATE: |
| 6380 | * Use moderate level to improve latency by limit scan duration. |
| 6381 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_LOW: |
| 6382 | * Use low latency level to benifit application like concurrent |
| 6383 | * downloading or video streaming via constraint scan/adaptive PS. |
| 6384 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_ULTRALOW: |
| 6385 | * Use ultra low latency level to benefit for gaming/voice |
| 6386 | * application via constraint scan/roaming/adaptive PS. |
| 6387 | */ |
| 6388 | enum qca_wlan_vendor_attr_config_latency_level { |
| 6389 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_INVALID = 0, |
| 6390 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_NORMAL = 1, |
| 6391 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_MODERATE = 2, |
| 6392 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_LOW = 3, |
| 6393 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_ULTRALOW = 4, |
| 6394 | |
| 6395 | /* keep last */ |
| 6396 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_AFTER_LAST, |
| 6397 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_MAX = |
| 6398 | QCA_WLAN_VENDOR_ATTR_CONFIG_LATENCY_LEVEL_AFTER_LAST - 1, |
| 6399 | }; |
| 6400 | |
| 6401 | /** |
| 6402 | * enum qca_wlan_vendor_attr_wlan_mac - Used by the vendor command |
| 6403 | * QCA_NL80211_VENDOR_SUBCMD_WLAN_MAC_INFO. |
| 6404 | */ |
| 6405 | enum qca_wlan_vendor_attr_mac { |
| 6406 | QCA_WLAN_VENDOR_ATTR_MAC_INVALID = 0, |
| 6407 | |
| 6408 | /* MAC mode info list which has an array of nested values as |
| 6409 | * per attributes in enum qca_wlan_vendor_attr_mac_mode_info. |
| 6410 | */ |
| 6411 | QCA_WLAN_VENDOR_ATTR_MAC_INFO = 1, |
| 6412 | |
| 6413 | /* keep last */ |
| 6414 | QCA_WLAN_VENDOR_ATTR_MAC_AFTER_LAST, |
| 6415 | QCA_WLAN_VENDOR_ATTR_MAC_MAX = |
| 6416 | QCA_WLAN_VENDOR_ATTR_MAC_AFTER_LAST - 1, |
| 6417 | }; |
| 6418 | |
| 6419 | /** |
| 6420 | * enum qca_wlan_vendor_attr_mac_iface_info - Information of the connected |
| 6421 | * Wi-Fi netdev interface on a respective MAC. |
| 6422 | * Used by the attribute QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO. |
| 6423 | */ |
| 6424 | enum qca_wlan_vendor_attr_mac_iface_info { |
| 6425 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO_INVALID = 0, |
| 6426 | /* Wi-Fi netdev's interface index (u32) */ |
| 6427 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO_IFINDEX = 1, |
| 6428 | /* Associated frequency in MHz of the connected Wi-Fi interface (u32) */ |
| 6429 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO_FREQ = 2, |
| 6430 | |
| 6431 | /* keep last */ |
| 6432 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO_AFTER_LAST, |
| 6433 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO_MAX = |
| 6434 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO_AFTER_LAST - 1, |
| 6435 | }; |
| 6436 | |
| 6437 | /** |
| 6438 | * enum qca_wlan_vendor_attr_mac_info - Points to MAC the information. |
| 6439 | * Used by the attribute QCA_WLAN_VENDOR_ATTR_MAC_INFO of the |
| 6440 | * vendor command QCA_NL80211_VENDOR_SUBCMD_WLAN_MAC_INFO. |
| 6441 | */ |
| 6442 | enum qca_wlan_vendor_attr_mac_info { |
| 6443 | QCA_WLAN_VENDOR_ATTR_MAC_INFO_INVALID = 0, |
| 6444 | /* Hardware MAC ID associated for the MAC (u32) */ |
| 6445 | QCA_WLAN_VENDOR_ATTR_MAC_INFO_MAC_ID = 1, |
| 6446 | /* Band supported by the MAC at a given point. |
| 6447 | * This is a u32 bitmask of BIT(NL80211_BAND_*) as described in %enum |
| 6448 | * nl80211_band. |
| 6449 | */ |
| 6450 | QCA_WLAN_VENDOR_ATTR_MAC_INFO_BAND = 2, |
| 6451 | /* Refers to list of WLAN netdev interfaces associated with this MAC. |
| 6452 | * Represented by enum qca_wlan_vendor_attr_mac_iface_info. |
| 6453 | */ |
| 6454 | QCA_WLAN_VENDOR_ATTR_MAC_IFACE_INFO = 3, |
| 6455 | |
| 6456 | /* keep last */ |
| 6457 | QCA_WLAN_VENDOR_ATTR_MAC_INFO_AFTER_LAST, |
| 6458 | QCA_WLAN_VENDOR_ATTR_MAC_INFO_MAX = |
| 6459 | QCA_WLAN_VENDOR_ATTR_MAC_INFO_AFTER_LAST - 1, |
| 6460 | }; |
| 6461 | |
| 6462 | /** |
| 6463 | * enum qca_wlan_vendor_attr_get_logger_features - Used by the vendor command |
| 6464 | * QCA_NL80211_VENDOR_SUBCMD_GET_LOGGER_FEATURE_SET. |
| 6465 | */ |
| 6466 | enum qca_wlan_vendor_attr_get_logger_features { |
| 6467 | QCA_WLAN_VENDOR_ATTR_LOGGER_INVALID = 0, |
| 6468 | /* Unsigned 32-bit enum value of wifi_logger_supported_features */ |
| 6469 | QCA_WLAN_VENDOR_ATTR_LOGGER_SUPPORTED = 1, |
| 6470 | /* keep last */ |
| 6471 | QCA_WLAN_VENDOR_ATTR_LOGGER_AFTER_LAST, |
| 6472 | QCA_WLAN_VENDOR_ATTR_LOGGER_MAX = |
| 6473 | QCA_WLAN_VENDOR_ATTR_LOGGER_AFTER_LAST - 1, |
| 6474 | }; |
| 6475 | |
| 6476 | /** |
| 6477 | * enum wifi_logger_supported_features - Values for supported logger features |
| 6478 | */ |
| 6479 | enum wifi_logger_supported_features { |
| 6480 | WIFI_LOGGER_MEMORY_DUMP_FEATURE = (1 << (0)), |
| 6481 | WIFI_LOGGER_PER_PACKET_TX_RX_STATUS_FEATURE = (1 << (1)), |
| 6482 | WIFI_LOGGER_CONNECT_EVENT_FEATURE = (1 << (2)), |
| 6483 | WIFI_LOGGER_POWER_EVENT_FEATURE = (1 << (3)), |
| 6484 | WIFI_LOGGER_WAKE_LOCK_FEATURE = (1 << (4)), |
| 6485 | WIFI_LOGGER_VERBOSE_FEATURE = (1 << (5)), |
| 6486 | WIFI_LOGGER_WATCHDOG_TIMER_FEATURE = (1 << (6)), |
| 6487 | WIFI_LOGGER_DRIVER_DUMP_FEATURE = (1 << (7)), |
| 6488 | WIFI_LOGGER_PACKET_FATE_FEATURE = (1 << (8)), |
| 6489 | }; |
| 6490 | |
| 6491 | /** |
| 6492 | * enum qca_wlan_tdls_caps_features_supported - Values for TDLS get |
| 6493 | * capabilities features |
| 6494 | */ |
| 6495 | enum qca_wlan_tdls_caps_features_supported { |
| 6496 | WIFI_TDLS_SUPPORT = (1 << (0)), |
| 6497 | WIFI_TDLS_EXTERNAL_CONTROL_SUPPORT = (1 << (1)), |
| 6498 | WIFI_TDLS_OFFCHANNEL_SUPPORT = (1 << (2)) |
| 6499 | }; |
| 6500 | |
| 6501 | /** |
| 6502 | * enum qca_wlan_vendor_attr_tdls_get_capabilities - Used by the vendor command |
| 6503 | * QCA_NL80211_VENDOR_SUBCMD_TDLS_GET_CAPABILITIES. |
| 6504 | */ |
| 6505 | enum qca_wlan_vendor_attr_tdls_get_capabilities { |
| 6506 | QCA_WLAN_VENDOR_ATTR_TDLS_GET_CAPS_INVALID = 0, |
| 6507 | /* Indicates the max concurrent sessions */ |
| 6508 | /* Unsigned 32-bit value */ |
| 6509 | QCA_WLAN_VENDOR_ATTR_TDLS_GET_CAPS_MAX_CONC_SESSIONS, |
| 6510 | /* Indicates the support for features */ |
| 6511 | /* Unsigned 32-bit bitmap qca_wlan_tdls_caps_features_supported |
| 6512 | */ |
| 6513 | QCA_WLAN_VENDOR_ATTR_TDLS_GET_CAPS_FEATURES_SUPPORTED, |
| 6514 | |
| 6515 | /* keep last */ |
| 6516 | QCA_WLAN_VENDOR_ATTR_TDLS_GET_CAPS_AFTER_LAST, |
| 6517 | QCA_WLAN_VENDOR_ATTR_TDLS_GET_CAPS_MAX = |
| 6518 | QCA_WLAN_VENDOR_ATTR_TDLS_GET_CAPS_AFTER_LAST - 1, |
| 6519 | }; |
| 6520 | |
| 6521 | /** |
| 6522 | * enum qca_wlan_offloaded_packets_sending_control - Offload packets control |
| 6523 | * command used as value for the attribute |
| 6524 | * QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_SENDING_CONTROL. |
| 6525 | */ |
| 6526 | enum qca_wlan_offloaded_packets_sending_control { |
| 6527 | QCA_WLAN_OFFLOADED_PACKETS_SENDING_CONTROL_INVALID = 0, |
| 6528 | QCA_WLAN_OFFLOADED_PACKETS_SENDING_START, |
| 6529 | QCA_WLAN_OFFLOADED_PACKETS_SENDING_STOP |
| 6530 | }; |
| 6531 | |
| 6532 | /** |
| 6533 | * enum qca_wlan_vendor_attr_offloaded_packets - Used by the vendor command |
| 6534 | * QCA_NL80211_VENDOR_SUBCMD_OFFLOADED_PACKETS. |
| 6535 | */ |
| 6536 | enum qca_wlan_vendor_attr_offloaded_packets { |
| 6537 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_INVALID = 0, |
| 6538 | /* Takes valid value from the enum |
| 6539 | * qca_wlan_offloaded_packets_sending_control |
| 6540 | * Unsigned 32-bit value |
| 6541 | */ |
| 6542 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_SENDING_CONTROL, |
| 6543 | /* Unsigned 32-bit value */ |
| 6544 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_REQUEST_ID, |
| 6545 | /* array of u8 len: Max packet size */ |
| 6546 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_IP_PACKET_DATA, |
| 6547 | /* 6-byte MAC address used to represent source MAC address */ |
| 6548 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_SRC_MAC_ADDR, |
| 6549 | /* 6-byte MAC address used to represent destination MAC address */ |
| 6550 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_DST_MAC_ADDR, |
| 6551 | /* Unsigned 32-bit value, in milli seconds */ |
| 6552 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_PERIOD, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 6553 | /* This optional unsigned 16-bit attribute is used for specifying |
| 6554 | * ethernet protocol type. If not specified ethertype defaults to IPv4. |
| 6555 | */ |
| 6556 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_ETHER_PROTO_TYPE, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6557 | |
| 6558 | /* keep last */ |
| 6559 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_AFTER_LAST, |
| 6560 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_MAX = |
| 6561 | QCA_WLAN_VENDOR_ATTR_OFFLOADED_PACKETS_AFTER_LAST - 1, |
| 6562 | }; |
| 6563 | |
| 6564 | /** |
| 6565 | * enum qca_wlan_rssi_monitoring_control - RSSI control commands used as values |
| 6566 | * by the attribute QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CONTROL. |
| 6567 | */ |
| 6568 | enum qca_wlan_rssi_monitoring_control { |
| 6569 | QCA_WLAN_RSSI_MONITORING_CONTROL_INVALID = 0, |
| 6570 | QCA_WLAN_RSSI_MONITORING_START, |
| 6571 | QCA_WLAN_RSSI_MONITORING_STOP, |
| 6572 | }; |
| 6573 | |
| 6574 | /** |
| 6575 | * enum qca_wlan_vendor_attr_rssi_monitoring - Used by the vendor command |
| 6576 | * QCA_NL80211_VENDOR_SUBCMD_MONITOR_RSSI. |
| 6577 | */ |
| 6578 | enum qca_wlan_vendor_attr_rssi_monitoring { |
| 6579 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_INVALID = 0, |
| 6580 | /* Takes valid value from the enum |
| 6581 | * qca_wlan_rssi_monitoring_control |
| 6582 | * Unsigned 32-bit value enum qca_wlan_rssi_monitoring_control |
| 6583 | */ |
| 6584 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CONTROL, |
| 6585 | /* Unsigned 32-bit value */ |
| 6586 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_REQUEST_ID, |
| 6587 | /* Signed 8-bit value in dBm */ |
| 6588 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_MAX_RSSI, |
| 6589 | /* Signed 8-bit value in dBm */ |
| 6590 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_MIN_RSSI, |
| 6591 | /* attributes to be used/received in callback */ |
| 6592 | /* 6-byte MAC address used to represent current BSSID MAC address */ |
| 6593 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CUR_BSSID, |
| 6594 | /* Signed 8-bit value indicating the current RSSI */ |
| 6595 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_CUR_RSSI, |
| 6596 | /* keep last */ |
| 6597 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_AFTER_LAST, |
| 6598 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_MAX = |
| 6599 | QCA_WLAN_VENDOR_ATTR_RSSI_MONITORING_AFTER_LAST - 1, |
| 6600 | }; |
| 6601 | |
| 6602 | /** |
| 6603 | * enum qca_wlan_vendor_attr_ndp_params - Used by the vendor command |
| 6604 | * QCA_NL80211_VENDOR_SUBCMD_NDP. |
| 6605 | */ |
| 6606 | enum qca_wlan_vendor_attr_ndp_params { |
| 6607 | QCA_WLAN_VENDOR_ATTR_NDP_PARAM_INVALID = 0, |
| 6608 | /* Unsigned 32-bit value |
| 6609 | * enum of sub commands values in qca_wlan_ndp_sub_cmd |
| 6610 | */ |
| 6611 | QCA_WLAN_VENDOR_ATTR_NDP_SUBCMD, |
| 6612 | /* Unsigned 16-bit value */ |
| 6613 | QCA_WLAN_VENDOR_ATTR_NDP_TRANSACTION_ID, |
| 6614 | /* NL attributes for data used NDP SUB cmds */ |
| 6615 | /* Unsigned 32-bit value indicating a service info */ |
| 6616 | QCA_WLAN_VENDOR_ATTR_NDP_SERVICE_INSTANCE_ID, |
| 6617 | /* Unsigned 32-bit value; channel frequency in MHz */ |
| 6618 | QCA_WLAN_VENDOR_ATTR_NDP_CHANNEL, |
| 6619 | /* Interface Discovery MAC address. An array of 6 Unsigned int8 */ |
| 6620 | QCA_WLAN_VENDOR_ATTR_NDP_PEER_DISCOVERY_MAC_ADDR, |
| 6621 | /* Interface name on which NDP is being created */ |
| 6622 | QCA_WLAN_VENDOR_ATTR_NDP_IFACE_STR, |
| 6623 | /* Unsigned 32-bit value for security */ |
| 6624 | /* CONFIG_SECURITY is deprecated, use NCS_SK_TYPE/PMK/SCID instead */ |
| 6625 | QCA_WLAN_VENDOR_ATTR_NDP_CONFIG_SECURITY, |
| 6626 | /* Unsigned 32-bit value for QoS */ |
| 6627 | QCA_WLAN_VENDOR_ATTR_NDP_CONFIG_QOS, |
| 6628 | /* Array of u8: len = QCA_WLAN_VENDOR_ATTR_NAN_DP_APP_INFO_LEN */ |
| 6629 | QCA_WLAN_VENDOR_ATTR_NDP_APP_INFO, |
| 6630 | /* Unsigned 32-bit value for NDP instance Id */ |
| 6631 | QCA_WLAN_VENDOR_ATTR_NDP_INSTANCE_ID, |
| 6632 | /* Array of instance Ids */ |
| 6633 | QCA_WLAN_VENDOR_ATTR_NDP_INSTANCE_ID_ARRAY, |
| 6634 | /* Unsigned 32-bit value for initiator/responder NDP response code |
| 6635 | * accept/reject |
| 6636 | */ |
| 6637 | QCA_WLAN_VENDOR_ATTR_NDP_RESPONSE_CODE, |
| 6638 | /* NDI MAC address. An array of 6 Unsigned int8 */ |
| 6639 | QCA_WLAN_VENDOR_ATTR_NDP_NDI_MAC_ADDR, |
| 6640 | /* Unsigned 32-bit value errors types returned by driver |
| 6641 | * The wifi_nan.h in AOSP project platform/hardware/libhardware_legacy |
| 6642 | * NanStatusType includes these values. |
| 6643 | */ |
| 6644 | QCA_WLAN_VENDOR_ATTR_NDP_DRV_RESPONSE_STATUS_TYPE, |
| 6645 | /* Unsigned 32-bit value error values returned by driver |
| 6646 | * The nan_i.h in AOSP project platform/hardware/qcom/wlan |
| 6647 | * NanInternalStatusType includes these values. |
| 6648 | */ |
| 6649 | QCA_WLAN_VENDOR_ATTR_NDP_DRV_RETURN_VALUE, |
| 6650 | /* Unsigned 32-bit value for Channel setup configuration |
| 6651 | * The wifi_nan.h in AOSP project platform/hardware/libhardware_legacy |
| 6652 | * NanDataPathChannelCfg includes these values. |
| 6653 | */ |
| 6654 | QCA_WLAN_VENDOR_ATTR_NDP_CHANNEL_CONFIG, |
| 6655 | /* Unsigned 32-bit value for Cipher Suite Shared Key Type */ |
| 6656 | QCA_WLAN_VENDOR_ATTR_NDP_CSID, |
| 6657 | /* Array of u8: len = NAN_PMK_INFO_LEN 32 bytes */ |
| 6658 | QCA_WLAN_VENDOR_ATTR_NDP_PMK, |
| 6659 | /* Security Context Identifier that contains the PMKID |
| 6660 | * Array of u8: len = NAN_SCID_BUF_LEN 1024 bytes |
| 6661 | */ |
| 6662 | QCA_WLAN_VENDOR_ATTR_NDP_SCID, |
| 6663 | /* Array of u8: len = NAN_SECURITY_MAX_PASSPHRASE_LEN 63 bytes */ |
| 6664 | QCA_WLAN_VENDOR_ATTR_NDP_PASSPHRASE, |
| 6665 | /* Array of u8: len = NAN_MAX_SERVICE_NAME_LEN 255 bytes */ |
| 6666 | QCA_WLAN_VENDOR_ATTR_NDP_SERVICE_NAME, |
| 6667 | /* Unsigned 32-bit bitmap indicating schedule update |
| 6668 | * BIT_0: NSS Update |
| 6669 | * BIT_1: Channel list update |
| 6670 | */ |
| 6671 | QCA_WLAN_VENDOR_ATTR_NDP_SCHEDULE_UPDATE_REASON, |
| 6672 | /* Unsigned 32-bit value for NSS */ |
| 6673 | QCA_WLAN_VENDOR_ATTR_NDP_NSS, |
| 6674 | /* Unsigned 32-bit value for NUMBER NDP CHANNEL */ |
| 6675 | QCA_WLAN_VENDOR_ATTR_NDP_NUM_CHANNELS, |
| 6676 | /* Unsigned 32-bit value for CHANNEL BANDWIDTH |
| 6677 | * 0:20 MHz, 1:40 MHz, 2:80 MHz, 3:160 MHz |
| 6678 | */ |
| 6679 | QCA_WLAN_VENDOR_ATTR_NDP_CHANNEL_WIDTH, |
| 6680 | /* Array of channel/band width */ |
| 6681 | QCA_WLAN_VENDOR_ATTR_NDP_CHANNEL_INFO, |
| 6682 | /* IPv6 address used by NDP (in network byte order), 16 bytes array. |
| 6683 | * This attribute is used and optional for ndp request, ndp response, |
| 6684 | * ndp indication, and ndp confirm. |
| 6685 | */ |
| 6686 | QCA_WLAN_VENDOR_ATTR_NDP_IPV6_ADDR = 27, |
| 6687 | /* Unsigned 16-bit value indicating transport port used by NDP. |
| 6688 | * This attribute is used and optional for ndp response, ndp indication, |
| 6689 | * and ndp confirm. |
| 6690 | */ |
| 6691 | QCA_WLAN_VENDOR_ATTR_NDP_TRANSPORT_PORT = 28, |
| 6692 | /* Unsigned 8-bit value indicating protocol used by NDP and assigned by |
| 6693 | * the Internet Assigned Numbers Authority (IANA) as per: |
| 6694 | * https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml |
| 6695 | * This attribute is used and optional for ndp response, ndp indication, |
| 6696 | * and ndp confirm. |
| 6697 | */ |
| 6698 | QCA_WLAN_VENDOR_ATTR_NDP_TRANSPORT_PROTOCOL = 29, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 6699 | /* Unsigned 8-bit value indicating if NDP remote peer supports NAN NDPE. |
| 6700 | * 1:support 0:not support |
| 6701 | */ |
| 6702 | QCA_WLAN_VENDOR_ATTR_PEER_NDPE_SUPPORT = 30, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6703 | |
| 6704 | /* keep last */ |
| 6705 | QCA_WLAN_VENDOR_ATTR_NDP_PARAMS_AFTER_LAST, |
| 6706 | QCA_WLAN_VENDOR_ATTR_NDP_PARAMS_MAX = |
| 6707 | QCA_WLAN_VENDOR_ATTR_NDP_PARAMS_AFTER_LAST - 1, |
| 6708 | }; |
| 6709 | |
| 6710 | enum qca_wlan_ndp_sub_cmd { |
| 6711 | QCA_WLAN_VENDOR_ATTR_NDP_INVALID = 0, |
| 6712 | /* Command to create a NAN data path interface */ |
| 6713 | QCA_WLAN_VENDOR_ATTR_NDP_INTERFACE_CREATE = 1, |
| 6714 | /* Command to delete a NAN data path interface */ |
| 6715 | QCA_WLAN_VENDOR_ATTR_NDP_INTERFACE_DELETE = 2, |
| 6716 | /* Command to initiate a NAN data path session */ |
| 6717 | QCA_WLAN_VENDOR_ATTR_NDP_INITIATOR_REQUEST = 3, |
| 6718 | /* Command to notify if the NAN data path session was sent */ |
| 6719 | QCA_WLAN_VENDOR_ATTR_NDP_INITIATOR_RESPONSE = 4, |
| 6720 | /* Command to respond to NAN data path session */ |
| 6721 | QCA_WLAN_VENDOR_ATTR_NDP_RESPONDER_REQUEST = 5, |
| 6722 | /* Command to notify on the responder about the response */ |
| 6723 | QCA_WLAN_VENDOR_ATTR_NDP_RESPONDER_RESPONSE = 6, |
| 6724 | /* Command to initiate a NAN data path end */ |
| 6725 | QCA_WLAN_VENDOR_ATTR_NDP_END_REQUEST = 7, |
| 6726 | /* Command to notify the if end request was sent */ |
| 6727 | QCA_WLAN_VENDOR_ATTR_NDP_END_RESPONSE = 8, |
| 6728 | /* Command to notify the peer about the end request */ |
| 6729 | QCA_WLAN_VENDOR_ATTR_NDP_REQUEST_IND = 9, |
| 6730 | /* Command to confirm the NAN data path session is complete */ |
| 6731 | QCA_WLAN_VENDOR_ATTR_NDP_CONFIRM_IND = 10, |
| 6732 | /* Command to indicate the peer about the end request being received */ |
| 6733 | QCA_WLAN_VENDOR_ATTR_NDP_END_IND = 11, |
| 6734 | /* Command to indicate the peer of schedule update */ |
| 6735 | QCA_WLAN_VENDOR_ATTR_NDP_SCHEDULE_UPDATE_IND = 12 |
| 6736 | }; |
| 6737 | |
| 6738 | /** |
| 6739 | * enum qca_wlan_vendor_attr_nd_offload - Used by the vendor command |
| 6740 | * QCA_NL80211_VENDOR_SUBCMD_ND_OFFLOAD. |
| 6741 | */ |
| 6742 | enum qca_wlan_vendor_attr_nd_offload { |
| 6743 | QCA_WLAN_VENDOR_ATTR_ND_OFFLOAD_INVALID = 0, |
| 6744 | /* Flag to set Neighbour Discovery offload */ |
| 6745 | QCA_WLAN_VENDOR_ATTR_ND_OFFLOAD_FLAG, |
| 6746 | /* Keep last */ |
| 6747 | QCA_WLAN_VENDOR_ATTR_ND_OFFLOAD_AFTER_LAST, |
| 6748 | QCA_WLAN_VENDOR_ATTR_ND_OFFLOAD_MAX = |
| 6749 | QCA_WLAN_VENDOR_ATTR_ND_OFFLOAD_AFTER_LAST - 1, |
| 6750 | }; |
| 6751 | |
| 6752 | /** |
| 6753 | * enum packet_filter_sub_cmd - Packet filter sub commands |
| 6754 | */ |
| 6755 | enum packet_filter_sub_cmd { |
| 6756 | /** |
| 6757 | * Write packet filter program and/or data. The driver/firmware should |
| 6758 | * disable APF before writing into local buffer and re-enable APF after |
| 6759 | * writing is done. |
| 6760 | */ |
| 6761 | QCA_WLAN_SET_PACKET_FILTER = 1, |
| 6762 | /* Get packet filter feature capabilities from driver */ |
| 6763 | QCA_WLAN_GET_PACKET_FILTER = 2, |
| 6764 | /** |
| 6765 | * Write packet filter program and/or data. User space will send the |
| 6766 | * %QCA_WLAN_DISABLE_PACKET_FILTER command before issuing this command |
| 6767 | * and will send the %QCA_WLAN_ENABLE_PACKET_FILTER afterwards. The key |
| 6768 | * difference from that %QCA_WLAN_SET_PACKET_FILTER is the control over |
| 6769 | * enable/disable is given to user space with this command. Also, |
| 6770 | * user space sends the length of program portion in the buffer within |
| 6771 | * %QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_PROG_LENGTH. |
| 6772 | */ |
| 6773 | QCA_WLAN_WRITE_PACKET_FILTER = 3, |
| 6774 | /* Read packet filter program and/or data */ |
| 6775 | QCA_WLAN_READ_PACKET_FILTER = 4, |
| 6776 | /* Enable APF feature */ |
| 6777 | QCA_WLAN_ENABLE_PACKET_FILTER = 5, |
| 6778 | /* Disable APF feature */ |
| 6779 | QCA_WLAN_DISABLE_PACKET_FILTER = 6, |
| 6780 | }; |
| 6781 | |
| 6782 | /** |
| 6783 | * enum qca_wlan_vendor_attr_packet_filter - BPF control commands used by |
| 6784 | * vendor QCA_NL80211_VENDOR_SUBCMD_PACKET_FILTER. |
| 6785 | */ |
| 6786 | enum qca_wlan_vendor_attr_packet_filter { |
| 6787 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_INVALID = 0, |
| 6788 | /* Unsigned 32-bit enum passed using packet_filter_sub_cmd */ |
| 6789 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_SUB_CMD, |
| 6790 | /* Unsigned 32-bit value indicating the packet filter version */ |
| 6791 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_VERSION, |
| 6792 | /* Unsigned 32-bit value indicating the packet filter id */ |
| 6793 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_ID, |
| 6794 | /** |
| 6795 | * Unsigned 32-bit value indicating the packet filter size including |
| 6796 | * program + data. |
| 6797 | */ |
| 6798 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_SIZE, |
| 6799 | /* Unsigned 32-bit value indicating the packet filter current offset */ |
| 6800 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_CURRENT_OFFSET, |
| 6801 | /* Program and/or data in bytes */ |
| 6802 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_PROGRAM, |
| 6803 | /* Unsigned 32-bit value of the length of the program section in packet |
| 6804 | * filter buffer. |
| 6805 | */ |
| 6806 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_PROG_LENGTH = 7, |
| 6807 | |
| 6808 | /* keep last */ |
| 6809 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_AFTER_LAST, |
| 6810 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_MAX = |
| 6811 | QCA_WLAN_VENDOR_ATTR_PACKET_FILTER_AFTER_LAST - 1, |
| 6812 | }; |
| 6813 | |
| 6814 | /** |
| 6815 | * enum qca_wlan_vendor_drv_info - WLAN driver info used by vendor command |
| 6816 | * QCA_NL80211_VENDOR_SUBCMD_GET_BUS_SIZE. |
| 6817 | */ |
| 6818 | enum qca_wlan_vendor_drv_info { |
| 6819 | QCA_WLAN_VENDOR_ATTR_DRV_INFO_INVALID = 0, |
| 6820 | /* Maximum Message size info between firmware & HOST |
| 6821 | * Unsigned 32-bit value |
| 6822 | */ |
| 6823 | QCA_WLAN_VENDOR_ATTR_DRV_INFO_BUS_SIZE, |
| 6824 | /* keep last */ |
| 6825 | QCA_WLAN_VENDOR_ATTR_DRV_INFO_AFTER_LAST, |
| 6826 | QCA_WLAN_VENDOR_ATTR_DRV_INFO_MAX = |
| 6827 | QCA_WLAN_VENDOR_ATTR_DRV_INFO_AFTER_LAST - 1, |
| 6828 | }; |
| 6829 | |
| 6830 | /** |
| 6831 | * enum qca_wlan_vendor_attr_wake_stats - Wake lock stats used by vendor |
| 6832 | * command QCA_NL80211_VENDOR_SUBCMD_GET_WAKE_REASON_STATS. |
| 6833 | */ |
| 6834 | enum qca_wlan_vendor_attr_wake_stats { |
| 6835 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_INVALID = 0, |
| 6836 | /* Unsigned 32-bit value indicating the total count of wake event */ |
| 6837 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_TOTAL_CMD_EVENT_WAKE, |
| 6838 | /* Array of individual wake count, each index representing wake reason |
| 6839 | */ |
| 6840 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_CMD_EVENT_WAKE_CNT_PTR, |
| 6841 | /* Unsigned 32-bit value representing wake count array */ |
| 6842 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_CMD_EVENT_WAKE_CNT_SZ, |
| 6843 | /* Unsigned 32-bit total wake count value of driver/fw */ |
| 6844 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_TOTAL_DRIVER_FW_LOCAL_WAKE, |
| 6845 | /* Array of wake stats of driver/fw */ |
| 6846 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_DRIVER_FW_LOCAL_WAKE_CNT_PTR, |
| 6847 | /* Unsigned 32-bit total wake count value of driver/fw */ |
| 6848 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_DRIVER_FW_LOCAL_WAKE_CNT_SZ, |
| 6849 | /* Unsigned 32-bit total wake count value of packets received */ |
| 6850 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_TOTAL_RX_DATA_WAKE, |
| 6851 | /* Unsigned 32-bit wake count value unicast packets received */ |
| 6852 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_RX_UNICAST_CNT, |
| 6853 | /* Unsigned 32-bit wake count value multicast packets received */ |
| 6854 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_RX_MULTICAST_CNT, |
| 6855 | /* Unsigned 32-bit wake count value broadcast packets received */ |
| 6856 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_RX_BROADCAST_CNT, |
| 6857 | /* Unsigned 32-bit wake count value of ICMP packets */ |
| 6858 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP_PKT, |
| 6859 | /* Unsigned 32-bit wake count value of ICMP6 packets */ |
| 6860 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP6_PKT, |
| 6861 | /* Unsigned 32-bit value ICMP6 router advertisement */ |
| 6862 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP6_RA, |
| 6863 | /* Unsigned 32-bit value ICMP6 neighbor advertisement */ |
| 6864 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP6_NA, |
| 6865 | /* Unsigned 32-bit value ICMP6 neighbor solicitation */ |
| 6866 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP6_NS, |
| 6867 | /* Unsigned 32-bit wake count value of receive side ICMP4 multicast */ |
| 6868 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP4_RX_MULTICAST_CNT, |
| 6869 | /* Unsigned 32-bit wake count value of receive side ICMP6 multicast */ |
| 6870 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_ICMP6_RX_MULTICAST_CNT, |
| 6871 | /* Unsigned 32-bit wake count value of receive side multicast */ |
| 6872 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_OTHER_RX_MULTICAST_CNT, |
| 6873 | /* Unsigned 32-bit wake count value of a given RSSI breach */ |
| 6874 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_RSSI_BREACH_CNT, |
| 6875 | /* Unsigned 32-bit wake count value of low RSSI */ |
| 6876 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_LOW_RSSI_CNT, |
| 6877 | /* Unsigned 32-bit value GSCAN count */ |
| 6878 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_GSCAN_CNT, |
| 6879 | /* Unsigned 32-bit value PNO complete count */ |
| 6880 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_PNO_COMPLETE_CNT, |
| 6881 | /* Unsigned 32-bit value PNO match count */ |
| 6882 | QCA_WLAN_VENDOR_ATTR_WAKE_STATS_PNO_MATCH_CNT, |
| 6883 | /* keep last */ |
| 6884 | QCA_WLAN_VENDOR_GET_WAKE_STATS_AFTER_LAST, |
| 6885 | QCA_WLAN_VENDOR_GET_WAKE_STATS_MAX = |
| 6886 | QCA_WLAN_VENDOR_GET_WAKE_STATS_AFTER_LAST - 1, |
| 6887 | }; |
| 6888 | |
| 6889 | /** |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6890 | * enum qca_wlan_vendor_thermal_level - Defines various thermal levels |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 6891 | * configured by userspace to the driver/firmware. |
| 6892 | * The values can be encapsulated in QCA_WLAN_VENDOR_ATTR_THERMAL_LEVEL or |
| 6893 | * QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_LEVEL attribute. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6894 | * The driver/firmware takes actions requested by userspace such as throttling |
| 6895 | * wifi TX etc. in order to mitigate high temperature. |
| 6896 | * |
| 6897 | * @QCA_WLAN_VENDOR_THERMAL_LEVEL_NONE: Stop/clear all throttling actions. |
| 6898 | * @QCA_WLAN_VENDOR_THERMAL_LEVEL_LIGHT: Throttle TX lightly. |
| 6899 | * @QCA_WLAN_VENDOR_THERMAL_LEVEL_MODERATE: Throttle TX moderately. |
| 6900 | * @QCA_WLAN_VENDOR_THERMAL_LEVEL_SEVERE: Throttle TX severely. |
| 6901 | * @QCA_WLAN_VENDOR_THERMAL_LEVEL_CRITICAL: Critical thermal level reached. |
| 6902 | * @QCA_WLAN_VENDOR_THERMAL_LEVEL_EMERGENCY: Emergency thermal level reached. |
| 6903 | */ |
| 6904 | enum qca_wlan_vendor_thermal_level { |
| 6905 | QCA_WLAN_VENDOR_THERMAL_LEVEL_NONE = 0, |
| 6906 | QCA_WLAN_VENDOR_THERMAL_LEVEL_LIGHT = 1, |
| 6907 | QCA_WLAN_VENDOR_THERMAL_LEVEL_MODERATE = 2, |
| 6908 | QCA_WLAN_VENDOR_THERMAL_LEVEL_SEVERE = 3, |
| 6909 | QCA_WLAN_VENDOR_THERMAL_LEVEL_CRITICAL = 4, |
| 6910 | QCA_WLAN_VENDOR_THERMAL_LEVEL_EMERGENCY = 5, |
| 6911 | }; |
| 6912 | |
| 6913 | /** |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6914 | * enum qca_wlan_vendor_attr_thermal_cmd - Vendor subcmd attributes to set |
| 6915 | * cmd value. Used for NL attributes for data used by |
| 6916 | * QCA_NL80211_VENDOR_SUBCMD_THERMAL_CMD sub command. |
| 6917 | */ |
| 6918 | enum qca_wlan_vendor_attr_thermal_cmd { |
| 6919 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_INVALID = 0, |
| 6920 | /* The value of command, driver will implement different operations |
| 6921 | * according to this value. It uses values defined in |
| 6922 | * enum qca_wlan_vendor_attr_thermal_cmd_type. |
| 6923 | * u32 attribute. |
| 6924 | */ |
| 6925 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_VALUE = 1, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6926 | /* Userspace uses this attribute to configure thermal level to the |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 6927 | * driver/firmware, or get thermal level from the driver/firmware. |
| 6928 | * Used in request or response, u32 attribute, |
| 6929 | * possible values are defined in enum qca_wlan_vendor_thermal_level. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6930 | */ |
| 6931 | QCA_WLAN_VENDOR_ATTR_THERMAL_LEVEL = 2, |
| 6932 | /* Userspace uses this attribute to configure the time in which the |
| 6933 | * driver/firmware should complete applying settings it received from |
| 6934 | * userspace with QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_SET_LEVEL |
| 6935 | * command type. Used in request, u32 attribute, value is in |
| 6936 | * milliseconds. A value of zero indicates to apply the settings |
| 6937 | * immediately. The driver/firmware can delay applying the configured |
| 6938 | * thermal settings within the time specified in this attribute if |
| 6939 | * there is any critical ongoing operation. |
| 6940 | */ |
| 6941 | QCA_WLAN_VENDOR_ATTR_THERMAL_COMPLETION_WINDOW = 3, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6942 | |
| 6943 | /* keep last */ |
| 6944 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_AFTER_LAST, |
| 6945 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_MAX = |
| 6946 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_AFTER_LAST - 1 |
| 6947 | }; |
| 6948 | |
| 6949 | /** |
| 6950 | * qca_wlan_vendor_attr_thermal_cmd_type: Attribute values for |
| 6951 | * QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_VALUE to the vendor subcmd |
| 6952 | * QCA_NL80211_VENDOR_SUBCMD_THERMAL_CMD. This represents the |
| 6953 | * thermal command types sent to driver. |
| 6954 | * @QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_PARAMS: Request to |
| 6955 | * get thermal shutdown configuration parameters for display. Parameters |
| 6956 | * responded from driver are defined in |
| 6957 | * enum qca_wlan_vendor_attr_get_thermal_params_rsp. |
| 6958 | * @QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_TEMPERATURE: Request to |
| 6959 | * get temperature. Host should respond with a temperature data. It is defined |
| 6960 | * in enum qca_wlan_vendor_attr_thermal_get_temperature. |
| 6961 | * @QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_SUSPEND: Request to execute thermal |
| 6962 | * suspend action. |
| 6963 | * @QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_RESUME: Request to execute thermal |
| 6964 | * resume action. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6965 | * @QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_SET_LEVEL: Configure thermal level to |
| 6966 | * the driver/firmware. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 6967 | * @QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_LEVEL: Request to get the current |
| 6968 | * thermal level from the driver/firmware. The driver should respond with a |
| 6969 | * thermal level defined in enum qca_wlan_vendor_thermal_level. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6970 | */ |
| 6971 | enum qca_wlan_vendor_attr_thermal_cmd_type { |
| 6972 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_PARAMS, |
| 6973 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_TEMPERATURE, |
| 6974 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_SUSPEND, |
| 6975 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_RESUME, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 6976 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_SET_LEVEL, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 6977 | QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_LEVEL, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 6978 | }; |
| 6979 | |
| 6980 | /** |
| 6981 | * enum qca_wlan_vendor_attr_thermal_get_temperature - vendor subcmd attributes |
| 6982 | * to get chip temperature by user. |
| 6983 | * enum values are used for NL attributes for data used by |
| 6984 | * QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_TEMPERATURE command for data used |
| 6985 | * by QCA_NL80211_VENDOR_SUBCMD_THERMAL_CMD sub command. |
| 6986 | */ |
| 6987 | enum qca_wlan_vendor_attr_thermal_get_temperature { |
| 6988 | QCA_WLAN_VENDOR_ATTR_THERMAL_GET_TEMPERATURE_INVALID = 0, |
| 6989 | /* Temperature value (degree Celsius) from driver. |
| 6990 | * u32 attribute. |
| 6991 | */ |
| 6992 | QCA_WLAN_VENDOR_ATTR_THERMAL_GET_TEMPERATURE_DATA, |
| 6993 | |
| 6994 | /* keep last */ |
| 6995 | QCA_WLAN_VENDOR_ATTR_THERMAL_GET_TEMPERATURE_AFTER_LAST, |
| 6996 | QCA_WLAN_VENDOR_ATTR_THERMAL_GET_TEMPERATURE_MAX = |
| 6997 | QCA_WLAN_VENDOR_ATTR_THERMAL_GET_TEMPERATURE_AFTER_LAST - 1, |
| 6998 | }; |
| 6999 | |
| 7000 | /** |
| 7001 | * enum qca_wlan_vendor_attr_get_thermal_params_rsp - vendor subcmd attributes |
| 7002 | * to get configuration parameters of thermal shutdown feature. Enum values are |
| 7003 | * used by QCA_WLAN_VENDOR_ATTR_THERMAL_CMD_TYPE_GET_PARAMS command for data |
| 7004 | * used by QCA_NL80211_VENDOR_SUBCMD_THERMAL_CMD sub command. |
| 7005 | */ |
| 7006 | enum qca_wlan_vendor_attr_get_thermal_params_rsp { |
| 7007 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_INVALID = 0, |
| 7008 | /* Indicate if the thermal shutdown feature is enabled. |
| 7009 | * NLA_FLAG attribute. |
| 7010 | */ |
| 7011 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_SHUTDOWN_EN, |
| 7012 | /* Indicate if the auto mode is enabled. |
| 7013 | * Enable: Driver triggers the suspend/resume action. |
| 7014 | * Disable: User space triggers the suspend/resume action. |
| 7015 | * NLA_FLAG attribute. |
| 7016 | */ |
| 7017 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_SHUTDOWN_AUTO_EN, |
| 7018 | /* Thermal resume threshold (degree Celsius). Issue the resume command |
| 7019 | * if the temperature value is lower than this threshold. |
| 7020 | * u16 attribute. |
| 7021 | */ |
| 7022 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_RESUME_THRESH, |
| 7023 | /* Thermal warning threshold (degree Celsius). FW reports temperature |
| 7024 | * to driver if it's higher than this threshold. |
| 7025 | * u16 attribute. |
| 7026 | */ |
| 7027 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_WARNING_THRESH, |
| 7028 | /* Thermal suspend threshold (degree Celsius). Issue the suspend command |
| 7029 | * if the temperature value is higher than this threshold. |
| 7030 | * u16 attribute. |
| 7031 | */ |
| 7032 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_SUSPEND_THRESH, |
| 7033 | /* FW reports temperature data periodically at this interval (ms). |
| 7034 | * u16 attribute. |
| 7035 | */ |
| 7036 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_SAMPLE_RATE, |
| 7037 | |
| 7038 | /* keep last */ |
| 7039 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_AFTER_LAST, |
| 7040 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_MAX = |
| 7041 | QCA_WLAN_VENDOR_ATTR_GET_THERMAL_PARAMS_RSP_AFTER_LAST - 1, |
| 7042 | }; |
| 7043 | |
| 7044 | /** |
| 7045 | * enum qca_wlan_vendor_attr_thermal_event - vendor subcmd attributes to |
| 7046 | * report thermal events from driver to user space. |
| 7047 | * enum values are used for NL attributes for data used by |
| 7048 | * QCA_NL80211_VENDOR_SUBCMD_THERMAL_EVENT sub command. |
| 7049 | */ |
| 7050 | enum qca_wlan_vendor_attr_thermal_event { |
| 7051 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_INVALID = 0, |
| 7052 | /* Temperature value (degree Celsius) from driver. |
| 7053 | * u32 attribute. |
| 7054 | */ |
| 7055 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_TEMPERATURE, |
| 7056 | /* Indication of resume completion from power save mode. |
| 7057 | * NLA_FLAG attribute. |
| 7058 | */ |
| 7059 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_RESUME_COMPLETE, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7060 | /* Thermal level from the driver. |
| 7061 | * u32 attribute. Possible values are defined in |
| 7062 | * enum qca_wlan_vendor_thermal_level. |
| 7063 | */ |
| 7064 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_LEVEL = 3, |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 7065 | |
| 7066 | /* keep last */ |
| 7067 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_AFTER_LAST, |
| 7068 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_MAX = |
| 7069 | QCA_WLAN_VENDOR_ATTR_THERMAL_EVENT_AFTER_LAST - 1, |
| 7070 | }; |
| 7071 | |
| 7072 | /** |
| 7073 | * enum he_fragmentation_val - HE fragmentation support values |
| 7074 | * Indicates level of dynamic fragmentation that is supported by |
| 7075 | * a STA as a recipient. |
| 7076 | * HE fragmentation values are defined in IEEE P802.11ax/D2.0, 9.4.2.237.2 |
| 7077 | * (HE MAC Capabilities Information field) and are used in HE Capabilities |
| 7078 | * element to advertise the support. These values are validated in the driver |
| 7079 | * to check the device capability and advertised in the HE Capabilities |
| 7080 | * element. These values are used to configure testbed device to allow the |
| 7081 | * advertised hardware capabilities to be downgraded for testing purposes. |
| 7082 | * |
| 7083 | * @HE_FRAG_DISABLE: no support for dynamic fragmentation |
| 7084 | * @HE_FRAG_LEVEL1: support for dynamic fragments that are |
| 7085 | * contained within an MPDU or S-MPDU, no support for dynamic fragments |
| 7086 | * within an A-MPDU that is not an S-MPDU. |
| 7087 | * @HE_FRAG_LEVEL2: support for dynamic fragments that are |
| 7088 | * contained within an MPDU or S-MPDU and support for up to one dynamic |
| 7089 | * fragment for each MSDU, each A-MSDU if supported by the recipient, and |
| 7090 | * each MMPDU within an A-MPDU or multi-TID A-MPDU that is not an |
| 7091 | * MPDU or S-MPDU. |
| 7092 | * @HE_FRAG_LEVEL3: support for dynamic fragments that are |
| 7093 | * contained within an MPDU or S-MPDU and support for multiple dynamic |
| 7094 | * fragments for each MSDU and for each A-MSDU if supported by the |
| 7095 | * recipient within an A-MPDU or multi-TID AMPDU and up to one dynamic |
| 7096 | * fragment for each MMPDU in a multi-TID A-MPDU that is not an S-MPDU. |
| 7097 | */ |
| 7098 | enum he_fragmentation_val { |
| 7099 | HE_FRAG_DISABLE, |
| 7100 | HE_FRAG_LEVEL1, |
| 7101 | HE_FRAG_LEVEL2, |
| 7102 | HE_FRAG_LEVEL3, |
| 7103 | }; |
| 7104 | |
| 7105 | /** |
| 7106 | * enum he_mcs_config - HE MCS support configuration |
| 7107 | * |
| 7108 | * Configures the HE Tx/Rx MCS map in HE capability IE for given bandwidth. |
| 7109 | * These values are used in driver to configure the HE MCS map to advertise |
| 7110 | * Tx/Rx MCS map in HE capability and these values are applied for all the |
| 7111 | * streams supported by the device. To configure MCS for different bandwidths, |
| 7112 | * vendor command needs to be sent using this attribute with appropriate value. |
| 7113 | * For example, to configure HE_80_MCS_0_7, send vendor command using HE MCS |
| 7114 | * attribute with HE_80_MCS0_7. And to configure HE MCS for HE_160_MCS0_11 |
| 7115 | * send this command using HE MCS config attribute with value HE_160_MCS0_11. |
| 7116 | * These values are used to configure testbed device to allow the advertised |
| 7117 | * hardware capabilities to be downgraded for testing purposes. The enum values |
| 7118 | * are defined such that BIT[1:0] indicates the MCS map value. Values 3,7 and |
| 7119 | * 11 are not used as BIT[1:0] value is 3 which is used to disable MCS map. |
| 7120 | * These values are validated in the driver before setting the MCS map and |
| 7121 | * driver returns error if the input is other than these enum values. |
| 7122 | * |
| 7123 | * @HE_80_MCS0_7: support for HE 80/40/20 MHz MCS 0 to 7 |
| 7124 | * @HE_80_MCS0_9: support for HE 80/40/20 MHz MCS 0 to 9 |
| 7125 | * @HE_80_MCS0_11: support for HE 80/40/20 MHz MCS 0 to 11 |
| 7126 | * @HE_160_MCS0_7: support for HE 160 MHz MCS 0 to 7 |
| 7127 | * @HE_160_MCS0_9: support for HE 160 MHz MCS 0 to 9 |
| 7128 | * @HE_160_MCS0_11: support for HE 160 MHz MCS 0 to 11 |
| 7129 | * @HE_80P80_MCS0_7: support for HE 80p80 MHz MCS 0 to 7 |
| 7130 | * @HE_80P80_MCS0_9: support for HE 80p80 MHz MCS 0 to 9 |
| 7131 | * @HE_80P80_MCS0_11: support for HE 80p80 MHz MCS 0 to 11 |
| 7132 | */ |
| 7133 | enum he_mcs_config { |
| 7134 | HE_80_MCS0_7 = 0, |
| 7135 | HE_80_MCS0_9 = 1, |
| 7136 | HE_80_MCS0_11 = 2, |
| 7137 | HE_160_MCS0_7 = 4, |
| 7138 | HE_160_MCS0_9 = 5, |
| 7139 | HE_160_MCS0_11 = 6, |
| 7140 | HE_80P80_MCS0_7 = 8, |
| 7141 | HE_80P80_MCS0_9 = 9, |
| 7142 | HE_80P80_MCS0_11 = 10, |
| 7143 | }; |
| 7144 | |
| 7145 | /** |
| 7146 | * enum qca_wlan_ba_session_config - BA session configuration |
| 7147 | * |
| 7148 | * Indicates the configuration values for BA session configuration attribute. |
| 7149 | * |
| 7150 | * @QCA_WLAN_ADD_BA: Establish a new BA session with given configuration. |
| 7151 | * @QCA_WLAN_DELETE_BA: Delete the existing BA session for given TID. |
| 7152 | */ |
| 7153 | enum qca_wlan_ba_session_config { |
| 7154 | QCA_WLAN_ADD_BA = 1, |
| 7155 | QCA_WLAN_DELETE_BA = 2, |
| 7156 | }; |
| 7157 | |
| 7158 | /** |
| 7159 | * enum qca_wlan_ac_type - Access category type |
| 7160 | * |
| 7161 | * Indicates the access category type value. |
| 7162 | * |
| 7163 | * @QCA_WLAN_AC_BE: BE access category |
| 7164 | * @QCA_WLAN_AC_BK: BK access category |
| 7165 | * @QCA_WLAN_AC_VI: VI access category |
| 7166 | * @QCA_WLAN_AC_VO: VO access category |
| 7167 | * @QCA_WLAN_AC_ALL: All ACs |
| 7168 | */ |
| 7169 | enum qca_wlan_ac_type { |
| 7170 | QCA_WLAN_AC_BE = 0, |
| 7171 | QCA_WLAN_AC_BK = 1, |
| 7172 | QCA_WLAN_AC_VI = 2, |
| 7173 | QCA_WLAN_AC_VO = 3, |
| 7174 | QCA_WLAN_AC_ALL = 4, |
| 7175 | }; |
| 7176 | |
| 7177 | /** |
| 7178 | * enum qca_wlan_he_ltf_cfg - HE LTF configuration |
| 7179 | * |
| 7180 | * Indicates the HE LTF configuration value. |
| 7181 | * |
| 7182 | * @QCA_WLAN_HE_LTF_AUTO: HE-LTF is automatically set to the mandatory HE-LTF, |
| 7183 | * based on the GI setting |
| 7184 | * @QCA_WLAN_HE_LTF_1X: 1X HE LTF is 3.2us LTF |
| 7185 | * @QCA_WLAN_HE_LTF_2X: 2X HE LTF is 6.4us LTF |
| 7186 | * @QCA_WLAN_HE_LTF_4X: 4X HE LTF is 12.8us LTF |
| 7187 | */ |
| 7188 | enum qca_wlan_he_ltf_cfg { |
| 7189 | QCA_WLAN_HE_LTF_AUTO = 0, |
| 7190 | QCA_WLAN_HE_LTF_1X = 1, |
| 7191 | QCA_WLAN_HE_LTF_2X = 2, |
| 7192 | QCA_WLAN_HE_LTF_4X = 3, |
| 7193 | }; |
| 7194 | |
Hai Shalom | c9e41a1 | 2018-07-31 14:41:42 -0700 | [diff] [blame] | 7195 | /** |
| 7196 | * enum qca_wlan_he_mac_padding_dur - HE trigger frame MAC padding duration |
| 7197 | * |
| 7198 | * Indicates the HE trigger frame MAC padding duration value. |
| 7199 | * |
| 7200 | * @QCA_WLAN_HE_NO_ADDITIONAL_PROCESS_TIME: no additional time required to |
| 7201 | * process the trigger frame. |
| 7202 | * @QCA_WLAN_HE_8US_OF_PROCESS_TIME: indicates the 8us of processing time for |
| 7203 | * trigger frame. |
| 7204 | * @QCA_WLAN_HE_16US_OF_PROCESS_TIME: indicates the 16us of processing time for |
| 7205 | * trigger frame. |
| 7206 | */ |
| 7207 | enum qca_wlan_he_mac_padding_dur { |
| 7208 | QCA_WLAN_HE_NO_ADDITIONAL_PROCESS_TIME = 0, |
| 7209 | QCA_WLAN_HE_8US_OF_PROCESS_TIME = 1, |
| 7210 | QCA_WLAN_HE_16US_OF_PROCESS_TIME = 2, |
| 7211 | }; |
| 7212 | |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 7213 | /** |
| 7214 | * enum qca_wlan_he_om_ctrl_ch_bw - HE OM control field BW configuration |
| 7215 | * |
| 7216 | * Indicates the HE Operating mode control channel width setting value. |
| 7217 | * |
| 7218 | * @QCA_WLAN_HE_OM_CTRL_BW_20M: Primary 20 MHz |
| 7219 | * @QCA_WLAN_HE_OM_CTRL_BW_40M: Primary 40 MHz |
| 7220 | * @QCA_WLAN_HE_OM_CTRL_BW_80M: Primary 80 MHz |
| 7221 | * @QCA_WLAN_HE_OM_CTRL_BW_160M: 160 MHz and 80+80 MHz |
| 7222 | */ |
| 7223 | enum qca_wlan_he_om_ctrl_ch_bw { |
| 7224 | QCA_WLAN_HE_OM_CTRL_BW_20M = 0, |
| 7225 | QCA_WLAN_HE_OM_CTRL_BW_40M = 1, |
| 7226 | QCA_WLAN_HE_OM_CTRL_BW_80M = 2, |
| 7227 | QCA_WLAN_HE_OM_CTRL_BW_160M = 3, |
| 7228 | }; |
| 7229 | |
| 7230 | /** |
| 7231 | * enum qca_wlan_vendor_attr_he_omi_tx: Represents attributes for |
| 7232 | * HE operating mode control transmit request. These attributes are |
| 7233 | * sent as part of QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OMI_TX and |
| 7234 | * QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION. |
| 7235 | * |
| 7236 | * @QCA_WLAN_VENDOR_ATTR_HE_OMI_RX_NSS: Mandatory 8-bit unsigned value |
| 7237 | * indicates the maximum number of spatial streams, NSS, that the STA |
| 7238 | * supports in reception for PPDU bandwidths less than or equal to 80 MHz |
| 7239 | * and is set to NSS - 1. |
| 7240 | * |
| 7241 | * @QCA_WLAN_VENDOR_ATTR_HE_OMI_CH_BW: Mandatory 8-bit unsigned value |
| 7242 | * indicates the operating channel width supported by the STA for both |
| 7243 | * reception and transmission. Uses enum qca_wlan_he_om_ctrl_ch_bw values. |
| 7244 | * |
| 7245 | * @QCA_WLAN_VENDOR_ATTR_HE_OMI_ULMU_DISABLE: Mandatory 8-bit unsigned value |
| 7246 | * indicates the all trigger based UL MU operations by the STA. |
| 7247 | * 0 - UL MU operations are enabled by the STA. |
| 7248 | * 1 - All triggered UL MU transmissions are suspended by the STA. |
| 7249 | * |
| 7250 | * @QCA_WLAN_VENDOR_ATTR_HE_OMI_TX_NSTS: Mandatory 8-bit unsigned value |
| 7251 | * indicates the maximum number of space-time streams, NSTS, that |
| 7252 | * the STA supports in transmission and is set to NSTS - 1. |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 7253 | * |
| 7254 | * @QCA_WLAN_VENDOR_ATTR_HE_OMI_ULMU_DATA_DISABLE: 8-bit unsigned value |
| 7255 | * combined with the UL MU Disable subfield and the recipient's setting |
| 7256 | * of the OM Control UL MU Data Disable RX Support subfield in the HE MAC |
| 7257 | * capabilities to determine which HE TB PPDUs are possible by the |
| 7258 | * STA to transmit. |
| 7259 | * 0 - UL MU data operations are enabled by the STA. |
| 7260 | * 1 - Determine which HE TB PPDU types are allowed by the STA if UL MU disable |
| 7261 | * bit is not set, else UL MU Tx is suspended. |
| 7262 | * |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 7263 | */ |
| 7264 | enum qca_wlan_vendor_attr_he_omi_tx { |
| 7265 | QCA_WLAN_VENDOR_ATTR_HE_OMI_INVALID = 0, |
| 7266 | QCA_WLAN_VENDOR_ATTR_HE_OMI_RX_NSS = 1, |
| 7267 | QCA_WLAN_VENDOR_ATTR_HE_OMI_CH_BW = 2, |
| 7268 | QCA_WLAN_VENDOR_ATTR_HE_OMI_ULMU_DISABLE = 3, |
| 7269 | QCA_WLAN_VENDOR_ATTR_HE_OMI_TX_NSTS = 4, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 7270 | QCA_WLAN_VENDOR_ATTR_HE_OMI_ULMU_DATA_DISABLE = 5, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 7271 | |
| 7272 | /* keep last */ |
| 7273 | QCA_WLAN_VENDOR_ATTR_HE_OMI_AFTER_LAST, |
| 7274 | QCA_WLAN_VENDOR_ATTR_HE_OMI_MAX = |
| 7275 | QCA_WLAN_VENDOR_ATTR_HE_OMI_AFTER_LAST - 1, |
| 7276 | }; |
| 7277 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7278 | /** |
| 7279 | * enum qca_wlan_vendor_phy_mode - Different PHY modes |
| 7280 | * These values are used with %QCA_WLAN_VENDOR_ATTR_CONFIG_PHY_MODE. |
| 7281 | * |
| 7282 | * @QCA_WLAN_VENDOR_PHY_MODE_AUTO: autoselect |
| 7283 | * @QCA_WLAN_VENDOR_PHY_MODE_2G_AUTO: 2.4 GHz 802.11b/g/n/ax autoselect |
| 7284 | * @QCA_WLAN_VENDOR_PHY_MODE_5G_AUTO: 5 GHz 802.11a/n/ac/ax autoselect |
| 7285 | * @QCA_WLAN_VENDOR_PHY_MODE_11A: 5 GHz, OFDM |
| 7286 | * @QCA_WLAN_VENDOR_PHY_MODE_11B: 2.4 GHz, CCK |
| 7287 | * @QCA_WLAN_VENDOR_PHY_MODE_11G: 2.4 GHz, OFDM |
| 7288 | * @QCA_WLAN_VENDOR_PHY_MODE_11AGN: Support 802.11n in both 2.4 GHz and 5 GHz |
| 7289 | * @QCA_WLAN_VENDOR_PHY_MODE_11NG_HT20: 2.4 GHz, HT20 |
| 7290 | * @QCA_WLAN_VENDOR_PHY_MODE_11NG_HT40PLUS: 2.4 GHz, HT40 (ext ch +1) |
| 7291 | * @QCA_WLAN_VENDOR_PHY_MODE_11NG_HT40MINUS: 2.4 GHz, HT40 (ext ch -1) |
| 7292 | * @QCA_WLAN_VENDOR_PHY_MODE_11NG_HT40: 2.4 GHz, Auto HT40 |
| 7293 | * @QCA_WLAN_VENDOR_PHY_MODE_11NA_HT20: 5 GHz, HT20 |
| 7294 | * @QCA_WLAN_VENDOR_PHY_MODE_11NA_HT40PLUS: 5 GHz, HT40 (ext ch +1) |
| 7295 | * @QCA_WLAN_VENDOR_PHY_MODE_11NA_HT40MINUS: 5 GHz, HT40 (ext ch -1) |
| 7296 | * @QCA_WLAN_VENDOR_PHY_MODE_11NA_HT40: 5 GHz, Auto HT40 |
| 7297 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT20: 5 GHz, VHT20 |
| 7298 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40PLUS: 5 GHz, VHT40 (Ext ch +1) |
| 7299 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40MINUS: 5 GHz VHT40 (Ext ch -1) |
| 7300 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40: 5 GHz, VHT40 |
| 7301 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT80: 5 GHz, VHT80 |
| 7302 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT80P80: 5 GHz, VHT80+80 |
| 7303 | * @QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT160: 5 GHz, VHT160 |
| 7304 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE20: HE20 |
| 7305 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE40: HE40 |
| 7306 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE40PLUS: HE40 (ext ch +1) |
| 7307 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE40MINUS: HE40 (ext ch -1) |
| 7308 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE80: HE80 |
| 7309 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE80P80: HE 80P80 |
| 7310 | * @QCA_WLAN_VENDOR_PHY_MODE_11AX_HE160: HE160 |
| 7311 | */ |
| 7312 | enum qca_wlan_vendor_phy_mode { |
| 7313 | QCA_WLAN_VENDOR_PHY_MODE_AUTO = 0, |
| 7314 | QCA_WLAN_VENDOR_PHY_MODE_2G_AUTO = 1, |
| 7315 | QCA_WLAN_VENDOR_PHY_MODE_5G_AUTO = 2, |
| 7316 | QCA_WLAN_VENDOR_PHY_MODE_11A = 3, |
| 7317 | QCA_WLAN_VENDOR_PHY_MODE_11B = 4, |
| 7318 | QCA_WLAN_VENDOR_PHY_MODE_11G = 5, |
| 7319 | QCA_WLAN_VENDOR_PHY_MODE_11AGN = 6, |
| 7320 | QCA_WLAN_VENDOR_PHY_MODE_11NG_HT20 = 7, |
| 7321 | QCA_WLAN_VENDOR_PHY_MODE_11NG_HT40PLUS = 8, |
| 7322 | QCA_WLAN_VENDOR_PHY_MODE_11NG_HT40MINUS = 9, |
| 7323 | QCA_WLAN_VENDOR_PHY_MODE_11NG_HT40 = 10, |
| 7324 | QCA_WLAN_VENDOR_PHY_MODE_11NA_HT20 = 11, |
| 7325 | QCA_WLAN_VENDOR_PHY_MODE_11NA_HT40PLUS = 12, |
| 7326 | QCA_WLAN_VENDOR_PHY_MODE_11NA_HT40MINUS = 13, |
| 7327 | QCA_WLAN_VENDOR_PHY_MODE_11NA_HT40 = 14, |
| 7328 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT20 = 15, |
| 7329 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40PLUS = 16, |
| 7330 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40MINUS = 17, |
| 7331 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT40 = 18, |
| 7332 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT80 = 19, |
| 7333 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT80P80 = 20, |
| 7334 | QCA_WLAN_VENDOR_PHY_MODE_11AC_VHT160 = 21, |
| 7335 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE20 = 22, |
| 7336 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE40 = 23, |
| 7337 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE40PLUS = 24, |
| 7338 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE40MINUS = 25, |
| 7339 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE80 = 26, |
| 7340 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE80P80 = 27, |
| 7341 | QCA_WLAN_VENDOR_PHY_MODE_11AX_HE160 = 28, |
| 7342 | }; |
| 7343 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 7344 | /* Attributes for data used by |
| 7345 | * QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION |
| 7346 | */ |
| 7347 | enum qca_wlan_vendor_attr_wifi_test_config { |
| 7348 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_INVALID = 0, |
| 7349 | /* 8-bit unsigned value to configure the driver to enable/disable |
| 7350 | * WMM feature. This attribute is used to configure testbed device. |
| 7351 | * 1-enable, 0-disable |
| 7352 | */ |
| 7353 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_WMM_ENABLE = 1, |
| 7354 | |
| 7355 | /* 8-bit unsigned value to configure the driver to accept/reject |
| 7356 | * the addba request from peer. This attribute is used to configure |
| 7357 | * the testbed device. |
| 7358 | * 1-accept addba, 0-reject addba |
| 7359 | */ |
| 7360 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ACCEPT_ADDBA_REQ = 2, |
| 7361 | |
| 7362 | /* 8-bit unsigned value to configure the driver to send or not to |
| 7363 | * send the addba request to peer. |
| 7364 | * This attribute is used to configure the testbed device. |
| 7365 | * 1-send addba, 0-do not send addba |
| 7366 | */ |
| 7367 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_SEND_ADDBA_REQ = 3, |
| 7368 | |
| 7369 | /* 8-bit unsigned value to indicate the HE fragmentation support. |
| 7370 | * Uses enum he_fragmentation_val values. |
| 7371 | * This attribute is used to configure the testbed device to |
| 7372 | * allow the advertised hardware capabilities to be downgraded |
| 7373 | * for testing purposes. |
| 7374 | */ |
| 7375 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_FRAGMENTATION = 4, |
| 7376 | |
| 7377 | /* 8-bit unsigned value to indicate the HE MCS support. |
| 7378 | * Uses enum he_mcs_config values. |
| 7379 | * This attribute is used to configure the testbed device to |
| 7380 | * allow the advertised hardware capabilities to be downgraded |
| 7381 | * for testing purposes. |
| 7382 | */ |
| 7383 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MCS = 5, |
| 7384 | |
| 7385 | /* 8-bit unsigned value to configure the driver to allow or not to |
| 7386 | * allow the connection with WEP/TKIP in HT/VHT/HE modes. |
| 7387 | * This attribute is used to configure the testbed device. |
| 7388 | * 1-allow WEP/TKIP in HT/VHT/HE, 0-do not allow WEP/TKIP. |
| 7389 | */ |
| 7390 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_WEP_TKIP_IN_HE = 6, |
| 7391 | |
| 7392 | /* 8-bit unsigned value to configure the driver to add a |
| 7393 | * new BA session or delete the existing BA session for |
| 7394 | * given TID. ADDBA command uses the buffer size and TID |
| 7395 | * configuration if user specifies the values else default |
| 7396 | * value for buffer size is used for all TIDs if the TID |
| 7397 | * also not specified. For DEL_BA command TID value is |
| 7398 | * required to process the command. |
| 7399 | * Uses enum qca_wlan_ba_session_config values. |
| 7400 | * This attribute is used to configure the testbed device. |
| 7401 | */ |
| 7402 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADD_DEL_BA_SESSION = 7, |
| 7403 | |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 7404 | /* 16-bit unsigned value to configure the buffer size in addba |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 7405 | * request and response frames. |
| 7406 | * This attribute is used to configure the testbed device. |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 7407 | * The range of the value is 0 to 256. |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 7408 | */ |
| 7409 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ADDBA_BUFF_SIZE = 8, |
| 7410 | |
| 7411 | /* 8-bit unsigned value to configure the buffer size in addba |
| 7412 | * request and response frames. |
| 7413 | * This attribute is used to configure the testbed device. |
| 7414 | */ |
| 7415 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_BA_TID = 9, |
| 7416 | |
| 7417 | /* 8-bit unsigned value to configure the no ack policy. |
| 7418 | * To configure no ack policy, access category value is |
| 7419 | * required to process the command. |
| 7420 | * This attribute is used to configure the testbed device. |
| 7421 | * 1 - enable no ack, 0 - disable no ack. |
| 7422 | */ |
| 7423 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_NO_ACK = 10, |
| 7424 | |
| 7425 | /* 8-bit unsigned value to configure the AC for no ack policy |
| 7426 | * This attribute is used to configure the testbed device. |
| 7427 | * Uses the enum qca_wlan_ac_type values. |
| 7428 | */ |
| 7429 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_NO_ACK_AC = 11, |
| 7430 | |
| 7431 | /* 8-bit unsigned value to configure the HE LTF |
| 7432 | * This attribute is used to configure the testbed device. |
| 7433 | * Uses the enum qca_wlan_he_ltf_cfg values. |
| 7434 | */ |
| 7435 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_LTF = 12, |
| 7436 | |
| 7437 | /* 8-bit unsigned value to configure the tx beamformee. |
| 7438 | * This attribute is used to configure the testbed device. |
| 7439 | * 1-enable, 0-disable. |
| 7440 | */ |
| 7441 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_TX_BEAMFORMEE = 13, |
| 7442 | |
| 7443 | /* 8-bit unsigned value to configure the tx beamformee number |
| 7444 | * of space-time streams. |
| 7445 | * This attribute is used to configure the testbed device. |
| 7446 | * The range of the value is 0 to 8. |
| 7447 | */ |
| 7448 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_TX_BEAMFORMEE_NSTS = 14, |
| 7449 | |
| 7450 | /* 8-bit unsigned value to configure the MU EDCA params for given AC |
| 7451 | * This attribute is used to configure the testbed device. |
| 7452 | * Uses the enum qca_wlan_ac_type values. |
| 7453 | */ |
| 7454 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MU_EDCA_AC = 15, |
| 7455 | |
| 7456 | /* 8-bit unsigned value to configure the MU EDCA AIFSN for given AC |
| 7457 | * To configure MU EDCA AIFSN value, MU EDCA access category value |
| 7458 | * is required to process the command. |
| 7459 | * This attribute is used to configure the testbed device. |
| 7460 | */ |
| 7461 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MU_EDCA_AIFSN = 16, |
| 7462 | |
| 7463 | /* 8-bit unsigned value to configure the MU EDCA ECW min value for |
| 7464 | * given AC. |
| 7465 | * To configure MU EDCA ECW min value, MU EDCA access category value |
| 7466 | * is required to process the command. |
| 7467 | * This attribute is used to configure the testbed device. |
| 7468 | */ |
| 7469 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MU_EDCA_ECWMIN = 17, |
| 7470 | |
| 7471 | /* 8-bit unsigned value to configure the MU EDCA ECW max value for |
| 7472 | * given AC. |
| 7473 | * To configure MU EDCA ECW max value, MU EDCA access category value |
| 7474 | * is required to process the command. |
| 7475 | * This attribute is used to configure the testbed device. |
| 7476 | */ |
| 7477 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MU_EDCA_ECWMAX = 18, |
| 7478 | |
| 7479 | /* 8-bit unsigned value to configure the MU EDCA timer for given AC |
| 7480 | * To configure MU EDCA timer value, MU EDCA access category value |
| 7481 | * is required to process the command. |
| 7482 | * This attribute is used to configure the testbed device. |
| 7483 | */ |
| 7484 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MU_EDCA_TIMER = 19, |
| 7485 | |
Hai Shalom | c9e41a1 | 2018-07-31 14:41:42 -0700 | [diff] [blame] | 7486 | /* 8-bit unsigned value to configure the HE trigger frame MAC padding |
| 7487 | * duration. |
| 7488 | * This attribute is used to configure the testbed device. |
| 7489 | * Uses the enum qca_wlan_he_mac_padding_dur values. |
| 7490 | */ |
| 7491 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_MAC_PADDING_DUR = 20, |
| 7492 | |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 7493 | /* 8-bit unsigned value to override the MU EDCA params to defaults |
| 7494 | * regardless of the AP beacon MU EDCA params. If it is enabled use |
| 7495 | * the default values else use the MU EDCA params from AP beacon. |
| 7496 | * This attribute is used to configure the testbed device. |
| 7497 | * 1-enable, 0-disable. |
| 7498 | */ |
| 7499 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_OVERRIDE_MU_EDCA = 21, |
| 7500 | |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7501 | /* 8-bit unsigned value to configure the support for receiving |
| 7502 | * an MPDU that contains an operating mode control subfield. |
| 7503 | * This attribute is used to configure the testbed device. |
| 7504 | * 1-enable, 0-disable. |
| 7505 | */ |
| 7506 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OM_CTRL_SUPP = 22, |
| 7507 | |
| 7508 | /* Nested attribute values required to setup the TWT session. |
| 7509 | * enum qca_wlan_vendor_attr_twt_setup provides the necessary |
| 7510 | * information to set up the session. It contains broadcast flags, |
| 7511 | * set_up flags, trigger value, flow type, flow ID, wake interval |
| 7512 | * exponent, protection, target wake time, wake duration, wake interval |
| 7513 | * mantissa. These nested attributes are used to setup a host triggered |
| 7514 | * TWT session. |
| 7515 | */ |
| 7516 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_SETUP = 23, |
| 7517 | |
| 7518 | /* This nested attribute is used to terminate the current TWT session. |
| 7519 | * It does not currently carry any attributes. |
| 7520 | */ |
| 7521 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_TERMINATE = 24, |
| 7522 | |
| 7523 | /* This nested attribute is used to suspend the current TWT session. |
| 7524 | * It does not currently carry any attributes. |
| 7525 | */ |
| 7526 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_SUSPEND = 25, |
| 7527 | |
| 7528 | /* Nested attribute values to indicate the request for resume. |
| 7529 | * This attribute is used to resume the TWT session. |
| 7530 | * enum qca_wlan_vendor_attr_twt_resume provides the necessary |
| 7531 | * parameters required to resume the TWT session. |
| 7532 | */ |
| 7533 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_RESUME = 26, |
| 7534 | |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 7535 | /* 8-bit unsigned value to set the HE operating mode control |
| 7536 | * (OM CTRL) Channel Width subfield. |
| 7537 | * The Channel Width subfield indicates the operating channel width |
| 7538 | * supported by the STA for both reception and transmission. |
| 7539 | * Uses the enum qca_wlan_he_om_ctrl_ch_bw values. |
| 7540 | * This setting is cleared with the |
| 7541 | * QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_CLEAR_HE_OM_CTRL_CONFIG |
| 7542 | * flag attribute to reset defaults. |
| 7543 | * This attribute is used to configure the testbed device. |
| 7544 | */ |
| 7545 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OM_CTRL_BW = 27, |
| 7546 | |
| 7547 | /* 8-bit unsigned value to configure the number of spatial |
| 7548 | * streams in HE operating mode control field. |
| 7549 | * This setting is cleared with the |
| 7550 | * QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_CLEAR_HE_OM_CTRL_CONFIG |
| 7551 | * flag attribute to reset defaults. |
| 7552 | * This attribute is used to configure the testbed device. |
| 7553 | */ |
| 7554 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OM_CTRL_NSS = 28, |
| 7555 | |
| 7556 | /* Flag attribute to configure the UL MU disable bit in |
| 7557 | * HE operating mode control field. |
| 7558 | * This setting is cleared with the |
| 7559 | * QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_CLEAR_HE_OM_CTRL_CONFIG |
| 7560 | * flag attribute to reset defaults. |
| 7561 | * This attribute is used to configure the testbed device. |
| 7562 | */ |
| 7563 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OM_CTRL_UL_MU_DISABLE = 29, |
| 7564 | |
| 7565 | /* Flag attribute to clear the previously set HE operating mode |
| 7566 | * control field configuration. |
| 7567 | * This attribute is used to configure the testbed device to reset |
| 7568 | * defaults to clear any previously set HE operating mode control |
| 7569 | * field configuration. |
| 7570 | */ |
| 7571 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_CLEAR_HE_OM_CTRL_CONFIG = 30, |
| 7572 | |
| 7573 | /* 8-bit unsigned value to configure HE single user PPDU |
| 7574 | * transmission. By default this setting is disabled and it |
| 7575 | * is disabled in the reset defaults of the device configuration. |
| 7576 | * This attribute is used to configure the testbed device. |
| 7577 | * 1-enable, 0-disable |
| 7578 | */ |
| 7579 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_TX_SUPPDU = 31, |
| 7580 | |
| 7581 | /* 8-bit unsigned value to configure action frame transmission |
| 7582 | * in HE trigger based PPDU transmission. |
| 7583 | * By default this setting is disabled and it is disabled in |
| 7584 | * the reset defaults of the device configuration. |
| 7585 | * This attribute is used to configure the testbed device. |
| 7586 | * 1-enable, 0-disable |
| 7587 | */ |
| 7588 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_ACTION_TX_TB_PPDU = 32, |
| 7589 | |
| 7590 | /* Nested attribute to indicate HE operating mode control field |
| 7591 | * transmission. It contains operating mode control field Nss, |
| 7592 | * channel bandwidth, Tx Nsts and UL MU disable attributes. |
| 7593 | * These nested attributes are used to send HE operating mode control |
| 7594 | * with configured values. |
| 7595 | * Uses the enum qca_wlan_vendor_attr_he_omi_tx attributes. |
| 7596 | * This attribute is used to configure the testbed device. |
| 7597 | */ |
| 7598 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_OMI_TX = 33, |
| 7599 | |
| 7600 | /* 8-bit unsigned value to configure +HTC_HE support to indicate the |
| 7601 | * support for the reception of a frame that carries an HE variant |
| 7602 | * HT Control field. |
| 7603 | * This attribute is used to configure the testbed device. |
| 7604 | * 1-enable, 0-disable |
| 7605 | */ |
| 7606 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_HTC_HE_SUPP = 34, |
| 7607 | |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 7608 | /* 8-bit unsigned value to configure VHT support in 2.4G band. |
| 7609 | * This attribute is used to configure the testbed device. |
| 7610 | * 1-enable, 0-disable |
| 7611 | */ |
| 7612 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_ENABLE_2G_VHT = 35, |
| 7613 | |
| 7614 | /* 8-bit unsigned value to configure HE testbed defaults. |
| 7615 | * This attribute is used to configure the testbed device. |
| 7616 | * 1-set the device HE capabilities to testbed defaults. |
| 7617 | * 0-reset the device HE capabilities to supported config. |
| 7618 | */ |
| 7619 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_SET_HE_TESTBED_DEFAULTS = 36, |
| 7620 | |
| 7621 | /* 8-bit unsigned value to configure TWT request support. |
| 7622 | * This attribute is used to configure the testbed device. |
| 7623 | * 1-enable, 0-disable. |
| 7624 | */ |
| 7625 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_HE_TWT_REQ_SUPPORT = 37, |
| 7626 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7627 | /* 8-bit unsigned value to configure protection for Management |
| 7628 | * frames when PMF is enabled for the association. |
| 7629 | * This attribute is used to configure the testbed device. |
| 7630 | * 0-use the correct key, 1-use an incorrect key, 2-disable protection. |
| 7631 | */ |
| 7632 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_PMF_PROTECTION = 38, |
| 7633 | |
| 7634 | /* Flag attribute to inject Disassociation frame to the connected AP. |
| 7635 | * This attribute is used to configure the testbed device. |
| 7636 | */ |
| 7637 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_DISASSOC_TX = 39, |
| 7638 | |
| 7639 | /* 8-bit unsigned value to configure an override for the RSNXE Used |
| 7640 | * subfield in the MIC control field of the FTE in FT Reassociation |
| 7641 | * Request frame. |
| 7642 | * 0 - Default behavior, 1 - override with 1, 2 - override with 0. |
| 7643 | * This attribute is used to configure the testbed device. |
| 7644 | * This attribute can be configured only when STA is in associated state |
| 7645 | * and the configuration is valid until the disconnection. |
| 7646 | */ |
| 7647 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_FT_REASSOCREQ_RSNXE_USED = 40, |
| 7648 | |
| 7649 | /* 8-bit unsigned value to configure the driver to ignore CSA (Channel |
| 7650 | * Switch Announcement) when STA is in connected state. |
| 7651 | * 0 - Default behavior, 1 - Ignore CSA. |
| 7652 | * This attribute is used to configure the testbed device. |
| 7653 | * This attribute can be configured only when STA is in associated state |
| 7654 | * and the configuration is valid until the disconnection. |
| 7655 | */ |
| 7656 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_IGNORE_CSA = 41, |
| 7657 | |
| 7658 | /* Nested attribute values required to configure OCI (Operating Channel |
| 7659 | * Information). Attributes defined in enum |
| 7660 | * qca_wlan_vendor_attr_oci_override are nested within this attribute. |
| 7661 | * This attribute is used to configure the testbed device. |
| 7662 | * This attribute can be configured only when STA is in associated state |
| 7663 | * and the configuration is valid until the disconnection. |
| 7664 | */ |
| 7665 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_OCI_OVERRIDE = 42, |
| 7666 | |
| 7667 | /* 8-bit unsigned value to configure the driver/firmware to ignore SA |
| 7668 | * Query timeout. If this configuration is enabled STA shall not send |
| 7669 | * Deauthentication frmae when SA Query times out (mainly, after a |
| 7670 | * channel switch when OCV is enabled). |
| 7671 | * 0 - Default behavior, 1 - Ignore SA Query timeout. |
| 7672 | * This attribute is used to configure the testbed device. |
| 7673 | * This attribute can be configured only when STA is in associated state |
| 7674 | * and the configuration is valid until the disconnection. |
| 7675 | */ |
| 7676 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_IGNORE_SA_QUERY_TIMEOUT = 43, |
| 7677 | |
| 7678 | /* 8-bit unsigned value to configure the driver/firmware to start or |
| 7679 | * stop transmitting FILS discovery frames. |
| 7680 | * 0 - Stop transmitting FILS discovery frames |
| 7681 | * 1 - Start transmitting FILS discovery frames |
| 7682 | * This attribute is used to configure the testbed device. |
| 7683 | * This attribute can be configured only in AP mode and the |
| 7684 | * configuration is valid until AP restart. |
| 7685 | */ |
| 7686 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_FILS_DISCOVERY_FRAMES_TX = 44, |
| 7687 | |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 7688 | /* keep last */ |
| 7689 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_AFTER_LAST, |
| 7690 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_MAX = |
| 7691 | QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_AFTER_LAST - 1, |
| 7692 | }; |
| 7693 | |
| 7694 | /** |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7695 | * enum qca_wlan_twt_operation - Operation of the config TWT request |
| 7696 | * Values for %QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_OPERATION. |
| 7697 | * |
| 7698 | * @QCA_WLAN_TWT_SET: Setup a TWT session. Required parameters are configured |
| 7699 | * through QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS. Refers the enum |
| 7700 | * qca_wlan_vendor_attr_twt_setup. |
| 7701 | * |
| 7702 | * @QCA_WLAN_TWT_GET: Get the configured TWT parameters. Required parameters are |
| 7703 | * obtained through QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS. Refers the enum |
| 7704 | * qca_wlan_vendor_attr_twt_setup. |
| 7705 | * |
| 7706 | * @QCA_WLAN_TWT_TERMINATE: Terminate the TWT session. Required parameters are |
| 7707 | * obtained through QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS. Refers the enum |
| 7708 | * qca_wlan_vendor_attr_twt_setup. Valid only after the TWT session is setup. |
| 7709 | * |
| 7710 | * @QCA_WLAN_TWT_SUSPEND: Suspend the TWT session. Required parameters are |
| 7711 | * obtained through QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS. Refers the enum |
| 7712 | * qca_wlan_vendor_attr_twt_setup. Valid only after the TWT session is setup. |
| 7713 | * |
| 7714 | * @QCA_WLAN_TWT_RESUME: Resume the TWT session. Required parameters are |
| 7715 | * configured through QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS. Refers the enum |
| 7716 | * qca_wlan_vendor_attr_twt_resume. Valid only after the TWT session is setup. |
| 7717 | */ |
| 7718 | enum qca_wlan_twt_operation { |
| 7719 | QCA_WLAN_TWT_SET = 0, |
| 7720 | QCA_WLAN_TWT_GET = 1, |
| 7721 | QCA_WLAN_TWT_TERMINATE = 2, |
| 7722 | QCA_WLAN_TWT_SUSPEND = 3, |
| 7723 | QCA_WLAN_TWT_RESUME = 4, |
| 7724 | }; |
| 7725 | |
| 7726 | /** |
| 7727 | * enum qca_wlan_vendor_attr_config_twt: Defines attributes used by |
| 7728 | * %QCA_NL80211_VENDOR_SUBCMD_CONFIG_TWT. |
| 7729 | * |
| 7730 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_OPERATION: u8 attribute. Specify the TWT |
| 7731 | * operation of this request. Possible values are defined in enum |
| 7732 | * qca_wlan_twt_operation. The parameters for the respective operation is |
| 7733 | * specified through QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS. |
| 7734 | * |
| 7735 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS: Nested attribute representing the |
| 7736 | * parameters configured for TWT. These parameters are represented by |
| 7737 | * enum qca_wlan_vendor_attr_twt_setup or enum qca_wlan_vendor_attr_twt_resume |
| 7738 | * based on the operation. |
| 7739 | */ |
| 7740 | enum qca_wlan_vendor_attr_config_twt { |
| 7741 | QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_INVALID = 0, |
| 7742 | QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_OPERATION = 1, |
| 7743 | QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_PARAMS = 2, |
| 7744 | |
| 7745 | /* keep last */ |
| 7746 | QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_AFTER_LAST, |
| 7747 | QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_MAX = |
| 7748 | QCA_WLAN_VENDOR_ATTR_CONFIG_TWT_AFTER_LAST - 1, |
| 7749 | }; |
| 7750 | |
| 7751 | /** |
Roshan Pius | 3a1667e | 2018-07-03 15:17:14 -0700 | [diff] [blame] | 7752 | * enum qca_wlan_vendor_attr_bss_filter - Used by the vendor command |
| 7753 | * QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER. |
| 7754 | * The user can add/delete the filter by specifying the BSSID/STA MAC address in |
| 7755 | * QCA_WLAN_VENDOR_ATTR_BSS_FILTER_MAC_ADDR, filter type in |
| 7756 | * QCA_WLAN_VENDOR_ATTR_BSS_FILTER_TYPE, add/delete action in |
| 7757 | * QCA_WLAN_VENDOR_ATTR_BSS_FILTER_ACTION in the request. The user can get the |
| 7758 | * statistics of an unassociated station by specifying the MAC address in |
| 7759 | * QCA_WLAN_VENDOR_ATTR_BSS_FILTER_MAC_ADDR, station type in |
| 7760 | * QCA_WLAN_VENDOR_ATTR_BSS_FILTER_TYPE, GET action in |
| 7761 | * QCA_WLAN_VENDOR_ATTR_BSS_FILTER_ACTION in the request. The user also can get |
| 7762 | * the statistics of all unassociated stations by specifying the Broadcast MAC |
| 7763 | * address (ff:ff:ff:ff:ff:ff) in QCA_WLAN_VENDOR_ATTR_BSS_FILTER_MAC_ADDR with |
| 7764 | * above procedure. In the response, driver shall specify statistics |
| 7765 | * information nested in QCA_WLAN_VENDOR_ATTR_BSS_FILTER_STA_STATS. |
| 7766 | */ |
| 7767 | enum qca_wlan_vendor_attr_bss_filter { |
| 7768 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_INVALID = 0, |
| 7769 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_MAC_ADDR = 1, |
| 7770 | /* Other BSS filter type, unsigned 8 bit value. One of the values |
| 7771 | * in enum qca_wlan_vendor_bss_filter_type. |
| 7772 | */ |
| 7773 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_TYPE = 2, |
| 7774 | /* Other BSS filter action, unsigned 8 bit value. One of the values |
| 7775 | * in enum qca_wlan_vendor_bss_filter_action. |
| 7776 | */ |
| 7777 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_ACTION = 3, |
| 7778 | /* Array of nested attributes where each entry is the statistics |
| 7779 | * information of the specified station that belong to another BSS. |
| 7780 | * Attributes for each entry are taken from enum |
| 7781 | * qca_wlan_vendor_bss_filter_sta_stats. |
| 7782 | * Other BSS station configured in |
| 7783 | * QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER with filter type |
| 7784 | * QCA_WLAN_VENDOR_BSS_FILTER_TYPE_STA. |
| 7785 | * Statistics returned by QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER |
| 7786 | * with filter action QCA_WLAN_VENDOR_BSS_FILTER_ACTION_GET. |
| 7787 | */ |
| 7788 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_STA_STATS = 4, |
| 7789 | |
| 7790 | /* keep last */ |
| 7791 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_AFTER_LAST, |
| 7792 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_MAX = |
| 7793 | QCA_WLAN_VENDOR_ATTR_BSS_FILTER_AFTER_LAST - 1, |
| 7794 | }; |
| 7795 | |
| 7796 | /** |
| 7797 | * enum qca_wlan_vendor_bss_filter_type - Type of |
| 7798 | * filter used in other BSS filter operations. Used by the vendor command |
| 7799 | * QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER. |
| 7800 | * |
| 7801 | * @QCA_WLAN_VENDOR_BSS_FILTER_TYPE_BSSID: BSSID filter |
| 7802 | * @QCA_WLAN_VENDOR_BSS_FILTER_TYPE_STA: Station MAC address filter |
| 7803 | */ |
| 7804 | enum qca_wlan_vendor_bss_filter_type { |
| 7805 | QCA_WLAN_VENDOR_BSS_FILTER_TYPE_BSSID, |
| 7806 | QCA_WLAN_VENDOR_BSS_FILTER_TYPE_STA, |
| 7807 | }; |
| 7808 | |
| 7809 | /** |
| 7810 | * enum qca_wlan_vendor_bss_filter_action - Type of |
| 7811 | * action in other BSS filter operations. Used by the vendor command |
| 7812 | * QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER. |
| 7813 | * |
| 7814 | * @QCA_WLAN_VENDOR_BSS_FILTER_ACTION_ADD: Add filter |
| 7815 | * @QCA_WLAN_VENDOR_BSS_FILTER_ACTION_DEL: Delete filter |
| 7816 | * @QCA_WLAN_VENDOR_BSS_FILTER_ACTION_GET: Get the statistics |
| 7817 | */ |
| 7818 | enum qca_wlan_vendor_bss_filter_action { |
| 7819 | QCA_WLAN_VENDOR_BSS_FILTER_ACTION_ADD, |
| 7820 | QCA_WLAN_VENDOR_BSS_FILTER_ACTION_DEL, |
| 7821 | QCA_WLAN_VENDOR_BSS_FILTER_ACTION_GET, |
| 7822 | }; |
| 7823 | |
| 7824 | /** |
| 7825 | * enum qca_wlan_vendor_bss_filter_sta_stats - Attributes for |
| 7826 | * the statistics of a specific unassociated station belonging to another BSS. |
| 7827 | * The statistics provides information of the unassociated station |
| 7828 | * filtered by other BSS operation - such as MAC, signal value. |
| 7829 | * Used by the vendor command QCA_NL80211_VENDOR_SUBCMD_BSS_FILTER. |
| 7830 | * |
| 7831 | * @QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_MAC: MAC address of the station. |
| 7832 | * @QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_RSSI: Last received signal strength |
| 7833 | * of the station. Unsigned 8 bit number containing RSSI. |
| 7834 | * @QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_RSSI_TS: Time stamp of the host |
| 7835 | * driver for the last received RSSI. Unsigned 64 bit number containing |
| 7836 | * nanoseconds from the boottime. |
| 7837 | */ |
| 7838 | enum qca_wlan_vendor_bss_filter_sta_stats { |
| 7839 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_INVALID = 0, |
| 7840 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_MAC = 1, |
| 7841 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_RSSI = 2, |
| 7842 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_RSSI_TS = 3, |
| 7843 | |
| 7844 | /* keep last */ |
| 7845 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_AFTER_LAST, |
| 7846 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_MAX = |
| 7847 | QCA_WLAN_VENDOR_BSS_FILTER_STA_STATS_AFTER_LAST - 1 |
| 7848 | }; |
| 7849 | |
Hai Shalom | ce48b4a | 2018-09-05 11:41:35 -0700 | [diff] [blame] | 7850 | /* enum qca_wlan_nan_subcmd_type - Type of NAN command used by attribute |
| 7851 | * QCA_WLAN_VENDOR_ATTR_NAN_SUBCMD_TYPE as a part of vendor command |
| 7852 | * QCA_NL80211_VENDOR_SUBCMD_NAN_EXT. |
| 7853 | */ |
| 7854 | enum qca_wlan_nan_ext_subcmd_type { |
| 7855 | /* Subcmd of type NAN Enable Request */ |
| 7856 | QCA_WLAN_NAN_EXT_SUBCMD_TYPE_ENABLE_REQ = 1, |
| 7857 | /* Subcmd of type NAN Disable Request */ |
| 7858 | QCA_WLAN_NAN_EXT_SUBCMD_TYPE_DISABLE_REQ = 2, |
| 7859 | }; |
| 7860 | |
| 7861 | /** |
| 7862 | * enum qca_wlan_vendor_attr_nan_params - Used by the vendor command |
| 7863 | * QCA_NL80211_VENDOR_SUBCMD_NAN_EXT. |
| 7864 | */ |
| 7865 | enum qca_wlan_vendor_attr_nan_params { |
| 7866 | QCA_WLAN_VENDOR_ATTR_NAN_INVALID = 0, |
| 7867 | /* Carries NAN command for firmware component. Every vendor command |
| 7868 | * QCA_NL80211_VENDOR_SUBCMD_NAN_EXT must contain this attribute with a |
| 7869 | * payload containing the NAN command. NLA_BINARY attribute. |
| 7870 | */ |
| 7871 | QCA_WLAN_VENDOR_ATTR_NAN_CMD_DATA = 1, |
| 7872 | /* Indicates the type of NAN command sent with |
| 7873 | * QCA_NL80211_VENDOR_SUBCMD_NAN_EXT. enum qca_wlan_nan_ext_subcmd_type |
| 7874 | * describes the possible range of values. This attribute is mandatory |
| 7875 | * if the command being issued is either |
| 7876 | * QCA_WLAN_NAN_EXT_SUBCMD_TYPE_ENABLE_REQ or |
| 7877 | * QCA_WLAN_NAN_EXT_SUBCMD_TYPE_DISABLE_REQ. NLA_U32 attribute. |
| 7878 | */ |
| 7879 | QCA_WLAN_VENDOR_ATTR_NAN_SUBCMD_TYPE = 2, |
| 7880 | /* Frequency (in MHz) of primary NAN discovery social channel in 2.4 GHz |
| 7881 | * band. This attribute is mandatory when command type is |
| 7882 | * QCA_WLAN_NAN_EXT_SUBCMD_TYPE_ENABLE_REQ. NLA_U32 attribute. |
| 7883 | */ |
| 7884 | QCA_WLAN_VENDOR_ATTR_NAN_DISC_24GHZ_BAND_FREQ = 3, |
| 7885 | /* Frequency (in MHz) of secondary NAN discovery social channel in 5 GHz |
| 7886 | * band. This attribute is optional and should be included when command |
| 7887 | * type is QCA_WLAN_NAN_EXT_SUBCMD_TYPE_ENABLE_REQ and NAN discovery |
| 7888 | * has to be started on 5GHz along with 2.4GHz. NLA_U32 attribute. |
| 7889 | */ |
| 7890 | QCA_WLAN_VENDOR_ATTR_NAN_DISC_5GHZ_BAND_FREQ = 4, |
| 7891 | |
| 7892 | /* keep last */ |
| 7893 | QCA_WLAN_VENDOR_ATTR_NAN_PARAMS_AFTER_LAST, |
| 7894 | QCA_WLAN_VENDOR_ATTR_NAN_PARAMS_MAX = |
| 7895 | QCA_WLAN_VENDOR_ATTR_NAN_PARAMS_AFTER_LAST - 1 |
| 7896 | }; |
| 7897 | |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7898 | /** |
| 7899 | * enum qca_wlan_vendor_attr_twt_setup: Represents attributes for |
| 7900 | * TWT (Target Wake Time) setup request. These attributes are sent as part of |
| 7901 | * %QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_SETUP and |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7902 | * %QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION. Also used by |
| 7903 | * attributes through %QCA_NL80211_VENDOR_SUBCMD_CONFIG_TWT. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7904 | * |
| 7905 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_BCAST: Flag attribute. |
| 7906 | * Disable (flag attribute not present) - Individual TWT |
| 7907 | * Enable (flag attribute present) - Broadcast TWT. |
| 7908 | * Individual means the session is between the STA and the AP. |
| 7909 | * This session is established using a separate negotiation between |
| 7910 | * STA and AP. |
| 7911 | * Broadcast means the session is across multiple STAs and an AP. The |
| 7912 | * configuration parameters are announced in Beacon frames by the AP. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7913 | * This is used in |
| 7914 | * 1. TWT SET Request and Response |
| 7915 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7916 | * |
| 7917 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_REQ_TYPE: Required (u8). |
| 7918 | * Unsigned 8-bit qca_wlan_vendor_twt_setup_req_type to |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7919 | * specify the TWT request type. This is used in TWT SET operation. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7920 | * |
| 7921 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_TRIGGER: Flag attribute |
| 7922 | * Enable (flag attribute present) - TWT with trigger support. |
| 7923 | * Disable (flag attribute not present) - TWT without trigger support. |
| 7924 | * Trigger means the AP will send the trigger frame to allow STA to send data. |
| 7925 | * Without trigger, the STA will wait for the MU EDCA timer before |
| 7926 | * transmitting the data. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7927 | * This is used in |
| 7928 | * 1. TWT SET Request and Response |
| 7929 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7930 | * |
| 7931 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_FLOW_TYPE: Required (u8) |
| 7932 | * 0 - Announced TWT - In this mode, STA may skip few service periods to |
| 7933 | * save more power. If STA wants to wake up, it will send a PS-POLL/QoS |
| 7934 | * NULL frame to AP. |
| 7935 | * 1 - Unannounced TWT - The STA will wakeup during every SP. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7936 | * This is a required parameter for |
| 7937 | * 1. TWT SET Request and Response |
| 7938 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7939 | * |
| 7940 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_FLOW_ID: Optional (u8) |
| 7941 | * Flow ID is the unique identifier for each TWT session. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7942 | * If not provided then dialog ID will be set to zero. |
| 7943 | * This is an optional parameter for |
| 7944 | * 1. TWT SET Request and Response |
| 7945 | * 2. TWT GET Request and Response |
| 7946 | * 3. TWT TERMINATE Request and Response |
| 7947 | * 4. TWT SUSPEND Request and Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7948 | * |
| 7949 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_INTVL_EXP: Required (u8) |
| 7950 | * This attribute (exp) is used along with the mantissa to derive the |
| 7951 | * wake interval using the following formula: |
| 7952 | * pow(2,exp) = wake_intvl_us/wake_intvl_mantis |
| 7953 | * Wake interval is the interval between 2 successive SP. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7954 | * This is a required parameter for |
| 7955 | * 1. TWT SET Request and Response |
| 7956 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7957 | * |
| 7958 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_PROTECTION: Flag attribute |
| 7959 | * Enable (flag attribute present) - Protection required. |
| 7960 | * Disable (flag attribute not present) - Protection not required. |
| 7961 | * If protection is enabled, then the AP will use protection |
| 7962 | * mechanism using RTS/CTS to self to reserve the airtime. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7963 | * This is used in |
| 7964 | * 1. TWT SET Request and Response |
| 7965 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7966 | * |
| 7967 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_TIME: Optional (u32) |
| 7968 | * This attribute is used as the SP offset which is the offset from |
| 7969 | * TSF after which the wake happens. The units are in microseconds. If |
| 7970 | * this attribute is not provided, then the value will be set to zero. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7971 | * This is an optional parameter for |
| 7972 | * 1. TWT SET Request and Response |
| 7973 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7974 | * |
| 7975 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_DURATION: Required (u32) |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7976 | * This is the duration of the service period. This is specified as |
| 7977 | * multiples of 256 microseconds. Valid values are 0x1 to 0xFF. |
| 7978 | * This is a required parameter for |
| 7979 | * 1. TWT SET Request and Response |
| 7980 | * 2. TWT GET Response |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 7981 | * |
| 7982 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_INTVL_MANTISSA: Required (u32) |
| 7983 | * This attribute is used to configure wake interval mantissa. |
| 7984 | * The units are in TU. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 7985 | * This is a required parameter for |
| 7986 | * 1. TWT SET Request and Response |
| 7987 | * 2. TWT GET Response |
| 7988 | * |
| 7989 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_STATUS: Required (u8) |
| 7990 | * This field is applicable for TWT response only. |
| 7991 | * This contains status values in enum qca_wlan_vendor_twt_status |
| 7992 | * and is passed to the userspace. This is used in TWT SET operation. |
| 7993 | * This is a required parameter for |
| 7994 | * 1. TWT SET Response |
| 7995 | * 2. TWT TERMINATE Response |
| 7996 | * 3. TWT SUSPEND Response |
| 7997 | * 4. TWT RESUME Response |
| 7998 | * |
| 7999 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_RESP_TYPE: Required (u8) |
| 8000 | * This field is applicable for TWT response only. |
| 8001 | * This field contains response type from the TWT responder and is |
| 8002 | * passed to the userspace. The values for this field are defined in |
| 8003 | * enum qca_wlan_vendor_twt_setup_resp_type. This is used in TWT SET |
| 8004 | * response. |
| 8005 | * |
| 8006 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_TIME_TSF: Required (u64) |
| 8007 | * This field is applicable for TWT response only. |
| 8008 | * This field contains absolute TSF value of the wake time received |
| 8009 | * from the TWT responder and is passed to the userspace. |
| 8010 | * This is a required parameter for |
| 8011 | * 1. TWT SET Response |
| 8012 | * 2. TWT GET Response |
| 8013 | * |
| 8014 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_TWT_INFO_ENABLED: Flag attribute. |
| 8015 | * Enable (flag attribute present) - Indicates that the TWT responder |
| 8016 | * supports reception of TWT information frame from the TWT requestor. |
| 8017 | * Disable (flag attribute not present) - Indicates that the responder |
| 8018 | * doesn't support reception of TWT information frame from requestor. |
| 8019 | * This is used in |
| 8020 | * 1. TWT SET Response |
| 8021 | * 2. TWT GET Response |
| 8022 | * |
| 8023 | * @QCA_WLAN_VENDOR_ATTR_TWT_SETUP_MAC_ADDR: 6-byte MAC address |
| 8024 | * Represents the MAC address of the peer for which the TWT session |
| 8025 | * is being configured. This is used in AP mode to represent the respective |
| 8026 | * client. In AP mode, this is an optional parameter for response and is |
| 8027 | * a required parameter for |
| 8028 | * 1. TWT SET Request |
| 8029 | * 2. TWT GET Request |
| 8030 | * 3. TWT TERMINATE Request |
| 8031 | * 4. TWT SUSPEND Request |
| 8032 | * In STA mode, this is an optional parameter in request and response for |
| 8033 | * the above four TWT operations. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8034 | */ |
| 8035 | enum qca_wlan_vendor_attr_twt_setup { |
| 8036 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_INVALID = 0, |
| 8037 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_BCAST = 1, |
| 8038 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_REQ_TYPE = 2, |
| 8039 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_TRIGGER = 3, |
| 8040 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_FLOW_TYPE = 4, |
| 8041 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_FLOW_ID = 5, |
| 8042 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_INTVL_EXP = 6, |
| 8043 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_PROTECTION = 7, |
| 8044 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_TIME = 8, |
| 8045 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_DURATION = 9, |
| 8046 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_INTVL_MANTISSA = 10, |
| 8047 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8048 | /* TWT Response only attributes */ |
| 8049 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_STATUS = 11, |
| 8050 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_RESP_TYPE = 12, |
| 8051 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_WAKE_TIME_TSF = 13, |
| 8052 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_TWT_INFO_ENABLED = 14, |
| 8053 | |
| 8054 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_MAC_ADDR = 15, |
| 8055 | |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8056 | /* keep last */ |
| 8057 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_AFTER_LAST, |
| 8058 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_MAX = |
| 8059 | QCA_WLAN_VENDOR_ATTR_TWT_SETUP_AFTER_LAST - 1, |
| 8060 | }; |
| 8061 | |
| 8062 | /** |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8063 | * enum qca_wlan_vendor_twt_status - Represents the status of the requested |
| 8064 | * TWT operation |
| 8065 | * |
| 8066 | * @QCA_WLAN_VENDOR_TWT_STATUS_OK: TWT request successfully completed |
| 8067 | * @QCA_WLAN_VENDOR_TWT_STATUS_TWT_NOT_ENABLED: TWT not enabled |
| 8068 | * @QCA_WLAN_VENDOR_TWT_STATUS_USED_DIALOG_ID: TWT dialog ID is already used |
| 8069 | * @QCA_WLAN_VENDOR_TWT_STATUS_SESSION_BUSY: TWT session is busy |
| 8070 | * @QCA_WLAN_VENDOR_TWT_STATUS_SESSION_NOT_EXIST: TWT session does not exist |
| 8071 | * @QCA_WLAN_VENDOR_TWT_STATUS_NOT_SUSPENDED: TWT session not in suspend state |
| 8072 | * @QCA_WLAN_VENDOR_TWT_STATUS_INVALID_PARAM: Invalid parameters |
| 8073 | * @QCA_WLAN_VENDOR_TWT_STATUS_NOT_READY: FW not ready |
| 8074 | * @QCA_WLAN_VENDOR_TWT_STATUS_NO_RESOURCE: FW resource exhausted |
| 8075 | * @QCA_WLAN_VENDOR_TWT_STATUS_NO_ACK: Peer AP/STA did not ACK the |
| 8076 | * request/response frame |
| 8077 | * @QCA_WLAN_VENDOR_TWT_STATUS_NO_RESPONSE: Peer AP did not send the response |
| 8078 | * frame |
| 8079 | * @QCA_WLAN_VENDOR_TWT_STATUS_DENIED: AP did not accept the request |
| 8080 | * @QCA_WLAN_VENDOR_TWT_STATUS_UNKNOWN_ERROR: Adding TWT dialog failed due to an |
| 8081 | * unknown reason |
| 8082 | * @QCA_WLAN_VENDOR_TWT_STATUS_ALREADY_SUSPENDED: TWT session already in |
| 8083 | * suspend state |
| 8084 | */ |
| 8085 | enum qca_wlan_vendor_twt_status { |
| 8086 | QCA_WLAN_VENDOR_TWT_STATUS_OK = 0, |
| 8087 | QCA_WLAN_VENDOR_TWT_STATUS_TWT_NOT_ENABLED = 1, |
| 8088 | QCA_WLAN_VENDOR_TWT_STATUS_USED_DIALOG_ID = 2, |
| 8089 | QCA_WLAN_VENDOR_TWT_STATUS_SESSION_BUSY = 3, |
| 8090 | QCA_WLAN_VENDOR_TWT_STATUS_SESSION_NOT_EXIST = 4, |
| 8091 | QCA_WLAN_VENDOR_TWT_STATUS_NOT_SUSPENDED = 5, |
| 8092 | QCA_WLAN_VENDOR_TWT_STATUS_INVALID_PARAM = 6, |
| 8093 | QCA_WLAN_VENDOR_TWT_STATUS_NOT_READY = 7, |
| 8094 | QCA_WLAN_VENDOR_TWT_STATUS_NO_RESOURCE = 8, |
| 8095 | QCA_WLAN_VENDOR_TWT_STATUS_NO_ACK = 9, |
| 8096 | QCA_WLAN_VENDOR_TWT_STATUS_NO_RESPONSE = 10, |
| 8097 | QCA_WLAN_VENDOR_TWT_STATUS_DENIED = 11, |
| 8098 | QCA_WLAN_VENDOR_TWT_STATUS_UNKNOWN_ERROR = 12, |
| 8099 | QCA_WLAN_VENDOR_TWT_STATUS_ALREADY_SUSPENDED = 13, |
| 8100 | }; |
| 8101 | |
| 8102 | /** |
| 8103 | * enum qca_wlan_vendor_attr_twt_resume - Represents attributes for |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8104 | * TWT (Target Wake Time) resume request. These attributes are sent as part of |
| 8105 | * %QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_TWT_RESUME and |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8106 | * %QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION. Also used by |
| 8107 | * attributes through %QCA_NL80211_VENDOR_SUBCMD_CONFIG_TWT. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8108 | * |
| 8109 | * @QCA_WLAN_VENDOR_ATTR_TWT_RESUME_NEXT_TWT: Optional (u8) |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8110 | * @QCA_WLAN_VENDOR_ATTR_TWT_RESUME_NEXT2_TWT: Optional (u32) |
| 8111 | * These attributes are used as the SP offset which is the offset from TSF after |
| 8112 | * which the wake happens. The units are in microseconds. Please note that |
| 8113 | * _NEXT_TWT is limited to u8 whereas _NEXT2_TWT takes the u32 data. |
| 8114 | * _NEXT2_TWT takes the precedence over _NEXT_TWT and thus the recommendation |
| 8115 | * is to use _NEXT2_TWT. If neither of these attributes is provided, the value |
| 8116 | * will be set to zero. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8117 | * |
| 8118 | * @QCA_WLAN_VENDOR_ATTR_TWT_RESUME_NEXT_TWT_SIZE: Required (u32) |
| 8119 | * This attribute represents the next TWT subfield size. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8120 | * Value 0 represents 0 bits, 1 represents 32 bits, 2 for 48 bits, |
| 8121 | * and 4 for 64 bits. |
| 8122 | * |
| 8123 | * @QCA_WLAN_VENDOR_ATTR_TWT_RESUME_FLOW_ID: Required (u8). |
| 8124 | * Flow ID is the unique identifier for each TWT session. This attribute |
| 8125 | * represents the respective TWT session to resume. |
| 8126 | * |
| 8127 | * @QCA_WLAN_VENDOR_ATTR_TWT_RESUME_MAC_ADDR: 6-byte MAC address |
| 8128 | * Represents the MAC address of the peer to which TWT Resume is |
| 8129 | * being sent. This is used in AP mode to represent the respective |
| 8130 | * client and is a required parameter. In STA mode, this is an optional |
| 8131 | * parameter |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8132 | */ |
| 8133 | enum qca_wlan_vendor_attr_twt_resume { |
| 8134 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_INVALID = 0, |
| 8135 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_NEXT_TWT = 1, |
| 8136 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_NEXT_TWT_SIZE = 2, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8137 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_FLOW_ID = 3, |
| 8138 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_NEXT2_TWT = 4, |
| 8139 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_MAC_ADDR = 5, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8140 | |
| 8141 | /* keep last */ |
| 8142 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_AFTER_LAST, |
| 8143 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_MAX = |
| 8144 | QCA_WLAN_VENDOR_ATTR_TWT_RESUME_AFTER_LAST - 1, |
| 8145 | }; |
| 8146 | |
| 8147 | /** |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 8148 | * enum qca_wlan_vendor_twt_setup_resp_type - Represents the response type by |
| 8149 | * the TWT responder |
| 8150 | * |
| 8151 | * @QCA_WLAN_VENDOR_TWT_RESP_ALTERNATE: TWT responder suggests TWT |
| 8152 | * parameters that are different from TWT requesting STA suggested |
| 8153 | * or demanded TWT parameters |
| 8154 | * @QCA_WLAN_VENDOR_TWT_RESP_DICTATE: TWT responder demands TWT |
| 8155 | * parameters that are different from TWT requesting STA TWT suggested |
| 8156 | * or demanded parameters |
| 8157 | * @QCA_WLAN_VENDOR_TWT_RESP_REJECT: TWT responder rejects TWT |
| 8158 | * setup |
| 8159 | * @QCA_WLAN_VENDOR_TWT_RESP_ACCEPT: TWT responder accepts the TWT |
| 8160 | * setup. |
| 8161 | */ |
| 8162 | enum qca_wlan_vendor_twt_setup_resp_type { |
| 8163 | QCA_WLAN_VENDOR_TWT_RESP_ALTERNATE = 1, |
| 8164 | QCA_WLAN_VENDOR_TWT_RESP_DICTATE = 2, |
| 8165 | QCA_WLAN_VENDOR_TWT_RESP_REJECT = 3, |
| 8166 | QCA_WLAN_VENDOR_TWT_RESP_ACCEPT = 4, |
| 8167 | }; |
| 8168 | |
| 8169 | /** |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8170 | * enum qca_wlan_vendor_twt_setup_req_type - Required (u8) |
| 8171 | * Represents the setup type being requested for TWT. |
| 8172 | * @QCA_WLAN_VENDOR_TWT_SETUP_REQUEST: STA is not specifying all the TWT |
| 8173 | * parameters but relying on AP to fill the parameters during the negotiation. |
| 8174 | * @QCA_WLAN_VENDOR_TWT_SETUP_SUGGEST: STA will provide all the suggested |
| 8175 | * values which the AP may accept or AP may provide alternative parameters |
| 8176 | * which the STA may accept. |
| 8177 | * @QCA_WLAN_VENDOR_TWT_SETUP_DEMAND: STA is not willing to accept any |
| 8178 | * alternate parameters than the requested ones. |
| 8179 | */ |
| 8180 | enum qca_wlan_vendor_twt_setup_req_type { |
| 8181 | QCA_WLAN_VENDOR_TWT_SETUP_REQUEST = 1, |
| 8182 | QCA_WLAN_VENDOR_TWT_SETUP_SUGGEST = 2, |
| 8183 | QCA_WLAN_VENDOR_TWT_SETUP_DEMAND = 3, |
| 8184 | }; |
| 8185 | |
| 8186 | /** |
| 8187 | * enum qca_wlan_roam_scan_event_type - Type of roam scan event |
| 8188 | * |
| 8189 | * Indicates the type of roam scan event sent by firmware/driver. |
| 8190 | * |
| 8191 | * @QCA_WLAN_ROAM_SCAN_TRIGGER_EVENT: Roam scan trigger event type. |
| 8192 | * @QCA_WLAN_ROAM_SCAN_STOP_EVENT: Roam scan stopped event type. |
| 8193 | */ |
| 8194 | enum qca_wlan_roam_scan_event_type { |
| 8195 | QCA_WLAN_ROAM_SCAN_TRIGGER_EVENT = 0, |
| 8196 | QCA_WLAN_ROAM_SCAN_STOP_EVENT = 1, |
| 8197 | }; |
| 8198 | |
| 8199 | /** |
| 8200 | * enum qca_wlan_roam_scan_trigger_reason - Roam scan trigger reason |
| 8201 | * |
| 8202 | * Indicates the reason for triggering roam scan by firmware/driver. |
| 8203 | * |
| 8204 | * @QCA_WLAN_ROAM_SCAN_TRIGGER_REASON_LOW_RSSI: Due to low RSSI of current AP. |
| 8205 | * @QCA_WLAN_ROAM_SCAN_TRIGGER_REASON_HIGH_PER: Due to high packet error rate. |
| 8206 | */ |
| 8207 | enum qca_wlan_roam_scan_trigger_reason { |
| 8208 | QCA_WLAN_ROAM_SCAN_TRIGGER_REASON_LOW_RSSI = 0, |
| 8209 | QCA_WLAN_ROAM_SCAN_TRIGGER_REASON_HIGH_PER = 1, |
| 8210 | }; |
| 8211 | |
| 8212 | /** |
| 8213 | * enum qca_wlan_vendor_attr_roam_scan - Vendor subcmd attributes to report |
| 8214 | * roam scan related details from driver/firmware to user space. enum values |
| 8215 | * are used for NL attributes sent with |
| 8216 | * %QCA_NL80211_VENDOR_SUBCMD_ROAM_SCAN_EVENT sub command. |
| 8217 | */ |
| 8218 | enum qca_wlan_vendor_attr_roam_scan { |
| 8219 | QCA_WLAN_VENDOR_ATTR_ROAM_SCAN_INVALID = 0, |
| 8220 | /* Encapsulates type of roam scan event being reported. enum |
| 8221 | * qca_wlan_roam_scan_event_type describes the possible range of |
| 8222 | * values. u32 attribute. |
| 8223 | */ |
| 8224 | QCA_WLAN_VENDOR_ATTR_ROAM_SCAN_EVENT_TYPE = 1, |
| 8225 | /* Encapsulates reason for triggering roam scan. enum |
| 8226 | * qca_wlan_roam_scan_trigger_reason describes the possible range of |
| 8227 | * values. u32 attribute. |
| 8228 | */ |
| 8229 | QCA_WLAN_VENDOR_ATTR_ROAM_SCAN_TRIGGER_REASON = 2, |
| 8230 | |
| 8231 | /* keep last */ |
| 8232 | QCA_WLAN_VENDOR_ATTR_ROAM_SCAN_AFTER_LAST, |
| 8233 | QCA_WLAN_VENDOR_ATTR_ROAM_SCAN_MAX = |
| 8234 | QCA_WLAN_VENDOR_ATTR_ROAM_SCAN_AFTER_LAST - 1, |
| 8235 | }; |
| 8236 | |
| 8237 | /** |
| 8238 | * enum qca_wlan_vendor_cfr_method - QCA vendor CFR methods used by |
| 8239 | * attribute QCA_WLAN_VENDOR_ATTR_PEER_CFR_METHOD as part of vendor |
| 8240 | * command QCA_NL80211_VENDOR_SUBCMD_PEER_CFR_CAPTURE_CFG. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 8241 | * @QCA_WLAN_VENDOR_CFR_METHOD_QOS_NULL: CFR method using QoS Null frame |
| 8242 | * @QCA_WLAN_VENDOR_CFR_QOS_NULL_WITH_PHASE: CFR method using QoS Null frame |
| 8243 | * with phase |
| 8244 | * @QCA_WLAN_VENDOR_CFR_PROBE_RESPONSE: CFR method using Probe Response frame |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8245 | */ |
| 8246 | enum qca_wlan_vendor_cfr_method { |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8247 | QCA_WLAN_VENDOR_CFR_METHOD_QOS_NULL = 0, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 8248 | QCA_WLAN_VENDOR_CFR_QOS_NULL_WITH_PHASE = 1, |
| 8249 | QCA_WLAN_VENDOR_CFR_PROBE_RESPONSE = 2, |
| 8250 | }; |
| 8251 | |
| 8252 | /** |
| 8253 | * enum qca_wlan_vendor_cfr_capture_type - QCA vendor CFR capture type used by |
| 8254 | * attribute QCA_WLAN_VENDOR_ATTR_PEER_CFR_CAPTURE_TYPE. |
| 8255 | * @QCA_WLAN_VENDOR_CFR_DIRECT_FTM: Filter directed FTM ACK frames. |
| 8256 | * @QCA_WLAN_VENDOR_CFR_ALL_FTM_ACK: Filter all FTM ACK frames. |
| 8257 | * @QCA_WLAN_VENDOR_CFR_DIRECT_NDPA_NDP: Filter NDPA NDP directed frames. |
| 8258 | * @QCA_WLAN_VENDOR_CFR_TA_RA: Filter frames based on TA/RA/Subtype which |
| 8259 | * is provided by one or more of below attributes: |
| 8260 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA |
| 8261 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA |
| 8262 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA_MASK |
| 8263 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA_MASK |
| 8264 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_MGMT_FILTER |
| 8265 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_CTRL_FILTER |
| 8266 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_DATA_FILTER |
| 8267 | * @QCA_WLAN_CFR_ALL_PACKET: Filter all packets. |
| 8268 | * @QCA_WLAN_VENDOR_CFR_NDPA_NDP_ALL: Filter all NDPA NDP frames. |
| 8269 | */ |
| 8270 | enum qca_wlan_vendor_cfr_capture_type { |
| 8271 | QCA_WLAN_VENDOR_CFR_DIRECT_FTM = 0, |
| 8272 | QCA_WLAN_VENDOR_CFR_ALL_FTM_ACK = 1, |
| 8273 | QCA_WLAN_VENDOR_CFR_DIRECT_NDPA_NDP = 2, |
| 8274 | QCA_WLAN_VENDOR_CFR_TA_RA = 3, |
| 8275 | QCA_WLAN_VENDOR_CFR_ALL_PACKET = 4, |
| 8276 | QCA_WLAN_VENDOR_CFR_NDPA_NDP_ALL = 5, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8277 | }; |
| 8278 | |
| 8279 | /** |
| 8280 | * enum qca_wlan_vendor_peer_cfr_capture_attr - Used by the vendor command |
| 8281 | * QCA_NL80211_VENDOR_SUBCMD_PEER_CFR_CAPTURE_CFG to configure peer |
| 8282 | * Channel Frequency Response capture parameters and enable periodic CFR |
| 8283 | * capture. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 8284 | * |
| 8285 | * @QCA_WLAN_VENDOR_ATTR_CFR_PEER_MAC_ADDR: Optional (6-byte MAC address) |
| 8286 | * MAC address of peer. This is for CFR version 1 only. |
| 8287 | * |
| 8288 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE: Required (flag) |
| 8289 | * Enable peer CFR capture. This attribute is mandatory to enable peer CFR |
| 8290 | * capture. If this attribute is not present, peer CFR capture is disabled. |
| 8291 | * |
| 8292 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_BANDWIDTH: Optional (u8) |
| 8293 | * BW of measurement, attribute uses the values in enum nl80211_chan_width |
| 8294 | * Supported values: 20, 40, 80, 80+80, 160. |
| 8295 | * Note that all targets may not support all bandwidths. |
| 8296 | * This attribute is mandatory for version 1 if attribute |
| 8297 | * QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE is used. |
| 8298 | * |
| 8299 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_PERIODICITY: Optional (u32) |
| 8300 | * Periodicity of CFR measurement in milliseconds. |
| 8301 | * Periodicity should be a multiple of Base timer. |
| 8302 | * Current Base timer value supported is 10 milliseconds (default). |
| 8303 | * 0 for one shot capture. |
| 8304 | * This attribute is mandatory for version 1 if attribute |
| 8305 | * QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE is used. |
| 8306 | * |
| 8307 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_METHOD: Optional (u8) |
| 8308 | * Method used to capture Channel Frequency Response. |
| 8309 | * Attribute uses the values defined in enum qca_wlan_vendor_cfr_method. |
| 8310 | * This attribute is mandatory for version 1 if attribute |
| 8311 | * QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE is used. |
| 8312 | * |
| 8313 | * @QCA_WLAN_VENDOR_ATTR_PERIODIC_CFR_CAPTURE_ENABLE: Optional (flag) |
| 8314 | * Enable periodic CFR capture. |
| 8315 | * This attribute is mandatory for version 1 to enable Periodic CFR capture. |
| 8316 | * If this attribute is not present, periodic CFR capture is disabled. |
| 8317 | * |
| 8318 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_VERSION: Optional (u8) |
| 8319 | * Value is 1 or 2 since there are two versions of CFR capture. Two versions |
| 8320 | * can't be enabled at same time. This attribute is mandatory if target |
| 8321 | * support both versions and use one of them. |
| 8322 | * |
| 8323 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE_GROUP_BITMAP: Optional (u32) |
| 8324 | * This attribute is mandatory for version 2 if |
| 8325 | * QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_ENTRY is used. |
| 8326 | * Bits 15:0 bitfield indicates which group is to be enabled. |
| 8327 | * Bits 31:16 Reserved for future use. |
| 8328 | * |
| 8329 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_DURATION: Optional (u32) |
| 8330 | * CFR capture duration in microsecond. This attribute is mandatory for |
| 8331 | * version 2 if attribute QCA_WLAN_VENDOR_ATTR_PEER_CFR_INTERVAL is used. |
| 8332 | * |
| 8333 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_INTERVAL: Optional (u32) |
| 8334 | * CFR capture interval in microsecond. This attribute is mandatory for |
| 8335 | * version 2 if attribute QCA_WLAN_VENDOR_ATTR_PEER_CFR_DURATION is used. |
| 8336 | * |
| 8337 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_CAPTURE_TYPE: Optional (u32) |
| 8338 | * CFR capture type is defined in enum qca_wlan_vendor_cfr_capture_type. |
| 8339 | * This attribute is mandatory for version 2. |
| 8340 | * |
| 8341 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_UL_MU_MASK: Optional (u64) |
| 8342 | * Bitfield indicating which user in the current UL MU transmissions are |
| 8343 | * enabled for CFR capture. Bits 36 to 0 indicate user indexes for 37 users in |
| 8344 | * a UL MU transmission. If bit 0 is set, the CFR capture will happen for user |
| 8345 | * index 0 in the current UL MU transmission. If bits 0 and 2 are set, CFR |
| 8346 | * capture for UL MU TX corresponds to user indices 0 and 2. Bits 63:37 are |
| 8347 | * reserved for future use. This is for CFR version 2 only. |
| 8348 | * |
| 8349 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_FREEZE_TLV_DELAY_COUNT: Optional (u32) |
| 8350 | * Indicates the number of consecutive RX frames to be skipped before CFR |
| 8351 | * capture is enabled again. This is for CFR version 2 only. |
| 8352 | * |
| 8353 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TABLE: Nested attribute containing |
| 8354 | * one or more %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_ENTRY attributes. |
| 8355 | * |
| 8356 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_ENTRY: Nested attribute containing |
| 8357 | * the following group attributes: |
| 8358 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_NUMBER, |
| 8359 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA, |
| 8360 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA, |
| 8361 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA_MASK, |
| 8362 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA_MASK, |
| 8363 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_NSS, |
| 8364 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_BW, |
| 8365 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_MGMT_FILTER, |
| 8366 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_CTRL_FILTER, |
| 8367 | * %QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_DATA_FILTER |
| 8368 | * |
| 8369 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_NUMBER: Optional (u32) |
| 8370 | * Target supports multiple groups for some configurations. The group number |
| 8371 | * can be any value between 0 and 15. This is for CFR version 2 only. |
| 8372 | * |
| 8373 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA: Optional (6-byte MAC address) |
| 8374 | * Transmitter address which is used to filter frames. This MAC address takes |
| 8375 | * effect with QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA_MASK. This is for CFR |
| 8376 | * version 2 only. |
| 8377 | * |
| 8378 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA: Optional (6-byte MAC address) |
| 8379 | * Receiver address which is used to filter frames. This MAC address takes |
| 8380 | * effect with QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA_MASK. This is for CFR |
| 8381 | * version 2 only. |
| 8382 | * |
| 8383 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA_MASK: Optional (6-byte MAC address) |
| 8384 | * Mask of transmitter address which is used to filter frames. This is for CFR |
| 8385 | * version 2 only. |
| 8386 | * |
| 8387 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA_MASK: Optional (6-byte MAC address) |
| 8388 | * Mask of receiver address which is used to filter frames. This is for CFR |
| 8389 | * version 2 only. |
| 8390 | * |
| 8391 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_NSS: Optional (u32) |
| 8392 | * Indicates frames with a specific NSS will be filtered for CFR capture. |
| 8393 | * This is for CFR version 2 only. This is a bitmask. Bits 7:0 request CFR |
| 8394 | * capture to be done for frames matching the NSS specified within this bitmask. |
| 8395 | * Bits 31:8 are reserved for future use. Bits 7:0 map to NSS: |
| 8396 | * bit 0 : NSS 1 |
| 8397 | * bit 1 : NSS 2 |
| 8398 | * ... |
| 8399 | * bit 7 : NSS 8 |
| 8400 | * |
| 8401 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_BW: Optional (u32) |
| 8402 | * Indicates frames with a specific bandwidth will be filtered for CFR capture. |
| 8403 | * This is for CFR version 2 only. This is a bitmask. Bits 4:0 request CFR |
| 8404 | * capture to be done for frames matching the bandwidths specified within this |
| 8405 | * bitmask. Bits 31:5 are reserved for future use. Bits 4:0 map to bandwidth |
| 8406 | * numerated in enum nl80211_band (although not all bands may be supported |
| 8407 | * by a given device). |
| 8408 | * |
| 8409 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_MGMT_FILTER: Optional (u32) |
| 8410 | * Management frames matching the subtype filter categories will be filtered in |
| 8411 | * by MAC for CFR capture. This is a bitmask in which each bit represents the |
| 8412 | * corresponding Management frame subtype value per IEEE Std 802.11-2016, |
| 8413 | * 9.2.4.1.3 Type and Subtype subfields. For example, Beacon frame control type |
| 8414 | * is 8 and its value is 1 << 8 = 0x100. This is for CFR version 2 only. |
| 8415 | * |
| 8416 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_CTRL_FILTER: Optional (u32) |
| 8417 | * Control frames matching the subtype filter categories will be filtered in by |
| 8418 | * MAC for CFR capture. This is a bitmask in which each bit represents the |
| 8419 | * corresponding Control frame subtype value per IEEE Std 802.11-2016, |
| 8420 | * 9.2.4.1.3 Type and Subtype subfields. This is for CFR version 2 only. |
| 8421 | * |
| 8422 | * @QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_DATA_FILTER: Optional (u32) |
| 8423 | * Data frames matching the subtype filter categories will be filtered in by |
| 8424 | * MAC for CFR capture. This is a bitmask in which each bit represents the |
| 8425 | * corresponding Data frame subtype value per IEEE Std 802.11-2016, |
| 8426 | * 9.2.4.1.3 Type and Subtype subfields. This is for CFR version 2 only. |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8427 | */ |
| 8428 | enum qca_wlan_vendor_peer_cfr_capture_attr { |
| 8429 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_CAPTURE_INVALID = 0, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8430 | QCA_WLAN_VENDOR_ATTR_CFR_PEER_MAC_ADDR = 1, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8431 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE = 2, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8432 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_BANDWIDTH = 3, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8433 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_PERIODICITY = 4, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8434 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_METHOD = 5, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8435 | QCA_WLAN_VENDOR_ATTR_PERIODIC_CFR_CAPTURE_ENABLE = 6, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 8436 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_VERSION = 7, |
| 8437 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_ENABLE_GROUP_BITMAP = 8, |
| 8438 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_DURATION = 9, |
| 8439 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_INTERVAL = 10, |
| 8440 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_CAPTURE_TYPE = 11, |
| 8441 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_UL_MU_MASK = 12, |
| 8442 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_FREEZE_TLV_DELAY_COUNT = 13, |
| 8443 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TABLE = 14, |
| 8444 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_ENTRY = 15, |
| 8445 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_NUMBER = 16, |
| 8446 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA = 17, |
| 8447 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA = 18, |
| 8448 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_TA_MASK = 19, |
| 8449 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_RA_MASK = 20, |
| 8450 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_NSS = 21, |
| 8451 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_BW = 22, |
| 8452 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_MGMT_FILTER = 23, |
| 8453 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_CTRL_FILTER = 24, |
| 8454 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_GROUP_DATA_FILTER = 25, |
Hai Shalom | 39ba6fc | 2019-01-22 12:40:38 -0800 | [diff] [blame] | 8455 | |
| 8456 | /* Keep last */ |
| 8457 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_AFTER_LAST, |
| 8458 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_MAX = |
| 8459 | QCA_WLAN_VENDOR_ATTR_PEER_CFR_AFTER_LAST - 1, |
| 8460 | }; |
| 8461 | |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 8462 | /** |
| 8463 | * enum qca_wlan_throughput_level - Current throughput level |
| 8464 | * |
| 8465 | * Indicates the current level of throughput calculated by the driver. The |
| 8466 | * driver may choose different thresholds to decide whether the throughput level |
| 8467 | * is low or medium or high based on variety of parameters like physical link |
| 8468 | * capacity of the current connection, the number of packets being dispatched |
| 8469 | * per second, etc. The throughput level events might not be consistent with the |
| 8470 | * actual current throughput value being observed. |
| 8471 | * |
| 8472 | * @QCA_WLAN_THROUGHPUT_LEVEL_LOW: Low level of throughput |
| 8473 | * @QCA_WLAN_THROUGHPUT_LEVEL_MEDIUM: Medium level of throughput |
| 8474 | * @QCA_WLAN_THROUGHPUT_LEVEL_HIGH: High level of throughput |
| 8475 | */ |
| 8476 | enum qca_wlan_throughput_level { |
| 8477 | QCA_WLAN_THROUGHPUT_LEVEL_LOW = 0, |
| 8478 | QCA_WLAN_THROUGHPUT_LEVEL_MEDIUM = 1, |
| 8479 | QCA_WLAN_THROUGHPUT_LEVEL_HIGH = 2, |
| 8480 | }; |
| 8481 | |
| 8482 | /** |
| 8483 | * enum qca_wlan_vendor_attr_throughput_change - Vendor subcmd attributes to |
| 8484 | * report throughput changes from the driver to user space. enum values are used |
| 8485 | * for netlink attributes sent with |
| 8486 | * %QCA_NL80211_VENDOR_SUBCMD_THROUGHPUT_CHANGE_EVENT sub command. |
| 8487 | */ |
| 8488 | enum qca_wlan_vendor_attr_throughput_change { |
| 8489 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_INVALID = 0, |
| 8490 | /* Indicates the direction of throughput in which the change is being |
| 8491 | * reported. u8 attribute. Value is 0 for TX and 1 for RX. |
| 8492 | */ |
| 8493 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_DIRECTION = 1, |
| 8494 | /* Indicates the newly observed throughput level. enum |
| 8495 | * qca_wlan_throughput_level describes the possible range of values. |
| 8496 | * u8 attribute. |
| 8497 | */ |
| 8498 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_THROUGHPUT_LEVEL = 2, |
| 8499 | /* Indicates the driver's guidance on the new value to be set to |
| 8500 | * kernel's TCP parameter tcp_limit_output_bytes. u32 attribute. The |
| 8501 | * driver may optionally include this attribute. |
| 8502 | */ |
| 8503 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_TCP_LIMIT_OUTPUT_BYTES = 3, |
| 8504 | /* Indicates the driver's guidance on the new value to be set to |
| 8505 | * kernel's TCP parameter tcp_adv_win_scale. s8 attribute. Possible |
| 8506 | * values are from -31 to 31. The driver may optionally include this |
| 8507 | * attribute. |
| 8508 | */ |
| 8509 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_TCP_ADV_WIN_SCALE = 4, |
| 8510 | /* Indicates the driver's guidance on the new value to be set to |
| 8511 | * kernel's TCP parameter tcp_delack_seg. u32 attribute. The driver may |
| 8512 | * optionally include this attribute. |
| 8513 | */ |
| 8514 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_TCP_DELACK_SEG = 5, |
| 8515 | |
| 8516 | /* keep last */ |
| 8517 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_AFTER_LAST, |
| 8518 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_MAX = |
| 8519 | QCA_WLAN_VENDOR_ATTR_THROUGHPUT_CHANGE_AFTER_LAST - 1, |
| 8520 | }; |
| 8521 | |
| 8522 | /** |
| 8523 | * enum qca_coex_config_profiles - This enum defines different types of |
| 8524 | * traffic streams that can be prioritized one over the other during coex |
| 8525 | * scenarios. |
| 8526 | * The types defined in this enum are categorized in the below manner. |
| 8527 | * 0 - 31 values corresponds to WLAN |
| 8528 | * 32 - 63 values corresponds to BT |
| 8529 | * 64 - 95 values corresponds to Zigbee |
| 8530 | * @QCA_WIFI_STA_DISCOVERY: Prioritize discovery frames for WLAN STA |
| 8531 | * @QCA_WIFI_STA_CONNECTION: Prioritize connection frames for WLAN STA |
| 8532 | * @QCA_WIFI_STA_CLASS_3_MGMT: Prioritize class 3 mgmt frames for WLAN STA |
| 8533 | * @QCA_WIFI_STA_DATA : Prioritize data frames for WLAN STA |
| 8534 | * @QCA_WIFI_STA_ALL: Priritize all frames for WLAN STA |
| 8535 | * @QCA_WIFI_SAP_DISCOVERY: Prioritize discovery frames for WLAN SAP |
| 8536 | * @QCA_WIFI_SAP_CONNECTION: Prioritize connection frames for WLAN SAP |
| 8537 | * @QCA_WIFI_SAP_CLASS_3_MGMT: Prioritize class 3 mgmt frames for WLAN SAP |
| 8538 | * @QCA_WIFI_SAP_DATA: Prioritize data frames for WLAN SAP |
| 8539 | * @QCA_WIFI_SAP_ALL: Prioritize all frames for WLAN SAP |
| 8540 | * @QCA_BT_A2DP: Prioritize BT A2DP |
| 8541 | * @QCA_BT_BLE: Prioritize BT BLE |
| 8542 | * @QCA_BT_SCO: Prioritize BT SCO |
| 8543 | * @QCA_ZB_LOW: Prioritize Zigbee Low |
| 8544 | * @QCA_ZB_HIGH: Prioritize Zigbee High |
| 8545 | */ |
| 8546 | enum qca_coex_config_profiles { |
| 8547 | /* 0 - 31 corresponds to WLAN */ |
| 8548 | QCA_WIFI_STA_DISCOVERY = 0, |
| 8549 | QCA_WIFI_STA_CONNECTION = 1, |
| 8550 | QCA_WIFI_STA_CLASS_3_MGMT = 2, |
| 8551 | QCA_WIFI_STA_DATA = 3, |
| 8552 | QCA_WIFI_STA_ALL = 4, |
| 8553 | QCA_WIFI_SAP_DISCOVERY = 5, |
| 8554 | QCA_WIFI_SAP_CONNECTION = 6, |
| 8555 | QCA_WIFI_SAP_CLASS_3_MGMT = 7, |
| 8556 | QCA_WIFI_SAP_DATA = 8, |
| 8557 | QCA_WIFI_SAP_ALL = 9, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 8558 | QCA_WIFI_CASE_MAX = 31, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 8559 | /* 32 - 63 corresponds to BT */ |
| 8560 | QCA_BT_A2DP = 32, |
| 8561 | QCA_BT_BLE = 33, |
| 8562 | QCA_BT_SCO = 34, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 8563 | QCA_BT_CASE_MAX = 63, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 8564 | /* 64 - 95 corresponds to Zigbee */ |
| 8565 | QCA_ZB_LOW = 64, |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 8566 | QCA_ZB_HIGH = 65, |
| 8567 | QCA_ZB_CASE_MAX = 95, |
| 8568 | /* 0xff is default value if the u8 profile value is not set. */ |
| 8569 | QCA_COEX_CONFIG_PROFILE_DEFAULT_VALUE = 255 |
| 8570 | }; |
| 8571 | |
| 8572 | /** |
| 8573 | * enum qca_vendor_attr_coex_config_types - Coex configurations types. |
| 8574 | * This enum defines the valid set of values of coex configuration types. These |
| 8575 | * values may used by attribute |
| 8576 | * %QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_CONFIG_TYPE. |
| 8577 | * |
| 8578 | * @QCA_WLAN_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_COEX_RESET: Reset all the |
| 8579 | * weights to default values. |
| 8580 | * @QCA_WLAN_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_COEX_START: Start to config |
| 8581 | * weights with configurability value. |
| 8582 | */ |
| 8583 | enum qca_vendor_attr_coex_config_types { |
| 8584 | QCA_WLAN_VENDOR_ATTR_COEX_CONFIG_INVALID = 0, |
| 8585 | QCA_WLAN_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_COEX_RESET = 1, |
| 8586 | QCA_WLAN_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_COEX_START = 2, |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 8587 | }; |
| 8588 | |
| 8589 | /** |
| 8590 | * enum qca_vendor_attr_coex_config - Specifies vendor coex config attributes |
| 8591 | * |
| 8592 | * @QCA_VENDOR_ATTR_COEX_CONFIG_PROFILES: This attribute contains variable |
| 8593 | * length array of 8-bit values from enum qca_coex_config_profiles. |
| 8594 | * FW will prioritize the profiles in the order given in the array encapsulated |
| 8595 | * in this attribute. |
| 8596 | * For example: |
| 8597 | * ----------------------------------------------------------------------- |
| 8598 | * | 1 | 34 | 32 | 65 | |
| 8599 | * ----------------------------------------------------------------------- |
| 8600 | * If the attribute contains the values defined in above array then it means |
| 8601 | * 1) Wifi STA connection has priority over BT_SCO, BT_A2DP and ZIGBEE HIGH. |
| 8602 | * 2) BT_SCO has priority over BT_A2DP. |
| 8603 | * 3) BT_A2DP has priority over ZIGBEE HIGH. |
| 8604 | * Profiles which are not listed in this array shall not be preferred over the |
| 8605 | * profiles which are listed in the array as a part of this attribute. |
| 8606 | */ |
| 8607 | enum qca_vendor_attr_coex_config { |
| 8608 | QCA_VENDOR_ATTR_COEX_CONFIG_INVALID = 0, |
| 8609 | QCA_VENDOR_ATTR_COEX_CONFIG_PROFILES = 1, |
| 8610 | |
| 8611 | /* Keep last */ |
| 8612 | QCA_VENDOR_ATTR_COEX_CONFIG_AFTER_LAST, |
| 8613 | QCA_VENDOR_ATTR_COEX_CONFIG_MAX = |
| 8614 | QCA_VENDOR_ATTR_COEX_CONFIG_AFTER_LAST - 1, |
| 8615 | }; |
| 8616 | |
| 8617 | /** |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 8618 | * enum qca_vendor_attr_coex_config_three_way - Specifies vendor coex config |
| 8619 | * attributes |
| 8620 | * Attributes for data used by QCA_NL80211_VENDOR_SUBCMD_COEX_CONFIG |
| 8621 | * |
| 8622 | * QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_CONFIG_TYPE: u32 attribute. |
| 8623 | * Indicate config type. |
| 8624 | * The config types are 32-bit values from qca_vendor_attr_coex_config_types |
| 8625 | * |
| 8626 | * @QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_1: u32 attribute. |
| 8627 | * Indicate the Priority 1 profiles. |
| 8628 | * The profiles are 8-bit values from enum qca_coex_config_profiles. |
| 8629 | * In same priority level, maximum to 4 profiles can be set here. |
| 8630 | * @QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_2: u32 attribute. |
| 8631 | * Indicate the Priority 2 profiles. |
| 8632 | * The profiles are 8-bit values from enum qca_coex_config_profiles. |
| 8633 | * In same priority level, maximum to 4 profiles can be set here. |
| 8634 | * @QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_3: u32 attribute. |
| 8635 | * Indicate the Priority 3 profiles. |
| 8636 | * The profiles are 8-bit values from enum qca_coex_config_profiles. |
| 8637 | * In same priority level, maximum to 4 profiles can be set here. |
| 8638 | * @QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_4: u32 attribute. |
| 8639 | * Indicate the Priority 4 profiles. |
| 8640 | * The profiles are 8-bit values from enum qca_coex_config_profiles. |
| 8641 | * In same priority level, maximum to 4 profiles can be set here. |
| 8642 | * NOTE: |
| 8643 | * Limitations for QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_x priority |
| 8644 | * arrangement: |
| 8645 | * 1: In the same u32 attribute (priority x), the profiles enum values own |
| 8646 | * same priority level. |
| 8647 | * 2: 0xff is default value if the u8 profile value is not set. |
| 8648 | * 3: max to 4 rules/profiles in same priority level. |
| 8649 | * 4: max to 4 priority level (priority 1 - priority 4) |
| 8650 | * 5: one priority level only supports one scenario from WLAN/BT/ZB, |
| 8651 | * hybrid rules not support. |
| 8652 | * 6: if WMI_COEX_CONFIG_THREE_WAY_COEX_RESET called, priority x will |
| 8653 | * remain blank to reset all parameters. |
| 8654 | * For example: |
| 8655 | * |
| 8656 | * If the attributes as follow: |
| 8657 | * priority 1: |
| 8658 | * ------------------------------------ |
| 8659 | * | 0xff | 0 | 1 | 2 | |
| 8660 | * ------------------------------------ |
| 8661 | * priority 2: |
| 8662 | * ------------------------------------- |
| 8663 | * | 0xff | 0xff | 0xff | 32 | |
| 8664 | * ------------------------------------- |
| 8665 | * priority 3: |
| 8666 | * ------------------------------------- |
| 8667 | * | 0xff | 0xff | 0xff | 65 | |
| 8668 | * ------------------------------------- |
| 8669 | * then it means: |
| 8670 | * 1: WIFI_STA_DISCOVERY, WIFI_STA_CLASS_3_MGMT and WIFI_STA_CONNECTION |
| 8671 | * owns same priority level. |
| 8672 | * 2: WIFI_STA_DISCOVERY, WIFI_STA_CLASS_3_MGMT and WIFI_STA_CONNECTION |
| 8673 | * has priority over BT_A2DP and ZB_HIGH. |
| 8674 | * 3: BT_A2DP has priority over ZB_HIGH. |
| 8675 | */ |
| 8676 | |
| 8677 | enum qca_vendor_attr_coex_config_three_way { |
| 8678 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_INVALID = 0, |
| 8679 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_CONFIG_TYPE = 1, |
| 8680 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_1 = 2, |
| 8681 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_2 = 3, |
| 8682 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_3 = 4, |
| 8683 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_PRIORITY_4 = 5, |
| 8684 | |
| 8685 | /* Keep last */ |
| 8686 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_AFTER_LAST, |
| 8687 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_MAX = |
| 8688 | QCA_VENDOR_ATTR_COEX_CONFIG_THREE_WAY_AFTER_LAST - 1, |
| 8689 | }; |
| 8690 | |
| 8691 | /** |
Hai Shalom | 74f70d4 | 2019-02-11 14:42:39 -0800 | [diff] [blame] | 8692 | * enum qca_wlan_vendor_attr_link_properties - Represent the link properties. |
| 8693 | * |
| 8694 | * @QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_MAC_ADDR: MAC address of the peer |
| 8695 | * (STA/AP) for the connected link. |
| 8696 | * @QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_STA_FLAGS: Attribute containing a |
| 8697 | * &struct nl80211_sta_flag_update for the respective connected link. MAC |
| 8698 | * address of the peer represented by |
| 8699 | * QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_MAC_ADDR. |
| 8700 | */ |
| 8701 | enum qca_wlan_vendor_attr_link_properties { |
| 8702 | QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_INVALID = 0, |
| 8703 | /* 1 - 3 are reserved */ |
| 8704 | QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_MAC_ADDR = 4, |
| 8705 | QCA_WLAN_VENDOR_ATTR_LINK_PROPERTIES_STA_FLAGS = 5, |
| 8706 | |
| 8707 | /* Keep last */ |
| 8708 | QCA_VENDOR_ATTR_LINK_PROPERTIES_AFTER_LAST, |
| 8709 | QCA_VENDOR_ATTR_LINK_PROPERTIES_MAX = |
| 8710 | QCA_VENDOR_ATTR_LINK_PROPERTIES_AFTER_LAST - 1, |
| 8711 | }; |
| 8712 | |
Hai Shalom | 021b0b5 | 2019-04-10 11:17:58 -0700 | [diff] [blame] | 8713 | /** |
| 8714 | * enum qca_vendor_attr_peer_stats_cache_type - Represents peer stats cache type |
| 8715 | * This enum defines the valid set of values of peer stats cache types. These |
| 8716 | * values are used by attribute |
| 8717 | * %QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_TYPE. |
| 8718 | * |
| 8719 | * @QCA_WLAN_VENDOR_ATTR_PEER_TX_RATE_STATS: Represents peer TX rate statistics |
| 8720 | * @QCA_WLAN_VENDOR_ATTR_PEER_RX_RATE_STATS: Represents peer RX rate statistics |
| 8721 | * @QCA_WLAN_VENDOR_ATTR_PEER_TX_SOJOURN_STATS: Represents peer TX sojourn |
| 8722 | * statistics |
| 8723 | */ |
| 8724 | enum qca_vendor_attr_peer_stats_cache_type { |
| 8725 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_TYPE_INVALID = 0, |
| 8726 | |
| 8727 | QCA_WLAN_VENDOR_ATTR_PEER_TX_RATE_STATS, |
| 8728 | QCA_WLAN_VENDOR_ATTR_PEER_RX_RATE_STATS, |
| 8729 | QCA_WLAN_VENDOR_ATTR_PEER_TX_SOJOURN_STATS, |
| 8730 | }; |
| 8731 | |
| 8732 | /** |
| 8733 | * enum qca_wlan_vendor_attr_peer_stats_cache_params - This enum defines |
| 8734 | * attributes required for QCA_NL80211_VENDOR_SUBCMD_PEER_STATS_CACHE_FLUSH |
| 8735 | * Information in these attributes is used to flush peer rate statistics from |
| 8736 | * the driver to user application. |
| 8737 | * |
| 8738 | * @QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_TYPE: Unsigned 32-bit attribute |
| 8739 | * Indicate peer statistics cache type. |
| 8740 | * The statistics types are 32-bit values from |
| 8741 | * enum qca_vendor_attr_peer_stats_cache_type. |
| 8742 | * @QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_PEER_MAC: Unsigned 8-bit array |
| 8743 | * of size 6 octets, representing the peer MAC address. |
| 8744 | * @QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_DATA: Opaque data attribute |
| 8745 | * containing buffer of statistics to send to application layer entity. |
| 8746 | * @QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_PEER_COOKIE: Unsigned 64-bit attribute |
| 8747 | * representing a cookie for peer unique session. |
| 8748 | */ |
| 8749 | enum qca_wlan_vendor_attr_peer_stats_cache_params { |
| 8750 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_INVALID = 0, |
| 8751 | |
| 8752 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_TYPE = 1, |
| 8753 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_PEER_MAC = 2, |
| 8754 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_DATA = 3, |
| 8755 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_PEER_COOKIE = 4, |
| 8756 | |
| 8757 | /* Keep last */ |
| 8758 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_LAST, |
| 8759 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_MAX = |
| 8760 | QCA_WLAN_VENDOR_ATTR_PEER_STATS_CACHE_LAST - 1 |
| 8761 | }; |
| 8762 | |
| 8763 | /** |
| 8764 | * enum qca_mpta_helper_attr_zigbee_state - Current Zigbee state |
| 8765 | * This enum defines all the possible states of Zigbee, which can be |
| 8766 | * delivered in the QCA_MPTA_HELPER_VENDOR_ATTR_ZIGBEE_STATE attribute. |
| 8767 | * |
| 8768 | * @ZIGBEE_IDLE: Zigbee in idle state |
| 8769 | * @ZIGBEE_FORM_NETWORK: Zigbee forming network |
| 8770 | * @ZIGBEE_WAIT_JOIN: Zigbee waiting for joining network |
| 8771 | * @ZIGBEE_JOIN: Zigbee joining network |
| 8772 | * @ZIGBEE_NETWORK_UP: Zigbee network is up |
| 8773 | * @ZIGBEE_HMI: Zigbee in HMI mode |
| 8774 | */ |
| 8775 | enum qca_mpta_helper_attr_zigbee_state { |
| 8776 | ZIGBEE_IDLE = 0, |
| 8777 | ZIGBEE_FORM_NETWORK = 1, |
| 8778 | ZIGBEE_WAIT_JOIN = 2, |
| 8779 | ZIGBEE_JOIN = 3, |
| 8780 | ZIGBEE_NETWORK_UP = 4, |
| 8781 | ZIGBEE_HMI = 5, |
| 8782 | }; |
| 8783 | |
| 8784 | /* |
| 8785 | * enum qca_mpta_helper_vendor_attr - Attributes used in vendor sub-command |
| 8786 | * QCA_NL80211_VENDOR_SUBCMD_MPTA_HELPER_CONFIG. |
| 8787 | */ |
| 8788 | enum qca_mpta_helper_vendor_attr { |
| 8789 | QCA_MPTA_HELPER_VENDOR_ATTR_INVALID = 0, |
| 8790 | /* Optional attribute used to update Zigbee state. |
| 8791 | * enum qca_mpta_helper_attr_zigbee_state. |
| 8792 | * NLA_U32 attribute. |
| 8793 | */ |
| 8794 | QCA_MPTA_HELPER_VENDOR_ATTR_ZIGBEE_STATE = 1, |
| 8795 | /* Optional attribute used to configure WLAN duration for Shape-OCS |
| 8796 | * during interrupt. |
| 8797 | * Set in pair with QCA_MPTA_HELPER_VENDOR_ATTR_INT_NON_WLAN_DURATION. |
| 8798 | * Value range 0 ~ 300 (ms). |
| 8799 | * NLA_U32 attribute. |
| 8800 | */ |
| 8801 | QCA_MPTA_HELPER_VENDOR_ATTR_INT_WLAN_DURATION = 2, |
| 8802 | /* Optional attribute used to configure non-WLAN duration for Shape-OCS |
| 8803 | * during interrupt. |
| 8804 | * Set in pair with QCA_MPTA_HELPER_VENDOR_ATTR_INT_WLAN_DURATION. |
| 8805 | * Value range 0 ~ 300 (ms). |
| 8806 | * NLA_U32 attribute. |
| 8807 | */ |
| 8808 | QCA_MPTA_HELPER_VENDOR_ATTR_INT_NON_WLAN_DURATION = 3, |
| 8809 | /* Optional attribute used to configure WLAN duration for Shape-OCS |
| 8810 | * monitor period. |
| 8811 | * Set in pair with QCA_MPTA_HELPER_VENDOR_ATTR_MON_NON_WLAN_DURATION. |
| 8812 | * Value range 0 ~ 300 (ms) |
| 8813 | * NLA_U32 attribute |
| 8814 | */ |
| 8815 | QCA_MPTA_HELPER_VENDOR_ATTR_MON_WLAN_DURATION = 4, |
| 8816 | /* Optional attribute used to configure non-WLAN duration for Shape-OCS |
| 8817 | * monitor period. |
| 8818 | * Set in pair with QCA_MPTA_HELPER_VENDOR_ATTR_MON_WLAN_DURATION. |
| 8819 | * Value range 0 ~ 300 (ms) |
| 8820 | * NLA_U32 attribute |
| 8821 | */ |
| 8822 | QCA_MPTA_HELPER_VENDOR_ATTR_MON_NON_WLAN_DURATION = 5, |
| 8823 | /* Optional attribute used to configure OCS interrupt duration. |
| 8824 | * Set in pair with QCA_MPTA_HELPER_VENDOR_ATTR_MON_OCS_DURATION. |
| 8825 | * Value range 1000 ~ 20000 (ms) |
| 8826 | * NLA_U32 attribute |
| 8827 | */ |
| 8828 | QCA_MPTA_HELPER_VENDOR_ATTR_INT_OCS_DURATION = 6, |
| 8829 | /* Optional attribute used to configure OCS monitor duration. |
| 8830 | * Set in pair with QCA_MPTA_HELPER_VENDOR_ATTR_INT_OCS_DURATION. |
| 8831 | * Value range 1000 ~ 20000 (ms) |
| 8832 | * NLA_U32 attribute |
| 8833 | */ |
| 8834 | QCA_MPTA_HELPER_VENDOR_ATTR_MON_OCS_DURATION = 7, |
| 8835 | /* Optional attribute used to notify WLAN firmware the current Zigbee |
| 8836 | * channel. |
| 8837 | * Value range 11 ~ 26 |
| 8838 | * NLA_U32 attribute |
| 8839 | */ |
| 8840 | QCA_MPTA_HELPER_VENDOR_ATTR_ZIGBEE_CHAN = 8, |
| 8841 | /* Optional attribute used to configure WLAN mute duration. |
| 8842 | * Value range 0 ~ 400 (ms) |
| 8843 | * NLA_U32 attribute |
| 8844 | */ |
| 8845 | QCA_MPTA_HELPER_VENDOR_ATTR_WLAN_MUTE_DURATION = 9, |
| 8846 | |
| 8847 | /* keep last */ |
| 8848 | QCA_MPTA_HELPER_VENDOR_ATTR_AFTER_LAST, |
| 8849 | QCA_MPTA_HELPER_VENDOR_ATTR_MAX = |
| 8850 | QCA_MPTA_HELPER_VENDOR_ATTR_AFTER_LAST - 1 |
| 8851 | }; |
| 8852 | |
Hai Shalom | 81f62d8 | 2019-07-22 12:10:00 -0700 | [diff] [blame] | 8853 | /** |
| 8854 | * enum qca_wlan_vendor_beacon_reporting_op_types - Defines different types of |
| 8855 | * operations for which %QCA_NL80211_VENDOR_SUBCMD_BEACON_REPORTING can be used. |
| 8856 | * Will be used by %QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE. |
| 8857 | * |
| 8858 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START: Sent by userspace to the driver |
| 8859 | * to request the driver to start reporting Beacon frames. |
| 8860 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_OP_STOP: Sent by userspace to the driver to |
| 8861 | * request the driver to stop reporting Beacon frames. |
| 8862 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO: Sent by the driver to |
| 8863 | * userspace to report received Beacon frames. |
| 8864 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_OP_PAUSE: Sent by the driver to userspace |
| 8865 | * to indicate that the driver is going to pause reporting Beacon frames. |
| 8866 | */ |
| 8867 | enum qca_wlan_vendor_beacon_reporting_op_types { |
| 8868 | QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START = 0, |
| 8869 | QCA_WLAN_VENDOR_BEACON_REPORTING_OP_STOP = 1, |
| 8870 | QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO = 2, |
| 8871 | QCA_WLAN_VENDOR_BEACON_REPORTING_OP_PAUSE = 3, |
| 8872 | }; |
| 8873 | |
| 8874 | /** |
| 8875 | * enum qca_wlan_vendor_beacon_reporting_pause_reasons - Defines different types |
| 8876 | * of reasons for which the driver is pausing reporting Beacon frames. Will be |
| 8877 | * used by %QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_PAUSE_REASON. |
| 8878 | * |
| 8879 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_UNSPECIFIED: For unspecified |
| 8880 | * reasons. |
| 8881 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_SCAN_STARTED: When the |
| 8882 | * driver/firmware is starting a scan. |
| 8883 | * @QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_DISCONNECTED: When the |
| 8884 | * driver/firmware disconnects from the ESS and indicates the disconnection to |
| 8885 | * userspace (non-seamless roaming case). This reason code will be used by the |
| 8886 | * driver/firmware to indicate stopping of beacon report events. Userspace will |
| 8887 | * need to start beacon reporting again (if desired) by sending vendor command |
| 8888 | * QCA_NL80211_VENDOR_SUBCMD_BEACON_REPORTING with |
| 8889 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE set to |
| 8890 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START after the next connection is |
| 8891 | * completed. |
| 8892 | */ |
| 8893 | enum qca_wlan_vendor_beacon_reporting_pause_reasons { |
| 8894 | QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_UNSPECIFIED = 0, |
| 8895 | QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_SCAN_STARTED = 1, |
| 8896 | QCA_WLAN_VENDOR_BEACON_REPORTING_PAUSE_REASON_DISCONNECTED = 2, |
| 8897 | }; |
| 8898 | |
| 8899 | /* |
| 8900 | * enum qca_wlan_vendor_attr_beacon_reporting_params - List of attributes used |
| 8901 | * in vendor sub-command QCA_NL80211_VENDOR_SUBCMD_BEACON_REPORTING. |
| 8902 | */ |
| 8903 | enum qca_wlan_vendor_attr_beacon_reporting_params { |
| 8904 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_INVALID = 0, |
| 8905 | /* Specifies the type of operation that the vendor command/event is |
| 8906 | * intended for. Possible values for this attribute are defined in |
| 8907 | * enum qca_wlan_vendor_beacon_reporting_op_types. u32 attribute. |
| 8908 | */ |
| 8909 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE = 1, |
| 8910 | /* Optionally set by userspace to request the driver to report Beacon |
| 8911 | * frames using asynchronous vendor events when the |
| 8912 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8913 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START. NLA_FLAG attribute. |
| 8914 | * If this flag is not set, the driver will only update Beacon frames in |
| 8915 | * cfg80211 scan cache but not send any vendor events. |
| 8916 | */ |
| 8917 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_ACTIVE_REPORTING = 2, |
| 8918 | /* Optionally used by userspace to request the driver/firmware to report |
| 8919 | * Beacon frames periodically when the |
| 8920 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8921 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START. |
| 8922 | * u32 attribute, indicates the period of Beacon frames to be reported |
| 8923 | * and in the units of beacon interval. |
| 8924 | * If this attribute is missing in the command, then the default value |
| 8925 | * of 1 will be assumed by driver, i.e., to report every Beacon frame. |
| 8926 | * Zero is an invalid value. |
| 8927 | * If a valid value is received for this attribute, the driver will |
| 8928 | * update the cfg80211 scan cache periodically as per the value received |
| 8929 | * in this attribute in addition to updating the cfg80211 scan cache |
| 8930 | * when there is significant change in Beacon frame IEs. |
| 8931 | */ |
| 8932 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_PERIOD = 3, |
| 8933 | /* Used by the driver to encapsulate the SSID when the |
| 8934 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8935 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. |
| 8936 | * u8 array with a maximum size of 32. |
| 8937 | * |
| 8938 | * When generating beacon report from non-MBSSID Beacon frame, the SSID |
| 8939 | * will be taken from the SSID element of the received Beacon frame. |
| 8940 | * |
| 8941 | * When generating beacon report from Multiple BSSID Beacon frame and if |
| 8942 | * the BSSID of the current connected BSS matches the BSSID of the |
| 8943 | * transmitting BSS, the SSID will be taken from the SSID element of the |
| 8944 | * received Beacon frame. |
| 8945 | * |
| 8946 | * When generating beacon report from Multiple BSSID Beacon frame and if |
| 8947 | * the BSSID of the current connected BSS matches the BSSID of one of |
| 8948 | * the* nontransmitting BSSs, the SSID will be taken from the SSID field |
| 8949 | * included in the nontransmitted BSS profile whose derived BSSID is |
| 8950 | * same as the BSSID of the current connected BSS. When there is no |
| 8951 | * nontransmitted BSS profile whose derived BSSID is same as the BSSID |
| 8952 | * of current connected* BSS, this attribute will not be present. |
| 8953 | */ |
| 8954 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_SSID = 4, |
| 8955 | /* Used by the driver to encapsulate the BSSID of the AP to which STA is |
| 8956 | * currently connected to when the |
| 8957 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8958 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. u8 array with a |
| 8959 | * fixed size of 6 bytes. |
| 8960 | * |
| 8961 | * When generating beacon report from a Multiple BSSID beacon and the |
| 8962 | * current connected BSSID matches one of the nontransmitted BSSIDs in a |
| 8963 | * Multiple BSSID set, this BSSID will be that particular nontransmitted |
| 8964 | * BSSID and not the transmitted BSSID (i.e., the transmitting address |
| 8965 | * of the Beacon frame). |
| 8966 | */ |
| 8967 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_BSSID = 5, |
| 8968 | /* Used by the driver to encapsulate the frequency in MHz on which |
| 8969 | * the Beacon frame was received when the |
| 8970 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is |
| 8971 | * set to QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. |
| 8972 | * u32 attribute. |
| 8973 | */ |
| 8974 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_FREQ = 6, |
| 8975 | /* Used by the driver to encapsulate the Beacon interval |
| 8976 | * when the QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8977 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. |
| 8978 | * u16 attribute. The value will be copied from the Beacon frame and the |
| 8979 | * units are TUs. |
| 8980 | */ |
| 8981 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_BI = 7, |
| 8982 | /* Used by the driver to encapsulate the Timestamp field from the Beacon |
| 8983 | * frame when the QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set |
| 8984 | * to QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. |
| 8985 | * u64 attribute. |
| 8986 | */ |
| 8987 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_TSF = 8, |
| 8988 | /* Used by the driver to encapsulate the CLOCK_BOOTTIME when this |
| 8989 | * Beacon frame is received in the driver when the |
| 8990 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8991 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. u64 attribute, in |
| 8992 | * the units of nanoseconds. This value is expected to have accuracy of |
| 8993 | * about 10 ms. |
| 8994 | */ |
| 8995 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_BOOTTIME_WHEN_RECEIVED = 9, |
| 8996 | /* Used by the driver to encapsulate the IEs of the Beacon frame from |
| 8997 | * which this event is generated when the |
| 8998 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 8999 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_BEACON_INFO. u8 array. |
| 9000 | */ |
| 9001 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_IES = 10, |
| 9002 | /* Used by the driver to specify the reason for the driver/firmware to |
| 9003 | * pause sending beacons to userspace when the |
| 9004 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 9005 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_PAUSE. Possible values are |
| 9006 | * defined in enum qca_wlan_vendor_beacon_reporting_pause_reasons, u32 |
| 9007 | * attribute. |
| 9008 | */ |
| 9009 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_PAUSE_REASON = 11, |
| 9010 | /* Used by the driver to specify whether the driver will automatically |
| 9011 | * resume reporting beacon events to userspace later (for example after |
| 9012 | * the ongoing off-channel activity is completed etc.) when the |
| 9013 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 9014 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_PAUSE. NLA_FLAG attribute. |
| 9015 | */ |
| 9016 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_AUTO_RESUMES = 12, |
| 9017 | /* Optionally set by userspace to request the driver not to resume |
| 9018 | * beacon reporting after a pause is completed, when the |
| 9019 | * QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_OP_TYPE is set to |
| 9020 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START. NLA_FLAG attribute. |
| 9021 | * If this flag is set, the driver will not resume beacon reporting |
| 9022 | * after any pause in beacon reporting is completed. Userspace has to |
| 9023 | * send QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START command again in order |
| 9024 | * to initiate beacon reporting again. If this flag is set in the recent |
| 9025 | * QCA_WLAN_VENDOR_BEACON_REPORTING_OP_START command, then in the |
| 9026 | * subsequent QCA_WLAN_VENDOR_BEACON_REPORTING_OP_PAUSE event (if any) |
| 9027 | * the QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_AUTO_RESUMES shall not be |
| 9028 | * set by the driver. Setting this flag until and unless there is a |
| 9029 | * specific need is not recommended as there is a chance of some beacons |
| 9030 | * received after pause command and next start command being not |
| 9031 | * reported. |
| 9032 | */ |
| 9033 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_DO_NOT_RESUME = 13, |
| 9034 | |
| 9035 | /* Keep last */ |
| 9036 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_LAST, |
| 9037 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_MAX = |
| 9038 | QCA_WLAN_VENDOR_ATTR_BEACON_REPORTING_LAST - 1 |
| 9039 | }; |
| 9040 | |
| 9041 | /** |
| 9042 | * enum qca_vendor_interop_issues_ap_type - Interop issue types |
| 9043 | * This enum defines the valid set of values of interop issue types. These |
| 9044 | * values are used by attribute %QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_TYPE. |
| 9045 | * |
| 9046 | * @QCA_VENDOR_INTEROP_ISSUES_AP_ON_STA_PS: The AP has power save interop issue |
| 9047 | * when the STA's Qpower feature is enabled. |
| 9048 | */ |
| 9049 | enum qca_vendor_interop_issues_ap_type { |
| 9050 | QCA_VENDOR_INTEROP_ISSUES_AP_INVALID = 0, |
| 9051 | QCA_VENDOR_INTEROP_ISSUES_AP_ON_STA_PS = 1, |
| 9052 | }; |
| 9053 | |
| 9054 | /** |
| 9055 | * enum qca_vendor_attr_interop_issues_ap - attribute for AP with interop issues |
| 9056 | * Values are used by %QCA_NL80211_VENDOR_SUBCMD_INTEROP_ISSUES_AP. |
| 9057 | * |
| 9058 | * @QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_INVALID: Invalid value |
| 9059 | * @QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_TYPE: Interop issue type |
| 9060 | * 32-bit unsigned value. The values defined in enum |
| 9061 | * qca_vendor_interop_issues_ap_type are used. |
| 9062 | * @QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_LIST: APs' BSSID container |
| 9063 | * array of nested QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_BSSID attributes. |
| 9064 | * It is present and mandatory for the command but is not used for the event |
| 9065 | * since only a single BSSID is reported in an event. |
| 9066 | * @QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_BSSID: AP's BSSID 6-byte MAC address. |
| 9067 | * It is used within the nested QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_LIST |
| 9068 | * attribute in command case and without such encapsulation in the event case. |
| 9069 | * @QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_AFTER_LAST: last value |
| 9070 | * @QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_MAX: max value |
| 9071 | */ |
| 9072 | enum qca_vendor_attr_interop_issues_ap { |
| 9073 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_INVALID, |
| 9074 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_TYPE, |
| 9075 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_LIST, |
| 9076 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_BSSID, |
| 9077 | /* keep last */ |
| 9078 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_AFTER_LAST, |
| 9079 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_MAX = |
| 9080 | QCA_WLAN_VENDOR_ATTR_INTEROP_ISSUES_AP_AFTER_LAST - 1 |
| 9081 | }; |
| 9082 | |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 9083 | /** |
| 9084 | * enum qca_vendor_oem_device_type - Represents the target device in firmware. |
| 9085 | * It is used by QCA_WLAN_VENDOR_ATTR_OEM_DEVICE_INFO. |
| 9086 | * |
| 9087 | * @QCA_VENDOR_OEM_DEVICE_VIRTUAL: The command is intended for |
| 9088 | * a virtual device. |
| 9089 | * |
| 9090 | * @QCA_VENDOR_OEM_DEVICE_PHYSICAL: The command is intended for |
| 9091 | * a physical device. |
| 9092 | */ |
| 9093 | enum qca_vendor_oem_device_type { |
| 9094 | QCA_VENDOR_OEM_DEVICE_VIRTUAL = 0, |
| 9095 | QCA_VENDOR_OEM_DEVICE_PHYSICAL = 1, |
| 9096 | }; |
| 9097 | |
| 9098 | /** |
| 9099 | * enum qca_wlan_vendor_attr_oem_data_params - Used by the vendor command/event |
| 9100 | * QCA_NL80211_VENDOR_SUBCMD_OEM_DATA. |
| 9101 | * |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 9102 | * @QCA_WLAN_VENDOR_ATTR_OEM_DATA_CMD_DATA: This NLA_BINARY attribute is |
| 9103 | * used to set/query the data to/from the firmware. On query, the same |
| 9104 | * attribute is used to carry the respective data in the reply sent by the |
| 9105 | * driver to userspace. The request to set/query the data and the format of the |
| 9106 | * respective data from the firmware are embedded in the attribute. The |
| 9107 | * maximum size of the attribute payload is 1024 bytes. |
| 9108 | * Userspace has to set the QCA_WLAN_VENDOR_ATTR_OEM_DATA_RESPONSE_EXPECTED |
| 9109 | * attribute when the data is queried from the firmware. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 9110 | * |
| 9111 | * @QCA_WLAN_VENDOR_ATTR_OEM_DEVICE_INFO: The binary blob will be routed |
| 9112 | * based on this field. This optional attribute is included to specify whether |
| 9113 | * the device type is a virtual device or a physical device for the |
| 9114 | * command/event. This attribute can be omitted for a virtual device (default) |
| 9115 | * command/event. |
| 9116 | * This u8 attribute is used to carry information for the device type using |
| 9117 | * values defined by enum qca_vendor_oem_device_type. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 9118 | * |
| 9119 | * @QCA_WLAN_VENDOR_ATTR_OEM_DATA_RESPONSE_EXPECTED: This NLA_FLAG attribute |
| 9120 | * is set when the userspace queries data from the firmware. This attribute |
| 9121 | * should not be set when userspace sets the OEM data to the firmware. |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 9122 | */ |
| 9123 | enum qca_wlan_vendor_attr_oem_data_params { |
| 9124 | QCA_WLAN_VENDOR_ATTR_OEM_DATA_INVALID = 0, |
| 9125 | QCA_WLAN_VENDOR_ATTR_OEM_DATA_CMD_DATA = 1, |
| 9126 | QCA_WLAN_VENDOR_ATTR_OEM_DEVICE_INFO = 2, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 9127 | QCA_WLAN_VENDOR_ATTR_OEM_DATA_RESPONSE_EXPECTED = 3, |
Hai Shalom | c356592 | 2019-10-28 11:58:20 -0700 | [diff] [blame] | 9128 | |
| 9129 | /* keep last */ |
| 9130 | QCA_WLAN_VENDOR_ATTR_OEM_DATA_PARAMS_AFTER_LAST, |
| 9131 | QCA_WLAN_VENDOR_ATTR_OEM_DATA_PARAMS_MAX = |
| 9132 | QCA_WLAN_VENDOR_ATTR_OEM_DATA_PARAMS_AFTER_LAST - 1 |
| 9133 | }; |
| 9134 | |
| 9135 | /** |
| 9136 | * enum qca_wlan_vendor_attr_avoid_frequency_ext - Defines attributes to be |
| 9137 | * used with vendor command/event QCA_NL80211_VENDOR_SUBCMD_AVOID_FREQUENCY_EXT. |
| 9138 | * |
| 9139 | * @QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_RANGE: Required |
| 9140 | * Nested attribute containing multiple ranges with following attributes: |
| 9141 | * QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_START and |
| 9142 | * QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_END. |
| 9143 | * |
| 9144 | * @QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_START: Required (u32) |
| 9145 | * Starting center frequency in MHz. |
| 9146 | * |
| 9147 | * @QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_END: Required (u32) |
| 9148 | * Ending center frequency in MHz. |
| 9149 | */ |
| 9150 | enum qca_wlan_vendor_attr_avoid_frequency_ext { |
| 9151 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_INVALID = 0, |
| 9152 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_RANGE = 1, |
| 9153 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_START = 2, |
| 9154 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_END = 3, |
| 9155 | |
| 9156 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_AFTER_LAST, |
| 9157 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_MAX = |
| 9158 | QCA_WLAN_VENDOR_ATTR_AVOID_FREQUENCY_AFTER_LAST - 1 |
| 9159 | }; |
| 9160 | |
| 9161 | /* |
| 9162 | * enum qca_wlan_vendor_attr_add_sta_node_params - Used by the vendor command |
| 9163 | * QCA_NL80211_VENDOR_SUBCMD_ADD_STA_NODE. |
| 9164 | */ |
| 9165 | enum qca_wlan_vendor_attr_add_sta_node_params { |
| 9166 | QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_INVALID = 0, |
| 9167 | /* 6 byte MAC address of STA */ |
| 9168 | QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_MAC_ADDR = 1, |
| 9169 | /* Authentication algorithm used by the station of size u16; |
| 9170 | * defined in enum nl80211_auth_type. |
| 9171 | */ |
| 9172 | QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_AUTH_ALGO = 2, |
| 9173 | |
| 9174 | /* keep last */ |
| 9175 | QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_PARAM_AFTER_LAST, |
| 9176 | QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_PARAM_MAX = |
| 9177 | QCA_WLAN_VENDOR_ATTR_ADD_STA_NODE_PARAM_AFTER_LAST - 1 |
| 9178 | }; |
| 9179 | |
| 9180 | /** |
| 9181 | * enum qca_btc_chain_mode - Specifies BT coex chain mode. |
| 9182 | * This enum defines the valid set of values of BT coex chain mode. |
| 9183 | * These values are used by attribute %QCA_VENDOR_ATTR_BTC_CHAIN_MODE of |
| 9184 | * %QCA_NL80211_VENDOR_SUBCMD_BTC_CHAIN_MODE. |
| 9185 | * |
| 9186 | * @QCA_BTC_CHAIN_SHARED: chains of BT and WLAN 2.4G are shared. |
| 9187 | * @QCA_BTC_CHAIN_SEPARATED: chains of BT and WLAN 2.4G are separated. |
| 9188 | */ |
| 9189 | enum qca_btc_chain_mode { |
| 9190 | QCA_BTC_CHAIN_SHARED = 0, |
| 9191 | QCA_BTC_CHAIN_SEPARATED = 1, |
| 9192 | }; |
| 9193 | |
| 9194 | /** |
| 9195 | * enum qca_vendor_attr_btc_chain_mode - Specifies attributes for BT coex |
| 9196 | * chain mode. |
| 9197 | * Attributes for data used by QCA_NL80211_VENDOR_SUBCMD_BTC_CHAIN_MODE. |
| 9198 | * |
| 9199 | * @QCA_VENDOR_ATTR_COEX_BTC_CHAIN_MODE: u32 attribute. |
| 9200 | * Indicates the BT coex chain mode, are 32-bit values from |
| 9201 | * enum qca_btc_chain_mode. This attribute is mandatory. |
| 9202 | * |
| 9203 | * @QCA_VENDOR_ATTR_COEX_BTC_CHAIN_MODE_RESTART: flag attribute. |
| 9204 | * If set, vdev should be restarted when BT coex chain mode is updated. |
| 9205 | * This attribute is optional. |
| 9206 | */ |
| 9207 | enum qca_vendor_attr_btc_chain_mode { |
| 9208 | QCA_VENDOR_ATTR_BTC_CHAIN_MODE_INVALID = 0, |
| 9209 | QCA_VENDOR_ATTR_BTC_CHAIN_MODE = 1, |
| 9210 | QCA_VENDOR_ATTR_BTC_CHAIN_MODE_RESTART = 2, |
| 9211 | |
| 9212 | /* Keep last */ |
| 9213 | QCA_VENDOR_ATTR_BTC_CHAIN_MODE_LAST, |
| 9214 | QCA_VENDOR_ATTR_BTC_CHAIN_MODE_MAX = |
| 9215 | QCA_VENDOR_ATTR_BTC_CHAIN_MODE_LAST - 1, |
| 9216 | }; |
| 9217 | |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 9218 | /** |
| 9219 | * enum qca_vendor_wlan_sta_flags - Station feature flags |
| 9220 | * Bits will be set to 1 if the corresponding features are enabled. |
| 9221 | * @QCA_VENDOR_WLAN_STA_FLAG_AMPDU: AMPDU is enabled for the station |
| 9222 | * @QCA_VENDOR_WLAN_STA_FLAG_TX_STBC: TX Space-time block coding is enabled |
| 9223 | for the station |
| 9224 | * @QCA_VENDOR_WLAN_STA_FLAG_RX_STBC: RX Space-time block coding is enabled |
| 9225 | for the station |
| 9226 | */ |
| 9227 | enum qca_vendor_wlan_sta_flags { |
| 9228 | QCA_VENDOR_WLAN_STA_FLAG_AMPDU = BIT(0), |
| 9229 | QCA_VENDOR_WLAN_STA_FLAG_TX_STBC = BIT(1), |
| 9230 | QCA_VENDOR_WLAN_STA_FLAG_RX_STBC = BIT(2), |
| 9231 | }; |
| 9232 | |
| 9233 | /** |
| 9234 | * enum qca_vendor_wlan_sta_guard_interval - Station guard interval |
| 9235 | * @QCA_VENDOR_WLAN_STA_GI_800_NS: Legacy normal guard interval |
| 9236 | * @QCA_VENDOR_WLAN_STA_GI_400_NS: Legacy short guard interval |
| 9237 | * @QCA_VENDOR_WLAN_STA_GI_1600_NS: Guard interval used by HE |
| 9238 | * @QCA_VENDOR_WLAN_STA_GI_3200_NS: Guard interval used by HE |
| 9239 | */ |
| 9240 | enum qca_vendor_wlan_sta_guard_interval { |
| 9241 | QCA_VENDOR_WLAN_STA_GI_800_NS = 0, |
| 9242 | QCA_VENDOR_WLAN_STA_GI_400_NS = 1, |
| 9243 | QCA_VENDOR_WLAN_STA_GI_1600_NS = 2, |
| 9244 | QCA_VENDOR_WLAN_STA_GI_3200_NS = 3, |
| 9245 | }; |
| 9246 | |
| 9247 | /** |
| 9248 | * enum qca_wlan_vendor_attr_get_sta_info - Defines attributes |
| 9249 | * used by QCA_NL80211_VENDOR_SUBCMD_GET_STA_INFO vendor command. |
| 9250 | * |
| 9251 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_MAC: |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 9252 | * Required attribute in request for AP mode only, 6-byte MAC address, |
| 9253 | * corresponding to the station's MAC address for which information is |
| 9254 | * requested. For STA mode this is not required as the info always correspond |
| 9255 | * to the self STA and the current/last association. |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 9256 | * |
| 9257 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_FLAGS: |
| 9258 | * Optionally used in response, u32 attribute, contains a bitmap of different |
| 9259 | * fields defined in enum qca_vendor_wlan_sta_flags, used in AP mode only. |
| 9260 | * |
| 9261 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_GUARD_INTERVAL: |
| 9262 | * Optionally used in response, u32 attribute, possible values are defined in |
| 9263 | * enum qca_vendor_wlan_sta_guard_interval, used in AP mode only. |
| 9264 | * Guard interval used by the station. |
| 9265 | * |
| 9266 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_RETRY_COUNT: |
| 9267 | * Optionally used in response, u32 attribute, used in AP mode only. |
| 9268 | * Value indicates the number of data frames received from station with retry |
| 9269 | * bit set to 1 in FC. |
| 9270 | * |
| 9271 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_BC_MC_COUNT: |
| 9272 | * Optionally used in response, u32 attribute, used in AP mode only. |
| 9273 | * Counter for number of data frames with broadcast or multicast address in |
| 9274 | * the destination address received from the station. |
| 9275 | * |
| 9276 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RETRY_SUCCEED: |
| 9277 | * Optionally used in response, u32 attribute, used in both STA and AP modes. |
| 9278 | * Value indicates the number of data frames successfully transmitted only |
| 9279 | * after retrying the packets and for which the TX status has been updated |
| 9280 | * back to host from target. |
| 9281 | * |
| 9282 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RETRY_EXHAUSTED: |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 9283 | * Optionally used in response, u32 attribute, used in both STA and AP mode. |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 9284 | * Value indicates the number of data frames not transmitted successfully even |
| 9285 | * after retrying the packets for the number of times equal to the total number |
| 9286 | * of retries allowed for that packet and for which the TX status has been |
| 9287 | * updated back to host from target. |
| 9288 | * |
| 9289 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_TOTAL: |
| 9290 | * Optionally used in response, u32 attribute, used in AP mode only. |
| 9291 | * Counter in the target for the number of data frames successfully transmitted |
| 9292 | * to the station. |
| 9293 | * |
| 9294 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_RETRY: |
| 9295 | * Optionally used in response, u32 attribute, used in AP mode only. |
| 9296 | * Value indicates the number of data frames successfully transmitted only |
| 9297 | * after retrying the packets. |
| 9298 | * |
| 9299 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_RETRY_EXHAUSTED: |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 9300 | * Optionally used in response, u32 attribute, used in both STA & AP mode. |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 9301 | * Value indicates the number of data frames not transmitted successfully even |
| 9302 | * after retrying the packets for the number of times equal to the total number |
| 9303 | * of retries allowed for that packet. |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 9304 | * |
| 9305 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_PROBE_REQ_BMISS_COUNT: u32, used in |
| 9306 | * the STA mode only. Represent the number of probe requests sent by the STA |
| 9307 | * while attempting to roam on missing certain number of beacons from the |
| 9308 | * connected AP. If queried in the disconnected state, this represents the |
| 9309 | * count for the last connected state. |
| 9310 | * |
| 9311 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_PROBE_RESP_BMISS_COUNT: u32, used in |
| 9312 | * the STA mode. Represent the number of probe responses received by the station |
| 9313 | * while attempting to roam on missing certain number of beacons from the |
| 9314 | * connected AP. When queried in the disconnected state, this represents the |
| 9315 | * count when in last connected state. |
| 9316 | * |
| 9317 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_ALL_COUNT: u32, used in the |
| 9318 | * STA mode only. Represents the total number of frames sent out by STA |
| 9319 | * including Data, ACK, RTS, CTS, Control Management. This data is maintained |
| 9320 | * only for the connect session. Represents the count of last connected session, |
| 9321 | * when queried in the disconnected state. |
| 9322 | * |
| 9323 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RTS_COUNT: u32, used in the STA mode. |
| 9324 | * Total number of RTS sent out by the STA. This data is maintained per connect |
| 9325 | * session. Represents the count of last connected session, when queried in the |
| 9326 | * disconnected state. |
| 9327 | * |
| 9328 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RTS_RETRY_FAIL_COUNT: u32, used in the |
| 9329 | * STA mode.Represent the number of RTS transmission failure that reach retry |
| 9330 | * limit. This data is maintained per connect session. Represents the count of |
| 9331 | * last connected session, when queried in the disconnected state. |
| 9332 | * |
| 9333 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_DATA_NON_AGGREGATED_COUNT: u32, used in |
| 9334 | * the STA mode. Represent the total number of non aggregated frames transmitted |
| 9335 | * by the STA. This data is maintained per connect session. Represents the count |
| 9336 | * of last connected session, when queried in the disconnected state. |
| 9337 | * |
| 9338 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_DATA_AGGREGATED_COUNT: u32, used in the |
| 9339 | * STA mode. Represent the total number of aggregated frames transmitted by the |
| 9340 | * STA. This data is maintained per connect session. Represents the count of |
| 9341 | * last connected session, when queried in the disconnected state. |
| 9342 | * |
| 9343 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_FRAMES_GOOD_PLCP_COUNT: u32, used in |
| 9344 | * the STA mode. Represents the number of received frames with a good PLCP. This |
| 9345 | * data is maintained per connect session. Represents the count of last |
| 9346 | * connected session, when queried in the disconnected state. |
| 9347 | * |
| 9348 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_FRAMES_INVALID_DELIMITER_COUNT: u32, |
| 9349 | * used in the STA mode. Represents the number of occasions that no valid |
| 9350 | * delimiter is detected by A-MPDU parser. This data is maintained per connect |
| 9351 | * session. Represents the count of last connected session, when queried in the |
| 9352 | * disconnected state. |
| 9353 | * |
| 9354 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_FRAMES_CRC_FAIL_COUNT: u32, used in the |
| 9355 | * STA mode. Represents the number of frames for which CRC check failed in the |
| 9356 | * MAC. This data is maintained per connect session. Represents the count of |
| 9357 | * last connected session, when queried in the disconnected state. |
| 9358 | * |
| 9359 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_ACKS_GOOD_FCS_COUNT: u32, used in the |
| 9360 | * STA mode. Represents the number of unicast ACKs received with good FCS. This |
| 9361 | * data is maintained per connect session. Represents the count of last |
| 9362 | * connected session, when queried in the disconnected state. |
| 9363 | * |
| 9364 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_BLOCKACK_COUNT: u32, used in the STA |
| 9365 | * mode. Represents the number of received Block Acks. This data is maintained |
| 9366 | * per connect session. Represents the count of last connected session, when |
| 9367 | * queried in the disconnected state. |
| 9368 | * |
| 9369 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_BEACON_COUNT: u32, used in the STA |
| 9370 | * mode. Represents the number of beacons received from the connected BSS. This |
| 9371 | * data is maintained per connect session. Represents the count of last |
| 9372 | * connected session, when queried in the disconnected state. |
| 9373 | * |
| 9374 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_OTHER_BEACON_COUNT: u32, used in the |
| 9375 | * STA mode. Represents the number of beacons received by the other BSS when in |
| 9376 | * connected state (through the probes done by the STA). This data is maintained |
| 9377 | * per connect session. Represents the count of last connected session, when |
| 9378 | * queried in the disconnected state. |
| 9379 | * |
| 9380 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_UCAST_DATA_GOOD_FCS_COUNT: u64, used in |
| 9381 | * the STA mode. Represents the number of received DATA frames with good FCS and |
| 9382 | * matching Receiver Address when in connected state. This data is maintained |
| 9383 | * per connect session. Represents the count of last connected session, when |
| 9384 | * queried in the disconnected state. |
| 9385 | * |
| 9386 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_DATA_BC_MC_DROP_COUNT: u32, used in the |
| 9387 | * STA mode. Represents the number of RX Data multicast frames dropped by the HW |
| 9388 | * when in the connected state. This data is maintained per connect session. |
| 9389 | * Represents the count of last connected session, when queried in the |
| 9390 | * disconnected state. |
| 9391 | * |
| 9392 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_24G_1MBPS: u32, used in the |
| 9393 | * STA mode. This represents the target power in dBm for the transmissions done |
| 9394 | * to the AP in 2.4 GHz at 1 Mbps (DSSS) rate. This data is maintained per |
| 9395 | * connect session. Represents the count of last connected session, when |
| 9396 | * queried in the disconnected state. |
| 9397 | * |
| 9398 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_24G_6MBPS: u32, used in the |
| 9399 | * STA mode. This represents the Target power in dBm for transmissions done to |
| 9400 | * the AP in 2.4 GHz at 6 Mbps (OFDM) rate. This data is maintained per connect |
| 9401 | * session. Represents the count of last connected session, when queried in the |
| 9402 | * disconnected state. |
| 9403 | * |
| 9404 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_24G_MCS0: u32, used in the |
| 9405 | * STA mode. This represents the Target power in dBm for transmissions done to |
| 9406 | * the AP in 2.4 GHz at MCS0 rate. This data is maintained per connect session. |
| 9407 | * Represents the count of last connected session, when queried in the |
| 9408 | * disconnected state. |
| 9409 | * |
| 9410 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_5G_6MBPS: u32, used in the |
| 9411 | * STA mode. This represents the Target power in dBm for transmissions done to |
| 9412 | * the AP in 5 GHz at 6 Mbps (OFDM) rate. This data is maintained per connect |
| 9413 | * session. Represents the count of last connected session, when queried in |
| 9414 | * the disconnected state. |
| 9415 | * |
| 9416 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_5G_MCS0: u32, used in the |
| 9417 | * STA mode. This represents the Target power in dBm for for transmissions done |
| 9418 | * to the AP in 5 GHz at MCS0 rate. This data is maintained per connect session. |
| 9419 | * Represents the count of last connected session, when queried in the |
| 9420 | * disconnected state. |
| 9421 | * |
| 9422 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_HW_BUFFERS_OVERFLOW_COUNT: u32, used |
| 9423 | * in the STA mode. This represents the Nested attribute representing the |
| 9424 | * overflow counts of each receive buffer allocated to the hardware during the |
| 9425 | * STA's connection. The number of hw buffers might vary for each WLAN |
| 9426 | * solution and hence this attribute represents the nested array of all such |
| 9427 | * HW buffer count. This data is maintained per connect session. Represents |
| 9428 | * the count of last connected session, when queried in the disconnected state. |
| 9429 | * |
| 9430 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_MAX_TX_POWER: u32, Max TX power (dBm) |
| 9431 | * allowed as per the regulatory requirements for the current or last connected |
| 9432 | * session. Used in the STA mode. |
| 9433 | * |
| 9434 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_LATEST_TX_POWER: u32, Latest TX power |
| 9435 | * (dBm) used by the station in its latest unicast frame while communicating |
| 9436 | * to the AP in the connected state. When queried in the disconnected state, |
| 9437 | * this represents the TX power used by the STA with last AP communication |
| 9438 | * when in connected state. |
| 9439 | * |
| 9440 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_ANI_LEVEL: u32, Adaptive noise immunity |
| 9441 | * level used to adjust the RX sensitivity. Represents the current ANI level |
| 9442 | * when queried in the connected state. When queried in the disconnected |
| 9443 | * state, this corresponds to the latest ANI level at the instance of |
| 9444 | * disconnection. |
| 9445 | * |
| 9446 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BEACON_IES: Binary attribute containing |
| 9447 | * the raw information elements from Beacon frames. Represents the Beacon frames |
| 9448 | * of the current BSS in the connected state. When queried in the disconnected |
| 9449 | * state, these IEs correspond to the last connected BSSID. |
| 9450 | * |
| 9451 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_PROBE_RESP_IES: Binary attribute |
| 9452 | * containing the raw information elements from Probe Response frames. |
| 9453 | * Represents the Probe Response frames of the current BSS in the connected |
| 9454 | * state. When queried in the disconnected state, these IEs correspond to the |
| 9455 | * last connected BSSID. |
| 9456 | * |
| 9457 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_DRIVER_DISCONNECT_REASON: u32, Driver |
| 9458 | * disconnect reason for the last disconnection if the disconnection is |
| 9459 | * triggered from the host driver. The values are referred from |
| 9460 | * enum qca_disconnect_reason_codes. |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 9461 | * |
| 9462 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BIP_MIC_ERROR_COUNT: u32, used in STA mode |
| 9463 | * only. This represents the number of group addressed robust management frames |
| 9464 | * received from this station with an invalid MIC or a missing MME when PMF is |
| 9465 | * enabled. |
| 9466 | * |
| 9467 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BIP_REPLAY_COUNT: u32, used in STA mode |
| 9468 | * only. This represents the number of group addressed robust management frames |
| 9469 | * received from this station with the packet number less than or equal to the |
| 9470 | * last received packet number when PMF is enabled. |
| 9471 | * |
| 9472 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BEACON_MIC_ERROR_COUNT: u32, used in STA |
| 9473 | * mode only. This represents the number of Beacon frames received from this |
| 9474 | * station with an invalid MIC or a missing MME when beacon protection is |
| 9475 | * enabled. |
| 9476 | * |
| 9477 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BEACON_REPLAY_COUNT: u32, used in STA mode |
| 9478 | * only. This represents number of Beacon frames received from this station with |
| 9479 | * the packet number less than or equal to the last received packet number when |
| 9480 | * beacon protection is enabled. |
| 9481 | * |
| 9482 | * @QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_CONNECT_FAIL_REASON_CODE: u32, used in |
| 9483 | * STA mode only. The driver uses this attribute to populate the connection |
| 9484 | * failure reason codes and the values are defined in |
| 9485 | * enum qca_sta_connect_fail_reason_codes. Userspace applications can send |
| 9486 | * QCA_NL80211_VENDOR_SUBCMD_GET_STA_INFO vendor command after receiving |
| 9487 | * a connection failure indication from the driver. The driver shall not |
| 9488 | * include this attribute in response to the |
| 9489 | * QCA_NL80211_VENDOR_SUBCMD_GET_STA_INFO command if there is no connection |
| 9490 | * failure observed in the last attempted connection. |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 9491 | */ |
| 9492 | enum qca_wlan_vendor_attr_get_sta_info { |
| 9493 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_INVALID = 0, |
| 9494 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_MAC = 1, |
| 9495 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_FLAGS = 2, |
| 9496 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_GUARD_INTERVAL = 3, |
| 9497 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_RETRY_COUNT = 4, |
| 9498 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_BC_MC_COUNT = 5, |
| 9499 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RETRY_SUCCEED = 6, |
| 9500 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RETRY_EXHAUSTED = 7, |
| 9501 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_TOTAL = 8, |
| 9502 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_RETRY = 9, |
| 9503 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_RETRY_EXHAUSTED = 10, |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 9504 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_PROBE_REQ_BMISS_COUNT = 11, |
| 9505 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_PROBE_RESP_BMISS_COUNT = 12, |
| 9506 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_TX_ALL_COUNT = 13, |
| 9507 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RTS_COUNT = 14, |
| 9508 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_RTS_RETRY_FAIL_COUNT = 15, |
| 9509 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_DATA_NON_AGGREGATED_COUNT = 16, |
| 9510 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TX_DATA_AGGREGATED_COUNT = 17, |
| 9511 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_FRAMES_GOOD_PLCP_COUNT = 18, |
| 9512 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_FRAMES_INVALID_DELIMITER_COUNT = 19, |
| 9513 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_FRAMES_CRC_FAIL_COUNT = 20, |
| 9514 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_ACKS_GOOD_FCS_COUNT = 21, |
| 9515 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_BLOCKACK_COUNT = 22, |
| 9516 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_BEACON_COUNT = 23, |
| 9517 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_OTHER_BEACON_COUNT = 24, |
| 9518 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_UCAST_DATA_GOOD_FCS_COUNT = 25, |
| 9519 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_DATA_BC_MC_DROP_COUNT = 26, |
| 9520 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_24G_1MBPS = 27, |
| 9521 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_24G_6MBPS = 28, |
| 9522 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_24G_MCS0 = 29, |
| 9523 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_5G_6MBPS = 30, |
| 9524 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_TARGET_POWER_5G_MCS0 = 31, |
| 9525 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_RX_HW_BUFFERS_OVERFLOW_COUNT = 32, |
| 9526 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_MAX_TX_POWER = 33, |
| 9527 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_LATEST_TX_POWER = 34, |
| 9528 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_ANI_LEVEL = 35, |
| 9529 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BEACON_IES = 36, |
| 9530 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_PROBE_RESP_IES = 37, |
| 9531 | QCA_WLAN_VENDOR_ATTR_GET_STA_DRIVER_DISCONNECT_REASON = 38, |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 9532 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BIP_MIC_ERROR_COUNT = 39, |
| 9533 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BIP_REPLAY_COUNT = 40, |
| 9534 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BEACON_MIC_ERROR_COUNT = 41, |
| 9535 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_BEACON_REPLAY_COUNT = 42, |
| 9536 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_CONNECT_FAIL_REASON_CODE = 43, |
Ahmed ElArabawy | 0ff61c5 | 2019-12-26 12:38:39 -0800 | [diff] [blame] | 9537 | |
| 9538 | /* keep last */ |
| 9539 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_AFTER_LAST, |
| 9540 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_MAX = |
| 9541 | QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_AFTER_LAST - 1, |
| 9542 | }; |
| 9543 | |
Hai Shalom | fdcde76 | 2020-04-02 11:19:20 -0700 | [diff] [blame] | 9544 | /** |
| 9545 | * enum qca_wlan_vendor_attr_update_sta_info - Defines attributes |
| 9546 | * used by QCA_NL80211_VENDOR_SUBCMD_UPDATE_STA_INFO vendor command. |
| 9547 | * |
| 9548 | * @QCA_WLAN_VENDOR_ATTR_UPDATE_STA_INFO_CONNECT_CHANNELS: Type is NLA_UNSPEC. |
| 9549 | * Used in STA mode. This attribute represents the list of channel center |
| 9550 | * frequencies in MHz (u32) the station has learnt during the last connection |
| 9551 | * or roaming attempt. This information shall not signify the channels for |
| 9552 | * an explicit scan request from the user space. Host drivers can update this |
| 9553 | * information to the user space in both connected and disconnected state. |
| 9554 | * In the disconnected state this information shall signify the channels |
| 9555 | * scanned in the last connection/roam attempt that lead to the disconnection. |
| 9556 | */ |
| 9557 | enum qca_wlan_vendor_attr_update_sta_info { |
| 9558 | QCA_WLAN_VENDOR_ATTR_UPDATE_STA_INFO_INVALID = 0, |
| 9559 | QCA_WLAN_VENDOR_ATTR_UPDATE_STA_INFO_CONNECT_CHANNELS = 1, |
| 9560 | |
| 9561 | /* keep last */ |
| 9562 | QCA_WLAN_VENDOR_ATTR_UPDATE_STA_INFO_AFTER_LAST, |
| 9563 | QCA_WLAN_VENDOR_ATTR_UPDATE_STA_INFO_MAX = |
| 9564 | QCA_WLAN_VENDOR_ATTR_UPDATE_STA_INFO_AFTER_LAST - 1, |
| 9565 | }; |
| 9566 | |
| 9567 | /** |
| 9568 | * enum qca_disconnect_reason_codes - Specifies driver disconnect reason codes. |
| 9569 | * Used when the driver triggers the STA to disconnect from the AP. |
| 9570 | * |
| 9571 | * @QCA_DISCONNECT_REASON_UNSPECIFIED: The host driver triggered the |
| 9572 | * disconnection with the AP due to unspecified reasons. |
| 9573 | * |
| 9574 | * @QCA_DISCONNECT_REASON_INTERNAL_ROAM_FAILURE: The host driver triggered the |
| 9575 | * disconnection with the AP due to a roaming failure. This roaming is triggered |
| 9576 | * internally (host driver/firmware). |
| 9577 | * |
| 9578 | * @QCA_DISCONNECT_REASON_EXTERNAL_ROAM_FAILURE: The driver disconnected from |
| 9579 | * the AP when the user/external triggered roaming fails. |
| 9580 | * |
| 9581 | * @QCA_DISCONNECT_REASON_GATEWAY_REACHABILITY_FAILURE: This reason code is used |
| 9582 | * by the host driver whenever gateway reachability failure is detected and the |
| 9583 | * driver disconnects with AP. |
| 9584 | * |
| 9585 | * @QCA_DISCONNECT_REASON_UNSUPPORTED_CHANNEL_CSA: The driver disconnected from |
| 9586 | * the AP on a channel switch announcement from it with an unsupported channel. |
| 9587 | * |
| 9588 | * @QCA_DISCONNECT_REASON_OPER_CHANNEL_DISABLED_INDOOR: On a concurrent AP start |
| 9589 | * with indoor channels disabled and if the STA is connected on one of these |
| 9590 | * disabled channels, the host driver disconnected the STA with this reason |
| 9591 | * code. |
| 9592 | * |
| 9593 | * @QCA_DISCONNECT_REASON_OPER_CHANNEL_USER_DISABLED: Disconnection due to an |
| 9594 | * explicit request from the user to disable the current operating channel. |
| 9595 | * |
| 9596 | * @QCA_DISCONNECT_REASON_DEVICE_RECOVERY: STA disconnected from the AP due to |
| 9597 | * the internal host driver/firmware recovery. |
| 9598 | * |
| 9599 | * @QCA_DISCONNECT_REASON_KEY_TIMEOUT: The driver triggered the disconnection on |
| 9600 | * a timeout for the key installations from the user space. |
| 9601 | * |
| 9602 | * @QCA_DISCONNECT_REASON_OPER_CHANNEL_BAND_CHANGE: The dDriver disconnected the |
| 9603 | * STA on a band change request from the user space to a different band from the |
| 9604 | * current operation channel/band. |
| 9605 | * |
| 9606 | * @QCA_DISCONNECT_REASON_IFACE_DOWN: The STA disconnected from the AP on an |
| 9607 | * interface down trigger from the user space. |
| 9608 | * |
| 9609 | * @QCA_DISCONNECT_REASON_PEER_XRETRY_FAIL: The host driver disconnected the |
| 9610 | * STA on getting continuous transmission failures for multiple Data frames. |
| 9611 | * |
| 9612 | * @QCA_DISCONNECT_REASON_PEER_INACTIVITY: The STA does a keep alive |
| 9613 | * notification to the AP by transmitting NULL/G-ARP frames. This disconnection |
| 9614 | * represents inactivity from AP on such transmissions. |
| 9615 | |
| 9616 | * @QCA_DISCONNECT_REASON_SA_QUERY_TIMEOUT: This reason code is used on |
| 9617 | * disconnection when SA Query times out (AP does not respond to SA Query). |
| 9618 | * |
| 9619 | * @QCA_DISCONNECT_REASON_BEACON_MISS_FAILURE: The host driver disconnected the |
| 9620 | * STA on missing the beacons continuously from the AP. |
| 9621 | * |
| 9622 | * @QCA_DISCONNECT_REASON_CHANNEL_SWITCH_FAILURE: Disconnection due to STA not |
| 9623 | * able to move to the channel mentioned by the AP in CSA. |
| 9624 | * |
| 9625 | * @QCA_DISCONNECT_REASON_USER_TRIGGERED: User triggered disconnection. |
| 9626 | */ |
| 9627 | enum qca_disconnect_reason_codes { |
| 9628 | QCA_DISCONNECT_REASON_UNSPECIFIED = 0, |
| 9629 | QCA_DISCONNECT_REASON_INTERNAL_ROAM_FAILURE = 1, |
| 9630 | QCA_DISCONNECT_REASON_EXTERNAL_ROAM_FAILURE = 2, |
| 9631 | QCA_DISCONNECT_REASON_GATEWAY_REACHABILITY_FAILURE = 3, |
| 9632 | QCA_DISCONNECT_REASON_UNSUPPORTED_CHANNEL_CSA = 4, |
| 9633 | QCA_DISCONNECT_REASON_OPER_CHANNEL_DISABLED_INDOOR = 5, |
| 9634 | QCA_DISCONNECT_REASON_OPER_CHANNEL_USER_DISABLED = 6, |
| 9635 | QCA_DISCONNECT_REASON_DEVICE_RECOVERY = 7, |
| 9636 | QCA_DISCONNECT_REASON_KEY_TIMEOUT = 8, |
| 9637 | QCA_DISCONNECT_REASON_OPER_CHANNEL_BAND_CHANGE = 9, |
| 9638 | QCA_DISCONNECT_REASON_IFACE_DOWN = 10, |
| 9639 | QCA_DISCONNECT_REASON_PEER_XRETRY_FAIL = 11, |
| 9640 | QCA_DISCONNECT_REASON_PEER_INACTIVITY = 12, |
| 9641 | QCA_DISCONNECT_REASON_SA_QUERY_TIMEOUT = 13, |
| 9642 | QCA_DISCONNECT_REASON_BEACON_MISS_FAILURE = 14, |
| 9643 | QCA_DISCONNECT_REASON_CHANNEL_SWITCH_FAILURE = 15, |
| 9644 | QCA_DISCONNECT_REASON_USER_TRIGGERED = 16, |
| 9645 | }; |
| 9646 | |
| 9647 | /** |
| 9648 | * enum qca_wlan_vendor_attr_driver_disconnect_reason - Defines attributes |
| 9649 | * used by %QCA_NL80211_VENDOR_SUBCMD_DRIVER_DISCONNECT_REASON vendor command. |
| 9650 | * |
| 9651 | * @QCA_WLAN_VENDOR_ATTR_DRIVER_DISCONNECT_REASCON_CODE: u32 attribute. |
| 9652 | * This attribute represents the driver specific reason codes (local |
| 9653 | * driver/firmware initiated reasons for disconnection) defined |
| 9654 | * in enum qca_disconnect_reason_codes. |
| 9655 | */ |
| 9656 | enum qca_wlan_vendor_attr_driver_disconnect_reason { |
| 9657 | QCA_WLAN_VENDOR_ATTR_DRIVER_DISCONNECT_REASON_INVALID = 0, |
| 9658 | QCA_WLAN_VENDOR_ATTR_DRIVER_DISCONNECT_REASCON_CODE = 1, |
| 9659 | |
| 9660 | /* keep last */ |
| 9661 | QCA_WLAN_VENDOR_ATTR_DRIVER_DISCONNECT_REASON_AFTER_LAST, |
| 9662 | QCA_WLAN_VENDOR_ATTR_DRIVER_DISCONNECT_REASON_MAX = |
| 9663 | QCA_WLAN_VENDOR_ATTR_DRIVER_DISCONNECT_REASON_AFTER_LAST - 1, |
| 9664 | }; |
| 9665 | |
Hai Shalom | 899fcc7 | 2020-10-19 14:38:18 -0700 | [diff] [blame^] | 9666 | /** |
| 9667 | * enum qca_wlan_tspec_operation - Operation of the config TSPEC request |
| 9668 | * |
| 9669 | * Values for %QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_OPERATION. |
| 9670 | */ |
| 9671 | enum qca_wlan_tspec_operation { |
| 9672 | QCA_WLAN_TSPEC_ADD = 0, |
| 9673 | QCA_WLAN_TSPEC_DEL = 1, |
| 9674 | QCA_WLAN_TSPEC_GET = 2, |
| 9675 | }; |
| 9676 | |
| 9677 | /** |
| 9678 | * enum qca_wlan_tspec_direction - Direction in TSPEC |
| 9679 | * As what is defined in IEEE Std 802.11-2016, Table 9-139. |
| 9680 | * |
| 9681 | * Values for %QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_DIRECTION. |
| 9682 | */ |
| 9683 | enum qca_wlan_tspec_direction { |
| 9684 | QCA_WLAN_TSPEC_DIRECTION_UPLINK = 0, |
| 9685 | QCA_WLAN_TSPEC_DIRECTION_DOWNLINK = 1, |
| 9686 | QCA_WLAN_TSPEC_DIRECTION_DIRECT = 2, |
| 9687 | QCA_WLAN_TSPEC_DIRECTION_BOTH = 3, |
| 9688 | }; |
| 9689 | |
| 9690 | /** |
| 9691 | * enum qca_wlan_tspec_ack_policy - MAC acknowledgement policy in TSPEC |
| 9692 | * As what is defined in IEEE Std 802.11-2016, Table 9-141. |
| 9693 | * |
| 9694 | * Values for %QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_ACK_POLICY. |
| 9695 | */ |
| 9696 | enum qca_wlan_tspec_ack_policy { |
| 9697 | QCA_WLAN_TSPEC_NORMAL_ACK = 0, |
| 9698 | QCA_WLAN_TSPEC_NO_ACK = 1, |
| 9699 | /* Reserved */ |
| 9700 | QCA_WLAN_TSPEC_BLOCK_ACK = 3, |
| 9701 | }; |
| 9702 | |
| 9703 | /** |
| 9704 | * enum qca_wlan_vendor_attr_config_tspec - Defines attributes |
| 9705 | * used by %QCA_NL80211_VENDOR_SUBCMD_CONFIG_TSPEC vendor command. |
| 9706 | * |
| 9707 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_OPERATION: |
| 9708 | * u8 attribute. Specify the TSPEC operation of this request. Possible values |
| 9709 | * are defined in enum qca_wlan_tspec_operation. |
| 9710 | * Mandatory attribute for all kinds of config TSPEC requests. |
| 9711 | * |
| 9712 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_TSID: |
| 9713 | * u8 attribute. TS ID. Possible values are 0-7. |
| 9714 | * Applicable for operation: QCA_WLAN_TSPEC_ADD, QCA_WLAN_TSPEC_DEL, |
| 9715 | * QCA_WLAN_TSPEC_GET. A mandatory attribute. |
| 9716 | * |
| 9717 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_DIRECTION: |
| 9718 | * u8 attribute. Direction of data carried by the TS. Possible values are |
| 9719 | * defined in enum qca_wlan_tspec_direction. |
| 9720 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9721 | * |
| 9722 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_APSD: |
| 9723 | * Flag attribute. Indicate whether APSD is enabled for the traffic associated |
| 9724 | * with the TS. set - enabled, not set - disabled. |
| 9725 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9726 | * |
| 9727 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_USER_PRIORITY: |
| 9728 | * u8 attribute. User priority to be used for the transport of MSDUs/A-MSDUs |
| 9729 | * belonging to this TS. Possible values are 0-7. |
| 9730 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. An optional attribute. |
| 9731 | * |
| 9732 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_ACK_POLICY: |
| 9733 | * u8 attribute. Indicate whether MAC acknowledgements are required for |
| 9734 | * MPDUs/A-MSDUs belonging to this TS and the form of those acknowledgements. |
| 9735 | * Possible values are defined in enum qca_wlan_tspec_ack_policy. |
| 9736 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9737 | * |
| 9738 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_NOMINAL_MSDU_SIZE: |
| 9739 | * u16 attribute. Specify the nominal size in bytes of MSDUs/A-MSDUs |
| 9740 | * belonging to this TS. |
| 9741 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9742 | * |
| 9743 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MAXIMUM_MSDU_SIZE: |
| 9744 | * u16 attribute. Specify the maximum size in bytes of MSDUs/A-MSDUs |
| 9745 | * belonging to this TS. |
| 9746 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9747 | * |
| 9748 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MIN_SERVICE_INTERVAL: |
| 9749 | * u32 attribute. Specify the minimum interval in microseconds between the |
| 9750 | * start of two successive SPs. |
| 9751 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9752 | * |
| 9753 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MAX_SERVICE_INTERVAL: |
| 9754 | * u32 attribute. Specify the maximum interval in microseconds between the |
| 9755 | * start of two successive SPs. |
| 9756 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9757 | * |
| 9758 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_INACTIVITY_INTERVAL: |
| 9759 | * u32 attribute. Specify the minimum interval in microseconds that can elapse |
| 9760 | * without arrival or transfer of an MPDU belonging to the TS before this TS |
| 9761 | * is deleted by the MAC entity at the HC. |
| 9762 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9763 | * |
| 9764 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_SUSPENSION_INTERVAL: |
| 9765 | * u32 attribute. Specify the minimum interval in microseconds that can elapse |
| 9766 | * without arrival or transfer of an MSDU belonging to the TS before the |
| 9767 | * generation of successive QoS(+)CF-Poll is stopped for this TS. A value of |
| 9768 | * 0xFFFFFFFF disables the suspension interval. The value of the suspension |
| 9769 | * interval is always less than or equal to the inactivity interval. |
| 9770 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9771 | * |
| 9772 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MINIMUM_DATA_RATE: |
| 9773 | * u32 attribute. Indicate the lowest data rate in bps specified at the MAC |
| 9774 | * SAP for transport of MSDUs or A-MSDUs belonging to this TS within the |
| 9775 | * bounds of this TSPEC. |
| 9776 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. An optional attribute. |
| 9777 | * |
| 9778 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MEAN_DATA_RATE: |
| 9779 | * u32 attribute. Indicate the average data rate in bps specified at the MAC |
| 9780 | * SAP for transport of MSDUs or A-MSDUs belonging to this TS within the |
| 9781 | * bounds of this TSPEC. |
| 9782 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. An optional attribute. |
| 9783 | * |
| 9784 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_PEAK_DATA_RATE: |
| 9785 | * u32 attribute. Indicate the maximum allowable data rate in bps specified at |
| 9786 | * the MAC SAP for transport of MSDUs or A-MSDUs belonging to this TS within |
| 9787 | * the bounds of this TSPEC. |
| 9788 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. An optional attribute. |
| 9789 | * |
| 9790 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_BURST_SIZE: |
| 9791 | * u32 attribute. Specify the maximum burst size in bytes of the MSDUs/A-MSDUs |
| 9792 | * belonging to this TS that arrive at the MAC SAP at the peak data rate. A |
| 9793 | * value of 0 indicates that there are no bursts. |
| 9794 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. An optional attribute. |
| 9795 | * |
| 9796 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MINIMUM_PHY_RATE: |
| 9797 | * u32 attribute. Indicate the minimum PHY rate in bps for transport of |
| 9798 | * MSDUs/A-MSDUs belonging to this TS within the bounds of this TSPEC. |
| 9799 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. An optional attribute. |
| 9800 | * |
| 9801 | * @QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_SURPLUS_BANDWIDTH_ALLOWANCE: |
| 9802 | * u16 attribute. Specify the excess allocation of time (and bandwidth) over |
| 9803 | * and above the stated application rates required to transport an MSDU/A-MSDU |
| 9804 | * belonging to the TS in this TSPEC. |
| 9805 | * Applicable for operation: QCA_WLAN_TSPEC_ADD. A mandatory attribute. |
| 9806 | */ |
| 9807 | enum qca_wlan_vendor_attr_config_tspec { |
| 9808 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_INVALID = 0, |
| 9809 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_OPERATION = 1, |
| 9810 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_TSID = 2, |
| 9811 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_DIRECTION = 3, |
| 9812 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_APSD = 4, |
| 9813 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_USER_PRIORITY = 5, |
| 9814 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_ACK_POLICY = 6, |
| 9815 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_NOMINAL_MSDU_SIZE = 7, |
| 9816 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MAXIMUM_MSDU_SIZE = 8, |
| 9817 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MIN_SERVICE_INTERVAL = 9, |
| 9818 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MAX_SERVICE_INTERVAL = 10, |
| 9819 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_INACTIVITY_INTERVAL = 11, |
| 9820 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_SUSPENSION_INTERVAL = 12, |
| 9821 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MINIMUM_DATA_RATE = 13, |
| 9822 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MEAN_DATA_RATE = 14, |
| 9823 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_PEAK_DATA_RATE = 15, |
| 9824 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_BURST_SIZE = 16, |
| 9825 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MINIMUM_PHY_RATE = 17, |
| 9826 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_SURPLUS_BANDWIDTH_ALLOWANCE = 18, |
| 9827 | |
| 9828 | /* keep last */ |
| 9829 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_AFTER_LAST, |
| 9830 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_MAX = |
| 9831 | QCA_WLAN_VENDOR_ATTR_CONFIG_TSPEC_AFTER_LAST - 1, |
| 9832 | }; |
| 9833 | |
| 9834 | /** |
| 9835 | * enum qca_wlan_vendor_oci_override_frame_type - OCI override frame type |
| 9836 | * @QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_SA_QUERY_REQ: SA Query Request frame |
| 9837 | * @QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_SA_QUERY_RESP: SA Query Response frame |
| 9838 | * @QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_FT_REASSOC_REQ: FT Reassociation Request |
| 9839 | * frame |
| 9840 | * @QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_FILS_REASSOC_REQ: FILS Reassociation |
| 9841 | * Request frame. |
| 9842 | */ |
| 9843 | enum qca_wlan_vendor_oci_override_frame_type { |
| 9844 | QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_SA_QUERY_REQ = 1, |
| 9845 | QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_SA_QUERY_RESP = 2, |
| 9846 | QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_FT_REASSOC_REQ = 3, |
| 9847 | QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_FILS_REASSOC_REQ = 4, |
| 9848 | }; |
| 9849 | |
| 9850 | /** |
| 9851 | * enum qca_wlan_vendor_attr_oci_override: Represents attributes for |
| 9852 | * OCI override request. These attributes are used inside nested attribute |
| 9853 | * %QCA_WLAN_VENDOR_ATTR_WIFI_TEST_CONFIG_OCI_OVERRIDE in QCA vendor command |
| 9854 | * %QCA_NL80211_VENDOR_SUBCMD_WIFI_TEST_CONFIGURATION. |
| 9855 | * |
| 9856 | * @QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_FRAME_TYPE: Required attribute, u8. |
| 9857 | * Values from enum qca_wlan_vendor_oci_override_frame_type used in this |
| 9858 | * attribute to specify the frame type in which the OCI is to be overridden. |
| 9859 | * |
| 9860 | * @QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_FREQUENCY: Required (u32) |
| 9861 | * OCI frequency (in MHz) to override in the specified frame type. |
| 9862 | */ |
| 9863 | enum qca_wlan_vendor_attr_oci_override { |
| 9864 | QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_INVALID = 0, |
| 9865 | QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_FRAME_TYPE = 1, |
| 9866 | QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_FREQUENCY = 2, |
| 9867 | |
| 9868 | /* keep last */ |
| 9869 | QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_AFTER_LAST, |
| 9870 | QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_MAX = |
| 9871 | QCA_WLAN_VENDOR_ATTR_OCI_OVERRIDE_AFTER_LAST - 1, |
| 9872 | }; |
| 9873 | |
| 9874 | /** |
| 9875 | * enum qca_wlan_medium_assess_type - Type of medium assess request |
| 9876 | * |
| 9877 | * Values for %QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_TYPE. |
| 9878 | */ |
| 9879 | enum qca_wlan_medium_assess_type { |
| 9880 | QCA_WLAN_MEDIUM_ASSESS_CCA = 0, |
| 9881 | QCA_WLAN_MEDIUM_ASSESS_CONGESTION_REPORT = 1, |
| 9882 | }; |
| 9883 | |
| 9884 | /** |
| 9885 | * enum qca_wlan_vendor_attr_medium_assess - Attributes used by |
| 9886 | * %QCA_NL80211_VENDOR_SUBCMD_MEDIUM_ASSESS vendor command. |
| 9887 | * |
| 9888 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_TYPE: |
| 9889 | * u8 attribute. Mandatory in all kinds of medium assess requests/responses. |
| 9890 | * Specify the type of medium assess request and indicate its type in response. |
| 9891 | * Possible values are defined in enum qca_wlan_medium_assess_type. |
| 9892 | * |
| 9893 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_PERIOD: |
| 9894 | * u32 attribute. Mandatory in CCA request. |
| 9895 | * Specify the assessment period in terms of seconds. Assessment result will be |
| 9896 | * sent as the response to the CCA request after the assessment period. |
| 9897 | * |
| 9898 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_TOTAL_CYCLE_COUNT: |
| 9899 | * u32 attribute. Mandatory in response to CCA request. |
| 9900 | * Total timer tick count of the assessment cycle. |
| 9901 | * |
| 9902 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_IDLE_COUNT: |
| 9903 | * u32 attribute. Mandatory in response to CCA request. |
| 9904 | * Timer tick count of idle time in the assessment cycle. |
| 9905 | * |
| 9906 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_IBSS_RX_COUNT: |
| 9907 | * u32 attribute. Mandatory in response to CCA request. |
| 9908 | * Timer tick count of Intra BSS traffic RX time in the assessment cycle. |
| 9909 | * |
| 9910 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_OBSS_RX_COUNT: |
| 9911 | * u32 attribute. Mandatory in response to CCA request. |
| 9912 | * Timer tick count of Overlapping BSS traffic RX time in the assessment cycle. |
| 9913 | * |
| 9914 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_MAX_IBSS_RSSI: |
| 9915 | * s32 attribute. Mandatory in response to CCA request. |
| 9916 | * Maximum RSSI of Intra BSS traffic in the assessment cycle. |
| 9917 | * |
| 9918 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_MIN_IBSS_RSSI: |
| 9919 | * s32 attribute. Mandatory in response to CCA request. |
| 9920 | * Minimum RSSI of Intra BSS traffic in the assessment cycle. |
| 9921 | * |
| 9922 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_REPORT_ENABLE: |
| 9923 | * u8 attribute. Mandatory in congestion report request. |
| 9924 | * 1-enable 0-disable. |
| 9925 | * |
| 9926 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_REPORT_THRESHOLD: |
| 9927 | * u8 attribute. Mandatory in congestion report enable request and will be |
| 9928 | * ignored if present in congestion report disable request. Possible values are |
| 9929 | * 0-100. A vendor event QCA_NL80211_VENDOR_SUBCMD_MEDIUM_ASSESS with the type |
| 9930 | * QCA_WLAN_MEDIUM_ASSESS_CONGESTION_REPORT will be sent to userspace if |
| 9931 | * congestion percentage reaches the configured threshold. |
| 9932 | * |
| 9933 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_REPORT_INTERVAL: |
| 9934 | * u8 attribute. Optional in congestion report enable request and will be |
| 9935 | * ignored if present in congestion report disable request. |
| 9936 | * Specify the interval of congestion report event in terms of seconds. Possible |
| 9937 | * values are 1-255. Default value 1 will be used if this attribute is omitted |
| 9938 | * or using invalid values. |
| 9939 | * |
| 9940 | * @QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_PERCENTAGE: |
| 9941 | * u8 attribute. Mandatory in congestion report event. |
| 9942 | * Indicate the actual congestion percentage. Possible values are 0-100. |
| 9943 | */ |
| 9944 | enum qca_wlan_vendor_attr_medium_assess { |
| 9945 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_INVALID = 0, |
| 9946 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_TYPE = 1, |
| 9947 | |
| 9948 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_PERIOD = 2, |
| 9949 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_TOTAL_CYCLE_COUNT = 3, |
| 9950 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_IDLE_COUNT = 4, |
| 9951 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_IBSS_RX_COUNT = 5, |
| 9952 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_OBSS_RX_COUNT = 6, |
| 9953 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_MAX_IBSS_RSSI = 7, |
| 9954 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_MIN_IBSS_RSSI = 8, |
| 9955 | |
| 9956 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_REPORT_ENABLE = 9, |
| 9957 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_REPORT_THRESHOLD = 10, |
| 9958 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_REPORT_INTERVAL = 11, |
| 9959 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_CONGESTION_PERCENTAGE = 12, |
| 9960 | |
| 9961 | /* keep last */ |
| 9962 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_AFTER_LAST, |
| 9963 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_MAX = |
| 9964 | QCA_WLAN_VENDOR_ATTR_MEDIUM_ASSESS_AFTER_LAST - 1, |
| 9965 | }; |
| 9966 | |
| 9967 | /** |
| 9968 | * enum qca_wlan_vendor_attr_mbssid_tx_vdev_status - Defines attributes |
| 9969 | * used by QCA_NL80211_VENDOR_SUBCMD_MBSSID_TX_VDEV_STATUS vendor command. |
| 9970 | * |
| 9971 | * @QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_VAL: |
| 9972 | * u8 attribute. Notify the TX VDEV status. Possible values 0, 1 |
| 9973 | * belonging to MBSSID/EMA_AP configuration. 0 means Non-Tx VDEV, |
| 9974 | * 1 means Tx VDEV. Mandatory attribute for all MBSSID VDEV status events. |
| 9975 | */ |
| 9976 | enum qca_wlan_vendor_attr_mbssid_tx_vdev_status { |
| 9977 | QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_INVALID = 0, |
| 9978 | QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_VAL = 1, |
| 9979 | |
| 9980 | /* keep last */ |
| 9981 | QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_AFTER_LAST, |
| 9982 | QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_MAX = |
| 9983 | QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_AFTER_LAST - 1, |
| 9984 | }; |
| 9985 | |
| 9986 | /** |
| 9987 | * enum qca_sta_connect_fail_reason_codes - Defines values carried |
| 9988 | * by QCA_WLAN_VENDOR_ATTR_GET_STA_INFO_CONNECT_FAIL_REASON_CODE vendor |
| 9989 | * attribute. |
| 9990 | * @QCA_STA_CONNECT_FAIL_REASON_NO_BSS_FOUND: No Probe Response frame received |
| 9991 | * for unicast Probe Request frame. |
| 9992 | * @QCA_STA_CONNECT_FAIL_REASON_AUTH_TX_FAIL: STA failed to send auth request. |
| 9993 | * @QCA_STA_CONNECT_FAIL_REASON_AUTH_NO_ACK_RECEIVED: AP didn't send ACK for |
| 9994 | * auth request. |
| 9995 | * @QCA_STA_CONNECT_FAIL_REASON_AUTH_NO_RESP_RECEIVED: Auth response is not |
| 9996 | * received from AP. |
| 9997 | * @QCA_STA_CONNECT_FAIL_REASON_ASSOC_REQ_TX_FAIL: STA failed to send |
| 9998 | * Association Request frame. |
| 9999 | * @QCA_STA_CONNECT_FAIL_REASON_ASSOC_NO_ACK_RECEIVED: AP didn't send ACK for |
| 10000 | * Association Request frame. |
| 10001 | * @QCA_STA_CONNECT_FAIL_REASON_ASSOC_NO_RESP_RECEIVED: Association Response |
| 10002 | * frame is not received from AP. |
| 10003 | */ |
| 10004 | enum qca_sta_connect_fail_reason_codes { |
| 10005 | QCA_STA_CONNECT_FAIL_REASON_NO_BSS_FOUND = 1, |
| 10006 | QCA_STA_CONNECT_FAIL_REASON_AUTH_TX_FAIL = 2, |
| 10007 | QCA_STA_CONNECT_FAIL_REASON_AUTH_NO_ACK_RECEIVED = 3, |
| 10008 | QCA_STA_CONNECT_FAIL_REASON_AUTH_NO_RESP_RECEIVED = 4, |
| 10009 | QCA_STA_CONNECT_FAIL_REASON_ASSOC_REQ_TX_FAIL = 5, |
| 10010 | QCA_STA_CONNECT_FAIL_REASON_ASSOC_NO_ACK_RECEIVED = 6, |
| 10011 | QCA_STA_CONNECT_FAIL_REASON_ASSOC_NO_RESP_RECEIVED = 7, |
| 10012 | }; |
| 10013 | |
Dmitry Shmidt | cf32e60 | 2014-01-28 10:57:39 -0800 | [diff] [blame] | 10014 | #endif /* QCA_VENDOR_H */ |