update version to v5.8.9_35085.20190919
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
||||
*
|
||||
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of version 2 of the GNU General Public License as
|
||||
* published by the Free Software Foundation.
|
||||
@@ -11,12 +11,7 @@
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
||||
*
|
||||
*
|
||||
******************************************************************************/
|
||||
*****************************************************************************/
|
||||
#ifndef __USB_OPS_H_
|
||||
#define __USB_OPS_H_
|
||||
|
||||
@@ -27,34 +22,20 @@
|
||||
#define REALTEK_USB_VENQT_CMD_IDX 0x00
|
||||
#define REALTEK_USB_IN_INT_EP_IDX 1
|
||||
|
||||
enum{
|
||||
enum {
|
||||
VENDOR_WRITE = 0x00,
|
||||
VENDOR_READ = 0x01,
|
||||
};
|
||||
#define ALIGNMENT_UNIT 16
|
||||
#define MAX_VENDOR_REQ_CMD_SIZE 254 //8188cu SIE Support
|
||||
#define MAX_USB_IO_CTL_SIZE (MAX_VENDOR_REQ_CMD_SIZE +ALIGNMENT_UNIT)
|
||||
#define MAX_VENDOR_REQ_CMD_SIZE 254 /* 8188cu SIE Support */
|
||||
#define MAX_USB_IO_CTL_SIZE (MAX_VENDOR_REQ_CMD_SIZE + ALIGNMENT_UNIT)
|
||||
|
||||
#ifdef PLATFORM_LINUX
|
||||
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12))
|
||||
#define rtw_usb_control_msg(dev, pipe, request, requesttype, value, index, data, size, timeout_ms) \
|
||||
usb_control_msg((dev), (pipe), (request), (requesttype), (value), (index), (data), (size), (timeout_ms))
|
||||
#define rtw_usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout_ms) \
|
||||
usb_bulk_msg((usb_dev), (pipe), (data), (len), (actual_length), (timeout_ms))
|
||||
#else
|
||||
#define rtw_usb_control_msg(dev, pipe, request, requesttype, value, index, data, size,timeout_ms) \
|
||||
usb_control_msg((dev), (pipe), (request), (requesttype), (value), (index), (data), (size), \
|
||||
((timeout_ms) == 0) ||((timeout_ms)*HZ/1000>0)?((timeout_ms)*HZ/1000):1)
|
||||
#define rtw_usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout_ms) \
|
||||
usb_bulk_msg((usb_dev), (pipe), (data), (len), (actual_length), \
|
||||
((timeout_ms) == 0) ||((timeout_ms)*HZ/1000>0)?((timeout_ms)*HZ/1000):1)
|
||||
#endif
|
||||
#include <usb_ops_linux.h>
|
||||
#endif //PLATFORM_LINUX
|
||||
#endif /* PLATFORM_LINUX */
|
||||
|
||||
#ifdef CONFIG_RTL8188E
|
||||
void rtl8188eu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8188eu_set_intf_ops(struct _io_ops *pops);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8188eu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
@@ -62,7 +43,6 @@ void interrupt_handler_8188eu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
|
||||
#if defined(CONFIG_RTL8812A) || defined(CONFIG_RTL8821A)
|
||||
void rtl8812au_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8812au_set_intf_ops(struct _io_ops *pops);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8812au(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
@@ -70,7 +50,6 @@ void interrupt_handler_8812au(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
|
||||
#ifdef CONFIG_RTL8814A
|
||||
void rtl8814au_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8814au_set_intf_ops(struct _io_ops *pops);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8814au(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
@@ -78,7 +57,6 @@ void interrupt_handler_8814au(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
|
||||
#ifdef CONFIG_RTL8192E
|
||||
void rtl8192eu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8192eu_set_intf_ops(struct _io_ops *pops);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8192eu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
@@ -87,24 +65,61 @@ void interrupt_handler_8192eu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
|
||||
#ifdef CONFIG_RTL8188F
|
||||
void rtl8188fu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8188fu_set_intf_ops(struct _io_ops *pops);
|
||||
void rtl8188fu_recv_tasklet(void *priv);
|
||||
void rtl8188fu_xmit_tasklet(void *priv);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8188fu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_RTL8188GTV
|
||||
void rtl8188gtvu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8188gtvu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_RTL8723B
|
||||
void rtl8723bu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8723bu_set_intf_ops(struct _io_ops *pops);
|
||||
void rtl8723bu_recv_tasklet(void *priv);
|
||||
void rtl8723bu_xmit_tasklet(void *priv);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8723bu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_RTL8703B
|
||||
void rtl8703bu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8703bu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif /* CONFIG_SUPPORT_USB_INT */
|
||||
#endif /* CONFIG_RTL8703B */
|
||||
|
||||
void usb_set_intf_ops(_adapter *padapter, struct _io_ops *pops);
|
||||
|
||||
#ifdef CONFIG_RTL8723D
|
||||
void rtl8723du_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8723du_set_intf_ops(struct _io_ops *pops);
|
||||
void rtl8723du_recv_tasklet(void *priv);
|
||||
void rtl8723du_xmit_tasklet(void *priv);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8723du(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif /* CONFIG_SUPPORT_USB_INT */
|
||||
#endif /* CONFIG_RTL8723D */
|
||||
|
||||
#ifdef CONFIG_RTL8710B
|
||||
void rtl8710bu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8710bu_set_intf_ops(struct _io_ops *pops);
|
||||
void rtl8710bu_recv_tasklet(void *priv);
|
||||
void rtl8710bu_xmit_tasklet(void *priv);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void interrupt_handler_8710bu(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif /* CONFIG_SUPPORT_USB_INT */
|
||||
#endif /* CONFIG_RTL8710B */
|
||||
|
||||
#ifdef CONFIG_RTL8192F
|
||||
void rtl8192fu_set_hw_type(struct dvobj_priv *pdvobj);
|
||||
void rtl8192fu_xmit_tasklet(void *priv);
|
||||
#ifdef CONFIG_SUPPORT_USB_INT
|
||||
void rtl8192fu_interrupt_handler(_adapter *padapter, u16 pkt_len, u8 *pbuf);
|
||||
#endif /* CONFIG_SUPPORT_USB_INT */
|
||||
#endif /* CONFIG_RTL8192F */
|
||||
|
||||
enum RTW_USB_SPEED {
|
||||
RTW_USB_SPEED_UNKNOWN = 0,
|
||||
@@ -117,23 +132,22 @@ enum RTW_USB_SPEED {
|
||||
#define IS_HIGH_SPEED_USB(Adapter) (adapter_to_dvobj(Adapter)->usb_speed == RTW_USB_SPEED_2)
|
||||
#define IS_SUPER_SPEED_USB(Adapter) (adapter_to_dvobj(Adapter)->usb_speed == RTW_USB_SPEED_3)
|
||||
|
||||
#define USB_SUPER_SPEED_BULK_SIZE 1024 // usb 3.0
|
||||
#define USB_HIGH_SPEED_BULK_SIZE 512 // usb 2.0
|
||||
#define USB_FULL_SPEED_BULK_SIZE 64 // usb 1.1
|
||||
#define USB_SUPER_SPEED_BULK_SIZE 1024 /* usb 3.0 */
|
||||
#define USB_HIGH_SPEED_BULK_SIZE 512 /* usb 2.0 */
|
||||
#define USB_FULL_SPEED_BULK_SIZE 64 /* usb 1.1 */
|
||||
|
||||
static inline u8 rtw_usb_bulk_size_boundary(_adapter * padapter,int buf_len)
|
||||
static inline u8 rtw_usb_bulk_size_boundary(_adapter *padapter, int buf_len)
|
||||
{
|
||||
u8 rst = _TRUE;
|
||||
|
||||
if (IS_SUPER_SPEED_USB(padapter))
|
||||
rst = (0 == (buf_len) % USB_SUPER_SPEED_BULK_SIZE)?_TRUE:_FALSE;
|
||||
if (IS_HIGH_SPEED_USB(padapter))
|
||||
rst = (0 == (buf_len) % USB_HIGH_SPEED_BULK_SIZE)?_TRUE:_FALSE;
|
||||
else
|
||||
rst = (0 == (buf_len) % USB_FULL_SPEED_BULK_SIZE)?_TRUE:_FALSE;
|
||||
rst = (0 == (buf_len) % USB_SUPER_SPEED_BULK_SIZE) ? _TRUE : _FALSE;
|
||||
else if (IS_HIGH_SPEED_USB(padapter))
|
||||
rst = (0 == (buf_len) % USB_HIGH_SPEED_BULK_SIZE) ? _TRUE : _FALSE;
|
||||
else
|
||||
rst = (0 == (buf_len) % USB_FULL_SPEED_BULK_SIZE) ? _TRUE : _FALSE;
|
||||
return rst;
|
||||
}
|
||||
|
||||
|
||||
#endif //__USB_OPS_H_
|
||||
|
||||
#endif /* __USB_OPS_H_ */
|
||||
|
Reference in New Issue
Block a user