Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/staging/rtl8723bs/hal/
Dsdio_ops.c896 struct c2h_evt_hdr_88xx *c2h_evt; in sd_int_dpc() local
898 c2h_evt = rtw_zmalloc(16); in sd_int_dpc()
899 if (c2h_evt) { in sd_int_dpc()
900 if (c2h_evt_read_88xx(adapter, (u8 *)c2h_evt) == _SUCCESS) { in sd_int_dpc()
901 if (c2h_id_filter_ccx_8723b((u8 *)c2h_evt)) { in sd_int_dpc()
903 rtw_hal_c2h_handler(adapter, (u8 *)c2h_evt); in sd_int_dpc()
904 kfree(c2h_evt); in sd_int_dpc()
906 rtw_c2h_wk_cmd(adapter, (u8 *)c2h_evt); in sd_int_dpc()
909 kfree(c2h_evt); in sd_int_dpc()
Dhal_com.c502 struct c2h_evt_hdr_88xx *c2h_evt; in c2h_evt_read_88xx() local
516 c2h_evt = (struct c2h_evt_hdr_88xx *)buf; in c2h_evt_read_88xx()
518 memset(c2h_evt, 0, 16); in c2h_evt_read_88xx()
520 c2h_evt->id = rtw_read8(adapter, REG_C2HEVT_MSG_NORMAL); in c2h_evt_read_88xx()
521 c2h_evt->seq = rtw_read8(adapter, REG_C2HEVT_CMD_SEQ_88XX); in c2h_evt_read_88xx()
522 c2h_evt->plen = rtw_read8(adapter, REG_C2HEVT_CMD_LEN_88XX); in c2h_evt_read_88xx()
525 for (i = 0; i < c2h_evt->plen; i++) in c2h_evt_read_88xx()
526 c2h_evt->payload[i] = rtw_read8(adapter, REG_C2HEVT_MSG_NORMAL + 2 + i); in c2h_evt_read_88xx()
Dhal_intf.c382 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt) in rtw_hal_c2h_handler() argument
387 ret = adapter->HalFunc.c2h_handler(adapter, c2h_evt); in rtw_hal_c2h_handler()
Drtl8723b_hal_init.c3125 struct c2h_evt_hdr_88xx *c2h_evt = (struct c2h_evt_hdr_88xx *)buf; in c2h_id_filter_ccx_8723b() local
3127 if (c2h_evt->id == C2H_CCX_TX_RPT) in c2h_id_filter_ccx_8723b()
/linux-6.12.1/drivers/staging/rtl8723bs/core/
Drtw_cmd.c1660 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt) in rtw_c2h_wk_cmd() argument
1682 pdrvextra_cmd_parm->size = c2h_evt?16:0; in rtw_c2h_wk_cmd()
1683 pdrvextra_cmd_parm->pbuf = c2h_evt; in rtw_c2h_wk_cmd()
1698 u8 *c2h_evt; in c2h_wk_callback() local
1704 c2h_evt = (u8 *)rtw_cbuf_pop(evtpriv->c2h_queue); in c2h_wk_callback()
1705 if (c2h_evt) { in c2h_wk_callback()
1709 c2h_evt = rtw_malloc(16); in c2h_wk_callback()
1710 if (c2h_evt) { in c2h_wk_callback()
1712 if (c2h_evt_read_88xx(adapter, c2h_evt) != _SUCCESS) { in c2h_wk_callback()
1713 kfree(c2h_evt); in c2h_wk_callback()
[all …]
/linux-6.12.1/drivers/staging/rtl8723bs/include/
Drtw_cmd.h108 #define c2h_evt_valid(c2h_evt) ((c2h_evt)->id || (c2h_evt)->plen) argument
612 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);
352 s32 rtw_hal_c2h_handler(struct adapter *adapter, u8 *c2h_evt);