Lines Matching refs:txd
244 static BufferDesc txd __attribute__ ((aligned(8))); variable
620 txd.link = (u32) 0; in ns8382x_init_txd()
621 txd.bufptr = cpu_to_le32((u32) & txb[0]); in ns8382x_init_txd()
622 txd.cmdsts = (u32) 0; in ns8382x_init_txd()
623 txd.extsts = (u32) 0; in ns8382x_init_txd()
626 OUTL(dev, phys_to_bus((u32)&txd), TxRingPtr); in ns8382x_init_txd()
629 INL(dev, TxRingPtr), &txd); in ns8382x_init_txd()
748 txd.link = cpu_to_le32(0x0); in ns8382x_send()
749 txd.bufptr = cpu_to_le32(phys_to_bus((u32)packet)); in ns8382x_send()
750 txd.extsts = cpu_to_le32(0x0); in ns8382x_send()
751 txd.cmdsts = cpu_to_le32(DescOwn | length); in ns8382x_send()
754 OUTL(dev, phys_to_bus((u32) & txd), TxRingPtr); in ns8382x_send()
759 le32_to_cpu(txd.link), le32_to_cpu(txd.bufptr), in ns8382x_send()
760 le32_to_cpu(txd.extsts), le32_to_cpu(txd.cmdsts)); in ns8382x_send()
765 for (i = 0; (tx_stat = le32_to_cpu(txd.cmdsts)) & DescOwn; i++) { in ns8382x_send()