qcacmn: Send sta dump feature info to fw

Driver sends feature set information to fw as
part of wmi init command.

Fill sta dump feature info in feature set bitmap
and send it to fw.

Change-Id: If28cd8f10af2333f0f231f0c4ae659ab20c1358a
CRs-Fixed: 3552909
Tento commit je obsažen v:
Aravind Kishore Sukla
2023-07-07 11:41:04 +05:30
odevzdal Rahul Choudhary
rodič 3177c12082
revize 23374c26c5
2 změnil soubory, kde provedl 4 přidání a 0 odebrání

Zobrazit soubor

@@ -6598,6 +6598,7 @@ typedef enum {
* @peer_getstainfo_support: Indicates getstainfo support
* @feature_set_version: Indicates feature set version info
* @num_antennas: Indicates number of antennas supported
* @sta_dump_support: Indicates sta dump info support
*/
struct target_feature_set {
WMI_HOST_WIFI_STANDARD wifi_standard;
@@ -6657,6 +6658,7 @@ struct target_feature_set {
bool peer_getstainfo_support;
uint16_t feature_set_version;
WMI_HOST_NUM_ANTENNAS num_antennas;
bool sta_dump_support;
};
#endif

Zobrazit soubor

@@ -9832,6 +9832,8 @@ static inline void copy_feature_set_info(uint32_t *feature_set_bitmap,
feature_set->feature_set_version);
WMI_SET_NUM_ANTENNAS(feature_set_bitmap, num_antennas);
WMI_SET_HOST_BAND_CAP(feature_set_bitmap, band_capability);
WMI_SET_STA_DUMP_SUPPORT(feature_set_bitmap,
feature_set->sta_dump_support);
}
/**