1 // SPDX-License-Identifier: ISC 2 /* 3 * Copyright (c) 2012 Broadcom Corporation 4 */ 5 6 #ifndef FWSIGNAL_H_ 7 #define FWSIGNAL_H_ 8 9 struct brcmf_fws_info *brcmf_fws_attach(struct brcmf_pub *drvr); 10 void brcmf_fws_detach(struct brcmf_fws_info *fws); 11 void brcmf_fws_debugfs_create(struct brcmf_pub *drvr); 12 bool brcmf_fws_queue_skbs(struct brcmf_fws_info *fws); 13 bool brcmf_fws_fc_active(struct brcmf_fws_info *fws); 14 void brcmf_fws_hdrpull(struct brcmf_if *ifp, s16 siglen, struct sk_buff *skb); 15 int brcmf_fws_process_skb(struct brcmf_if *ifp, struct sk_buff *skb); 16 17 void brcmf_fws_reset_interface(struct brcmf_if *ifp); 18 void brcmf_fws_add_interface(struct brcmf_if *ifp); 19 void brcmf_fws_del_interface(struct brcmf_if *ifp); 20 void brcmf_fws_bustxfail(struct brcmf_fws_info *fws, struct sk_buff *skb); 21 void brcmf_fws_bus_blocked(struct brcmf_pub *drvr, bool flow_blocked); 22 void brcmf_fws_rxreorder(struct brcmf_if *ifp, struct sk_buff *skb); 23 24 #endif /* FWSIGNAL_H_ */ 25