Home
last modified time | relevance | path

Searched refs:next_to_use (Results 1 – 25 of 87) sorted by relevance

1234

/Linux-v6.6/drivers/net/ethernet/mscc/
Docelot_fdma.c60 if (rx_ring->next_to_use >= rx_ring->next_to_clean) in ocelot_fdma_rx_ring_free()
62 (rx_ring->next_to_use - rx_ring->next_to_clean) - 1; in ocelot_fdma_rx_ring_free()
64 return rx_ring->next_to_clean - rx_ring->next_to_use - 1; in ocelot_fdma_rx_ring_free()
71 if (tx_ring->next_to_use >= tx_ring->next_to_clean) in ocelot_fdma_tx_ring_free()
73 (tx_ring->next_to_use - tx_ring->next_to_clean) - 1; in ocelot_fdma_tx_ring_free()
75 return tx_ring->next_to_clean - tx_ring->next_to_use - 1; in ocelot_fdma_tx_ring_free()
82 return tx_ring->next_to_clean == tx_ring->next_to_use; in ocelot_fdma_tx_ring_empty()
157 idx = rx_ring->next_to_use; in ocelot_fdma_alloc_rx_buffs()
180 rx_ring->next_to_use = idx; in ocelot_fdma_alloc_rx_buffs()
228 idx = ocelot_fdma_idx_prev(rx_ring->next_to_use, in ocelot_fdma_rx_set_llp()
[all …]
Docelot_fdma.h98 u16 next_to_use; member
130 u16 next_to_use; member
/Linux-v6.6/drivers/net/ethernet/intel/ixgbe/
Dixgbe_xsk.c155 u16 i = rx_ring->next_to_use; in ixgbe_alloc_rx_buffers_zc()
198 if (rx_ring->next_to_use != i) { in ixgbe_alloc_rx_buffers_zc()
199 rx_ring->next_to_use = i; in ixgbe_alloc_rx_buffers_zc()
370 if (failure || rx_ring->next_to_clean == rx_ring->next_to_use) in ixgbe_clean_rx_irq_zc()
421 tx_bi = &xdp_ring->tx_buffer_info[xdp_ring->next_to_use]; in ixgbe_xmit_zc()
426 tx_desc = IXGBE_TX_DESC(xdp_ring, xdp_ring->next_to_use); in ixgbe_xmit_zc()
438 xdp_ring->next_to_use++; in ixgbe_xmit_zc()
439 if (xdp_ring->next_to_use == xdp_ring->count) in ixgbe_xmit_zc()
440 xdp_ring->next_to_use = 0; in ixgbe_xmit_zc()
464 u16 ntc = tx_ring->next_to_clean, ntu = tx_ring->next_to_use; in ixgbe_clean_xdp_tx_irq()
[all …]
/Linux-v6.6/drivers/net/ethernet/hisilicon/hns3/hns3_common/
Dhclge_comm_cmd.c285 int ntu = ring->next_to_use; in hclge_comm_ring_space()
298 desc_to_use = &hw->cmq.csq.desc[hw->cmq.csq.next_to_use]; in hclge_comm_cmd_copy_desc()
300 (hw->cmq.csq.next_to_use)++; in hclge_comm_cmd_copy_desc()
301 if (hw->cmq.csq.next_to_use >= hw->cmq.csq.desc_num) in hclge_comm_cmd_copy_desc()
302 hw->cmq.csq.next_to_use = 0; in hclge_comm_cmd_copy_desc()
311 int ntu = ring->next_to_use; in hclge_comm_is_valid_csq_clean_head()
330 head, csq->next_to_use, csq->next_to_clean); in hclge_comm_cmd_csq_clean()
347 return head == hw->cmq.csq.next_to_use; in hclge_comm_cmd_csq_done()
497 ntc = hw->cmq.csq.next_to_use; in hclge_comm_cmd_send()
503 hw->cmq.csq.next_to_use); in hclge_comm_cmd_send()
[all …]
/Linux-v6.6/drivers/net/ethernet/microchip/lan966x/
Dlan966x_fdma.c665 int next_to_use, int len, in lan966x_fdma_tx_setup_dcb() argument
671 next_dcb = &tx->dcbs[next_to_use]; in lan966x_fdma_tx_setup_dcb()
683 static void lan966x_fdma_tx_start(struct lan966x_tx *tx, int next_to_use) in lan966x_fdma_tx_start() argument
691 dcb->nextptr = tx->dma + (next_to_use * in lan966x_fdma_tx_start()
702 tx->last_in_use = next_to_use; in lan966x_fdma_tx_start()
713 int next_to_use; in lan966x_fdma_xmit_xdpf() local
720 next_to_use = lan966x_fdma_get_next_dcb(tx); in lan966x_fdma_xmit_xdpf()
721 if (next_to_use < 0) { in lan966x_fdma_xmit_xdpf()
728 next_dcb_buf = &tx->dcbs_buf[next_to_use]; in lan966x_fdma_xmit_xdpf()
757 lan966x_fdma_tx_setup_dcb(tx, next_to_use, in lan966x_fdma_xmit_xdpf()
[all …]
/Linux-v6.6/drivers/net/ethernet/intel/ice/
Dice_controlq.h18 ((u16)((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
19 (R)->next_to_clean - (R)->next_to_use - 1))
54 u16 next_to_use; member
Dice_xsk.c489 u16 ntu = rx_ring->next_to_use; in __ice_alloc_rx_bufs_zc()
518 if (rx_ring->next_to_use != ntu) in __ice_alloc_rx_bufs_zc()
627 last_rs = xdp_ring->next_to_use ? xdp_ring->next_to_use - 1 : cnt - 1; in ice_clean_xdp_irq_zc()
689 u32 ntu = xdp_ring->next_to_use; in ice_xmit_xdp_tx_zc()
742 xdp_ring->next_to_use = ntu; in ice_xmit_xdp_tx_zc()
848 u32 ntu = rx_ring->next_to_use; in ice_clean_rx_irq_zc()
972 if (failure || ntc == rx_ring->next_to_use) in ice_clean_rx_irq_zc()
998 tx_desc = ICE_TX_DESC(xdp_ring, xdp_ring->next_to_use++); in ice_xmit_pkt()
1015 u16 ntu = xdp_ring->next_to_use; in ice_xmit_pkt_batch()
1033 xdp_ring->next_to_use = ntu; in ice_xmit_pkt_batch()
[all …]
Dice_txrx.h112 (u16)((((R)->next_to_clean > (R)->next_to_use) ? 0 : (R)->count) + \
113 (R)->next_to_clean - (R)->next_to_use - 1)
116 ((((R)->first_desc > (R)->next_to_use) ? 0 : (R)->count) + \
117 (R)->first_desc - (R)->next_to_use - 1)
324 u16 next_to_use; member
361 u16 next_to_use; member
Dice_txrx_lib.h122 writel_relaxed(xdp_ring->next_to_use, xdp_ring->tail); in ice_xdp_ring_update_tail()
133 u32 rs_idx = xdp_ring->next_to_use ? xdp_ring->next_to_use - 1 : xdp_ring->count - 1; in ice_set_rs_bit()
Dice_controlq.c377 cq->sq.next_to_use = 0; in ice_init_sq()
437 cq->rq.next_to_use = 0; in ice_init_rq()
942 return rd32(hw, cq->sq.head) == cq->sq.next_to_use; in ice_sq_done()
1010 details = ICE_CTL_Q_DETAILS(cq->sq, cq->sq.next_to_use); in ice_sq_send_cmd()
1028 desc_on_ring = ICE_CTL_Q_DESC(cq->sq, cq->sq.next_to_use); in ice_sq_send_cmd()
1035 dma_buf = &cq->sq.r.sq_bi[cq->sq.next_to_use]; in ice_sq_send_cmd()
1054 (cq->sq.next_to_use)++; in ice_sq_send_cmd()
1055 if (cq->sq.next_to_use == cq->sq.count) in ice_sq_send_cmd()
1056 cq->sq.next_to_use = 0; in ice_sq_send_cmd()
1057 wr32(hw, cq->sq.tail, cq->sq.next_to_use); in ice_sq_send_cmd()
[all …]
Dice_txrx_lib.c17 u16 prev_ntu = rx_ring->next_to_use & ~0x7; in ice_release_rx_desc()
19 rx_ring->next_to_use = val; in ice_release_rx_desc()
334 u32 ntu = xdp_ring->next_to_use; in __ice_xmit_xdp_ring()
412 xdp_ring->next_to_use = ntu; in __ice_xmit_xdp_ring()
Dice_txrx.c67 i = tx_ring->next_to_use; in ice_prgm_fdir_fltr()
78 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0; in ice_prgm_fdir_fltr()
102 writel(tx_ring->next_to_use, tx_ring->tail); in ice_prgm_fdir_fltr()
177 tx_ring->next_to_use = 0; in ice_clean_tx_ring()
368 tx_ring->next_to_use = 0; in ice_setup_tx_ring()
442 rx_ring->next_to_use = 0; in ice_clean_rx_ring()
509 rx_ring->next_to_use = 0; in ice_setup_rx_ring()
670 tx_buf = &xdp_ring->tx_buf[xdp_ring->next_to_use]; in ice_xdp_xmit()
754 u16 ntu = rx_ring->next_to_use; in ice_alloc_rx_bufs()
797 if (rx_ring->next_to_use != ntu) in ice_alloc_rx_bufs()
[all …]
/Linux-v6.6/drivers/net/ethernet/intel/i40e/
Di40e_xsk.c246 u16 ntu = rx_ring->next_to_use; in i40e_alloc_rx_buffers_zc()
527 if (failure || next_to_clean == rx_ring->next_to_use) in i40e_clean_rx_irq_zc()
547 tx_desc = I40E_TX_DESC(xdp_ring, xdp_ring->next_to_use++); in i40e_xmit_pkt()
557 u16 ntu = xdp_ring->next_to_use; in i40e_xmit_pkt_batch()
575 xdp_ring->next_to_use = ntu; in i40e_xmit_pkt_batch()
593 u16 ntu = xdp_ring->next_to_use ? xdp_ring->next_to_use - 1 : xdp_ring->count - 1; in i40e_set_rs_bit()
617 if (xdp_ring->next_to_use + nb_pkts >= xdp_ring->count) { in i40e_xmit_zc()
618 nb_processed = xdp_ring->count - xdp_ring->next_to_use; in i40e_xmit_zc()
620 xdp_ring->next_to_use = 0; in i40e_xmit_zc()
758 u16 ntu = rx_ring->next_to_use; in i40e_xsk_clean_rx_ring()
[all …]
Di40e_adminq.c353 hw->aq.asq.next_to_use = 0; in i40e_init_asq()
412 hw->aq.arq.next_to_use = 0; in i40e_init_arq()
766 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in i40e_asq_done()
815 details = I40E_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use); in i40e_asq_send_command_atomic_exec()
870 desc_on_ring = I40E_ADMINQ_DESC(hw->aq.asq, hw->aq.asq.next_to_use); in i40e_asq_send_command_atomic_exec()
877 dma_buff = &(hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]); in i40e_asq_send_command_atomic_exec()
895 (hw->aq.asq.next_to_use)++; in i40e_asq_send_command_atomic_exec()
896 if (hw->aq.asq.next_to_use == hw->aq.asq.count) in i40e_asq_send_command_atomic_exec()
897 hw->aq.asq.next_to_use = 0; in i40e_asq_send_command_atomic_exec()
899 wr32(hw, hw->aq.asq.tail, hw->aq.asq.next_to_use); in i40e_asq_send_command_atomic_exec()
[all …]
Di40e_txrx.c31 i = tx_ring->next_to_use; in i40e_fdir()
35 tx_ring->next_to_use = (i < tx_ring->count) ? i : 0; in i40e_fdir()
120 i = tx_ring->next_to_use; in i40e_program_fdir_filter()
125 i = tx_ring->next_to_use; in i40e_program_fdir_filter()
129 tx_ring->next_to_use = ((i + 1) < tx_ring->count) ? i + 1 : 0; in i40e_program_fdir_filter()
154 writel(tx_ring->next_to_use, tx_ring->tail); in i40e_program_fdir_filter()
812 tx_ring->next_to_use = 0; in i40e_clean_tx_ring()
858 tail = ring->next_to_use; in i40e_get_tx_pending()
1452 tx_ring->next_to_use = 0; in i40e_setup_tx_descriptors()
1525 rx_ring->next_to_use = 0; in i40e_clean_rx_ring()
[all …]
/Linux-v6.6/drivers/net/ethernet/freescale/enetc/
Denetc_cbdr.c24 cbdr->next_to_use = 0; in enetc_setup_cbdr()
41 enetc_wr_reg(cbdr->cir, cbdr->next_to_use); in enetc_setup_cbdr()
87 return (r->next_to_clean - r->next_to_use - 1 + r->bd_count) % in enetc_cbd_unused()
104 i = ring->next_to_use; in enetc_send_cmd()
111 ring->next_to_use = i; in enetc_send_cmd()
/Linux-v6.6/drivers/net/ethernet/hisilicon/hns3/hns3vf/
Dhclgevf_mbx.c159 return tail == hw->hw.cmq.crq.next_to_use; in hclgevf_cmd_crq_empty()
234 desc = &crq->desc[crq->next_to_use]; in hclgevf_mbx_handler()
237 flag = le16_to_cpu(crq->desc[crq->next_to_use].flag); in hclgevf_mbx_handler()
245 crq->desc[crq->next_to_use].flag = 0; in hclgevf_mbx_handler()
275 crq->desc[crq->next_to_use].flag = 0; in hclgevf_mbx_handler()
281 crq->next_to_use); in hclgevf_mbx_handler()
/Linux-v6.6/drivers/net/ethernet/atheros/atlx/
Datl1.c1112 atomic_set(&tpd_ring->next_to_use, 0); in atl1_init_ring_ptrs()
1116 atomic_set(&rfd_ring->next_to_use, 0); in atl1_init_ring_ptrs()
1118 rrd_ring->next_to_use = 0; in atl1_init_ring_ptrs()
1156 atomic_set(&rfd_ring->next_to_use, 0); in atl1_clean_rx_ring()
1158 rrd_ring->next_to_use = 0; in atl1_clean_rx_ring()
1198 atomic_set(&tpd_ring->next_to_use, 0); in atl1_clean_tx_ring()
1497 value = ((atomic_read(&adapter->tpd_ring.next_to_use) in atl1_configure()
1501 ((atomic_read(&adapter->rfd_ring.next_to_use) in atl1_configure()
1743 tpd_next_to_use = atomic_read(&adapter->tpd_ring.next_to_use); in atl1_update_mailbox()
1744 rfd_next_to_use = atomic_read(&adapter->rfd_ring.next_to_use); in atl1_update_mailbox()
[all …]
/Linux-v6.6/drivers/net/ethernet/intel/igc/
Digc_dump.c142 n, tx_ring->next_to_use, tx_ring->next_to_clean, in igc_rings_dump()
181 if (i == tx_ring->next_to_use && in igc_rings_dump()
184 else if (i == tx_ring->next_to_use) in igc_rings_dump()
215 netdev_info(netdev, "%5d %5X %5X\n", n, rx_ring->next_to_use, in igc_rings_dump()
264 if (i == rx_ring->next_to_use) in igc_rings_dump()
/Linux-v6.6/drivers/net/ethernet/intel/iavf/
Diavf_adminq.c342 hw->aq.asq.next_to_use = 0; in iavf_init_asq()
407 hw->aq.arq.next_to_use = 0; in iavf_init_arq()
627 return rd32(hw, hw->aq.asq.head) == hw->aq.asq.next_to_use; in iavf_asq_done()
674 details = IAVF_ADMINQ_DETAILS(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
729 desc_on_ring = IAVF_ADMINQ_DESC(hw->aq.asq, hw->aq.asq.next_to_use); in iavf_asq_send_command()
736 dma_buff = &hw->aq.asq.r.asq_bi[hw->aq.asq.next_to_use]; in iavf_asq_send_command()
754 (hw->aq.asq.next_to_use)++; in iavf_asq_send_command()
755 if (hw->aq.asq.next_to_use == hw->aq.asq.count) in iavf_asq_send_command()
756 hw->aq.asq.next_to_use = 0; in iavf_asq_send_command()
758 wr32(hw, hw->aq.asq.tail, hw->aq.asq.next_to_use); in iavf_asq_send_command()
[all …]
Diavf_txrx.c76 tx_ring->next_to_use = 0; in iavf_clean_tx_ring()
121 tail = ring->next_to_use; in iavf_get_tx_pending()
674 tx_ring->next_to_use = 0; in iavf_setup_tx_descriptors()
739 rx_ring->next_to_use = 0; in iavf_clean_rx_ring()
795 rx_ring->next_to_use = 0; in iavf_setup_rx_descriptors()
811 rx_ring->next_to_use = val; in iavf_release_rx_desc()
918 u16 ntu = rx_ring->next_to_use; in iavf_alloc_rx_buffers()
959 if (rx_ring->next_to_use != ntu) in iavf_alloc_rx_buffers()
965 if (rx_ring->next_to_use != ntu) in iavf_alloc_rx_buffers()
2142 int i = tx_ring->next_to_use; in iavf_create_tx_ctx()
[all …]
/Linux-v6.6/drivers/net/ethernet/hisilicon/hns/
Dhns_enet.c39 struct hnae_desc *desc = &ring->desc[ring->next_to_use]; in fill_v2_desc_hw()
40 struct hnae_desc_cb *desc_cb = &ring->desc_cb[ring->next_to_use]; in fill_v2_desc_hw()
125 ring_ptr_move_fw(ring, next_to_use); in fill_v2_desc_hw()
147 struct hnae_desc *desc = &ring->desc[ring->next_to_use]; in fill_desc()
148 struct hnae_desc_cb *desc_cb = &ring->desc_cb[ring->next_to_use]; in fill_desc()
201 ring_ptr_move_fw(ring, next_to_use); in fill_desc()
206 ring_ptr_move_bw(ring, next_to_use); in unfill_desc()
315 int size, next_to_use; in hns_nic_net_xmit_hw() local
332 next_to_use = ring->next_to_use; in hns_nic_net_xmit_hw()
376 while (ring->next_to_use != next_to_use) { in hns_nic_net_xmit_hw()
[all …]
/Linux-v6.6/drivers/net/ethernet/atheros/atl1e/
Datl1e_main.c751 tx_ring->next_to_use = 0; in atl1e_init_ring_ptrs()
1559 u16 next_to_use = 0; in atl1e_tpd_avail() local
1563 next_to_use = tx_ring->next_to_use; in atl1e_tpd_avail()
1565 return (u16)(next_to_clean > next_to_use) ? in atl1e_tpd_avail()
1566 (next_to_clean - next_to_use - 1) : in atl1e_tpd_avail()
1567 (tx_ring->count + next_to_clean - next_to_use - 1); in atl1e_tpd_avail()
1578 u16 next_to_use = 0; in atl1e_get_tpd() local
1580 next_to_use = tx_ring->next_to_use; in atl1e_get_tpd()
1581 if (++tx_ring->next_to_use == tx_ring->count) in atl1e_get_tpd()
1582 tx_ring->next_to_use = 0; in atl1e_get_tpd()
[all …]
/Linux-v6.6/drivers/net/ethernet/atheros/atl1c/
Datl1c_main.c899 tpd_ring->next_to_use = 0; in atl1c_clean_tx_ring()
922 rfd_ring->next_to_use = 0; in atl1c_clean_rx_ring()
923 rrd_ring->next_to_use = 0; in atl1c_clean_rx_ring()
939 tpd_ring[i].next_to_use = 0; in atl1c_init_ring_ptrs()
947 rfd_ring[i].next_to_use = 0; in atl1c_init_ring_ptrs()
949 rrd_ring[i].next_to_use = 0; in atl1c_init_ring_ptrs()
1808 next_next = rfd_next_to_use = rfd_ring->next_to_use; in atl1c_alloc_rx_buffer()
1858 rfd_ring->next_to_use = rfd_next_to_use; in atl1c_alloc_rx_buffer()
1860 rfd_ring->next_to_use & MB_RFDX_PROD_IDX_MASK); in atl1c_alloc_rx_buffer()
2016 u16 next_to_use = 0; in atl1c_tpd_avail() local
[all …]
/Linux-v6.6/drivers/net/ethernet/hisilicon/hns3/
Dhns3_enet.c971 ntu = tx_spare->next_to_use; in hns3_tx_spare_space()
1094 u32 ntu = tx_spare->next_to_use; in hns3_tx_spare_alloc()
1107 tx_spare->next_to_use = ntu + size; in hns3_tx_spare_alloc()
1108 if (tx_spare->next_to_use == tx_spare->len) in hns3_tx_spare_alloc()
1109 tx_spare->next_to_use = 0; in hns3_tx_spare_alloc()
1120 if (len > tx_spare->next_to_use) { in hns3_tx_spare_rollback()
1121 len -= tx_spare->next_to_use; in hns3_tx_spare_rollback()
1122 tx_spare->next_to_use = tx_spare->len - len; in hns3_tx_spare_rollback()
1124 tx_spare->next_to_use -= len; in hns3_tx_spare_rollback()
1685 struct hns3_desc *desc = &ring->desc[ring->next_to_use]; in hns3_fill_desc()
[all …]

1234