Lines Matching refs:txd
243 static BufferDesc txd __attribute__ ((aligned(8))); variable
619 txd.link = (u32) 0; in ns8382x_init_txd()
620 txd.bufptr = cpu_to_le32((u32) & txb[0]); in ns8382x_init_txd()
621 txd.cmdsts = (u32) 0; in ns8382x_init_txd()
622 txd.extsts = (u32) 0; in ns8382x_init_txd()
625 OUTL(dev, phys_to_bus((u32)&txd), TxRingPtr); in ns8382x_init_txd()
628 INL(dev, TxRingPtr), &txd); in ns8382x_init_txd()
747 txd.link = cpu_to_le32(0x0); in ns8382x_send()
748 txd.bufptr = cpu_to_le32(phys_to_bus((u32)packet)); in ns8382x_send()
749 txd.extsts = cpu_to_le32(0x0); in ns8382x_send()
750 txd.cmdsts = cpu_to_le32(DescOwn | length); in ns8382x_send()
753 OUTL(dev, phys_to_bus((u32) & txd), TxRingPtr); in ns8382x_send()
758 le32_to_cpu(txd.link), le32_to_cpu(txd.bufptr), in ns8382x_send()
759 le32_to_cpu(txd.extsts), le32_to_cpu(txd.cmdsts)); in ns8382x_send()
764 for (i = 0; (tx_stat = le32_to_cpu(txd.cmdsts)) & DescOwn; i++) { in ns8382x_send()