From bf390c6c5cb3883eb202cd07cffd59fbdfc71bce Mon Sep 17 00:00:00 2001 From: sheenam monga Date: Thu, 26 Mar 2020 11:43:49 +0530 Subject: [PATCH] qcacld-3.0: Register RVS action frames for wake up Currently the bitmap of action frames that can wake up the host is sent via the wmi command WMI_WOW_SET_ACTION_WAKE_UP_CMDID. This bitmap doesn't include RVS action frames so currently the host doesn't wake up for rvs action frames. Enable wake up for rvs action frames during runtime. Change-Id: I9fac8e74cdb7b529f858f7f2027906ca2b3083b3 CRs-Fixed: 2649927 --- components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h b/components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h index 0f236723b9..0731fa58d9 100644 --- a/components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h +++ b/components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h @@ -63,6 +63,7 @@ #define PMO_MAC_SELF_PROTECTED 15 #define PMO_MAC_ACTION_WME 17 #define PMO_MAC_ACTION_FST 18 +#define PMO_MAC_ACTION_RVS 19 #define PMO_MAC_ACTION_VHT 21 #define PMO_MAC_ACTION_MAX 256 @@ -93,6 +94,7 @@ * PMO_SELF_PROTECTED 15 0 * PMO_ACTION_WME 17 1 * PMO_ACTION_FST 18 1 + * PMO_ACTION_RVS 19 1 * PMO_ACTION_VHT 21 1 * ----------------------------+------+-------+ */ @@ -105,6 +107,7 @@ (1 << PMO_MAC_ACTION_WNM) | \ (1 << PMO_MAC_ACTION_WME) | \ (1 << PMO_MAC_ACTION_FST) | \ + (1 << PMO_MAC_ACTION_RVS) | \ (1 << PMO_MAC_ACTION_VHT)) #define ALLOWED_ACTION_FRAMES_BITMAP1 0x0 @@ -127,6 +130,7 @@ (1 << PMO_MAC_ACTION_WNM) | \ (1 << PMO_MAC_ACTION_WME) | \ (1 << PMO_MAC_ACTION_FST) | \ + (1 << PMO_MAC_ACTION_RVS) | \ (1 << PMO_MAC_ACTION_VHT)) /* Public Action for 20/40 BSS Coexistence */