Home
last modified time | relevance | path

Searched refs:c2h_evt (Results 1 – 7 of 7) sorted by relevance

/Linux-v5.10/drivers/staging/rtl8723bs/hal/
Dhal_com.c904 struct c2h_evt_hdr_88xx *c2h_evt; in c2h_evt_read_88xx() local
918 c2h_evt = (struct c2h_evt_hdr_88xx *)buf; in c2h_evt_read_88xx()
920 memset(c2h_evt, 0, 16); in c2h_evt_read_88xx()
922 c2h_evt->id = rtw_read8(adapter, REG_C2HEVT_MSG_NORMAL); in c2h_evt_read_88xx()
923 c2h_evt->seq = rtw_read8(adapter, REG_C2HEVT_CMD_SEQ_88XX); in c2h_evt_read_88xx()
924 c2h_evt->plen = rtw_read8(adapter, REG_C2HEVT_CMD_LEN_88XX); in c2h_evt_read_88xx()
930 &c2h_evt, in c2h_evt_read_88xx()
931 sizeof(c2h_evt) in c2h_evt_read_88xx()
937 c2h_evt->id, in c2h_evt_read_88xx()
938 c2h_evt->plen, in c2h_evt_read_88xx()
[all …]
Dsdio_ops.c979 struct c2h_evt_hdr_88xx *c2h_evt; in sd_int_dpc() local
982 c2h_evt = rtw_zmalloc(16); in sd_int_dpc()
983 if (c2h_evt) { in sd_int_dpc()
984 if (c2h_evt_read_88xx(adapter, (u8 *)c2h_evt) == _SUCCESS) { in sd_int_dpc()
985 if (c2h_id_filter_ccx_8723b((u8 *)c2h_evt)) { in sd_int_dpc()
987 rtw_hal_c2h_handler(adapter, (u8 *)c2h_evt); in sd_int_dpc()
988 kfree(c2h_evt); in sd_int_dpc()
990 rtw_c2h_wk_cmd(adapter, (u8 *)c2h_evt); in sd_int_dpc()
Dhal_intf.c403 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt) in rtw_hal_c2h_handler() argument
407 ret = adapter->HalFunc.c2h_handler(adapter, c2h_evt); in rtw_hal_c2h_handler()
Drtl8723b_hal_init.c3648 struct c2h_evt_hdr_88xx *c2h_evt = (struct c2h_evt_hdr_88xx *)buf; in c2h_id_filter_ccx_8723b() local
3650 if (c2h_evt->id == C2H_CCX_TX_RPT) in c2h_id_filter_ccx_8723b()
/Linux-v5.10/drivers/staging/rtl8723bs/core/
Drtw_cmd.c1851 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt) in rtw_c2h_wk_cmd() argument
1873 pdrvextra_cmd_parm->size = c2h_evt?16:0; in rtw_c2h_wk_cmd()
1874 pdrvextra_cmd_parm->pbuf = c2h_evt; in rtw_c2h_wk_cmd()
1889 u8 *c2h_evt; in c2h_wk_callback() local
1895 c2h_evt = (u8 *)rtw_cbuf_pop(evtpriv->c2h_queue); in c2h_wk_callback()
1896 if (c2h_evt != NULL) { in c2h_wk_callback()
1900 c2h_evt = rtw_malloc(16); in c2h_wk_callback()
1901 if (c2h_evt != NULL) { in c2h_wk_callback()
1903 if (c2h_evt_read_88xx(adapter, c2h_evt) != _SUCCESS) { in c2h_wk_callback()
1904 kfree(c2h_evt); in c2h_wk_callback()
[all …]
/Linux-v5.10/drivers/staging/rtl8723bs/include/
Drtw_cmd.h108 #define c2h_evt_valid(c2h_evt) ((c2h_evt)->id || (c2h_evt)->plen) argument
855 extern u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt);
Dhal_intf.h170 typedef s32 (*c2h_id_filter)(u8 *c2h_evt);
262 s32 (*c2h_handler)(struct adapter *padapter, u8 *c2h_evt);
391 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt);