blob: 3f5f4efe077b0947880825525eb6f8b82adb87c3 [file] [log] [blame]
wdenke85390d2002-04-01 14:29:03 +00001/*
2 * COM1 NS16550 support
Stefan Roese88fbf932010-04-15 16:07:28 +02003 * originally from linux source (arch/powerpc/boot/ns16550.c)
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02004 * modified to use CONFIG_SYS_ISA_MEM and new defines
wdenke85390d2002-04-01 14:29:03 +00005 */
6
Simon Glasse98e01e2014-09-04 16:27:32 -06007#include <common.h>
wdenke85390d2002-04-01 14:29:03 +00008#include <ns16550.h>
Ladislav Michlcc294422010-02-01 23:34:25 +01009#include <watchdog.h>
Graeme Russ14f06e62010-04-24 00:05:46 +100010#include <linux/types.h>
11#include <asm/io.h>
wdenke85390d2002-04-01 14:29:03 +000012
Detlev Zundel166fb542009-04-03 11:53:01 +020013#define UART_LCRVAL UART_LCR_8N1 /* 8 data, 1 stop, no parity */
14#define UART_MCRVAL (UART_MCR_DTR | \
15 UART_MCR_RTS) /* RTS/DTR */
16#define UART_FCRVAL (UART_FCR_FIFO_EN | \
17 UART_FCR_RXSR | \
18 UART_FCR_TXSR) /* Clear & enable FIFOs */
Graeme Russ14f06e62010-04-24 00:05:46 +100019#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glassdd5497c2011-10-15 19:14:09 +000020#define serial_out(x, y) outb(x, (ulong)y)
21#define serial_in(y) inb((ulong)y)
Dave Aldridgea51bebc2011-09-01 22:47:14 +000022#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
Simon Glassdd5497c2011-10-15 19:14:09 +000023#define serial_out(x, y) out_be32(y, x)
24#define serial_in(y) in_be32(y)
Dave Aldridgea51bebc2011-09-01 22:47:14 +000025#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
Simon Glassdd5497c2011-10-15 19:14:09 +000026#define serial_out(x, y) out_le32(y, x)
27#define serial_in(y) in_le32(y)
Graeme Russ14f06e62010-04-24 00:05:46 +100028#else
Simon Glassdd5497c2011-10-15 19:14:09 +000029#define serial_out(x, y) writeb(x, y)
30#define serial_in(y) readb(y)
Graeme Russ14f06e62010-04-24 00:05:46 +100031#endif
wdenke85390d2002-04-01 14:29:03 +000032
Khoronzhuk, Ivan80902982014-07-16 00:59:25 +030033#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040034#define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0
35#define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
Karicheri, Muralidharancbc08882014-04-09 15:38:46 -040036#undef UART_MCRVAL
37#ifdef CONFIG_SERIAL_HW_FLOW_CONTROL
38#define UART_MCRVAL (UART_MCR_RTS | UART_MCR_AFE)
39#else
40#define UART_MCRVAL (UART_MCR_RTS)
41#endif
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -040042#endif
43
Prafulla Wadaskar66216372010-10-27 21:58:31 +053044#ifndef CONFIG_SYS_NS16550_IER
45#define CONFIG_SYS_NS16550_IER 0x00
46#endif /* CONFIG_SYS_NS16550_IER */
47
Simon Glasse98e01e2014-09-04 16:27:32 -060048int ns16550_calc_divisor(NS16550_t port, int clock, int baudrate)
49{
50 const unsigned int mode_x_div = 16;
51
52#ifdef CONFIG_OMAP1510
53 /* If can't cleanly clock 115200 set div to 1 */
54 if ((clock == 12000000) && (baudrate == 115200)) {
55 port->osc_12m_sel = OSC_12M_SEL; /* enable 6.5 * divisor */
56 return 1; /* return 1 for base divisor */
57 }
58 port->osc_12m_sel = 0; /* clear if previsouly set */
59#endif
60
61 return DIV_ROUND_CLOSEST(clock, mode_x_div * baudrate);
62}
63
Simon Glassdd5497c2011-10-15 19:14:09 +000064void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000065{
Manfred Huberf9b8ae32013-03-29 02:52:36 +000066#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_OMAP34XX))
67 /*
68 * On some OMAP3 devices when UART3 is configured for boot mode before
69 * SPL starts only THRE bit is set. We have to empty the transmitter
70 * before initialization starts.
71 */
72 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
73 == UART_LSR_THRE) {
74 serial_out(UART_LCR_DLAB, &com_port->lcr);
75 serial_out(baud_divisor & 0xff, &com_port->dll);
76 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
77 serial_out(UART_LCRVAL, &com_port->lcr);
78 serial_out(0, &com_port->mdr1);
79 }
80#endif
81
Scott Wood6c6f0612012-09-18 18:19:05 -050082 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
83 ;
84
Prafulla Wadaskar66216372010-10-27 21:58:31 +053085 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rinifc695e32013-12-20 11:19:33 -050086#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
87 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ14f06e62010-04-24 00:05:46 +100088 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk21136db2003-07-16 21:53:01 +000089#endif
Simon Glass19bc5012013-03-05 14:40:02 +000090 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
Graeme Russ14f06e62010-04-24 00:05:46 +100091 serial_out(0, &com_port->dll);
92 serial_out(0, &com_port->dlm);
93 serial_out(UART_LCRVAL, &com_port->lcr);
94 serial_out(UART_MCRVAL, &com_port->mcr);
95 serial_out(UART_FCRVAL, &com_port->fcr);
96 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
97 serial_out(baud_divisor & 0xff, &com_port->dll);
98 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
99 serial_out(UART_LCRVAL, &com_port->lcr);
Masahiro Yamada641e3ce2014-07-30 19:11:41 +0900100#if defined(CONFIG_OMAP) || \
Matt Porter7967b1a2013-03-15 10:07:09 +0000101 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoinea6be77c2013-07-02 12:05:58 +0200102 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath7d744102011-10-14 02:58:26 +0000103
Simon Glassdd5497c2011-10-15 19:14:09 +0000104 /* /16 is proper to hit 115200 with 48MHz */
105 serial_out(0, &com_port->mdr1);
Mike Frysingerd0e97862009-02-11 20:26:52 -0500106#endif /* CONFIG_OMAP */
Khoronzhuk, Ivan80902982014-07-16 00:59:25 +0300107#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianov7bcf4d62014-04-04 13:16:53 -0400108 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
109#endif
wdenke85390d2002-04-01 14:29:03 +0000110}
111
Ron Madriddfa028a2009-02-18 14:30:44 -0800112#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000113void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000114{
Prafulla Wadaskar66216372010-10-27 21:58:31 +0530115 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Graeme Russ14f06e62010-04-24 00:05:46 +1000116 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
117 serial_out(0, &com_port->dll);
118 serial_out(0, &com_port->dlm);
119 serial_out(UART_LCRVAL, &com_port->lcr);
120 serial_out(UART_MCRVAL, &com_port->mcr);
121 serial_out(UART_FCRVAL, &com_port->fcr);
122 serial_out(UART_LCR_BKSE, &com_port->lcr);
123 serial_out(baud_divisor & 0xff, &com_port->dll);
124 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
125 serial_out(UART_LCRVAL, &com_port->lcr);
wdenke85390d2002-04-01 14:29:03 +0000126}
Ron Madriddfa028a2009-02-18 14:30:44 -0800127#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000128
Simon Glassdd5497c2011-10-15 19:14:09 +0000129void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000130{
Simon Glassdd5497c2011-10-15 19:14:09 +0000131 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
132 ;
Graeme Russ14f06e62010-04-24 00:05:46 +1000133 serial_out(c, &com_port->thr);
Stefan Roese57b99882010-10-12 09:39:45 +0200134
135 /*
136 * Call watchdog_reset() upon newline. This is done here in putc
137 * since the environment code uses a single puts() to print the complete
138 * environment upon "printenv". So we can't put this watchdog call
139 * in puts().
140 */
141 if (c == '\n')
142 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000143}
144
Ron Madriddfa028a2009-02-18 14:30:44 -0800145#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000146char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000147{
Graeme Russ14f06e62010-04-24 00:05:46 +1000148 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasut9e1fca92012-09-15 10:25:19 +0200149#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk29e7f5a2004-03-12 00:14:09 +0000150 extern void usbtty_poll(void);
151 usbtty_poll();
152#endif
Ladislav Michlcc294422010-02-01 23:34:25 +0100153 WATCHDOG_RESET();
wdenk29e7f5a2004-03-12 00:14:09 +0000154 }
Graeme Russ14f06e62010-04-24 00:05:46 +1000155 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000156}
157
Simon Glassdd5497c2011-10-15 19:14:09 +0000158int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000159{
Simon Glassdd5497c2011-10-15 19:14:09 +0000160 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000161}
162
Ron Madriddfa028a2009-02-18 14:30:44 -0800163#endif /* CONFIG_NS16550_MIN_FUNCTIONS */