qcacmn: Add attributes to support MBSSID multi groups notifications
Add new attributes for supporting MBSSID multi groups notifications to qca_wlan_vendor_attr_mbssid_tx_vdev_status (QCA_NL80211_VENDOR_SUBCMD_MBSSID_TX_VDEV_STATUS). CRs-Fixed: 3028263 Change-Id: I9ce3f945cf4d3cf91af57363d7a25f14d5c90fa6
This commit is contained in:

committed by
Madan Koyyalamudi

parent
517a254443
commit
aba3dd6941
@@ -474,6 +474,8 @@
|
||||
* The host driver selects Tx VDEV, and notifies user. The attributes
|
||||
* used with this event are defined in enum
|
||||
* qca_wlan_vendor_attr_mbssid_tx_vdev_status.
|
||||
* This event contains Tx VDEV group information contains other VDEVs
|
||||
* interface index and status information.
|
||||
*
|
||||
* @QCA_NL80211_VENDOR_SUBCMD_CONCURRENT_MULTI_STA_POLICY: Vendor command to
|
||||
* configure the concurrent session policies when multiple STA interfaces
|
||||
@@ -11181,10 +11183,25 @@ enum qca_wlan_vendor_attr_medium_assess {
|
||||
* u8 attribute. Notify the TX VDEV status. Possible values 0, 1
|
||||
* belonging to MBSSID/EMA_AP configuration. 0 means Non-Tx VDEV,
|
||||
* 1 means Tx VDEV. Mandatory attribute for all MBSSID VDEV status events.
|
||||
*
|
||||
* @QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_EVENT:
|
||||
* u8 attribute, required. 1 means Tx VDEV up event.0 mean Tx VDEV down event.
|
||||
*
|
||||
* @QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_ID:
|
||||
* u8 attribute, required. indicates group id of Tx VDEV
|
||||
*
|
||||
* @QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO:
|
||||
* Nested attribute. This attribute shall be used by the driver to send
|
||||
* group information. The attributes defined in enum
|
||||
* qca_wlan_vendor_attr_mbssid_tx_vdev_group_info
|
||||
* are nested in this attribute.
|
||||
*/
|
||||
enum qca_wlan_vendor_attr_mbssid_tx_vdev_status {
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_INVALID = 0,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_VAL = 1,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_EVENT = 2,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_ID = 3,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO = 4,
|
||||
|
||||
/* keep last */
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_AFTER_LAST,
|
||||
@@ -11192,6 +11209,27 @@ enum qca_wlan_vendor_attr_mbssid_tx_vdev_status {
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_STATUS_AFTER_LAST - 1,
|
||||
};
|
||||
|
||||
/**
|
||||
* enum qca_wlan_vendor_attr_mbssid_tx_vdev_group_info - Attributes used
|
||||
* inside %QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO nested attribute.
|
||||
*
|
||||
* @QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_IF_INDEX:
|
||||
* u32 attribute, required. contains interface index.
|
||||
*
|
||||
* @QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_STATUS:
|
||||
* u8 attribute, required. 0 - means vdev is in down state.
|
||||
* 1- means vdev is in up state.
|
||||
*/
|
||||
enum qca_wlan_vendor_attr_mbssid_tx_vdev_group_info {
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_INVALID = 0,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_IF_INDEX = 1,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_STATUS = 2,
|
||||
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_AFTER_LAST,
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO_MAX =
|
||||
QCA_WLAN_VENDOR_ATTR_MBSSID_TX_VDEV_GROUP_INFO - 1,
|
||||
};
|
||||
|
||||
/**
|
||||
* enum qca_wlan_vendor_oci_override_frame_type - OCI override frame type
|
||||
* @QCA_WLAN_VENDOR_OCI_OVERRIDE_FRAME_SA_QUERY_REQ: SA Query Request frame
|
||||
|
Reference in New Issue
Block a user