blob: cff423f59f587c3522e50b3b9d49759e13ed8b5e [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Kiet Lamaa8e15a2014-02-11 23:30:06 -08002 * Copyright (c) 2012-2013 Qualcomm Atheros, Inc.
3 * All Rights Reserved.
4 * Qualcomm Atheros Confidential and Proprietary.
Gopichand Nakkala92f07d82013-01-08 21:16:34 -08005 */
Jeff Johnson295189b2012-06-20 16:38:30 -07006/**=========================================================================
7
8 \file macTrace.h
9
10 \brief definition for trace related APIs
11
12 \author Sunit Bhatia
13
14 Copyright 2008 (c) Qualcomm, Incorporated. All Rights Reserved.
15
16 Qualcomm Confidential and Proprietary.
17
18 ========================================================================*/
19
20
21
22#ifndef __MAC_TRACE_H
23#define __MAC_TRACE_H
24
25#include "aniGlobal.h"
26
27
28#ifdef TRACE_RECORD
29
30#define CASE_RETURN_STRING( str ) \
31 case ( ( str ) ): return( (tANI_U8*)(#str) ); break \
32
33#define MAC_TRACE_GET_MODULE_ID(data) ((data >> 8) & 0xff)
34#define MAC_TRACE_GET_MSG_ID(data) (data & 0xffff)
35
36
Leela Venkata Kiran Kumar Reddy Chiralaf3fe6302013-03-18 12:32:14 -070037#define eLOG_NODROP_MISSED_BEACON_SCENARIO 0
Venkata Prathyusha Kuntupallie5675292013-04-11 17:01:17 -070038#define eLOG_PROC_DEAUTH_FRAME_SCENARIO 1
Jeff Johnson295189b2012-06-20 16:38:30 -070039
Jeff Johnson295189b2012-06-20 16:38:30 -070040void macTraceReset(tpAniSirGlobal pMac);
41void macTrace(tpAniSirGlobal pMac, tANI_U8 code, tANI_U8 session, tANI_U32 data);
42void macTraceNew(tpAniSirGlobal pMac, tANI_U8 module, tANI_U8 code, tANI_U8 session, tANI_U32 data);
Jeff Johnson295189b2012-06-20 16:38:30 -070043tANI_U8* macTraceGetCfgMsgString( tANI_U16 cfgMsg );
44tANI_U8* macTraceGetLimMsgString( tANI_U16 limMsg );
Leela V Kiran Kumar Reddy Chiralac3b9d382013-01-31 20:49:53 -080045tANI_U8* macTraceGetWdaMsgString( tANI_U16 wdaMsg );
Jeff Johnson295189b2012-06-20 16:38:30 -070046tANI_U8* macTraceGetSmeMsgString( tANI_U16 smeMsg );
47tANI_U8* macTraceGetModuleString( tANI_U8 moduleId);
Leela Venkata Kiran Kumar Reddy Chiralaf3fe6302013-03-18 12:32:14 -070048tANI_U8* macTraceGetInfoLogString( tANI_U16 infoLog );
Leela V Kiran Kumar Reddy Chiralac3b9d382013-01-31 20:49:53 -080049eHalStatus pe_AcquireGlobalLock( tAniSirLim *psPe);
50eHalStatus pe_ReleaseGlobalLock( tAniSirLim *psPe);
Jeff Johnson295189b2012-06-20 16:38:30 -070051
Madan Mohan Koyyalamudi8af9b402013-07-11 14:59:10 +053052tANI_U8* macTraceGetHDDWlanConnState(tANI_U16 connState);
Jeff Johnson295189b2012-06-20 16:38:30 -070053
Madan Mohan Koyyalamudi8af9b402013-07-11 14:59:10 +053054#ifdef WLAN_FEATURE_P2P_DEBUG
55tANI_U8* macTraceGetP2PConnState(tANI_U16 connState);
56#endif
57
58tANI_U8* macTraceGetNeighbourRoamState(tANI_U16 neighbourRoamState);
59tANI_U8* macTraceGetcsrRoamState(tANI_U16 csrRoamState);
60tANI_U8* macTraceGetcsrRoamSubState(tANI_U16 csrRoamSubState);
61tANI_U8* macTraceGetLimSmeState(tANI_U16 limState);
62tANI_U8* macTraceGetLimMlmState(tANI_U16 mlmState);
63tANI_U8* macTraceGetTLState(tANI_U16 tlState);
Jeff Johnson295189b2012-06-20 16:38:30 -070064
65#endif
66
67#endif
68