]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blame - drivers/staging/vt6655/rxtx.h
Merge git://git.kernel.org/pub/scm/linux/kernel/git/mason/btrfs-unstable
[mirror_ubuntu-kernels.git] / drivers / staging / vt6655 / rxtx.h
CommitLineData
5449c685
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 *
612822f5 19 * File: rxtx.h
5449c685
FB
20 *
21 * Purpose:
22 *
23 * Author: Jerry Chen
24 *
25 * Date: Jun. 27, 2002
26 *
27 */
28
5449c685
FB
29#ifndef __RXTX_H__
30#define __RXTX_H__
31
5449c685 32#include "ttype.h"
5449c685 33#include "device.h"
5449c685 34#include "wcmd.h"
5449c685
FB
35
36/*--------------------- Export Definitions -------------------------*/
37
5449c685
FB
38/*--------------------- Export Variables --------------------------*/
39
40/*--------------------- Export Functions --------------------------*/
41
5449c685 42/*
fe4f34bd
CC
43void
44vGenerateMACHeader(PSDevice pDevice, unsigned long dwTxBufferAddr, unsigned char *pbySkbData,
7b6a0013 45 unsigned int cbPacketSize, bool bDMA0Used, unsigned int *pcbHeadSize,
fe4f34bd
CC
46 unsigned int *pcbAppendPayload);
47
48void
49vProcessRxMACHeader(PSDevice pDevice, unsigned long dwRxBufferAddr, unsigned int cbPacketSize,
7b6a0013 50 bool bIsWEP, unsigned int *pcbHeadSize);
5449c685
FB
51*/
52
53
6b35b7b3 54void
5449c685 55vGenerateMACHeader (
3a215e0f 56 PSDevice pDevice,
2989e96f 57 unsigned char *pbyBufferAddr,
2986db5f 58 unsigned short wDuration,
3a215e0f 59 PSEthernetHeader psEthHeader,
7b6a0013 60 bool bNeedEncrypt,
2986db5f 61 unsigned short wFragType,
b6e95cd5
CC
62 unsigned int uDMAIdx,
63 unsigned int uFragIdx
5449c685
FB
64 );
65
66
b6e95cd5 67unsigned int
5449c685 68cbGetFragCount(
3a215e0f
CC
69 PSDevice pDevice,
70 PSKeyItem pTransmitKey,
b6e95cd5 71 unsigned int cbFrameBodySize,
3a215e0f 72 PSEthernetHeader psEthHeader
5449c685
FB
73 );
74
75
6b35b7b3 76void
fe4f34bd 77vGenerateFIFOHeader(PSDevice pDevice, unsigned char byPktTyp, unsigned char *pbyTxBufferAddr,
7b6a0013 78 bool bNeedEncrypt, unsigned int cbPayloadSize, unsigned int uDMAIdx, PSTxDesc pHeadTD,
fe4f34bd
CC
79 PSEthernetHeader psEthHeader, unsigned char *pPacket, PSKeyItem pTransmitKey,
80 unsigned int uNodeIndex, unsigned int *puMACfragNum, unsigned int *pcbHeaderSize);
5449c685
FB
81
82
2989e96f 83void vDMA0_tx_80211(PSDevice pDevice, struct sk_buff *skb, unsigned char *pbMPDU, unsigned int cbMPDULen);
5449c685
FB
84CMD_STATUS csMgmt_xmit(PSDevice pDevice, PSTxMgmtPacket pPacket);
85CMD_STATUS csBeacon_xmit(PSDevice pDevice, PSTxMgmtPacket pPacket);
86
5449c685 87#endif // __RXTX_H__