xref: /OK3568_Linux_fs/external/rkwifibt/drivers/rtl8852be/phl/phl_btc_fsm.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyun /******************************************************************************
2*4882a593Smuzhiyun  *
3*4882a593Smuzhiyun  * Copyright(c) 2019 - 2020 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 #ifndef __PHL_BTC_FSM_H__
16*4882a593Smuzhiyun #define __PHL_BTC_FSM_H__
17*4882a593Smuzhiyun 
18*4882a593Smuzhiyun /* Header file for application to invoke btcoex service */
19*4882a593Smuzhiyun 
20*4882a593Smuzhiyun #define RTW_BTC_FWBUF_NUM 4
21*4882a593Smuzhiyun #define RTW_BTC_NAME_MAX 20
22*4882a593Smuzhiyun 
23*4882a593Smuzhiyun struct fsm_root;
24*4882a593Smuzhiyun struct fsm_main;
25*4882a593Smuzhiyun struct btc_obj;
26*4882a593Smuzhiyun 
27*4882a593Smuzhiyun /* function form btcoex service management */
28*4882a593Smuzhiyun struct fsm_main *phl_btc_new_fsm(struct fsm_root *fsm_m,
29*4882a593Smuzhiyun 	struct phl_info_t *phl_info);
30*4882a593Smuzhiyun void phl_btc_destory_fsm(struct fsm_main *fsm);
31*4882a593Smuzhiyun struct btc_obj *phl_btc_new_obj(struct fsm_main *fsm,
32*4882a593Smuzhiyun 	struct phl_info_t *phl_info);
33*4882a593Smuzhiyun void phl_btc_destory_obj(struct btc_obj *pbtc);
34*4882a593Smuzhiyun 
35*4882a593Smuzhiyun /* function form btcoex service */
36*4882a593Smuzhiyun enum rtw_phl_status phl_btc_start(struct btc_obj *pbtc);
37*4882a593Smuzhiyun enum rtw_phl_status phl_btc_cancel(struct btc_obj *pbtc);
38*4882a593Smuzhiyun 
39*4882a593Smuzhiyun #endif /* __PHL_BTC_FSM_H__ */
40*4882a593Smuzhiyun 
41