/src/sys/arch/next68k/dev/ |
mb8795.c | 248 u_char rxstat; local in function:mb8795_rint 251 rxstat = MB_READ_REG(sc, MB8795_RXSTAT); 257 if (rxstat & MB8795_RXSTAT_RESET) { 261 if (rxstat & MB8795_RXSTAT_SHORT) { 265 if (rxstat & MB8795_RXSTAT_ALIGNERR) { 271 if (rxstat & MB8795_RXSTAT_CRCERR) { 277 if (rxstat & MB8795_RXSTAT_OVERFLOW) { 289 if (rxstat & MB8795_RXSTAT_OK) { 332 snprintb(sbuf, sizeof(sbuf), MB8795_RXSTAT_BITS, rxstat); 333 printf("%s: rx interrupt, rxstat = %s\n" [all...] |
enreg.h | 39 unsigned char rxstat; /* 2 */ member in struct:en_regs 64 /* same bits for rxstat and rxmask */
|
/src/sys/dev/isa/ |
if_el.c | 502 uint8_t rxstat; local in function:elintr 515 rxstat = bus_space_read_1(iot, ioh, EL_RXS); 516 if (rxstat & EL_RXS_STALE) 520 if ((rxstat & EL_RXS_NOFLOW) == 0) { 540 DPRINTF(("receive len=%d rxstat=%x ", len, rxstat)); 550 rnd_add_uint32(&sc->rnd_source, rxstat);
|
/src/sys/arch/sandpoint/stand/altboot/ |
kse.c | 220 unsigned bound, rxstat, len; local in function:kse_recv 229 rxstat = le32toh(rxd->xd0); 230 if ((rxstat & R0_OWN) == 0) 237 if (rxstat & R0_ES) { 245 len = (rxstat & R0_FL_MASK) - 4 /* HASFCS */;
|
pcn.c | 254 unsigned bound, rxstat, len; local in function:pcn_recv 263 rxstat = le32toh(rxd->xd1); 264 if ((rxstat & R1_OWN) == 0) 271 if (rxstat & R1_ERR) { 279 len = (rxstat & R1_FLMASK) - 4 /* HASFCS */;
|
sip.c | 262 unsigned bound, rxstat, len; local in function:sip_recv 271 rxstat = le32toh(rxd->xd1); 272 if ((rxstat & XD1_OWN) == 0) 279 if ((rxstat & XD1_OK) == 0) { 286 len = (rxstat & 0xfff) - 4 /* HASFCS */;
|
sme.c | 220 unsigned bound, rxstat, len; local in function:sme_recv 229 rxstat = le32toh(rxd->xd0); 230 if ((rxstat & R0_OWN) == 0) 237 if (rxstat & R0_ES) { 245 len = (rxstat & R0_FL) >> 16 /* no FCS included */;
|
tlp.c | 236 unsigned bound, rxstat, len; local in function:tlp_recv 247 rxstat = le32toh(rxd->xd0); 248 if ((rxstat & R0_OWN) == 0) 255 if (rxstat & R0_ES) { 262 len = ((rxstat & R0_FLMASK) >> 16) - 4 /* HASFCS */;
|
wm.c | 255 unsigned bound, rxstat, len; local in function:wm_recv 264 rxstat = le32toh(rxd->r3); 265 if ((rxstat & R3_DD) != 0) 273 if (rxstat & (R3_CE|R3_SE|R3_SEQ|R3_CXE|R3_RXE)) { 281 len = (rxstat & R2_FLMASK) - 4 /* HASFCS */;
|
nvt.c | 279 unsigned bound, rxstat, len; local in function:nvt_recv 288 rxstat = le32toh(rxd->xd0); 289 if ((rxstat & R0_OWN) == 0) 296 if ((rxstat & R0_RXOK) == 0) { 302 len = ((rxstat & R0_FLMASK) >> 16) - 4 /* HASFCS */;
|
rge.c | 274 unsigned bound, rxstat, len; local in function:rge_recv 285 rxstat = le32toh(rxd->xd0); 286 if ((rxstat & R0_OWN) == 0) 293 if (rxstat & R0_RES) { 300 len = rxstat & R0_FRMASK;
|
/src/sys/dev/usb/ |
if_mos.c | 671 u_int8_t rxstat; local in function:mos_uno_rx_loop 686 rxstat = buf[pktlen] & MOS_RXSTS_MASK; 688 if (rxstat != MOS_RXSTS_VALID) { 691 if (rxstat & MOS_RXSTS_SHORT_FRAME) 693 if (rxstat & MOS_RXSTS_LARGE_FRAME) 695 if (rxstat & MOS_RXSTS_CRC_ERROR) 697 if (rxstat & MOS_RXSTS_ALIGN_ERROR)
|
/src/sys/dev/ic/ |
rtl81x9.c | 916 uint32_t rxstat; local in function:rtk_rxeof 938 rxstat = le32toh(*(uint32_t *)rxbufpos); 950 total_len = rxstat >> 16; 954 if ((rxstat & RTK_RXSTAT_RXOK) == 0 || 967 if (rxstat & (RTK_RXSTAT_BADSYM | RTK_RXSTAT_RUNT |
|
rtl8169.c | 475 uint32_t rxstat; local in function:re_diag 556 rxstat = le32toh(cur_rx->re_cmdstat); 557 total_len = rxstat & sc->re_rxlenmask; 1242 uint32_t rxstat, rxvlan; local in function:re_rxeof 1250 rxstat = le32toh(cur_rx->re_cmdstat); 1253 if ((rxstat & RE_RDESC_STAT_OWN) != 0) { 1256 total_len = rxstat & sc->re_rxlenmask; 1267 if ((rxstat & RE_RDESC_STAT_EOF) == 0) { 1297 rxstat >>= 1; 1299 if (__predict_false((rxstat & RE_RDESC_STAT_RXERRSUM) != 0)) [all...] |
hd64570.c | 1446 u_int8_t rxstat; local in function:sca_frame_avail 1478 rxstat = sca_desc_read_stat(scp->sca, desc); 1480 SCA_DPRINTF(SCA_DEBUG_RX, ("port %d RX: idx %d rxstat %x\n", 1481 scp->sp_port, scp->sp_rxstart, rxstat)); 1489 if (rxstat & SCA_DESC_ERRORS) { 1504 if (rxstat & SCA_DESC_EOM) {
|
i82557.c | 1344 uint16_t len, rxstat; local in function:fxp_rxintr 1356 rxstat = le16toh(rfa->rfa_status); 1358 if ((rxstat & FXP_RFA_STATUS_RNR) != 0) 1361 if ((rxstat & FXP_RFA_STATUS_C) == 0) { 1396 (rxstat & (FXP_RFA_STATUS_OVERRUN |
|
gem.c | 1756 uint64_t rxstat; local in function:gem_rint 1791 rxstat = GEM_DMA_READ(sc, sc->sc_rxdescs[i].gd_flags); 1793 if (rxstat & GEM_RD_OWN) { 1803 if (rxstat & GEM_RD_BAD_CRC) { 1824 len = GEM_RD_BUFLEN(rxstat); 1899 m->m_pkthdr.csum_data = (~rxstat) & GEM_RD_CHECKSUM; 2206 int rxstat = bus_space_read_4(t, h, GEM_MAC_RX_STATUS); local in function:gem_intr 2215 if (rxstat & GEM_MAC_RX_OVERFLOW) { 2227 } else if (rxstat & ~(GEM_MAC_RX_DONE | GEM_MAC_RX_FRAME_CNT)) 2229 device_xname(sc->sc_dev), rxstat); [all...] |
/src/sys/arch/mips/atheros/dev/ |
if_ae.c | 1006 uint32_t rxstat; local in function:ae_rxintr 1015 rxstat = sc->sc_rxdescs[i].ad_status; 1017 if (rxstat & ADSTAT_OWN) { 1027 if (rxstat & ADSTAT_Rx_CS) 1037 if (rxstat & ADSTAT_ES && 1039 (rxstat & (ADSTAT_Rx_DE | ADSTAT_Rx_RF | 1042 if (rxstat & (bit)) \ 1064 len = ADSTAT_Rx_LENGTH(rxstat) - ETHER_CRC_LEN;
|
/src/sys/arch/cobalt/stand/boot/ |
tlp.c | 335 uint32_t rxstat; local in function:tlp_recv 343 rxstat = le32toh(rxd->xd0); 345 if ((rxstat & R0_OWN) == 0) 353 if (rxstat & R0_ES) { 361 len = ((rxstat & R0_FL_MASK) >> 16) - 4; /* HASFCS */
|
/src/sys/arch/evbppc/virtex/dev/ |
if_temac.c | 1125 uint32_t stat, rxstat, rxsize; local in function:temac_rxreap 1172 rxstat = sc->sc_rxdescs[sc->sc_rxreap].desc_rxstat; 1176 if ((rxstat & RXSTAT_GOOD) == 0 || 1177 (rxstat & RXSTAT_SICK) != 0) { 1179 "corrupt Rx packet, rxstat = %#08x\n", 1180 rxstat);
|
/src/sys/arch/powerpc/ibm4xx/dev/ |
if_emac.c | 1592 uint32_t rxstat, count; local in function:emac_rxeob_intr 1604 rxstat = sc->sc_rxdescs[i].md_stat_ctrl; 1606 if (rxstat & MAL_RX_EMPTY) { 1621 if (rxstat & (EMAC_RXS_OE | EMAC_RXS_BP | EMAC_RXS_SE | 1625 if (rxstat & (bit)) \
|
/src/sys/dev/pci/ |
if_cas.c | 1577 int rxstat = bus_space_read_4(t, seb, CAS_MAC_RX_STATUS); local in function:cas_intr 1579 if (rxstat & ~CAS_MAC_RX_DONE) 1581 device_xname(sc->sc_dev), rxstat); 1587 if (rxstat & CAS_MAC_RX_OVERFLOW) { 1592 else if (rxstat & ~(CAS_MAC_RX_DONE | CAS_MAC_RX_FRAME_CNT)) 1594 device_xname(sc->sc_dev), rxstat);
|
if_vr.c | 606 uint32_t rxstat; local in function:vr_rxeof 617 rxstat = le32toh(d->vr_status); 619 if (rxstat & VR_RXSTAT_OWN) { 632 if (rxstat & VR_RXSTAT_RXERR) { 636 switch (rxstat & 0x000000FF) { 668 } else if (!(rxstat & VR_RXSTAT_FIRSTFRAG) || 669 !(rxstat & VR_RXSTAT_LASTFRAG)) { 680 VR_RXBYTES(le32toh(d->vr_status)), rxstat); 703 "status = 0x%x\n", rxstat);
|
if_sk.c | 2046 uint32_t rxstat, sk_ctl; local in function:sk_rxeof 2075 rxstat = le32toh(cur_desc->sk_xmac_rxstat); 2084 if (rxstat & XM_RXSTAT_ERRFRAME) {
|
if_rge.c | 1282 uint32_t rxstat, extsts; local in function:rge_rxeof 1296 rxstat = letoh32(cur_rx->hi_qword1.rx_qword4.rge_cmdsts); 1308 if ((rxstat & (RGE_RDCMDSTS_SOF | RGE_RDCMDSTS_EOF)) != 1315 if (rxstat & RGE_RDCMDSTS_RXERRSUM) {
|