From 7345e2dd0389ecf6399826a9b29db8a22765b2e2 Mon Sep 17 00:00:00 2001 From: Sandeep Puligilla Date: Wed, 6 Nov 2019 12:16:15 -0800 Subject: [PATCH] qcacmn: Add SCAN 6GHz extension flags Add 6Ghz scan extension flags to control the scan on 6Ghz frequency. Change-Id: I5d7068d0fa4daf68b5373d47143454a7bf540155 CRs-Fixed: 2560593 --- umac/scan/core/src/wlan_scan_main.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/umac/scan/core/src/wlan_scan_main.h b/umac/scan/core/src/wlan_scan_main.h index 9a650f7cdf..0bebec61e2 100644 --- a/umac/scan/core/src/wlan_scan_main.h +++ b/umac/scan/core/src/wlan_scan_main.h @@ -131,6 +131,21 @@ struct probe_time_dwell_time { */ #define SCAN_FLAG_EXT_FILTER_PUBLIC_ACTION_FRAME 0x4 +/* Indicate to scan all PSC channel */ +#define SCAN_FLAG_EXT_6GHZ_SCAN_ALL_PSC_CH 0x8 + +/* Indicate to scan all NON-PSC channel */ +#define SCAN_FLAG_EXT_6GHZ_SCAN_ALL_NON_PSC_CH 0x10 + +/* Indicate to save scan result matching hint from scan client */ +#define SCAN_FLAG_EXT_6GHZ_MATCH_HINT 0x20 + +/* Skip any channel on which RNR information is not received */ +#define SCAN_FLAG_EXT_6GHZ_SKIP_NON_RNR_CH 0x40 + +/* Indicate client hint req is high priority than FW rnr or FILS discovery */ +#define SCAN_FLAG_EXT_6GHZ_CLIENT_HIGH_PRIORITY 0x80 + /* Passive dwell time if bt_a2dp is enabled. Time in msecs*/ #define PASSIVE_DWELL_TIME_BT_A2DP_ENABLED 28