3 * originally from linux source (arch/ppc/boot/ns16550.c)
4 * modified to use CONFIG_SYS_ISA_MEM and new defines
9 #ifdef CONFIG_SYS_NS16550
13 #define LCRVAL LCR_8N1 /* 8 data, 1 stop, no parity */
14 #define MCRVAL (MCR_DTR | MCR_RTS) /* RTS/DTR */
15 #define FCRVAL (FCR_FIFO_EN | FCR_RXSR | FCR_TXSR) /* Clear & enable FIFOs */
17 void NS16550_init (NS16550_t com_port, int baud_divisor)
21 com_port->mdr1 = 0x7; /* mode select reset TL16C750*/
23 com_port->lcr = LCR_BKSE | LCRVAL;
26 com_port->lcr = LCRVAL;
27 com_port->mcr = MCRVAL;
28 com_port->fcr = FCRVAL;
29 com_port->lcr = LCR_BKSE | LCRVAL;
30 com_port->dll = baud_divisor & 0xff;
31 com_port->dlm = (baud_divisor >> 8) & 0xff;
32 com_port->lcr = LCRVAL;
33 #if defined(CONFIG_OMAP)
34 #if defined(CONFIG_APTIX)
35 com_port->mdr1 = 3; /* /13 mode so Aptix 6MHz can hit 115200 */
37 com_port->mdr1 = 0; /* /16 is proper to hit 115200 with 48MHz */
42 void NS16550_reinit (NS16550_t com_port, int baud_divisor)
45 com_port->lcr = LCR_BKSE | LCRVAL;
48 com_port->lcr = LCRVAL;
49 com_port->mcr = MCRVAL;
50 com_port->fcr = FCRVAL;
51 com_port->lcr = LCR_BKSE;
52 com_port->dll = baud_divisor & 0xff;
53 com_port->dlm = (baud_divisor >> 8) & 0xff;
54 com_port->lcr = LCRVAL;
57 void NS16550_putc (NS16550_t com_port, char c)
59 while ((com_port->lsr & LSR_THRE) == 0);
63 char NS16550_getc (NS16550_t com_port)
65 while ((com_port->lsr & LSR_DR) == 0) {
67 extern void usbtty_poll(void);
71 return (com_port->rbr);
74 int NS16550_tstc (NS16550_t com_port)
76 return ((com_port->lsr & LSR_DR) != 0);