RT-AC56 3.0.0.4.374.37 core
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / staging / vt6655 / card.h
blobc699e19a079290414e5eb18c8cf929a669ba5fc2
1 /*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
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.
19 * File: card.h
21 * Purpose: Provide functions to setup NIC operation mode
23 * Author: Tevin Chen
25 * Date: May 21, 1996
29 #ifndef __CARD_H__
30 #define __CARD_H__
32 #include "ttype.h"
33 #include <linux/types.h>
35 /*--------------------- Export Definitions -------------------------*/
37 // Loopback mode
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 {
56 PHY_TYPE_AUTO,
57 PHY_TYPE_11B,
58 PHY_TYPE_11G,
59 PHY_TYPE_11A
60 } CARD_PHY_TYPE, *PCARD_PHY_TYPE;
62 typedef enum _CARD_PKT_TYPE {
63 PKT_TYPE_802_11_BCN,
64 PKT_TYPE_802_11_MNG,
65 PKT_TYPE_802_11_DATA,
66 PKT_TYPE_802_11_ALL
67 } CARD_PKT_TYPE, *PCARD_PKT_TYPE;
69 typedef enum _CARD_STATUS_TYPE {
70 CARD_STATUS_MEDIA_CONNECT,
71 CARD_STATUS_MEDIA_DISCONNECT,
72 CARD_STATUS_PMKID
73 } CARD_STATUS_TYPE, *PCARD_STATUS_TYPE;
75 typedef enum _CARD_OP_MODE {
76 OP_MODE_INFRASTRUCTURE,
77 OP_MODE_ADHOC,
78 OP_MODE_AP,
79 OP_MODE_UNKNOWN
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);
107 bool CARDbRadioPowerOff(void *pDeviceHandler);
108 bool CARDbRadioPowerOn(void *pDeviceHandler);
109 //bool CARDbSendPacket(void *pDeviceHandler, void *pPacket, CARD_PKT_TYPE ePktType, unsigned int uLength);
110 bool CARDbIsShortPreamble(void *pDeviceHandler);
111 bool CARDbIsShorSlotTime(void *pDeviceHandler);
112 bool CARDbSetPhyParameter(void *pDeviceHandler, CARD_PHY_TYPE ePHYType, unsigned short wCapInfo, unsigned char byERPField, void *pvSupportRateIEs, void *pvExtSupportRateIEs);
113 bool CARDbUpdateTSF(void *pDeviceHandler, unsigned char byRxRate, QWORD qwBSSTimestamp, QWORD qwLocalTSF);
114 bool CARDbStopTxPacket(void *pDeviceHandler, CARD_PKT_TYPE ePktType);
115 bool CARDbStartTxPacket(void *pDeviceHandler, CARD_PKT_TYPE ePktType);
116 bool CARDbSetBeaconPeriod(void *pDeviceHandler, unsigned short wBeaconInterval);
117 bool CARDbSetBSSID(void *pDeviceHandler, unsigned char *pbyBSSID, CARD_OP_MODE eOPMode);
119 bool
120 CARDbPowerDown(
121 void *pDeviceHandler
124 bool CARDbSetTxDataRate(
125 void *pDeviceHandler,
126 unsigned short wDataRate
130 bool CARDbRemoveKey (void *pDeviceHandler, unsigned char *pbyBSSID);
132 bool
133 CARDbAdd_PMKID_Candidate (
134 void *pDeviceHandler,
135 unsigned char *pbyBSSID,
136 bool bRSNCapExist,
137 unsigned short wRSNCap
140 void *
141 CARDpGetCurrentAddress (
142 void *pDeviceHandler
145 bool
146 CARDbStartMeasure (
147 void *pDeviceHandler,
148 void *pvMeasureEIDs,
149 unsigned int uNumOfMeasureEIDs
152 bool
153 CARDbChannelSwitch (
154 void *pDeviceHandler,
155 unsigned char byMode,
156 unsigned char byNewChannel,
157 unsigned char byCount
160 bool
161 CARDbSetQuiet (
162 void *pDeviceHandler,
163 bool bResetQuiet,
164 unsigned char byQuietCount,
165 unsigned char byQuietPeriod,
166 unsigned short wQuietDuration,
167 unsigned short wQuietOffset
170 bool
171 CARDbStartQuiet (
172 void *pDeviceHandler
175 void
176 CARDvSetPowerConstraint (
177 void *pDeviceHandler,
178 unsigned char byChannel,
179 char byPower
182 void
183 CARDvGetPowerCapability (
184 void *pDeviceHandler,
185 unsigned char *pbyMinPower,
186 unsigned char *pbyMaxPower
189 char
190 CARDbyGetTransmitPower (
191 void *pDeviceHandler
194 #endif // __CARD_H__