summaryrefslogtreecommitdiff
path: root/wilink_6_1/Test/TxDbg.c
blob: 66546d7598c1a1811215ffe1b17b321a894be3a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
 * TxDbg.c
 *
 * Copyright(c) 1998 - 2009 Texas Instruments. All rights reserved.      
 * All rights reserved.                                                  
 *                                                                       
 * Redistribution and use in source and binary forms, with or without    
 * modification, are permitted provided that the following conditions    
 * are met:                                                              
 *                                                                       
 *  * Redistributions of source code must retain the above copyright     
 *    notice, this list of conditions and the following disclaimer.      
 *  * Redistributions in binary form must reproduce the above copyright  
 *    notice, this list of conditions and the following disclaimer in    
 *    the documentation and/or other materials provided with the         
 *    distribution.                                                      
 *  * Neither the name Texas Instruments nor the names of its            
 *    contributors may be used to endorse or promote products derived    
 *    from this software without specific prior written permission.      
 *                                                                       
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS   
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT     
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT  
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT      
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT   
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */


/***************************************************************************/
/*																									*/
/*		MODULE:																	*/
/*    PURPOSE:										*/
/*																									*/
/***************************************************************************/
#include "tidef.h"
#include "DataCtrl_Api.h"
#include "dataCtrlDbg.h"
#include "osApi.h"
#include "report.h"
#include "siteMgrApi.h"
#include "TWDriver.h"
#include "txCtrl.h"

void printTxRxDbgFunctions(void);



/*************************************************************************
 *							rxTxDebugFunction							 *
 *************************************************************************
DESCRIPTION:   Call the requested Tx or Rx debug print function.               
************************************************************************/

void rxTxDebugFunction(TI_HANDLE hRxTxHandle, TI_UINT32 funcType, void *pParam)
{
	txCtrl_t *pTxCtrl = (txCtrl_t *)hRxTxHandle;  /* Relevant only for some of the cases below! */

	switch ((ERxTxDbgFunc)funcType)
	{
	case TX_RX_DBG_FUNCTIONS:
		printTxRxDbgFunctions();
		break;

	/* 
	 *  TX DEBUG FUNCTIONS:
	 *  ===================
	 */
	case PRINT_TX_CTRL_INFO:
		txCtrlParams_printInfo (hRxTxHandle);
		break;

    case PRINT_TX_CTRL_COUNTERS:
        txCtrlParams_printDebugCounters (hRxTxHandle);
        break;

	case PRINT_TX_DATA_QUEUE_INFO:
		txDataQ_PrintModuleParams (pTxCtrl->hTxDataQ);
		break;

	case PRINT_TX_DATA_QUEUE_COUNTERS:
		txDataQ_PrintQueueStatistics (pTxCtrl->hTxDataQ);
		break;

	case PRINT_TX_MGMT_QUEUE_INFO:
		txMgmtQ_PrintModuleParams (pTxCtrl->hTxMgmtQ);
		break;

	case PRINT_TX_MGMT_QUEUE_COUNTERS:
		txMgmtQ_PrintQueueStatistics (pTxCtrl->hTxMgmtQ);
		break;

    case PRINT_TX_CTRL_BLK_INFO:
		TWD_PrintTxInfo (pTxCtrl->hTWD, TWD_PRINT_TX_CTRL_BLK_TBL);
        break;

    case PRINT_TX_HW_QUEUE_INFO:
		TWD_PrintTxInfo (pTxCtrl->hTWD, TWD_PRINT_TX_HW_QUEUE_INFO);
        break;

    case PRINT_TX_XFER_INFO:
		TWD_PrintTxInfo (pTxCtrl->hTWD, TWD_PRINT_TX_XFER_INFO);
        break;

	case PRINT_TX_RESULT_INFO:
		TWD_PrintTxInfo (pTxCtrl->hTWD, TWD_PRINT_TX_RESULT_INFO);
        break;

	case PRINT_TX_DATA_CLSFR_TABLE:
        txDataClsfr_PrintClsfrTable (pTxCtrl->hTxDataQ);
        break;


	case RESET_TX_CTRL_COUNTERS:
		txCtrlParams_resetDbgCounters (hRxTxHandle);
		break;

	case RESET_TX_DATA_QUEUE_COUNTERS:
		txDataQ_ResetQueueStatistics (pTxCtrl->hTxDataQ);
		break;

    case RESET_TX_DATA_CLSFR_TABLE:
        {
            EClsfrType  myLocalType;

            /* Setting again the current classifier type clears the table */
            txDataClsfr_GetClsfrType (pTxCtrl->hTxDataQ, &myLocalType);
            txDataClsfr_SetClsfrType (pTxCtrl->hTxDataQ, myLocalType);
        }
		break;

	case RESET_TX_MGMT_QUEUE_COUNTERS:
		txMgmtQ_ResetQueueStatistics (pTxCtrl->hTxMgmtQ);
		break;


	/* 
	 *  RX DEBUG FUNCTIONS:
	 *  ===================
	 */
	case PRINT_RX_BLOCK:
		WLAN_OS_REPORT(("RX DBG - Print Rx Block \n\n"));
		rxData_printRxBlock(hRxTxHandle);
		break;

	case PRINT_RX_COUNTERS:
		WLAN_OS_REPORT(("RX DBG - Print Rx counters \n\n"));
		rxData_printRxCounters(hRxTxHandle);
		break;

	case RESET_RX_COUNTERS:
		WLAN_OS_REPORT(("RX DBG - Reset Rx counters \n\n"));
		rxData_resetCounters(hRxTxHandle);
		rxData_resetDbgCounters(hRxTxHandle);
		break;

    case PRINT_RX_THROUGHPUT_START:
		rxData_startRxThroughputTimer (hRxTxHandle);
		break;

    case PRINT_RX_THROUGHPUT_STOP:
		rxData_stopRxThroughputTimer (hRxTxHandle);
		break;

	default:
		WLAN_OS_REPORT(("Invalid function type in Debug Tx Function Command: %d\n\n", funcType));
		break;
	}
}


