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
32 #include <linux/types.h>
33 #include <linux/nl80211.h>
38 * LOBYTE is MAC LB mode, HIBYTE is MII LB mode
40 #define CARD_LB_NONE MAKEWORD(MAC_LB_NONE, 0)
41 /* PHY must ISO, avoid MAC loopback packet go out */
42 #define CARD_LB_MAC MAKEWORD(MAC_LB_INTERNAL, 0)
43 #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
53 #define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G+CB_MAX_CHANNEL_5G)
55 typedef enum _CARD_PKT_TYPE
{
60 } CARD_PKT_TYPE
, *PCARD_PKT_TYPE
;
62 typedef enum _CARD_STATUS_TYPE
{
63 CARD_STATUS_MEDIA_CONNECT
,
64 CARD_STATUS_MEDIA_DISCONNECT
,
66 } CARD_STATUS_TYPE
, *PCARD_STATUS_TYPE
;
70 void CARDvSetRSPINF(struct vnt_private
*, u8
);
71 void CARDvUpdateBasicTopRate(struct vnt_private
*);
72 bool CARDbIsOFDMinBasicRate(struct vnt_private
*);
73 void CARDvSetLoopbackMode(struct vnt_private
*, unsigned short wLoopbackMode
);
74 bool CARDbSoftwareReset(struct vnt_private
*);
75 void CARDvSetFirstNextTBTT(struct vnt_private
*,
76 unsigned short wBeaconInterval
);
77 void CARDvUpdateNextTBTT(struct vnt_private
*, u64 qwTSF
,
78 unsigned short wBeaconInterval
);
79 bool CARDbGetCurrentTSF(struct vnt_private
*, u64
*pqwCurrTSF
);
80 u64
CARDqGetNextTBTT(u64 qwTSF
, unsigned short wBeaconInterval
);
81 u64
CARDqGetTSFOffset(unsigned char byRxRate
, u64 qwTSF1
, u64 qwTSF2
);
82 unsigned char CARDbyGetPktType(struct vnt_private
*);
83 void CARDvSafeResetTx(struct vnt_private
*);
84 void CARDvSafeResetRx(struct vnt_private
*);
85 bool CARDbRadioPowerOff(struct vnt_private
*);
86 bool CARDbRadioPowerOn(struct vnt_private
*);
87 bool CARDbSetPhyParameter(struct vnt_private
*, u8
);
88 bool CARDbUpdateTSF(struct vnt_private
*, unsigned char byRxRate
,
90 bool CARDbSetBeaconPeriod(struct vnt_private
*, unsigned short wBeaconInterval
);
92 #endif /* __CARD_H__ */