Skip to content

Commit 5021d70

Browse files
walacgregkh
authored andcommitted
tty: serial: Use fifo in 8250 console driver
Note: I am using a small test app + driver located at [0] for the problem description. serco is a driver whose write function dispatches to the serial controller. sertest is a user-mode app that writes n bytes to the serial console using the serco driver. While investigating a bug in the RHEL kernel, I noticed that the serial console throughput is way below the configured speed of 115200 bps in a HP Proliant DL380 Gen9. I was expecting something above 10KB/s, but I got 2.5KB/s. $ time ./sertest -n 2500 /tmp/serco real 0m0.997s user 0m0.000s sys 0m0.997s With the help of the function tracer, I then noticed the serial controller was taking around 410us seconds to dispatch one single byte: $ trace-cmd record -p function_graph -g serial8250_console_write \ ./sertest -n 1 /tmp/serco $ trace-cmd report | serial8250_console_write() { 0.384 us | _raw_spin_lock_irqsave(); 1.836 us | io_serial_in(); 1.667 us | io_serial_out(); | uart_console_write() { | serial8250_console_putchar() { | wait_for_xmitr() { 1.870 us | io_serial_in(); 2.238 us | } 1.737 us | io_serial_out(); 4.318 us | } 4.675 us | } | wait_for_xmitr() { 1.635 us | io_serial_in(); | __const_udelay() { 1.125 us | delay_tsc(); 1.429 us | } ... ... ... 1.683 us | io_serial_in(); | __const_udelay() { 1.248 us | delay_tsc(); 1.486 us | } 1.671 us | io_serial_in(); 411.342 us | } In another machine, I measured a throughput of 11.5KB/s, with the serial controller taking between 80-90us to send each byte. That matches the expected throughput for a configuration of 115200 bps. This patch changes the serial8250_console_write to use the 16550 fifo if available. In my benchmarks I got around 25% improvement in the slow machine, and no performance penalty in the fast machine. Signed-off-by: Wander Lairson Costa <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent adbfddc commit 5021d70

File tree

1 file changed

+55
-6
lines changed

1 file changed

+55
-6
lines changed

drivers/tty/serial/8250/8250_port.c

Lines changed: 55 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2056,10 +2056,7 @@ static void serial8250_break_ctl(struct uart_port *port, int break_state)
20562056
serial8250_rpm_put(up);
20572057
}
20582058

2059-
/*
2060-
* Wait for transmitter & holding register to empty
2061-
*/
2062-
static void wait_for_xmitr(struct uart_8250_port *up, int bits)
2059+
static void wait_for_lsr(struct uart_8250_port *up, int bits)
20632060
{
20642061
unsigned int status, tmout = 10000;
20652062

@@ -2076,6 +2073,16 @@ static void wait_for_xmitr(struct uart_8250_port *up, int bits)
20762073
udelay(1);
20772074
touch_nmi_watchdog();
20782075
}
2076+
}
2077+
2078+
/*
2079+
* Wait for transmitter & holding register to empty
2080+
*/
2081+
static void wait_for_xmitr(struct uart_8250_port *up, int bits)
2082+
{
2083+
unsigned int tmout;
2084+
2085+
wait_for_lsr(up, bits);
20792086

20802087
/* Wait up to 1s for flow control if necessary */
20812088
if (up->port.flags & UPF_CONS_FLOW) {
@@ -3325,6 +3332,35 @@ static void serial8250_console_restore(struct uart_8250_port *up)
33253332
serial8250_out_MCR(up, UART_MCR_DTR | UART_MCR_RTS);
33263333
}
33273334

3335+
/*
3336+
* Print a string to the serial port using the device FIFO
3337+
*
3338+
* It sends fifosize bytes and then waits for the fifo
3339+
* to get empty.
3340+
*/
3341+
static void serial8250_console_fifo_write(struct uart_8250_port *up,
3342+
const char *s, unsigned int count)
3343+
{
3344+
int i;
3345+
const char *end = s + count;
3346+
unsigned int fifosize = up->port.fifosize;
3347+
bool cr_sent = false;
3348+
3349+
while (s != end) {
3350+
wait_for_lsr(up, UART_LSR_THRE);
3351+
3352+
for (i = 0; i < fifosize && s != end; ++i) {
3353+
if (*s == '\n' && !cr_sent) {
3354+
serial_out(up, UART_TX, '\r');
3355+
cr_sent = true;
3356+
} else {
3357+
serial_out(up, UART_TX, *s++);
3358+
cr_sent = false;
3359+
}
3360+
}
3361+
}
3362+
}
3363+
33283364
/*
33293365
* Print a string to the serial port trying not to disturb
33303366
* any possible real use of the port...
@@ -3340,7 +3376,7 @@ void serial8250_console_write(struct uart_8250_port *up, const char *s,
33403376
struct uart_8250_em485 *em485 = up->em485;
33413377
struct uart_port *port = &up->port;
33423378
unsigned long flags;
3343-
unsigned int ier;
3379+
unsigned int ier, use_fifo;
33443380
int locked = 1;
33453381

33463382
touch_nmi_watchdog();
@@ -3372,7 +3408,20 @@ void serial8250_console_write(struct uart_8250_port *up, const char *s,
33723408
mdelay(port->rs485.delay_rts_before_send);
33733409
}
33743410

3375-
uart_console_write(port, s, count, serial8250_console_putchar);
3411+
use_fifo = (up->capabilities & UART_CAP_FIFO) &&
3412+
port->fifosize > 1 &&
3413+
(serial_port_in(port, UART_FCR) & UART_FCR_ENABLE_FIFO) &&
3414+
/*
3415+
* After we put a data in the fifo, the controller will send
3416+
* it regardless of the CTS state. Therefore, only use fifo
3417+
* if we don't use control flow.
3418+
*/
3419+
!(up->port.flags & UPF_CONS_FLOW);
3420+
3421+
if (likely(use_fifo))
3422+
serial8250_console_fifo_write(up, s, count);
3423+
else
3424+
uart_console_write(port, s, count, serial8250_console_putchar);
33763425

33773426
/*
33783427
* Finally, wait for transmitter to become empty

0 commit comments

Comments
 (0)