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
33 #include <linux/types.h>
35 /*--------------------- Export Definitions -------------------------*/
39 // LOBYTE is MAC LB mode, HIBYTE is MII LB mode
40 #define CARD_LB_NONE MAKEWORD(MAC_LB_NONE, 0)
41 #define CARD_LB_MAC MAKEWORD(MAC_LB_INTERNAL, 0) // PHY must ISO, avoid MAC loopback packet go out
42 #define CARD_LB_PHY MAKEWORD(MAC_LB_EXT, 0)
45 #define DEFAULT_MSDU_LIFETIME 512 // ms
46 #define DEFAULT_MSDU_LIFETIME_RES_64us 8000 // 64us
48 #define DEFAULT_MGN_LIFETIME 8 // ms
49 #define DEFAULT_MGN_LIFETIME_RES_64us 125 // 64us
51 #define CB_MAX_CHANNEL_24G 14
52 #define CB_MAX_CHANNEL_5G 42 //[20050104] add channel9(5045MHz), 41==>42
53 #define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G+CB_MAX_CHANNEL_5G)
55 typedef enum _CARD_PHY_TYPE
{
60 } CARD_PHY_TYPE
, *PCARD_PHY_TYPE
;
62 typedef enum _CARD_PKT_TYPE
{
67 } CARD_PKT_TYPE
, *PCARD_PKT_TYPE
;
69 typedef enum _CARD_STATUS_TYPE
{
70 CARD_STATUS_MEDIA_CONNECT
,
71 CARD_STATUS_MEDIA_DISCONNECT
,
73 } CARD_STATUS_TYPE
, *PCARD_STATUS_TYPE
;
75 typedef enum _CARD_OP_MODE
{
76 OP_MODE_INFRASTRUCTURE
,
80 } CARD_OP_MODE
, *PCARD_OP_MODE
;
84 /*--------------------- Export Classes ----------------------------*/
86 /*--------------------- Export Variables --------------------------*/
88 /*--------------------- Export Functions --------------------------*/
90 void CARDvSetRSPINF(void *pDeviceHandler
, CARD_PHY_TYPE ePHYType
);
91 void vUpdateIFS(void *pDeviceHandler
);
92 void CARDvUpdateBasicTopRate(void *pDeviceHandler
);
93 bool CARDbAddBasicRate(void *pDeviceHandler
, unsigned short wRateIdx
);
94 bool CARDbIsOFDMinBasicRate(void *pDeviceHandler
);
95 void CARDvSetLoopbackMode(unsigned long dwIoBase
, unsigned short wLoopbackMode
);
96 bool CARDbSoftwareReset(void *pDeviceHandler
);
97 void CARDvSetFirstNextTBTT(unsigned long dwIoBase
, unsigned short wBeaconInterval
);
98 void CARDvUpdateNextTBTT(unsigned long dwIoBase
, QWORD qwTSF
, unsigned short wBeaconInterval
);
99 bool CARDbGetCurrentTSF(unsigned long dwIoBase
, PQWORD pqwCurrTSF
);
100 QWORD
CARDqGetNextTBTT(QWORD qwTSF
, unsigned short wBeaconInterval
);
101 QWORD
CARDqGetTSFOffset(unsigned char byRxRate
, QWORD qwTSF1
, QWORD qwTSF2
);
102 bool CARDbSetTxPower(void *pDeviceHandler
, unsigned long ulTxPower
);
103 unsigned char CARDbyGetPktType(void *pDeviceHandler
);
104 void CARDvSafeResetTx(void *pDeviceHandler
);
105 void CARDvSafeResetRx(void *pDeviceHandler
);
108 bool CARDbRadioPowerOff(void *pDeviceHandler
);
109 bool CARDbRadioPowerOn(void *pDeviceHandler
);
110 //bool CARDbSendPacket(void *pDeviceHandler, void *pPacket, CARD_PKT_TYPE ePktType, unsigned int uLength);
111 bool CARDbIsShortPreamble(void *pDeviceHandler
);
112 bool CARDbIsShorSlotTime(void *pDeviceHandler
);
113 bool CARDbSetPhyParameter(void *pDeviceHandler
, CARD_PHY_TYPE ePHYType
, unsigned short wCapInfo
, unsigned char byERPField
, void *pvSupportRateIEs
, void *pvExtSupportRateIEs
);
114 bool CARDbUpdateTSF(void *pDeviceHandler
, unsigned char byRxRate
, QWORD qwBSSTimestamp
, QWORD qwLocalTSF
);
115 bool CARDbStopTxPacket(void *pDeviceHandler
, CARD_PKT_TYPE ePktType
);
116 bool CARDbStartTxPacket(void *pDeviceHandler
, CARD_PKT_TYPE ePktType
);
117 bool CARDbSetBeaconPeriod(void *pDeviceHandler
, unsigned short wBeaconInterval
);
118 bool CARDbSetBSSID(void *pDeviceHandler
, unsigned char *pbyBSSID
, CARD_OP_MODE eOPMode
);
125 bool CARDbSetTxDataRate(
126 void *pDeviceHandler
,
127 unsigned short wDataRate
131 bool CARDbRemoveKey (void *pDeviceHandler
, unsigned char *pbyBSSID
);
134 CARDbAdd_PMKID_Candidate (
135 void *pDeviceHandler
,
136 unsigned char *pbyBSSID
,
138 unsigned short wRSNCap
142 CARDpGetCurrentAddress (
148 void *pDeviceHandler
,
150 unsigned int uNumOfMeasureEIDs
155 void *pDeviceHandler
,
156 unsigned char byMode
,
157 unsigned char byNewChannel
,
158 unsigned char byCount
163 void *pDeviceHandler
,
165 unsigned char byQuietCount
,
166 unsigned char byQuietPeriod
,
167 unsigned short wQuietDuration
,
168 unsigned short wQuietOffset
177 CARDvSetPowerConstraint (
178 void *pDeviceHandler
,
179 unsigned char byChannel
,
184 CARDvGetPowerCapability (
185 void *pDeviceHandler
,
186 unsigned char *pbyMinPower
,
187 unsigned char *pbyMaxPower
191 CARDbyGetTransmitPower (