wlan: Add mgmt frame logging init routine

Initialize frame logging providing following config options
to FW during startup:
1. frameType - (Mgmt pkt)
2. frameSize - (128bytes/64bytes)
3. Buffertype - (circular/freeze)
4. enableFlag

Change-Id: Ic4a6f153914ef4e3dcfa9d29dd05bc3cac91e873
CRs-Fixed: 808160
diff --git a/CORE/WDI/CP/inc/wlan_qct_wdi_i.h b/CORE/WDI/CP/inc/wlan_qct_wdi_i.h
index f7578bd..f3331c4 100644
--- a/CORE/WDI/CP/inc/wlan_qct_wdi_i.h
+++ b/CORE/WDI/CP/inc/wlan_qct_wdi_i.h
@@ -470,6 +470,8 @@
   /* Send command to encrypt the given message */
   WDI_ENCRYPT_MSG_REQ                            = 103,
 
+  WDI_MGMT_LOGGING_INIT_REQ                      = 104,
+
   WDI_MAX_REQ,
 
   /*Send a suspend Indication down to HAL*/
@@ -799,6 +801,8 @@
 
   /* Send command to encrypt the given message */
   WDI_ENCRYPT_MSG_RSP                            = 103,
+
+  WDI_MGMT_LOGGING_INIT_RSP                      = 104,
   /*-------------------------------------------------------------------------
     Indications
      !! Keep these last in the enum if possible
@@ -6104,6 +6108,20 @@
 );
 
 WDI_Status
+WDI_ProcessMgmtLoggingInitReq
+(
+  WDI_ControlBlockType*  pWDICtx,
+  WDI_EventInfoType*     pEventData
+);
+
+WDI_Status
+WDI_ProcessMgmtFrameLoggingInitRsp
+(
+  WDI_ControlBlockType*  pWDICtx,
+  WDI_EventInfoType*     pEventData
+);
+
+WDI_Status
 WDI_ProcessEncryptMsgReq
 (
   WDI_ControlBlockType*  pWDICtx,