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);
560 up->curregs[R5] |= set_bits;
561 up->curregs[R5] &= ~clear_bits;
562 write_zsreg(channel, R5, up->curregs[R5]);
630 up->curregs[R1] &= ~RxINT_MASK;
642 new_reg = up->curregs[R15] | (DCDIE | SYNCIE | CTSIE);
643 if (new_reg != up->curregs[R15]) {
644 up->curregs[R15] = new_reg;
647 write_zsreg(channel, R15, up->curregs[R15]);
669 new_reg = (up->curregs[R5] | set_bits) & ~clear_bits;
670 if (new_reg != up->curregs[R5]) {
671 up->curregs[R5] = new_reg;
674 write_zsreg(channel, R5, up->curregs[R5]);
717 __load_zsregs(channel, up->curregs);
719 write_zsreg(channel, R9, up->curregs[R9]);
723 up->curregs[R3] |= RxENAB;
724 up->curregs[R5] |= TxENAB;
726 up->curregs[R1] |= EXT_INT_ENAB | INT_ALL_Rx | TxINT_ENAB;
783 up->curregs[R3] &= ~RxENAB;
784 up->curregs[R5] &= ~TxENAB;
787 up->curregs[R1] &= ~(EXT_INT_ENAB | TxINT_ENAB | RxINT_MASK);
788 up->curregs[R5] &= ~SND_BRK;
802 up->curregs[R10] = NRZ;
803 up->curregs[R11] = TCBR | RCBR;
806 up->curregs[R4] &= ~XCLK_MASK;
807 up->curregs[R4] |= X16CLK;
808 up->curregs[R12] = brg & 0xff;
809 up->curregs[R13] = (brg >> 8) & 0xff;
810 up->curregs[R14] = BRENAB;
813 up->curregs[3] &= ~RxN_MASK;
814 up->curregs[5] &= ~TxN_MASK;
817 up->curregs[3] |= Rx5;
818 up->curregs[5] |= Tx5;
822 up->curregs[3] |= Rx6;
823 up->curregs[5] |= Tx6;
827 up->curregs[3] |= Rx7;
828 up->curregs[5] |= Tx7;
833 up->curregs[3] |= Rx8;
834 up->curregs[5] |= Tx8;
838 up->curregs[4] &= ~0x0c;
840 up->curregs[4] |= SB2;
842 up->curregs[4] |= SB1;
844 up->curregs[4] |= PAR_ENAB;
846 up->curregs[4] &= ~PAR_ENAB;
848 up->curregs[4] |= PAR_EVEN;
850 up->curregs[4] &= ~PAR_EVEN;
1039 up->curregs[R15] |= BRKIE;
1138 up->curregs[R1] = EXT_INT_ENAB | INT_ALL_Rx | TxINT_ENAB;
1139 up->curregs[R4] = PAR_EVEN | X16CLK | SB1;
1140 up->curregs[R3] = RxENAB | Rx8;
1141 up->curregs[R5] = TxENAB | Tx8;
1142 up->curregs[R9] = NV | MIE;
1143 up->curregs[R10] = NRZ;
1144 up->curregs[R11] = TCBR | RCBR;
1146 up->curregs[R12] = (brg & 0xff);
1147 up->curregs[R13] = (brg >> 8) & 0xff;
1148 up->curregs[R14] = BRENAB;