void printTxRxDbgFunctions(void)
{
	WLAN_OS_REPORT(("\n          Tx Dbg Functions   \n"));
	WLAN_OS_REPORT(("--------------------------------------\n"));

	WLAN_OS_REPORT(("301 - Print TxCtrl info.\n"));
	WLAN_OS_REPORT(("302 - Print TxCtrl Statistics.\n"));
	WLAN_OS_REPORT(("303 - Print TxDataQueue info.\n"));
	WLAN_OS_REPORT(("304 - Print TxDataQueue Statistics.\n"));
	WLAN_OS_REPORT(("305 - Print TxMgmtQueue info.\n"));
	WLAN_OS_REPORT(("306 - Print TxMgmtQueue Statistics.\n"));
	WLAN_OS_REPORT(("307 - Print Tx control-block table.\n"));
	WLAN_OS_REPORT(("308 - Print Tx HW queue info.\n"));
	WLAN_OS_REPORT(("309 - Print Tx Xfer info.\n"));
	WLAN_OS_REPORT(("310 - Print Tx result info.\n"));
	WLAN_OS_REPORT(("311 - Print TxDataClsfr Classifier Table.\n"));

	WLAN_OS_REPORT(("320 - Reset TxCtrl Statistics.\n"));
	WLAN_OS_REPORT(("321 - Reset TxDataQueue Statistics.\n"));
	WLAN_OS_REPORT(("322 - Reset TxDataClsfr Classifier Table.\n"));
	WLAN_OS_REPORT(("323 - Reset TxMgmtQueue Statistics.\n"));

	WLAN_OS_REPORT(("\n          Rx Dbg Functions   \n"));
	WLAN_OS_REPORT(("--------------------------------------\n"));
	WLAN_OS_REPORT(("350 - Print Rx block.\n"));
	WLAN_OS_REPORT(("351 - Print Rx counters.\n"));
	WLAN_OS_REPORT(("352 - Reset Rx counters.\n"));
	WLAN_OS_REPORT(("353 - Start Rx throughput timer.\n"));
	WLAN_OS_REPORT(("354 - Stop  Rx throughput timer.\n"));
}