From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tim Kryger Subject: Re: [PATCH v2] serial: 8250_dw: Improve unwritable LCR workaround Date: Mon, 9 Dec 2013 16:42:23 -0800 Message-ID: References: <1380647888-32473-1-git-send-email-tim.kryger@linaro.org> <5548535.pYirbknue4@radagast> <3010367.6CxxZ6Dpea@radagast> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mail-oa0-f48.google.com ([209.85.219.48]:53750 "EHLO mail-oa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750880Ab3LJAmY (ORCPT ); Mon, 9 Dec 2013 19:42:24 -0500 Received: by mail-oa0-f48.google.com with SMTP id l6so4757934oag.21 for ; Mon, 09 Dec 2013 16:42:23 -0800 (PST) In-Reply-To: <3010367.6CxxZ6Dpea@radagast> Sender: linux-serial-owner@vger.kernel.org List-Id: linux-serial@vger.kernel.org To: James Hogan Cc: Ezequiel Garcia , Greg Kroah-Hartman , Heikki Krogerus , linux-serial@vger.kernel.org, "linux-kernel@vger.kernel.org" , Patch Tracking , Thomas Petazzoni , Gregory Clement , Lior Amsalem , Jason Cooper , ARM Kernel List On Fri, Dec 6, 2013 at 4:59 PM, James Hogan wrote: > It appears to work with ~0x20 too, and the workaround isn't getting hit (only > tested boot and logging in - nothing fancy). I think having the printks in > this code with the console directed at the serial must have caused > resursion/busy problems somehow. James, I tested tested the code you proposed (cleaned up to avoid magic numbers) on my hardware and it works fine. diff --git a/drivers/tty/serial/8250/8250_dw.c b/drivers/tty/serial/8250/8250_dw.c index 4658e3e..5f096c7 100644 --- a/drivers/tty/serial/8250/8250_dw.c +++ b/drivers/tty/serial/8250/8250_dw.c @@ -96,7 +96,8 @@ static void dw8250_serial_out(struct uart_port *p, int offset, int value) if (offset == UART_LCR) { int tries = 1000; while (tries--) { - if (value == p->serial_in(p, UART_LCR)) + unsigned int lcr = p->serial_in(p, UART_LCR); + if ((value & ~UART_LCR_SPAR) == (lcr & ~UART_LCR_SPAR)) return; dw8250_force_idle(p); writeb(value, p->membase + (UART_LCR << p->regshift)); @@ -132,7 +133,8 @@ static void dw8250_serial_out32(struct uart_port *p, int offset, int value) if (offset == UART_LCR) { int tries = 1000; while (tries--) { - if (value == p->serial_in(p, UART_LCR)) + unsigned int lcr = p->serial_in(p, UART_LCR); + if ((value & ~UART_LCR_SPAR) == (lcr & ~UART_LCR_SPAR)) return; dw8250_force_idle(p); writel(value, p->membase + (UART_LCR << p->regshift)); Would you mind posting this for proper review so we can get the fix in? Thanks, Tim Kryger