]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/staging/rt2860/chlist.h
4183c8b5a0236892879491cf8159bf8f51f12094
[net-next-2.6.git] / drivers / staging / rt2860 / chlist.h
1 /*
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         chlist.c
29
30         Abstract:
31
32         Revision History:
33         Who         When          What
34         --------    ----------    ----------------------------------------------
35         Fonchi Wu   2007-12-19    created
36 */
37
38 #ifndef __CHLIST_H__
39 #define __CHLIST_H__
40
41 #include "rtmp_type.h"
42 #include "rtmp_def.h"
43
44 #define ODOR                    0
45 #define IDOR                    1
46 #define BOTH                    2
47
48 #define BAND_5G         0
49 #define BAND_24G        1
50 #define BAND_BOTH       2
51
52 typedef struct _CH_DESP {
53         u8 FirstChannel;
54         u8 NumOfCh;
55         char MaxTxPwr;          /* dBm */
56         u8 Geography;   /* 0:out door, 1:in door, 2:both */
57         BOOLEAN DfsReq;         /* Dfs require, 0: No, 1: yes. */
58 } CH_DESP, *PCH_DESP;
59
60 typedef struct _CH_REGION {
61         u8 CountReg[3];
62         u8 DfsType;             /* 0: CE, 1: FCC, 2: JAP, 3:JAP_W53, JAP_W56 */
63         CH_DESP ChDesp[10];
64 } CH_REGION, *PCH_REGION;
65
66 extern CH_REGION ChRegion[];
67
68 typedef struct _CH_FREQ_MAP_ {
69         u16 channel;
70         u16 freqKHz;
71 } CH_FREQ_MAP;
72
73 extern CH_FREQ_MAP CH_HZ_ID_MAP[];
74 extern int CH_HZ_ID_MAP_NUM;
75
76 #define     MAP_CHANNEL_ID_TO_KHZ(_ch, _khz)                                    \
77                 do{                                                                                                     \
78                         int _chIdx;                                                                                     \
79                         for (_chIdx = 0; _chIdx < CH_HZ_ID_MAP_NUM; _chIdx++)\
80                         {                                                                                                       \
81                                 if ((_ch) == CH_HZ_ID_MAP[_chIdx].channel)                      \
82                                 {                                                                                               \
83                                         (_khz) = CH_HZ_ID_MAP[_chIdx].freqKHz * 1000;   \
84                                         break;                                                                          \
85                                 }                                                                                               \
86                         }                                                                                                       \
87                         if (_chIdx == CH_HZ_ID_MAP_NUM)                                 \
88                                 (_khz) = 2412000;                                                                       \
89             }while(0)
90
91 #define     MAP_KHZ_TO_CHANNEL_ID(_khz, _ch)                 \
92                 do{                                                                                                     \
93                         int _chIdx;                                                                                     \
94                         for (_chIdx = 0; _chIdx < CH_HZ_ID_MAP_NUM; _chIdx++)\
95                         {                                                                                                       \
96                                 if ((_khz) == CH_HZ_ID_MAP[_chIdx].freqKHz)                     \
97                                 {                                                                                               \
98                                         (_ch) = CH_HZ_ID_MAP[_chIdx].channel;                   \
99                                         break;                                                                          \
100                                 }                                                                                               \
101                         }                                                                                                       \
102                         if (_chIdx == CH_HZ_ID_MAP_NUM)                                 \
103                                 (_ch) = 1;                                                                                      \
104                 }while(0)
105
106 void BuildChannelListEx(IN PRTMP_ADAPTER pAd);
107
108 void BuildBeaconChList(IN PRTMP_ADAPTER pAd,
109                        u8 *pBuf, unsigned long *pBufLen);
110
111 void N_ChannelCheck(IN PRTMP_ADAPTER pAd);
112
113 void N_SetCenCh(IN PRTMP_ADAPTER pAd);
114
115 u8 GetCuntryMaxTxPwr(IN PRTMP_ADAPTER pAd, u8 channel);
116
117 #endif /* __CHLIST_H__ */