/netbsd/sys/arch/next68k/dev/ |
H A D | mb8795.c | 362 u_char txstat; in mb8795_tint() local 367 txstat = MB_READ_REG(sc, MB8795_TXSTAT); in mb8795_tint() 371 if ((txstat & MB8795_TXSTAT_READY) || in mb8795_tint() 372 (txstat & MB8795_TXSTAT_TXRECV)) { in mb8795_tint() 387 if (txstat & MB8795_TXSTAT_SHORTED) { in mb8795_tint() 391 if (txstat & MB8795_TXSTAT_UNDERFLOW) { in mb8795_tint() 395 if (txstat & MB8795_TXSTAT_COLLERR) { in mb8795_tint() 399 if (txstat & MB8795_TXSTAT_COLLERR16) { in mb8795_tint() 406 if (txstat & MB8795_TXSTAT_READY) { in mb8795_tint() 419 rnd_add_uint32(&sc->rnd_source, txstat); in mb8795_tint() [all …]
|
H A D | enreg.h | 37 unsigned char txstat; /* 0 */ member
|
/netbsd/sys/arch/sandpoint/stand/altboot/ |
H A D | sme.c | 188 unsigned txstat, loop; in sme_send() local 200 txstat = le32toh(txd->xd0); in sme_send() 201 if (txstat & T0_ES) in sme_send() 203 if ((txstat & T0_OWN) == 0) in sme_send()
|
H A D | kse.c | 191 unsigned txstat, loop; in kse_send() local 202 txstat = le32toh(txd->xd0); in kse_send() 203 if ((txstat & T0_OWN) == 0) in kse_send()
|
H A D | tlp.c | 206 unsigned txstat, loop; in tlp_send() local 218 txstat = le32toh(txd->xd0); in tlp_send() 219 if ((txstat & T0_OWN) == 0) in tlp_send()
|
/netbsd/sys/arch/powerpc/ibm4xx/dev/ |
H A D | if_emac.c | 1260 uint32_t txstat, count; in emac_txreap() local 1279 if (txstat & MAL_TX_READY) in emac_txreap() 1287 if (txstat & (EMAC_TXS_UR | EMAC_TXS_ED)) in emac_txreap() 1291 if (txstat & EMAC_TXS_UR) in emac_txreap() 1295 if (txstat & in emac_txreap() 1297 if (txstat & EMAC_TXS_EC) in emac_txreap() 1299 else if (txstat & EMAC_TXS_MC) in emac_txreap() 1301 else if (txstat & EMAC_TXS_SC) in emac_txreap() 1303 if (txstat & EMAC_TXS_LC) in emac_txreap() 1309 if (txstat & EMAC_TXS_ED) in emac_txreap() [all …]
|
/netbsd/sys/arch/mips/atheros/dev/ |
H A D | if_ae.c | 1145 uint32_t txstat; in ae_txintr() local 1180 if (txstat & ADSTAT_OWN) in ae_txintr() 1200 if (txstat & ADSTAT_Tx_UF) in ae_txintr() 1202 if (txstat & ADSTAT_Tx_TO) in ae_txintr() 1204 if (txstat & ADSTAT_Tx_EC) in ae_txintr() 1206 if (txstat & ADSTAT_Tx_LC) in ae_txintr() 1211 if (txstat & (ADSTAT_Tx_UF | ADSTAT_Tx_TO)) in ae_txintr() 1214 if (txstat & ADSTAT_Tx_EC) in ae_txintr() 1216 else if (ADSTAT_Tx_COLLISIONS(txstat)) in ae_txintr() 1218 ADSTAT_Tx_COLLISIONS(txstat)); in ae_txintr() [all …]
|
/netbsd/sys/arch/next68k/stand/boot/ |
H A D | en.c | 130 er->txstat = 0xff; in en_init() 216 while ((er->txstat & EN_TXS_READY) == 0) in en_put() 221 er->txstat = 0xff; in en_put() 254 txs = er->txstat; in en_put()
|
/netbsd/sys/dev/ic/ |
H A D | rtl81x9.c | 1098 uint32_t txstat; in rtk_txeof() local 1107 txstat = CSR_READ_4(sc, txd->txd_txstat); in rtk_txeof() 1108 if ((txstat & (RTK_TXSTAT_TX_OK | in rtk_txeof() 1122 (txstat & RTK_TXSTAT_COLLCNT) >> 24); in rtk_txeof() 1124 if (txstat & RTK_TXSTAT_TX_OK) in rtk_txeof() 1133 if (txstat & RTK_TXSTAT_TX_UNDERRUN) { in rtk_txeof() 1149 if (txstat & (RTK_TXSTAT_TXABRT | RTK_TXSTAT_OUTOFWIN)) in rtk_txeof()
|
H A D | atw.c | 3278 uint32_t txstat; in atw_txintr() local 3320 if (txstat & ATW_TXSTAT_OWN) { in atw_txintr() 3343 (txstat & ATW_TXSTAT_ERRMASK) != 0) { in atw_txintr() 3348 __SHIFTOUT(txstat, ATW_TXSTAT_ARC_MASK)); in atw_txintr() 3356 if (txstat & ATW_TXSTAT_TUF) in atw_txintr() 3358 if (txstat & ATW_TXSTAT_TLT) in atw_txintr() 3360 if (txstat & ATW_TXSTAT_TRT) in atw_txintr() 3362 if (txstat & ATW_TXSTAT_TRO) in atw_txintr() 3364 if (txstat & ATW_TXSTAT_SOFBR) in atw_txintr() 3367 if ((txstat & ATW_TXSTAT_ES) == 0) in atw_txintr() [all …]
|
H A D | rtl8169.c | 1442 uint32_t txstat; in re_txeof() local 1456 txstat = in re_txeof() 1459 KASSERT((txstat & RE_TDESC_CMD_EOF) != 0); in re_txeof() 1460 if (txstat & RE_TDESC_CMD_OWN) { in re_txeof() 1473 if (txstat & (RE_TDESC_STAT_EXCESSCOL | RE_TDESC_STAT_COLCNT)) in re_txeof() 1475 if (txstat & RE_TDESC_STAT_TXERRSUM) in re_txeof()
|
H A D | tulip.c | 1402 uint32_t txstat; in tlp_txintr() local 1437 txstat = le32toh(sc->sc_txdescs[txs->txs_lastdesc].td_status); in tlp_txintr() 1438 if (txstat & TDSTAT_OWN) in tlp_txintr() 1473 if (txstat & TDSTAT_Tx_UF) in tlp_txintr() 1475 if (txstat & TDSTAT_Tx_TO) in tlp_txintr() 1477 if (txstat & TDSTAT_Tx_EC) in tlp_txintr() 1479 if (txstat & TDSTAT_Tx_LC) in tlp_txintr() 1483 if (txstat & (TDSTAT_Tx_UF | TDSTAT_Tx_TO)) in tlp_txintr() 1486 if (txstat & TDSTAT_Tx_EC) in tlp_txintr() 1490 TDSTAT_Tx_COLLISIONS(txstat)); in tlp_txintr() [all …]
|
H A D | gem.c | 2201 int txstat = bus_space_read_4(t, h, GEM_MAC_TX_STATUS); in gem_intr() local 2202 if (txstat & ~GEM_MAC_TX_XMIT_DONE) in gem_intr() 2204 device_xname(sc->sc_dev), txstat); in gem_intr() 2205 if (txstat & (GEM_MAC_TX_UNDERRUN | GEM_MAC_TX_PKT_TOO_LONG)) in gem_intr()
|
H A D | i82557.c | 1164 uint16_t txstat; in fxp_txintr() local 1180 txstat = le16toh(txd->txd_txcb.cb_status); in fxp_txintr() 1182 if ((txstat & FXP_CB_STATUS_C) == 0) in fxp_txintr()
|
/netbsd/sys/dev/pci/ |
H A D | if_vr.c | 838 uint32_t txstat; in vr_txeof() local 853 txstat = le32toh(d->vr_status); in vr_txeof() 855 if (txstat & (VR_TXSTAT_ABRT | VR_TXSTAT_UDF)) { in vr_txeof() 873 if (txstat & VR_TXSTAT_OWN) in vr_txeof() 883 if (txstat & VR_TXSTAT_ERRSUM) { in vr_txeof() 885 if (txstat & VR_TXSTAT_DEFER) in vr_txeof() 887 if (txstat & VR_TXSTAT_LATECOLL) in vr_txeof() 892 (txstat & VR_TXSTAT_COLLCNT) >> 3); in vr_txeof()
|
H A D | if_ste.c | 892 uint8_t txstat; in ste_intr() local 919 txstat = bus_space_read_1(sc->sc_st, sc->sc_sh, in ste_intr() 921 if ((txstat & TS_TxComplete) == 0) in ste_intr() 923 if (txstat & TS_TxUnderrun) { in ste_intr() 940 if (txstat & TS_TxReleaseError) { in ste_intr() 945 if (txstat & TS_MaxCollisions) { in ste_intr() 950 if (txstat & TS_TxStatusOverflow) { in ste_intr()
|
H A D | if_stge.c | 1098 uint32_t txstat; in stge_intr() local 1150 txstat = CSR_READ_4(sc, STGE_TxStatus); in stge_intr() 1151 if ((txstat & TS_TxComplete) == 0) in stge_intr() 1153 if (txstat & TS_TxUnderrun) { in stge_intr() 1162 if (txstat & TS_MaxCollisions) in stge_intr()
|
H A D | if_vge.c | 1367 uint32_t txstat; in vge_txeof() local 1377 txstat = le32toh(sc->sc_txdescs[idx].td_sts); in vge_txeof() 1379 if (txstat & VGE_TDSTS_OWN) { in vge_txeof() 1390 if (txstat & (VGE_TDSTS_EXCESSCOLL | VGE_TDSTS_COLL)) in vge_txeof() 1392 if (txstat & VGE_TDSTS_TXERR) in vge_txeof()
|
H A D | if_rge.c | 1346 uint32_t txstat; in rge_txeof() local 1362 txstat = letoh32(sc->rge_ldata.rge_tx_list[idx].rge_cmdsts); in rge_txeof() 1364 if (txstat & RGE_TDCMDSTS_OWN) { in rge_txeof() 1375 if (txstat & (RGE_TDCMDSTS_EXCESSCOLL | RGE_TDCMDSTS_COLL)) in rge_txeof() 1377 if (txstat & RGE_TDCMDSTS_TXERR) in rge_txeof()
|
H A D | if_kse.c | 1292 uint32_t txstat; in txreap() local 1304 txstat = sc->sc_txdescs[txs->txs_lastdesc].t0; in txreap() 1306 if (txstat & T0_OWN) /* desc is still in use */ in txreap()
|
H A D | if_cas.c | 1567 int txstat = bus_space_read_4(t, seb, CAS_MAC_TX_STATUS); in cas_intr() local 1569 if (txstat & ~CAS_MAC_TX_XMIT_DONE) in cas_intr() 1571 device_xname(sc->sc_dev), txstat); in cas_intr() 1573 if (txstat & (CAS_MAC_TX_UNDERRUN | CAS_MAC_TX_PKT_TOO_LONG)) in cas_intr()
|
/netbsd/sys/arch/sgimips/mace/ |
H A D | if_mec.c | 1848 uint64_t txstat; in mec_txintr() local 1861 txstat = txd->txd_stat; in mec_txintr() 1864 __func__, i, txstat)); in mec_txintr() 1865 if ((txstat & MEC_TXSTAT_SENT) == 0) { in mec_txintr() 1880 col = (txstat & MEC_TXSTAT_COLCNT) >> MEC_TXSTAT_COLCNT_SHIFT; in mec_txintr() 1884 if ((txstat & MEC_TXSTAT_SUCCESS) == 0) { in mec_txintr() 1886 device_xname(sc->sc_dev), txstat); in mec_txintr()
|
/netbsd/sys/arch/sgimips/hpc/ |
H A D | if_sq.c | 149 vaddr_t reset, txstat; in sq_match() local 153 txstat = MIPS_PHYS_TO_KSEG1(ha->ha_sh + in sq_match() 163 if (platform.badaddr((void *)txstat, sizeof(txstat))) in sq_match() 166 if ((*(volatile uint32_t *)txstat & 0xff) == TXSTAT_OLDNEW) in sq_match()
|
/netbsd/sys/dev/marvell/ |
H A D | if_mvgbe.c | 2092 uint32_t txstat; in mvgbe_txeof() local 2111 txstat = MVGBE2H32(cur_tx->cmdsts); in mvgbe_txeof() 2112 if ((txstat & MVGBE_BUFFER_OWNED_MASK) == in mvgbe_txeof() 2117 if (txstat & MVGBE_TX_LAST_DESC) in mvgbe_txeof() 2119 if (txstat & MVGBE_ERROR_SUMMARY) { in mvgbe_txeof() 2120 int err = txstat & MVGBE_TX_ERROR_CODE_MASK; in mvgbe_txeof()
|
/netbsd/sys/arch/arm/sociox/ |
H A D | if_scx.c | 1568 uint32_t txstat; in txreap() local 1578 txstat = le32toh(sc->sc_txdescs[txs->txs_lastdesc].t0); in txreap() 1579 if (txstat & T0_OWN) /* desc is still in use */ in txreap()
|