Lines Matching refs:txbdp

1057 	struct txbd8 *txbdp;  in free_skb_tx_queue()  local
1061 txbdp = tx_queue->tx_bd_base; in free_skb_tx_queue()
1067 dma_unmap_single(priv->dev, be32_to_cpu(txbdp->bufPtr), in free_skb_tx_queue()
1068 be16_to_cpu(txbdp->length), DMA_TO_DEVICE); in free_skb_tx_queue()
1069 txbdp->lstatus = 0; in free_skb_tx_queue()
1072 txbdp++; in free_skb_tx_queue()
1073 dma_unmap_page(priv->dev, be32_to_cpu(txbdp->bufPtr), in free_skb_tx_queue()
1074 be16_to_cpu(txbdp->length), in free_skb_tx_queue()
1077 txbdp++; in free_skb_tx_queue()
1281 struct txbd8 *txbdp; in gfar_init_bds() local
1295 txbdp = tx_queue->tx_bd_base; in gfar_init_bds()
1297 txbdp->lstatus = 0; in gfar_init_bds()
1298 txbdp->bufPtr = 0; in gfar_init_bds()
1299 txbdp++; in gfar_init_bds()
1303 txbdp--; in gfar_init_bds()
1304 txbdp->status = cpu_to_be16(be16_to_cpu(txbdp->status) | in gfar_init_bds()
1759 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL; in gfar_start_xmit() local
1818 txbdp = txbdp_start = tx_queue->cur_tx; in gfar_start_xmit()
1819 lstatus = be32_to_cpu(txbdp->lstatus); in gfar_start_xmit()
1864 txbdp_tstamp = txbdp = next_txbd(txbdp, base, in gfar_start_xmit()
1879 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()
1883 lstatus = be32_to_cpu(txbdp->lstatus) | size | in gfar_start_xmit()
1896 txbdp->bufPtr = cpu_to_be32(bufaddr); in gfar_start_xmit()
1897 txbdp->lstatus = cpu_to_be32(lstatus); in gfar_start_xmit()
1947 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()
1974 txbdp = next_txbd(txbdp_start, base, tx_queue->tx_ring_size); in gfar_start_xmit()
1976 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()
1978 lstatus = be32_to_cpu(txbdp->lstatus); in gfar_start_xmit()
1983 txbdp->lstatus = cpu_to_be32(lstatus); in gfar_start_xmit()
1984 bufaddr = be32_to_cpu(txbdp->bufPtr); in gfar_start_xmit()
1985 dma_unmap_page(priv->dev, bufaddr, be16_to_cpu(txbdp->length), in gfar_start_xmit()
1987 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()