blob: b20ae4b2d5162cd127bc1934250c491175e88e71 [file] [log] [blame]
wdenke85390d2002-04-01 14:29:03 +00001/*
2 * COM1 NS16550 support
3 * originally from linux source (arch/ppc/boot/ns16550.c)
4 * modified to use CFG_ISA_MEM and new defines
5 */
6
7#include <config.h>
8
9#ifdef CFG_NS16550
10
11#include <ns16550.h>
12
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 */
16
17void NS16550_init (NS16550_t com_port, int baud_divisor)
18{
19 com_port->ier = 0x00;
wdenk945af8d2003-07-16 21:53:01 +000020#ifdef CONFIG_OMAP1510
wdenk2e5983d2003-07-15 20:04:06 +000021 com_port->mdr1 = 0x7; /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +000022#endif
wdenke85390d2002-04-01 14:29:03 +000023 com_port->lcr = LCR_BKSE | LCRVAL;
24 com_port->dll = baud_divisor & 0xff;
25 com_port->dlm = (baud_divisor >> 8) & 0xff;
26 com_port->lcr = LCRVAL;
27 com_port->mcr = MCRVAL;
28 com_port->fcr = FCRVAL;
wdenk2e5983d2003-07-15 20:04:06 +000029#ifdef CONFIG_OMAP1510
30 com_port->mdr1 = 0; /* select uart mode */
31#endif
32
wdenke85390d2002-04-01 14:29:03 +000033}
34
35void NS16550_reinit (NS16550_t com_port, int baud_divisor)
36{
37 com_port->ier = 0x00;
38 com_port->lcr = LCR_BKSE;
39 com_port->dll = baud_divisor & 0xff;
40 com_port->dlm = (baud_divisor >> 8) & 0xff;
41 com_port->lcr = LCRVAL;
42 com_port->mcr = MCRVAL;
43 com_port->fcr = FCRVAL;
44}
45
46void NS16550_putc (NS16550_t com_port, char c)
47{
48 while ((com_port->lsr & LSR_THRE) == 0);
49 com_port->thr = c;
50}
51
52char NS16550_getc (NS16550_t com_port)
53{
54 while ((com_port->lsr & LSR_DR) == 0);
55 return (com_port->rbr);
56}
57
58int NS16550_tstc (NS16550_t com_port)
59{
60 return ((com_port->lsr & LSR_DR) != 0);
61}
62
63#endif