Lines Matching refs:txbdp

1097 	struct txbd8 *txbdp;  in free_skb_tx_queue()  local
1101 txbdp = tx_queue->tx_bd_base; in free_skb_tx_queue()
1107 dma_unmap_single(priv->dev, be32_to_cpu(txbdp->bufPtr), in free_skb_tx_queue()
1108 be16_to_cpu(txbdp->length), DMA_TO_DEVICE); in free_skb_tx_queue()
1109 txbdp->lstatus = 0; in free_skb_tx_queue()
1112 txbdp++; in free_skb_tx_queue()
1113 dma_unmap_page(priv->dev, be32_to_cpu(txbdp->bufPtr), in free_skb_tx_queue()
1114 be16_to_cpu(txbdp->length), in free_skb_tx_queue()
1117 txbdp++; in free_skb_tx_queue()
1321 struct txbd8 *txbdp; in gfar_init_bds() local
1335 txbdp = tx_queue->tx_bd_base; in gfar_init_bds()
1337 txbdp->lstatus = 0; in gfar_init_bds()
1338 txbdp->bufPtr = 0; in gfar_init_bds()
1339 txbdp++; in gfar_init_bds()
1343 txbdp--; in gfar_init_bds()
1344 txbdp->status = cpu_to_be16(be16_to_cpu(txbdp->status) | in gfar_init_bds()
1809 struct txbd8 *txbdp, *txbdp_start, *base, *txbdp_tstamp = NULL; in gfar_start_xmit() local
1868 txbdp = txbdp_start = tx_queue->cur_tx; in gfar_start_xmit()
1869 lstatus = be32_to_cpu(txbdp->lstatus); in gfar_start_xmit()
1914 txbdp_tstamp = txbdp = next_txbd(txbdp, base, in gfar_start_xmit()
1929 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()
1933 lstatus = be32_to_cpu(txbdp->lstatus) | size | in gfar_start_xmit()
1946 txbdp->bufPtr = cpu_to_be32(bufaddr); in gfar_start_xmit()
1947 txbdp->lstatus = cpu_to_be32(lstatus); in gfar_start_xmit()
1996 tx_queue->cur_tx = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()
2023 txbdp = next_txbd(txbdp_start, base, tx_queue->tx_ring_size); in gfar_start_xmit()
2025 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()
2027 lstatus = be32_to_cpu(txbdp->lstatus); in gfar_start_xmit()
2032 txbdp->lstatus = cpu_to_be32(lstatus); in gfar_start_xmit()
2033 bufaddr = be32_to_cpu(txbdp->bufPtr); in gfar_start_xmit()
2034 dma_unmap_page(priv->dev, bufaddr, be16_to_cpu(txbdp->length), in gfar_start_xmit()
2036 txbdp = next_txbd(txbdp, base, tx_queue->tx_ring_size); in gfar_start_xmit()