2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 * Purpose: Provide functions to setup NIC operation mode
34 /*--------------------- Export Definitions -------------------------*/
36 /*--------------------- Export Classes ----------------------------*/
40 typedef enum _CARD_PHY_TYPE
{
45 } CARD_PHY_TYPE
, *PCARD_PHY_TYPE
;
47 typedef enum _CARD_OP_MODE
{
48 OP_MODE_INFRASTRUCTURE
= 0,
52 } CARD_OP_MODE
, *PCARD_OP_MODE
;
54 #define CB_MAX_CHANNEL_24G 14
55 /* #define CB_MAX_CHANNEL_5G 24 */
56 #define CB_MAX_CHANNEL_5G 42 /* add channel9(5045MHz), 41==>42 */
57 #define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G+CB_MAX_CHANNEL_5G)
59 /*--------------------- Export Variables --------------------------*/
61 /*--------------------- Export Functions --------------------------*/
63 BOOL
CARDbSetMediaChannel(void *pDeviceHandler
,
64 unsigned int uConnectionChannel
);
65 void CARDvSetRSPINF(void *pDeviceHandler
, BYTE byBBType
);
66 void vUpdateIFS(void *pDeviceHandler
);
67 void CARDvUpdateBasicTopRate(void *pDeviceHandler
);
68 BOOL
CARDbAddBasicRate(void *pDeviceHandler
, WORD wRateIdx
);
69 BOOL
CARDbIsOFDMinBasicRate(void *pDeviceHandler
);
70 void CARDvAdjustTSF(void *pDeviceHandler
, BYTE byRxRate
,
71 QWORD qwBSSTimestamp
, QWORD qwLocalTSF
);
72 BOOL
CARDbGetCurrentTSF(void *pDeviceHandler
, PQWORD pqwCurrTSF
);
73 BOOL
CARDbClearCurrentTSF(void *pDeviceHandler
);
74 void CARDvSetFirstNextTBTT(void *pDeviceHandler
, WORD wBeaconInterval
);
75 void CARDvUpdateNextTBTT(void *pDeviceHandler
, QWORD qwTSF
,
76 WORD wBeaconInterval
);
77 QWORD
CARDqGetNextTBTT(QWORD qwTSF
, WORD wBeaconInterval
);
78 QWORD
CARDqGetTSFOffset(BYTE byRxRate
, QWORD qwTSF1
, QWORD qwTSF2
);
79 BOOL
CARDbRadioPowerOff(void *pDeviceHandler
);
80 BOOL
CARDbRadioPowerOn(void *pDeviceHandler
);
81 BYTE
CARDbyGetPktType(void *pDeviceHandler
);
82 void CARDvSetBSSMode(void *pDeviceHandler
);
84 BOOL
CARDbChannelSwitch(void *pDeviceHandler
,
89 #endif /* __CARD_H__ */