]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
drivers: PL011: add support for the ARM SBSA generic UART
authorAndre Przywara <andre.przywara@arm.com>
Thu, 21 May 2015 16:26:23 +0000 (17:26 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 24 May 2015 20:08:51 +0000 (13:08 -0700)
commit0dd1e247fd39aed20fd2baacc62ca44d82534798
treef66ec918c5b7aece081e014ac525f29bc925d4cb
parentcefc2d1d66f0e0f9fbe72558c27ceeb076073f38
drivers: PL011: add support for the ARM SBSA generic UART

The ARM Server Base System Architecture[1] document describes a
generic UART which is a subset of the PL011 UART.
It lacks DMA support, baud rate control and modem status line
control, among other things.
The idea is to move the UART initialization and setup into the
firmware (which does this job today already) and let the kernel just
use the UART for sending and receiving characters.

We use the recent refactoring to build a new struct uart_ops
variable which points to some new functions avoiding access to the
missing registers. We reuse as much existing PL011 code as possible.

In contrast to the PL011 the SBSA UART does not define any AMBA or
PrimeCell relations, so we go with a pretty generic probe function
which only uses platform device functions.
A DT binding is provided with this patch, ACPI support is added in a
separate one.

Signed-off-by: Andre Przywara <andre.przywara@arm.com>
Tested-by: Mark Langsdorf <mlangsdo@redhat.com>
Tested-by: Naresh Bhat <nbhat@cavium.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Documentation/devicetree/bindings/serial/arm_sbsa_uart.txt [new file with mode: 0644]
drivers/tty/serial/amba-pl011.c