Commit a88d75b2 authored by Russell King's avatar Russell King Committed by Russell King

[SERIAL] Remove unconditional enable of TX irq for console

A bug report from Gerd Hoffmann has highlighted that unconditionally
enabling the transmit interrupt at the end of console writes is very
bad.

In Gerd's case, it causes the test for buggy UARTs to give false
positives, incorrectly identifying ports as buggy when they are not.

Moreover, if we unconditionally enable the interrupt, and the port
is sharing it's interrupt with other ports, there is the very real
possibility that we'll cause an interrupt storm.  (Not all ports use
OUT2 as an interrupt mask.)

Hence, revert part of f91a3715 and
all of f5968b37 until a better solution
can be found.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent b32b19b8
...@@ -2256,8 +2256,7 @@ serial8250_console_write(struct console *co, const char *s, unsigned int count) ...@@ -2256,8 +2256,7 @@ serial8250_console_write(struct console *co, const char *s, unsigned int count)
* and restore the IER * and restore the IER
*/ */
wait_for_xmitr(up, BOTH_EMPTY); wait_for_xmitr(up, BOTH_EMPTY);
up->ier |= UART_IER_THRI; serial_out(up, UART_IER, ier);
serial_out(up, UART_IER, ier | UART_IER_THRI);
} }
static int serial8250_console_setup(struct console *co, char *options) static int serial8250_console_setup(struct console *co, char *options)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment