Lines Matching refs:txdp

1466 		struct vxge_hw_fifo_txd *txdp =  in vxge_hw_fifo_txdl_reserve()  local
1470 priv = __vxge_hw_fifo_txdl_priv(fifo, txdp); in vxge_hw_fifo_txdl_reserve()
1480 *txdl_priv = (void *)(size_t)txdp->host_control; in vxge_hw_fifo_txdl_reserve()
1483 txdp = ((struct vxge_hw_fifo_txd *)*txdlh) + i; in vxge_hw_fifo_txdl_reserve()
1484 txdp->control_0 = txdp->control_1 = 0; in vxge_hw_fifo_txdl_reserve()
1513 struct vxge_hw_fifo_txd *txdp, *txdp_last; in vxge_hw_fifo_txdl_buffer_set() local
1519 txdp = (struct vxge_hw_fifo_txd *)txdlh + txdl_priv->frags; in vxge_hw_fifo_txdl_buffer_set()
1522 txdp->control_0 = txdp->control_1 = 0; in vxge_hw_fifo_txdl_buffer_set()
1524 txdp->control_0 |= VXGE_HW_FIFO_TXD_GATHER_CODE( in vxge_hw_fifo_txdl_buffer_set()
1526 txdp->control_1 |= fifo->interrupt_type; in vxge_hw_fifo_txdl_buffer_set()
1527 txdp->control_1 |= VXGE_HW_FIFO_TXD_INT_NUMBER( in vxge_hw_fifo_txdl_buffer_set()
1539 txdp->buffer_pointer = (u64)dma_pointer; in vxge_hw_fifo_txdl_buffer_set()
1540 txdp->control_0 |= VXGE_HW_FIFO_TXD_BUFFER_SIZE(size); in vxge_hw_fifo_txdl_buffer_set()
1626 struct vxge_hw_fifo_txd *txdp; in vxge_hw_fifo_txdl_next_completed() local
1633 txdp = *txdlh; in vxge_hw_fifo_txdl_next_completed()
1634 if (txdp == NULL) { in vxge_hw_fifo_txdl_next_completed()
1640 if (!(txdp->control_0 & VXGE_HW_FIFO_TXD_LIST_OWN_ADAPTER)) { in vxge_hw_fifo_txdl_next_completed()
1642 vxge_assert(txdp->host_control != 0); in vxge_hw_fifo_txdl_next_completed()
1646 *t_code = (u8)VXGE_HW_FIFO_TXD_T_CODE_GET(txdp->control_0); in vxge_hw_fifo_txdl_next_completed()