Home
last modified time | relevance | path

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

/nrf_wifi-latest/hw_if/hal/src/system/
Dhal_api.c134 struct nrf_wifi_hal_buf_map_info *rx_buf_info = NULL; in nrf_wifi_sys_hal_buf_map_rx() local
139 if (!hal_dev_ctx || !hal_dev_ctx->rx_buf_info[pool_id]) { in nrf_wifi_sys_hal_buf_map_rx()
145 rx_buf_info = &hal_dev_ctx->rx_buf_info[pool_id][buf_id]; in nrf_wifi_sys_hal_buf_map_rx()
147 if (rx_buf_info->mapped) { in nrf_wifi_sys_hal_buf_map_rx()
153 rx_buf_info->virt_addr = buf; in nrf_wifi_sys_hal_buf_map_rx()
154 rx_buf_info->buf_len = buf_len; in nrf_wifi_sys_hal_buf_map_rx()
176 rx_buf_info->phy_addr = nrf_wifi_bal_dma_map(hal_dev_ctx->bal_dev_ctx, in nrf_wifi_sys_hal_buf_map_rx()
181 if (!rx_buf_info->phy_addr) { in nrf_wifi_sys_hal_buf_map_rx()
188 if (rx_buf_info->phy_addr) { in nrf_wifi_sys_hal_buf_map_rx()
189 rx_buf_info->mapped = true; in nrf_wifi_sys_hal_buf_map_rx()
[all …]
/nrf_wifi-latest/fw_if/umac_if/src/system/
Drx.c173 struct nrf_wifi_fmac_buf_map_info *rx_buf_info = NULL; in nrf_wifi_fmac_rx_cmd_send() local
196 rx_buf_info = &sys_dev_ctx->rx_buf_info[desc_id]; in nrf_wifi_fmac_rx_cmd_send()
201 if (rx_buf_info->mapped) { in nrf_wifi_fmac_rx_cmd_send()
235 rx_buf_info->nwb = nwb; in nrf_wifi_fmac_rx_cmd_send()
236 rx_buf_info->mapped = true; in nrf_wifi_fmac_rx_cmd_send()
254 if (!rx_buf_info->mapped) { in nrf_wifi_fmac_rx_cmd_send()
273 nrf_wifi_osal_nbuf_free((void *)rx_buf_info->nwb); in nrf_wifi_fmac_rx_cmd_send()
274 rx_buf_info->nwb = 0; in nrf_wifi_fmac_rx_cmd_send()
275 rx_buf_info->mapped = false; in nrf_wifi_fmac_rx_cmd_send()
333 struct nrf_wifi_fmac_buf_map_info *rx_buf_info = NULL; in nrf_wifi_fmac_rx_event_process() local
[all …]
Dfmac_api.c109 sys_dev_ctx->rx_buf_info = nrf_wifi_osal_mem_zalloc(size); in nrf_wifi_sys_fmac_init_rx()
111 if (!sys_dev_ctx->rx_buf_info) { in nrf_wifi_sys_fmac_init_rx()
185 nrf_wifi_osal_mem_free(sys_dev_ctx->rx_buf_info); in nrf_wifi_sys_fmac_deinit_rx()
187 sys_dev_ctx->rx_buf_info = NULL; in nrf_wifi_sys_fmac_deinit_rx()
/nrf_wifi-latest/hw_if/hal/inc/common/
Dhal_structs_common.h234 struct nrf_wifi_hal_buf_map_info *rx_buf_info[MAX_NUM_OF_RX_QUEUES]; member
/nrf_wifi-latest/fw_if/umac_if/inc/system/
Dfmac_structs.h471 struct nrf_wifi_fmac_buf_map_info *rx_buf_info; member
/nrf_wifi-latest/hw_if/hal/src/common/
Dhal_api_common.c712 nrf_wifi_osal_mem_free(hal_dev_ctx->rx_buf_info[i]); in nrf_wifi_hal_dev_rem()
713 hal_dev_ctx->rx_buf_info[i] = NULL; in nrf_wifi_hal_dev_rem()