blob: bfd39622cf8e47da6790f2a5e3490c3999e98a27 [file] [log] [blame]
Jeff Johnson295189b2012-06-20 16:38:30 -07001/*
Gopichand Nakkala9c070ad2013-01-08 21:16:34 -08002 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
3 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21/*
Jeff Johnson32d95a32012-09-10 13:15:23 -070022 * Copyright (c) 2012, The Linux Foundation. All rights reserved.
Jeff Johnson295189b2012-06-20 16:38:30 -070023 *
24 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
25 *
26 *
27 * Permission to use, copy, modify, and/or distribute this software for
28 * any purpose with or without fee is hereby granted, provided that the
29 * above copyright notice and this permission notice appear in all
30 * copies.
31 *
32 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
33 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
34 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
35 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
36 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
37 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
38 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
39 * PERFORMANCE OF THIS SOFTWARE.
40 */
41
42/*
43 *
44 * Airgo Networks, Inc proprietary. All rights reserved.
45 * This file wniStat.h contains statistics related definitions
46 * exported by Sirius software modules.
47 *
48 * Author: Kevin Nguyen
49 * Date: 08/21/2002
50 * History:-
51 * Date Modified by Modification Information
52 * --------------------------------------------------------------------
53 */
54
55#ifndef _WNISTAT_H
56#define _WNISTAT_H
57
58
59// WNI Statistic Parameter ID
60#define WNI_STAT_RTS_SUCC_CNT 1
61#define WNI_STAT_RTS_FAILED_CNT 2
62#define WNI_STAT_PACKET_CNT 3
63#define WNI_STAT_MULTI_CNT 4
64#define WNI_STAT_DUPL_FRAG_CNT 5
65#define WNI_STAT_TOTAL_BYTE_CNT 6
66#define WNI_STAT_PKT_DROP_CNT 7
67#define WNI_STAT_PKT64_CNT 8
68#define WNI_STAT_PKT127_CNT 9
69#define WNI_STAT_PKT255_CNT 10
70#define WNI_STAT_PKT511_CNT 11
71#define WNI_STAT_PKT1023_CNT 12
72#define WNI_STAT_PKT1518_CNT 13
73#define WNI_STAT_PKT2047_CNT 14
74#define WNI_STAT_PKT4095_CNT 15
75#define WNI_STAT_FRAG_CNT 16
76#define WNI_STAT_FCS_CNT 17
77#define WNI_STAT_BSSID_MISS_CNT 18
78#define WNI_STAT_PDU_ERR_CNT 19
79#define WNI_STAT_DST_MISS_CNT 20
80#define WNI_STAT_DROP_CNT 21
81#define WNI_STAT_ABORT_CNT 22
82#define WNI_STAT_RELAY_CNT 23
83#define WNI_STAT_HASH_MISS_CNT 24
84#define WNI_STAT_PLCP_CRC_ERR_CNT 25
85#define WNI_STAT_PLCP_SIG_ERR_CNT 26
86#define WNI_STAT_PLCP_SVC_ERR_CNT 27
87#define WNI_STAT_BEACONS_RECEIVED_CNT 28
88#define WNI_STAT_BEACONS_TRANSMITTED_CNT 29
89#define WNI_STAT_CURRENT_TX_RATE 30
90
91#define WNI_STAT_LAST_ID WNI_STAT_CURRENT_TX_RATE
92
93
94#endif
95