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_PHY_MSG_FWD_H_ 16*4882a593Smuzhiyun #define __PHL_PHY_MSG_FWD_H_ 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun enum rtw_phl_status phl_msg_hub_init(struct phl_info_t *phl); 19*4882a593Smuzhiyun enum rtw_phl_status phl_msg_hub_deinit(struct phl_info_t *phl); 20*4882a593Smuzhiyun enum rtw_phl_status phl_msg_hub_start(struct phl_info_t *phl); 21*4882a593Smuzhiyun enum rtw_phl_status phl_msg_hub_stop(struct phl_info_t *phl); 22*4882a593Smuzhiyun enum rtw_phl_status phl_msg_hub_send(struct phl_info_t *phl, 23*4882a593Smuzhiyun struct phl_msg_attribute *attr, 24*4882a593Smuzhiyun struct phl_msg *msg); 25*4882a593Smuzhiyun enum rtw_phl_status 26*4882a593Smuzhiyun phl_msg_hub_register_recver(void *phl, struct phl_msg_receiver *ctx, 27*4882a593Smuzhiyun enum phl_msg_recver_layer layer); 28*4882a593Smuzhiyun enum rtw_phl_status 29*4882a593Smuzhiyun phl_msg_hub_update_recver_mask(void *phl, enum phl_msg_recver_layer layer, 30*4882a593Smuzhiyun u8 *mdl_id, u32 len, u8 clr); 31*4882a593Smuzhiyun enum rtw_phl_status 32*4882a593Smuzhiyun phl_msg_hub_deregister_recver(void *phl, enum phl_msg_recver_layer layer); 33*4882a593Smuzhiyun 34*4882a593Smuzhiyun void phl_msg_hub_phy_mgnt_evt_hdlr(struct phl_info_t *phl, u16 evt_id); 35*4882a593Smuzhiyun void phl_msg_hub_rx_evt_hdlr(struct phl_info_t *phl, u16 evt_id, u8 *buf, 36*4882a593Smuzhiyun u32 len); 37*4882a593Smuzhiyun void phl_msg_hub_tx_evt_hdlr(struct phl_info_t *phl, u16 evt_id, u8 *buf, 38*4882a593Smuzhiyun u32 len); 39*4882a593Smuzhiyun #endif 40