]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/staging/rt2860/chlist.h
Staging: rt28x0: run *.h files through Lindent
[net-next-2.6.git] / drivers / staging / rt2860 / chlist.h
CommitLineData
91980990
GKH
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
91980990
GKH
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
52typedef struct _CH_DESP {
53 UCHAR FirstChannel;
54 UCHAR NumOfCh;
52b81c89
BZ
55 CHAR MaxTxPwr; // dBm
56 UCHAR Geography; // 0:out door, 1:in door, 2:both
57 BOOLEAN DfsReq; // Dfs require, 0: No, 1: yes.
91980990
GKH
58} CH_DESP, *PCH_DESP;
59
60typedef struct _CH_REGION {
61 UCHAR CountReg[3];
52b81c89 62 UCHAR DfsType; // 0: CE, 1: FCC, 2: JAP, 3:JAP_W53, JAP_W56
91980990
GKH
63 CH_DESP ChDesp[10];
64} CH_REGION, *PCH_REGION;
65
ca97b838
BZ
66extern CH_REGION ChRegion[];
67
52b81c89
BZ
68typedef struct _CH_FREQ_MAP_ {
69 UINT16 channel;
70 UINT16 freqKHz;
71} CH_FREQ_MAP;
ca97b838
BZ
72
73extern CH_FREQ_MAP CH_HZ_ID_MAP[];
74extern int CH_HZ_ID_MAP_NUM;
75
ca97b838
BZ
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
52b81c89 106VOID BuildChannelListEx(IN PRTMP_ADAPTER pAd);
ca97b838 107
52b81c89
BZ
108VOID BuildBeaconChList(IN PRTMP_ADAPTER pAd,
109 OUT PUCHAR pBuf, OUT PULONG pBufLen);
ca97b838 110
52b81c89 111VOID N_ChannelCheck(IN PRTMP_ADAPTER pAd);
91980990 112
52b81c89 113VOID N_SetCenCh(IN PRTMP_ADAPTER pAd);
91980990 114
52b81c89 115UINT8 GetCuntryMaxTxPwr(IN PRTMP_ADAPTER pAd, IN UINT8 channel);
91980990 116
91980990 117#endif // __CHLIST_H__