uart: 16550: Fix getctbz check for RDR status is to check for a bit being zero.Unfortunately, we are using a mask rather than the bit position.Further as per http://www.ti.com/lit/ds/symlink/pc1
uart: 16550: Fix getctbz check for RDR status is to check for a bit being zero.Unfortunately, we are using a mask rather than the bit position.Further as per http://www.ti.com/lit/ds/symlink/pc16550d.pdf (page 17),LSR register bit 0 is Data ready status (RDR), not bit position 2.Update the same to match the specification.Reported-by: Sekhar Nori <nsekhar@ti.com>Signed-off-by: Nishanth Menon <nm@ti.com>
show more ...
Move console drivers to AArch64 folderThis patch moves the various assembly console driversinto `aarch64` architecture specific folder. Stub files,which include files from new location, are retai
Move console drivers to AArch64 folderThis patch moves the various assembly console driversinto `aarch64` architecture specific folder. Stub files,which include files from new location, are retained at theoriginal location for platform compatibility reasons.Change-Id: I0069b6c1c0489ca47f5204d4e26e3bc3def533a8
Driver for 16550 UART interfaceThis patch adds driver for the 16550 UART interface. The driver is exposedas a console, which platforms can use to dump their boot/crash logs.Signed-off-by: Varun
Driver for 16550 UART interfaceThis patch adds driver for the 16550 UART interface. The driver is exposedas a console, which platforms can use to dump their boot/crash logs.Signed-off-by: Varun Wadekar <vwadekar@nvidia.com>
12