qcacld-3.0: Add ini entry for wow pulse configuration

qcacld-2.0 to qcacld-3.0 propagation

Add ini entry to configure wow pulse repetition count
and wow pulse init level.

Change-Id: Ic23d2ae80f6f0adef9f35bfef5a59eb0220c70ae
CRs-Fixed: 2722997
This commit is contained in:
Li Feng
2020-05-27 09:59:18 +08:00
committed by nshrivas
parent 95ea7c675f
commit 0e6dc924e5
8 changed files with 116 additions and 8 deletions

View File

@@ -592,6 +592,20 @@ uint16_t ucfg_pmo_get_wow_pulse_interval_low(struct wlan_objmgr_psoc *psoc)
return pmo_psoc_ctx->psoc_cfg.wow_pulse_interval_low;
}
uint32_t ucfg_pmo_get_wow_pulse_repeat_count(struct wlan_objmgr_psoc *psoc)
{
struct pmo_psoc_priv_obj *pmo_psoc_ctx = pmo_psoc_get_priv(psoc);
return pmo_psoc_ctx->psoc_cfg.wow_pulse_repeat_count;
}
uint32_t ucfg_pmo_get_wow_pulse_init_state(struct wlan_objmgr_psoc *psoc)
{
struct pmo_psoc_priv_obj *pmo_psoc_ctx = pmo_psoc_get_priv(psoc);
return pmo_psoc_ctx->psoc_cfg.wow_pulse_init_state;
}
#endif
bool ucfg_pmo_is_active_mode_offloaded(struct wlan_objmgr_psoc *psoc)