|
@@ -3831,20 +3831,26 @@ typedef struct {
|
|
|
* 1-> MLO support
|
|
|
* 2-3-> Reserved
|
|
|
* Refer to the WMI_RSRC_CFG_FLAGS2_RX_PEER_METADATA_VERSION macros.
|
|
|
- * Bits 6 - is_sap_connected_d3wow_enabled
|
|
|
+ * Bit 6 - is_sap_connected_d3wow_enabled
|
|
|
* Enable D3WoW for SAP w/ clients connected
|
|
|
* 0-> disable the feature
|
|
|
* 1-> enable the feature
|
|
|
* Refer to the WMI_RSRC_CFG_FLAGS2_IS_SAP_CONNECTED_D3WOW_ENABLED
|
|
|
* GET/SET macros.
|
|
|
- * Bits 7 - is_go_connected_d3wow_enabled
|
|
|
+ * Bit 7 - is_go_connected_d3wow_enabled
|
|
|
* Enable D3WoW for GO w/ clients connected
|
|
|
* 0-> disable the feature
|
|
|
* 1-> enable the feature
|
|
|
* Refer to the WMI_RSRC_CFG_FLAGS2_IS_GO_CONNECTED_D3WOW_ENABLED
|
|
|
* GET/SET macros.
|
|
|
+ * Bit 8 - enable_dynamic_pcie_gen_speed_switch
|
|
|
+ * enable dynamic pcie gen speed switch
|
|
|
+ * 0-> disable the feature
|
|
|
+ * 1-> enable the feature
|
|
|
+ * Refer to the WMI_RSRC_CFG_FLAGS2_IS_DYNAMIC_PCIE_GEN_SPEED_SWITCH_ENABLED
|
|
|
+ * GET/SET macros.
|
|
|
*
|
|
|
- * Bits 31:8 - Reserved
|
|
|
+ * Bits 31:9 - Reserved
|
|
|
*/
|
|
|
A_UINT32 flags2;
|
|
|
/** @brief host_service_flags - can be used by Host to indicate
|
|
@@ -4155,6 +4161,11 @@ typedef struct {
|
|
|
#define WMI_RSRC_CFG_FLAGS2_IS_GO_CONNECTED_D3WOW_ENABLED_SET(flags2, value) \
|
|
|
WMI_SET_BITS(flags2, 7, 1, value)
|
|
|
|
|
|
+#define WMI_RSRC_CFG_FLAGS2_IS_DYNAMIC_PCIE_GEN_SPEED_SWITCH_ENABLED_GET(flags2) \
|
|
|
+ WMI_GET_BITS(flags2, 8, 1)
|
|
|
+#define WMI_RSRC_CFG_FLAGS2_IS_DYNAMIC_PCIE_GEN_SPEED_SWITCH_ENABLED_SET(flags2, value) \
|
|
|
+ WMI_SET_BITS(flags2, 8, 1, value)
|
|
|
+
|
|
|
#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_GET(host_service_flags) \
|
|
|
WMI_GET_BITS(host_service_flags, 0, 1)
|
|
|
#define WMI_RSRC_CFG_HOST_SERVICE_FLAG_NAN_IFACE_SUPPORT_SET(host_service_flags, val) \
|