Home
last modified time | relevance | path

Searched refs:tx_buf_info (Results 1 – 6 of 6) sorted by relevance

/nrf_wifi-latest/hw_if/hal/src/system/
Dhal_api.c252 struct nrf_wifi_hal_buf_map_info *tx_buf_info = NULL; in nrf_wifi_sys_hal_buf_map_tx() local
259 tx_buf_info = &hal_dev_ctx->tx_buf_info[desc_id]; in nrf_wifi_sys_hal_buf_map_tx()
261 if (tx_buf_info->mapped) { in nrf_wifi_sys_hal_buf_map_tx()
267 tx_buf_info->virt_addr = buf; in nrf_wifi_sys_hal_buf_map_tx()
307 tx_buf_info->phy_addr = nrf_wifi_bal_dma_map(hal_dev_ctx->bal_dev_ctx, in nrf_wifi_sys_hal_buf_map_tx()
312 if (!tx_buf_info->phy_addr) { in nrf_wifi_sys_hal_buf_map_tx()
317 tx_buf_info->buf_len = buf_len; in nrf_wifi_sys_hal_buf_map_tx()
320 if (tx_buf_info->phy_addr) { in nrf_wifi_sys_hal_buf_map_tx()
321 tx_buf_info->mapped = true; in nrf_wifi_sys_hal_buf_map_tx()
324 return tx_buf_info->phy_addr; in nrf_wifi_sys_hal_buf_map_tx()
[all …]
/nrf_wifi-latest/fw_if/umac_if/src/system/
Dtx.c626 struct nrf_wifi_fmac_buf_map_info *tx_buf_info = NULL; in rawtx_cmd_prep_callbk_fn() local
649 tx_buf_info = &sys_dev_ctx->tx_buf_info[desc_id]; in rawtx_cmd_prep_callbk_fn()
650 if (tx_buf_info->mapped) { in rawtx_cmd_prep_callbk_fn()
675 tx_buf_info->nwb = nwb; in rawtx_cmd_prep_callbk_fn()
676 tx_buf_info->mapped = true; in rawtx_cmd_prep_callbk_fn()
692 struct nrf_wifi_fmac_buf_map_info *tx_buf_info = NULL; in tx_cmd_prep_callbk_fn() local
718 tx_buf_info = &sys_dev_ctx->tx_buf_info[desc_id]; in tx_cmd_prep_callbk_fn()
720 if (tx_buf_info->mapped) { in tx_cmd_prep_callbk_fn()
747 tx_buf_info->nwb = nwb; in tx_cmd_prep_callbk_fn()
748 tx_buf_info->mapped = true; in tx_cmd_prep_callbk_fn()
[all …]
Dfmac_api.c63 sys_dev_ctx->tx_buf_info = nrf_wifi_osal_mem_zalloc(size); in nrf_wifi_sys_fmac_init_tx()
65 if (!sys_dev_ctx->tx_buf_info) { in nrf_wifi_sys_fmac_init_tx()
89 nrf_wifi_osal_mem_free(sys_dev_ctx->tx_buf_info); in nrf_wifi_sys_fmac_deinit_tx()
/nrf_wifi-latest/hw_if/hal/inc/common/
Dhal_structs_common.h236 struct nrf_wifi_hal_buf_map_info *tx_buf_info; member
/nrf_wifi-latest/fw_if/umac_if/inc/system/
Dfmac_structs.h474 struct nrf_wifi_fmac_buf_map_info *tx_buf_info; member
/nrf_wifi-latest/hw_if/hal/src/common/
Dhal_api_common.c708 nrf_wifi_osal_mem_free(hal_dev_ctx->tx_buf_info); in nrf_wifi_hal_dev_rem()
709 hal_dev_ctx->tx_buf_info = NULL; in nrf_wifi_hal_dev_rem()