Skip to content

Commit

Permalink
serial: Enable Freescale 16550 workaround on arm
Browse files Browse the repository at this point in the history
The same serial hardware is present on LS2080A which is arm64, and
LS1021A which is arm32, so don't limit the workaround to PPC.

Unlike PPC which uses arch/powerpc/kernel/legacy_serial.c, the ARM
targets use drivers/tty/serial/of_serial.c, so add the handle_irq
override check there as well.

Signed-off-by: Scott Wood <scottwood@freescale.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Scott Wood authored and Greg Kroah-Hartman committed Oct 18, 2015
1 parent 37f0679 commit d43b54d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/tty/serial/8250/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -274,8 +274,8 @@ config SERIAL_8250_ACORN

config SERIAL_8250_FSL
bool
depends on SERIAL_8250_CONSOLE && PPC_UDBG_16550
default PPC
depends on SERIAL_8250_CONSOLE
default PPC || ARM || ARM64

config SERIAL_8250_DW
tristate "Support for Synopsys DesignWare 8250 quirks"
Expand Down
5 changes: 5 additions & 0 deletions drivers/tty/serial/of_serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,11 @@ static int of_platform_serial_setup(struct platform_device *ofdev,
break;
}

if (IS_ENABLED(CONFIG_SERIAL_8250_FSL) &&
(of_device_is_compatible(np, "fsl,ns16550") ||
of_device_is_compatible(np, "fsl,16550-FIFO64")))
port->handle_irq = fsl8250_handle_irq;

return 0;
out:
if (info->clk)
Expand Down

0 comments on commit d43b54d

Please sign in to comment.