blob: 0c2395531883c1c5e9a572ce5de70d78a17ac9cb [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
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053033#ifndef CONFIG_SYS_NS16550_IER
34#define CONFIG_SYS_NS16550_IER 0x00
35#endif /* CONFIG_SYS_NS16550_IER */
36
Simon Glassf8df9d02011-10-15 19:14:09 +000037void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000038{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053039 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Chandan Nath5289e832011-10-14 02:58:26 +000040#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
41 defined(CONFIG_AM33XX)
Graeme Russ167cdad2010-04-24 00:05:46 +100042 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk945af8d2003-07-16 21:53:01 +000043#endif
Graeme Russ167cdad2010-04-24 00:05:46 +100044 serial_out(UART_LCR_BKSE | UART_LCRVAL, (ulong)&com_port->lcr);
45 serial_out(0, &com_port->dll);
46 serial_out(0, &com_port->dlm);
47 serial_out(UART_LCRVAL, &com_port->lcr);
48 serial_out(UART_MCRVAL, &com_port->mcr);
49 serial_out(UART_FCRVAL, &com_port->fcr);
50 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
51 serial_out(baud_divisor & 0xff, &com_port->dll);
52 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
53 serial_out(UART_LCRVAL, &com_port->lcr);
Chandan Nath5289e832011-10-14 02:58:26 +000054#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
55 defined(CONFIG_AM33XX)
56
wdenk8ed96042005-01-09 23:16:25 +000057#if defined(CONFIG_APTIX)
Simon Glassf8df9d02011-10-15 19:14:09 +000058 /* /13 mode so Aptix 6MHz can hit 115200 */
59 serial_out(3, &com_port->mdr1);
wdenk8ed96042005-01-09 23:16:25 +000060#else
Simon Glassf8df9d02011-10-15 19:14:09 +000061 /* /16 is proper to hit 115200 with 48MHz */
62 serial_out(0, &com_port->mdr1);
wdenk8ed96042005-01-09 23:16:25 +000063#endif
Mike Frysingerb4746d82009-02-11 20:26:52 -050064#endif /* CONFIG_OMAP */
wdenke85390d2002-04-01 14:29:03 +000065}
66
Ron Madridf5675aa2009-02-18 14:30:44 -080067#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +000068void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000069{
Prafulla Wadaskara160ea02010-10-27 21:58:31 +053070 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Graeme Russ167cdad2010-04-24 00:05:46 +100071 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
72 serial_out(0, &com_port->dll);
73 serial_out(0, &com_port->dlm);
74 serial_out(UART_LCRVAL, &com_port->lcr);
75 serial_out(UART_MCRVAL, &com_port->mcr);
76 serial_out(UART_FCRVAL, &com_port->fcr);
77 serial_out(UART_LCR_BKSE, &com_port->lcr);
78 serial_out(baud_divisor & 0xff, &com_port->dll);
79 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
80 serial_out(UART_LCRVAL, &com_port->lcr);
wdenke85390d2002-04-01 14:29:03 +000081}
Ron Madridf5675aa2009-02-18 14:30:44 -080082#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +000083
Simon Glassf8df9d02011-10-15 19:14:09 +000084void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +000085{
Simon Glassf8df9d02011-10-15 19:14:09 +000086 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
87 ;
Graeme Russ167cdad2010-04-24 00:05:46 +100088 serial_out(c, &com_port->thr);
Stefan Roese1a2d9b32010-10-12 09:39:45 +020089
90 /*
91 * Call watchdog_reset() upon newline. This is done here in putc
92 * since the environment code uses a single puts() to print the complete
93 * environment upon "printenv". So we can't put this watchdog call
94 * in puts().
95 */
96 if (c == '\n')
97 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +000098}
99
Ron Madridf5675aa2009-02-18 14:30:44 -0800100#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassf8df9d02011-10-15 19:14:09 +0000101char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000102{
Graeme Russ167cdad2010-04-24 00:05:46 +1000103 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
wdenk232c1502004-03-12 00:14:09 +0000104#ifdef CONFIG_USB_TTY
105 extern void usbtty_poll(void);
106 usbtty_poll();
107#endif
Ladislav Michla1b322a2010-02-01 23:34:25 +0100108 WATCHDOG_RESET();
wdenk232c1502004-03-12 00:14:09 +0000109 }
Graeme Russ167cdad2010-04-24 00:05:46 +1000110 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000111}
112
Simon Glassf8df9d02011-10-15 19:14:09 +0000113int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000114{
Simon Glassf8df9d02011-10-15 19:14:09 +0000115 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000116}
117
Ron Madridf5675aa2009-02-18 14:30:44 -0800118#endif /* CONFIG_NS16550_MIN_FUNCTIONS */