qcacmn: Add host WMI support for EAPOL minrate resource config
Add host WMI support for EAPOL minrate resource configuration. Through the use of the global.ini configuration parameter - eapol_minrate_set and eapol_minrate_ac_set, the user can set EAPOL frames to be sent in minimum rate in tunnel mode. In addition to this, the user can also select between the 4 ACs (BE, BK, VI, VO) to send the EAPOL frames. The changes are reflected in the target resource config which is sent to the firmware. Change-Id: Ib9a264b64305bf43708c3c2af3ff254b6cc28477 CRs-Fixed: 2298020
Este cometimento está contido em:

cometido por
nshrivas

ascendente
16395277c9
cometimento
a06a063b7d
@@ -6067,6 +6067,8 @@ typedef struct {
|
||||
uint32_t twt_ap_pdev_count;
|
||||
uint32_t twt_ap_sta_count;
|
||||
uint32_t max_bssid_indicator;
|
||||
uint32_t eapol_minrate_set:1,
|
||||
eapol_minrate_ac_set:2;
|
||||
} target_resource_config;
|
||||
|
||||
/**
|
||||
|
@@ -11118,6 +11118,17 @@ void wmi_copy_resource_config(wmi_resource_config *resource_cfg,
|
||||
resource_cfg->flag1, 1);
|
||||
if (tgt_res_cfg->cce_disable)
|
||||
WMI_RSRC_CFG_FLAG_TCL_CCE_DISABLE_SET(resource_cfg->flag1, 1);
|
||||
if (tgt_res_cfg->eapol_minrate_set) {
|
||||
WMI_RSRC_CFG_FLAG_EAPOL_REKEY_MINRATE_SUPPORT_ENABLE_SET(
|
||||
resource_cfg->flag1, 1);
|
||||
if (tgt_res_cfg->eapol_minrate_ac_set != 3) {
|
||||
WMI_RSRC_CFG_FLAG_EAPOL_AC_OVERRIDE_VALID_SET(
|
||||
resource_cfg->flag1, 1);
|
||||
WMI_RSRC_CFG_FLAG_EAPOL_AC_OVERRIDE_SET(
|
||||
resource_cfg->flag1,
|
||||
tgt_res_cfg->eapol_minrate_ac_set);
|
||||
}
|
||||
}
|
||||
|
||||
wmi_copy_twt_resource_config(resource_cfg, tgt_res_cfg);
|
||||
resource_cfg->peer_map_unmap_v2_support =
|
||||
|
Criar uma nova questão referindo esta
Bloquear um utilizador