]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
serial: 8250: Check UART_SCR is writable
authorPeter Hurley <peter@hurleysoftware.com>
Mon, 9 Mar 2015 18:05:01 +0000 (14:05 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 6 May 2015 20:03:59 +0000 (22:03 +0200)
commit f01a0bd8921b9d6668d41fae3198970e6318f532 upstream.

Au1x00/RT2800+ doesn't implement the 8250 scratch register (and
this may be true of other h/w currently supported by the 8250 driver);
read back the canary value written to the scratch register to enable
the console h/w restart after resume from system suspend.

Fixes: 4516d50aabedb ("serial: 8250: Use canary to restart console ...")
Reported-by: Mason <slash.tmp@free.fr>
Signed-off-by: Peter Hurley <peter@hurleysoftware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/8250/8250_core.c

index deae122c9c4bac6a2bb28d6bbc191bfc18d16747..d465ace951867a8bb9d6401474d86bc04d11d053 100644 (file)
@@ -3444,7 +3444,8 @@ void serial8250_suspend_port(int line)
            port->type != PORT_8250) {
                unsigned char canary = 0xa5;
                serial_out(up, UART_SCR, canary);
-               up->canary = canary;
+               if (serial_in(up, UART_SCR) == canary)
+                       up->canary = canary;
        }
 
        uart_suspend_port(&serial8250_reg, port);