]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/staging/vt6656/card.h
Merge branch 'turbostat' of git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux
[mirror_ubuntu-artful-kernel.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 *
92b96797
FB
15 *
16 * File: card.h
17 *
18 * Purpose: Provide functions to setup NIC operation mode
19 *
20 * Author: Tevin Chen
21 *
22 * Date: May 21, 1996
23 *
24 */
25
92b96797
FB
26#ifndef __CARD_H__
27#define __CARD_H__
dd0a774f 28#include "device.h"
92b96797 29
6593dfac 30/* init card type */
92b96797 31
dbf0a03b
PST
32#define CB_MAX_CHANNEL_24G 14
33#define CB_MAX_CHANNEL_5G 42 /* add channel9(5045MHz), 41==>42 */
34#define CB_MAX_CHANNEL (CB_MAX_CHANNEL_24G + CB_MAX_CHANNEL_5G)
92b96797 35
dd0a774f 36struct vnt_private;
92b96797 37
084fc8f3 38void vnt_set_channel(struct vnt_private *, u32);
1a792943 39void vnt_set_rspinf(struct vnt_private *, u8);
c7ee9eeb 40void vnt_update_ifs(struct vnt_private *);
47203c49 41void vnt_update_top_rates(struct vnt_private *);
cfa4d8d2 42int vnt_ofdm_min_rate(struct vnt_private *);
14c68c56 43void vnt_adjust_tsf(struct vnt_private *, u8, u64, u64);
4a9f4c65 44bool vnt_get_current_tsf(struct vnt_private *, u64 *);
dba066e9 45bool vnt_clear_current_tsf(struct vnt_private *);
6964cd12 46void vnt_reset_next_tbtt(struct vnt_private *, u16);
88ec2f7e 47void vnt_update_next_tbtt(struct vnt_private *, u64, u16);
75ef1b51 48u64 vnt_get_next_tbtt(u64, u16);
ecbc0a1e 49u64 vnt_get_tsf_offset(u8 byRxRate, u64 qwTSF1, u64 qwTSF2);
fa26e0bd 50int vnt_radio_power_off(struct vnt_private *);
8a5e6c8c 51int vnt_radio_power_on(struct vnt_private *);
e809c96e 52u8 vnt_get_pkt_type(struct vnt_private *);
bc240f54 53void vnt_set_bss_mode(struct vnt_private *);
92b96797 54
e7b07d1d 55#endif /* __CARD_H__ */