qcacmn: Add vendor features to indicate OCE support
Vendor features are used to indicate OCE support from driver to user space which are set based on ini params for STA and SAP. Change-Id: I7ef572443c8a7ed313917e4dfab5f4fab73fe245 CRs-Fixed: 2031980
This commit is contained in:
committed by
snandini
parent
b948a1f9ad
commit
8bdb0697af
@@ -2663,12 +2663,24 @@ enum qca_wlan_vendor_attr_nd_offload {
|
|||||||
* user space wpa_supplicant do it. Information from received P2P
|
* user space wpa_supplicant do it. Information from received P2P
|
||||||
* Requests are forwarded from firmware to host whenever the APPS
|
* Requests are forwarded from firmware to host whenever the APPS
|
||||||
* processor exits power collapse state.
|
* processor exits power collapse state.
|
||||||
|
* @QCA_WLAN_VENDOR_FEATURE_OCE_STA: Device supports all OCE non-AP STA
|
||||||
|
* specific features
|
||||||
|
* @QCA_WLAN_VENDOR_FEATURE_OCE_AP: Device supports all OCE AP specific
|
||||||
|
* features.
|
||||||
|
* @QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON: Device supports OCE STA-CFON
|
||||||
|
* specific features only. If a Device sets this bit but not the
|
||||||
|
* QCA_WLAN_VENDOR_FEATURE_OCE_AP, the userspace shall assume that
|
||||||
|
* this Device may not support all OCE AP functionalities but can support
|
||||||
|
* only OCE STA-CFON functionalities.
|
||||||
*/
|
*/
|
||||||
enum qca_wlan_vendor_features {
|
enum qca_wlan_vendor_features {
|
||||||
QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD = 0,
|
QCA_WLAN_VENDOR_FEATURE_KEY_MGMT_OFFLOAD = 0,
|
||||||
QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY = 1,
|
QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY = 1,
|
||||||
QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS = 2,
|
QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS = 2,
|
||||||
QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD = 3,
|
QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD = 3,
|
||||||
|
QCA_WLAN_VENDOR_FEATURE_OCE_STA = 4,
|
||||||
|
QCA_WLAN_VENDOR_FEATURE_OCE_AP = 5,
|
||||||
|
QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON = 6,
|
||||||
/* Additional features need to be added above this */
|
/* Additional features need to be added above this */
|
||||||
NUM_QCA_WLAN_VENDOR_FEATURES
|
NUM_QCA_WLAN_VENDOR_FEATURES
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user