|
@@ -374,6 +374,21 @@ static QDF_STATUS ucfg_fwol_get_sap_sho(struct wlan_objmgr_psoc *psoc,
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|
|
|
|
|
|
+static QDF_STATUS ucfg_fwol_get_hw_assist_config(struct wlan_objmgr_psoc *psoc,
|
|
|
+ bool *disable_hw_assist)
|
|
|
+{
|
|
|
+ struct wlan_fwol_psoc_obj *fwol_obj;
|
|
|
+
|
|
|
+ fwol_obj = fwol_get_psoc_obj(psoc);
|
|
|
+ if (!fwol_obj) {
|
|
|
+ fwol_err("Failed to get FWOL obj");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+
|
|
|
+ *disable_hw_assist = fwol_obj->cfg.disable_hw_assist;
|
|
|
+ return QDF_STATUS_SUCCESS;
|
|
|
+}
|
|
|
+
|
|
|
QDF_STATUS ucfg_get_enable_rts_sifsbursting(struct wlan_objmgr_psoc *psoc,
|
|
|
bool *enable_rts_sifsbursting)
|
|
|
{
|
|
@@ -1057,14 +1072,22 @@ QDF_STATUS ucfg_fwol_configure_global_params(struct wlan_objmgr_psoc *psoc,
|
|
|
QDF_STATUS status;
|
|
|
bool value;
|
|
|
|
|
|
+ /* Configure ILP feature in FW */
|
|
|
status = ucfg_fwol_get_ilp_config(psoc, &value);
|
|
|
if (QDF_IS_STATUS_ERROR(status))
|
|
|
return status;
|
|
|
-
|
|
|
status = fwol_set_ilp_config(pdev, value);
|
|
|
if (QDF_IS_STATUS_ERROR(status))
|
|
|
return status;
|
|
|
|
|
|
+ /* Configure HW assist feature in FW */
|
|
|
+ status = ucfg_fwol_get_hw_assist_config(psoc, &value);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ return status;
|
|
|
+ status = fwol_configure_hw_assist(pdev, value);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status))
|
|
|
+ return status;
|
|
|
+
|
|
|
return status;
|
|
|
}
|
|
|
|