Lines Matching refs:txdp

1461 		struct vxge_hw_fifo_txd *txdp =  in vxge_hw_fifo_txdl_reserve()  local
1465 priv = __vxge_hw_fifo_txdl_priv(fifo, txdp); in vxge_hw_fifo_txdl_reserve()
1475 *txdl_priv = (void *)(size_t)txdp->host_control; in vxge_hw_fifo_txdl_reserve()
1478 txdp = ((struct vxge_hw_fifo_txd *)*txdlh) + i; in vxge_hw_fifo_txdl_reserve()
1479 txdp->control_0 = txdp->control_1 = 0; in vxge_hw_fifo_txdl_reserve()
1508 struct vxge_hw_fifo_txd *txdp, *txdp_last; in vxge_hw_fifo_txdl_buffer_set() local
1514 txdp = (struct vxge_hw_fifo_txd *)txdlh + txdl_priv->frags; in vxge_hw_fifo_txdl_buffer_set()
1517 txdp->control_0 = txdp->control_1 = 0; in vxge_hw_fifo_txdl_buffer_set()
1519 txdp->control_0 |= VXGE_HW_FIFO_TXD_GATHER_CODE( in vxge_hw_fifo_txdl_buffer_set()
1521 txdp->control_1 |= fifo->interrupt_type; in vxge_hw_fifo_txdl_buffer_set()
1522 txdp->control_1 |= VXGE_HW_FIFO_TXD_INT_NUMBER( in vxge_hw_fifo_txdl_buffer_set()
1534 txdp->buffer_pointer = (u64)dma_pointer; in vxge_hw_fifo_txdl_buffer_set()
1535 txdp->control_0 |= VXGE_HW_FIFO_TXD_BUFFER_SIZE(size); in vxge_hw_fifo_txdl_buffer_set()
1621 struct vxge_hw_fifo_txd *txdp; in vxge_hw_fifo_txdl_next_completed() local
1628 txdp = *txdlh; in vxge_hw_fifo_txdl_next_completed()
1629 if (txdp == NULL) { in vxge_hw_fifo_txdl_next_completed()
1635 if (!(txdp->control_0 & VXGE_HW_FIFO_TXD_LIST_OWN_ADAPTER)) { in vxge_hw_fifo_txdl_next_completed()
1637 vxge_assert(txdp->host_control != 0); in vxge_hw_fifo_txdl_next_completed()
1641 *t_code = (u8)VXGE_HW_FIFO_TXD_T_CODE_GET(txdp->control_0); in vxge_hw_fifo_txdl_next_completed()