* [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts @ 2018-04-27 10:05 Dave Martin 2018-04-27 10:05 ` Dave Martin 2018-04-29 13:18 ` Greg KH 0 siblings, 2 replies; 6+ messages in thread From: Dave Martin @ 2018-04-27 10:05 UTC (permalink / raw) To: linux-arm-kernel This is an update to a previous RFC [1], to fix a problem observed by the qemu community that causes serial input to hang when booting a simulated system with data already queued in the UART FIFO [2]. This patch could cause problems for people that are actually relying on chars queued in the PL011 RX FIFO during boot or while the UART is closed. There are no guarantees about such things working in general. In either case, there is no protection against RX FIFO overflow or reprogramming of the UART parameters while Linux is not actively receiving chars. Cheers ---Dave [1] [RFC PATCH v4] tty: pl011: Avoid spuriously stuck-off interrupts http://lists.infradead.org/pipermail/linux-arm-kernel/2018-April/574033.html [2] [Qemu-devel] [Qemu-arm] [PATCH] pl011: do not put into fifo before enabled the interruption https://lists.gnu.org/archive/html/qemu-devel/2018-01/msg06446.html Dave Martin (1): tty: pl011: Avoid spuriously stuck-off interrupts drivers/tty/serial/amba-pl011.c | 10 ++++++++++ 1 file changed, 10 insertions(+) -- 2.1.4 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts 2018-04-27 10:05 [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts Dave Martin @ 2018-04-27 10:05 ` Dave Martin 2018-05-08 11:01 ` Russell King - ARM Linux 2018-04-29 13:18 ` Greg KH 1 sibling, 1 reply; 6+ messages in thread From: Dave Martin @ 2018-04-27 10:05 UTC (permalink / raw) To: linux-arm-kernel Commit 9b96fbacda34 ("serial: PL011: clear pending interrupts") clears the RX and receive timeout interrupts on pl011 startup, to avoid a screaming-interrupt scenario that can occur when the firmware or bootloader leaves these interrupts asserted. This has been noted as an issue when running Linux on qemu [1]. Unfortunately, the above fix seems to lead to potential misbehaviour if the RX FIFO interrupt is asserted _non_ spuriously on driver startup, if the RX FIFO is also already full to the trigger level. Clearing the RX FIFO interrupt does not change the FIFO fill level. In this scenario, because the interrupt is now clear and because the FIFO is already full to the trigger level, no new assertion of the RX FIFO interrupt can occur unless the FIFO is drained back below the trigger level. This never occurs because the pl011 driver is waiting for an RX FIFO interrupt to tell it that there is something to read, and does not read the FIFO at all until that interrupt occurs. Thus, simply clearing "spurious" interrupts on startup may be misguided, since there is no way to be sure that the interrupts are truly spurious, and things can go wrong if they are not. This patch instead clears the interrupt condition by draining the RX FIFO during UART startup, after clearing any potentially spurious interrupt. This should ensure that an interrupt will definitely be asserted if the RX FIFO subsequently becomes sufficiently full. The drain is done at the point of enabling interrupts only. This means that it will occur any time the UART is newly opened through the tty layer. It will not apply to polled-mode use of the UART by kgdboc: since that scenario cannot use interrupts by design, this should not matter. kgdboc will interact badly with "normal" use of the UART in any case: this patch makes no attempt to paper over such issues. This patch does not attempt to address the case where the RX FIFO fills faster than it can be drained: that is a pathological hardware design problem that is beyond the scope of the driver to work around. [1] [Qemu-devel] [Qemu-arm] [PATCH] pl011: do not put into fifo before enabled the interruption https://lists.gnu.org/archive/html/qemu-devel/2018-01/msg06446.html Reported-by: Wei Xu <xuwei5@hisilicon.com> Cc: Russell King <linux@armlinux.org.uk> Cc: Linus Walleij <linus.walleij@linaro.org> Cc: Peter Maydell <peter.maydell@linaro.org> Fixes: 9b96fbacda34 ("serial: PL011: clear pending interrupts") Signed-off-by: Dave Martin <Dave.Martin@arm.com> Tested-by: Andrew Jones <drjones@redhat.com> Reviewed-by: Andrew Jones <drjones@redhat.com> --- drivers/tty/serial/amba-pl011.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c index 4b40a5b..a6ccb85 100644 --- a/drivers/tty/serial/amba-pl011.c +++ b/drivers/tty/serial/amba-pl011.c @@ -1731,6 +1731,16 @@ static void pl011_enable_interrupts(struct uart_amba_port *uap) /* Clear out any spuriously appearing RX interrupts */ pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR); + + /* + * RXIS is asserted only when the RX FIFO transitions from below + * to above the trigger threshold. If the RX FIFO is already + * full to the threshold this can't happen and RXIS will now be + * stuck off. Drain the RX FIFO explicitly to fix this: + */ + while (!(pl011_read(uap, REG_FR) & UART01x_FR_RXFE)) + pl011_read(uap, REG_DR); + uap->im = UART011_RTIM; if (!pl011_dma_rx_running(uap)) uap->im |= UART011_RXIM; -- 2.1.4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts 2018-04-27 10:05 ` Dave Martin @ 2018-05-08 11:01 ` Russell King - ARM Linux 2018-05-08 12:44 ` Dave Martin 0 siblings, 1 reply; 6+ messages in thread From: Russell King - ARM Linux @ 2018-05-08 11:01 UTC (permalink / raw) To: linux-arm-kernel On Fri, Apr 27, 2018 at 11:05:45AM +0100, Dave Martin wrote: > Commit 9b96fbacda34 ("serial: PL011: clear pending interrupts") > clears the RX and receive timeout interrupts on pl011 startup, to > avoid a screaming-interrupt scenario that can occur when the > firmware or bootloader leaves these interrupts asserted. > > This has been noted as an issue when running Linux on qemu [1]. > > Unfortunately, the above fix seems to lead to potential > misbehaviour if the RX FIFO interrupt is asserted _non_ spuriously > on driver startup, if the RX FIFO is also already full to the > trigger level. > > Clearing the RX FIFO interrupt does not change the FIFO fill level. > In this scenario, because the interrupt is now clear and because > the FIFO is already full to the trigger level, no new assertion of > the RX FIFO interrupt can occur unless the FIFO is drained back > below the trigger level. This never occurs because the pl011 > driver is waiting for an RX FIFO interrupt to tell it that there is > something to read, and does not read the FIFO at all until that > interrupt occurs. > > Thus, simply clearing "spurious" interrupts on startup may be > misguided, since there is no way to be sure that the interrupts are > truly spurious, and things can go wrong if they are not. > > This patch instead clears the interrupt condition by draining the > RX FIFO during UART startup, after clearing any potentially > spurious interrupt. This should ensure that an interrupt will > definitely be asserted if the RX FIFO subsequently becomes > sufficiently full. > > The drain is done at the point of enabling interrupts only. This > means that it will occur any time the UART is newly opened through > the tty layer. It will not apply to polled-mode use of the UART by > kgdboc: since that scenario cannot use interrupts by design, this > should not matter. kgdboc will interact badly with "normal" use of > the UART in any case: this patch makes no attempt to paper over > such issues. > > This patch does not attempt to address the case where the RX FIFO > fills faster than it can be drained: that is a pathological > hardware design problem that is beyond the scope of the driver to > work around. > > [1] [Qemu-devel] [Qemu-arm] [PATCH] pl011: do not put into fifo > before enabled the interruption > https://lists.gnu.org/archive/html/qemu-devel/2018-01/msg06446.html > > Reported-by: Wei Xu <xuwei5@hisilicon.com> > Cc: Russell King <linux@armlinux.org.uk> > Cc: Linus Walleij <linus.walleij@linaro.org> > Cc: Peter Maydell <peter.maydell@linaro.org> > Fixes: 9b96fbacda34 ("serial: PL011: clear pending interrupts") > Signed-off-by: Dave Martin <Dave.Martin@arm.com> > Tested-by: Andrew Jones <drjones@redhat.com> > Reviewed-by: Andrew Jones <drjones@redhat.com> > --- > drivers/tty/serial/amba-pl011.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c > index 4b40a5b..a6ccb85 100644 > --- a/drivers/tty/serial/amba-pl011.c > +++ b/drivers/tty/serial/amba-pl011.c > @@ -1731,6 +1731,16 @@ static void pl011_enable_interrupts(struct uart_amba_port *uap) > > /* Clear out any spuriously appearing RX interrupts */ > pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR); > + > + /* > + * RXIS is asserted only when the RX FIFO transitions from below > + * to above the trigger threshold. If the RX FIFO is already > + * full to the threshold this can't happen and RXIS will now be > + * stuck off. Drain the RX FIFO explicitly to fix this: > + */ > + while (!(pl011_read(uap, REG_FR) & UART01x_FR_RXFE)) > + pl011_read(uap, REG_DR); You probably ought to limit this in case of a stuck receive not empty case, maybe to (eg) twice the depth of the FIFO? -- RMK's Patch system: http://www.armlinux.org.uk/developer/patches/ FTTC broadband for 0.8mile line in suburbia: sync at 8.8Mbps down 630kbps up According to speedtest.net: 8.21Mbps down 510kbps up ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts 2018-05-08 11:01 ` Russell King - ARM Linux @ 2018-05-08 12:44 ` Dave Martin 0 siblings, 0 replies; 6+ messages in thread From: Dave Martin @ 2018-05-08 12:44 UTC (permalink / raw) To: linux-arm-kernel On Tue, May 08, 2018 at 12:01:19PM +0100, Russell King - ARM Linux wrote: > On Fri, Apr 27, 2018 at 11:05:45AM +0100, Dave Martin wrote: > > Commit 9b96fbacda34 ("serial: PL011: clear pending interrupts") > > clears the RX and receive timeout interrupts on pl011 startup, to > > avoid a screaming-interrupt scenario that can occur when the > > firmware or bootloader leaves these interrupts asserted. > > > > This has been noted as an issue when running Linux on qemu [1]. > > > > Unfortunately, the above fix seems to lead to potential > > misbehaviour if the RX FIFO interrupt is asserted _non_ spuriously > > on driver startup, if the RX FIFO is also already full to the > > trigger level. > > > > Clearing the RX FIFO interrupt does not change the FIFO fill level. > > In this scenario, because the interrupt is now clear and because > > the FIFO is already full to the trigger level, no new assertion of > > the RX FIFO interrupt can occur unless the FIFO is drained back > > below the trigger level. This never occurs because the pl011 > > driver is waiting for an RX FIFO interrupt to tell it that there is > > something to read, and does not read the FIFO at all until that > > interrupt occurs. > > > > Thus, simply clearing "spurious" interrupts on startup may be > > misguided, since there is no way to be sure that the interrupts are > > truly spurious, and things can go wrong if they are not. > > > > This patch instead clears the interrupt condition by draining the > > RX FIFO during UART startup, after clearing any potentially > > spurious interrupt. This should ensure that an interrupt will > > definitely be asserted if the RX FIFO subsequently becomes > > sufficiently full. > > > > The drain is done at the point of enabling interrupts only. This > > means that it will occur any time the UART is newly opened through > > the tty layer. It will not apply to polled-mode use of the UART by > > kgdboc: since that scenario cannot use interrupts by design, this > > should not matter. kgdboc will interact badly with "normal" use of > > the UART in any case: this patch makes no attempt to paper over > > such issues. > > > > This patch does not attempt to address the case where the RX FIFO > > fills faster than it can be drained: that is a pathological > > hardware design problem that is beyond the scope of the driver to > > work around. > > > > [1] [Qemu-devel] [Qemu-arm] [PATCH] pl011: do not put into fifo > > before enabled the interruption > > https://lists.gnu.org/archive/html/qemu-devel/2018-01/msg06446.html > > > > Reported-by: Wei Xu <xuwei5@hisilicon.com> > > Cc: Russell King <linux@armlinux.org.uk> > > Cc: Linus Walleij <linus.walleij@linaro.org> > > Cc: Peter Maydell <peter.maydell@linaro.org> > > Fixes: 9b96fbacda34 ("serial: PL011: clear pending interrupts") > > Signed-off-by: Dave Martin <Dave.Martin@arm.com> > > Tested-by: Andrew Jones <drjones@redhat.com> > > Reviewed-by: Andrew Jones <drjones@redhat.com> > > --- > > drivers/tty/serial/amba-pl011.c | 10 ++++++++++ > > 1 file changed, 10 insertions(+) > > > > diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c > > index 4b40a5b..a6ccb85 100644 > > --- a/drivers/tty/serial/amba-pl011.c > > +++ b/drivers/tty/serial/amba-pl011.c > > @@ -1731,6 +1731,16 @@ static void pl011_enable_interrupts(struct uart_amba_port *uap) > > > > /* Clear out any spuriously appearing RX interrupts */ > > pl011_write(UART011_RTIS | UART011_RXIS, uap, REG_ICR); > > + > > + /* > > + * RXIS is asserted only when the RX FIFO transitions from below > > + * to above the trigger threshold. If the RX FIFO is already > > + * full to the threshold this can't happen and RXIS will now be > > + * stuck off. Drain the RX FIFO explicitly to fix this: > > + */ > > + while (!(pl011_read(uap, REG_FR) & UART01x_FR_RXFE)) > > + pl011_read(uap, REG_DR); > > You probably ought to limit this in case of a stuck receive not empty > case, maybe to (eg) twice the depth of the FIFO? My argument would have been that if the FIFO fills too fast to be drained, then you have more serious problems... but it would be better for this to show as character loss than a lockup. So, I guess draining twice the FIFO depth before giving up is a reasonable compromise. I'll hack that in and repost. Cheers ---Dave ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts 2018-04-27 10:05 [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts Dave Martin 2018-04-27 10:05 ` Dave Martin @ 2018-04-29 13:18 ` Greg KH 2018-04-30 12:49 ` Dave Martin 1 sibling, 1 reply; 6+ messages in thread From: Greg KH @ 2018-04-29 13:18 UTC (permalink / raw) To: linux-arm-kernel On Fri, Apr 27, 2018 at 11:05:44AM +0100, Dave Martin wrote: > This is an update to a previous RFC [1], to fix a problem observed by > the qemu community that causes serial input to hang when booting a > simulated system with data already queued in the UART FIFO [2]. > > This patch could cause problems for people that are actually relying > on chars queued in the PL011 RX FIFO during boot or while the UART is > closed. There are no guarantees about such things working in general. > In either case, there is no protection against RX FIFO overflow or > reprogramming of the UART parameters while Linux is not actively > receiving chars. > > Cheers > ---Dave > > [1] [RFC PATCH v4] tty: pl011: Avoid spuriously stuck-off interrupts > http://lists.infradead.org/pipermail/linux-arm-kernel/2018-April/574033.html > > [2] [Qemu-devel] [Qemu-arm] [PATCH] pl011: do not put into fifo > before enabled the interruption > https://lists.gnu.org/archive/html/qemu-devel/2018-01/msg06446.html > > Dave Martin (1): > tty: pl011: Avoid spuriously stuck-off interrupts > > drivers/tty/serial/amba-pl011.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > -- > 2.1.4 There is no patch here, did something go wrong? You do not need a "cover letter" for a single patch... thanks, greg k-h ^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts 2018-04-29 13:18 ` Greg KH @ 2018-04-30 12:49 ` Dave Martin 0 siblings, 0 replies; 6+ messages in thread From: Dave Martin @ 2018-04-30 12:49 UTC (permalink / raw) To: linux-arm-kernel On Sun, Apr 29, 2018 at 03:18:57PM +0200, Greg KH wrote: > On Fri, Apr 27, 2018 at 11:05:44AM +0100, Dave Martin wrote: > > This is an update to a previous RFC [1], to fix a problem observed by > > the qemu community that causes serial input to hang when booting a > > simulated system with data already queued in the UART FIFO [2]. > > > > This patch could cause problems for people that are actually relying > > on chars queued in the PL011 RX FIFO during boot or while the UART is > > closed. There are no guarantees about such things working in general. > > In either case, there is no protection against RX FIFO overflow or > > reprogramming of the UART parameters while Linux is not actively > > receiving chars. > > > > Cheers > > ---Dave > > > > [1] [RFC PATCH v4] tty: pl011: Avoid spuriously stuck-off interrupts > > http://lists.infradead.org/pipermail/linux-arm-kernel/2018-April/574033.html > > > > [2] [Qemu-devel] [Qemu-arm] [PATCH] pl011: do not put into fifo > > before enabled the interruption > > https://lists.gnu.org/archive/html/qemu-devel/2018-01/msg06446.html > > > > Dave Martin (1): > > tty: pl011: Avoid spuriously stuck-off interrupts > > > > drivers/tty/serial/amba-pl011.c | 10 ++++++++++ > > 1 file changed, 10 insertions(+) > > > > -- > > 2.1.4 > > There is no patch here, did something go wrong? > > You do not need a "cover letter" for a single patch... I wanted to provide some additional context for the benefit of people who'd been reviewing earler RFCs for this change, though I could have put it under the tearoff instead. I was expecting --cover-letter to generate [PATCH 0/1] and [PATCH 1/1] Subject lines, but it seems that it doesn't do that. To clarify, there is only intended to be one patch here. Do you want me to repost? Cheers ---Dave ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-05-08 12:44 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-04-27 10:05 [PATCH] tty: pl011: Avoid spuriously stuck-off interrupts Dave Martin 2018-04-27 10:05 ` Dave Martin 2018-05-08 11:01 ` Russell King - ARM Linux 2018-05-08 12:44 ` Dave Martin 2018-04-29 13:18 ` Greg KH 2018-04-30 12:49 ` Dave Martin
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).