Home
last modified time | relevance | path

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

/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()
587 struct iavf_adminq_ring *asq = &(hw->aq.asq); in iavf_clean_asq() local
609 if (ntc == asq->count) in iavf_clean_asq()
632 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in iavf_asq_done()
680 details = IAVF_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
740 desc_on_ring = IAVF_ADMINQ_DESC(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
748 dma_buff = &(hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]); in iavf_asq_send_command()
768 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()
/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()
789 struct i40e_adminq_ring *asq = &(hw->aq.asq); in i40e_clean_asq() local
811 if (ntc == asq->count) in i40e_clean_asq()
838 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in i40e_asq_done()
885 details = I40E_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use);
945 desc_on_ring = I40E_ADMINQ_DESC(hw->aq.asq, hw->aq.asq.next_to_use);
953 dma_buff = &(hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]);
973 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()
/dpdk/doc/guides/rel_notes/
H A Drelease_2_1.rst213 * Enhancements on adminq init and sending asq command.