#include <linux/io.h>
 
 #include <linux/amba/serial.h>
+#include <linux/serial_reg.h>
 
 static void __iomem *early_base;
 static void (*printch)(char ch);
                     : : "r" (&ch) : "x0", "x1", "memory");
 }
 
+/*
+ * 8250/16550 (8-bit aligned registers) single character TX.
+ */
+static void uart8250_8bit_printch(char ch)
+{
+       while (!(readb_relaxed(early_base + UART_LSR) & UART_LSR_THRE))
+               ;
+       writeb_relaxed(ch, early_base + UART_TX);
+}
+
+/*
+ * 8250/16550 (32-bit aligned registers) single character TX.
+ */
+static void uart8250_32bit_printch(char ch)
+{
+       while (!(readl_relaxed(early_base + (UART_LSR << 2)) & UART_LSR_THRE))
+               ;
+       writel_relaxed(ch, early_base + (UART_TX << 2));
+}
+
 struct earlycon_match {
        const char *name;
        void (*printch)(char ch);
 static const struct earlycon_match earlycon_match[] __initconst = {
        { .name = "pl011", .printch = pl011_printch, },
        { .name = "smh", .printch = smh_printch, },
+       { .name = "uart8250-8bit", .printch = uart8250_8bit_printch, },
+       { .name = "uart8250-32bit", .printch = uart8250_32bit_printch, },
        {}
 };