blob: bbd91ca247df995d2b5d11e865ea7ba391574239 [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
7#include <config.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
Prafulla Wadaskar66216372010-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 Glassdd5497c2011-10-15 19:14:09 +000037void NS16550_init(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000038{
Scott Wood6c6f0612012-09-18 18:19:05 -050039 while (!(serial_in(&com_port->lsr) & UART_LSR_TEMT))
40 ;
41
Prafulla Wadaskar66216372010-10-27 21:58:31 +053042 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Chandan Nath7d744102011-10-14 02:58:26 +000043#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
44 defined(CONFIG_AM33XX)
Graeme Russ14f06e62010-04-24 00:05:46 +100045 serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/
wdenk21136db2003-07-16 21:53:01 +000046#endif
Graeme Russ14f06e62010-04-24 00:05:46 +100047 serial_out(UART_LCR_BKSE | UART_LCRVAL, (ulong)&com_port->lcr);
48 serial_out(0, &com_port->dll);
49 serial_out(0, &com_port->dlm);
50 serial_out(UART_LCRVAL, &com_port->lcr);
51 serial_out(UART_MCRVAL, &com_port->mcr);
52 serial_out(UART_FCRVAL, &com_port->fcr);
53 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
54 serial_out(baud_divisor & 0xff, &com_port->dll);
55 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
56 serial_out(UART_LCRVAL, &com_port->lcr);
Chandan Nath7d744102011-10-14 02:58:26 +000057#if (defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2)) || \
Mikhail Kshevetskiyf9da3a32012-07-09 08:52:43 +000058 defined(CONFIG_AM33XX) || defined(CONFIG_SOC_DA8XX)
Chandan Nath7d744102011-10-14 02:58:26 +000059
wdenkf8062712005-01-09 23:16:25 +000060#if defined(CONFIG_APTIX)
Simon Glassdd5497c2011-10-15 19:14:09 +000061 /* /13 mode so Aptix 6MHz can hit 115200 */
62 serial_out(3, &com_port->mdr1);
wdenkf8062712005-01-09 23:16:25 +000063#else
Simon Glassdd5497c2011-10-15 19:14:09 +000064 /* /16 is proper to hit 115200 with 48MHz */
65 serial_out(0, &com_port->mdr1);
wdenkf8062712005-01-09 23:16:25 +000066#endif
Mike Frysingerd0e97862009-02-11 20:26:52 -050067#endif /* CONFIG_OMAP */
wdenke85390d2002-04-01 14:29:03 +000068}
69
Ron Madriddfa028a2009-02-18 14:30:44 -080070#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +000071void NS16550_reinit(NS16550_t com_port, int baud_divisor)
wdenke85390d2002-04-01 14:29:03 +000072{
Prafulla Wadaskar66216372010-10-27 21:58:31 +053073 serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier);
Graeme Russ14f06e62010-04-24 00:05:46 +100074 serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr);
75 serial_out(0, &com_port->dll);
76 serial_out(0, &com_port->dlm);
77 serial_out(UART_LCRVAL, &com_port->lcr);
78 serial_out(UART_MCRVAL, &com_port->mcr);
79 serial_out(UART_FCRVAL, &com_port->fcr);
80 serial_out(UART_LCR_BKSE, &com_port->lcr);
81 serial_out(baud_divisor & 0xff, &com_port->dll);
82 serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm);
83 serial_out(UART_LCRVAL, &com_port->lcr);
wdenke85390d2002-04-01 14:29:03 +000084}
Ron Madriddfa028a2009-02-18 14:30:44 -080085#endif /* CONFIG_NS16550_MIN_FUNCTIONS */
wdenke85390d2002-04-01 14:29:03 +000086
Simon Glassdd5497c2011-10-15 19:14:09 +000087void NS16550_putc(NS16550_t com_port, char c)
wdenke85390d2002-04-01 14:29:03 +000088{
Simon Glassdd5497c2011-10-15 19:14:09 +000089 while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0)
90 ;
Graeme Russ14f06e62010-04-24 00:05:46 +100091 serial_out(c, &com_port->thr);
Stefan Roese57b99882010-10-12 09:39:45 +020092
93 /*
94 * Call watchdog_reset() upon newline. This is done here in putc
95 * since the environment code uses a single puts() to print the complete
96 * environment upon "printenv". So we can't put this watchdog call
97 * in puts().
98 */
99 if (c == '\n')
100 WATCHDOG_RESET();
wdenke85390d2002-04-01 14:29:03 +0000101}
102
Ron Madriddfa028a2009-02-18 14:30:44 -0800103#ifndef CONFIG_NS16550_MIN_FUNCTIONS
Simon Glassdd5497c2011-10-15 19:14:09 +0000104char NS16550_getc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000105{
Graeme Russ14f06e62010-04-24 00:05:46 +1000106 while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) {
Marek Vasut9e1fca92012-09-15 10:25:19 +0200107#if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_USB_TTY)
wdenk29e7f5a2004-03-12 00:14:09 +0000108 extern void usbtty_poll(void);
109 usbtty_poll();
110#endif
Ladislav Michlcc294422010-02-01 23:34:25 +0100111 WATCHDOG_RESET();
wdenk29e7f5a2004-03-12 00:14:09 +0000112 }
Graeme Russ14f06e62010-04-24 00:05:46 +1000113 return serial_in(&com_port->rbr);
wdenke85390d2002-04-01 14:29:03 +0000114}
115
Simon Glassdd5497c2011-10-15 19:14:09 +0000116int NS16550_tstc(NS16550_t com_port)
wdenke85390d2002-04-01 14:29:03 +0000117{
Simon Glassdd5497c2011-10-15 19:14:09 +0000118 return (serial_in(&com_port->lsr) & UART_LSR_DR) != 0;
wdenke85390d2002-04-01 14:29:03 +0000119}
120
Ron Madriddfa028a2009-02-18 14:30:44 -0800121#endif /* CONFIG_NS16550_MIN_FUNCTIONS */