X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=include%2Fns16550.h;h=5fcbcd2e74e3a2965eda64905416f1f2b792d4bc;hb=fbebea27e16eb760f1f2109a7535003bf359ba2b;hp=5eeacd6ff945d48f46e8f839a1eb120336d5bb93;hpb=bed6bd326e89366152609821a752d361b2183b46;p=u-boot diff --git a/include/ns16550.h b/include/ns16550.h index 5eeacd6ff9..5fcbcd2e74 100644 --- a/include/ns16550.h +++ b/include/ns16550.h @@ -54,9 +54,10 @@ */ struct ns16550_platdata { unsigned long base; - int reg_offset; int reg_shift; int clock; + int reg_offset; + u32 fcr; }; struct udevice; @@ -117,6 +118,14 @@ typedef struct NS16550 *NS16550_t; #define UART_FCR_RXSR 0x02 /* Receiver soft reset */ #define UART_FCR_TXSR 0x04 /* Transmitter soft reset */ +/* Ingenic JZ47xx specific UART-enable bit. */ +#define UART_FCR_UME 0x10 + +/* Clear & enable FIFOs */ +#define UART_FCR_DEFVAL (UART_FCR_FIFO_EN | \ + UART_FCR_RXSR | \ + UART_FCR_TXSR) + /* * These are the definitions for the Modem Control Register */