qcacld-3.0: Add FW capability check for sap and go d3 wow

Add WMI service FW capability check before enabling D0 and D3
WoW for SAP and GO clients connected mode.

Change-Id: I878e4ee33807804e049bf1e8b8078d28fc1d4834
CRs-Fixed: 2869072
这个提交包含在:
Rajeev Kumar
2021-01-31 18:30:17 -08:00
提交者 snandini
父节点 6c5b2f62c0
当前提交 2906b33aa3
修改 3 个文件,包含 88 行新增18 行删除

查看文件

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2019 The Linux Foundation. All rights reserved.
* Copyright (c) 2017-2019, 2021 The Linux Foundation. All rights reserved.
*
* Permission to use, copy, modify, and/or distribute this software for
* any purpose with or without fee is hereby granted, provided that the
@@ -271,6 +271,26 @@ QDF_STATUS pmo_register_is_device_in_low_pwr_mode(struct wlan_objmgr_psoc *psoc,
QDF_STATUS
pmo_unregister_is_device_in_low_pwr_mode(struct wlan_objmgr_psoc *psoc);
/**
* wlan_pmo_get_sap_mode_bus_suspend(): API to get SAP bus suspend config
* @psoc: objmgr psoc handle
*
* Return true in case of peer connected SAP bus suspend is allowed
* else return false
*/
bool
wlan_pmo_get_sap_mode_bus_suspend(struct wlan_objmgr_psoc *psoc);
/**
* wlan_pmo_get_go_mode_bus_suspend(): API to get GO bus suspend config
* @psoc: objmgr psoc handle
*
* Return true in case of peer connected GO bus suspend is allowed
* else return false
*/
bool
wlan_pmo_get_go_mode_bus_suspend(struct wlan_objmgr_psoc *psoc);
#else /* WLAN_POWER_MANAGEMENT_OFFLOAD */
static inline QDF_STATUS pmo_init(void)
@@ -422,6 +442,18 @@ pmo_unregister_get_beacon_interval_callback(struct wlan_objmgr_psoc *psoc)
return QDF_STATUS_SUCCESS;
}
static inline bool
wlan_pmo_get_sap_mode_bus_suspend(struct wlan_objmgr_psoc *psoc)
{
return false;
}
static inline bool
wlan_pmo_get_go_mode_bus_suspend(struct wlan_objmgr_psoc *psoc)
{
return false;
}
#endif /* WLAN_POWER_MANAGEMENT_OFFLOAD */
#endif /* end of _WLAN_PMO_OBJ_MGMT_API_H_ */