2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
2014-12-19 06:59:46 +00:00
|
|
|
*
|
2013-05-08 21:45:39 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* 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_
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
#include <drv_conf.h>
|
2013-05-08 21:45:39 +00:00
|
|
|
#include <osdep_service.h>
|
|
|
|
#include <drv_types.h>
|
|
|
|
#include <osdep_intf.h>
|
|
|
|
|
|
|
|
#define REALTEK_USB_VENQT_READ 0xC0
|
|
|
|
#define REALTEK_USB_VENQT_WRITE 0x40
|
|
|
|
#define REALTEK_USB_VENQT_CMD_REQ 0x05
|
|
|
|
#define REALTEK_USB_VENQT_CMD_IDX 0x00
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
enum{
|
2013-05-08 21:45:39 +00:00
|
|
|
VENDOR_WRITE = 0x00,
|
|
|
|
VENDOR_READ = 0x01,
|
|
|
|
};
|
2014-12-11 21:15:04 +00:00
|
|
|
#define ALIGNMENT_UNIT 16
|
2015-03-16 14:43:53 +00:00
|
|
|
#define MAX_VENDOR_REQ_CMD_SIZE 254 /* 8188cu SIE Support */
|
2014-12-11 21:15:04 +00:00
|
|
|
#define MAX_USB_IO_CTL_SIZE (MAX_VENDOR_REQ_CMD_SIZE +ALIGNMENT_UNIT)
|
|
|
|
|
2014-12-19 06:59:46 +00:00
|
|
|
#if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,12))
|
2014-12-11 21:15:04 +00:00
|
|
|
#define rtw_usb_control_msg(dev, pipe, request, requesttype, value, index, data, size, timeout_ms) \
|
2014-12-19 06:59:46 +00:00
|
|
|
usb_control_msg((dev), (pipe), (request), (requesttype), (value), (index), (data), (size), (timeout_ms))
|
2013-05-08 21:45:39 +00:00
|
|
|
#define rtw_usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout_ms) \
|
2014-12-11 21:15:04 +00:00
|
|
|
usb_bulk_msg((usb_dev), (pipe), (data), (len), (actual_length), (timeout_ms))
|
2013-05-08 21:45:39 +00:00
|
|
|
#else
|
2014-12-11 21:15:04 +00:00
|
|
|
#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), \
|
2014-12-19 06:59:46 +00:00
|
|
|
((timeout_ms) == 0) ||((timeout_ms)*HZ/1000>0)?((timeout_ms)*HZ/1000):1)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define rtw_usb_bulk_msg(usb_dev, pipe, data, len, actual_length, timeout_ms) \
|
2013-05-08 21:45:39 +00:00
|
|
|
usb_bulk_msg((usb_dev), (pipe), (data), (len), (actual_length), \
|
2014-12-19 06:59:46 +00:00
|
|
|
((timeout_ms) == 0) ||((timeout_ms)*HZ/1000>0)?((timeout_ms)*HZ/1000):1)
|
2013-05-08 21:45:39 +00:00
|
|
|
#endif
|
|
|
|
#include <usb_ops_linux.h>
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
void rtl8188eu_set_hw_type(struct adapter *padapter);
|
2013-05-08 21:45:39 +00:00
|
|
|
#define hal_set_hw_type rtl8188eu_set_hw_type
|
|
|
|
void rtl8188eu_set_intf_ops(struct _io_ops *pops);
|
|
|
|
#define usb_set_intf_ops rtl8188eu_set_intf_ops
|
|
|
|
|
|
|
|
#define USB_HIGH_SPEED_BULK_SIZE 512
|
|
|
|
#define USB_FULL_SPEED_BULK_SIZE 64
|
|
|
|
|
2014-12-17 23:13:53 +00:00
|
|
|
static inline u8 rtw_usb_bulk_size_boundary(struct adapter * padapter,int buf_len)
|
2013-05-08 21:45:39 +00:00
|
|
|
{
|
2014-12-29 02:13:24 +00:00
|
|
|
u8 rst = true;
|
2014-12-11 21:15:04 +00:00
|
|
|
struct dvobj_priv *pdvobjpriv = adapter_to_dvobj(padapter);
|
|
|
|
|
2014-12-29 02:13:24 +00:00
|
|
|
if (pdvobjpriv->ishighspeed == true)
|
|
|
|
rst = (0 == (buf_len) % USB_HIGH_SPEED_BULK_SIZE)?true:false;
|
2014-12-19 06:59:46 +00:00
|
|
|
else
|
2014-12-29 02:13:24 +00:00
|
|
|
rst = (0 == (buf_len) % USB_FULL_SPEED_BULK_SIZE)?true:false;
|
2013-05-08 21:45:39 +00:00
|
|
|
return rst;
|
|
|
|
}
|
|
|
|
|
2015-03-16 14:43:53 +00:00
|
|
|
#endif /* __USB_OPS_H_ */
|