Home
last modified time | relevance | path

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

/freebsd/sys/dev/ice/
H A Dice_controlq.c176 cq->rq.dma_head = ice_calloc(hw, cq->num_rq_entries, in ice_alloc_rq_bufs()
178 if (!cq->rq.dma_head) in ice_alloc_rq_bufs()
180 cq->rq.r.rq_bi = (struct ice_dma_mem *)cq->rq.dma_head; in ice_alloc_rq_bufs()
221 ice_free(hw, cq->rq.dma_head); in ice_alloc_sq_bufs()
222 cq->rq.dma_head = NULL; in ice_alloc_sq_bufs()
238 cq->sq.dma_head = ice_calloc(hw, cq->num_sq_entries, in ice_alloc_sq_bufs()
240 if (!cq->sq.dma_head) in ice_alloc_sq_bufs()
242 cq->sq.r.sq_bi = (struct ice_dma_mem *)cq->sq.dma_head; in ice_alloc_sq_bufs()
261 ice_free(hw, cq->sq.dma_head); in ice_cfg_cq_regs()
262 cq->sq.dma_head in ice_cfg_cq_regs()
[all...]
H A Dice_controlq.h86 void *dma_head; /* Virtual address to DMA head */
69 void *dma_head; /* Virtual address to DMA head */ global() member
/freebsd/sys/dev/iavf/
H A Diavf_adminq.c144 ret_code = iavf_allocate_virt_mem(hw, &hw->aq.arq.dma_head, in iavf_alloc_arq_bufs()
148 hw->aq.arq.r.arq_bi = (struct iavf_dma_mem *)hw->aq.arq.dma_head.va; in iavf_alloc_arq_bufs()
190 iavf_free_virt_mem(hw, &hw->aq.arq.dma_head); in iavf_alloc_arq_bufs()
206 ret_code = iavf_allocate_virt_mem(hw, &hw->aq.asq.dma_head, in iavf_alloc_asq_bufs()
210 hw->aq.asq.r.asq_bi = (struct iavf_dma_mem *)hw->aq.asq.dma_head.va; in iavf_alloc_asq_bufs()
230 iavf_free_virt_mem(hw, &hw->aq.asq.dma_head); in iavf_alloc_asq_bufs()
251 iavf_free_virt_mem(hw, &hw->aq.arq.dma_head); in iavf_free_arq_bufs()
274 iavf_free_virt_mem(hw, &hw->aq.asq.dma_head); in iavf_free_asq_bufs()
H A Diavf_adminq.h45 struct iavf_virt_mem dma_head; /* space for dma structures */ member
/freebsd/sys/dev/ixl/
H A Di40e_adminq.c159 ret_code = i40e_allocate_virt_mem(hw, &hw->aq.arq.dma_head, in i40e_alloc_arq_bufs()
163 hw->aq.arq.r.arq_bi = (struct i40e_dma_mem *)hw->aq.arq.dma_head.va; in i40e_alloc_arq_bufs()
205 i40e_free_virt_mem(hw, &hw->aq.arq.dma_head); in i40e_alloc_arq_bufs()
221 ret_code = i40e_allocate_virt_mem(hw, &hw->aq.asq.dma_head, in i40e_alloc_asq_bufs()
225 hw->aq.asq.r.asq_bi = (struct i40e_dma_mem *)hw->aq.asq.dma_head.va; in i40e_alloc_asq_bufs()
245 i40e_free_virt_mem(hw, &hw->aq.asq.dma_head); in i40e_alloc_asq_bufs()
266 i40e_free_virt_mem(hw, &hw->aq.arq.dma_head); in i40e_free_arq_bufs()
289 i40e_free_virt_mem(hw, &hw->aq.asq.dma_head); in i40e_free_asq_bufs()
H A Di40e_adminq.h47 struct i40e_virt_mem dma_head; /* space for dma structures */ member