Lines Matching refs:curregs

69 	unsigned char			curregs[NUM_ZSREGS];
90 (UART_ZILOG(PORT)->curregs[REGNUM])
92 ((UART_ZILOG(PORT)->curregs[REGNUM]) = (REGVAL))
240 __load_zsregs(channel, up->curregs);
325 if (up->curregs[R15] & BRKIE) {
379 __load_zsregs(channel, up->curregs);
561 up->curregs[R5] |= set_bits;
562 up->curregs[R5] &= ~clear_bits;
563 write_zsreg(channel, R5, up->curregs[R5]);
632 up->curregs[R1] &= ~RxINT_MASK;
644 new_reg = up->curregs[R15] | (DCDIE | SYNCIE | CTSIE);
645 if (new_reg != up->curregs[R15]) {
646 up->curregs[R15] = new_reg;
649 write_zsreg(channel, R15, up->curregs[R15]);
671 new_reg = (up->curregs[R5] | set_bits) & ~clear_bits;
672 if (new_reg != up->curregs[R5]) {
673 up->curregs[R5] = new_reg;
676 write_zsreg(channel, R5, up->curregs[R5]);
719 __load_zsregs(channel, up->curregs);
721 write_zsreg(channel, R9, up->curregs[R9]);
725 up->curregs[R3] |= RxENAB;
726 up->curregs[R5] |= TxENAB;
728 up->curregs[R1] |= EXT_INT_ENAB | INT_ALL_Rx | TxINT_ENAB;
785 up->curregs[R3] &= ~RxENAB;
786 up->curregs[R5] &= ~TxENAB;
789 up->curregs[R1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK);
790 up->curregs[R5] &= ~SND_BRK;
804 up->curregs[R10] = NRZ;
805 up->curregs[R11] = TCBR | RCBR;
808 up->curregs[R4] &= ~XCLK_MASK;
809 up->curregs[R4] |= X16CLK;
810 up->curregs[R12] = brg & 0xff;
811 up->curregs[R13] = (brg >> 8) & 0xff;
812 up->curregs[R14] = BRENAB;
815 up->curregs[3] &= ~RxN_MASK;
816 up->curregs[5] &= ~TxN_MASK;
819 up->curregs[3] |= Rx5;
820 up->curregs[5] |= Tx5;
824 up->curregs[3] |= Rx6;
825 up->curregs[5] |= Tx6;
829 up->curregs[3] |= Rx7;
830 up->curregs[5] |= Tx7;
835 up->curregs[3] |= Rx8;
836 up->curregs[5] |= Tx8;
840 up->curregs[4] &= ~0x0c;
842 up->curregs[4] |= SB2;
844 up->curregs[4] |= SB1;
846 up->curregs[4] |= PAR_ENAB;
848 up->curregs[4] &= ~PAR_ENAB;
850 up->curregs[4] |= PAR_EVEN;
852 up->curregs[4] &= ~PAR_EVEN;
1041 up->curregs[R15] |= BRKIE;
1140 up->curregs[R1] = EXT_INT_ENAB | INT_ALL_Rx | TxINT_ENAB;
1141 up->curregs[R4] = PAR_EVEN | X16CLK | SB1;
1142 up->curregs[R3] = RxENAB | Rx8;
1143 up->curregs[R5] = TxENAB | Tx8;
1144 up->curregs[R9] = NV | MIE;
1145 up->curregs[R10] = NRZ;
1146 up->curregs[R11] = TCBR | RCBR;
1148 up->curregs[R12] = (brg & 0xff);
1149 up->curregs[R13] = (brg >> 8) & 0xff;
1150 up->curregs[R14] = BRENAB;