1*4882a593Smuzhiyun /****************************************************************************** 2*4882a593Smuzhiyun * 3*4882a593Smuzhiyun * Copyright(c) 2019 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_CHAN_INFO_H_ 16*4882a593Smuzhiyun #define _PHL_CHAN_INFO_H_ 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun #ifdef CONFIG_PHL_CHANNEL_INFO 19*4882a593Smuzhiyun enum rtw_phl_status phl_chaninfo_init(struct phl_info_t *phl_info); 20*4882a593Smuzhiyun void phl_chaninfo_deinit(struct phl_info_t *phl_info); 21*4882a593Smuzhiyun 22*4882a593Smuzhiyun /* Channel info queue operation*/ 23*4882a593Smuzhiyun u32 rtw_phl_get_chaninfo_idle_number(void *drvpriv, struct rtw_phl_com_t *phl_com); 24*4882a593Smuzhiyun u32 rtw_phl_get_chaninfo_busy_number(void *drvpriv, struct rtw_phl_com_t *phl_com); 25*4882a593Smuzhiyun struct chan_info_t *rtw_phl_query_idle_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com); 26*4882a593Smuzhiyun 27*4882a593Smuzhiyun struct chan_info_t *rtw_phl_query_busy_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com); 28*4882a593Smuzhiyun 29*4882a593Smuzhiyun struct chan_info_t *rtw_phl_query_busy_chaninfo_latest(void *drvpriv, struct rtw_phl_com_t *phl_com); 30*4882a593Smuzhiyun 31*4882a593Smuzhiyun 32*4882a593Smuzhiyun void rtw_phl_enqueue_idle_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com, 33*4882a593Smuzhiyun struct chan_info_t *chan_info_pkt); 34*4882a593Smuzhiyun 35*4882a593Smuzhiyun struct chan_info_t * rtw_phl_recycle_busy_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com, 36*4882a593Smuzhiyun struct chan_info_t *chan_info_pkt); 37*4882a593Smuzhiyun 38*4882a593Smuzhiyun enum rtw_phl_status 39*4882a593Smuzhiyun phl_cmd_cfg_chinfo_hdl(struct phl_info_t *phl_info, u8 *param); 40*4882a593Smuzhiyun #endif /* CONFIG_PHL_CHANNEL_INFO */ 41*4882a593Smuzhiyun #endif /* _PHL_CHAN_INFO_H_ */ 42