Searched refs:c2h_evt (Results 1 – 9 of 9) sorted by relevance
/linux-6.1.9/drivers/staging/r8188eu/core/ |
D | rtw_cmd.c | 1241 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt) in rtw_c2h_wk_cmd() argument 1262 pdrvextra_cmd_parm->type_size = c2h_evt ? 16 : 0; in rtw_c2h_wk_cmd() 1263 pdrvextra_cmd_parm->pbuf = c2h_evt; in rtw_c2h_wk_cmd() 1281 struct c2h_evt_hdr *c2h_evt; in c2h_evt_read() local 1297 c2h_evt = (struct c2h_evt_hdr *)buf; in c2h_evt_read() 1299 memset(c2h_evt, 0, 16); in c2h_evt_read() 1313 for (i = 0; i < c2h_evt->plen; i++) { in c2h_evt_read() 1315 sizeof(*c2h_evt) + i, c2h_evt->payload + i); in c2h_evt_read() 1334 static void c2h_evt_hdl(struct adapter *adapter, struct c2h_evt_hdr *c2h_evt, c2h_id_filter filter) in c2h_evt_hdl() argument 1338 if (!c2h_evt) in c2h_evt_hdl() [all …]
|
/linux-6.1.9/drivers/staging/rtl8723bs/hal/ |
D | sdio_ops.c | 897 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()
|
D | hal_com.c | 503 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()
|
D | hal_intf.c | 389 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()
|
D | rtl8723b_hal_init.c | 3134 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-6.1.9/drivers/staging/rtl8723bs/core/ |
D | rtw_cmd.c | 1661 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt) in rtw_c2h_wk_cmd() argument 1683 pdrvextra_cmd_parm->size = c2h_evt?16:0; in rtw_c2h_wk_cmd() 1684 pdrvextra_cmd_parm->pbuf = c2h_evt; in rtw_c2h_wk_cmd() 1699 u8 *c2h_evt; in c2h_wk_callback() local 1705 c2h_evt = (u8 *)rtw_cbuf_pop(evtpriv->c2h_queue); in c2h_wk_callback() 1706 if (c2h_evt) { in c2h_wk_callback() 1710 c2h_evt = rtw_malloc(16); in c2h_wk_callback() 1711 if (c2h_evt) { in c2h_wk_callback() 1713 if (c2h_evt_read_88xx(adapter, c2h_evt) != _SUCCESS) { in c2h_wk_callback() 1714 kfree(c2h_evt); in c2h_wk_callback() [all …]
|
/linux-6.1.9/drivers/staging/rtl8723bs/include/ |
D | rtw_cmd.h | 108 #define c2h_evt_valid(c2h_evt) ((c2h_evt)->id || (c2h_evt)->plen) argument 616 extern u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt);
|
D | hal_intf.h | 162 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-6.1.9/drivers/staging/r8188eu/include/ |
D | rtw_cmd.h | 77 #define c2h_evt_exist(c2h_evt) ((c2h_evt)->id || (c2h_evt)->plen) argument 761 u8 rtw_c2h_wk_cmd(struct adapter *padapter, u8 *c2h_evt);
|