summaryrefslogtreecommitdiff
path: root/drivers/tty/serial/timbuart.c
diff options
context:
space:
mode:
authorJohan Hovold <johan+linaro@kernel.org>2024-09-06 16:13:34 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-09-11 16:44:45 +0300
commitcc4a0e5754a16bbc1e215c091349a7c83a2c5e14 (patch)
treebcb95d37636f6246f44c6a963c87e69de4e3e273 /drivers/tty/serial/timbuart.c
parentb26d1ad1221273c88c2c4f5b4080338b8ca23859 (diff)
downloadlinux-cc4a0e5754a16bbc1e215c091349a7c83a2c5e14.tar.xz
serial: qcom-geni: fix console corruption
The Qualcomm serial console implementation is broken and can lose characters when the serial port is also used for tty output. Specifically, the console code only waits for the current tx command to complete when all data has already been written to the fifo. When there are on-going longer transfers this often means that console output is lost when the console code inadvertently "hijacks" the current tx command instead of starting a new one. This can, for example, be observed during boot when console output that should have been interspersed with init output is truncated: [ 9.462317] qcom-snps-eusb2-hsphy fde000.phy: Registered Qcom-eUSB2 phy [ OK ] Found device KBG50ZNS256G KIOXIA Wi[ 9.471743ndows. [ 9.539915] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller Add a new state variable to track how much data has been written to the fifo and use it to determine when the fifo and shift register are both empty. This is needed since there is currently no other known way to determine when the shift register is empty. This in turn allows the console code to interrupt long transfers without losing data. Note that the oops-in-progress case is similarly broken as it does not cancel any active command and also waits for the wrong status flag when attempting to drain the fifo (TX_FIFO_NOT_EMPTY_EN is only set when cancelling a command leaves data in the fifo). Fixes: c4f528795d1a ("tty: serial: msm_geni_serial: Add serial driver support for GENI based QUP") Fixes: a1fee899e5be ("tty: serial: qcom_geni_serial: Fix softlock") Fixes: 9e957a155005 ("serial: qcom-geni: Don't cancel/abort if we can't get the port lock") Cc: stable@vger.kernel.org # 4.17 Reviewed-by: Douglas Anderson <dianders@chromium.org> Tested-by: NĂ­colas F. R. A. Prado <nfraprado@collabora.com> Signed-off-by: Johan Hovold <johan+linaro@kernel.org> Link: https://lore.kernel.org/r/20240906131336.23625-7-johan+linaro@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/timbuart.c')
0 files changed, 0 insertions, 0 deletions