Home | History | Annotate | Download | only in pci

Lines Matching defs:txd

150 	struct txd *sc_txd[NTXDESCS];	/* transmit frags array */
698 struct txd *txd;
733 txd = sc->sc_txd[i];
740 if (txd->txd_control1 & TXD_CTL1_OWN) {
942 struct txd *txd = NULL; /* XXX - gcc */
974 txd = sc->sc_txd[nexttx];
979 txd->txd_control1 = dmp->dm_segs[i].ds_len;
980 txd->txd_control2 = 0;
981 txd->txd_bufaddr = dmp->dm_segs[i].ds_addr;
982 txd++;
984 ntxd = txd - sc->sc_txd[nexttx] - 1;
985 txd = sc->sc_txd[nexttx];
986 txd->txd_control1 |= TXD_CTL1_OWN | TXD_CTL1_GCF;
987 txd->txd_control2 = TXD_CTL2_UTIL;
989 txd->txd_control1 |= TXD_CTL1_MSS(m->m_pkthdr.segsz);
990 txd->txd_control1 |= TXD_CTL1_LSO;
994 txd->txd_control2 |= TXD_CTL2_CIPv4;
996 txd->txd_control2 |= TXD_CTL2_CTCP;
998 txd->txd_control2 |= TXD_CTL2_CUDP;
999 txd[ntxd].txd_control1 |= TXD_CTL1_GCL;
1024 struct txd *txp;
1030 #define TXMAPSZ (NTXDESCS*NTXFRAGS*sizeof(struct txd))
1050 txp = (struct txd *)kva;
1052 for (txp = (struct txd *)kva, i = 0; i < NTXDESCS; i++) {
1056 txdp += (NTXFRAGS * sizeof(struct txd));