Quellcode durchsuchen

qcacld-3.0: Register DSCP action frame for wake up

Currently, the bitmap of action frames that can wake up the
host during suspend is sent via the wmi command
WMI_WOW_SET_ACTION_WAKE_UP_CMDID. This bitmap doesn't include
DSCP action frames so currently the host doesn't wake up for
DSCP action frames when in suspend mode.

Enable wake up for DSCP action frame for runtime PM as well
as for wow mode.

Change-Id: I51ba3e8ef52755af25ed922161028dfbaccaa250
CRs-Fixed: 3046595
abhinav kumar vor 3 Jahren
Ursprung
Commit
0fae493005
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  1. 5 1
      components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h

+ 5 - 1
components/pmo/dispatcher/inc/wlan_pmo_wow_public_struct.h

@@ -65,6 +65,7 @@
 #define PMO_MAC_ACTION_FST            18
 #define PMO_MAC_ACTION_RVS            19
 #define PMO_MAC_ACTION_VHT            21
+#define PMO_VENDOR_PROTECTED          126
 #define PMO_MAC_ACTION_MAX            256
 
 /*
@@ -96,6 +97,7 @@
  * PMO_ACTION_FST             18      1
  * PMO_ACTION_RVS             19      1
  * PMO_ACTION_VHT             21      1
+ * PMO_VENDOR_PROTECTED       126     1
  * ----------------------------+------+-------+
  */
 #define SYSTEM_SUSPEND_ALLOWED_ACTION_FRAMES_BITMAP0 \
@@ -112,7 +114,9 @@
 
 #define ALLOWED_ACTION_FRAMES_BITMAP1   0x0
 #define ALLOWED_ACTION_FRAMES_BITMAP2   0x0
-#define ALLOWED_ACTION_FRAMES_BITMAP3   0x0
+#define ALLOWED_ACTION_FRAMES_BITMAP3 \
+		(1 << (PMO_VENDOR_PROTECTED % 32))
+
 #define ALLOWED_ACTION_FRAMES_BITMAP4   0x0
 #define ALLOWED_ACTION_FRAMES_BITMAP5   0x0
 #define ALLOWED_ACTION_FRAMES_BITMAP6   0x0