[PATCH v1 0/1] bcm63xx_uart issue with corrupt or cutoff uart output

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



DESCRIPTION
===========
Issue where unprintable characters can occur or output is cut off over the serial uart/linux console depending on timing.

PROBLEM ANALYSIS
================
Problem occurs when changing the serial baud rate when setting up the new console.  The bcm63xx driver does a disable and flush of the uart tx fifo while there is data still in the tx fifo.

SOLUTION
========
If the tx fifo still has data it is trying to send out, we need to wait until it is empty before disabling and flushing the uart.

When we now go to change the uart parameters including speed we check if there is data currently in the tx fifo.  If there is was mdelay(10) and check again.  If it tries 3 times and still has data in it we just continue and sacrifice the tx fifo buffer.

A cleaner and more preferred approach would be to remove:
 - spin_lock_irqsave()
 - bcm_uart_disable()
 - bcm_uart_flush()

However it is not clear if the author put those in to fix another underlying issue.  As a result this solution is a safer approach.

BEFORE FIX
==========
[    0.306000] 14e00520.serial: ttyS0 at MMIO 0x14e00520 (irq = 9, base_baud
= 1687500) is a° 0.315000] console [ttyS0] enabled

AFTER FIX
=========
[    0.315000] 14e00520.serial: ttyS0 at MMIO 0x14e00520 (irq = 9, base_baud
= 1687500) is a bcm63xx_uart
[    0.334000] console [ttyS0] enabled

Signed-off-by: Russell Enderby <rte@xxxxxxx>

Russell Enderby (1):
  Issue where unprintable characters can occur or output is cut off over
    the serial uart/linux console depending on timing.

 drivers/tty/serial/bcm63xx_uart.c | 7 +++++++
 1 file changed, 7 insertions(+)

-- 
1.9.3

--
To unsubscribe from this list: send the line "unsubscribe linux-serial" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Kernel Newbies]     [Security]     [Netfilter]     [Bugtraq]     [Linux PPP]     [Linux FS]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Samba]     [Video 4 Linux]     [Linmodem]     [Device Mapper]     [Linux Kernel for ARM]

  Powered by Linux