Home
last modified time | relevance | path

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

/drivers/tty/serial/
Dpmac_zilog.c191 pmz_load_zsregs(uap, uap->curregs); in pmz_maybe_update_regs()
199 uap->curregs[1] |= INT_ALL_Rx | TxINT_ENAB; in pmz_interrupt_control()
201 uap->curregs[1] |= EXT_INT_ENAB; in pmz_interrupt_control()
203 uap->curregs[1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK); in pmz_interrupt_control()
205 write_zsreg(uap, R1, uap->curregs[1]); in pmz_interrupt_control()
356 pmz_load_zsregs(uap, uap->curregs); in pmz_transmit_chars()
539 uap->curregs[R5] |= set_bits; in pmz_set_mctrl()
540 uap->curregs[R5] &= ~clear_bits; in pmz_set_mctrl()
542 write_zsreg(uap, R5, uap->curregs[R5]); in pmz_set_mctrl()
544 set_bits, clear_bits, uap->curregs[R5]); in pmz_set_mctrl()
[all …]
Dip22zilog.c69 unsigned char curregs[NUM_ZSREGS]; member
90 (UART_ZILOG(PORT)->curregs[REGNUM])
92 ((UART_ZILOG(PORT)->curregs[REGNUM]) = (REGVAL))
240 __load_zsregs(channel, up->curregs); in ip22zilog_maybe_update_regs()
325 if (up->curregs[R15] & BRKIE) { in ip22zilog_status_handle()
379 __load_zsregs(channel, up->curregs); in ip22zilog_transmit_chars()
560 up->curregs[R5] |= set_bits; in ip22zilog_set_mctrl()
561 up->curregs[R5] &= ~clear_bits; in ip22zilog_set_mctrl()
562 write_zsreg(channel, R5, up->curregs[R5]); in ip22zilog_set_mctrl()
630 up->curregs[R1] &= ~RxINT_MASK; in ip22zilog_stop_rx()
[all …]
Dsunzilog.c77 unsigned char curregs[NUM_ZSREGS]; member
275 __load_zsregs(channel, up->curregs); in sunzilog_maybe_update_regs()
289 up->curregs[R12] = (brg & 0xff); in sunzilog_change_mouse_baud()
290 up->curregs[R13] = (brg >> 8) & 0xff; in sunzilog_change_mouse_baud()
477 __load_zsregs(channel, up->curregs); in sunzilog_transmit_chars()
660 up->curregs[R5] |= set_bits; in sunzilog_set_mctrl()
661 up->curregs[R5] &= ~clear_bits; in sunzilog_set_mctrl()
662 write_zsreg(channel, R5, up->curregs[R5]); in sunzilog_set_mctrl()
730 up->curregs[R1] &= ~RxINT_MASK; in sunzilog_stop_rx()
742 new_reg = up->curregs[R15] | (DCDIE | SYNCIE | CTSIE); in sunzilog_enable_ms()
[all …]
Dpmac_zilog.h34 u8 curregs[NUM_ZSREGS]; member
/drivers/watchdog/
Dcpwd.c206 unsigned char curregs = cpwd_readb(p->regs + PLD_IMASK); in cpwd_toggleintr() local
213 curregs &= ~setregs; in cpwd_toggleintr()
215 curregs |= setregs; in cpwd_toggleintr()
217 cpwd_writeb(curregs, p->regs + PLD_IMASK); in cpwd_toggleintr()