Home
last modified time | relevance | path

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

/linux-5.19.10/drivers/staging/r8188eu/hal/
Dhal_com.c299 struct c2h_evt_hdr *c2h_evt; in c2h_evt_read() local
315 c2h_evt = (struct c2h_evt_hdr *)buf; in c2h_evt_read()
317 memset(c2h_evt, 0, 16); in c2h_evt_read()
331 for (i = 0; i < c2h_evt->plen; i++) { in c2h_evt_read()
333 sizeof(*c2h_evt) + i, c2h_evt->payload + i); in c2h_evt_read()
/linux-5.19.10/drivers/staging/r8188eu/core/
Drtw_cmd.c1260 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt) in rtw_c2h_wk_cmd() argument
1281 pdrvextra_cmd_parm->type_size = c2h_evt ? 16 : 0; in rtw_c2h_wk_cmd()
1282 pdrvextra_cmd_parm->pbuf = c2h_evt; in rtw_c2h_wk_cmd()
1293 static void c2h_evt_hdl(struct adapter *adapter, struct c2h_evt_hdr *c2h_evt, c2h_id_filter filter) in c2h_evt_hdl() argument
1297 if (!c2h_evt) in c2h_evt_hdl()
1305 struct c2h_evt_hdr *c2h_evt; in c2h_wk_callback() local
1310 c2h_evt = (struct c2h_evt_hdr *)rtw_cbuf_pop(evtpriv->c2h_queue); in c2h_wk_callback()
1311 if (c2h_evt) { in c2h_wk_callback()
1315 c2h_evt = kmalloc(16, GFP_KERNEL); in c2h_wk_callback()
1316 if (c2h_evt) { in c2h_wk_callback()
[all …]
/linux-5.19.10/drivers/staging/rtl8723bs/hal/
Dsdio_ops.c897 struct c2h_evt_hdr_88xx *c2h_evt; in sd_int_dpc() local
899 c2h_evt = rtw_zmalloc(16); in sd_int_dpc()
900 if (c2h_evt) { in sd_int_dpc()
901 if (c2h_evt_read_88xx(adapter, (u8 *)c2h_evt) == _SUCCESS) { in sd_int_dpc()
902 if (c2h_id_filter_ccx_8723b((u8 *)c2h_evt)) { in sd_int_dpc()
904 rtw_hal_c2h_handler(adapter, (u8 *)c2h_evt); in sd_int_dpc()
905 kfree(c2h_evt); in sd_int_dpc()
907 rtw_c2h_wk_cmd(adapter, (u8 *)c2h_evt); in sd_int_dpc()
910 kfree(c2h_evt); in sd_int_dpc()
Dhal_com.c503 struct c2h_evt_hdr_88xx *c2h_evt; in c2h_evt_read_88xx() local
517 c2h_evt = (struct c2h_evt_hdr_88xx *)buf; in c2h_evt_read_88xx()
519 memset(c2h_evt, 0, 16); in c2h_evt_read_88xx()
521 c2h_evt->id = rtw_read8(adapter, REG_C2HEVT_MSG_NORMAL); in c2h_evt_read_88xx()
522 c2h_evt->seq = rtw_read8(adapter, REG_C2HEVT_CMD_SEQ_88XX); in c2h_evt_read_88xx()
523 c2h_evt->plen = rtw_read8(adapter, REG_C2HEVT_CMD_LEN_88XX); in c2h_evt_read_88xx()
526 for (i = 0; i < c2h_evt->plen; i++) in c2h_evt_read_88xx()
527 c2h_evt->payload[i] = rtw_read8(adapter, REG_C2HEVT_MSG_NORMAL + 2 + i); in c2h_evt_read_88xx()
Dhal_intf.c389 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt) in rtw_hal_c2h_handler() argument
394 ret = adapter->HalFunc.c2h_handler(adapter, c2h_evt); in rtw_hal_c2h_handler()
Drtl8723b_hal_init.c3134 struct c2h_evt_hdr_88xx *c2h_evt = (struct c2h_evt_hdr_88xx *)buf; in c2h_id_filter_ccx_8723b() local
3136 if (c2h_evt->id == C2H_CCX_TX_RPT) in c2h_id_filter_ccx_8723b()
/linux-5.19.10/drivers/staging/rtl8723bs/core/
Drtw_cmd.c1749 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt) in rtw_c2h_wk_cmd() argument
1771 pdrvextra_cmd_parm->size = c2h_evt?16:0; in rtw_c2h_wk_cmd()
1772 pdrvextra_cmd_parm->pbuf = c2h_evt; in rtw_c2h_wk_cmd()
1787 u8 *c2h_evt; in c2h_wk_callback() local
1793 c2h_evt = (u8 *)rtw_cbuf_pop(evtpriv->c2h_queue); in c2h_wk_callback()
1794 if (c2h_evt) { in c2h_wk_callback()
1798 c2h_evt = rtw_malloc(16); in c2h_wk_callback()
1799 if (c2h_evt) { in c2h_wk_callback()
1801 if (c2h_evt_read_88xx(adapter, c2h_evt) != _SUCCESS) { in c2h_wk_callback()
1802 kfree(c2h_evt); in c2h_wk_callback()
[all …]
/linux-5.19.10/drivers/staging/rtl8723bs/include/
Drtw_cmd.h108 #define c2h_evt_valid(c2h_evt) ((c2h_evt)->id || (c2h_evt)->plen) argument
619 extern u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt);
Dhal_intf.h162 typedef s32 (*c2h_id_filter)(u8 *c2h_evt);
254 s32 (*c2h_handler)(struct adapter *padapter, u8 *c2h_evt);
353 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt);
/linux-5.19.10/drivers/staging/r8188eu/include/
Drtw_cmd.h77 #define c2h_evt_exist(c2h_evt) ((c2h_evt)->id || (c2h_evt)->plen) argument
763 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt);