Home
last modified time | relevance | path

Searched refs:ier (Results 1 – 5 of 5) sorted by relevance

/illumos-gate/usr/src/cmd/bhyve/common/
H A Duart_emul.c85 uint8_t ier; /* Interrupt enable register (R/W) */ member
146 if ((sc->lsr & LSR_OE) != 0 && (sc->ier & IER_ERLS) != 0) in uart_intr_reason()
149 (sc->ier & IER_ERXRDY) != 0) in uart_intr_reason()
151 else if (sc->thre_int_pending && (sc->ier & IER_ETXRDY) != 0) in uart_intr_reason()
153 else if ((sc->msr & MSR_DELTA_MASK) != 0 && (sc->ier & IER_EMSC) != 0) in uart_intr_reason()
274 if ((sc->ier & IER_ETXRDY) == 0 && (value & IER_ETXRDY) != 0) in uart_ns16550_write()
280 sc->ier = value & 0x0F; in uart_ns16550_write()
387 reg = sc->ier; in uart_ns16550_read()
/illumos-gate/usr/src/grub/grub-0.97/netboot/
H A Dsis900.h26 ier=0x18, /* Interrupt Enable Register */ enumerator
H A Dsis900.c631 outl(0, ioaddr + ier); in sis900_reset()
1210 outl(0, ioaddr + ier); in sis900_disable()
/illumos-gate/usr/src/cmd/fm/modules/common/eversholt/
H A Dplatform.c1545 int ier; in platform_payloadprop() local
1556 ier = nvlist_lookup_nvlist(basenvp, in platform_payloadprop()
1560 ier = nvlist_lookup_nvlist_array(basenvp, in platform_payloadprop()
1562 if (ier == 0) { in platform_payloadprop()
1564 ier = 1; in platform_payloadprop()
1570 if (ier) { in platform_payloadprop()
/illumos-gate/usr/src/uts/common/io/
H A Dasy.c2006 uint8_t ier, asr; in asy_identify_chip() local
2014 ier = asy_get(asy, ASY_IER); in asy_identify_chip()
2015 if (ier != 0) { in asy_identify_chip()
2018 (void *)asy->asy_ioaddr, ier); in asy_identify_chip()
2038 if (asr != ier) { in asy_identify_chip()
2687 uint8_t ier; in asy_program() local
2833 ier = ASY_IER_TIEN | ASY_IER_SIEN; in asy_program()
2841 ier |= ASY_IER_MIEN; in asy_program()
2844 ier |= ASY_IER_RIEN; in asy_program()
2846 asy_enable_interrupts(asy, ier); in asy_program()