Home
last modified time | relevance | path

Searched refs:sq_head (Results 1 – 5 of 5) sorted by relevance

/dpdk/drivers/dma/hisilicon/
H A Dhisi_dmadev.c401 hw->sq_head = 0; in hisi_dma_start()
691 uint16_t sq_head = hw->sq_head; in hisi_dma_completed() local
699 if (hw->status[sq_head]) { in hisi_dma_completed()
703 sq_head = (sq_head + 1) & hw->sq_depth_mask; in hisi_dma_completed()
708 hw->sq_head = sq_head; in hisi_dma_completed()
751 uint16_t sq_head = hw->sq_head; in hisi_dma_completed_status() local
762 sq_head = (sq_head + 1) & hw->sq_depth_mask; in hisi_dma_completed_status()
767 hw->sq_head = sq_head; in hisi_dma_completed_status()
778 uint16_t sq_head = hw->sq_head; in hisi_dma_burst_capacity() local
783 return (sq_tail >= sq_head) ? hw->sq_depth_mask - sq_tail + sq_head : in hisi_dma_burst_capacity()
[all …]
H A Dhisi_dmadev.h222 uint16_t sq_head; member
/dpdk/drivers/net/thunderx/
H A Dnicvf_struct.h33 uintptr_t sq_head; member
H A Dnicvf_rxtx.c81 curr_head = nicvf_addr_read(sq->sq_head) >> 4; in nicvf_single_pool_free_xmited_buffers()
103 curr_head = nicvf_addr_read(sq->sq_head) >> 4; in nicvf_multi_pool_free_xmited_buffers()
H A Dnicvf_ethdev.c990 txq->sq_head = nicvf_qset_base(nic, qidx) + NIC_QSET_SQ_0_7_HEAD; in nicvf_dev_tx_queue_setup()