wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 1 | /* |
| 2 | * COM1 NS16550 support |
Stefan Roese | 88fbf93 | 2010-04-15 16:07:28 +0200 | [diff] [blame] | 3 | * originally from linux source (arch/powerpc/boot/ns16550.c) |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 4 | * modified to use CONFIG_SYS_ISA_MEM and new defines |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <config.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 8 | #include <ns16550.h> |
Ladislav Michl | cc29442 | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 9 | #include <watchdog.h> |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 10 | #include <linux/types.h> |
| 11 | #include <asm/io.h> |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 12 | |
Detlev Zundel | 166fb54 | 2009-04-03 11:53:01 +0200 | [diff] [blame] | 13 | #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 Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 19 | #ifdef CONFIG_SYS_NS16550_PORT_MAPPED |
| 20 | #define serial_out(x,y) outb(x,(ulong)y) |
| 21 | #define serial_in(y) inb((ulong)y) |
Dave Aldridge | a51bebc | 2011-09-01 22:47:14 +0000 | [diff] [blame] | 22 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE > 0) |
| 23 | #define serial_out(x,y) out_be32(y,x) |
| 24 | #define serial_in(y) in_be32(y) |
| 25 | #elif defined(CONFIG_SYS_NS16550_MEM32) && (CONFIG_SYS_NS16550_REG_SIZE < 0) |
| 26 | #define serial_out(x,y) out_le32(y,x) |
| 27 | #define serial_in(y) in_le32(y) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 28 | #else |
| 29 | #define serial_out(x,y) writeb(x,y) |
| 30 | #define serial_in(y) readb(y) |
| 31 | #endif |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 32 | |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 33 | #ifndef CONFIG_SYS_NS16550_IER |
| 34 | #define CONFIG_SYS_NS16550_IER 0x00 |
| 35 | #endif /* CONFIG_SYS_NS16550_IER */ |
| 36 | |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 37 | void NS16550_init (NS16550_t com_port, int baud_divisor) |
| 38 | { |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 39 | serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); |
Tom Rix | 93bed9b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 40 | #if defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 41 | serial_out(0x7, &com_port->mdr1); /* mode select reset TL16C750*/ |
wdenk | 21136db | 2003-07-16 21:53:01 +0000 | [diff] [blame] | 42 | #endif |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 43 | serial_out(UART_LCR_BKSE | UART_LCRVAL, (ulong)&com_port->lcr); |
| 44 | serial_out(0, &com_port->dll); |
| 45 | serial_out(0, &com_port->dlm); |
| 46 | serial_out(UART_LCRVAL, &com_port->lcr); |
| 47 | serial_out(UART_MCRVAL, &com_port->mcr); |
| 48 | serial_out(UART_FCRVAL, &com_port->fcr); |
| 49 | serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); |
| 50 | serial_out(baud_divisor & 0xff, &com_port->dll); |
| 51 | serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); |
| 52 | serial_out(UART_LCRVAL, &com_port->lcr); |
Tom Rix | 93bed9b | 2009-05-31 12:44:37 +0200 | [diff] [blame] | 53 | #if defined(CONFIG_OMAP) && !defined(CONFIG_OMAP3_ZOOM2) |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 54 | #if defined(CONFIG_APTIX) |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 55 | serial_out(3, &com_port->mdr1); /* /13 mode so Aptix 6MHz can hit 115200 */ |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 56 | #else |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 57 | serial_out(0, &com_port->mdr1); /* /16 is proper to hit 115200 with 48MHz */ |
wdenk | f806271 | 2005-01-09 23:16:25 +0000 | [diff] [blame] | 58 | #endif |
Mike Frysinger | d0e9786 | 2009-02-11 20:26:52 -0500 | [diff] [blame] | 59 | #endif /* CONFIG_OMAP */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 60 | } |
| 61 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 62 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 63 | void NS16550_reinit (NS16550_t com_port, int baud_divisor) |
| 64 | { |
Prafulla Wadaskar | 6621637 | 2010-10-27 21:58:31 +0530 | [diff] [blame] | 65 | serial_out(CONFIG_SYS_NS16550_IER, &com_port->ier); |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 66 | serial_out(UART_LCR_BKSE | UART_LCRVAL, &com_port->lcr); |
| 67 | serial_out(0, &com_port->dll); |
| 68 | serial_out(0, &com_port->dlm); |
| 69 | serial_out(UART_LCRVAL, &com_port->lcr); |
| 70 | serial_out(UART_MCRVAL, &com_port->mcr); |
| 71 | serial_out(UART_FCRVAL, &com_port->fcr); |
| 72 | serial_out(UART_LCR_BKSE, &com_port->lcr); |
| 73 | serial_out(baud_divisor & 0xff, &com_port->dll); |
| 74 | serial_out((baud_divisor >> 8) & 0xff, &com_port->dlm); |
| 75 | serial_out(UART_LCRVAL, &com_port->lcr); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 76 | } |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 77 | #endif /* CONFIG_NS16550_MIN_FUNCTIONS */ |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 78 | |
| 79 | void NS16550_putc (NS16550_t com_port, char c) |
| 80 | { |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 81 | while ((serial_in(&com_port->lsr) & UART_LSR_THRE) == 0); |
| 82 | serial_out(c, &com_port->thr); |
Stefan Roese | 57b9988 | 2010-10-12 09:39:45 +0200 | [diff] [blame] | 83 | |
| 84 | /* |
| 85 | * Call watchdog_reset() upon newline. This is done here in putc |
| 86 | * since the environment code uses a single puts() to print the complete |
| 87 | * environment upon "printenv". So we can't put this watchdog call |
| 88 | * in puts(). |
| 89 | */ |
| 90 | if (c == '\n') |
| 91 | WATCHDOG_RESET(); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 92 | } |
| 93 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 94 | #ifndef CONFIG_NS16550_MIN_FUNCTIONS |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 95 | char NS16550_getc (NS16550_t com_port) |
| 96 | { |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 97 | while ((serial_in(&com_port->lsr) & UART_LSR_DR) == 0) { |
wdenk | 29e7f5a | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 98 | #ifdef CONFIG_USB_TTY |
| 99 | extern void usbtty_poll(void); |
| 100 | usbtty_poll(); |
| 101 | #endif |
Ladislav Michl | cc29442 | 2010-02-01 23:34:25 +0100 | [diff] [blame] | 102 | WATCHDOG_RESET(); |
wdenk | 29e7f5a | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 103 | } |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 104 | return serial_in(&com_port->rbr); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 105 | } |
| 106 | |
| 107 | int NS16550_tstc (NS16550_t com_port) |
| 108 | { |
Graeme Russ | 14f06e6 | 2010-04-24 00:05:46 +1000 | [diff] [blame] | 109 | return ((serial_in(&com_port->lsr) & UART_LSR_DR) != 0); |
wdenk | e85390d | 2002-04-01 14:29:03 +0000 | [diff] [blame] | 110 | } |
| 111 | |
Ron Madrid | dfa028a | 2009-02-18 14:30:44 -0800 | [diff] [blame] | 112 | #endif /* CONFIG_NS16550_MIN_FUNCTIONS */ |