Home
last modified time | relevance | path

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

/linux-3.4.99/drivers/tty/serial/
Dip22zilog.c72 unsigned char curregs[NUM_ZSREGS]; member
93 (UART_ZILOG(PORT)->curregs[REGNUM])
95 ((UART_ZILOG(PORT)->curregs[REGNUM]) = (REGVAL))
243 __load_zsregs(channel, up->curregs); in ip22zilog_maybe_update_regs()
333 if (up->curregs[R15] & BRKIE) { in ip22zilog_status_handle()
387 __load_zsregs(channel, up->curregs); in ip22zilog_transmit_chars()
569 up->curregs[R5] |= set_bits; in ip22zilog_set_mctrl()
570 up->curregs[R5] &= ~clear_bits; in ip22zilog_set_mctrl()
571 write_zsreg(channel, R5, up->curregs[R5]); in ip22zilog_set_mctrl()
636 up->curregs[R1] &= ~RxINT_MASK; in ip22zilog_stop_rx()
[all …]
Dsunzilog.c80 unsigned char curregs[NUM_ZSREGS]; member
278 __load_zsregs(channel, up->curregs); in sunzilog_maybe_update_regs()
292 up->curregs[R12] = (brg & 0xff); in sunzilog_change_mouse_baud()
293 up->curregs[R13] = (brg >> 8) & 0xff; in sunzilog_change_mouse_baud()
487 __load_zsregs(channel, up->curregs); in sunzilog_transmit_chars()
670 up->curregs[R5] |= set_bits; in sunzilog_set_mctrl()
671 up->curregs[R5] &= ~clear_bits; in sunzilog_set_mctrl()
672 write_zsreg(channel, R5, up->curregs[R5]); in sunzilog_set_mctrl()
737 up->curregs[R1] &= ~RxINT_MASK; in sunzilog_stop_rx()
748 new_reg = up->curregs[R15] | (DCDIE | SYNCIE | CTSIE); in sunzilog_enable_ms()
[all …]
Dpmac_zilog.c213 pmz_load_zsregs(uap, uap->curregs); in pmz_maybe_update_regs()
221 uap->curregs[1] |= INT_ALL_Rx | TxINT_ENAB; in pmz_interrupt_control()
223 uap->curregs[1] |= EXT_INT_ENAB; in pmz_interrupt_control()
225 uap->curregs[1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK); in pmz_interrupt_control()
227 write_zsreg(uap, R1, uap->curregs[1]); in pmz_interrupt_control()
393 pmz_load_zsregs(uap, uap->curregs); in pmz_transmit_chars()
580 uap->curregs[R5] |= set_bits; in pmz_set_mctrl()
581 uap->curregs[R5] &= ~clear_bits; in pmz_set_mctrl()
583 write_zsreg(uap, R5, uap->curregs[R5]); in pmz_set_mctrl()
585 set_bits, clear_bits, uap->curregs[R5]); in pmz_set_mctrl()
[all …]
Dpmac_zilog.h33 u8 curregs[NUM_ZSREGS]; member
/linux-3.4.99/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()