Browse Source

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
sheenam monga 5 years ago
parent
commit
bf390c6c5c
1 changed files with 4 additions and 0 deletions
  1. 4 0
      components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h

+ 4 - 0
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 */