/* * Linux cfg80211 Vendor Extension Code * * Copyright (C) 1999-2017, Broadcom Corporation * * Unless you and Broadcom execute a separate written software license * agreement governing use of this software, this software is licensed to you * under the terms of the GNU General Public License version 2 (the "GPL"), * available at http://www.broadcom.com/licenses/GPLv2.php, with the * following added to such license: * * As a special exception, the copyright holders of this software give you * permission to link this software with independent modules, and to copy and * distribute the resulting executable under terms of your choice, provided that * you also meet, for each linked independent module, the terms and conditions of * the license of that module. An independent module is a module which is not * derived from this software. The special exception does not apply to any * modifications of the software. * * Notwithstanding the above, under no circumstances may you combine this * software in any way with any other Broadcom software provided under a license * other than the GPL, without Broadcom's express prior written consent. * * * <> * * $Id: wl_cfgvendor.h 698895 2017-05-11 02:55:17Z $ */ #ifndef _wl_cfgvendor_h_ #define _wl_cfgvendor_h_ #if ((LINUX_VERSION_CODE > KERNEL_VERSION(3, 14, 0)) || \ defined(CONFIG_BCMDHD_VENDOR_EXT)) && !defined(WL_VENDOR_EXT_SUPPORT) /* defined CONFIG_BCMDHD_VENDOR_EXT in brix kernel to enable GSCAN testing */ #define WL_VENDOR_EXT_SUPPORT #endif /* LINUX_VERSION_CODE > KERNEL_VERSION(3, 14, 0) && CONFIG_BCMDHD_VENDOR_EXT */ #define OUI_BRCM 0x001018 #define OUI_GOOGLE 0x001A11 #define BRCM_VENDOR_SUBCMD_PRIV_STR 1 #define ATTRIBUTE_U32_LEN (NLA_HDRLEN + 4) #define VENDOR_ID_OVERHEAD ATTRIBUTE_U32_LEN #define VENDOR_SUBCMD_OVERHEAD ATTRIBUTE_U32_LEN #define VENDOR_DATA_OVERHEAD (NLA_HDRLEN) enum brcm_vendor_attr { BRCM_ATTR_DRIVER_CMD, BRCM_ATTR_DRIVER_MAX }; #define SCAN_RESULTS_COMPLETE_FLAG_LEN ATTRIBUTE_U32_LEN #define SCAN_INDEX_HDR_LEN (NLA_HDRLEN) #define SCAN_ID_HDR_LEN ATTRIBUTE_U32_LEN #define SCAN_FLAGS_HDR_LEN ATTRIBUTE_U32_LEN #define GSCAN_NUM_RESULTS_HDR_LEN ATTRIBUTE_U32_LEN #define GSCAN_CH_BUCKET_MASK_HDR_LEN ATTRIBUTE_U32_LEN #define GSCAN_RESULTS_HDR_LEN (NLA_HDRLEN) #define GSCAN_BATCH_RESULT_HDR_LEN (SCAN_INDEX_HDR_LEN + SCAN_ID_HDR_LEN + \ SCAN_FLAGS_HDR_LEN + \ GSCAN_NUM_RESULTS_HDR_LEN + \ GSCAN_CH_BUCKET_MASK_HDR_LEN + \ GSCAN_RESULTS_HDR_LEN) #define VENDOR_REPLY_OVERHEAD (VENDOR_ID_OVERHEAD + \ VENDOR_SUBCMD_OVERHEAD + \ VENDOR_DATA_OVERHEAD) #define GSCAN_ATTR_SET1 10 #define GSCAN_ATTR_SET2 20 #define GSCAN_ATTR_SET3 30 #define GSCAN_ATTR_SET4 40 #define GSCAN_ATTR_SET5 50 #define GSCAN_ATTR_SET6 60 #define GSCAN_ATTR_SET7 70 #define GSCAN_ATTR_SET8 80 #define GSCAN_ATTR_SET9 90 #define GSCAN_ATTR_SET10 100 #define GSCAN_ATTR_SET11 110 #define GSCAN_ATTR_SET12 120 #define GSCAN_ATTR_SET13 130 typedef enum { /* don't use 0 as a valid subcommand */ VENDOR_NL80211_SUBCMD_UNSPECIFIED, /* define all vendor startup commands between 0x0 and 0x0FFF */ VENDOR_NL80211_SUBCMD_RANGE_START = 0x0001, VENDOR_NL80211_SUBCMD_RANGE_END = 0x0FFF, /* define all GScan related commands between 0x1000 and 0x10FF */ ANDROID_NL80211_SUBCMD_GSCAN_RANGE_START = 0x1000, ANDROID_NL80211_SUBCMD_GSCAN_RANGE_END = 0x10FF, /* define all RTT related commands between 0x1100 and 0x11FF */ ANDROID_NL80211_SUBCMD_RTT_RANGE_START = 0x1100, ANDROID_NL80211_SUBCMD_RTT_RANGE_END = 0x11FF, ANDROID_NL80211_SUBCMD_LSTATS_RANGE_START = 0x1200, ANDROID_NL80211_SUBCMD_LSTATS_RANGE_END = 0x12FF, ANDROID_NL80211_SUBCMD_TDLS_RANGE_START = 0x1300, ANDROID_NL80211_SUBCMD_TDLS_RANGE_END = 0x13FF, ANDROID_NL80211_SUBCMD_DEBUG_RANGE_START = 0x1400, ANDROID_NL80211_SUBCMD_DEBUG_RANGE_END = 0x14FF, /* define all NearbyDiscovery related commands between 0x1500 and 0x15FF */ ANDROID_NL80211_SUBCMD_NBD_RANGE_START = 0x1500, ANDROID_NL80211_SUBCMD_NBD_RANGE_END = 0x15FF, /* define all wifi calling related commands between 0x1600 and 0x16FF */ ANDROID_NL80211_SUBCMD_WIFI_OFFLOAD_RANGE_START = 0x1600, ANDROID_NL80211_SUBCMD_WIFI_OFFLOAD_RANGE_END = 0x16FF, /* define all NAN related commands between 0x1700 and 0x17FF */ ANDROID_NL80211_SUBCMD_NAN_RANGE_START = 0x1700, ANDROID_NL80211_SUBCMD_NAN_RANGE_END = 0x17FF, /* define all packet filter related commands between 0x1800 and 0x18FF */ ANDROID_NL80211_SUBCMD_PKT_FILTER_RANGE_START = 0x1800, ANDROID_NL80211_SUBCMD_PKT_FILTER_RANGE_END = 0x18FF, /* This is reserved for future usage */ } ANDROID_VENDOR_SUB_COMMAND; enum andr_vendor_subcmd { GSCAN_SUBCMD_GET_CAPABILITIES = ANDROID_NL80211_SUBCMD_GSCAN_RANGE_START, GSCAN_SUBCMD_SET_CONFIG, GSCAN_SUBCMD_SET_SCAN_CONFIG, GSCAN_SUBCMD_ENABLE_GSCAN, GSCAN_SUBCMD_GET_SCAN_RESULTS, GSCAN_SUBCMD_SCAN_RESULTS, GSCAN_SUBCMD_SET_HOTLIST, GSCAN_SUBCMD_SET_SIGNIFICANT_CHANGE_CONFIG, GSCAN_SUBCMD_ENABLE_FULL_SCAN_RESULTS, GSCAN_SUBCMD_GET_CHANNEL_LIST, /* ANDR_WIFI_XXX although not related to gscan are defined here */ ANDR_WIFI_SUBCMD_GET_FEATURE_SET, ANDR_WIFI_SUBCMD_GET_FEATURE_SET_MATRIX, ANDR_WIFI_RANDOM_MAC_OUI, ANDR_WIFI_NODFS_CHANNELS, ANDR_WIFI_SET_COUNTRY, GSCAN_SUBCMD_SET_EPNO_SSID, WIFI_SUBCMD_SET_SSID_WHITELIST, WIFI_SUBCMD_SET_LAZY_ROAM_PARAMS, WIFI_SUBCMD_ENABLE_LAZY_ROAM, WIFI_SUBCMD_SET_BSSID_PREF, WIFI_SUBCMD_SET_BSSID_BLACKLIST, GSCAN_SUBCMD_ANQPO_CONFIG, WIFI_SUBCMD_SET_RSSI_MONITOR, WIFI_SUBCMD_CONFIG_ND_OFFLOAD, WIFI_SUBCMD_CONFIG_TCPACK_SUP, RTT_SUBCMD_SET_CONFIG = ANDROID_NL80211_SUBCMD_RTT_RANGE_START, RTT_SUBCMD_CANCEL_CONFIG, RTT_SUBCMD_GETCAPABILITY, RTT_SUBCMD_GETAVAILCHANNEL, RTT_SUBCMD_SET_RESPONDER, RTT_SUBCMD_CANCEL_RESPONDER, LSTATS_SUBCMD_GET_INFO = ANDROID_NL80211_SUBCMD_LSTATS_RANGE_START, DEBUG_START_LOGGING = ANDROID_NL80211_SUBCMD_DEBUG_RANGE_START, DEBUG_TRIGGER_MEM_DUMP, DEBUG_GET_MEM_DUMP, DEBUG_GET_VER, DEBUG_GET_RING_STATUS, DEBUG_GET_RING_DATA, DEBUG_GET_FEATURE, DEBUG_RESET_LOGGING, DEBUG_TRIGGER_DRIVER_MEM_DUMP, DEBUG_GET_DRIVER_MEM_DUMP, DEBUG_START_PKT_FATE_MONITORING, DEBUG_GET_TX_PKT_FATES, DEBUG_GET_RX_PKT_FATES, DEBUG_GET_WAKE_REASON_STATS, WIFI_OFFLOAD_SUBCMD_START_MKEEP_ALIVE = ANDROID_NL80211_SUBCMD_WIFI_OFFLOAD_RANGE_START, WIFI_OFFLOAD_SUBCMD_STOP_MKEEP_ALIVE, NAN_WIFI_SUBCMD_ENABLE = ANDROID_NL80211_SUBCMD_NAN_RANGE_START, NAN_WIFI_SUBCMD_DISABLE, NAN_WIFI_SUBCMD_REQUEST_PUBLISH, NAN_WIFI_SUBCMD_REQUEST_SUBSCRIBE, NAN_WIFI_SUBCMD_CANCEL_PUBLISH, NAN_WIFI_SUBCMD_CANCEL_SUBSCRIBE, NAN_WIFI_SUBCMD_TRANSMIT, #ifdef NAN_DP NAN_WIFI_SUBCMD_DATA_PATH_OPEN, NAN_WIFI_SUBCMD_DATA_PATH_CLOSE, #endif /* NAN_DP */ APF_SUBCMD_GET_CAPABILITIES = ANDROID_NL80211_SUBCMD_PKT_FILTER_RANGE_START, APF_SUBCMD_SET_FILTER, /* Add more sub commands here */ VENDOR_SUBCMD_MAX }; enum gscan_attributes { GSCAN_ATTRIBUTE_NUM_BUCKETS = GSCAN_ATTR_SET1, GSCAN_ATTRIBUTE_BASE_PERIOD, GSCAN_ATTRIBUTE_BUCKETS_BAND, GSCAN_ATTRIBUTE_BUCKET_ID, GSCAN_ATTRIBUTE_BUCKET_PERIOD, GSCAN_ATTRIBUTE_BUCKET_NUM_CHANNELS, GSCAN_ATTRIBUTE_BUCKET_CHANNELS, GSCAN_ATTRIBUTE_NUM_AP_PER_SCAN, GSCAN_ATTRIBUTE_REPORT_THRESHOLD, GSCAN_ATTRIBUTE_NUM_SCANS_TO_CACHE, GSCAN_ATTRIBUTE_BAND = GSCAN_ATTRIBUTE_BUCKETS_BAND, GSCAN_ATTRIBUTE_ENABLE_FEATURE = GSCAN_ATTR_SET2, GSCAN_ATTRIBUTE_SCAN_RESULTS_COMPLETE, GSCAN_ATTRIBUTE_FLUSH_FEATURE, GSCAN_ATTRIBUTE_ENABLE_FULL_SCAN_RESULTS, GSCAN_ATTRIBUTE_REPORT_EVENTS, /* remaining reserved for additional attributes */ GSCAN_ATTRIBUTE_NUM_OF_RESULTS = GSCAN_ATTR_SET3, GSCAN_ATTRIBUTE_FLUSH_RESULTS, GSCAN_ATTRIBUTE_SCAN_RESULTS, /* flat array of wifi_scan_result */ GSCAN_ATTRIBUTE_SCAN_ID, /* indicates scan number */ GSCAN_ATTRIBUTE_SCAN_FLAGS, /* indicates if scan was aborted */ GSCAN_ATTRIBUTE_AP_FLAGS, /* flags on significant change event */ GSCAN_ATTRIBUTE_NUM_CHANNELS, GSCAN_ATTRIBUTE_CHANNEL_LIST, GSCAN_ATTRIBUTE_CH_BUCKET_BITMASK, /* remaining reserved for additional attributes */ GSCAN_ATTRIBUTE_SSID = GSCAN_ATTR_SET4, GSCAN_ATTRIBUTE_BSSID, GSCAN_ATTRIBUTE_CHANNEL, GSCAN_ATTRIBUTE_RSSI, GSCAN_ATTRIBUTE_TIMESTAMP, GSCAN_ATTRIBUTE_RTT, GSCAN_ATTRIBUTE_RTTSD, /* remaining reserved for additional attributes */ GSCAN_ATTRIBUTE_HOTLIST_BSSIDS = GSCAN_ATTR_SET5, GSCAN_ATTRIBUTE_RSSI_LOW, GSCAN_ATTRIBUTE_RSSI_HIGH, GSCAN_ATTRIBUTE_HOSTLIST_BSSID_ELEM, GSCAN_ATTRIBUTE_HOTLIST_FLUSH, /* remaining reserved for additional attributes */ GSCAN_ATTRIBUTE_RSSI_SAMPLE_SIZE = GSCAN_ATTR_SET6, GSCAN_ATTRIBUTE_LOST_AP_SAMPLE_SIZE, GSCAN_ATTRIBUTE_MIN_BREACHING, GSCAN_ATTRIBUTE_SIGNIFICANT_CHANGE_BSSIDS, GSCAN_ATTRIBUTE_SIGNIFICANT_CHANGE_FLUSH, /* EPNO */ GSCAN_ATTRIBUTE_EPNO_SSID_LIST = GSCAN_ATTR_SET7, GSCAN_ATTRIBUTE_EPNO_SSID, GSCAN_ATTRIBUTE_EPNO_SSID_LEN, GSCAN_ATTRIBUTE_EPNO_RSSI, GSCAN_ATTRIBUTE_EPNO_FLAGS, GSCAN_ATTRIBUTE_EPNO_AUTH, GSCAN_ATTRIBUTE_EPNO_SSID_NUM, GSCAN_ATTRIBUTE_EPNO_FLUSH, /* Roam SSID Whitelist and BSSID pref */ GSCAN_ATTRIBUTE_WHITELIST_SSID = GSCAN_ATTR_SET8, GSCAN_ATTRIBUTE_NUM_WL_SSID, GSCAN_ATTRIBUTE_WL_SSID_LEN, GSCAN_ATTRIBUTE_WL_SSID_FLUSH, GSCAN_ATTRIBUTE_WHITELIST_SSID_ELEM, GSCAN_ATTRIBUTE_NUM_BSSID, GSCAN_ATTRIBUTE_BSSID_PREF_LIST, GSCAN_ATTRIBUTE_BSSID_PREF_FLUSH, GSCAN_ATTRIBUTE_BSSID_PREF, GSCAN_ATTRIBUTE_RSSI_MODIFIER, /* Roam cfg */ GSCAN_ATTRIBUTE_A_BAND_BOOST_THRESHOLD = GSCAN_ATTR_SET9, GSCAN_ATTRIBUTE_A_BAND_PENALTY_THRESHOLD, GSCAN_ATTRIBUTE_A_BAND_BOOST_FACTOR, GSCAN_ATTRIBUTE_A_BAND_PENALTY_FACTOR, GSCAN_ATTRIBUTE_A_BAND_MAX_BOOST, GSCAN_ATTRIBUTE_LAZY_ROAM_HYSTERESIS, GSCAN_ATTRIBUTE_ALERT_ROAM_RSSI_TRIGGER, GSCAN_ATTRIBUTE_LAZY_ROAM_ENABLE, /* BSSID blacklist */ GSCAN_ATTRIBUTE_BSSID_BLACKLIST_FLUSH = GSCAN_ATTR_SET10, GSCAN_ATTRIBUTE_BLACKLIST_BSSID, GSCAN_ATTRIBUTE_ANQPO_HS_LIST = GSCAN_ATTR_SET11, GSCAN_ATTRIBUTE_ANQPO_HS_LIST_SIZE, GSCAN_ATTRIBUTE_ANQPO_HS_NETWORK_ID, GSCAN_ATTRIBUTE_ANQPO_HS_NAI_REALM, GSCAN_ATTRIBUTE_ANQPO_HS_ROAM_CONSORTIUM_ID, GSCAN_ATTRIBUTE_ANQPO_HS_PLMN, /* Adaptive scan attributes */ GSCAN_ATTRIBUTE_BUCKET_STEP_COUNT = GSCAN_ATTR_SET12, GSCAN_ATTRIBUTE_BUCKET_MAX_PERIOD, /* ePNO cfg */ GSCAN_ATTRIBUTE_EPNO_5G_RSSI_THR = GSCAN_ATTR_SET13, GSCAN_ATTRIBUTE_EPNO_2G_RSSI_THR, GSCAN_ATTRIBUTE_EPNO_INIT_SCORE_MAX, GSCAN_ATTRIBUTE_EPNO_CUR_CONN_BONUS, GSCAN_ATTRIBUTE_EPNO_SAME_NETWORK_BONUS, GSCAN_ATTRIBUTE_EPNO_SECURE_BONUS, GSCAN_ATTRIBUTE_EPNO_5G_BONUS, GSCAN_ATTRIBUTE_MAX }; enum gscan_bucket_attributes { GSCAN_ATTRIBUTE_CH_BUCKET_1, GSCAN_ATTRIBUTE_CH_BUCKET_2, GSCAN_ATTRIBUTE_CH_BUCKET_3, GSCAN_ATTRIBUTE_CH_BUCKET_4, GSCAN_ATTRIBUTE_CH_BUCKET_5, GSCAN_ATTRIBUTE_CH_BUCKET_6, GSCAN_ATTRIBUTE_CH_BUCKET_7 }; enum gscan_ch_attributes { GSCAN_ATTRIBUTE_CH_ID_1, GSCAN_ATTRIBUTE_CH_ID_2, GSCAN_ATTRIBUTE_CH_ID_3, GSCAN_ATTRIBUTE_CH_ID_4, GSCAN_ATTRIBUTE_CH_ID_5, GSCAN_ATTRIBUTE_CH_ID_6, GSCAN_ATTRIBUTE_CH_ID_7 }; enum rtt_attributes { RTT_ATTRIBUTE_TARGET_CNT, RTT_ATTRIBUTE_TARGET_INFO, RTT_ATTRIBUTE_TARGET_MAC, RTT_ATTRIBUTE_TARGET_TYPE, RTT_ATTRIBUTE_TARGET_PEER, RTT_ATTRIBUTE_TARGET_CHAN, RTT_ATTRIBUTE_TARGET_PERIOD, RTT_ATTRIBUTE_TARGET_NUM_BURST, RTT_ATTRIBUTE_TARGET_NUM_FTM_BURST, RTT_ATTRIBUTE_TARGET_NUM_RETRY_FTM, RTT_ATTRIBUTE_TARGET_NUM_RETRY_FTMR, RTT_ATTRIBUTE_TARGET_LCI, RTT_ATTRIBUTE_TARGET_LCR, RTT_ATTRIBUTE_TARGET_BURST_DURATION, RTT_ATTRIBUTE_TARGET_PREAMBLE, RTT_ATTRIBUTE_TARGET_BW, RTT_ATTRIBUTE_RESULTS_COMPLETE = 30, RTT_ATTRIBUTE_RESULTS_PER_TARGET, RTT_ATTRIBUTE_RESULT_CNT, RTT_ATTRIBUTE_RESULT }; enum wifi_rssi_monitor_attr { RSSI_MONITOR_ATTRIBUTE_MAX_RSSI, RSSI_MONITOR_ATTRIBUTE_MIN_RSSI, RSSI_MONITOR_ATTRIBUTE_START }; enum debug_attributes { DEBUG_ATTRIBUTE_GET_DRIVER, DEBUG_ATTRIBUTE_GET_FW, DEBUG_ATTRIBUTE_RING_ID, DEBUG_ATTRIBUTE_RING_NAME, DEBUG_ATTRIBUTE_RING_FLAGS, DEBUG_ATTRIBUTE_LOG_LEVEL, DEBUG_ATTRIBUTE_LOG_TIME_INTVAL, DEBUG_ATTRIBUTE_LOG_MIN_DATA_SIZE, DEBUG_ATTRIBUTE_FW_DUMP_LEN, DEBUG_ATTRIBUTE_FW_DUMP_DATA, DEBUG_ATTRIBUTE_RING_DATA, DEBUG_ATTRIBUTE_RING_STATUS, DEBUG_ATTRIBUTE_RING_NUM, DEBUG_ATTRIBUTE_DRIVER_DUMP_LEN, DEBUG_ATTRIBUTE_DRIVER_DUMP_DATA, DEBUG_ATTRIBUTE_PKT_FATE_NUM, DEBUG_ATTRIBUTE_PKT_FATE_DATA }; enum mkeep_alive_attributes { MKEEP_ALIVE_ATTRIBUTE_ID, MKEEP_ALIVE_ATTRIBUTE_IP_PKT, MKEEP_ALIVE_ATTRIBUTE_IP_PKT_LEN, MKEEP_ALIVE_ATTRIBUTE_SRC_MAC_ADDR, MKEEP_ALIVE_ATTRIBUTE_DST_MAC_ADDR, MKEEP_ALIVE_ATTRIBUTE_PERIOD_MSEC }; enum apf_attributes { APF_ATTRIBUTE_VERSION, APF_ATTRIBUTE_MAX_LEN, APF_ATTRIBUTE_PROGRAM, APF_ATTRIBUTE_PROGRAM_LEN }; typedef enum wl_vendor_event { BRCM_VENDOR_EVENT_UNSPEC, BRCM_VENDOR_EVENT_PRIV_STR, GOOGLE_GSCAN_SIGNIFICANT_EVENT, GOOGLE_GSCAN_GEOFENCE_FOUND_EVENT, GOOGLE_GSCAN_BATCH_SCAN_EVENT, GOOGLE_SCAN_FULL_RESULTS_EVENT, GOOGLE_RTT_COMPLETE_EVENT, GOOGLE_SCAN_COMPLETE_EVENT, GOOGLE_GSCAN_GEOFENCE_LOST_EVENT, GOOGLE_SCAN_EPNO_EVENT, GOOGLE_DEBUG_RING_EVENT, GOOGLE_FW_DUMP_EVENT, GOOGLE_PNO_HOTSPOT_FOUND_EVENT, GOOGLE_RSSI_MONITOR_EVENT, GOOGLE_MKEEP_ALIVE_EVENT, /* * BRCM specific events should be placed after * the Generic events so that enums don't mismatch * between the DHD and HAL */ GOOGLE_NAN_EVENT_ENABLED = 150, GOOGLE_NAN_EVENT_DISABLED, GOOGLE_NAN_EVENT_PUBLISH_TERMINATED, GOOGLE_NAN_EVENT_SUBSCRIBE_MATCH, GOOGLE_NAN_EVENT_SUBSCRIBE_UNMATCH, GOOGLE_NAN_EVENT_SUBSCRIBE_TERMINATED, GOOGLE_NAN_EVENT_DE_EVENT, GOOGLE_NAN_EVENT_FOLLOWUP, GOOGLE_NAN_EVENT_TCA, GOOGLE_NAN_EVENT_DATA_IF_ADD, GOOGLE_NAN_EVENT_DATA_PATH_OPEN, GOOGLE_NAN_EVENT_UNKNOWN } wl_vendor_event_t; enum andr_wifi_attr { ANDR_WIFI_ATTRIBUTE_NUM_FEATURE_SET, ANDR_WIFI_ATTRIBUTE_FEATURE_SET, ANDR_WIFI_ATTRIBUTE_RANDOM_MAC_OUI, ANDR_WIFI_ATTRIBUTE_NODFS_SET, ANDR_WIFI_ATTRIBUTE_COUNTRY, ANDR_WIFI_ATTRIBUTE_ND_OFFLOAD_VALUE, ANDR_WIFI_ATTRIBUTE_TCPACK_SUP_VALUE }; typedef enum wl_vendor_gscan_attribute { ATTR_START_GSCAN, ATTR_STOP_GSCAN, ATTR_SET_SCAN_BATCH_CFG_ID, /* set batch scan params */ ATTR_SET_SCAN_GEOFENCE_CFG_ID, /* set list of bssids to track */ ATTR_SET_SCAN_SIGNIFICANT_CFG_ID, /* set list of bssids, rssi threshold etc.. */ ATTR_SET_SCAN_CFG_ID, /* set common scan config params here */ ATTR_GET_GSCAN_CAPABILITIES_ID, /* Add more sub commands here */ ATTR_GSCAN_MAX } wl_vendor_gscan_attribute_t; typedef enum gscan_batch_attribute { ATTR_GSCAN_BATCH_BESTN, ATTR_GSCAN_BATCH_MSCAN, ATTR_GSCAN_BATCH_BUFFER_THRESHOLD } gscan_batch_attribute_t; typedef enum gscan_geofence_attribute { ATTR_GSCAN_NUM_HOTLIST_BSSID, ATTR_GSCAN_HOTLIST_BSSID } gscan_geofence_attribute_t; typedef enum gscan_complete_event { WIFI_SCAN_COMPLETE, WIFI_SCAN_THRESHOLD_NUM_SCANS, WIFI_SCAN_BUFFER_THR_BREACHED } gscan_complete_event_t; #ifdef DHD_WAKE_STATUS enum wake_stat_attributes { WAKE_STAT_ATTRIBUTE_TOTAL_CMD_EVENT, WAKE_STAT_ATTRIBUTE_CMD_EVENT_WAKE, WAKE_STAT_ATTRIBUTE_CMD_EVENT_COUNT, WAKE_STAT_ATTRIBUTE_CMD_EVENT_COUNT_USED, WAKE_STAT_ATTRIBUTE_TOTAL_DRIVER_FW, WAKE_STAT_ATTRIBUTE_DRIVER_FW_WAKE, WAKE_STAT_ATTRIBUTE_DRIVER_FW_COUNT, WAKE_STAT_ATTRIBUTE_DRIVER_FW_COUNT_USED, WAKE_STAT_ATTRIBUTE_TOTAL_RX_DATA_WAKE, WAKE_STAT_ATTRIBUTE_RX_UNICAST_COUNT, WAKE_STAT_ATTRIBUTE_RX_MULTICAST_COUNT, WAKE_STAT_ATTRIBUTE_RX_BROADCAST_COUNT, WAKE_STAT_ATTRIBUTE_RX_ICMP_PKT, WAKE_STAT_ATTRIBUTE_RX_ICMP6_PKT, WAKE_STAT_ATTRIBUTE_RX_ICMP6_RA, WAKE_STAT_ATTRIBUTE_RX_ICMP6_NA, WAKE_STAT_ATTRIBUTE_RX_ICMP6_NS, WAKE_STAT_ATTRIBUTE_IPV4_RX_MULTICAST_ADD_CNT, WAKE_STAT_ATTRIBUTE_IPV6_RX_MULTICAST_ADD_CNT, WAKE_STAT_ATTRIBUTE_OTHER_RX_MULTICAST_ADD_CNT }; typedef struct rx_data_cnt_details_t { int rx_unicast_cnt; /* Total rx unicast packet which woke up host */ int rx_multicast_cnt; /* Total rx multicast packet which woke up host */ int rx_broadcast_cnt; /* Total rx broadcast packet which woke up host */ } RX_DATA_WAKE_CNT_DETAILS; typedef struct rx_wake_pkt_type_classification_t { int icmp_pkt; /* wake icmp packet count */ int icmp6_pkt; /* wake icmp6 packet count */ int icmp6_ra; /* wake icmp6 RA packet count */ int icmp6_na; /* wake icmp6 NA packet count */ int icmp6_ns; /* wake icmp6 NS packet count */ } RX_WAKE_PKT_TYPE_CLASSFICATION; typedef struct rx_multicast_cnt_t { int ipv4_rx_multicast_addr_cnt; /* Rx wake packet was ipv4 multicast */ int ipv6_rx_multicast_addr_cnt; /* Rx wake packet was ipv6 multicast */ int other_rx_multicast_addr_cnt; /* Rx wake packet was non-ipv4 and non-ipv6 */ } RX_MULTICAST_WAKE_DATA_CNT; typedef struct wlan_driver_wake_reason_cnt_t { int total_cmd_event_wake; /* Total count of cmd event wakes */ int *cmd_event_wake_cnt; /* Individual wake count array, each index a reason */ int cmd_event_wake_cnt_sz; /* Max number of cmd event wake reasons */ int cmd_event_wake_cnt_used; /* Number of cmd event wake reasons specific to the driver */ int total_driver_fw_local_wake; /* Total count of drive/fw wakes, for local reasons */ int *driver_fw_local_wake_cnt; /* Individual wake count array, each index a reason */ int driver_fw_local_wake_cnt_sz; /* Max number of local driver/fw wake reasons */ /* Number of local driver/fw wake reasons specific to the driver */ int driver_fw_local_wake_cnt_used; int total_rx_data_wake; /* total data rx packets, that woke up host */ RX_DATA_WAKE_CNT_DETAILS rx_wake_details; RX_WAKE_PKT_TYPE_CLASSFICATION rx_wake_pkt_classification_info; RX_MULTICAST_WAKE_DATA_CNT rx_multicast_wake_pkt_info; } WLAN_DRIVER_WAKE_REASON_CNT; #endif /* DHD_WAKE_STATUS */ /* Capture the BRCM_VENDOR_SUBCMD_PRIV_STRINGS* here */ #define BRCM_VENDOR_SCMD_CAPA "cap" #if (LINUX_VERSION_CODE > KERNEL_VERSION(3, 13, 0)) || defined(WL_VENDOR_EXT_SUPPORT) extern int wl_cfgvendor_attach(struct wiphy *wiphy, dhd_pub_t *dhd); extern int wl_cfgvendor_detach(struct wiphy *wiphy); extern int wl_cfgvendor_send_async_event(struct wiphy *wiphy, struct net_device *dev, int event_id, const void *data, int len); extern int wl_cfgvendor_send_hotlist_event(struct wiphy *wiphy, struct net_device *dev, void *data, int len, wl_vendor_event_t event); #else static INLINE int wl_cfgvendor_attach(struct wiphy *wiphy, dhd_pub_t *dhd) { UNUSED_PARAMETER(wiphy); UNUSED_PARAMETER(dhd); return 0; } static INLINE int wl_cfgvendor_detach(struct wiphy *wiphy) { UNUSED_PARAMETER(wiphy); return 0; } #endif /* (LINUX_VERSION_CODE > KERNEL_VERSION(3, 13, 0)) || defined(WL_VENDOR_EXT_SUPPORT) */ #ifdef CONFIG_COMPAT #define COMPAT_ASSIGN_VALUE(normal_structure, member, value) \ do { \ if (compat_task_state) { \ compat_ ## normal_structure.member = value; \ } else { \ normal_structure.member = value; \ } \ } while (0) #else #define COMPAT_ASSIGN_VALUE(normal_structure, member, value) \ normal_structure.member = value; #endif /* CONFIG_COMPAT */ #endif /* _wl_cfgvendor_h_ */