blob: d54eba6337247f0eab797fcf4d63924e481e8ad9 [file] [log] [blame]
wdenke85390d2002-04-01 14:29:03 +00001/*
2 * COM1 NS16550 support
Stefan Roesea47a12b2010-04-15 16:07:28 +02003 * originally from linux source (arch/powerpc/boot/ns16550.c)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-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 Glassfa54eb12014-09-04 16:27:32 -06007#include <common.h>
wdenke85390d2002-04-01 14:29:03 +00008#include <ns16550.h>
Ladislav Michla1b322a2010-02-01 23:34:25 +01009#include <watchdog.h>
Graeme Russ167cdad2010-04-24 00:05:46 +100010#include <linux/types.h>
11#include <asm/io.h>
wdenke85390d2002-04-01 14:29:03 +000012
Detlev Zundel200779e2009-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 Russ167cdad2010-04-24 00:05:46 +100019#ifdef CONFIG_SYS_NS16550_PORT_MAPPED
Simon Glassf8df9d02011-10-15 19:14:09 +000020#define serial_out(x, y) outb(x, (ulong)y)
21#define serial_in(y) inb((ulong)y)
Dave Aldridge79df1202011-09-01 22:47:14 +000022#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000023#define serial_out(x, y) out_be32(y, x)
24#define serial_in(y) in_be32(y)
Dave Aldridge79df1202011-09-01 22:47:14 +000025#elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0)
Simon Glassf8df9d02011-10-15 19:14:09 +000026#define serial_out(x, y) out_le32(y, x)
27#define serial_in(y) in_le32(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100028#else
Simon Glassf8df9d02011-10-15 19:14:09 +000029#define serial_out(x, y) writeb(x, y)
30#define serial_in(y) readb(y)
Graeme Russ167cdad2010-04-24 00:05:46 +100031#endif
wdenke85390d2002-04-01 14:29:03 +000032
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +030033#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-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, Muralidharand57dee52014-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 Andrianovef509b92014-04-04 13:16:53 -040042#endif
43
Prafulla Wadaskara160ea02010-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 Glassfa54eb12014-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 Glass8bbe33c2014-09-04 16:27:33 -060064static void NS16550_setbrg(NS16550_t com_port, int baud_divisor)
65{
66 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
67 serial_out(baud_divisor & 0xff, &com_port->dll);
68 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
69 serial_out(UART_LCRVAL, &com_port->lcr);
70}
71
Simon Glassf8df9d02011-10-15 19:14:09 +000072void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000073{
Manfred Huberfd2aeac2013-03-29 02:52:36 +000074#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_OMAP34XX))
75 /*
76 * On some OMAP3 devices when UART3 is configured for boot mode before
77 * SPL starts only THRE bit is set. We have to empty the transmitter
78 * before initialization starts.
79 */
80 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
81 == UART_LSR_THRE) {
Simon Glass8bbe33c2014-09-04 16:27:33 -060082 NS16550_setbrg(com_port, baud_divisor);
Manfred Huberfd2aeac2013-03-29 02:52:36 +000083 serial_out(0, &com_port->mdr1);
84 }
85#endif
86
Scott Woodcb55b332012-09-18 18:19:05 -050087 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
88 ;
89
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053090 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rini456ccfd2013-12-20 11:19:33 -050091#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
92 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ167cdad2010-04-24 00:05:46 +100093 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +000094#endif
Simon Glass8bbe33c2014-09-04 16:27:33 -060095 NS16550_setbrg(com_port, 0);
Graeme Russ167cdad2010-04-24 00:05:46 +100096 serial_out(UART_MCRVAL, &com_port->mcr);
97 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -060098 NS16550_setbrg(com_port, baud_divisor);
Masahiro Yamada8ac22a62014-07-30 19:11:41 +090099#if defined(CONFIG_OMAP) || \
Matt Porter6213a682013-03-15 10:07:09 +0000100 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoine9ed6e412013-07-02 12:05:58 +0200101 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath5289e832011-10-14 02:58:26 +0000102
Simon Glassf8df9d02011-10-15 19:14:09 +0000103 /* /16 is proper to hit 115200 with 48MHz */
104 serial_out(0, &com_port->mdr1);
Mike Frysingerb4746d82009-02-11 20:26:52 -0500105#endif /* CONFIG_OMAP */
Khoronzhuk, Ivan7c387642014-07-16 00:59:25 +0300106#if defined(CONFIG_SOC_KEYSTONE)
Vitaly Andrianovef509b92014-04-04 13:16:53 -0400107 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
108#endif
wdenke85390d2002-04-01 14:29:03 +0000109}
110
Ron Madridf5675aa2009-02-18 14:30:44 -0800111#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000112void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +0000113{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +0530114 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600115 NS16550_setbrg(com_port, 0);
Graeme Russ167cdad2010-04-24 00:05:46 +1000116 serial_out(UART_MCRVAL, &com_port->mcr);
117 serial_out(UART_FCRVAL, &com_port->fcr);
Simon Glass8bbe33c2014-09-04 16:27:33 -0600118 NS16550_setbrg(com_port, baud_divisor);
wdenke85390d2002-04-01 14:29:03 +0000119}
Ron Madridf5675aa2009-02-18 14:30:44 -0800120#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000121
Simon Glassf8df9d02011-10-15 19:14:09 +0000122void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000123{
Simon Glassf8df9d02011-10-15 19:14:09 +0000124 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
125 ;
Graeme Russ167cdad2010-04-24 00:05:46 +1000126 serial_out(c, &com_port->thr);
Stefan Roese1a2d9b32010-10-12 09:39:45 +0200127
128 /*
129 * Call watchdog_reset() upon newline. This is done here in putc
130 * since the environment code uses a single puts() to print the complete
131 * environment upon "printenv". So we can't put this watchdog call
132 * in puts().
133 */
134 if (c == '\n')
135 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000136}
137
Ron Madridf5675aa2009-02-18 14:30:44 -0800138#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000139char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000140{
Graeme Russ167cdad2010-04-24 00:05:46 +1000141 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasutf2041382012-09-15 10:25:19 +0200142#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk232c1502004-03-12 00:14:09 +0000143 extern void usbtty_poll(void);
144 usbtty_poll();
145#endif
Ladislav Michla1b322a2010-02-01 23:34:25 +0100146 WATCHDOG_RESET();
wdenk232c1502004-03-12 00:14:09 +0000147 }
Graeme Russ167cdad2010-04-24 00:05:46 +1000148 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000149}
150
Simon Glassf8df9d02011-10-15 19:14:09 +0000151int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000152{
Simon Glassf8df9d02011-10-15 19:14:09 +0000153 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000154}
155
Ron Madridf5675aa2009-02-18 14:30:44 -0800156#endif /* CONFIG_NS16550_MIN_FUNCTIONS */