Home
last modified time | relevance | path

Searched refs:asq (Results 1 – 7 of 7) sorted by relevance

/f-stack/dpdk/drivers/common/iavf/
H A Diavf_adminq.c183 hw->aq.asq.r.asq_bi = (struct iavf_dma_mem *)hw->aq.asq.dma_head.va; in iavf_alloc_asq_bufs()
268 wr32(hw, hw->aq.asq.bal, IAVF_LO_DWORD(hw->aq.asq.desc_buf.pa)); in iavf_config_asq_regs()
269 wr32(hw, hw->aq.asq.bah, IAVF_HI_DWORD(hw->aq.asq.desc_buf.pa)); in iavf_config_asq_regs()
583 struct iavf_adminq_ring *asq = &(hw->aq.asq); in iavf_clean_asq() local
605 if (ntc == asq->count) in iavf_clean_asq()
628 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in iavf_asq_done()
676 details = IAVF_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
736 desc_on_ring = IAVF_ADMINQ_DESC(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
744 dma_buff = &(hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]); in iavf_asq_send_command()
764 if (hw->aq.asq.next_to_use == hw->aq.asq.count) in iavf_asq_send_command()
[all …]
H A Diavf_adminq.h67 struct iavf_adminq_ring asq; /* send queue */ member
H A Diavf_common.c332 if (hw->aq.asq.len) in iavf_check_asq_alive()
333 return !!(rd32(hw, hw->aq.asq.len) & in iavf_check_asq_alive()
/f-stack/dpdk/drivers/net/i40e/base/
H A Di40e_adminq.c198 hw->aq.asq.r.asq_bi = (struct i40e_dma_mem *)hw->aq.asq.dma_head.va; in i40e_alloc_asq_bufs()
301 wr32(hw, hw->aq.asq.bal, I40E_LO_DWORD(hw->aq.asq.desc_buf.pa)); in i40e_config_asq_regs()
302 wr32(hw, hw->aq.asq.bah, I40E_HI_DWORD(hw->aq.asq.desc_buf.pa)); in i40e_config_asq_regs()
783 struct i40e_adminq_ring *asq = &(hw->aq.asq); in i40e_clean_asq() local
805 if (ntc == asq->count) in i40e_clean_asq()
832 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in i40e_asq_done()
880 details = I40E_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use);
940 desc_on_ring = I40E_ADMINQ_DESC(hw->aq.asq, hw->aq.asq.next_to_use);
948 dma_buff = &(hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]);
968 if (hw->aq.asq.next_to_use == hw->aq.asq.count)
[all …]
H A Di40e_adminq.h67 struct i40e_adminq_ring asq; /* send queue */ member
H A Di40e_common.c378 if (hw->aq.asq.len) in i40e_check_asq_alive()
382 return !!(rd32(hw, hw->aq.asq.len) & in i40e_check_asq_alive()
385 return !!(rd32(hw, hw->aq.asq.len) & in i40e_check_asq_alive()
392 return !!(rd32(hw, hw->aq.asq.len) & in i40e_check_asq_alive()
395 return !!(rd32(hw, hw->aq.asq.len) & in i40e_check_asq_alive()
/f-stack/dpdk/doc/guides/rel_notes/
H A Drelease_2_1.rst214 * Enhancements on adminq init and sending asq command.