1 /****************************************************************************** 2 * 3 * Copyright(c) 2019 Realtek Corporation. 4 * 5 * This program is free software; you can redistribute it and/or modify it 6 * under the terms of version 2 of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it will be useful, but WITHOUT 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for 12 * more details. 13 * 14 *****************************************************************************/ 15 #ifndef _PHL_CHAN_INFO_H_ 16 #define _PHL_CHAN_INFO_H_ 17 18 #ifdef CONFIG_PHL_CHANNEL_INFO 19 enum rtw_phl_status phl_chaninfo_init(struct phl_info_t *phl_info); 20 void phl_chaninfo_deinit(struct phl_info_t *phl_info); 21 22 /* Channel info queue operation*/ 23 u32 rtw_phl_get_chaninfo_idle_number(void *drvpriv, struct rtw_phl_com_t *phl_com); 24 u32 rtw_phl_get_chaninfo_busy_number(void *drvpriv, struct rtw_phl_com_t *phl_com); 25 struct chan_info_t *rtw_phl_query_idle_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com); 26 27 struct chan_info_t *rtw_phl_query_busy_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com); 28 29 struct chan_info_t *rtw_phl_query_busy_chaninfo_latest(void *drvpriv, struct rtw_phl_com_t *phl_com); 30 31 32 void rtw_phl_enqueue_idle_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com, 33 struct chan_info_t *chan_info_pkt); 34 35 struct chan_info_t * rtw_phl_recycle_busy_chaninfo(void *drvpriv, struct rtw_phl_com_t *phl_com, 36 struct chan_info_t *chan_info_pkt); 37 38 enum rtw_phl_status 39 phl_cmd_cfg_chinfo_hdl(struct phl_info_t *phl_info, u8 *param); 40 #endif /* CONFIG_PHL_CHANNEL_INFO */ 41 #endif /* _PHL_CHAN_INFO_H_ */ 42