HomeSort by relevance Sort by last modified time
    Searched refs:txd (Results 1 - 4 of 4) sorted by null

  /external/grub/netboot/
otulip.c 40 static struct txdesc txd; variable in typeref:struct:txdesc
211 memset(&txd, 0, sizeof(struct txdesc));
212 txd.buf1addr = &txb[0];
213 txd.buf2addr = &txb[0]; /* just in case */
214 txd.buf1sz = 192; /* setup packet must be 192 bytes */
215 txd.buf2sz = 0;
216 txd.control = 0x020; /* setup packet */
217 txd.status = 0x80000000; /* give ownership to 21143 */
230 outl((unsigned long)&txd, ioaddr + CSR4); /* set xmit buf */
280 memset(&txd, 0, sizeof(struct txdesc))
    [all...]
davicom.c 141 static struct txdesc txd[NTXD] __attribute__ ((aligned(4)));
455 txd[i].buf1addr = &txb[0]; /* Used same TX buffer */
456 txd[i].buf2addr = (unsigned char *)&txd[i+1]; /* Point to Next TX desc */
457 txd[i].buf1sz = 0;
458 txd[i].buf2sz = 0;
459 txd[i].control = 0x184; /* Begin/End/Chain */
460 txd[i].status = 0x00000000; /* give ownership to Host */
484 txd[NTXD - 1].buf2addr = (unsigned char *)&txd[0]
140 static struct txdesc txd[NTXD] __attribute__ ((aligned(4))); variable in typeref:struct:txdesc
    [all...]
natsemi.c 208 static BufferDesc txd __attribute__ ((aligned(4)));
510 txd.link = (u32) 0;
511 txd.cmdsts = (u32) 0;
512 txd.bufptr = (u32) &txb[0];
515 outl((u32) &txd, ioaddr + TxRingPtr);
618 outl((u32) &txd, ioaddr + TxRingPtr);
640 txd.bufptr = (u32) &txb[0];
641 txd.cmdsts = (u32) OWN | s;
651 while ((((volatile u32) tx_status=txd.cmdsts) & OWN) && (currticks() < to))
207 static BufferDesc txd __attribute__ ((aligned(4))); variable
sis900.c 60 static BufferDesc txd;
598 txd.link = (u32) 0;
599 txd.cmdsts = (u32) 0;
600 txd.bufptr = (u32) &txb[0];
603 outl((u32) &txd, ioaddr + txdp);
926 outl((u32) &txd, ioaddr + txdp);
948 txd.bufptr = (u32) &txb[0];
949 txd.cmdsts = (u32) OWN | s;
959 while ((((volatile u32) tx_status=txd.cmdsts) & OWN) && (currticks() < to))
59 static BufferDesc txd; variable

Completed in 50 milliseconds