2013-05-08 21:45:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright(c) 2007 - 2011 Realtek Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* 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 __RTW_DEBUG_H__
|
|
|
|
#define __RTW_DEBUG_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>
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
#define _drv_always_ 1
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _drv_emerg_ 2
|
|
|
|
#define _drv_alert_ 3
|
|
|
|
#define _drv_crit_ 4
|
|
|
|
#define _drv_err_ 5
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _drv_warning_ 6
|
|
|
|
#define _drv_notice_ 7
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _drv_info_ 8
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _drv_dump_ 9
|
|
|
|
#define _drv_debug_ 10
|
|
|
|
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
#define _module_rtl871x_xmit_c_ BIT(0)
|
|
|
|
#define _module_xmit_osdep_c_ BIT(1)
|
|
|
|
#define _module_rtl871x_recv_c_ BIT(2)
|
|
|
|
#define _module_recv_osdep_c_ BIT(3)
|
|
|
|
#define _module_rtl871x_mlme_c_ BIT(4)
|
|
|
|
#define _module_mlme_osdep_c_ BIT(5)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_rtl871x_sta_mgt_c_ BIT(6)
|
|
|
|
#define _module_rtl871x_cmd_c_ BIT(7)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_cmd_osdep_c_ BIT(8)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_rtl871x_io_c_ BIT(9)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_io_osdep_c_ BIT(10)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_os_intfs_c_ BIT(11)
|
|
|
|
#define _module_rtl871x_security_c_ BIT(12)
|
|
|
|
#define _module_rtl871x_eeprom_c_ BIT(13)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_hal_init_c_ BIT(14)
|
|
|
|
#define _module_hci_hal_init_c_ BIT(15)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_rtl871x_ioctl_c_ BIT(16)
|
|
|
|
#define _module_rtl871x_ioctl_set_c_ BIT(17)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_rtl871x_ioctl_query_c_ BIT(18)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_rtl871x_pwrctrl_c_ BIT(19)
|
|
|
|
#define _module_hci_intfs_c_ BIT(20)
|
|
|
|
#define _module_hci_ops_c_ BIT(21)
|
|
|
|
#define _module_osdep_service_c_ BIT(22)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_mp_ BIT(23)
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_hci_ops_os_c_ BIT(24)
|
|
|
|
#define _module_rtl871x_ioctl_os_c BIT(25)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_rtl8712_cmd_c_ BIT(26)
|
2015-03-16 14:43:53 +00:00
|
|
|
/* define _module_efuse_ BIT(27) */
|
2014-12-11 21:15:04 +00:00
|
|
|
#define _module_rtl8192c_xmit_c_ BIT(28)
|
|
|
|
#define _module_hal_xmit_c_ BIT(28)
|
2013-05-08 21:45:39 +00:00
|
|
|
#define _module_efuse_ BIT(29)
|
|
|
|
#define _module_rtl8712_recv_c_ BIT(30)
|
|
|
|
#define _module_rtl8712_led_c_ BIT(31)
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
#undef _MODULE_DEFINE_
|
|
|
|
|
|
|
|
#if defined _RTW_XMIT_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_xmit_c_
|
|
|
|
#elif defined _XMIT_OSDEP_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_xmit_osdep_c_
|
|
|
|
#elif defined _RTW_RECV_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_recv_c_
|
|
|
|
#elif defined _RECV_OSDEP_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_recv_osdep_c_
|
|
|
|
#elif defined _RTW_MLME_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_mlme_c_
|
|
|
|
#elif defined _MLME_OSDEP_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_mlme_osdep_c_
|
|
|
|
#elif defined _RTW_MLME_EXT_C_
|
|
|
|
#define _MODULE_DEFINE_ 1
|
|
|
|
#elif defined _RTW_STA_MGT_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_sta_mgt_c_
|
|
|
|
#elif defined _RTW_CMD_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_cmd_c_
|
|
|
|
#elif defined _CMD_OSDEP_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_cmd_osdep_c_
|
|
|
|
#elif defined _RTW_IO_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_io_c_
|
|
|
|
#elif defined _IO_OSDEP_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_io_osdep_c_
|
|
|
|
#elif defined _OS_INTFS_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_os_intfs_c_
|
|
|
|
#elif defined _RTW_SECURITY_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_security_c_
|
|
|
|
#elif defined _RTW_EEPROM_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_eeprom_c_
|
|
|
|
#elif defined _HAL_INTF_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_hal_init_c_
|
|
|
|
#elif (defined _HCI_HAL_INIT_C_) || (defined _SDIO_HALINIT_C_)
|
|
|
|
#define _MODULE_DEFINE_ _module_hci_hal_init_c_
|
|
|
|
#elif defined _RTL871X_IOCTL_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_ioctl_c_
|
|
|
|
#elif defined _RTL871X_IOCTL_SET_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_ioctl_set_c_
|
|
|
|
#elif defined _RTL871X_IOCTL_QUERY_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_ioctl_query_c_
|
|
|
|
#elif defined _RTL871X_PWRCTRL_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_pwrctrl_c_
|
|
|
|
#elif defined _RTW_PWRCTRL_C_
|
|
|
|
#define _MODULE_DEFINE_ 1
|
|
|
|
#elif defined _HCI_INTF_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_hci_intfs_c_
|
|
|
|
#elif defined _HCI_OPS_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_hci_ops_c_
|
|
|
|
#elif defined _SDIO_OPS_C_
|
|
|
|
#define _MODULE_DEFINE_ 1
|
|
|
|
#elif defined _OSDEP_HCI_INTF_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_hci_intfs_c_
|
|
|
|
#elif defined _OSDEP_SERVICE_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_osdep_service_c_
|
|
|
|
#elif defined _HCI_OPS_OS_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_hci_ops_os_c_
|
|
|
|
#elif defined _RTL871X_IOCTL_LINUX_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl871x_ioctl_os_c
|
|
|
|
#elif defined _RTL8712_CMD_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl8712_cmd_c_
|
|
|
|
#elif defined _RTL8192C_XMIT_C_
|
|
|
|
#define _MODULE_DEFINE_ 1
|
|
|
|
#elif defined _RTL8723AS_XMIT_C_
|
|
|
|
#define _MODULE_DEFINE_ 1
|
|
|
|
#elif defined _RTL8712_RECV_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl8712_recv_c_
|
|
|
|
#elif defined _RTL8192CU_RECV_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_rtl8712_recv_c_
|
|
|
|
#elif defined _RTL871X_MLME_EXT_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_mlme_osdep_c_
|
|
|
|
#elif defined _RTW_MP_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_mp_
|
|
|
|
#elif defined _RTW_MP_IOCTL_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_mp_
|
|
|
|
#elif defined _RTW_EFUSE_C_
|
|
|
|
#define _MODULE_DEFINE_ _module_efuse_
|
|
|
|
#endif
|
2013-05-17 21:52:06 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
#ifdef PLATFORM_OS_CE
|
|
|
|
extern void rtl871x_cedbg(const char *fmt, ...);
|
|
|
|
#endif
|
2013-05-17 21:52:06 +00:00
|
|
|
|
2015-08-15 18:04:12 +00:00
|
|
|
#define RT_TRACE(_Comp, _Level, Fmt) do{}while (0)
|
|
|
|
#define _func_enter_ do{}while (0)
|
|
|
|
#define _func_exit_ do{}while (0)
|
|
|
|
#define RT_PRINT_DATA(_Comp, _Level, _TitleString, _HexData, _HexDataLen) do{}while (0)
|
2014-12-11 21:15:04 +00:00
|
|
|
|
2015-08-15 18:04:12 +00:00
|
|
|
#define DBG_871X(x, ...) do {} while (0)
|
|
|
|
#define MSG_8192C(x, ...) do {} while (0)
|
|
|
|
#define DBG_8192C(x,...) do {} while (0)
|
|
|
|
#define DBG_871X_LEVEL(x,...) do {} while (0)
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
#undef _dbgdump
|
2014-12-15 20:28:28 +00:00
|
|
|
#define _dbgdump printk
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-17 06:40:52 +00:00
|
|
|
extern u32 GlobalDebugLevel;
|
|
|
|
|
|
|
|
#define DRIVER_PREFIX "R8188EU: "
|
2014-12-19 06:59:46 +00:00
|
|
|
#if defined (_dbgdump)
|
2014-12-11 21:15:04 +00:00
|
|
|
#undef DBG_871X_LEVEL
|
|
|
|
#define DBG_871X_LEVEL(level, fmt, arg...) \
|
|
|
|
do {\
|
2015-02-08 20:56:05 +00:00
|
|
|
if (level <= GlobalDebugLevel) {\
|
2014-12-11 21:15:04 +00:00
|
|
|
if (level <= _drv_err_ && level > _drv_always_) \
|
|
|
|
_dbgdump(DRIVER_PREFIX"ERROR " fmt, ##arg);\
|
|
|
|
else \
|
|
|
|
_dbgdump(DRIVER_PREFIX fmt, ##arg);\
|
|
|
|
}\
|
2015-08-15 18:04:12 +00:00
|
|
|
}while (0)
|
2014-12-11 21:15:04 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_DEBUG
|
|
|
|
#if defined (_dbgdump)
|
|
|
|
#undef DBG_871X
|
|
|
|
#define DBG_871X(...) do {\
|
|
|
|
_dbgdump(DRIVER_PREFIX __VA_ARGS__);\
|
2015-08-15 18:04:12 +00:00
|
|
|
}while (0)
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
#undef MSG_8192C
|
|
|
|
#define MSG_8192C(...) do {\
|
|
|
|
_dbgdump(DRIVER_PREFIX __VA_ARGS__);\
|
2015-08-15 18:04:12 +00:00
|
|
|
}while (0)
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
#undef DBG_8192C
|
|
|
|
#define DBG_8192C(...) do {\
|
|
|
|
_dbgdump(DRIVER_PREFIX __VA_ARGS__);\
|
2015-08-15 18:04:12 +00:00
|
|
|
}while (0)
|
2014-12-11 21:15:04 +00:00
|
|
|
#endif
|
|
|
|
#endif /* CONFIG_DEBUG */
|
|
|
|
|
|
|
|
#ifdef CONFIG_PROC_DEBUG
|
|
|
|
|
|
|
|
int proc_get_drv_version(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
#ifdef DBG_MEM_ALLOC
|
|
|
|
int proc_get_mstat(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
#endif /* DBG_MEM_ALLOC */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_write_reg(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_write_reg(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_read_reg(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_read_reg(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_fwstate(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_sec_info(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_mlmext_state(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_qos_option(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_ht_option(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rf_info(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_ap_info(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_adapter_state(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_trx_info(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_mac_reg_dump1(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_mac_reg_dump2(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_mac_reg_dump3(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_bb_reg_dump1(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_bb_reg_dump2(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_bb_reg_dump3(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rf_reg_dump1(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rf_reg_dump2(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rf_reg_dump3(char *page, char **start,
|
2013-05-08 21:45:39 +00:00
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rf_reg_dump4(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
|
|
|
#ifdef CONFIG_AP_MODE
|
|
|
|
|
|
|
|
int proc_get_all_sta_info(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-03-01 17:00:26 +00:00
|
|
|
#ifdef CONFIG_AP_MODE
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_best_channel(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_best_channel(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int proc_get_rx_signal(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_rx_signal(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_ht_enable(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_ht_enable(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
|
|
|
|
|
|
|
int proc_get_cbw40_enable(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-19 04:28:07 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_cbw40_enable(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_ampdu_enable(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_ampdu_enable(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rx_stbc(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2014-12-19 06:59:46 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_rx_stbc(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_two_path_rssi(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_rssi_disp(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_rssi_disp(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_BT_COEXIST
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_btcoex_dbg(char *page, char **start,
|
|
|
|
off_t offset, int count,
|
|
|
|
int *eof, void *data);
|
|
|
|
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_btcoex_dbg(struct file *file, const char __user *buffer,
|
2014-12-11 21:15:04 +00:00
|
|
|
unsigned long count, void *data);
|
|
|
|
|
2015-03-16 14:43:53 +00:00
|
|
|
#endif /* CONFIG_BT_COEXIST */
|
2014-12-11 21:15:04 +00:00
|
|
|
|
|
|
|
int proc_get_sreset(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_sreset(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_odm_dbg_comp(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_odm_dbg_comp(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_odm_dbg_level(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_odm_dbg_level(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
2014-12-11 21:15:04 +00:00
|
|
|
int proc_get_odm_adaptivity(char *page, char **start, off_t offset, int count, int *eof, void *data);
|
2015-01-30 03:41:53 +00:00
|
|
|
int proc_set_odm_adaptivity(struct file *file, const char __user *buffer, unsigned long count, void *data);
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2015-03-16 14:43:53 +00:00
|
|
|
#endif /* CONFIG_PROC_DEBUG */
|
2013-05-08 21:45:39 +00:00
|
|
|
|
2015-03-16 14:43:53 +00:00
|
|
|
#endif /* __RTW_DEBUG_H__ */
|