xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/include/rtw_btc.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2013 - 2017 Realtek Corporation.
4*4882a593Smuzhiyun  *
5*4882a593Smuzhiyun  * This program is free software; you can redistribute it and/or modify it
6*4882a593Smuzhiyun  * under the terms of version 2 of the GNU General Public License as
7*4882a593Smuzhiyun  * published by the Free Software Foundation.
8*4882a593Smuzhiyun  *
9*4882a593Smuzhiyun  * This program is distributed in the hope that it will be useful, but WITHOUT
10*4882a593Smuzhiyun  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11*4882a593Smuzhiyun  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12*4882a593Smuzhiyun  * more details.
13*4882a593Smuzhiyun  *
14*4882a593Smuzhiyun  *****************************************************************************/
15*4882a593Smuzhiyun #ifdef CONFIG_BTC
16*4882a593Smuzhiyun 
17*4882a593Smuzhiyun #ifndef __RTW_BTC_H__
18*4882a593Smuzhiyun #define __RTW_BTC_H__
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun #include <drv_types.h>
21*4882a593Smuzhiyun 
22*4882a593Smuzhiyun #define GET_STATUS_CODE_FROM_BT_MP_OPER_RET(RetCode)				(RetCode & 0x0F)
23*4882a593Smuzhiyun #define CHECK_STATUS_CODE_FROM_BT_MP_OPER_RET(RetCode, StatusCode)	(GET_STATUS_CODE_FROM_BT_MP_OPER_RET(RetCode) == StatusCode)
24*4882a593Smuzhiyun 
25*4882a593Smuzhiyun void rtw_btc_disp_btc_info(_adapter *, void* p_msgprn_hdl, u8 info_type);
26*4882a593Smuzhiyun void rtw_btc_set_dbg(_adapter *, u32 *pDbgModule);
27*4882a593Smuzhiyun u32 rtw_btc_get_dbg(_adapter *, u8 *pStrBuf, u32 bufSize);
28*4882a593Smuzhiyun 
29*4882a593Smuzhiyun #if 0
30*4882a593Smuzhiyun u16 rtw_btc_btreg_read(_adapter *padapter, u8 type, u16 addr, u32 *data);
31*4882a593Smuzhiyun u16 rtw_btc_btreg_write(_adapter *padapter, u8 type, u16 addr, u16 val);
32*4882a593Smuzhiyun #endif
33*4882a593Smuzhiyun 
34*4882a593Smuzhiyun #endif /* __RTW_BTC_H__ */
35*4882a593Smuzhiyun #endif /* CONFIG_BTC */
36*4882a593Smuzhiyun 
37