blob: 8a1345494336d56d6c0700f79e5851043b8fbf83 [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
7#include <config.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
Vitaly Andrianovef509b92014-04-04 13:16:53 -040033#if defined(CONFIG_K2HK_EVM)
34#define UART_REG_VAL_PWREMU_MGMT_UART_DISABLE 0
35#define UART_REG_VAL_PWREMU_MGMT_UART_ENABLE ((1 << 14) | (1 << 13) | (1 << 0))
36#endif
37
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053038#ifndef CONFIG_SYS_NS16550_IER
39#define CONFIG_SYS_NS16550_IER 0x00
40#endif /* CONFIG_SYS_NS16550_IER */
41
Simon Glassf8df9d02011-10-15 19:14:09 +000042void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000043{
Manfred Huberfd2aeac2013-03-29 02:52:36 +000044#if (defined(CONFIG_SPL_BUILD) && defined(CONFIG_OMAP34XX))
45 /*
46 * On some OMAP3 devices when UART3 is configured for boot mode before
47 * SPL starts only THRE bit is set. We have to empty the transmitter
48 * before initialization starts.
49 */
50 if ((serial_in(&com_port->lsr) & (UART_LSR_TEMT | UART_LSR_THRE))
51 == UART_LSR_THRE) {
52 serial_out(UART_LCR_DLAB, &com_port->lcr);
53 serial_out(baud_divisor & 0xff, &com_port->dll);
54 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
55 serial_out(UART_LCRVAL, &com_port->lcr);
56 serial_out(0, &com_port->mdr1);
57 }
58#endif
59
Scott Woodcb55b332012-09-18 18:19:05 -050060 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
61 ;
62
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053063 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Tom Rini456ccfd2013-12-20 11:19:33 -050064#if defined(CONFIG_OMAP) || defined(CONFIG_AM33XX) || \
65 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Graeme Russ167cdad2010-04-24 00:05:46 +100066 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +000067#endif
Simon Glass69e06832013-03-05 14:40:02 +000068 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
Graeme Russ167cdad2010-04-24 00:05:46 +100069 serial_out(0, &com_port->dll);
70 serial_out(0, &com_port->dlm);
71 serial_out(UART_LCRVAL, &com_port->lcr);
72 serial_out(UART_MCRVAL, &com_port->mcr);
73 serial_out(UART_FCRVAL, &com_port->fcr);
74 serial_out(UART_LCR_BKSE | UART_LCRVAL, &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);
Chandan Nath5289e832011-10-14 02:58:26 +000078#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
Matt Porter6213a682013-03-15 10:07:09 +000079 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX) || \
TENART Antoine9ed6e412013-07-02 12:05:58 +020080 defined(CONFIG_TI81XX) || defined(CONFIG_AM43XX)
Chandan Nath5289e832011-10-14 02:58:26 +000081
Simon Glassf8df9d02011-10-15 19:14:09 +000082 /* /16 is proper to hit 115200 with 48MHz */
83 serial_out(0, &com_port->mdr1);
Mike Frysingerb4746d82009-02-11 20:26:52 -050084#endif /* CONFIG_OMAP */
Vitaly Andrianovef509b92014-04-04 13:16:53 -040085#if defined(CONFIG_K2HK_EVM)
86 serial_out(UART_REG_VAL_PWREMU_MGMT_UART_ENABLE, &com_port->regC);
87#endif
wdenke85390d2002-04-01 14:29:03 +000088}
89
Ron Madridf5675aa2009-02-18 14:30:44 -080090#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +000091void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000092{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053093 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Graeme Russ167cdad2010-04-24 00:05:46 +100094 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
95 serial_out(0, &com_port->dll);
96 serial_out(0, &com_port->dlm);
97 serial_out(UART_LCRVAL, &com_port->lcr);
98 serial_out(UART_MCRVAL, &com_port->mcr);
99 serial_out(UART_FCRVAL, &com_port->fcr);
100 serial_out(UART_LCR_BKSE, &com_port->lcr);
101 serial_out(baud_divisor & 0xff, &com_port->dll);
102 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
103 serial_out(UART_LCRVAL, &com_port->lcr);
wdenke85390d2002-04-01 14:29:03 +0000104}
Ron Madridf5675aa2009-02-18 14:30:44 -0800105#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +0000106
Simon Glassf8df9d02011-10-15 19:14:09 +0000107void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +0000108{
Simon Glassf8df9d02011-10-15 19:14:09 +0000109 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
110 ;
Graeme Russ167cdad2010-04-24 00:05:46 +1000111 serial_out(c, &com_port->thr);
Stefan Roese1a2d9b32010-10-12 09:39:45 +0200112
113 /*
114 * Call watchdog_reset() upon newline. This is done here in putc
115 * since the environment code uses a single puts() to print the complete
116 * environment upon "printenv". So we can't put this watchdog call
117 * in puts().
118 */
119 if (c == '\n')
120 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000121}
122
Ron Madridf5675aa2009-02-18 14:30:44 -0800123#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000124char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000125{
Graeme Russ167cdad2010-04-24 00:05:46 +1000126 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasutf2041382012-09-15 10:25:19 +0200127#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk232c1502004-03-12 00:14:09 +0000128 extern void usbtty_poll(void);
129 usbtty_poll();
130#endif
Ladislav Michla1b322a2010-02-01 23:34:25 +0100131 WATCHDOG_RESET();
wdenk232c1502004-03-12 00:14:09 +0000132 }
Graeme Russ167cdad2010-04-24 00:05:46 +1000133 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000134}
135
Simon Glassf8df9d02011-10-15 19:14:09 +0000136int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000137{
Simon Glassf8df9d02011-10-15 19:14:09 +0000138 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000139}
140
Ron Madridf5675aa2009-02-18 14:30:44 -0800141#endif /* CONFIG_NS16550_MIN_FUNCTIONS */