123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468 |
- /*
- * Copyright (c) 2013-2020, The Linux Foundation. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
- /*
- * This file contains the API definitions for the ROAMING WMI APIs.
- */
- #ifndef _WMI_UNIFIED_ROAM_PARAM_H_
- #define _WMI_UNIFIED_ROAM_PARAM_H_
- #include <wlan_blm_public_struct.h>
- #include <wlan_cm_bss_score_param.h>
- /**
- * struct gateway_update_req_param - gateway parameter update request
- * @request_id: request id
- * @vdev_id: vdev id
- * @max_retries: Max ARP/NS retry attempts
- * @timeout: Retry interval
- * @ipv4_addr_type: on ipv4 network
- * @ipv6_addr_type: on ipv6 network
- * @gw_mac_addr: gateway mac addr
- * @ipv4_addr: ipv4 addr
- * @ipv6_addr: ipv6 addr
- */
- struct gateway_update_req_param {
- uint32_t request_id;
- uint32_t vdev_id;
- uint32_t max_retries;
- uint32_t timeout;
- uint32_t ipv4_addr_type;
- uint32_t ipv6_addr_type;
- struct qdf_mac_addr gw_mac_addr;
- uint8_t ipv4_addr[QDF_IPV4_ADDR_SIZE];
- uint8_t ipv6_addr[QDF_IPV6_ADDR_SIZE];
- };
- /**
- * struct rssi_monitor_param - rssi monitoring
- * @request_id: request id
- * @vdev_id: vdev id
- * @min_rssi: minimum rssi
- * @max_rssi: maximum rssi
- * @control: flag to indicate start or stop
- */
- struct rssi_monitor_param {
- uint32_t request_id;
- uint32_t vdev_id;
- int8_t min_rssi;
- int8_t max_rssi;
- bool control;
- };
- #ifndef ROAM_OFFLOAD_V1
- /**
- * struct roam_offload_scan_rssi_params - structure containing
- * parameters for roam offload scan based on RSSI
- * @rssi_thresh: rssi threshold
- * @rssi_thresh_diff: difference in rssi threshold
- * @hi_rssi_scan_max_count: 5G scan max count
- * @hi_rssi_scan_rssi_delta: 5G scan rssi change threshold value
- * @hi_rssi_scan_rssi_ub: 5G scan upper bound
- * @raise_rssi_thresh_5g: flag to determine penalty and boost thresholds
- * @vdev_id: vdev id
- * @penalty_threshold_5g: RSSI threshold below which 5GHz RSSI is penalized
- * @boost_threshold_5g: RSSI threshold above which 5GHz RSSI is favored
- * @raise_factor_5g: factor by which 5GHz RSSI is boosted
- * @drop_factor_5g: factor by which 5GHz RSSI is penalized
- * @max_raise_rssi_5g: maximum boost that can be applied to a 5GHz RSSI
- * @max_drop_rssi_5g: maximum penalty that can be applied to a 5GHz RSSI
- * @good_rssi_threshold: RSSI below which roam is kicked in by background
- * scan although rssi is still good
- * @roam_earlystop_thres_min: Minimum RSSI threshold value for early stop,
- * unit is dB above NF
- * @roam_earlystop_thres_max: Maximum RSSI threshold value for early stop,
- * unit is dB above NF
- * @dense_rssi_thresh_offset: dense roam RSSI threshold difference
- * @dense_min_aps_cnt: dense roam minimum APs
- * @initial_dense_status: dense status detected by host
- * @traffic_threshold: dense roam RSSI threshold
- * @bg_scan_bad_rssi_thresh: Bad RSSI threshold to perform bg scan
- * @roam_bad_rssi_thresh_offset_2g: Offset from Bad RSSI threshold for 2G
- * to 5G Roam
- * @bg_scan_client_bitmap: Bitmap used to identify the client scans to snoop
- * @flags: Flags for Background Roaming
- * Bit 0 : BG roaming enabled when we connect to 2G AP only and roaming
- * to 5G AP only.
- * Bit 1-31: Reserved
- */
- struct roam_offload_scan_rssi_params {
- int8_t rssi_thresh;
- uint8_t rssi_thresh_diff;
- uint32_t hi_rssi_scan_max_count;
- uint32_t hi_rssi_scan_rssi_delta;
- int32_t hi_rssi_scan_rssi_ub;
- int raise_rssi_thresh_5g;
- uint8_t vdev_id;
- uint32_t penalty_threshold_5g;
- uint32_t boost_threshold_5g;
- uint8_t raise_factor_5g;
- uint8_t drop_factor_5g;
- int max_raise_rssi_5g;
- int max_drop_rssi_5g;
- uint32_t good_rssi_threshold;
- uint32_t roam_earlystop_thres_min;
- uint32_t roam_earlystop_thres_max;
- int dense_rssi_thresh_offset;
- int dense_min_aps_cnt;
- int initial_dense_status;
- int traffic_threshold;
- int32_t rssi_thresh_offset_5g;
- int8_t bg_scan_bad_rssi_thresh;
- uint8_t roam_bad_rssi_thresh_offset_2g;
- uint32_t bg_scan_client_bitmap;
- uint32_t flags;
- };
- /**
- * struct roam_scan_period_params - Roam scan period parameters
- * @vdev_id: Vdev for which the scan period parameters are sent
- * @scan_period: Opportunistic scan runs on a timer for scan_period
- * @scan_age: Duration after which the scan entries are to be aged out
- * @roam_scan_inactivity_time: inactivity monitoring time in ms for which the
- * device is considered to be inactive
- * @roam_inactive_data_packet_count: Maximum allowed data packets count during
- * roam_scan_inactivity_time.
- * @roam_scan_period_after_inactivity: Roam scan period in ms after device is
- * in inactive state.
- * @full_scan_period: Full scan period is the idle period in seconds
- * between two successive full channel roam scans.
- */
- struct roam_scan_period_params {
- uint32_t vdev_id;
- uint32_t scan_period;
- uint32_t scan_age;
- uint32_t roam_scan_inactivity_time;
- uint32_t roam_inactive_data_packet_count;
- uint32_t roam_scan_period_after_inactivity;
- uint32_t full_scan_period;
- };
- #endif
- /**
- * struct wmi_mawc_roam_params - Motion Aided wireless connectivity params
- * @vdev_id: VDEV on which the parameters should be applied
- * @enable: MAWC roaming feature enable/disable
- * @traffic_load_threshold: Traffic threshold in kBps for MAWC roaming
- * @best_ap_rssi_threshold: AP RSSI Threshold for MAWC roaming
- * @rssi_stationary_high_adjust: High RSSI adjustment value to suppress scan
- * @rssi_stationary_low_adjust: Low RSSI adjustment value to suppress scan
- */
- struct wmi_mawc_roam_params {
- uint8_t vdev_id;
- bool enable;
- uint32_t traffic_load_threshold;
- uint32_t best_ap_rssi_threshold;
- uint8_t rssi_stationary_high_adjust;
- uint8_t rssi_stationary_low_adjust;
- };
- #define WMI_CFG_VALID_CHANNEL_LIST_LEN 100
- /* Occupied channel list remains static */
- #define WMI_CHANNEL_LIST_STATIC 1
- /* Occupied channel list can be learnt after init */
- #define WMI_CHANNEL_LIST_DYNAMIC_INIT 2
- /* Occupied channel list can be learnt after flush */
- #define WMI_CHANNEL_LIST_DYNAMIC_FLUSH 3
- /* Occupied channel list can be learnt after update */
- #define WMI_CHANNEL_LIST_DYNAMIC_UPDATE 4
- /**
- * struct plm_req_params - plm req parameter
- * @diag_token: Dialog token
- * @meas_token: measurement token
- * @num_bursts: total number of bursts
- * @burst_int: burst interval in seconds
- * @meas_duration:in TU's,STA goes off-ch
- * @burst_len: no of times the STA should cycle through PLM ch list
- * @desired_tx_pwr: desired tx power
- * @mac_addr: MC dest addr
- * @plm_num_ch: channel numbers
- * @plm_ch_freq_list: channel frequency list
- * @vdev_id: vdev id
- * @enable: enable/disable
- */
- struct plm_req_params {
- uint16_t diag_token;
- uint16_t meas_token;
- uint16_t num_bursts;
- uint16_t burst_int;
- uint16_t meas_duration;
- /* no of times the STA should cycle through PLM ch list */
- uint8_t burst_len;
- int8_t desired_tx_pwr;
- struct qdf_mac_addr mac_addr;
- /* no of channels */
- uint8_t plm_num_ch;
- /* channel frequency list */
- uint32_t plm_ch_freq_list[WMI_CFG_VALID_CHANNEL_LIST_LEN];
- uint8_t vdev_id;
- bool enable;
- };
- /**
- * struct wmi_roam_invoke_cmd - roam invoke command
- * @vdev_id: vdev id
- * @bssid: mac address
- * @channel: channel
- * @frame_len: frame length, includs mac header, fixed params and ies
- * @frame_buf: buffer contaning probe response or beacon
- * @is_same_bssid: flag to indicate if roaming is requested for same bssid
- * @forced_roaming: Roam to any bssid in any ch (here bssid & ch is not given)
- */
- struct wmi_roam_invoke_cmd {
- uint32_t vdev_id;
- uint8_t bssid[QDF_MAC_ADDR_SIZE];
- uint32_t channel;
- uint32_t frame_len;
- uint8_t *frame_buf;
- uint8_t is_same_bssid;
- bool forced_roaming;
- };
- /**
- * struct wmi_per_roam_config - per based roaming parameters
- * @enable: if PER based roaming is enabled/disabled
- * @tx_high_rate_thresh: high rate threshold at which PER based
- * roam will stop in tx path
- * @rx_high_rate_thresh: high rate threshold at which PER based
- * roam will stop in rx path
- * @tx_low_rate_thresh: rate below which traffic will be considered
- * for PER based roaming in Tx path
- * @rx_low_rate_thresh: rate below which traffic will be considered
- * for PER based roaming in Tx path
- * @tx_rate_thresh_percnt: % above which when traffic is below low_rate_thresh
- * will be considered for PER based scan in tx path
- * @rx_rate_thresh_percnt: % above which when traffic is below low_rate_thresh
- * will be considered for PER based scan in rx path
- * @per_rest_time: time for which PER based roam will wait once it
- * issues a roam scan.
- * @tx_per_mon_time: Minimum time required to be considered as valid scenario
- * for PER based roam in tx path
- * @rx_per_mon_time: Minimum time required to be considered as valid scenario
- * for PER based roam in rx path
- * @min_candidate_rssi: Minimum RSSI threshold for candidate AP to be used for
- * PER based roaming
- */
- struct wmi_per_roam_config {
- uint32_t enable;
- uint32_t tx_high_rate_thresh;
- uint32_t rx_high_rate_thresh;
- uint32_t tx_low_rate_thresh;
- uint32_t rx_low_rate_thresh;
- uint32_t tx_rate_thresh_percnt;
- uint32_t rx_rate_thresh_percnt;
- uint32_t per_rest_time;
- uint32_t tx_per_mon_time;
- uint32_t rx_per_mon_time;
- uint32_t min_candidate_rssi;
- };
- /**
- * struct wmi_per_roam_config_req: PER based roaming config request
- * @vdev_id: vdev id on which config needs to be set
- * @per_config: PER config
- */
- struct wmi_per_roam_config_req {
- uint8_t vdev_id;
- struct wmi_per_roam_config per_config;
- };
- /**
- * struct wmi_limit_off_chan_param - limit off channel parameters
- * @vdev_id: vdev id
- * @status: status of the command (enable/disable)
- * @max_offchan_time: max off channel time
- * @rest_time: home channel time
- * @skip_dfs_chans: skip dfs channels during scan
- */
- struct wmi_limit_off_chan_param {
- uint32_t vdev_id;
- bool status;
- uint32_t max_offchan_time;
- uint32_t rest_time;
- bool skip_dfs_chans;
- };
- #define WMI_MAX_HLP_IE_LEN 2048
- /**
- * struct hlp_params - HLP info params
- * @vdev_id: vdev id
- * @hlp_ie_len: HLP IE length
- * @hlp_ie: HLP IE
- */
- struct hlp_params {
- uint8_t vdev_id;
- uint32_t hlp_ie_len;
- uint8_t hlp_ie[WMI_MAX_HLP_IE_LEN];
- };
- /**
- * struct wmi_btm_config - BSS Transition Management offload params
- * @vdev_id: VDEV on which the parameters should be applied
- * @btm_offload_config: BTM config
- * @btm_solicited_timeout: Timeout value for waiting BTM request
- * @btm_max_attempt_cnt: Maximum attempt for sending BTM query to ESS
- * @btm_sticky_time: Stick time after roaming to new AP by BTM
- * @disassoc_timer_threshold: threshold value till which the firmware can
- * wait before triggering the roam scan after receiving the disassoc iminent
- * @btm_query_bitmask: bitmask to btm query with candidate list
- * @btm_candidate_min_score: Minimum score of the AP to consider it as a
- * candidate if the roam trigger is BTM kickout.
- */
- struct wmi_btm_config {
- uint8_t vdev_id;
- uint32_t btm_offload_config;
- uint32_t btm_solicited_timeout;
- uint32_t btm_max_attempt_cnt;
- uint32_t btm_sticky_time;
- uint32_t disassoc_timer_threshold;
- uint32_t btm_query_bitmask;
- uint32_t btm_candidate_min_score;
- };
- /**
- * struct wmi_bss_load_config - BSS load trigger parameters
- * @vdev_id: VDEV on which the parameters should be applied
- * @bss_load_threshold: BSS load threshold after which roam scan should trigger
- * @bss_load_sample_time: Time duration in milliseconds for which the bss load
- * trigger needs to be enabled
- * @rssi_threshold_5ghz: RSSI threshold of the current connected AP below which
- * roam should be triggered if bss load threshold exceeds the configured value.
- * This value is applicable only when we are connected in 5GHz band.
- * @rssi_threshold_24ghz: RSSI threshold of the current connected AP below which
- * roam should be triggered if bss load threshold exceeds the configured value.
- * This value is applicable only when we are connected in 2.4GHz band.
- */
- struct wmi_bss_load_config {
- uint32_t vdev_id;
- uint32_t bss_load_threshold;
- uint32_t bss_load_sample_time;
- int32_t rssi_threshold_5ghz;
- int32_t rssi_threshold_24ghz;
- };
- /**
- * struct wmi_idle_roam_params - Idle roam trigger parameters
- * @vdev_id: VDEV on which the parameters should be applied
- * @enable: Enable/Disable Idle roaming
- * @band: Connected AP band
- * @conn_ap_rssi_delta: Rssi change of connected AP in dBm
- * @conn_ap_min_rssi: If connected AP rssi is less than min rssi trigger roam
- * @inactive_time: Connected AP idle time
- * @data_pkt_count: Data packet count allowed during idle time
- */
- struct wmi_idle_roam_params {
- uint32_t vdev_id;
- bool enable;
- uint32_t band;
- uint32_t conn_ap_rssi_delta;
- int32_t conn_ap_min_rssi;
- uint32_t inactive_time;
- uint32_t data_pkt_count;
- };
- /**
- * struct wmi_disconnect_roam_params - Emergency deauth/disconnect roam params
- * @vdev_id: VDEV on which the parameters should be applied
- * @enable: Enable or disable disconnect roaming.
- */
- struct wmi_disconnect_roam_params {
- uint32_t vdev_id;
- bool enable;
- };
- /**
- * struct wmi_roam_auth_status_params - WPA3 roam auth response status
- * parameters
- * @vdev_id: Vdev on which roam preauth is happening
- * @preauth_status: Status of the Auth response.
- * IEEE80211_STATUS_SUCCESS(0) for success. Corresponding
- * IEEE80211 failure status code for failure.
- *
- * @bssid: Candidate BSSID
- * @pmkid: PMKID derived for the auth
- */
- struct wmi_roam_auth_status_params {
- uint32_t vdev_id;
- uint32_t preauth_status;
- struct qdf_mac_addr bssid;
- uint8_t pmkid[PMKID_LEN];
- };
- /**
- * @time_offset: time offset after 11k offload command to trigger a neighbor
- * report request (in seconds)
- * @low_rssi_offset: Offset from rssi threshold to trigger a neighbor
- * report request (in dBm)
- * @bmiss_count_trigger: Number of beacon miss events to trigger neighbor
- * report request
- * @per_threshold_offset: offset from PER threshold to trigger neighbor
- * report request (in %)
- * @neighbor_report_cache_timeout: timeout after which new trigger can enable
- * sending of a neighbor report request (in seconds)
- * @max_neighbor_report_req_cap: max number of neighbor report requests that
- * can be sent to the peer in the current session
- * @ssid: Current connect SSID info
- */
- struct wmi_11k_offload_neighbor_report_params {
- uint32_t time_offset;
- uint32_t low_rssi_offset;
- uint32_t bmiss_count_trigger;
- uint32_t per_threshold_offset;
- uint32_t neighbor_report_cache_timeout;
- uint32_t max_neighbor_report_req_cap;
- struct wlan_ssid ssid;
- };
- /**
- * struct wmi_11k_offload_params - offload 11k features to FW
- * @vdev_id: vdev id
- * @offload_11k_bitmask: bitmask to specify offloaded features
- * B0: Neighbor Report Request offload
- * B1-B31: Reserved
- * @neighbor_report_params: neighbor report offload params
- */
- struct wmi_11k_offload_params {
- uint32_t vdev_id;
- uint32_t offload_11k_bitmask;
- struct wmi_11k_offload_neighbor_report_params neighbor_report_params;
- };
- /**
- * struct wmi_invoke_neighbor_report_params - Invoke neighbor report request
- * from IW to FW
- * @vdev_id: vdev id
- * @send_resp_to_host: bool to send response to host or not
- * @ssid: ssid given from the IW command
- */
- struct wmi_invoke_neighbor_report_params {
- uint32_t vdev_id;
- uint32_t send_resp_to_host;
- struct wlan_ssid ssid;
- };
- /**
- * set_pcl_cmd_params - Set PCL command params
- * @vdev_id: Vdev id
- * @weight: PCL weight
- */
- struct set_pcl_cmd_params {
- uint8_t vdev_id;
- struct wmi_pcl_chan_weights *weights;
- };
- #endif /* _WMI_UNIFIED_ROAM_PARAM_H_ */
|