blob: 30678b93fb8394b1b0f98b75a8236624622e1574 [file] [log] [blame]
Greg Kroah-Hartman91980992008-10-28 14:48:09 -07001/*
2 *************************************************************************
3 * Ralink Tech Inc.
4 * 5F., No.36, Taiyuan St., Jhubei City,
5 * Hsinchu County 302,
6 * Taiwan, R.O.C.
7 *
8 * (c) Copyright 2002-2007, Ralink Technology, Inc.
9 *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 * This program is distributed in the hope that it will be useful, *
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
18 * GNU General Public License for more details. *
19 * *
20 * You should have received a copy of the GNU General Public License *
21 * along with this program; if not, write to the *
22 * Free Software Foundation, Inc., *
23 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
24 * *
25 *************************************************************************
26
27 Module Name:
28 spectrum_def.h
29
30 Abstract:
31 Handle association related requests either from WSTA or from local MLME
32
33 Revision History:
34 Who When What
35 --------- ---------- ----------------------------------------------
36 Fonchi Wu 2008 created for 802.11h
37 */
38
39#ifndef __SPECTRUM_DEF_H__
40#define __SPECTRUM_DEF_H__
41
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020042#define MAX_MEASURE_REQ_TAB_SIZE 32
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070043#define MAX_HASH_MEASURE_REQ_TAB_SIZE MAX_MEASURE_REQ_TAB_SIZE
44
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020045#define MAX_TPC_REQ_TAB_SIZE 32
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070046#define MAX_HASH_TPC_REQ_TAB_SIZE MAX_TPC_REQ_TAB_SIZE
47
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080048#define MIN_RCV_PWR 100 /* Negative value ((dBm) */
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070049
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080050#define TPC_REQ_AGE_OUT 500 /* ms */
51#define MQ_REQ_AGE_OUT 500 /* ms */
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070052
53#define TPC_DIALOGTOKEN_HASH_INDEX(_DialogToken) ((_DialogToken) % MAX_HASH_TPC_REQ_TAB_SIZE)
54#define MQ_DIALOGTOKEN_HASH_INDEX(_DialogToken) ((_DialogToken) % MAX_MEASURE_REQ_TAB_SIZE)
55
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080056typedef struct _MEASURE_REQ_ENTRY {
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070057 struct _MEASURE_REQ_ENTRY *pNext;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080058 unsigned long lastTime;
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080059 BOOLEAN Valid;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080060 u8 DialogToken;
61 u8 MeasureDialogToken[3]; /* 0:basic measure, 1: CCA measure, 2: RPI_Histogram measure. */
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070062} MEASURE_REQ_ENTRY, *PMEASURE_REQ_ENTRY;
63
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080064typedef struct _MEASURE_REQ_TAB {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080065 u8 Size;
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070066 PMEASURE_REQ_ENTRY Hash[MAX_HASH_MEASURE_REQ_TAB_SIZE];
67 MEASURE_REQ_ENTRY Content[MAX_MEASURE_REQ_TAB_SIZE];
68} MEASURE_REQ_TAB, *PMEASURE_REQ_TAB;
69
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080070typedef struct _TPC_REQ_ENTRY {
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070071 struct _TPC_REQ_ENTRY *pNext;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080072 unsigned long lastTime;
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070073 BOOLEAN Valid;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080074 u8 DialogToken;
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070075} TPC_REQ_ENTRY, *PTPC_REQ_ENTRY;
76
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080077typedef struct _TPC_REQ_TAB {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080078 u8 Size;
Greg Kroah-Hartman91980992008-10-28 14:48:09 -070079 PTPC_REQ_ENTRY Hash[MAX_HASH_TPC_REQ_TAB_SIZE];
80 TPC_REQ_ENTRY Content[MAX_TPC_REQ_TAB_SIZE];
81} TPC_REQ_TAB, *PTPC_REQ_TAB;
82
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020083/* The regulatory information */
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080084typedef struct _DOT11_CHANNEL_SET {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080085 u8 NumberOfChannels;
86 u8 MaxTxPwr;
87 u8 ChannelList[16];
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020088} DOT11_CHANNEL_SET, *PDOT11_CHANNEL_SET;
89
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -080090typedef struct _DOT11_REGULATORY_INFORMATION {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -080091 u8 RegulatoryClass;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020092 DOT11_CHANNEL_SET ChannelSet;
93} DOT11_REGULATORY_INFORMATION, *PDOT11_REGULATORY_INFORMATION;
94
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +020095#define RM_TPC_REQ 0
96#define RM_MEASURE_REQ 1
97
98#define RM_BASIC 0
99#define RM_CCA 1
100#define RM_RPI_HISTOGRAM 2
101#define RM_CH_LOAD 3
102#define RM_NOISE_HISTOGRAM 4
103
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800104typedef struct PACKED _TPC_REPORT_INFO {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800105 u8 TxPwr;
106 u8 LinkMargin;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200107} TPC_REPORT_INFO, *PTPC_REPORT_INFO;
108
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800109typedef struct PACKED _CH_SW_ANN_INFO {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800110 u8 ChSwMode;
111 u8 Channel;
112 u8 ChSwCnt;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200113} CH_SW_ANN_INFO, *PCH_SW_ANN_INFO;
114
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800115typedef union PACKED _MEASURE_REQ_MODE {
116 struct PACKED {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800117 u8 Parallel:1;
118 u8 Enable:1;
119 u8 Request:1;
120 u8 Report:1;
121 u8 DurationMandatory:1;
122 u8:3;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200123 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800124 u8 word;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200125} MEASURE_REQ_MODE, *PMEASURE_REQ_MODE;
126
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800127typedef struct PACKED _MEASURE_REQ {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800128 u8 ChNum;
129 u64 MeasureStartTime;
130 u16 MeasureDuration;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200131} MEASURE_REQ, *PMEASURE_REQ;
132
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800133typedef struct PACKED _MEASURE_REQ_INFO {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800134 u8 Token;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200135 MEASURE_REQ_MODE ReqMode;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800136 u8 ReqType;
137 u8 Oct[0];
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200138} MEASURE_REQ_INFO, *PMEASURE_REQ_INFO;
139
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800140typedef union PACKED _MEASURE_BASIC_REPORT_MAP {
141 struct PACKED {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800142 u8 BSS:1;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200143
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800144 u8 OfdmPreamble:1;
145 u8 UnidentifiedSignal:1;
146 u8 Radar:1;
147 u8 Unmeasure:1;
148 u8 Rev:3;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200149 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800150 u8 word;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200151} MEASURE_BASIC_REPORT_MAP, *PMEASURE_BASIC_REPORT_MAP;
152
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800153typedef struct PACKED _MEASURE_BASIC_REPORT {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800154 u8 ChNum;
155 u64 MeasureStartTime;
156 u16 MeasureDuration;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200157 MEASURE_BASIC_REPORT_MAP Map;
158} MEASURE_BASIC_REPORT, *PMEASURE_BASIC_REPORT;
159
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800160typedef struct PACKED _MEASURE_CCA_REPORT {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800161 u8 ChNum;
162 u64 MeasureStartTime;
163 u16 MeasureDuration;
164 u8 CCA_Busy_Fraction;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200165} MEASURE_CCA_REPORT, *PMEASURE_CCA_REPORT;
166
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800167typedef struct PACKED _MEASURE_RPI_REPORT {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800168 u8 ChNum;
169 u64 MeasureStartTime;
170 u16 MeasureDuration;
171 u8 RPI_Density[8];
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200172} MEASURE_RPI_REPORT, *PMEASURE_RPI_REPORT;
173
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800174typedef union PACKED _MEASURE_REPORT_MODE {
175 struct PACKED {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800176 u8 Late:1;
177 u8 Incapable:1;
178 u8 Refused:1;
179 u8 Rev:5;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200180 } field;
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800181 u8 word;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200182} MEASURE_REPORT_MODE, *PMEASURE_REPORT_MODE;
183
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800184typedef struct PACKED _MEASURE_REPORT_INFO {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800185 u8 Token;
186 u8 ReportMode;
187 u8 ReportType;
188 u8 Octect[0];
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200189} MEASURE_REPORT_INFO, *PMEASURE_REPORT_INFO;
190
Bartlomiej Zolnierkiewicz52b81c82009-12-11 12:23:14 -0800191typedef struct PACKED _QUIET_INFO {
Bartlomiej Zolnierkiewicz51126de2009-12-11 12:23:15 -0800192 u8 QuietCnt;
193 u8 QuietPeriod;
194 u16 QuietDuration;
195 u16 QuietOffset;
Bartlomiej Zolnierkiewiczca97b832009-09-22 20:44:07 +0200196} QUIET_INFO, *PQUIET_INFO;
197
Bartlomiej Zolnierkiewiczcc277062009-12-11 12:23:15 -0800198#endif /* __SPECTRUM_DEF_H__ // */