]> Pileus Git - ~andy/linux/blob - drivers/staging/rtl8188eu/include/xmit_osdep.h
Merge branch 'for-linus' of git://git.linaro.org/people/rmk/linux-arm
[~andy/linux] / drivers / staging / rtl8188eu / include / xmit_osdep.h
1 /******************************************************************************
2  *
3  * Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of version 2 of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
17  *
18  *
19  ******************************************************************************/
20 #ifndef __XMIT_OSDEP_H_
21 #define __XMIT_OSDEP_H_
22
23 #include <osdep_service.h>
24 #include <drv_types.h>
25
26 struct pkt_file {
27         struct sk_buff *pkt;
28         size_t pkt_len;  /* the remainder length of the open_file */
29         unsigned char *cur_buffer;
30         u8 *buf_start;
31         u8 *cur_addr;
32         size_t buf_len;
33 };
34
35 extern int rtw_ht_enable;
36 extern int rtw_cbw40_enable;
37 extern int rtw_ampdu_enable;/* for enable tx_ampdu */
38
39 #define NR_XMITFRAME    256
40
41 struct xmit_priv;
42 struct pkt_attrib;
43 struct sta_xmit_priv;
44 struct xmit_frame;
45 struct xmit_buf;
46
47 int rtw_xmit_entry(struct sk_buff *pkt, struct  net_device *pnetdev);
48
49 void rtw_os_xmit_schedule(struct adapter *padapter);
50
51 int rtw_os_xmit_resource_alloc(struct adapter *padapter,
52                                struct xmit_buf *pxmitbuf, u32 alloc_sz);
53 void rtw_os_xmit_resource_free(struct adapter *padapter,
54                                struct xmit_buf *pxmitbuf, u32 free_sz);
55
56 void rtw_set_tx_chksum_offload(struct sk_buff *pkt, struct pkt_attrib *pattrib);
57
58 uint rtw_remainder_len(struct pkt_file *pfile);
59 void _rtw_open_pktfile(struct sk_buff *pkt, struct pkt_file *pfile);
60 uint _rtw_pktfile_read(struct pkt_file *pfile, u8 *rmem, uint rlen);
61 int rtw_endofpktfile(struct pkt_file *pfile);
62
63 void rtw_os_pkt_complete(struct adapter *padapter, struct sk_buff *pkt);
64 void rtw_os_xmit_complete(struct adapter *padapter,
65                           struct xmit_frame *pxframe);
66
67 #endif /* __XMIT_OSDEP_H_ */