Hi all
On current git tree ,
In imx.c , when operate with tty .break_ctl
734 static void imx_break_ctl(struct uart_port *port, int break_state)
735 {
736 struct imx_port *sport = (struct imx_port *)port;
737 unsigned long flags, temp;
738
739 spin_lock_irqsave(&sport->port.lock, flags);
740
741 temp = readl(sport->port.membase + UCR1) & ~UCR1_SNDBRK;
742
743 if ( break_state != 0 )
744 temp |= UCR1_SNDBRK;
You miss the revert back the register of UCR1_SNDBRK
This should be a bug , here is the patch . please check and approve
Original Attachment has been moved to: tty_imx_brk.patch.zip