Merge branch 'serge-next-1' of git://git.kernel.org/pub/scm/linux/kernel/git/sergeh...
[deliverable/linux.git] / drivers / staging / vt6656 / card.h
CommitLineData
92b96797
FB
1/*
2 * Copyright (c) 1996, 2003 VIA Networking Technologies, Inc.
3 * All rights reserved.
4 *
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.
9 *
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.
14 *
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.
18 *
19 * File: card.h
20 *
21 * Purpose: Provide functions to setup NIC operation mode
22 *
23 * Author: Tevin Chen
24 *
25 * Date: May 21, 1996
26 *
27 */
28
92b96797
FB
29#ifndef __CARD_H__
30#define __CARD_H__
dd0a774f 31#include "device.h"
92b96797 32
6593dfac 33/* init card type */
92b96797
FB
34
35typedef enum _CARD_PHY_TYPE {
6593dfac 36 PHY_TYPE_AUTO = 0,
92b96797
FB
37 PHY_TYPE_11B,
38 PHY_TYPE_11G,
39 PHY_TYPE_11A
193a823c 40} CARD_PHY_TYPE, *PCARD_PHY_TYPE;
92b96797 41
92b96797 42#define CB_MAX_CHANNEL_24G 14
6593dfac 43#define CB_MAX_CHANNEL_5G 42 /* add channel9(5045MHz), 41==>42 */
92b96797
FB
44#define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G+CB_MAX_CHANNEL_5G)
45
dd0a774f 46struct vnt_private;
92b96797 47
dd0a774f 48void CARDbSetMediaChannel(struct vnt_private *pDevice, u32 uConnectionChannel);
652d0f00 49void CARDvSetRSPINF(struct vnt_private *, u8);
5ebc46d6 50void vUpdateIFS(struct vnt_private *);
dcce9e0b 51void CARDvUpdateBasicTopRate(struct vnt_private *);
6db0deae 52void CARDbAddBasicRate(struct vnt_private *, u16);
dd0a774f
MP
53int CARDbIsOFDMinBasicRate(struct vnt_private *pDevice);
54void CARDvAdjustTSF(struct vnt_private *pDevice, u8 byRxRate,
7c65fa2a 55 u64 qwBSSTimestamp, u64 qwLocalTSF);
dfdcc425
AM
56bool CARDbGetCurrentTSF(struct vnt_private *pDevice, u64 *pqwCurrTSF);
57bool CARDbClearCurrentTSF(struct vnt_private *pDevice);
3eaca0d2 58void CARDvSetFirstNextTBTT(struct vnt_private *pDevice, u16 wBeaconInterval);
dd0a774f 59void CARDvUpdateNextTBTT(struct vnt_private *pDevice, u64 qwTSF,
3eaca0d2
AM
60 u16 wBeaconInterval);
61u64 CARDqGetNextTBTT(u64 qwTSF, u16 wBeaconInterval);
b902fbfe 62u64 CARDqGetTSFOffset(u8 byRxRate, u64 qwTSF1, u64 qwTSF2);
dd0a774f
MP
63int CARDbRadioPowerOff(struct vnt_private *pDevice);
64int CARDbRadioPowerOn(struct vnt_private *pDevice);
65u8 CARDbyGetPktType(struct vnt_private *pDevice);
66void CARDvSetBSSMode(struct vnt_private *pDevice);
92b96797 67
e7b07d1d 68#endif /* __CARD_H__ */
This page took 0.456404 seconds and 5 git commands to generate.