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.
36 /* MIC HDR data header */
51 u16 packing
; /* packing to 48 bytes */
54 /* RsvTime buffer header */
55 struct vnt_rrv_time_rts
{
64 struct vnt_rrv_time_cts
{
71 struct vnt_rrv_time_ab
{
77 struct vnt_tx_datahead_g
{
78 struct vnt_phy_field b
;
79 struct vnt_phy_field a
;
86 struct vnt_tx_datahead_g_fb
{
87 struct vnt_phy_field b
;
88 struct vnt_phy_field a
;
97 struct vnt_tx_datahead_ab
{
98 struct vnt_phy_field ab
;
103 struct vnt_tx_datahead_a_fb
{
104 struct vnt_phy_field a
;
111 /* RTS buffer header */
113 struct vnt_phy_field b
;
114 struct vnt_phy_field a
;
119 struct ieee80211_rts data
;
122 struct vnt_rts_g_fb
{
123 struct vnt_phy_field b
;
124 struct vnt_phy_field a
;
129 u16 wRTSDuration_ba_f0
;
130 u16 wRTSDuration_aa_f0
;
131 u16 wRTSDuration_ba_f1
;
132 u16 wRTSDuration_aa_f1
;
133 struct ieee80211_rts data
;
137 struct vnt_phy_field ab
;
140 struct ieee80211_rts data
;
143 struct vnt_rts_a_fb
{
144 struct vnt_phy_field a
;
149 struct ieee80211_rts data
;
152 /* CTS buffer header */
154 struct vnt_phy_field b
;
157 struct ieee80211_cts data
;
162 struct vnt_phy_field b
;
165 u16 wCTSDuration_ba_f0
;
166 u16 wCTSDuration_ba_f1
;
167 struct ieee80211_cts data
;
171 union vnt_tx_data_head
{
173 struct vnt_rts_g rts_g
;
174 struct vnt_rts_g_fb rts_g_fb
;
176 struct vnt_rts_ab rts_ab
;
177 struct vnt_rts_a_fb rts_a_fb
;
179 struct vnt_cts cts_g
;
180 struct vnt_cts_fb cts_g_fb
;
183 struct vnt_tx_buffer
{
194 struct vnt_beacon_buffer
{
202 void vDMA0_tx_80211(struct vnt_private
*, struct sk_buff
*skb
);
203 int nsDMA_tx_packet(struct vnt_private
*, u32 uDMAIdx
, struct sk_buff
*skb
);
204 CMD_STATUS
csMgmt_xmit(struct vnt_private
*, struct vnt_tx_mgmt
*);
205 CMD_STATUS
csBeacon_xmit(struct vnt_private
*, struct vnt_tx_mgmt
*);
206 int bRelayPacketSend(struct vnt_private
*, u8
*pbySkbData
, u32 uDataLen
,
209 #endif /* __RXTX_H__ */