HomeSort by: relevance | last modified time | path
    Searched defs:sc_txnext (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/arch/mips/atheros/dev/
aevar.h 176 int sc_txnext; /* next ready Tx descriptor */ member in struct:ae_softc
  /src/sys/dev/ic/
anvar.h 133 int sc_txnext; member in struct:an_softc
awivar.h 108 u_int32_t sc_txnext; member in struct:awi_softc
gemvar.h 197 int sc_txnext; /* next ready Tx descriptor */ member in struct:gem_softc
atwvar.h 227 int sc_txnext; /* next ready Tx descriptor */ member in struct:atw_softc
tulipvar.h 431 int sc_txnext; /* next ready Tx descriptor */ member in struct:tulip_softc
  /src/sys/arch/macppc/dev/
if_gm.c 77 int sc_txnext; member in struct:gmac_softc
462 i = sc->sc_txnext;
477 sc->sc_txnext = i;
534 sc->sc_txnext = 0;
  /src/sys/arch/mips/adm5120/dev/
if_admswvar.h 143 int sc_txnext; /* next Tx descriptor to use */ member in struct:admsw_softc
  /src/sys/arch/mips/alchemy/dev/
if_aumac.c 138 int sc_txnext; /* next Tx descriptor to use */ member in struct:aumac_softc
417 nexttx = sc->sc_txnext;
449 sc->sc_txnext = AUMAC_NEXTTX(nexttx);
778 sc->sc_txnext = TX_ADDR_CB(bus_space_read_4(sc->sc_st, sc->sc_dma_sh,
780 sc->sc_txdirty = sc->sc_txnext;
  /src/sys/arch/arm/ti/
if_cpsw.c 132 volatile u_int sc_txnext; member in struct:cpsw_softc
635 if (sc->sc_txnext >= sc->sc_txhead)
636 txfree = CPSW_NTXDESCS - 1 + sc->sc_txhead - sc->sc_txnext;
638 txfree = sc->sc_txhead - sc->sc_txnext - 1;
641 txfree, sc->sc_txhead, sc->sc_txnext, sc->sc_txrun);
648 dm = rdp->tx_dm[sc->sc_txnext];
671 KASSERT(rdp->tx_mb[sc->sc_txnext] == NULL);
672 rdp->tx_mb[sc->sc_txnext] = m;
679 txstart = sc->sc_txnext;
680 eopi = sc->sc_txnext;
    [all...]
  /src/sys/arch/powerpc/ibm4xx/dev/
if_emac.c 207 int sc_txnext; /* next ready Tx descriptor */ member in struct:emac_softc
763 txs->txs_firstdesc = sc->sc_txnext;
769 firsttx = sc->sc_txnext;
770 for (nexttx = sc->sc_txnext, seg = 0;
805 EMAC_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
822 sc->sc_txnext = nexttx;
914 sc->sc_txnext = 0;
1115 sc->sc_txfree, sc->sc_txsfree, sc->sc_txnext);
  /src/sys/dev/pci/
if_dge.c 308 int sc_txnext; /* next ready Tx descriptor */ member in struct:dge_softc
1154 t = (struct dge_ctdes *)&sc->sc_txdescs[sc->sc_txnext];
1159 DGE_CDTXSYNC(sc, sc->sc_txnext, 1, BUS_DMASYNC_PREWRITE);
1164 sc->sc_txnext = DGE_NEXTTX(sc->sc_txnext);
1307 txs->txs_firstdesc = sc->sc_txnext;
1330 for (nexttx = sc->sc_txnext, seg = 0;
1369 DGE_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
1384 sc->sc_txnext = nexttx;
1423 sc->sc_txnext);
    [all...]
if_pcn.c 298 int sc_txnext; /* next ready Tx descriptor */ member in struct:pcn_softc
1042 for (nexttx = sc->sc_txnext, seg = 0;
1056 (nexttx == sc->sc_txnext ? 0 : LE_T1_OWN) |
1062 for (nexttx = sc->sc_txnext, seg = 0;
1076 (nexttx == sc->sc_txnext ? 0 : LE_T1_OWN) |
1090 sc->sc_txdescs[sc->sc_txnext].tmd1 |=
1094 PCN_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
1106 txs->txs_firstdesc = sc->sc_txnext;
1111 sc->sc_txnext = nexttx;
1624 sc->sc_txnext = 0
    [all...]
if_kse.c 253 int sc_txnext; /* next ready Tx descriptor */ member in struct:kse_softc
732 sc->sc_txnext = 0;
900 sc->sc_txfree, sc->sc_txsfree, sc->sc_txnext);
986 for (nexttx = sc->sc_txnext, seg = 0;
1021 sc->sc_txdescs[sc->sc_txnext].t1 |= T1_FS;
1022 sc->sc_txdescs[sc->sc_txnext].t0 = T0_OWN;
1023 KSE_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
1030 txs->txs_firstdesc = sc->sc_txnext;
1035 sc->sc_txnext = nexttx;
if_sip.c 286 int sc_txnext; /* next ready Tx descriptor */ member in struct:sip_softc
553 sc->sc_txnext = 0;
1527 sc->sc_txdescs[sc->sc_txnext].sipd_words[sc->sc_extsts_idx] |= extsts;
1547 int firsttx = sc->sc_txnext;
1663 for (nexttx = lasttx = sc->sc_txnext, seg = 0;
1674 if (nexttx != sc->sc_txnext)
1698 sip_cdtxsync(sc, sc->sc_txnext, dmamap->dm_nsegs,
1705 sc->sc_txdescs[sc->sc_txnext].sipd_words[sc->sc_cmdsts_idx] |=
1707 sip_cdtxsync(sc, sc->sc_txnext, 1,
1716 txs->txs_firstdesc = sc->sc_txnext;
    [all...]
  /src/sys/arch/arm/sociox/
if_scx.c 486 int sc_txnext; /* next ready Tx descriptor */ member in struct:scx_softc
1143 sc->sc_txnext = 0;
1428 for (nexttx = sc->sc_txnext, seg = 0;
1456 sc->sc_txdescs[sc->sc_txnext].t0 |= htole32(T0_FS | T0_OWN);
1457 SCX_CDTXSYNC(sc, sc->sc_txnext, dmamap->dm_nsegs,
1464 txs->txs_firstdesc = sc->sc_txnext;
1468 sc->sc_txnext = nexttx;
1498 sc->sc_txfree, sc->sc_txsfree, sc->sc_txnext);

Completed in 27 milliseconds