• Home
  • Raw
  • Download

Lines Matching refs:txdp

1448 		struct vxge_hw_fifo_txd *txdp =  in vxge_hw_fifo_txdl_reserve()  local
1452 priv = __vxge_hw_fifo_txdl_priv(fifo, txdp); in vxge_hw_fifo_txdl_reserve()
1462 *txdl_priv = (void *)(size_t)txdp->host_control; in vxge_hw_fifo_txdl_reserve()
1465 txdp = ((struct vxge_hw_fifo_txd *)*txdlh) + i; in vxge_hw_fifo_txdl_reserve()
1466 txdp->control_0 = txdp->control_1 = 0; in vxge_hw_fifo_txdl_reserve()
1495 struct vxge_hw_fifo_txd *txdp, *txdp_last; in vxge_hw_fifo_txdl_buffer_set() local
1498 txdp = (struct vxge_hw_fifo_txd *)txdlh + txdl_priv->frags; in vxge_hw_fifo_txdl_buffer_set()
1501 txdp->control_0 = txdp->control_1 = 0; in vxge_hw_fifo_txdl_buffer_set()
1503 txdp->control_0 |= VXGE_HW_FIFO_TXD_GATHER_CODE( in vxge_hw_fifo_txdl_buffer_set()
1505 txdp->control_1 |= fifo->interrupt_type; in vxge_hw_fifo_txdl_buffer_set()
1506 txdp->control_1 |= VXGE_HW_FIFO_TXD_INT_NUMBER( in vxge_hw_fifo_txdl_buffer_set()
1518 txdp->buffer_pointer = (u64)dma_pointer; in vxge_hw_fifo_txdl_buffer_set()
1519 txdp->control_0 |= VXGE_HW_FIFO_TXD_BUFFER_SIZE(size); in vxge_hw_fifo_txdl_buffer_set()
1602 struct vxge_hw_fifo_txd *txdp; in vxge_hw_fifo_txdl_next_completed() local
1609 txdp = *txdlh; in vxge_hw_fifo_txdl_next_completed()
1610 if (txdp == NULL) { in vxge_hw_fifo_txdl_next_completed()
1616 if (!(txdp->control_0 & VXGE_HW_FIFO_TXD_LIST_OWN_ADAPTER)) { in vxge_hw_fifo_txdl_next_completed()
1618 vxge_assert(txdp->host_control != 0); in vxge_hw_fifo_txdl_next_completed()
1622 *t_code = (u8)VXGE_HW_FIFO_TXD_T_CODE_GET(txdp->control_0); in vxge_hw_fifo_txdl_next_completed()